pull/5507/head
Cagatay Civici 2024-03-25 18:11:09 +03:00
commit a7c0d95336
156 changed files with 544 additions and 876 deletions

View File

@ -232,8 +232,8 @@ export interface AccordionEmits {
*/ */
declare class Accordion extends ClassComponent<AccordionProps, AccordionSlots, AccordionEmits> {} declare class Accordion extends ClassComponent<AccordionProps, AccordionSlots, AccordionEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Accordion: GlobalComponentConstructor<Accordion>; Accordion: GlobalComponentConstructor<Accordion>;
} }
} }

View File

@ -226,8 +226,8 @@ export interface AccordionTabEmits {}
*/ */
declare class AccordionTab extends ClassComponent<AccordionTabProps, AccordionTabSlots, AccordionTabEmits> {} declare class AccordionTab extends ClassComponent<AccordionTabProps, AccordionTabSlots, AccordionTabEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
AccordionTab: GlobalComponentConstructor<AccordionTab>; AccordionTab: GlobalComponentConstructor<AccordionTab>;
} }
} }

View File

@ -776,8 +776,8 @@ export interface AutoCompleteEmits {
*/ */
declare class AutoComplete extends ClassComponent<AutoCompleteProps, AutoCompleteSlots, AutoCompleteEmits> {} declare class AutoComplete extends ClassComponent<AutoCompleteProps, AutoCompleteSlots, AutoCompleteEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
AutoComplete: GlobalComponentConstructor<AutoComplete>; AutoComplete: GlobalComponentConstructor<AutoComplete>;
} }
} }

View File

@ -163,8 +163,8 @@ export interface AvatarEmits {
*/ */
declare class Avatar extends ClassComponent<AvatarProps, AvatarSlots, AvatarEmits> {} declare class Avatar extends ClassComponent<AvatarProps, AvatarSlots, AvatarEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Avatar: GlobalComponentConstructor<Avatar>; Avatar: GlobalComponentConstructor<Avatar>;
} }
} }

View File

@ -112,8 +112,8 @@ export interface AvatarGroupEmits {}
*/ */
declare class AvatarGroup extends ClassComponent<AvatarGroupProps, AvatarGroupSlots, AvatarGroupEmits> {} declare class AvatarGroup extends ClassComponent<AvatarGroupProps, AvatarGroupSlots, AvatarGroupEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
AvatarGroup: GlobalComponentConstructor<AvatarGroup>; AvatarGroup: GlobalComponentConstructor<AvatarGroup>;
} }
} }

View File

@ -120,8 +120,8 @@ export interface BadgeEmits {}
*/ */
declare class Badge extends ClassComponent<BadgeProps, BadgeSlots, BadgeEmits> {} declare class Badge extends ClassComponent<BadgeProps, BadgeSlots, BadgeEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Badge: GlobalComponentConstructor<Badge>; Badge: GlobalComponentConstructor<Badge>;
} }
} }

View File

@ -160,8 +160,8 @@ export interface BlockUIEmits {
*/ */
declare class BlockUI extends ClassComponent<BlockUIProps, BlockUISlots, BlockUIEmits> {} declare class BlockUI extends ClassComponent<BlockUIProps, BlockUISlots, BlockUIEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
BlockUI: GlobalComponentConstructor<BlockUI>; BlockUI: GlobalComponentConstructor<BlockUI>;
} }
} }

View File

@ -232,8 +232,8 @@ export interface BreadcrumbEmits {}
*/ */
declare class Breadcrumb extends ClassComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits> {} declare class Breadcrumb extends ClassComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Breadcrumb: GlobalComponentConstructor<Breadcrumb>; Breadcrumb: GlobalComponentConstructor<Breadcrumb>;
} }
} }

View File

@ -243,8 +243,8 @@ export interface ButtonEmits {}
*/ */
declare class Button extends ClassComponent<ButtonProps, ButtonSlots, ButtonEmits> {} declare class Button extends ClassComponent<ButtonProps, ButtonSlots, ButtonEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Button: GlobalComponentConstructor<Button>; Button: GlobalComponentConstructor<Button>;
} }
} }

View File

@ -104,8 +104,8 @@ export interface ButtonGroupEmits {}
*/ */
declare class ButtonGroup extends ClassComponent<ButtonGroupProps, ButtonGroupSlots, ButtonGroupEmits> {} declare class ButtonGroup extends ClassComponent<ButtonGroupProps, ButtonGroupSlots, ButtonGroupEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ButtonGroup: GlobalComponentConstructor<ButtonGroup>; ButtonGroup: GlobalComponentConstructor<ButtonGroup>;
} }
} }

View File

@ -220,6 +220,18 @@ export default {
type: Object, type: Object,
default: null default: null
}, },
todayButtonProps: {
type: Object,
default() {
return { severity: 'secondary', text: true };
}
},
clearButtonProps: {
type: Object,
default() {
return { severity: 'secondary', text: true };
}
},
ariaLabelledby: { ariaLabelledby: {
type: String, type: String,
default: null default: null

View File

@ -9,6 +9,7 @@
*/ */
import { TransitionProps, VNode } from 'vue'; import { TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent'; import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptions, ButtonProps } from '../button';
import { InputTextPassThroughOptions } from '../inputtext'; import { InputTextPassThroughOptions } from '../inputtext';
import { PassThroughOptions } from '../passthrough'; import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, HintedString, PassThrough } from '../ts-helpers'; import { ClassComponent, GlobalComponentConstructor, HintedString, PassThrough } from '../ts-helpers';
@ -126,7 +127,7 @@ export interface CalendarBlurEvent {
/** /**
* Custom passthrough(pt) options. * Custom passthrough(pt) options.
* @see {@link CalendarProps.pt} * @see {@link BaseCalendarProps.pt}
*/ */
export interface CalendarPassThroughOptions { export interface CalendarPassThroughOptions {
/** /**
@ -308,12 +309,14 @@ export interface CalendarPassThroughOptions {
buttonbar?: CalendarPassThroughOptionType; buttonbar?: CalendarPassThroughOptionType;
/** /**
* Used to pass attributes to the today button's DOM element. * Used to pass attributes to the today button's DOM element.
* @see {@link ButtonPassThroughOptions}
*/ */
todayButton?: CalendarPassThroughOptionType; todayButton?: ButtonPassThroughOptions<CalendarSharedPassThroughMethodOptions>;
/** /**
* Used to pass attributes to the clear button's DOM element. * Used to pass attributes to the clear button's DOM element.
* @see {@link ButtonPassThroughOptions}
*/ */
clearButton?: CalendarPassThroughOptionType; clearButton?: ButtonPassThroughOptions<CalendarSharedPassThroughMethodOptions>;
/** /**
* Used to pass attributes to the aria selected day's DOM element. * Used to pass attributes to the aria selected day's DOM element.
*/ */
@ -490,19 +493,9 @@ export interface CalendarYearOptions {
} }
/** /**
* Defines valid properties in Calendar component. * Defines valid base properties in Calendar component.
*/ */
export interface CalendarProps { interface BaseCalendarProps {
/**
* 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;
/** /**
* Format of the date. Defaults to PrimeVue Locale configuration. * Format of the date. Defaults to PrimeVue Locale configuration.
*/ */
@ -760,6 +753,18 @@ export interface CalendarProps {
* Style class of the overlay panel. * Style class of the overlay panel.
*/ */
panelClass?: string | object | undefined; panelClass?: string | object | undefined;
/**
* Used to pass all properties of the ButtonProps to the today button component.
* @type {ButtonProps}
* @defaultValue { severity: 'secondary', text: true }
*/
todayButtonProps?: object | undefined;
/**
* Used to pass all properties of the ButtonProps to the clear button component.
* @type {ButtonProps}
* @defaultValue { severity: 'secondary', text: true }
*/
clearButtonProps?: object | undefined;
/** /**
* Establishes relationships between the component and label(s) where its value should be one or more element IDs. * Establishes relationships between the component and label(s) where its value should be one or more element IDs.
*/ */
@ -784,6 +789,57 @@ export interface CalendarProps {
*/ */
unstyled?: boolean; 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. * Defines valid options of the date slot in Calendar component.
*/ */
@ -936,9 +992,9 @@ export interface CalendarSlots {
export interface CalendarEmits { export interface CalendarEmits {
/** /**
* Emitted when the value changes. * 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. * Callback to invoke when input field is being typed.
* @param {Event} event - Browser event * @param {Event} event - Browser event
@ -1006,8 +1062,8 @@ export interface CalendarEmits {
*/ */
declare class Calendar extends ClassComponent<CalendarProps, CalendarSlots, CalendarEmits> {} declare class Calendar extends ClassComponent<CalendarProps, CalendarSlots, CalendarEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Calendar: GlobalComponentConstructor<Calendar>; Calendar: GlobalComponentConstructor<Calendar>;
} }
} }

View File

@ -482,12 +482,8 @@
</div> </div>
</div> </div>
<div v-if="showButtonBar" :class="cx('buttonbar')" v-bind="ptm('buttonbar')"> <div v-if="showButtonBar" :class="cx('buttonbar')" v-bind="ptm('buttonbar')">
<button type="button" @click="onTodayButtonClick($event)" :class="cx('todayButton')" @keydown="onContainerButtonKeydown" v-bind="ptm('todayButton')" data-pc-group-section="button"> <Button :label="todayLabel" @click="onTodayButtonClick($event)" :class="cx('todayButton')" @keydown="onContainerButtonKeydown" v-bind="todayButtonProps" :pt="ptm('todayButton')" data-pc-group-section="button" />
{{ todayLabel }} <Button :label="clearLabel" @click="onClearButtonClick($event)" :class="cx('clearButton')" @keydown="onContainerButtonKeydown" v-bind="clearButtonProps" :pt="ptm('clearButton')" data-pc-group-section="button" />
</button>
<button type="button" @click="onClearButtonClick($event)" :class="cx('clearButton')" @keydown="onContainerButtonKeydown" v-bind="ptm('clearButton')" data-pc-group-section="button">
{{ clearLabel }}
</button>
</div> </div>
<slot name="footer"></slot> <slot name="footer"></slot>
</div> </div>
@ -608,10 +604,6 @@ export default {
if (!this.disabled) { if (!this.disabled) {
this.preventFocus = true; this.preventFocus = true;
this.initFocusableCell(); this.initFocusableCell();
if (this.numberOfMonths === 1) {
this.overlay.style.width = DomHandler.getOuterWidth(this.$el) + 'px';
}
} }
} else { } else {
// this.input.value = this.formatValue(this.modelValue); // this.input.value = this.formatValue(this.modelValue);

View File

@ -152,8 +152,8 @@ export interface CardEmits {}
*/ */
declare class Card extends ClassComponent<CardProps, CardSlots, CardEmits> {} declare class Card extends ClassComponent<CardProps, CardSlots, CardEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Card: GlobalComponentConstructor<Card>; Card: GlobalComponentConstructor<Card>;
} }
} }

View File

@ -373,8 +373,8 @@ export interface CarouselEmits {
*/ */
declare class Carousel extends ClassComponent<CarouselProps, CarouselSlots, CarouselEmits> {} declare class Carousel extends ClassComponent<CarouselProps, CarouselSlots, CarouselEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Carousel: GlobalComponentConstructor<Carousel>; Carousel: GlobalComponentConstructor<Carousel>;
} }
} }

View File

@ -528,8 +528,8 @@ export interface CascadeSelectEmits {
*/ */
declare class CascadeSelect extends ClassComponent<CascadeSelectProps, CascadeSelectSlots, CascadeSelectEmits> {} declare class CascadeSelect extends ClassComponent<CascadeSelectProps, CascadeSelectSlots, CascadeSelectEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
CascadeSelect: GlobalComponentConstructor<CascadeSelect>; CascadeSelect: GlobalComponentConstructor<CascadeSelect>;
} }
} }

View File

@ -194,8 +194,8 @@ declare class Chart extends ClassComponent<ChartProps, ChartSlots, ChartEmits> {
getChart(): any; getChart(): any;
} }
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Chart: GlobalComponentConstructor<Chart>; Chart: GlobalComponentConstructor<Chart>;
} }
} }

View File

@ -263,8 +263,8 @@ export interface CheckboxEmits {
*/ */
declare class Checkbox extends ClassComponent<CheckboxProps, CheckboxSlots, CheckboxEmits> {} declare class Checkbox extends ClassComponent<CheckboxProps, CheckboxSlots, CheckboxEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Checkbox: GlobalComponentConstructor<Checkbox>; Checkbox: GlobalComponentConstructor<Checkbox>;
} }
} }

View File

@ -204,8 +204,8 @@ export interface ChipEmits {
*/ */
declare class Chip extends ClassComponent<ChipProps, ChipSlots, ChipEmits> {} declare class Chip extends ClassComponent<ChipProps, ChipSlots, ChipEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Chip: GlobalComponentConstructor<Chip>; Chip: GlobalComponentConstructor<Chip>;
} }
} }

View File

@ -302,8 +302,8 @@ export interface ChipsEmits {
*/ */
declare class Chips extends ClassComponent<ChipsProps, ChipsSlots, ChipsEmits> {} declare class Chips extends ClassComponent<ChipsProps, ChipsSlots, ChipsEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Chips: GlobalComponentConstructor<Chips>; Chips: GlobalComponentConstructor<Chips>;
} }
} }

View File

@ -239,8 +239,8 @@ export interface ColorPickerEmits {
*/ */
declare class ColorPicker extends ClassComponent<ColorPickerProps, ColorPickerSlots, ColorPickerEmits> {} declare class ColorPicker extends ClassComponent<ColorPickerProps, ColorPickerSlots, ColorPickerEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ColorPicker: GlobalComponentConstructor<ColorPicker>; ColorPicker: GlobalComponentConstructor<ColorPicker>;
} }
} }

View File

@ -983,8 +983,8 @@ declare class Column extends ClassComponent<ColumnProps, ColumnSlots, ColumnEmit
export type ColumnNode = Column & { props: Column['$props'] }; export type ColumnNode = Column & { props: Column['$props'] };
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Column: GlobalComponentConstructor<Column>; Column: GlobalComponentConstructor<Column>;
} }
} }

View File

@ -127,8 +127,8 @@ export interface ColumnGroupEmits {}
*/ */
declare class ColumnGroup extends ClassComponent<ColumnGroupProps, ColumnGroupSlots, ColumnGroupEmits> {} declare class ColumnGroup extends ClassComponent<ColumnGroupProps, ColumnGroupSlots, ColumnGroupEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ColumnGroup: GlobalComponentConstructor<ColumnGroup>; ColumnGroup: GlobalComponentConstructor<ColumnGroup>;
} }
} }

View File

@ -290,8 +290,8 @@ export interface ConfirmDialogEmits {}
*/ */
declare class ConfirmDialog extends ClassComponent<ConfirmDialogProps, ConfirmDialogSlots, ConfirmDialogEmits> {} declare class ConfirmDialog extends ClassComponent<ConfirmDialogProps, ConfirmDialogSlots, ConfirmDialogEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ConfirmDialog: GlobalComponentConstructor<ConfirmDialog>; ConfirmDialog: GlobalComponentConstructor<ConfirmDialog>;
} }
} }

View File

@ -235,8 +235,8 @@ export interface ConfirmPopupEmits {}
*/ */
declare class ConfirmPopup extends ClassComponent<ConfirmPopupProps, ConfirmPopupSlots, ConfirmPopupEmits> {} declare class ConfirmPopup extends ClassComponent<ConfirmPopupProps, ConfirmPopupSlots, ConfirmPopupEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ConfirmPopup: GlobalComponentConstructor<ConfirmPopup>; ConfirmPopup: GlobalComponentConstructor<ConfirmPopup>;
} }
} }

View File

@ -402,8 +402,8 @@ declare class ContextMenu extends ClassComponent<ContextMenuProps, ContextMenuSl
hide(): void; hide(): void;
} }
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ContextMenu: GlobalComponentConstructor<ContextMenu>; ContextMenu: GlobalComponentConstructor<ContextMenu>;
} }
} }

View File

@ -1517,8 +1517,8 @@ declare class DataTable extends ClassComponent<DataTableProps, DataTableSlots, D
exportCSV(options?: DataTableExportCSVOptions, data?: any[]): void; exportCSV(options?: DataTableExportCSVOptions, data?: any[]): void;
} }
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
DataTable: GlobalComponentConstructor<DataTable>; DataTable: GlobalComponentConstructor<DataTable>;
} }
} }

View File

@ -341,8 +341,8 @@ export interface DataViewEmits {
*/ */
declare class DataView extends ClassComponent<DataViewProps, DataViewSlots, DataViewEmits> {} declare class DataView extends ClassComponent<DataViewProps, DataViewSlots, DataViewEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
DataView: GlobalComponentConstructor<DataView>; DataView: GlobalComponentConstructor<DataView>;
} }
} }

View File

@ -176,8 +176,8 @@ export interface DataViewLayoutOptionsEmits {
*/ */
declare class DataViewLayoutOptions extends ClassComponent<DataViewLayoutOptionsProps, DataViewLayoutOptionsSlots, DataViewLayoutOptionsEmits> {} declare class DataViewLayoutOptions extends ClassComponent<DataViewLayoutOptionsProps, DataViewLayoutOptionsSlots, DataViewLayoutOptionsEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
DataViewLayoutOptions: GlobalComponentConstructor<DataViewLayoutOptions>; DataViewLayoutOptions: GlobalComponentConstructor<DataViewLayoutOptions>;
} }
} }

View File

@ -132,8 +132,8 @@ export interface DeferredContentEmits {
*/ */
declare class DeferredContent extends ClassComponent<DeferredContentProps, DeferredContentSlots, DeferredContentEmits> {} declare class DeferredContent extends ClassComponent<DeferredContentProps, DeferredContentSlots, DeferredContentEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
DeferredContent: GlobalComponentConstructor<DeferredContent>; DeferredContent: GlobalComponentConstructor<DeferredContent>;
} }
} }

View File

@ -415,8 +415,8 @@ export interface DialogEmits {
*/ */
declare class Dialog extends ClassComponent<DialogProps, DialogSlots, DialogEmits> {} declare class Dialog extends ClassComponent<DialogProps, DialogSlots, DialogEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Dialog: GlobalComponentConstructor<Dialog>; Dialog: GlobalComponentConstructor<Dialog>;
} }
} }

View File

@ -128,8 +128,8 @@ export interface DividerEmits {}
*/ */
declare class Divider extends ClassComponent<DividerProps, DividerSlots, DividerEmits> {} declare class Divider extends ClassComponent<DividerProps, DividerSlots, DividerEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Divider: GlobalComponentConstructor<Divider>; Divider: GlobalComponentConstructor<Divider>;
} }
} }

View File

@ -311,8 +311,8 @@ export interface DockEmits {
*/ */
declare class Dock extends ClassComponent<DockProps, DockSlots, DockEmits> {} declare class Dock extends ClassComponent<DockProps, DockSlots, DockEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Dock: GlobalComponentConstructor<Dock>; Dock: GlobalComponentConstructor<Dock>;
} }
} }

View File

@ -758,8 +758,8 @@ declare class Dropdown extends ClassComponent<DropdownProps, DropdownSlots, Drop
hide: (isFocus?: boolean) => void; hide: (isFocus?: boolean) => void;
} }
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Dropdown: GlobalComponentConstructor<Dropdown>; Dropdown: GlobalComponentConstructor<Dropdown>;
} }
} }

View File

@ -43,8 +43,8 @@ export interface DynamicDialogSlots {}
*/ */
declare class DynamicDialog extends ClassComponent<DynamicDialogProps, DynamicDialogSlots, DynamicDialogEmits> {} declare class DynamicDialog extends ClassComponent<DynamicDialogProps, DynamicDialogSlots, DynamicDialogEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
DynamicDialog: GlobalComponentConstructor<DynamicDialog>; DynamicDialog: GlobalComponentConstructor<DynamicDialog>;
} }
} }

View File

@ -305,8 +305,8 @@ export interface EditorEmits {
*/ */
declare class Editor extends ClassComponent<EditorProps, EditorSlots, EditorEmits> {} declare class Editor extends ClassComponent<EditorProps, EditorSlots, EditorEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Editor: GlobalComponentConstructor<Editor>; Editor: GlobalComponentConstructor<Editor>;
} }
} }

View File

@ -211,8 +211,8 @@ export interface FieldsetEmits {
*/ */
declare class Fieldset extends ClassComponent<FieldsetProps, FieldsetSlots, FieldsetEmits> {} declare class Fieldset extends ClassComponent<FieldsetProps, FieldsetSlots, FieldsetEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Fieldset: GlobalComponentConstructor<Fieldset>; Fieldset: GlobalComponentConstructor<Fieldset>;
} }
} }

View File

@ -614,8 +614,8 @@ export interface FileUploadEmits {
*/ */
declare class FileUpload extends ClassComponent<FileUploadProps, FileUploadSlots, FileUploadEmits> {} declare class FileUpload extends ClassComponent<FileUploadProps, FileUploadSlots, FileUploadEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
FileUpload: GlobalComponentConstructor<FileUpload>; FileUpload: GlobalComponentConstructor<FileUpload>;
} }
} }

View File

@ -115,8 +115,8 @@ export interface FloatLabelEmits {}
*/ */
declare class FloatLabel extends ClassComponent<FloatLabelProps, FloatLabelSlots, FloatLabelEmits> {} declare class FloatLabel extends ClassComponent<FloatLabelProps, FloatLabelSlots, FloatLabelEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
FloatLabel: GlobalComponentConstructor<FloatLabel>; FloatLabel: GlobalComponentConstructor<FloatLabel>;
} }
} }

View File

@ -526,8 +526,8 @@ export interface GalleriaEmits {
*/ */
declare class Galleria extends ClassComponent<GalleriaProps, GalleriaSlots, GalleriaEmits> {} declare class Galleria extends ClassComponent<GalleriaProps, GalleriaSlots, GalleriaEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Galleria: GlobalComponentConstructor<Galleria>; Galleria: GlobalComponentConstructor<Galleria>;
} }
} }

View File

@ -118,8 +118,8 @@ export interface IconFieldEmits {}
*/ */
declare class IconField extends ClassComponent<IconFieldProps, IconFieldSlots, IconFieldEmits> {} declare class IconField extends ClassComponent<IconFieldProps, IconFieldSlots, IconFieldEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
IconField: GlobalComponentConstructor<IconField>; IconField: GlobalComponentConstructor<IconField>;
} }
} }

View File

