Merge branch 'master' into v4
commit
4f9fe2491b
|
@ -232,8 +232,8 @@ export interface AccordionEmits {
|
|||
*/
|
||||
declare class Accordion extends ClassComponent<AccordionProps, AccordionSlots, AccordionEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Accordion: GlobalComponentConstructor<Accordion>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -226,8 +226,8 @@ export interface AccordionTabEmits {}
|
|||
*/
|
||||
declare class AccordionTab extends ClassComponent<AccordionTabProps, AccordionTabSlots, AccordionTabEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AccordionTab: GlobalComponentConstructor<AccordionTab>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -776,8 +776,8 @@ export interface AutoCompleteEmits {
|
|||
*/
|
||||
declare class AutoComplete extends ClassComponent<AutoCompleteProps, AutoCompleteSlots, AutoCompleteEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AutoComplete: GlobalComponentConstructor<AutoComplete>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -163,8 +163,8 @@ export interface AvatarEmits {
|
|||
*/
|
||||
declare class Avatar extends ClassComponent<AvatarProps, AvatarSlots, AvatarEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Avatar: GlobalComponentConstructor<Avatar>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -112,8 +112,8 @@ export interface AvatarGroupEmits {}
|
|||
*/
|
||||
declare class AvatarGroup extends ClassComponent<AvatarGroupProps, AvatarGroupSlots, AvatarGroupEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AvatarGroup: GlobalComponentConstructor<AvatarGroup>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -120,8 +120,8 @@ export interface BadgeEmits {}
|
|||
*/
|
||||
declare class Badge extends ClassComponent<BadgeProps, BadgeSlots, BadgeEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Badge: GlobalComponentConstructor<Badge>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -160,8 +160,8 @@ export interface BlockUIEmits {
|
|||
*/
|
||||
declare class BlockUI extends ClassComponent<BlockUIProps, BlockUISlots, BlockUIEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
BlockUI: GlobalComponentConstructor<BlockUI>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -232,8 +232,8 @@ export interface BreadcrumbEmits {}
|
|||
*/
|
||||
declare class Breadcrumb extends ClassComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Breadcrumb: GlobalComponentConstructor<Breadcrumb>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -243,8 +243,8 @@ export interface ButtonEmits {}
|
|||
*/
|
||||
declare class Button extends ClassComponent<ButtonProps, ButtonSlots, ButtonEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Button: GlobalComponentConstructor<Button>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -104,8 +104,8 @@ export interface ButtonGroupEmits {}
|
|||
*/
|
||||
declare class ButtonGroup extends ClassComponent<ButtonGroupProps, ButtonGroupSlots, ButtonGroupEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ButtonGroup: GlobalComponentConstructor<ButtonGroup>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -126,7 +126,7 @@ export interface CalendarBlurEvent {
|
|||
|
||||
/**
|
||||
* Custom passthrough(pt) options.
|
||||
* @see {@link CalendarProps.pt}
|
||||
* @see {@link BaseCalendarProps.pt}
|
||||
*/
|
||||
export interface CalendarPassThroughOptions {
|
||||
/**
|
||||
|
@ -490,19 +490,9 @@ export interface CalendarYearOptions {
|
|||
}
|
||||
|
||||
/**
|
||||
* Defines valid properties in Calendar component.
|
||||
* Defines valid base properties in Calendar component.
|
||||
*/
|
||||
export interface CalendarProps {
|
||||
/**
|
||||
* Value of the component.
|
||||
* @defaultValue null
|
||||
*/
|
||||
modelValue?: string | Date | string[] | Date[] | undefined | null;
|
||||
/**
|
||||
* Defines the quantity of the selection.
|
||||
* @defaultValue single
|
||||
*/
|
||||
selectionMode?: 'single' | 'multiple' | 'range' | undefined;
|
||||
interface BaseCalendarProps {
|
||||
/**
|
||||
* Format of the date. Defaults to PrimeVue Locale configuration.
|
||||
*/
|
||||
|
@ -784,6 +774,57 @@ export interface CalendarProps {
|
|||
*/
|
||||
unstyled?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid single selection properties in Calendar component.
|
||||
*/
|
||||
interface CalendarPropsSingle extends BaseCalendarProps {
|
||||
/**
|
||||
* Value of the component.
|
||||
* @defaultValue null
|
||||
*/
|
||||
modelValue?: Date | undefined | null;
|
||||
/**
|
||||
* Defines the quantity of the selection.
|
||||
* @defaultValue single
|
||||
*/
|
||||
selectionMode?: 'single' | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid range selection properties in Calendar component.
|
||||
*/
|
||||
interface CalendarPropsRange extends BaseCalendarProps {
|
||||
/**
|
||||
* Value of the component.
|
||||
* @defaultValue null
|
||||
*/
|
||||
modelValue?: Array<Date | null> | undefined | null;
|
||||
/**
|
||||
* Defines the quantity of the selection.
|
||||
* @defaultValue single
|
||||
*/
|
||||
selectionMode?: 'range';
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid multiple selection properties in Calendar component.
|
||||
*/
|
||||
interface CalendarPropsMultiple extends BaseCalendarProps {
|
||||
/**
|
||||
* Value of the component.
|
||||
* @defaultValue null
|
||||
*/
|
||||
modelValue?: Array<Date> | undefined | null;
|
||||
/**
|
||||
* Defines the quantity of the selection.
|
||||
* @defaultValue single
|
||||
*/
|
||||
selectionMode?: 'multiple';
|
||||
}
|
||||
|
||||
export type CalendarProps = CalendarPropsSingle | CalendarPropsRange | CalendarPropsMultiple;
|
||||
|
||||
/**
|
||||
* Defines valid options of the date slot in Calendar component.
|
||||
*/
|
||||
|
@ -936,9 +977,9 @@ export interface CalendarSlots {
|
|||
export interface CalendarEmits {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {string | Date | string[] | Date[] | undefined} value - New value.
|
||||
* @param {Date | Array<Date | null> | null} value - New value.
|
||||
*/
|
||||
'update:modelValue'(value: string | Date | string[] | Date[] | undefined): void;
|
||||
'update:modelValue'(value: Date | Array<Date | null> | null): void;
|
||||
/**
|
||||
* Callback to invoke when input field is being typed.
|
||||
* @param {Event} event - Browser event
|
||||
|
@ -1006,8 +1047,8 @@ export interface CalendarEmits {
|
|||
*/
|
||||
declare class Calendar extends ClassComponent<CalendarProps, CalendarSlots, CalendarEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Calendar: GlobalComponentConstructor<Calendar>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -608,10 +608,6 @@ export default {
|
|||
if (!this.disabled) {
|
||||
this.preventFocus = true;
|
||||
this.initFocusableCell();
|
||||
|
||||
if (this.numberOfMonths === 1) {
|
||||
this.overlay.style.width = DomHandler.getOuterWidth(this.$el) + 'px';
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// this.input.value = this.formatValue(this.modelValue);
|
||||
|
|
|
@ -152,8 +152,8 @@ export interface CardEmits {}
|
|||
*/
|
||||
declare class Card extends ClassComponent<CardProps, CardSlots, CardEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Card: GlobalComponentConstructor<Card>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -373,8 +373,8 @@ export interface CarouselEmits {
|
|||
*/
|
||||
declare class Carousel extends ClassComponent<CarouselProps, CarouselSlots, CarouselEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Carousel: GlobalComponentConstructor<Carousel>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -528,8 +528,8 @@ export interface CascadeSelectEmits {
|
|||
*/
|
||||
declare class CascadeSelect extends ClassComponent<CascadeSelectProps, CascadeSelectSlots, CascadeSelectEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
CascadeSelect: GlobalComponentConstructor<CascadeSelect>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -194,8 +194,8 @@ declare class Chart extends ClassComponent<ChartProps, ChartSlots, ChartEmits> {
|
|||
getChart(): any;
|
||||
}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Chart: GlobalComponentConstructor<Chart>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -263,8 +263,8 @@ export interface CheckboxEmits {
|
|||
*/
|
||||
declare class Checkbox extends ClassComponent<CheckboxProps, CheckboxSlots, CheckboxEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Checkbox: GlobalComponentConstructor<Checkbox>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -204,8 +204,8 @@ export interface ChipEmits {
|
|||
*/
|
||||
declare class Chip extends ClassComponent<ChipProps, ChipSlots, ChipEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Chip: GlobalComponentConstructor<Chip>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -302,8 +302,8 @@ export interface ChipsEmits {
|
|||
*/
|
||||
declare class Chips extends ClassComponent<ChipsProps, ChipsSlots, ChipsEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Chips: GlobalComponentConstructor<Chips>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -239,8 +239,8 @@ export interface ColorPickerEmits {
|
|||
*/
|
||||
declare class ColorPicker extends ClassComponent<ColorPickerProps, ColorPickerSlots, ColorPickerEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ColorPicker: GlobalComponentConstructor<ColorPicker>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -983,8 +983,8 @@ declare class Column extends ClassComponent<ColumnProps, ColumnSlots, ColumnEmit
|
|||
|
||||
export type ColumnNode = Column & { props: Column['$props'] };
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Column: GlobalComponentConstructor<Column>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -127,8 +127,8 @@ export interface ColumnGroupEmits {}
|
|||
*/
|
||||
declare class ColumnGroup extends ClassComponent<ColumnGroupProps, ColumnGroupSlots, ColumnGroupEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ColumnGroup: GlobalComponentConstructor<ColumnGroup>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -290,8 +290,8 @@ export interface ConfirmDialogEmits {}
|
|||
*/
|
||||
declare class ConfirmDialog extends ClassComponent<ConfirmDialogProps, ConfirmDialogSlots, ConfirmDialogEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ConfirmDialog: GlobalComponentConstructor<ConfirmDialog>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -235,8 +235,8 @@ export interface ConfirmPopupEmits {}
|
|||
*/
|
||||
declare class ConfirmPopup extends ClassComponent<ConfirmPopupProps, ConfirmPopupSlots, ConfirmPopupEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ConfirmPopup: GlobalComponentConstructor<ConfirmPopup>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -402,8 +402,8 @@ declare class ContextMenu extends ClassComponent<ContextMenuProps, ContextMenuSl
|
|||
hide(): void;
|
||||
}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ContextMenu: GlobalComponentConstructor<ContextMenu>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1517,8 +1517,8 @@ declare class DataTable extends ClassComponent<DataTableProps, DataTableSlots, D
|
|||
exportCSV(options?: DataTableExportCSVOptions, data?: any[]): void;
|
||||
}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
DataTable: GlobalComponentConstructor<DataTable>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -341,8 +341,8 @@ export interface DataViewEmits {
|
|||
*/
|
||||
declare class DataView extends ClassComponent<DataViewProps, DataViewSlots, DataViewEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
DataView: GlobalComponentConstructor<DataView>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -176,8 +176,8 @@ export interface DataViewLayoutOptionsEmits {
|
|||
*/
|
||||
declare class DataViewLayoutOptions extends ClassComponent<DataViewLayoutOptionsProps, DataViewLayoutOptionsSlots, DataViewLayoutOptionsEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
DataViewLayoutOptions: GlobalComponentConstructor<DataViewLayoutOptions>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -132,8 +132,8 @@ export interface DeferredContentEmits {
|
|||
*/
|
||||
declare class DeferredContent extends ClassComponent<DeferredContentProps, DeferredContentSlots, DeferredContentEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
DeferredContent: GlobalComponentConstructor<DeferredContent>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -415,8 +415,8 @@ export interface DialogEmits {
|
|||
*/
|
||||
declare class Dialog extends ClassComponent<DialogProps, DialogSlots, DialogEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Dialog: GlobalComponentConstructor<Dialog>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -128,8 +128,8 @@ export interface DividerEmits {}
|
|||
*/
|
||||
declare class Divider extends ClassComponent<DividerProps, DividerSlots, DividerEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Divider: GlobalComponentConstructor<Divider>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -311,8 +311,8 @@ export interface DockEmits {
|
|||
*/
|
||||
declare class Dock extends ClassComponent<DockProps, DockSlots, DockEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Dock: GlobalComponentConstructor<Dock>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -758,8 +758,8 @@ declare class Dropdown extends ClassComponent<DropdownProps, DropdownSlots, Drop
|
|||
hide: (isFocus?: boolean) => void;
|
||||
}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Dropdown: GlobalComponentConstructor<Dropdown>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,8 +43,8 @@ export interface DynamicDialogSlots {}
|
|||
*/
|
||||
declare class DynamicDialog extends ClassComponent<DynamicDialogProps, DynamicDialogSlots, DynamicDialogEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
DynamicDialog: GlobalComponentConstructor<DynamicDialog>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -305,8 +305,8 @@ export interface EditorEmits {
|
|||
*/
|
||||
declare class Editor extends ClassComponent<EditorProps, EditorSlots, EditorEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Editor: GlobalComponentConstructor<Editor>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -211,8 +211,8 @@ export interface FieldsetEmits {
|
|||
*/
|
||||
declare class Fieldset extends ClassComponent<FieldsetProps, FieldsetSlots, FieldsetEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Fieldset: GlobalComponentConstructor<Fieldset>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -614,8 +614,8 @@ export interface FileUploadEmits {
|
|||
*/
|
||||
declare class FileUpload extends ClassComponent<FileUploadProps, FileUploadSlots, FileUploadEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
FileUpload: GlobalComponentConstructor<FileUpload>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -115,8 +115,8 @@ export interface FloatLabelEmits {}
|
|||
*/
|
||||
declare class FloatLabel extends ClassComponent<FloatLabelProps, FloatLabelSlots, FloatLabelEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
FloatLabel: GlobalComponentConstructor<FloatLabel>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -526,8 +526,8 @@ export interface GalleriaEmits {
|
|||
*/
|
||||
declare class Galleria extends ClassComponent<GalleriaProps, GalleriaSlots, GalleriaEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Galleria: GlobalComponentConstructor<Galleria>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -118,8 +118,8 @@ export interface IconFieldEmits {}
|
|||
*/
|
||||
declare class IconField extends ClassComponent<IconFieldProps, IconFieldSlots, IconFieldEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
IconField: GlobalComponentConstructor<IconField>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { Icon } from '../index';
|
|||
|
||||
declare class AngleDoubleDownIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleDoubleDownIcon: GlobalComponentConstructor<AngleDoubleDownIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class AngleDoubleLeftIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleDoubleLeftIcon: GlobalComponentConstructor<AngleDoubleLeftIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class AngleDoubleRightIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleDoubleRightIcon: GlobalComponentConstructor<AngleDoubleRightIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class AngleDoubleUpIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleDoubleUpIcon: GlobalComponentConstructor<AngleDoubleUpIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class AngleDownIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleDownIcon: GlobalComponentConstructor<AngleDownIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class AngleLeftIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleLeftIcon: GlobalComponentConstructor<AngleLeftIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class AngleRightIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleRightIcon: GlobalComponentConstructor<AngleRightIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class AngleUpIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleUpIcon: GlobalComponentConstructor<AngleUpIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class ArrowDownIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ArrowDownIcon: GlobalComponentConstructor<ArrowDownIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class ArrowUpIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ArrowUpIcon: GlobalComponentConstructor<ArrowUpIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class BanIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
BanIcon: GlobalComponentConstructor<BanIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class BarsIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
BarsIcon: GlobalComponentConstructor<BarsIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class BlankIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
BlankIcon: GlobalComponentConstructor<BlankIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class CalendarIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
CalendarIcon: GlobalComponentConstructor<CalendarIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class CheckIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
CheckIcon: GlobalComponentConstructor<CheckIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class ChevronDownIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ChevronDownIcon: GlobalComponentConstructor<ChevronDownIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class ChevronLeftIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ChevronLeftIcon: GlobalComponentConstructor<ChevronLeftIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class ChevronRightIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ChevronRightIcon: GlobalComponentConstructor<ChevronRightIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class ChevronUpIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ChevronUpIcon: GlobalComponentConstructor<ChevronUpIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class ExclamationTriangleIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ExclamationTriangleIcon: GlobalComponentConstructor<ExclamationTriangleIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class EyeIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
EyeIcon: GlobalComponentConstructor<EyeIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class EyeSlashIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
EyeSlashIcon: GlobalComponentConstructor<EyeSlashIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class FilterIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
FilterIcon: GlobalComponentConstructor<FilterIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class FilterSlashIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
FilterSlashIcon: GlobalComponentConstructor<FilterSlashIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class InfoCircleIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InfoCircleIcon: GlobalComponentConstructor<InfoCircleIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class MinusIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
MinusIcon: GlobalComponentConstructor<MinusIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class PencilIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
PencilIcon: GlobalComponentConstructor<PencilIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class PlusIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
PlusIcon: GlobalComponentConstructor<PlusIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class RefreshIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
RefreshIcon: GlobalComponentConstructor<RefreshIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class SearchIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SearchIcon: GlobalComponentConstructor<SearchIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class SearchMinusIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SearchMinusIcon: GlobalComponentConstructor<SearchMinusIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class SearchPlusIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SearchPlusIcon: GlobalComponentConstructor<SearchPlusIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class SortAltIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SortAltIcon: GlobalComponentConstructor<SortAltIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class SortAmountDownIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SortAmountDownIcon: GlobalComponentConstructor<SortAmountDownIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class SortAmountUpAltIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SortAmountUpAltIcon: GlobalComponentConstructor<SortAmountUpAltIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class SpinnerIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SpinnerIcon: GlobalComponentConstructor<SpinnerIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class StarIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
StarIcon: GlobalComponentConstructor<StarIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class StarFillIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
StarFillIcon: GlobalComponentConstructor<StarFillIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class ThLargeIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ThLargeIcon: GlobalComponentConstructor<ThLargeIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class TimesIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
TimesIcon: GlobalComponentConstructor<TimesIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class TimesCircleIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
TimesCircleIcon: GlobalComponentConstructor<TimesCircleIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class TrashIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
TrashIcon: GlobalComponentConstructor<TrashIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class UndoIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
UndoIcon: GlobalComponentConstructor<UndoIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class UploadIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
UploadIcon: GlobalComponentConstructor<UploadIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class WindowMaximizeIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
WindowMaximizeIcon: GlobalComponentConstructor<WindowMaximizeIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
|
|||
|
||||
declare class WindowMinimizeIcon extends Icon {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
WindowMinimizeIcon: GlobalComponentConstructor<WindowMinimizeIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -327,8 +327,8 @@ declare class Image extends ClassComponent<ImageProps, ImageSlots, ImageEmits> {
|
|||
error(): void;
|
||||
}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Image: GlobalComponentConstructor<Image>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -146,8 +146,8 @@ export interface InlineMessageEmits {}
|
|||
*/
|
||||
declare class InlineMessage extends ClassComponent<InlineMessageProps, InlineMessageSlots, InlineMessageEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InlineMessage: GlobalComponentConstructor<InlineMessage>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -208,8 +208,8 @@ export interface InplaceEmits {
|
|||
*/
|
||||
declare class Inplace extends ClassComponent<InplaceProps, InplaceSlots, InplaceEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Inplace: GlobalComponentConstructor<Inplace>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -113,8 +113,8 @@ export interface InputGroupEmits {}
|
|||
*/
|
||||
declare class InputGroup extends ClassComponent<InputGroupProps, InputGroupSlots, InputGroupEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InputGroup: GlobalComponentConstructor<InputGroup>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -113,8 +113,8 @@ export interface InputGroupAddonEmits {}
|
|||
*/
|
||||
declare class InputGroupAddon extends ClassComponent<InputGroupAddonProps, InputGroupAddonSlots, InputGroupAddonEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InputGroupAddon: GlobalComponentConstructor<InputGroupAddon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -108,8 +108,8 @@ export interface InputIconEmits {}
|
|||
*/
|
||||
declare class InputIcon extends ClassComponent<InputIconProps, InputIconSlots, InputIconEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InputIcon: GlobalComponentConstructor<InputIcon>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -212,8 +212,8 @@ export interface InputMaskEmits {
|
|||
*/
|
||||
declare class InputMask extends ClassComponent<InputMaskProps, InputMaskSlots, InputMaskEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InputMask: GlobalComponentConstructor<InputMask>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -429,8 +429,8 @@ declare class InputNumber extends ClassComponent<InputNumberProps, InputNumberSl
|
|||
getFormatter: () => Intl.NumberFormat | undefined;
|
||||
}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InputNumber: GlobalComponentConstructor<InputNumber>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -266,8 +266,8 @@ export interface InputOtpEmits {
|
|||
*/
|
||||
declare class InputOtp extends ClassComponent<InputOtpProps, InputOtpSlots, InputOtpEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InputOtp: GlobalComponentConstructor<InputOtp>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -207,8 +207,8 @@ export interface InputSwitchEmits {
|
|||
*/
|
||||
declare class InputSwitch extends ClassComponent<InputSwitchProps, InputSwitchSlots, InputSwitchEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InputSwitch: GlobalComponentConstructor<InputSwitch>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -147,8 +147,8 @@ export interface InputTextEmits {
|
|||
*/
|
||||
declare class InputText extends ClassComponent<InputTextProps, InputTextSlots, InputTextEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InputText: GlobalComponentConstructor<InputText>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -242,8 +242,8 @@ export interface KnobEmits {
|
|||
*/
|
||||
declare class Knob extends ClassComponent<KnobProps, KnobSlots, KnobEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Knob: GlobalComponentConstructor<Knob>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -567,8 +567,8 @@ export interface ListboxEmits {
|
|||
*/
|
||||
declare class Listbox extends ClassComponent<ListboxProps, ListboxSlots, ListboxEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Listbox: GlobalComponentConstructor<Listbox>;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -405,8 +405,8 @@ export interface MegaMenuEmits {
|
|||
*/
|
||||
declare class MegaMenu extends ClassComponent<MegaMenuProps, MegaMenuSlots, MegaMenuEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
MegaMenu: GlobalComponentConstructor<MegaMenu>;
|
||||
}
|
||||
}
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue