Merge branch 'master' into v4

pull/5507/head
tugcekucukoglu 2024-03-25 14:17:53 +03:00
commit 4f9fe2491b
150 changed files with 357 additions and 828 deletions

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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);

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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>;
}
}

View File

@ -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