@ -3,8 +3,8 @@ import { Icon } from '../index';
declare class AngleDoubleDownIcon extends Icon {} declare class AngleDoubleDownIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
AngleDoubleDownIcon: GlobalComponentConstructor<AngleDoubleDownIcon>; AngleDoubleDownIcon: GlobalComponentConstructor<AngleDoubleDownIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class AngleDoubleLeftIcon extends Icon {} declare class AngleDoubleLeftIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
AngleDoubleLeftIcon: GlobalComponentConstructor<AngleDoubleLeftIcon>; AngleDoubleLeftIcon: GlobalComponentConstructor<AngleDoubleLeftIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class AngleDoubleRightIcon extends Icon {} declare class AngleDoubleRightIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
AngleDoubleRightIcon: GlobalComponentConstructor<AngleDoubleRightIcon>; AngleDoubleRightIcon: GlobalComponentConstructor<AngleDoubleRightIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class AngleDoubleUpIcon extends Icon {} declare class AngleDoubleUpIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
AngleDoubleUpIcon: GlobalComponentConstructor<AngleDoubleUpIcon>; AngleDoubleUpIcon: GlobalComponentConstructor<AngleDoubleUpIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class AngleDownIcon extends Icon {} declare class AngleDownIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
AngleDownIcon: GlobalComponentConstructor<AngleDownIcon>; AngleDownIcon: GlobalComponentConstructor<AngleDownIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class AngleLeftIcon extends Icon {} declare class AngleLeftIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
AngleLeftIcon: GlobalComponentConstructor<AngleLeftIcon>; AngleLeftIcon: GlobalComponentConstructor<AngleLeftIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class AngleRightIcon extends Icon {} declare class AngleRightIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
AngleRightIcon: GlobalComponentConstructor<AngleRightIcon>; AngleRightIcon: GlobalComponentConstructor<AngleRightIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class AngleUpIcon extends Icon {} declare class AngleUpIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
AngleUpIcon: GlobalComponentConstructor<AngleUpIcon>; AngleUpIcon: GlobalComponentConstructor<AngleUpIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class ArrowDownIcon extends Icon {} declare class ArrowDownIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ArrowDownIcon: GlobalComponentConstructor<ArrowDownIcon>; ArrowDownIcon: GlobalComponentConstructor<ArrowDownIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class ArrowUpIcon extends Icon {} declare class ArrowUpIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ArrowUpIcon: GlobalComponentConstructor<ArrowUpIcon>; ArrowUpIcon: GlobalComponentConstructor<ArrowUpIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class BanIcon extends Icon {} declare class BanIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
BanIcon: GlobalComponentConstructor<BanIcon>; BanIcon: GlobalComponentConstructor<BanIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class BarsIcon extends Icon {} declare class BarsIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
BarsIcon: GlobalComponentConstructor<BarsIcon>; BarsIcon: GlobalComponentConstructor<BarsIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class BlankIcon extends Icon {} declare class BlankIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
BlankIcon: GlobalComponentConstructor<BlankIcon>; BlankIcon: GlobalComponentConstructor<BlankIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class CalendarIcon extends Icon {} declare class CalendarIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
CalendarIcon: GlobalComponentConstructor<CalendarIcon>; CalendarIcon: GlobalComponentConstructor<CalendarIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class CheckIcon extends Icon {} declare class CheckIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
CheckIcon: GlobalComponentConstructor<CheckIcon>; CheckIcon: GlobalComponentConstructor<CheckIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class ChevronDownIcon extends Icon {} declare class ChevronDownIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ChevronDownIcon: GlobalComponentConstructor<ChevronDownIcon>; ChevronDownIcon: GlobalComponentConstructor<ChevronDownIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class ChevronLeftIcon extends Icon {} declare class ChevronLeftIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ChevronLeftIcon: GlobalComponentConstructor<ChevronLeftIcon>; ChevronLeftIcon: GlobalComponentConstructor<ChevronLeftIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class ChevronRightIcon extends Icon {} declare class ChevronRightIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ChevronRightIcon: GlobalComponentConstructor<ChevronRightIcon>; ChevronRightIcon: GlobalComponentConstructor<ChevronRightIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class ChevronUpIcon extends Icon {} declare class ChevronUpIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ChevronUpIcon: GlobalComponentConstructor<ChevronUpIcon>; ChevronUpIcon: GlobalComponentConstructor<ChevronUpIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class ExclamationTriangleIcon extends Icon {} declare class ExclamationTriangleIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ExclamationTriangleIcon: GlobalComponentConstructor<ExclamationTriangleIcon>; ExclamationTriangleIcon: GlobalComponentConstructor<ExclamationTriangleIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class EyeIcon extends Icon {} declare class EyeIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
EyeIcon: GlobalComponentConstructor<EyeIcon>; EyeIcon: GlobalComponentConstructor<EyeIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class EyeSlashIcon extends Icon {} declare class EyeSlashIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
EyeSlashIcon: GlobalComponentConstructor<EyeSlashIcon>; EyeSlashIcon: GlobalComponentConstructor<EyeSlashIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class FilterIcon extends Icon {} declare class FilterIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
FilterIcon: GlobalComponentConstructor<FilterIcon>; FilterIcon: GlobalComponentConstructor<FilterIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class FilterSlashIcon extends Icon {} declare class FilterSlashIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
FilterSlashIcon: GlobalComponentConstructor<FilterSlashIcon>; FilterSlashIcon: GlobalComponentConstructor<FilterSlashIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class InfoCircleIcon extends Icon {} declare class InfoCircleIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
InfoCircleIcon: GlobalComponentConstructor<InfoCircleIcon>; InfoCircleIcon: GlobalComponentConstructor<InfoCircleIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class MinusIcon extends Icon {} declare class MinusIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
MinusIcon: GlobalComponentConstructor<MinusIcon>; MinusIcon: GlobalComponentConstructor<MinusIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class PencilIcon extends Icon {} declare class PencilIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
PencilIcon: GlobalComponentConstructor<PencilIcon>; PencilIcon: GlobalComponentConstructor<PencilIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class PlusIcon extends Icon {} declare class PlusIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
PlusIcon: GlobalComponentConstructor<PlusIcon>; PlusIcon: GlobalComponentConstructor<PlusIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class RefreshIcon extends Icon {} declare class RefreshIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
RefreshIcon: GlobalComponentConstructor<RefreshIcon>; RefreshIcon: GlobalComponentConstructor<RefreshIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class SearchIcon extends Icon {} declare class SearchIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
SearchIcon: GlobalComponentConstructor<SearchIcon>; SearchIcon: GlobalComponentConstructor<SearchIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class SearchMinusIcon extends Icon {} declare class SearchMinusIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
SearchMinusIcon: GlobalComponentConstructor<SearchMinusIcon>; SearchMinusIcon: GlobalComponentConstructor<SearchMinusIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class SearchPlusIcon extends Icon {} declare class SearchPlusIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
SearchPlusIcon: GlobalComponentConstructor<SearchPlusIcon>; SearchPlusIcon: GlobalComponentConstructor<SearchPlusIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class SortAltIcon extends Icon {} declare class SortAltIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
SortAltIcon: GlobalComponentConstructor<SortAltIcon>; SortAltIcon: GlobalComponentConstructor<SortAltIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class SortAmountDownIcon extends Icon {} declare class SortAmountDownIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
SortAmountDownIcon: GlobalComponentConstructor<SortAmountDownIcon>; SortAmountDownIcon: GlobalComponentConstructor<SortAmountDownIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class SortAmountUpAltIcon extends Icon {} declare class SortAmountUpAltIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
SortAmountUpAltIcon: GlobalComponentConstructor<SortAmountUpAltIcon>; SortAmountUpAltIcon: GlobalComponentConstructor<SortAmountUpAltIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class SpinnerIcon extends Icon {} declare class SpinnerIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
SpinnerIcon: GlobalComponentConstructor<SpinnerIcon>; SpinnerIcon: GlobalComponentConstructor<SpinnerIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class StarIcon extends Icon {} declare class StarIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
StarIcon: GlobalComponentConstructor<StarIcon>; StarIcon: GlobalComponentConstructor<StarIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class StarFillIcon extends Icon {} declare class StarFillIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
StarFillIcon: GlobalComponentConstructor<StarFillIcon>; StarFillIcon: GlobalComponentConstructor<StarFillIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class ThLargeIcon extends Icon {} declare class ThLargeIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
ThLargeIcon: GlobalComponentConstructor<ThLargeIcon>; ThLargeIcon: GlobalComponentConstructor<ThLargeIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class TimesIcon extends Icon {} declare class TimesIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
TimesIcon: GlobalComponentConstructor<TimesIcon>; TimesIcon: GlobalComponentConstructor<TimesIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class TimesCircleIcon extends Icon {} declare class TimesCircleIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
TimesCircleIcon: GlobalComponentConstructor<TimesCircleIcon>; TimesCircleIcon: GlobalComponentConstructor<TimesCircleIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class TrashIcon extends Icon {} declare class TrashIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
TrashIcon: GlobalComponentConstructor<TrashIcon>; TrashIcon: GlobalComponentConstructor<TrashIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class UndoIcon extends Icon {} declare class UndoIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
UndoIcon: GlobalComponentConstructor<UndoIcon>; UndoIcon: GlobalComponentConstructor<UndoIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class UploadIcon extends Icon {} declare class UploadIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
UploadIcon: GlobalComponentConstructor<UploadIcon>; UploadIcon: GlobalComponentConstructor<UploadIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class WindowMaximizeIcon extends Icon {} declare class WindowMaximizeIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
WindowMaximizeIcon: GlobalComponentConstructor<WindowMaximizeIcon>; WindowMaximizeIcon: GlobalComponentConstructor<WindowMaximizeIcon>;
} }
} }

