Update d.ts files

pull/5756/head
Mert Sincan 2024-05-16 15:05:43 +01:00
parent 5b1858f507
commit b4c4c064ad
114 changed files with 1351 additions and 1348 deletions

View File

@ -60,7 +60,7 @@ export default {
if (values) { if (values) {
props = values[`${docName}Props`]; props = values[`${docName}Props`];
emits = values[`${docName}Emits`]; emits = values[`${docName}EmitsOptions`];
slots = values[`${docName}Slots`]; slots = values[`${docName}Slots`];
events = this.findEvents(values); events = this.findEvents(values);
options = this.findOptions(values, docName); // MenuItem && ConfirmationOptions options = this.findOptions(values, docName); // MenuItem && ConfirmationOptions

View File

@ -42,11 +42,10 @@ export const getStyleOptions = (name) => {
let data = []; let data = [];
for (const member of members) { for (const member of members) {
const { name, value, description } = member; const { value, description } = member;
data.push({ data.push({
class: value.replaceAll('"', ''), class: value.replaceAll('"', ''),
section: name,
description description
}); });
} }
@ -66,7 +65,6 @@ export const getTokenOptions = (preset, name) => {
data.push({ data.push({
token, token,
variable: designToken.name, variable: designToken.name,
section: key.toLowerCase(),
description: description description: description
}); });
} }

View File

@ -46,7 +46,7 @@ export interface AccordionPassThroughMethodOptions {
} }
/** /**
* Custom tab open event. * Custom tab open event.
* @see {@link AccordionEmits.tab-open} * @see {@link AccordionEmitsOptions.tab-open}
*/ */
export interface AccordionTabOpenEvent { export interface AccordionTabOpenEvent {
/** /**
@ -62,14 +62,14 @@ export interface AccordionTabOpenEvent {
/** /**
* Custom tab close event. * Custom tab close event.
* @see {@link AccordionEmits.tab-close} * @see {@link AccordionEmitsOptions.tab-close}
* @extends {AccordionTabOpenEvent} * @extends {AccordionTabOpenEvent}
*/ */
export interface AccordionTabCloseEvent extends AccordionTabOpenEvent {} export interface AccordionTabCloseEvent extends AccordionTabOpenEvent {}
/** /**
* Custom tab open event. * Custom tab open event.
* @see {@link AccordionEmits.tab-open} * @see {@link AccordionEmitsOptions.tab-open}
* @extends AccordionTabOpenEvent * @extends AccordionTabOpenEvent
*/ */
export interface AccordionClickEvent extends AccordionTabOpenEvent {} export interface AccordionClickEvent extends AccordionTabOpenEvent {}
@ -206,7 +206,7 @@ export interface AccordionSlots {
/** /**
* Defines valid emits in Accordion component. * Defines valid emits in Accordion component.
*/ */
interface AccordionEmitsOptions { export interface AccordionEmitsOptions {
/** /**
* Emitted when the active panel changes. * Emitted when the active panel changes.
* @param {string | string[] | null | undefined} value - Value of new active panel. * @param {string | string[] | null | undefined} value - Value of new active panel.

View File

@ -122,7 +122,7 @@ export interface AccordionContentSlots {
default(): VNode[]; default(): VNode[];
} }
interface AccordionContentEmitsOptions {} export interface AccordionContentEmitsOptions {}
export declare type AccordionContentEmits = EmitFn<AccordionContentEmitsOptions>; export declare type AccordionContentEmits = EmitFn<AccordionContentEmitsOptions>;

View File

@ -122,7 +122,7 @@ export interface AccordionHeaderSlots {
toggleicon(): VNode[]; toggleicon(): VNode[];
} }
interface AccordionHeaderEmitsOptions {} export interface AccordionHeaderEmitsOptions {}
export declare type AccordionHeaderEmits = EmitFn<AccordionHeaderEmitsOptions>; export declare type AccordionHeaderEmits = EmitFn<AccordionHeaderEmitsOptions>;

View File

@ -120,7 +120,7 @@ export interface AccordionPanelSlots {
default(): VNode[]; default(): VNode[];
} }
interface AccordionPanelEmitsOptions {} export interface AccordionPanelEmitsOptions {}
export declare type AccordionPanelEmits = EmitFn<AccordionPanelEmitsOptions>; export declare type AccordionPanelEmits = EmitFn<AccordionPanelEmitsOptions>;

View File

@ -216,7 +216,7 @@ export interface AccordionTabSlots {
/** /**
* Defines valid emits in AcordionTab component. * Defines valid emits in AcordionTab component.
*/ */
interface AccordionTabEmitsOptions {} export interface AccordionTabEmitsOptions {}
export declare type AccordionTabEmits = EmitFn<AccordionTabEmitsOptions>; export declare type AccordionTabEmits = EmitFn<AccordionTabEmitsOptions>;

View File

@ -69,7 +69,7 @@ export interface AutoCompleteSharedPassThroughMethodOptions {
/** /**
* Custom change event. * Custom change event.
* @see {@link AutoCompleteEmits.change} * @see {@link AutoCompleteEmitsOptions.change}
*/ */
export interface AutoCompleteChangeEvent { export interface AutoCompleteChangeEvent {
/** /**
@ -84,7 +84,7 @@ export interface AutoCompleteChangeEvent {
/** /**
* Custom item select event. * Custom item select event.
* @see {@link AutoCompleteEmits['item-select']} * @see {@link AutoCompleteEmitsOptions['item-select']}
*/ */
export interface AutoCompleteOptionSelectEvent { export interface AutoCompleteOptionSelectEvent {
/** /**
@ -99,14 +99,14 @@ export interface AutoCompleteOptionSelectEvent {
/** /**
* Custom item unselect event. * Custom item unselect event.
* @see {@link AutoCompleteEmits['item-unselect']} * @see {@link AutoCompleteEmitsOptions['item-unselect']}
* @extends AutoCompleteOptionSelectEvent * @extends AutoCompleteOptionSelectEvent
*/ */
export interface AutoCompleteOptionUnselectEvent extends AutoCompleteOptionSelectEvent {} export interface AutoCompleteOptionUnselectEvent extends AutoCompleteOptionSelectEvent {}
/** /**
* Custom dropdown click event. * Custom dropdown click event.
* @see {@link AutoCompleteEmits['dropdown-click']} * @see {@link AutoCompleteEmitsOptions['dropdown-click']}
*/ */
export interface AutoCompleteDropdownClickEvent { export interface AutoCompleteDropdownClickEvent {
/** /**
@ -121,7 +121,7 @@ export interface AutoCompleteDropdownClickEvent {
/** /**
* Custom complete event. * Custom complete event.
* @see {@link AutoCompleteEmits.complete} * @see {@link AutoCompleteEmitsOptions.complete}
*/ */
export interface AutoCompleteCompleteEvent { export interface AutoCompleteCompleteEvent {
/** /**
@ -778,7 +778,7 @@ export interface AutoCompleteSlots {
/** /**
* Defines valid emits in AutoComplete component. * Defines valid emits in AutoComplete component.
*/ */
interface AutoCompleteEmitsOptions { export interface AutoCompleteEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -147,7 +147,7 @@ export interface AvatarSlots {
/** /**
* Defines valid emits in Avatar component. * Defines valid emits in Avatar component.
*/ */
interface AvatarEmitsOptions { export interface AvatarEmitsOptions {
/** /**
* Triggered when an error occurs while loading an image file. * Triggered when an error occurs while loading an image file.
*/ */

View File

@ -101,7 +101,7 @@ export interface AvatarGroupSlots {
/** /**
* Defines valid emits in AvatarGroup component. * Defines valid emits in AvatarGroup component.
*/ */
interface AvatarGroupEmitsOptions {} export interface AvatarGroupEmitsOptions {}
export declare type AvatarGroupEmits = EmitFn<AvatarGroupEmitsOptions>; export declare type AvatarGroupEmits = EmitFn<AvatarGroupEmitsOptions>;

View File

@ -109,7 +109,7 @@ export interface BadgeSlots {
/** /**
* Defines valid emits in Badge component. * Defines valid emits in Badge component.
*/ */
interface BadgeEmitsOptions {} export interface BadgeEmitsOptions {}
export declare type BadgeEmits = EmitFn<BadgeEmitsOptions>; export declare type BadgeEmits = EmitFn<BadgeEmitsOptions>;

View File

@ -140,7 +140,7 @@ export interface BlockUISlots {
/** /**
* Defines valid emits in BlockUI component * Defines valid emits in BlockUI component
*/ */
interface BlockUIEmitsOptions { export interface BlockUIEmitsOptions {
/** /**
* Fired when the element gets blocked. * Fired when the element gets blocked.
*/ */

View File

@ -220,7 +220,7 @@ export interface BreadcrumbSlots {
/** /**
* Defines valid emits in Breadcrumb component. * Defines valid emits in Breadcrumb component.
*/ */
interface BreadcrumbEmitsOptions {} export interface BreadcrumbEmitsOptions {}
export declare type BreadcrumbEmits = EmitFn<BreadcrumbEmitsOptions>; export declare type BreadcrumbEmits = EmitFn<BreadcrumbEmitsOptions>;

View File

@ -232,7 +232,7 @@ export interface ButtonSlots {
/** /**
* Defines valid emits in Button component. * Defines valid emits in Button component.
*/ */
interface ButtonEmitsOptions {} export interface ButtonEmitsOptions {}
export declare type ButtonEmits = EmitFn<ButtonEmitsOptions>; export declare type ButtonEmits = EmitFn<ButtonEmitsOptions>;

View File

@ -93,7 +93,7 @@ export interface ButtonGroupSlots {
/** /**
* Defines valid emits in ButtonGroup component. * Defines valid emits in ButtonGroup component.
*/ */
interface ButtonGroupEmitsOptions {} export interface ButtonGroupEmitsOptions {}
export declare type ButtonGroupEmits = EmitFn<ButtonGroupEmitsOptions>; export declare type ButtonGroupEmits = EmitFn<ButtonGroupEmitsOptions>;

View File

@ -28,19 +28,19 @@ export interface CalendarResponsiveOptions extends DatePicker.DatePickerResponsi
/** /**
* Custom Calendar month change event. * Custom Calendar month change event.
* @see {@link CalendarEmits['month-change']]} * @see {@link CalendarEmitsOptions['month-change']]}
*/ */
export interface CalendarMonthChangeEvent extends DatePicker.DatePickerMonthChangeEvent {} export interface CalendarMonthChangeEvent extends DatePicker.DatePickerMonthChangeEvent {}
/** /**
* Custom Calendar year change event. * Custom Calendar year change event.
* @see {@link CalendarEmits['year-change']]} * @see {@link CalendarEmitsOptions['year-change']]}
*/ */
export interface CalendarYearChangeEvent extends DatePicker.DatePickerYearChangeEvent {} export interface CalendarYearChangeEvent extends DatePicker.DatePickerYearChangeEvent {}
/** /**
* Custom Calendar blur event. * Custom Calendar blur event.
* @see {@link CalendarEmits.blur} * @see {@link CalendarEmitsOptions['blur']}
*/ */
export interface CalendarBlurEvent extends DatePicker.DatePickerBlurEvent {} export interface CalendarBlurEvent extends DatePicker.DatePickerBlurEvent {}
@ -98,7 +98,7 @@ export interface CalendarSlots extends DatePicker.DatePickerSlots {}
/** /**
* Defines valid emits in Calendar component. * Defines valid emits in Calendar component.
*/ */
interface CalendarEmitsOptions {} export interface CalendarEmitsOptions {}
export declare type CalendarEmits = EmitFn<CalendarEmitsOptions> & DatePicker.DatePickerEmits; export declare type CalendarEmits = EmitFn<CalendarEmitsOptions> & DatePicker.DatePickerEmits;

View File

@ -141,7 +141,7 @@ export interface CardSlots {
/** /**
* Defines valid emits in Card component. * Defines valid emits in Card component.
*/ */
interface CardEmitsOptions {} export interface CardEmitsOptions {}
export declare type CardEmits = EmitFn<CardEmitsOptions>; export declare type CardEmits = EmitFn<CardEmitsOptions>;

View File

@ -370,7 +370,7 @@ export interface CarouselSlots {
/** /**
* Defines valid emits in Carousel component. * Defines valid emits in Carousel component.
*/ */
interface CarouselEmitsOptions { export interface CarouselEmitsOptions {
/** /**
* Emitted when the page changes. * Emitted when the page changes.
* @param {number} value - New page value. * @param {number} value - New page value.

View File

@ -52,7 +52,7 @@ export interface CascadeSelectPassThroughMethodOptions {
/** /**
* Custom change event * Custom change event
* @see {@link CascadeSelectEmits.change} * @see {@link CascadeSelectEmitsOptions.change}
*/ */
export interface CascadeSelectChangeEvent { export interface CascadeSelectChangeEvent {
/** /**
@ -66,7 +66,7 @@ export interface CascadeSelectChangeEvent {
} }
/** /**
* @see {@link CascadeSelectEmits.change} * @see {@link CascadeSelectEmitsOptions.change}
* @extends CascadeSelectChangeEvent * @extends CascadeSelectChangeEvent
*/ */
export interface CascadeSelectGroupChangeEvent extends CascadeSelectChangeEvent {} export interface CascadeSelectGroupChangeEvent extends CascadeSelectChangeEvent {}
@ -497,7 +497,7 @@ export interface CascadeSelectSlots {
/** /**
* Defines valid emits in CascadeSelect component. * Defines valid emits in CascadeSelect component.
*/ */
interface CascadeSelectEmitsOptions { export interface CascadeSelectEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -69,7 +69,7 @@ export interface ChartPassThroughAttributes {
/** /**
* Custom select event. * Custom select event.
* @see {@link ChartEmits.select} * @see {@link ChartEmitsOptions.select}
*/ */
export interface ChartSelectEvent { export interface ChartSelectEvent {
/** /**
@ -146,7 +146,7 @@ export interface ChartSlots {}
/** /**
* Defines valid emits in Chart component. * Defines valid emits in Chart component.
*/ */
interface ChartEmitsOptions { export interface ChartEmitsOptions {
/** /**
* Callback to invoke when a tab gets expanded. * Callback to invoke when a tab gets expanded.
* @param {ChartSelectEvent} event - Custom select event. * @param {ChartSelectEvent} event - Custom select event.

View File

@ -235,7 +235,7 @@ export interface CheckboxSlots {
/** /**
* Defines valid emits in Checkbox component. * Defines valid emits in Checkbox component.
*/ */
interface CheckboxEmitsOptions { export interface CheckboxEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -187,7 +187,7 @@ export interface ChipSlots {
/** /**
* Defines valid properties in Chip component. * Defines valid properties in Chip component.
*/ */
interface ChipEmitsOptions { export interface ChipEmitsOptions {
/** /**
* Callback to invoke when a chip is removed. * Callback to invoke when a chip is removed.
* @param {Event} event - Browser event. * @param {Event} event - Browser event.

View File

@ -23,13 +23,13 @@ export interface ChipsSharedPassThroughMethodOptions extends InputChips.InputChi
/** /**
* Custom add event. * Custom add event.
* @see {@link ChipsEmits.add} * @see {@link ChipsEmitsOptions.add}
*/ */
export interface ChipsAddEvent extends InputChips.InputChipsAddEvent {} export interface ChipsAddEvent extends InputChips.InputChipsAddEvent {}
/** /**
* Custom remove event. * Custom remove event.
* @see {@link ChipsEmits.remove} * @see {@link ChipsEmitsOptions.remove}
* @extends ChipsAddEvent * @extends ChipsAddEvent
*/ */
export interface ChipsRemoveEvent extends ChipsAddEvent {} export interface ChipsRemoveEvent extends ChipsAddEvent {}
@ -61,7 +61,7 @@ export interface ChipsSlots extends InputChips.InputChipsSlots {}
/** /**
* Defines valid emits in Chips component. * Defines valid emits in Chips component.
*/ */
interface ChipsEmitsOptions {} export interface ChipsEmitsOptions {}
export declare type ChipsEmits = EmitFn<ChipsEmitsOptions> & InputChips.InputChipsEmits; export declare type ChipsEmits = EmitFn<ChipsEmitsOptions> & InputChips.InputChipsEmits;

View File

@ -48,7 +48,7 @@ export interface ColorPickerPassThroughMethodOptions {
/** /**
* Custom change event. * Custom change event.
* @see {@link ColorPickerEmits.change} * @see {@link ColorPickerEmitsOptions.change}
*/ */
export interface ColorPickerChangeEvent { export interface ColorPickerChangeEvent {
/** /**
@ -208,7 +208,7 @@ export interface ColorPickerSlots {}
/** /**
* Defines valid emits in ColorPicker component. * Defines valid emits in ColorPicker component.
*/ */
interface ColorPickerEmitsOptions { export interface ColorPickerEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -974,7 +974,7 @@ export interface ColumnSlots {
nodetoggleicon(): VNode[]; nodetoggleicon(): VNode[];
} }
interface ColumnEmitsOptions {} export interface ColumnEmitsOptions {}
export declare type ColumnEmits = EmitFn<ColumnEmitsOptions>; export declare type ColumnEmits = EmitFn<ColumnEmitsOptions>;

View File

@ -118,7 +118,7 @@ export interface ColumnGroupSlots {}
/** /**
* Defines valid emits in ColumnGroup component. * Defines valid emits in ColumnGroup component.
*/ */
interface ColumnGroupEmitsOptions {} export interface ColumnGroupEmitsOptions {}
export declare type ColumnGroupEmits = EmitFn<ColumnGroupEmitsOptions>; export declare type ColumnGroupEmits = EmitFn<ColumnGroupEmitsOptions>;

View File

@ -224,7 +224,7 @@ export interface ConfirmPopupSlots {
/** /**
* Defines valid emits in ConfirmPopup component. * Defines valid emits in ConfirmPopup component.
*/ */
interface ConfirmPopupEmitsOptions {} export interface ConfirmPopupEmitsOptions {}
export declare type ConfirmPopupEmits = EmitFn<ConfirmPopupEmitsOptions>; export declare type ConfirmPopupEmits = EmitFn<ConfirmPopupEmitsOptions>;

View File

@ -341,7 +341,7 @@ export interface ContextMenuSlots {
/** /**
* Defines valid emits in ContextMenu component. * Defines valid emits in ContextMenu component.
*/ */
interface ContextMenuEmitsOptions { export interface ContextMenuEmitsOptions {
/** /**
* Callback to invoke when the component receives focus. * Callback to invoke when the component receives focus.
* @param {Event} event - Browser event. * @param {Event} event - Browser event.

View File

@ -230,7 +230,7 @@ export interface DataTableEditButtonPropsOptions {
/** /**
* Custom sort event. * Custom sort event.
* @see {@link DataTableEmits.sort} * @see {@link DataTableEmitsOptions.sort}
*/ */
export interface DataTableSortEvent { export interface DataTableSortEvent {
/** /**
@ -270,7 +270,7 @@ export interface DataTableSortEvent {
/** /**
* Custom pagination event. * Custom pagination event.
* @see {@link DataTableEmits.page} * @see {@link DataTableEmitsOptions.page}
* @extends DataTableSortEvent * @extends DataTableSortEvent
*/ */
export interface DataTablePageEvent extends DataTableSortEvent { export interface DataTablePageEvent extends DataTableSortEvent {
@ -286,7 +286,7 @@ export interface DataTablePageEvent extends DataTableSortEvent {
/** /**
* Custom filter event. * Custom filter event.
* @see {@link DataTableEmits.filter} * @see {@link DataTableEmitsOptions.filter}
* @extends DataTableSortEvent * @extends DataTableSortEvent
*/ */
export interface DataTableFilterEvent extends DataTableSortEvent { export interface DataTableFilterEvent extends DataTableSortEvent {
@ -298,7 +298,7 @@ export interface DataTableFilterEvent extends DataTableSortEvent {
/** /**
* Custom row click event. * Custom row click event.
* @see {@link DataTableEmits['row-click']} * @see {@link DataTableEmitsOptions['row-click']}
*/ */
export interface DataTableRowClickEvent { export interface DataTableRowClickEvent {
/** /**
@ -317,21 +317,21 @@ export interface DataTableRowClickEvent {
/** /**
* Custom row double click event. * Custom row double click event.
* @see {@link DataTableEmits['row-dblclick']]} * @see {@link DataTableEmitsOptions['row-dblclick']]}
* @extends DataTableRowClickEvent * @extends DataTableRowClickEvent
*/ */
export interface DataTableRowDoubleClickEvent extends DataTableRowClickEvent {} export interface DataTableRowDoubleClickEvent extends DataTableRowClickEvent {}
/** /**
* Custom row context menu event. * Custom row context menu event.
* @see {@link DataTableEmits['row-contextmenu']} * @see {@link DataTableEmitsOptions['row-contextmenu']}
* @extends DataTableRowClickEvent * @extends DataTableRowClickEvent
*/ */
export interface DataTableRowContextMenuEvent extends DataTableRowClickEvent {} export interface DataTableRowContextMenuEvent extends DataTableRowClickEvent {}
/** /**
* Custom row select event. * Custom row select event.
* @see {@link DataTableEmits['row-select']} * @see {@link DataTableEmitsOptions['row-select']}
*/ */
export interface DataTableRowSelectEvent { export interface DataTableRowSelectEvent {
/** /**
@ -354,14 +354,14 @@ export interface DataTableRowSelectEvent {
/** /**
* Custom row unselect event. * Custom row unselect event.
* @see {@link DataTableEmits['row-unselect']} * @see {@link DataTableEmitsOptions['row-unselect']}
* @extends DataTableRowSelectEvent * @extends DataTableRowSelectEvent
*/ */
export interface DataTableRowUnselectEvent extends DataTableRowSelectEvent {} export interface DataTableRowUnselectEvent extends DataTableRowSelectEvent {}
/** /**
* Custom row select all event. * Custom row select all event.
* @see {@link DataTableEmits['row-select-all']} * @see {@link DataTableEmitsOptions['row-select-all']}
*/ */
export interface DataTableRowSelectAllEvent { export interface DataTableRowSelectAllEvent {
/** /**
@ -376,7 +376,7 @@ export interface DataTableRowSelectAllEvent {
/** /**
* Custom row unselect all event. * Custom row unselect all event.
* @see {@link DataTableEmits['row-unselect-all']} * @see {@link DataTableEmitsOptions['row-unselect-all']}
*/ */
export interface DataTableRowUnselectAllEvent { export interface DataTableRowUnselectAllEvent {
/** /**
@ -387,7 +387,7 @@ export interface DataTableRowUnselectAllEvent {
/** /**
* Custom row select all change event. * Custom row select all change event.
* @see {@link DataTableEmits['select-all-change']} * @see {@link DataTableEmitsOptions['select-all-change']}
*/ */
export interface DataTableSelectAllChangeEvent { export interface DataTableSelectAllChangeEvent {
/** /**
@ -402,7 +402,7 @@ export interface DataTableSelectAllChangeEvent {
/** /**
* Custom column resize end event. * Custom column resize end event.
* @see {@link DataTableEmits['column-resize-end']} * @see {@link DataTableEmitsOptions['column-resize-end']}
*/ */
export interface DataTableColumnResizeEndEvent { export interface DataTableColumnResizeEndEvent {
/** /**
@ -417,7 +417,7 @@ export interface DataTableColumnResizeEndEvent {
/** /**
* Custom row column reorder event. * Custom row column reorder event.
* @see {@link DataTableEmits['column-reorder']} * @see {@link DataTableEmitsOptions['column-reorder']}
*/ */
export interface DataTableColumnReorderEvent { export interface DataTableColumnReorderEvent {
/** /**
@ -436,7 +436,7 @@ export interface DataTableColumnReorderEvent {
/** /**
* Custom row reorder event. * Custom row reorder event.
* @see {@link DataTableEmits['row-reorder']} * @see {@link DataTableEmitsOptions['row-reorder']}
*/ */
export interface DataTableRowReorderEvent { export interface DataTableRowReorderEvent {
/** /**
@ -459,7 +459,7 @@ export interface DataTableRowReorderEvent {
/** /**
* Custom row expand event. * Custom row expand event.
* @see {@link DataTableEmits['row-expand']} * @see {@link DataTableEmitsOptions['row-expand']}
*/ */
export interface DataTableRowExpandEvent { export interface DataTableRowExpandEvent {
/** /**
@ -474,14 +474,14 @@ export interface DataTableRowExpandEvent {
/** /**
* Custom row collapse event. * Custom row collapse event.
* @see {@link DataTableEmits['row-expand']} * @see {@link DataTableEmitsOptions['row-expand']}
* @extends DataTableRowExpandEvent * @extends DataTableRowExpandEvent
*/ */
export interface DataTableRowCollapseEvent extends DataTableRowExpandEvent {} export interface DataTableRowCollapseEvent extends DataTableRowExpandEvent {}
/** /**
* Custom cell edit init event. * Custom cell edit init event.
* @see {@link DataTableEmits['cell-edit-init']} * @see {@link DataTableEmitsOptions['cell-edit-init']}
*/ */
export interface DataTableCellEditInitEvent { export interface DataTableCellEditInitEvent {
/** /**
@ -504,14 +504,14 @@ export interface DataTableCellEditInitEvent {
/** /**
* Custom cell edit cancel event. * Custom cell edit cancel event.
* @see {@link DataTableEmits['cell-edit-cancel']} * @see {@link DataTableEmitsOptions['cell-edit-cancel']}
* @extends DataTableCellEditInitEvent * @extends DataTableCellEditInitEvent
*/ */
export interface DataTableCellEditCancelEvent extends DataTableCellEditInitEvent {} export interface DataTableCellEditCancelEvent extends DataTableCellEditInitEvent {}
/** /**
* Custom cell edit complete event. * Custom cell edit complete event.
* @see {@link DataTableEmits['cell-edit-complete']} * @see {@link DataTableEmitsOptions['cell-edit-complete']}
*/ */
export interface DataTableCellEditCompleteEvent { export interface DataTableCellEditCompleteEvent {
/** /**
@ -550,7 +550,7 @@ export interface DataTableCellEditCompleteEvent {
/** /**
* Custom row edit init event. * Custom row edit init event.
* @see {@link DataTableEmits['row-edit-init']} * @see {@link DataTableEmitsOptions['row-edit-init']}
*/ */
export interface DataTableRowEditInitEvent { export interface DataTableRowEditInitEvent {
/** /**
@ -577,21 +577,21 @@ export interface DataTableRowEditInitEvent {
/** /**
* Custom row edit save event. * Custom row edit save event.
* @see {@link DataTableEmits['row-edit-save']} * @see {@link DataTableEmitsOptions['row-edit-save']}
* @extends DataTableRowEditInitEvent * @extends DataTableRowEditInitEvent
*/ */
export interface DataTableRowEditSaveEvent extends DataTableRowEditInitEvent {} export interface DataTableRowEditSaveEvent extends DataTableRowEditInitEvent {}
/** /**
* Custom row edit cancel event. * Custom row edit cancel event.
* @see {@link DataTableEmits['row-edit-cancel']} * @see {@link DataTableEmitsOptions['row-edit-cancel']}
* @extends DataTableRowEditCancelEvent * @extends DataTableRowEditCancelEvent
*/ */
export interface DataTableRowEditCancelEvent extends DataTableRowEditInitEvent {} export interface DataTableRowEditCancelEvent extends DataTableRowEditInitEvent {}
/** /**
* Custom state event. * Custom state event.
* @see {@link DataTableEmits['state-save']} * @see {@link DataTableEmitsOptions['state-save']}
*/ */
export interface DataTableStateEvent { export interface DataTableStateEvent {
/** /**
@ -1415,7 +1415,7 @@ export interface DataTableSlots {
/** /**
* Defines valid emits in Datatable component. * Defines valid emits in Datatable component.
*/ */
interface DataTableEmitsOptions { export interface DataTableEmitsOptions {
/** /**
* Emitted when the first changes. * Emitted when the first changes.
* @param {number} value - New value. * @param {number} value - New value.

View File

@ -61,7 +61,7 @@ export interface DataViewSharedPassThroughMethodOptions {
/** /**
* Custom page event. * Custom page event.
* @see {@link DataViewEmits.page} * @see {@link DataViewEmitsOptions.page}
*/ */
export interface DataViewPageEvent { export interface DataViewPageEvent {
/** /**
@ -313,7 +313,7 @@ export interface DataViewSlots {
/** /**
* Defines valid slots in DataView component. * Defines valid slots in DataView component.
*/ */
interface DataViewEmitsOptions { export interface DataViewEmitsOptions {
/** /**
* Emitted when the first changes. * Emitted when the first changes.
* @param {number} value - New value. * @param {number} value - New value.

View File

@ -82,7 +82,7 @@ export interface DatePickerResponsiveOptions {
/** /**
* Custom DatePicker month change event. * Custom DatePicker month change event.
* @see {@link DatePickerEmits['month-change']]} * @see {@link DatePickerEmitsOptions['month-change']]}
*/ */
export interface DatePickerMonthChangeEvent { export interface DatePickerMonthChangeEvent {
/** /**
@ -97,7 +97,7 @@ export interface DatePickerMonthChangeEvent {
/** /**
* Custom DatePicker year change event. * Custom DatePicker year change event.
* @see {@link DatePickerEmits['year-change']]} * @see {@link DatePickerEmitsOptions['year-change']]}
*/ */
export interface DatePickerYearChangeEvent { export interface DatePickerYearChangeEvent {
/** /**
@ -112,7 +112,7 @@ export interface DatePickerYearChangeEvent {
/** /**
* Custom DatePicker blur event. * Custom DatePicker blur event.
* @see {@link DatePickerEmits.blur} * @see {@link DatePickerEmitsOptions.blur}
*/ */
export interface DatePickerBlurEvent { export interface DatePickerBlurEvent {
/** /**
@ -988,7 +988,7 @@ export interface DatePickerSlots {
/** /**
* Defines valid emits in DatePicker component. * Defines valid emits in DatePicker component.
*/ */
interface DatePickerEmitsOptions { export interface DatePickerEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {string | Date | string[] | Date[] | undefined} value - New value. * @param {string | Date | string[] | Date[] | undefined} value - New value.

View File

@ -116,7 +116,7 @@ export interface DeferredContentSlots {
/** /**
* Defines valid emits in DeferredContent component. * Defines valid emits in DeferredContent component.
*/ */
interface DeferredContentEmitsOptions { export interface DeferredContentEmitsOptions {
/** /**
* Callback to invoke when deferred content is loaded. * Callback to invoke when deferred content is loaded.
*/ */

View File

@ -392,7 +392,7 @@ export interface DialogSlots {
/** /**
* Defines valid emits in Dialog component. * Defines valid emits in Dialog component.
*/ */
interface DialogEmitsOptions { export interface DialogEmitsOptions {
/** /**
* Emitted when the visible changes. * Emitted when the visible changes.
* @param {boolean} value - New value. * @param {boolean} value - New value.

View File

@ -116,7 +116,7 @@ export interface DividerSlots {
default(): VNode[]; default(): VNode[];
} }
interface DividerEmitsOptions {} export interface DividerEmitsOptions {}
export declare type DividerEmits = EmitFn<DividerEmitsOptions>; export declare type DividerEmits = EmitFn<DividerEmitsOptions>;

View File

@ -299,7 +299,7 @@ export interface DockSlots {
/** /**
* Defines valid emits in Dock component. * Defines valid emits in Dock component.
*/ */
interface DockEmitsOptions { export interface DockEmitsOptions {
/** /**
* Callback to invoke when the component receives focus. * Callback to invoke when the component receives focus.
* @param {Event} event - Browser event. * @param {Event} event - Browser event.

View File

@ -251,7 +251,7 @@ export interface DrawerSlots {
/** /**
* Defines valid emits in Drawer component. * Defines valid emits in Drawer component.
*/ */
interface DrawerEmitsOptions { export interface DrawerEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {boolean} value - New value. * @param {boolean} value - New value.

View File

@ -18,13 +18,13 @@ export interface DropdownPassThroughMethodOptions<T> extends Select.SelectPassTh
/** /**
* Custom change event. * Custom change event.
* @see {@link DropdownEmits.change} * @see {@link DropdownEmitsOptions.change}
*/ */
export interface DropdownChangeEvent extends Select.SelectChangeEvent {} export interface DropdownChangeEvent extends Select.SelectChangeEvent {}
/** /**
* Custom filter event. * Custom filter event.
* @see {@link DropdownEmits.filter} * @see {@link DropdownEmitsOptions.filter}
*/ */
export interface DropdownFilterEvent extends Select.SelectFilterEvent {} export interface DropdownFilterEvent extends Select.SelectFilterEvent {}
@ -62,7 +62,7 @@ export interface DropdownSlots extends Select.SelectSlots {}
/** /**
* Defines valid emits in Dropdown component. * Defines valid emits in Dropdown component.
*/ */
interface DropdownEmitsOptions {} export interface DropdownEmitsOptions {}
export declare type DropdownEmits = EmitFn<DropdownEmitsOptions> & Select.SelectEmits; export declare type DropdownEmits = EmitFn<DropdownEmitsOptions> & Select.SelectEmits;

View File

@ -28,7 +28,7 @@ export interface DynamicDialogSlots {}
/** /**
* Defines valid emits in DynamicDialog component. * Defines valid emits in DynamicDialog component.
*/ */
interface DynamicDialogEmitsOptions {} export interface DynamicDialogEmitsOptions {}
export declare type DynamicDialogEmits = EmitFn<DynamicDialogEmitsOptions>; export declare type DynamicDialogEmits = EmitFn<DynamicDialogEmitsOptions>;

View File

@ -46,7 +46,7 @@ export interface EditorPassThroughMethodOptions {
/** /**
* Custom text change event. * Custom text change event.
* @see {@link EditorEmits['text-change']} * @see {@link EditorEmitsOptions['text-change']}
*/ */
export interface EditorTextChangeEvent { export interface EditorTextChangeEvent {
/** /**
@ -72,7 +72,7 @@ export interface EditorTextChangeEvent {
} }
/** /**
* Custom selection change event. * Custom selection change event.
* @see {@link EditorEmits['selection-change']} * @see {@link EditorEmitsOptions['selection-change']}
*/ */
export interface EditorSelectionChangeEvent { export interface EditorSelectionChangeEvent {
/** /**
@ -102,7 +102,7 @@ export interface EditorSelectionChangeEvent {
} }
/** /**
* Custom load event. * Custom load event.
* @see {@link EditorEmits.load} * @see {@link EditorEmitsOptions.load}
*/ */
export interface EditorLoadEvent { export interface EditorLoadEvent {
/** /**
@ -272,7 +272,7 @@ export interface EditorSlots {
/** /**
* Defines valid emits in Editor component. * Defines valid emits in Editor component.
*/ */
interface EditorEmitsOptions { export interface EditorEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {string} value - New value. * @param {string} value - New value.

View File

@ -48,7 +48,7 @@ export interface FieldsetPassThroughMethodOptions {
/** /**
* Custom toggle event. * Custom toggle event.
* @see {@link FieldsetEmits.toggle} * @see {@link FieldsetEmitsOptions.toggle}
*/ */
export interface FieldsetToggleEvent { export interface FieldsetToggleEvent {
/** /**
@ -216,7 +216,7 @@ export interface FieldsetSlots {
/** /**
* Defines valid emits in Fildset component. * Defines valid emits in Fildset component.
*/ */
interface FieldsetEmitsOptions { export interface FieldsetEmitsOptions {
/** /**
* Emitted when the collapsed changes. * Emitted when the collapsed changes.
* @param {boolean} value - New value. * @param {boolean} value - New value.

View File

@ -64,7 +64,7 @@ export interface FileUploadPassThroughMethodOptions {
/** /**
* Custom select event. * Custom select event.
* @see {@link FileUploadEmits.select} * @see {@link FileUploadEmitsOptions.select}
*/ */
export interface FileUploadSelectEvent { export interface FileUploadSelectEvent {
/** /**
@ -79,7 +79,7 @@ export interface FileUploadSelectEvent {
/** /**
* Custom before upload event. * Custom before upload event.
* @see {@link FileUploadEmits['before-upload']} * @see {@link FileUploadEmitsOptions['before-upload']}
*/ */
export interface FileUploadBeforeUploadEvent { export interface FileUploadBeforeUploadEvent {
/** /**
@ -94,7 +94,7 @@ export interface FileUploadBeforeUploadEvent {
/** /**
* Custom progress event. * Custom progress event.
* @see {@link FileUploadEmits.progress } * @see {@link FileUploadEmitsOptions.progress }
*/ */
export interface FileUploadProgressEvent { export interface FileUploadProgressEvent {
/** /**
@ -109,7 +109,7 @@ export interface FileUploadProgressEvent {
/** /**
* Custom upload event. * Custom upload event.
* @see {@link FileUploadEmits.upload} * @see {@link FileUploadEmitsOptions.upload}
*/ */
export interface FileUploadUploadEvent { export interface FileUploadUploadEvent {
/** /**
@ -124,7 +124,7 @@ export interface FileUploadUploadEvent {
/** /**
* Custom uploader event. * Custom uploader event.
* @see {@link FileUploadEmits.uploader} * @see {@link FileUploadEmitsOptions.uploader}
*/ */
export interface FileUploadUploaderEvent { export interface FileUploadUploaderEvent {
/** /**
@ -134,7 +134,7 @@ export interface FileUploadUploaderEvent {
} }
/** /**
* Custom error event. * Custom error event.
* @see {@link FileUploadEmits.error} * @see {@link FileUploadEmitsOptions.error}
*/ */
export interface FileUploadErrorEvent { export interface FileUploadErrorEvent {
/** /**
@ -148,7 +148,7 @@ export interface FileUploadErrorEvent {
} }
/** /**
* Custom before send event. * Custom before send event.
* @see {@link FileUploadEmits['before-send']} * @see {@link FileUploadEmitsOptions['before-send']}
*/ */
export interface FileUploadBeforeSendEvent { export interface FileUploadBeforeSendEvent {
/** /**
@ -163,7 +163,7 @@ export interface FileUploadBeforeSendEvent {
/** /**
* Custom remove event. * Custom remove event.
* @see {@link FileUploadEmits.remove} * @see {@link FileUploadEmitsOptions.remove}
*/ */
export interface FileUploadRemoveEvent { export interface FileUploadRemoveEvent {
/** /**
@ -177,7 +177,7 @@ export interface FileUploadRemoveEvent {
} }
/** /**
* Custom remove upload file event. * Custom remove upload file event.
* @see {@link FileUploadEmits['remove-uploaded-file']} * @see {@link FileUploadEmitsOptions['remove-uploaded-file']}
*/ */
export interface FileUploadRemoveUploadedFile { export interface FileUploadRemoveUploadedFile {
/** /**
@ -587,7 +587,7 @@ export interface FileUploadSlots {
}): VNode[]; }): VNode[];
} }
interface FileUploadEmitsOptions { export interface FileUploadEmitsOptions {
/** /**
* Callback to invoke when files are selected. * Callback to invoke when files are selected.
* @param {FileUploadSelectEvent} event - Custom select event. * @param {FileUploadSelectEvent} event - Custom select event.

View File

@ -103,7 +103,7 @@ export interface FloatLabelSlots {
/** /**
* Defines valid emits in FloatLabel component. * Defines valid emits in FloatLabel component.
*/ */
interface FloatLabelEmitsOptions {} export interface FloatLabelEmitsOptions {}
export declare type FloatLabelEmits = EmitFn<FloatLabelEmitsOptions>; export declare type FloatLabelEmits = EmitFn<FloatLabelEmitsOptions>;

View File

@ -503,7 +503,7 @@ export interface GalleriaSlots {
/** /**
* Defines valid emits in Galleria component. * Defines valid emits in Galleria component.
*/ */
interface GalleriaEmitsOptions { export interface GalleriaEmitsOptions {
/** /**
* Emitted when the active index changes. * Emitted when the active index changes.
* @param {number} value - Index of new active item. * @param {number} value - Index of new active item.

View File

@ -101,7 +101,7 @@ export interface IconFieldSlots {
/** /**
* Defines valid emits in IconField component. * Defines valid emits in IconField component.
*/ */
interface IconFieldEmitsOptions {} export interface IconFieldEmitsOptions {}
export declare type IconFieldEmits = EmitFn<IconFieldEmitsOptions>; export declare type IconFieldEmits = EmitFn<IconFieldEmitsOptions>;

View File

@ -7,7 +7,7 @@ export interface IconProps {
export interface IconSlots {} export interface IconSlots {}
interface IconEmitsOptions {} export interface IconEmitsOptions {}
export declare type IconEmits = EmitFn<IconEmitsOptions>; export declare type IconEmits = EmitFn<IconEmitsOptions>;

View File

@ -329,7 +329,7 @@ export interface ImageSlots {
}): VNode[]; }): VNode[];
} }
interface ImageEmitsOptions {} export interface ImageEmitsOptions {}
export declare type ImageEmits = EmitFn<ImageEmitsOptions>; export declare type ImageEmits = EmitFn<ImageEmitsOptions>;

View File

@ -134,7 +134,7 @@ export interface InlineMessageSlots {
icon(): VNode[]; icon(): VNode[];
} }
interface InlineMessageEmitsOptions {} export interface InlineMessageEmitsOptions {}
export declare type InlineMessageEmits = EmitFn<InlineMessageEmitsOptions>; export declare type InlineMessageEmits = EmitFn<InlineMessageEmitsOptions>;

View File

@ -167,7 +167,7 @@ export interface InplaceSlots {
/** /**
* Defines valid emits in Inplace component. * Defines valid emits in Inplace component.
*/ */
interface InplaceEmitsOptions { export interface InplaceEmitsOptions {
/** /**
* Emitted when the active changes. * Emitted when the active changes.
* @param {boolean} value - New value. * @param {boolean} value - New value.

View File

@ -61,7 +61,7 @@ export interface InputChipsSharedPassThroughMethodOptions {
/** /**
* Custom add event. * Custom add event.
* @see {@link InputChipsEmits.add} * @see {@link InputChipsEmitsOptions.add}
*/ */
export interface InputChipsAddEvent { export interface InputChipsAddEvent {
/** /**
@ -76,7 +76,7 @@ export interface InputChipsAddEvent {
/** /**
* Custom remove event. * Custom remove event.
* @see {@link InputChipsEmits.remove} * @see {@link InputChipsEmitsOptions.remove}
* @extends InputChipsAddEvent * @extends InputChipsAddEvent
*/ */
export interface InputChipsRemoveEvent extends InputChipsAddEvent {} export interface InputChipsRemoveEvent extends InputChipsAddEvent {}
@ -320,7 +320,7 @@ export interface InputChipsSlots {
/** /**
* Defines valid emits in InputChips component. * Defines valid emits in InputChips component.
*/ */
interface InputChipsEmitsOptions { export interface InputChipsEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -102,7 +102,7 @@ export interface InputGroupSlots {
/** /**
* Defines valid emits in InputGroup component. * Defines valid emits in InputGroup component.
*/ */
interface InputGroupEmitsOptions {} export interface InputGroupEmitsOptions {}
export declare type InputGroupEmits = EmitFn<InputGroupEmitsOptions>; export declare type InputGroupEmits = EmitFn<InputGroupEmitsOptions>;

View File

@ -102,7 +102,7 @@ export interface InputGroupAddonSlots {
/** /**
* Defines valid emits in InputGroupAddon component. * Defines valid emits in InputGroupAddon component.
*/ */
interface InputGroupAddonEmitsOptions {} export interface InputGroupAddonEmitsOptions {}
export declare type InputGroupAddonEmits = EmitFn<InputGroupAddonEmitsOptions>; export declare type InputGroupAddonEmits = EmitFn<InputGroupAddonEmitsOptions>;

View File

@ -97,7 +97,7 @@ export interface InputIconSlots {
/** /**
* Defines valid emits in InputIcon component. * Defines valid emits in InputIcon component.
*/ */
interface InputIconEmitsOptions {} export interface InputIconEmitsOptions {}
export declare type InputIconEmits = EmitFn<InputIconEmitsOptions>; export declare type InputIconEmits = EmitFn<InputIconEmitsOptions>;

View File

@ -174,7 +174,7 @@ export interface InputMaskSlots {}
/** /**
* Defines valid emits in InputMask component. * Defines valid emits in InputMask component.
*/ */
interface InputMaskEmitsOptions { export interface InputMaskEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {string} value - New value. * @param {string} value - New value.

View File

@ -59,7 +59,7 @@ export interface InputNumberSharedPassThroughMethodOptions {
/** /**
* Custom input event. * Custom input event.
* @see {@link InputNumberEmits.input} * @see {@link InputNumberEmitsOptions.input}
*/ */
export interface InputNumberInputEvent { export interface InputNumberInputEvent {
/** /**
@ -78,7 +78,7 @@ export interface InputNumberInputEvent {
/** /**
* Custom blur event. * Custom blur event.
* @see {@link InputNumberEmits.blur} * @see {@link InputNumberEmitsOptions.blur}
*/ */
export interface InputNumberBlurEvent { export interface InputNumberBlurEvent {
/** /**
@ -420,7 +420,7 @@ export interface InputNumberSlots {
/** /**
* Defines valid emits in InputNumber component. * Defines valid emits in InputNumber component.
*/ */
interface InputNumberEmitsOptions { export interface InputNumberEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {number} value - New value. * @param {number} value - New value.

View File

@ -233,7 +233,7 @@ export interface InputOtpSlots {
/** /**
* Defines valid emits in InputOtp component. * Defines valid emits in InputOtp component.
*/ */
interface InputOtpEmitsOptions { export interface InputOtpEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {boolean} value - New value. * @param {boolean} value - New value.

View File

@ -40,7 +40,7 @@ export interface InputSwitchSlots extends ToggleSwitch.ToggleSwitchSlots {}
/** /**
* Defines valid emits in InputSwitch component. * Defines valid emits in InputSwitch component.
*/ */
interface InputSwitchEmitsOptions {} export interface InputSwitchEmitsOptions {}
export declare type InputSwitchEmits = EmitFn<InputSwitchEmitsOptions> & ToggleSwitch.ToggleSwitchEmits; export declare type InputSwitchEmits = EmitFn<InputSwitchEmitsOptions> & ToggleSwitch.ToggleSwitchEmits;

View File

@ -130,7 +130,7 @@ export interface InputTextSlots {}
/** /**
* Defines valid emits in InputText component. * Defines valid emits in InputText component.
*/ */
interface InputTextEmitsOptions { export interface InputTextEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {string} value - New value. * @param {string} value - New value.

View File

@ -68,7 +68,7 @@ export interface ListboxSharedPassThroughMethodOptions {
/** /**
* Custom change event. * Custom change event.
* @see {@link ListboxEmits.change} * @see {@link ListboxEmitsOptions.change}
*/ */
export interface ListboxChangeEvent { export interface ListboxChangeEvent {
/** /**
@ -83,7 +83,7 @@ export interface ListboxChangeEvent {
/** /**
* Custom double click event. * Custom double click event.
* @see {@link ListboxEmits.['item-dblclick']} * @see {@link ListboxEmitsOptions.['item-dblclick']}
*/ */
export interface ListboxOptionDblClickEvent { export interface ListboxOptionDblClickEvent {
/** /**
@ -98,7 +98,7 @@ export interface ListboxOptionDblClickEvent {
/** /**
* Custom filter event. * Custom filter event.
* @see {@link ListboxEmits.filter} * @see {@link ListboxEmitsOptions.filter}
*/ */
export interface ListboxFilterEvent { export interface ListboxFilterEvent {
/** /**
@ -555,7 +555,7 @@ export interface ListboxSlots {
/** /**
* Defines valid emits in Listbox component. * Defines valid emits in Listbox component.
*/ */
interface ListboxEmitsOptions { export interface ListboxEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -378,7 +378,7 @@ export interface MegaMenuSlots {
/** /**
* Defines valid emits in MegaMenu component. * Defines valid emits in MegaMenu component.
*/ */
interface MegaMenuEmitsOptions { export interface MegaMenuEmitsOptions {
/** /**
* Callback to invoke when the component receives focus. * Callback to invoke when the component receives focus.
* @param {Event} event - Browser event. * @param {Event} event - Browser event.

View File

@ -325,7 +325,7 @@ export interface MenuSlots {
/** /**
* Defines valid emits in Menu component. * Defines valid emits in Menu component.
*/ */
interface MenuEmitsOptions { export interface MenuEmitsOptions {
/** /**
* Callback to invoke when the component receives focus. * Callback to invoke when the component receives focus.
* @param {Event} event - Browser event. * @param {Event} event - Browser event.

View File

@ -402,7 +402,7 @@ export interface MenubarSlots {
/** /**
* Defines valid emits in Menubar component. * Defines valid emits in Menubar component.
*/ */
interface MenubarEmitsOptions {} export interface MenubarEmitsOptions {}
export declare type MenubarEmits = EmitFn<MenubarEmitsOptions>; export declare type MenubarEmits = EmitFn<MenubarEmitsOptions>;

View File

@ -216,7 +216,7 @@ export interface MessageSlots {
/** /**
* Defines valid emits in Message component. * Defines valid emits in Message component.
*/ */
interface MessageEmitsOptions { export interface MessageEmitsOptions {
/** /**
* Callback to invoke when a message is closed. * Callback to invoke when a message is closed.
* @param {Event} event - Browser event. * @param {Event} event - Browser event.

View File

@ -285,7 +285,7 @@ export interface MeterGroupSlots {
/** /**
* Defines valid emits in MeterGroup component. * Defines valid emits in MeterGroup component.
*/ */
interface MeterGroupEmitsOptions {} export interface MeterGroupEmitsOptions {}
export declare type MeterGroupEmits = EmitFn<MeterGroupEmitsOptions>; export declare type MeterGroupEmits = EmitFn<MeterGroupEmitsOptions>;

View File

@ -71,7 +71,7 @@ export interface MultiSelectSharedPassThroughMethodOptions {
/** /**
* Custom change event. * Custom change event.
* @see {@link MultiSelectEmits.change} * @see {@link MultiSelectEmitsOptions.change}
*/ */
export interface MultiSelectChangeEvent { export interface MultiSelectChangeEvent {
/** /**
@ -86,7 +86,7 @@ export interface MultiSelectChangeEvent {
/** /**
* Custom all change event. * Custom all change event.
* @see {@link MultiSelectEmits['selectall-change']} * @see {@link MultiSelectEmitsOptions['selectall-change']}
*/ */
export interface MultiSelectAllChangeEvent { export interface MultiSelectAllChangeEvent {
/** /**
@ -101,7 +101,7 @@ export interface MultiSelectAllChangeEvent {
/** /**
* Custom filter event * Custom filter event
* @see {@link MultiSelectEmits.filter} * @see {@link MultiSelectEmitsOptions.filter}
*/ */
export interface MultiSelectFilterEvent { export interface MultiSelectFilterEvent {
/** /**
@ -828,7 +828,7 @@ export interface MultiSelectSlots {
/** /**
* Defines valid emits in MultiSelect component. * Defines valid emits in MultiSelect component.
*/ */
interface MultiSelectEmitsOptions { export interface MultiSelectEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -64,7 +64,7 @@ export interface OrderListSharedPassThroughMethodOptions {
/** /**
* Custom reorder event * Custom reorder event
* @see {@link OrderListEmits.reorder} * @see {@link OrderListEmitsOptions.reorder}
*/ */
export interface OrderListReorderEvent { export interface OrderListReorderEvent {
/** /**
@ -83,7 +83,7 @@ export interface OrderListReorderEvent {
/** /**
* Custom selection change event * Custom selection change event
* @see {@link OrderListEmits['selection-change']} * @see {@link OrderListEmitsOptions['selection-change']}
*/ */
export interface OrderListSelectionChangeEvent { export interface OrderListSelectionChangeEvent {
/** /**
@ -333,7 +333,7 @@ export interface OrderListSlots {
/** /**
* Defines valid slots in OrderList component. * Defines valid slots in OrderList component.
*/ */
interface OrderListEmitsOptions { export interface OrderListEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -307,7 +307,7 @@ export interface OrganizationChartSlots {
/** /**
* Defines valid emits in OrganizationChart component. * Defines valid emits in OrganizationChart component.
*/ */
interface OrganizationChartEmitsOptions { export interface OrganizationChartEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -52,7 +52,7 @@ export interface OverlayPanelSlots extends Popover.PopoverSlots {}
/** /**
* Defines valid emits in OverlayPanel component. * Defines valid emits in OverlayPanel component.
*/ */
interface OverlayPanelEmitsOptions {} export interface OverlayPanelEmitsOptions {}
export declare type OverlayPanelEmits = EmitFn<OverlayPanelEmitsOptions> & Popover.PopoverEmits; export declare type OverlayPanelEmits = EmitFn<OverlayPanelEmitsOptions> & Popover.PopoverEmits;

View File

@ -417,7 +417,7 @@ export interface PaginatorSlots {
/** /**
* Defines valid emits in Paginator component. * Defines valid emits in Paginator component.
*/ */
interface PaginatorEmitsOptions { export interface PaginatorEmitsOptions {
/** /**
* Emitted when the first changes. * Emitted when the first changes.
* @param {number} value - New value. * @param {number} value - New value.

View File

@ -63,7 +63,7 @@ export interface PanelSharedPassThroughMethodOptions {
/** /**
* Custom toggle event. * Custom toggle event.
* @see {@link PanelEmits.toggle} * @see {@link PanelEmitsOptions.toggle}
*/ */
export interface PanelToggleEvent { export interface PanelToggleEvent {
/** /**
@ -243,7 +243,7 @@ export interface PanelSlots {
/** /**
* Defines valid emits in Panel component. * Defines valid emits in Panel component.
*/ */
interface PanelEmitsOptions { export interface PanelEmitsOptions {
/** /**
* Emitted when the collapsed changes. * Emitted when the collapsed changes.
* @param {boolean} value - New value. * @param {boolean} value - New value.

View File

@ -200,7 +200,7 @@ export interface PanelMenuExpandedKeys {
/** /**
* Custom panel open event. * Custom panel open event.
* @see {@link PanelMenuEmits['panel-open']} * @see {@link PanelMenuEmitsOptions['panel-open']}
*/ */
export interface PanelMenuPanelOpenEvent { export interface PanelMenuPanelOpenEvent {
/** /**
@ -216,7 +216,7 @@ export interface PanelMenuPanelOpenEvent {
/** /**
* Custom panel close event. * Custom panel close event.
* @see {@link PanelMenuEmits['panel-close']} * @see {@link PanelMenuEmitsOptions['panel-close']}
* @extends {PanelMenuPanelOpenEvent} * @extends {PanelMenuPanelOpenEvent}
*/ */
export interface PanelMenuPanelCloseEvent extends PanelMenuPanelOpenEvent {} export interface PanelMenuPanelCloseEvent extends PanelMenuPanelOpenEvent {}
@ -377,7 +377,7 @@ export interface PanelMenuSlots {
/** /**
* Defines valid emits in PanelMenu component. * Defines valid emits in PanelMenu component.
*/ */
interface PanelMenuEmitsOptions { export interface PanelMenuEmitsOptions {
/** /**
* Emitted when the expandedKeys changes. * Emitted when the expandedKeys changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -413,7 +413,7 @@ export interface PasswordSlots {
/** /**
* Defines valid emits in Password component. * Defines valid emits in Password component.
*/ */
interface PasswordEmitsOptions { export interface PasswordEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {string} value - New value. * @param {string} value - New value.

View File

@ -68,7 +68,7 @@ export interface PickListSharedPassThroughMethodOptions {
/** /**
* Custom reorder event. * Custom reorder event.
* @see {@link PickListEmits.reorder} * @see {@link PickListEmitsOptions.reorder}
*/ */
export interface PickListReorderEvent { export interface PickListReorderEvent {
/** /**
@ -91,7 +91,7 @@ export interface PickListReorderEvent {
/** /**
* Custom selection change event. * Custom selection change event.
* @see {@link PickListEmits['selection-change']} * @see {@link PickListEmitsOptions['selection-change']}
*/ */
export interface PickListSelectionChangeEvent { export interface PickListSelectionChangeEvent {
/** /**
@ -106,7 +106,7 @@ export interface PickListSelectionChangeEvent {
/** /**
* Custom move-to-target event. * Custom move-to-target event.
* @see {@link PickListEmits['move-to-target']} * @see {@link PickListEmitsOptions['move-to-target']}
*/ */
export interface PickListMoveToTargetEvent { export interface PickListMoveToTargetEvent {
/** /**
@ -121,21 +121,21 @@ export interface PickListMoveToTargetEvent {
/** /**
* Custom move-all-to-target event. * Custom move-all-to-target event.
* @see {@link PickListEmits['move-all-to-target']} * @see {@link PickListEmitsOptions['move-all-to-target']}
* @extends PickListMoveToTargetEvent * @extends PickListMoveToTargetEvent
*/ */
export interface PickListMoveAllToTargetEvent extends PickListMoveToTargetEvent {} export interface PickListMoveAllToTargetEvent extends PickListMoveToTargetEvent {}
/** /**
* Custom move-to-source event. * Custom move-to-source event.
* @see {@link PickListEmits['move-all-to-target']} * @see {@link PickListEmitsOptions['move-all-to-target']}
* @extends PickListMoveToTargetEvent * @extends PickListMoveToTargetEvent
*/ */
export interface PickListMoveToSourceEvent extends PickListMoveToTargetEvent {} export interface PickListMoveToSourceEvent extends PickListMoveToTargetEvent {}
/** /**
* Custom move-all-to-source event. * Custom move-all-to-source event.
* @see {@link PickListEmits['move-all-to-target']} * @see {@link PickListEmitsOptions['move-all-to-target']}
* @extends PickListMoveToTargetEvent * @extends PickListMoveToTargetEvent
*/ */
export interface PickListMoveAllToSourceEvent extends PickListMoveToTargetEvent {} export interface PickListMoveAllToSourceEvent extends PickListMoveToTargetEvent {}
@ -544,7 +544,7 @@ export interface PickListSlots {
/** /**
* Defines valid emits in PickList component. * Defines valid emits in PickList component.
*/ */
interface PickListEmitsOptions { export interface PickListEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -203,7 +203,7 @@ export interface PopoverSlots {
/** /**
* Defines valid emits in Popover component. * Defines valid emits in Popover component.
*/ */
interface PopoverEmitsOptions { export interface PopoverEmitsOptions {
/** /**
* Callback to invoke when the overlay is shown. * Callback to invoke when the overlay is shown.
*/ */

View File

@ -123,7 +123,7 @@ export interface ProgressBarSlots {
/** /**
* Defines valid emits in ProgressBar component. * Defines valid emits in ProgressBar component.
*/ */
interface ProgressBarEmitsOptions {} export interface ProgressBarEmitsOptions {}
export declare type ProgressBarEmits = EmitFn<ProgressBarEmitsOptions>; export declare type ProgressBarEmits = EmitFn<ProgressBarEmitsOptions>;

View File

@ -117,7 +117,7 @@ export interface ProgressSpinnerSlots {}
/** /**
* Defines valid emits in ProgressSpinner component. * Defines valid emits in ProgressSpinner component.
*/ */
interface ProgressSpinnerEmitsOptions {} export interface ProgressSpinnerEmitsOptions {}
export declare type ProgressSpinnerEmits = EmitFn<ProgressSpinnerEmitsOptions>; export declare type ProgressSpinnerEmits = EmitFn<ProgressSpinnerEmitsOptions>;

View File

@ -196,7 +196,7 @@ export interface RadioButtonSlots {}
/** /**
* Defines valid emits in RadioButton component. * Defines valid emits in RadioButton component.
*/ */
interface RadioButtonEmitsOptions { export interface RadioButtonEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -123,7 +123,7 @@ export interface RatingContext {
/** /**
* Custom change event. * Custom change event.
* @see {@link RatingEmits.change} * @see {@link RatingEmitsOptions.change}
*/ */
export interface RatingChangeEvent { export interface RatingChangeEvent {
/** /**
@ -231,7 +231,7 @@ export interface RatingSlots {
/** /**
* Defines valid emits in Rating component. * Defines valid emits in Rating component.
*/ */
interface RatingEmitsOptions { export interface RatingEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {number} value - New value. * @param {number} value - New value.

View File

@ -8,14 +8,14 @@
* *
*/ */
import { ComponentHooks } from '../basecomponent'; import { ComponentHooks } from '../basecomponent';
import { DefineComponent, EmitFn, GlobalComponentConstructor } from '../ts-helpers'; import { DefineComponent, EmitFn, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
export declare type RowPassThroughOptionType = RowPassThroughAttributes | ((options: RowPassThroughMethodOptions) => RowPassThroughAttributes | string) | string | null | undefined; export declare type RowPassThroughOptionType<T = any> = RowPassThroughAttributes | ((options: RowPassThroughMethodOptions<T>) => RowPassThroughAttributes | string) | string | null | undefined;
/** /**
* Custom passthrough(pt) option method. * Custom passthrough(pt) option method.
*/ */
export interface RowPassThroughMethodOptions { export interface RowPassThroughMethodOptions<T = any> {
/** /**
* Defines instance. * Defines instance.
*/ */
@ -31,7 +31,7 @@ export interface RowPassThroughMethodOptions {
/** /**
* Defines parent options. * Defines parent options.
*/ */
parent: any; parent: T;
/** /**
* Defines current options. * Defines current options.
*/ */
@ -46,11 +46,11 @@ export interface RowPassThroughMethodOptions {
* Custom passthrough(pt) options. * Custom passthrough(pt) options.
* @see {@link RowProps.pt} * @see {@link RowProps.pt}
*/ */
export interface RowPassThroughOptions { export interface RowPassThroughOptions<T = any> {
/** /**
* Used to pass attributes to the root's DOM element. * Used to pass attributes to the root's DOM element.
*/ */
root?: RowPassThroughOptionType; root?: RowPassThroughOptionType<T>;
/** /**
* Used to manage all lifecycle hooks. * Used to manage all lifecycle hooks.
* @see {@link BaseComponent.ComponentHooks} * @see {@link BaseComponent.ComponentHooks}
@ -74,6 +74,11 @@ export interface RowProps {
* @defaultValue false * @defaultValue false
*/ */
unstyled?: boolean; unstyled?: boolean;
/**
* Used to pass attributes to DOM elements inside the component.
* @type {ButtonPassThroughOptions}
*/
pt?: PassThrough<RowPassThroughOptions<any>>;
} }
/** /**
@ -94,7 +99,7 @@ export interface RowSlots {}
/** /**
* Defines valid emits in Row component. * Defines valid emits in Row component.
*/ */
interface RowEmitsOptions {} export interface RowEmitsOptions {}
export declare type RowEmits = EmitFn<RowEmitsOptions>; export declare type RowEmits = EmitFn<RowEmitsOptions>;

View File

@ -148,7 +148,7 @@ export interface ScrollPanelSlots {
default: () => VNode[]; default: () => VNode[];
} }
interface ScrollPanelEmitsOptions {} export interface ScrollPanelEmitsOptions {}
export declare type ScrollPanelEmits = EmitFn<ScrollPanelEmitsOptions>; export declare type ScrollPanelEmits = EmitFn<ScrollPanelEmitsOptions>;

View File

@ -169,7 +169,7 @@ export interface ScrollTopSlots {
/** /**
* Defines valid emits in ScrollTop component. * Defines valid emits in ScrollTop component.
*/ */
interface ScrollTopEmitsOptions {} export interface ScrollTopEmitsOptions {}
export declare type ScrollTopEmits = EmitFn<ScrollTopEmitsOptions>; export declare type ScrollTopEmits = EmitFn<ScrollTopEmitsOptions>;

View File

@ -66,7 +66,7 @@ export interface SelectSharedPassThroughMethodOptions {
/** /**
* Custom change event. * Custom change event.
* @see {@link SelectEmits.change} * @see {@link SelectEmitsOptions.change}
*/ */
export interface SelectChangeEvent { export interface SelectChangeEvent {
/** /**
@ -81,7 +81,7 @@ export interface SelectChangeEvent {
/** /**
* Custom filter event. * Custom filter event.
* @see {@link SelectEmits.filter} * @see {@link SelectEmitsOptions.filter}
*/ */
export interface SelectFilterEvent { export interface SelectFilterEvent {
/** /**
@ -730,7 +730,7 @@ export interface SelectSlots {
/** /**
* Defines valid emits in Select component. * Defines valid emits in Select component.
*/ */
interface SelectEmitsOptions { export interface SelectEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -78,7 +78,7 @@ export interface SelectButtonPassThroughAttributes {
/** /**
* Custom change event. * Custom change event.
* @see {@link SelectButtonEmits.change} * @see {@link SelectButtonEmitsOptions.change}
*/ */
export interface SelectButtonChangeEvent { export interface SelectButtonChangeEvent {
/** /**
@ -223,7 +223,7 @@ export interface SelectButtonSlots {
/** /**
* Defines valid emits in SelectButton component. * Defines valid emits in SelectButton component.
*/ */
interface SelectButtonEmitsOptions { export interface SelectButtonEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {*} value - New value. * @param {*} value - New value.

View File

@ -50,7 +50,7 @@ export interface SidebarSlots extends Drawer.DrawerSlots {}
/** /**
* Defines valid emits in Sidebar component. * Defines valid emits in Sidebar component.
*/ */
interface SidebarEmitsOptions {} export interface SidebarEmitsOptions {}
export declare type SidebarEmits = EmitFn<SidebarEmitsOptions> & Drawer.DrawerEmits; export declare type SidebarEmits = EmitFn<SidebarEmitsOptions> & Drawer.DrawerEmits;

View File

@ -123,7 +123,7 @@ export interface SkeletonSlots {}
/** /**
* Defines valid emits in Skeleton component. * Defines valid emits in Skeleton component.
*/ */
interface SkeletonEmitsOptions {} export interface SkeletonEmitsOptions {}
export declare type SkeletonEmits = EmitFn<SkeletonEmitsOptions>; export declare type SkeletonEmits = EmitFn<SkeletonEmitsOptions>;

View File

@ -80,7 +80,7 @@ export interface SliderPassThroughAttributes {
/** /**
* Custom slide end event. * Custom slide end event.
* @see {@link SliderEmits.slideend} * @see {@link SliderEmitsOptions.slideend}
*/ */
export interface SliderSlideEndEvent { export interface SliderSlideEndEvent {
/** /**
@ -172,7 +172,7 @@ export interface SliderSlots {}
/** /**
* Defines valid emits in Slider component. * Defines valid emits in Slider component.
*/ */
interface SliderEmitsOptions { export interface SliderEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {number | number[]} value - New value. * @param {number | number[]} value - New value.

View File

@ -369,7 +369,7 @@ export interface SpeedDialSlots {
/** /**
* Defines valid emits in SpeedDial component. * Defines valid emits in SpeedDial component.
*/ */
interface SpeedDialEmitsOptions { export interface SpeedDialEmitsOptions {
/** /**
* Fired when the button element clicked. * Fired when the button element clicked.
* @param {Event} event - Browser event. * @param {Event} event - Browser event.

View File

@ -311,7 +311,7 @@ export interface SplitButtonSlots {
/** /**
* Defines valid emits in SplitButton component. * Defines valid emits in SplitButton component.
*/ */
interface SplitButtonEmitsOptions { export interface SplitButtonEmitsOptions {
/** /**
* Callback to invoke when main button is clicked. * Callback to invoke when main button is clicked.
* @param {Event} event - Browser event. * @param {Event} event - Browser event.

View File

@ -50,7 +50,7 @@ export interface SplitterPassThroughMethodOptions {
/** /**
* Custom resize start event. * Custom resize start event.
* @see {@link SplitterEmits.resizestart} * @see {@link SplitterEmitsOptions.resizestart}
*/ */
export interface SplitterResizeStartEvent { export interface SplitterResizeStartEvent {
/** /**
@ -65,7 +65,7 @@ export interface SplitterResizeStartEvent {
/** /**
* Custom resize event. * Custom resize event.
* @see {@link SplitterEmits.resize} * @see {@link SplitterEmitsOptions.resize}
*/ */
export interface SplitterResizeEvent { export interface SplitterResizeEvent {
/** /**
@ -80,7 +80,7 @@ export interface SplitterResizeEvent {
/** /**
* Custom resize end event. * Custom resize end event.
* @see {@link SplitterEmits.resizeend} * @see {@link SplitterEmitsOptions.resizeend}
*/ */
export interface SplitterResizeEndEvent { export interface SplitterResizeEndEvent {
/** /**
@ -206,7 +206,7 @@ export interface SplitterSlots {
/** /**
* Defines valid emits in Splitter component. * Defines valid emits in Splitter component.
*/ */
interface SplitterEmitsOptions { export interface SplitterEmitsOptions {
/** /**
* Callback to invoke when resize starts. * Callback to invoke when resize starts.
* @param {SplitterResizeStartEvent} event - Custom resize start event. * @param {SplitterResizeStartEvent} event - Custom resize start event.

View File

@ -46,7 +46,7 @@ export interface SplitterPanelPassThroughMethodOptions {
/** /**
* Custom passthrough(pt) options. * Custom passthrough(pt) options.
* @see {@link PanelProps.pt} * @see {@link SplitterPanelProps.pt}
*/ */
export interface SplitterPanelPassThroughOptions { export interface SplitterPanelPassThroughOptions {
/** /**
@ -120,7 +120,7 @@ export interface SplitterPanelSlots {
default: () => VNode[]; default: () => VNode[];
} }
interface SplitterPanelEmitsOptions {} export interface SplitterPanelEmitsOptions {}
export declare type SplitterPanelEmits = EmitFn<SplitterPanelEmitsOptions>; export declare type SplitterPanelEmits = EmitFn<SplitterPanelEmitsOptions>;

View File

@ -96,7 +96,7 @@ export interface StepperState {
/** /**
* Custom tab change event. * Custom tab change event.
* @see {@link StepperEmits['step-change']} * @see {@link StepperEmitsOptions['step-change']}
*/ */
export interface StepperChangeEvent { export interface StepperChangeEvent {
/** /**
@ -166,7 +166,7 @@ export interface StepperSlots {
/** /**
* Defines valid emits in Stepper component. * Defines valid emits in Stepper component.
*/ */
interface StepperEmitsOptions { export interface StepperEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {number | number[]} value - New value. * @param {number | number[]} value - New value.

View File

@ -261,7 +261,7 @@ export interface StepperPanelSlots {
}): VNode[]; }): VNode[];
} }
interface StepperPanelEmitsOptions {} export interface StepperPanelEmitsOptions {}
export declare type StepperPanelEmits = EmitFn<StepperPanelEmitsOptions>; export declare type StepperPanelEmits = EmitFn<StepperPanelEmitsOptions>;

View File

@ -214,7 +214,7 @@ export interface StepsSlots {
/** /**
* Defines valid emits in Steps component. * Defines valid emits in Steps component.
*/ */
interface StepsEmitsOptions {} export interface StepsEmitsOptions {}
export declare type StepsEmits = EmitFn<StepsEmitsOptions>; export declare type StepsEmits = EmitFn<StepsEmitsOptions>;

View File

@ -123,7 +123,7 @@ export interface TabSlots {
default(): VNode[]; default(): VNode[];
} }
interface TabEmitsOptions {} export interface TabEmitsOptions {}
export declare type TabEmits = EmitFn<TabEmitsOptions>; export declare type TabEmits = EmitFn<TabEmitsOptions>;

View File

@ -10,7 +10,7 @@
import { VNode } from 'vue'; import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent'; import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough'; import { PassThroughOptions } from '../passthrough';
import { DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '../ts-helpers'; import { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
export declare type TabListPassThroughOptionType = TabListPassThroughAttributes | ((options: TabListPassThroughMethodOptions) => TabListPassThroughAttributes | string) | string | null | undefined; export declare type TabListPassThroughOptionType = TabListPassThroughAttributes | ((options: TabListPassThroughMethodOptions) => TabListPassThroughAttributes | string) | string | null | undefined;
@ -117,7 +117,7 @@ export interface TabListSlots {
default(): VNode[]; default(): VNode[];
} }
interface TabListEmitsOptions {} export interface TabListEmitsOptions {}
export declare type TabListEmits = EmitFn<TabListEmitsOptions>; export declare type TabListEmits = EmitFn<TabListEmitsOptions>;

View File

@ -123,7 +123,7 @@ export interface TabMenuContext {
/** /**
* Custom change event. * Custom change event.
* @see {@link TabMenuEmits['tab-change']} * @see {@link TabMenuEmitsOptions['tab-change']}
*/ */
export interface TabMenuChangeEvent { export interface TabMenuChangeEvent {
/** /**
@ -251,7 +251,7 @@ export interface TabMenuSlots {
/** /**
* Defines valid emits in TabMenu component. * Defines valid emits in TabMenu component.
*/ */
interface TabMenuEmitsOptions { export interface TabMenuEmitsOptions {
/** /**
* Callback to invoke when an active tab is changed. * Callback to invoke when an active tab is changed.
* @param {TabMenuChangeEvent} event - Custom tab change event. * @param {TabMenuChangeEvent} event - Custom tab change event.

View File

@ -209,7 +209,7 @@ export interface TabPanelSlots {
header(): VNode[]; header(): VNode[];
} }
interface TabPanelEmitsOptions {} export interface TabPanelEmitsOptions {}
export declare type TabPanelEmits = EmitFn<TabPanelEmitsOptions>; export declare type TabPanelEmits = EmitFn<TabPanelEmitsOptions>;

View File

@ -101,7 +101,7 @@ export interface TabPanelsSlots {
default(): VNode[]; default(): VNode[];
} }
interface TabPanelsEmitsOptions {} export interface TabPanelsEmitsOptions {}
export declare type TabPanelsEmits = EmitFn<TabPanelsEmitsOptions>; export declare type TabPanelsEmits = EmitFn<TabPanelsEmitsOptions>;

View File

@ -156,7 +156,7 @@ export interface TabsSlots {
/** /**
* Defines valid emits in Tabs component. * Defines valid emits in Tabs component.
*/ */
interface TabsEmitsOptions { export interface TabsEmitsOptions {
/** /**
* Emitted when the value changes. * Emitted when the value changes.
* @param {string} value - Current value. * @param {string} value - Current value.

View File

@ -48,7 +48,7 @@ export interface TabViewPassThroughMethodOptions {
/** /**
* Custom tab change event. * Custom tab change event.
* @see {@link TabViewEmits['tab-change']} * @see {@link TabViewEmitsOptions['tab-change']}
*/ */
export interface TabViewChangeEvent { export interface TabViewChangeEvent {
/** /**
@ -63,7 +63,7 @@ export interface TabViewChangeEvent {
/** /**
* Custom tab change event. * Custom tab change event.
* @see {@link TabViewEmits['tab-click']} * @see {@link TabViewEmitsOptions['tab-click']}
* @extends TabViewChangeEvent * @extends TabViewChangeEvent
*/ */
export interface TabViewClickEvent extends TabViewChangeEvent {} export interface TabViewClickEvent extends TabViewChangeEvent {}
@ -251,7 +251,7 @@ export interface TabViewSlots {
/** /**
* Defines valid emits in TabView component. * Defines valid emits in TabView component.
*/ */
interface TabViewEmitsOptions { export interface TabViewEmitsOptions {
/** /**
* Emitted when the activeIndex changes. * Emitted when the activeIndex changes.
* @param {number} index - Current activeIndex. * @param {number} index - Current activeIndex.

View File

@ -131,7 +131,7 @@ export interface TagSlots {
/** /**
* Defines valid emits in Tag component. * Defines valid emits in Tag component.
*/ */
interface TagEmitsOptions {} export interface TagEmitsOptions {}
export declare type TagEmits = EmitFn<TagEmitsOptions>; export declare type TagEmits = EmitFn<TagEmitsOptions>;

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