View File

@ -3,8 +3,8 @@ import { GlobalComponentConstructor } from '../../ts-helpers';
declare class WindowMinimizeIcon extends Icon {} declare class WindowMinimizeIcon extends Icon {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
WindowMinimizeIcon: GlobalComponentConstructor<WindowMinimizeIcon>; WindowMinimizeIcon: GlobalComponentConstructor<WindowMinimizeIcon>;
} }
} }

View File

@ -327,8 +327,8 @@ declare class Image extends ClassComponent<ImageProps, ImageSlots, ImageEmits> {
error(): void; error(): void;
} }
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Image: GlobalComponentConstructor<Image>; Image: GlobalComponentConstructor<Image>;
} }
} }

View File

@ -146,8 +146,8 @@ export interface InlineMessageEmits {}
*/ */
declare class InlineMessage extends ClassComponent<InlineMessageProps, InlineMessageSlots, InlineMessageEmits> {} declare class InlineMessage extends ClassComponent<InlineMessageProps, InlineMessageSlots, InlineMessageEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
InlineMessage: GlobalComponentConstructor<InlineMessage>; InlineMessage: GlobalComponentConstructor<InlineMessage>;
} }
} }

View File

@ -208,8 +208,8 @@ export interface InplaceEmits {
*/ */
declare class Inplace extends ClassComponent<InplaceProps, InplaceSlots, InplaceEmits> {} declare class Inplace extends ClassComponent<InplaceProps, InplaceSlots, InplaceEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Inplace: GlobalComponentConstructor<Inplace>; Inplace: GlobalComponentConstructor<Inplace>;
} }
} }

View File

@ -113,8 +113,8 @@ export interface InputGroupEmits {}
*/ */
declare class InputGroup extends ClassComponent<InputGroupProps, InputGroupSlots, InputGroupEmits> {} declare class InputGroup extends ClassComponent<InputGroupProps, InputGroupSlots, InputGroupEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
InputGroup: GlobalComponentConstructor<InputGroup>; InputGroup: GlobalComponentConstructor<InputGroup>;
} }
} }

View File

@ -113,8 +113,8 @@ export interface InputGroupAddonEmits {}
*/ */
declare class InputGroupAddon extends ClassComponent<InputGroupAddonProps, InputGroupAddonSlots, InputGroupAddonEmits> {} declare class InputGroupAddon extends ClassComponent<InputGroupAddonProps, InputGroupAddonSlots, InputGroupAddonEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
InputGroupAddon: GlobalComponentConstructor<InputGroupAddon>; InputGroupAddon: GlobalComponentConstructor<InputGroupAddon>;
} }
} }

View File

@ -108,8 +108,8 @@ export interface InputIconEmits {}
*/ */
declare class InputIcon extends ClassComponent<InputIconProps, InputIconSlots, InputIconEmits> {} declare class InputIcon extends ClassComponent<InputIconProps, InputIconSlots, InputIconEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
InputIcon: GlobalComponentConstructor<InputIcon>; InputIcon: GlobalComponentConstructor<InputIcon>;
} }
} }

View File

@ -212,8 +212,8 @@ export interface InputMaskEmits {
*/ */
declare class InputMask extends ClassComponent<InputMaskProps, InputMaskSlots, InputMaskEmits> {} declare class InputMask extends ClassComponent<InputMaskProps, InputMaskSlots, InputMaskEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
InputMask: GlobalComponentConstructor<InputMask>; InputMask: GlobalComponentConstructor<InputMask>;
} }
} }

View File

@ -429,8 +429,8 @@ declare class InputNumber extends ClassComponent<InputNumberProps, InputNumberSl
getFormatter: () => Intl.NumberFormat | undefined; getFormatter: () => Intl.NumberFormat | undefined;
} }
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
InputNumber: GlobalComponentConstructor<InputNumber>; InputNumber: GlobalComponentConstructor<InputNumber>;
} }
} }

View File

@ -266,8 +266,8 @@ export interface InputOtpEmits {
*/ */
declare class InputOtp extends ClassComponent<InputOtpProps, InputOtpSlots, InputOtpEmits> {} declare class InputOtp extends ClassComponent<InputOtpProps, InputOtpSlots, InputOtpEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
InputOtp: GlobalComponentConstructor<InputOtp>; InputOtp: GlobalComponentConstructor<InputOtp>;
} }
} }

View File

@ -207,8 +207,8 @@ export interface InputSwitchEmits {
*/ */
declare class InputSwitch extends ClassComponent<InputSwitchProps, InputSwitchSlots, InputSwitchEmits> {} declare class InputSwitch extends ClassComponent<InputSwitchProps, InputSwitchSlots, InputSwitchEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
InputSwitch: GlobalComponentConstructor<InputSwitch>; InputSwitch: GlobalComponentConstructor<InputSwitch>;
} }
} }

View File

@ -147,8 +147,8 @@ export interface InputTextEmits {
*/ */
declare class InputText extends ClassComponent<InputTextProps, InputTextSlots, InputTextEmits> {} declare class InputText extends ClassComponent<InputTextProps, InputTextSlots, InputTextEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
InputText: GlobalComponentConstructor<InputText>; InputText: GlobalComponentConstructor<InputText>;
} }
} }

View File

@ -242,8 +242,8 @@ export interface KnobEmits {
*/ */
declare class Knob extends ClassComponent<KnobProps, KnobSlots, KnobEmits> {} declare class Knob extends ClassComponent<KnobProps, KnobSlots, KnobEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Knob: GlobalComponentConstructor<Knob>; Knob: GlobalComponentConstructor<Knob>;
} }
} }

View File

@ -567,8 +567,8 @@ export interface ListboxEmits {
*/ */
declare class Listbox extends ClassComponent<ListboxProps, ListboxSlots, ListboxEmits> {} declare class Listbox extends ClassComponent<ListboxProps, ListboxSlots, ListboxEmits> {}
declare module '@vue/runtime-core' { declare module 'vue' {
interface GlobalComponents { export interface GlobalComponents {
Listbox: GlobalComponentConstructor<Listbox>; Listbox: GlobalComponentConstructor<Listbox>;
} }
} }

Some files were not shown because too many files have changed in this diff Show More