Update d.ts files
parent
5b1858f507
commit
b4c4c064ad
|
@ -60,7 +60,7 @@ export default {
|
|||
|
||||
if (values) {
|
||||
props = values[`${docName}Props`];
|
||||
emits = values[`${docName}Emits`];
|
||||
emits = values[`${docName}EmitsOptions`];
|
||||
slots = values[`${docName}Slots`];
|
||||
events = this.findEvents(values);
|
||||
options = this.findOptions(values, docName); // MenuItem && ConfirmationOptions
|
||||
|
|
|
@ -42,11 +42,10 @@ export const getStyleOptions = (name) => {
|
|||
let data = [];
|
||||
|
||||
for (const member of members) {
|
||||
const { name, value, description } = member;
|
||||
const { value, description } = member;
|
||||
|
||||
data.push({
|
||||
class: value.replaceAll('"', ''),
|
||||
section: name,
|
||||
description
|
||||
});
|
||||
}
|
||||
|
@ -66,7 +65,6 @@ export const getTokenOptions = (preset, name) => {
|
|||
data.push({
|
||||
token,
|
||||
variable: designToken.name,
|
||||
section: key.toLowerCase(),
|
||||
description: description
|
||||
});
|
||||
}
|
||||
|
|
|
@ -46,7 +46,7 @@ export interface AccordionPassThroughMethodOptions {
|
|||
}
|
||||
/**
|
||||
* Custom tab open event.
|
||||
* @see {@link AccordionEmits.tab-open}
|
||||
* @see {@link AccordionEmitsOptions.tab-open}
|
||||
*/
|
||||
export interface AccordionTabOpenEvent {
|
||||
/**
|
||||
|
@ -62,14 +62,14 @@ export interface AccordionTabOpenEvent {
|
|||
|
||||
/**
|
||||
* Custom tab close event.
|
||||
* @see {@link AccordionEmits.tab-close}
|
||||
* @see {@link AccordionEmitsOptions.tab-close}
|
||||
* @extends {AccordionTabOpenEvent}
|
||||
*/
|
||||
export interface AccordionTabCloseEvent extends AccordionTabOpenEvent {}
|
||||
|
||||
/**
|
||||
* Custom tab open event.
|
||||
* @see {@link AccordionEmits.tab-open}
|
||||
* @see {@link AccordionEmitsOptions.tab-open}
|
||||
* @extends AccordionTabOpenEvent
|
||||
*/
|
||||
export interface AccordionClickEvent extends AccordionTabOpenEvent {}
|
||||
|
@ -206,7 +206,7 @@ export interface AccordionSlots {
|
|||
/**
|
||||
* Defines valid emits in Accordion component.
|
||||
*/
|
||||
interface AccordionEmitsOptions {
|
||||
export interface AccordionEmitsOptions {
|
||||
/**
|
||||
* Emitted when the active panel changes.
|
||||
* @param {string | string[] | null | undefined} value - Value of new active panel.
|
||||
|
|
|
@ -122,7 +122,7 @@ export interface AccordionContentSlots {
|
|||
default(): VNode[];
|
||||
}
|
||||
|
||||
interface AccordionContentEmitsOptions {}
|
||||
export interface AccordionContentEmitsOptions {}
|
||||
|
||||
export declare type AccordionContentEmits = EmitFn<AccordionContentEmitsOptions>;
|
||||
|
||||
|
|
|
@ -122,7 +122,7 @@ export interface AccordionHeaderSlots {
|
|||
toggleicon(): VNode[];
|
||||
}
|
||||
|
||||
interface AccordionHeaderEmitsOptions {}
|
||||
export interface AccordionHeaderEmitsOptions {}
|
||||
|
||||
export declare type AccordionHeaderEmits = EmitFn<AccordionHeaderEmitsOptions>;
|
||||
|
||||
|
|
|
@ -120,7 +120,7 @@ export interface AccordionPanelSlots {
|
|||
default(): VNode[];
|
||||
}
|
||||
|
||||
interface AccordionPanelEmitsOptions {}
|
||||
export interface AccordionPanelEmitsOptions {}
|
||||
|
||||
export declare type AccordionPanelEmits = EmitFn<AccordionPanelEmitsOptions>;
|
||||
|
||||
|
|
|
@ -216,7 +216,7 @@ export interface AccordionTabSlots {
|
|||
/**
|
||||
* Defines valid emits in AcordionTab component.
|
||||
*/
|
||||
interface AccordionTabEmitsOptions {}
|
||||
export interface AccordionTabEmitsOptions {}
|
||||
|
||||
export declare type AccordionTabEmits = EmitFn<AccordionTabEmitsOptions>;
|
||||
|
||||
|
|
|
@ -69,7 +69,7 @@ export interface AutoCompleteSharedPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom change event.
|
||||
* @see {@link AutoCompleteEmits.change}
|
||||
* @see {@link AutoCompleteEmitsOptions.change}
|
||||
*/
|
||||
export interface AutoCompleteChangeEvent {
|
||||
/**
|
||||
|
@ -84,7 +84,7 @@ export interface AutoCompleteChangeEvent {
|
|||
|
||||
/**
|
||||
* Custom item select event.
|
||||
* @see {@link AutoCompleteEmits['item-select']}
|
||||
* @see {@link AutoCompleteEmitsOptions['item-select']}
|
||||
*/
|
||||
export interface AutoCompleteOptionSelectEvent {
|
||||
/**
|
||||
|
@ -99,14 +99,14 @@ export interface AutoCompleteOptionSelectEvent {
|
|||
|
||||
/**
|
||||
* Custom item unselect event.
|
||||
* @see {@link AutoCompleteEmits['item-unselect']}
|
||||
* @see {@link AutoCompleteEmitsOptions['item-unselect']}
|
||||
* @extends AutoCompleteOptionSelectEvent
|
||||
*/
|
||||
export interface AutoCompleteOptionUnselectEvent extends AutoCompleteOptionSelectEvent {}
|
||||
|
||||
/**
|
||||
* Custom dropdown click event.
|
||||
* @see {@link AutoCompleteEmits['dropdown-click']}
|
||||
* @see {@link AutoCompleteEmitsOptions['dropdown-click']}
|
||||
*/
|
||||
export interface AutoCompleteDropdownClickEvent {
|
||||
/**
|
||||
|
@ -121,7 +121,7 @@ export interface AutoCompleteDropdownClickEvent {
|
|||
|
||||
/**
|
||||
* Custom complete event.
|
||||
* @see {@link AutoCompleteEmits.complete}
|
||||
* @see {@link AutoCompleteEmitsOptions.complete}
|
||||
*/
|
||||
export interface AutoCompleteCompleteEvent {
|
||||
/**
|
||||
|
@ -778,7 +778,7 @@ export interface AutoCompleteSlots {
|
|||
/**
|
||||
* Defines valid emits in AutoComplete component.
|
||||
*/
|
||||
interface AutoCompleteEmitsOptions {
|
||||
export interface AutoCompleteEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -147,7 +147,7 @@ export interface AvatarSlots {
|
|||
/**
|
||||
* Defines valid emits in Avatar component.
|
||||
*/
|
||||
interface AvatarEmitsOptions {
|
||||
export interface AvatarEmitsOptions {
|
||||
/**
|
||||
* Triggered when an error occurs while loading an image file.
|
||||
*/
|
||||
|
|
|
@ -101,7 +101,7 @@ export interface AvatarGroupSlots {
|
|||
/**
|
||||
* Defines valid emits in AvatarGroup component.
|
||||
*/
|
||||
interface AvatarGroupEmitsOptions {}
|
||||
export interface AvatarGroupEmitsOptions {}
|
||||
|
||||
export declare type AvatarGroupEmits = EmitFn<AvatarGroupEmitsOptions>;
|
||||
|
||||
|
|
|
@ -109,7 +109,7 @@ export interface BadgeSlots {
|
|||
/**
|
||||
* Defines valid emits in Badge component.
|
||||
*/
|
||||
interface BadgeEmitsOptions {}
|
||||
export interface BadgeEmitsOptions {}
|
||||
|
||||
export declare type BadgeEmits = EmitFn<BadgeEmitsOptions>;
|
||||
|
||||
|
|
|
@ -140,7 +140,7 @@ export interface BlockUISlots {
|
|||
/**
|
||||
* Defines valid emits in BlockUI component
|
||||
*/
|
||||
interface BlockUIEmitsOptions {
|
||||
export interface BlockUIEmitsOptions {
|
||||
/**
|
||||
* Fired when the element gets blocked.
|
||||
*/
|
||||
|
|
|
@ -220,7 +220,7 @@ export interface BreadcrumbSlots {
|
|||
/**
|
||||
* Defines valid emits in Breadcrumb component.
|
||||
*/
|
||||
interface BreadcrumbEmitsOptions {}
|
||||
export interface BreadcrumbEmitsOptions {}
|
||||
|
||||
export declare type BreadcrumbEmits = EmitFn<BreadcrumbEmitsOptions>;
|
||||
|
||||
|
|
|
@ -232,7 +232,7 @@ export interface ButtonSlots {
|
|||
/**
|
||||
* Defines valid emits in Button component.
|
||||
*/
|
||||
interface ButtonEmitsOptions {}
|
||||
export interface ButtonEmitsOptions {}
|
||||
|
||||
export declare type ButtonEmits = EmitFn<ButtonEmitsOptions>;
|
||||
|
||||
|
|
|
@ -93,7 +93,7 @@ export interface ButtonGroupSlots {
|
|||
/**
|
||||
* Defines valid emits in ButtonGroup component.
|
||||
*/
|
||||
interface ButtonGroupEmitsOptions {}
|
||||
export interface ButtonGroupEmitsOptions {}
|
||||
|
||||
export declare type ButtonGroupEmits = EmitFn<ButtonGroupEmitsOptions>;
|
||||
|
||||
|
|
|
@ -28,19 +28,19 @@ export interface CalendarResponsiveOptions extends DatePicker.DatePickerResponsi
|
|||
|
||||
/**
|
||||
* Custom Calendar month change event.
|
||||
* @see {@link CalendarEmits['month-change']]}
|
||||
* @see {@link CalendarEmitsOptions['month-change']]}
|
||||
*/
|
||||
export interface CalendarMonthChangeEvent extends DatePicker.DatePickerMonthChangeEvent {}
|
||||
|
||||
/**
|
||||
* Custom Calendar year change event.
|
||||
* @see {@link CalendarEmits['year-change']]}
|
||||
* @see {@link CalendarEmitsOptions['year-change']]}
|
||||
*/
|
||||
export interface CalendarYearChangeEvent extends DatePicker.DatePickerYearChangeEvent {}
|
||||
|
||||
/**
|
||||
* Custom Calendar blur event.
|
||||
* @see {@link CalendarEmits.blur}
|
||||
* @see {@link CalendarEmitsOptions['blur']}
|
||||
*/
|
||||
export interface CalendarBlurEvent extends DatePicker.DatePickerBlurEvent {}
|
||||
|
||||
|
@ -98,7 +98,7 @@ export interface CalendarSlots extends DatePicker.DatePickerSlots {}
|
|||
/**
|
||||
* Defines valid emits in Calendar component.
|
||||
*/
|
||||
interface CalendarEmitsOptions {}
|
||||
export interface CalendarEmitsOptions {}
|
||||
|
||||
export declare type CalendarEmits = EmitFn<CalendarEmitsOptions> & DatePicker.DatePickerEmits;
|
||||
|
||||
|
|
|
@ -141,7 +141,7 @@ export interface CardSlots {
|
|||
/**
|
||||
* Defines valid emits in Card component.
|
||||
*/
|
||||
interface CardEmitsOptions {}
|
||||
export interface CardEmitsOptions {}
|
||||
|
||||
export declare type CardEmits = EmitFn<CardEmitsOptions>;
|
||||
|
||||
|
|
|
@ -370,7 +370,7 @@ export interface CarouselSlots {
|
|||
/**
|
||||
* Defines valid emits in Carousel component.
|
||||
*/
|
||||
interface CarouselEmitsOptions {
|
||||
export interface CarouselEmitsOptions {
|
||||
/**
|
||||
* Emitted when the page changes.
|
||||
* @param {number} value - New page value.
|
||||
|
|
|
@ -52,7 +52,7 @@ export interface CascadeSelectPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom change event
|
||||
* @see {@link CascadeSelectEmits.change}
|
||||
* @see {@link CascadeSelectEmitsOptions.change}
|
||||
*/
|
||||
export interface CascadeSelectChangeEvent {
|
||||
/**
|
||||
|
@ -66,7 +66,7 @@ export interface CascadeSelectChangeEvent {
|
|||
}
|
||||
|
||||
/**
|
||||
* @see {@link CascadeSelectEmits.change}
|
||||
* @see {@link CascadeSelectEmitsOptions.change}
|
||||
* @extends CascadeSelectChangeEvent
|
||||
*/
|
||||
export interface CascadeSelectGroupChangeEvent extends CascadeSelectChangeEvent {}
|
||||
|
@ -497,7 +497,7 @@ export interface CascadeSelectSlots {
|
|||
/**
|
||||
* Defines valid emits in CascadeSelect component.
|
||||
*/
|
||||
interface CascadeSelectEmitsOptions {
|
||||
export interface CascadeSelectEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -69,7 +69,7 @@ export interface ChartPassThroughAttributes {
|
|||
|
||||
/**
|
||||
* Custom select event.
|
||||
* @see {@link ChartEmits.select}
|
||||
* @see {@link ChartEmitsOptions.select}
|
||||
*/
|
||||
export interface ChartSelectEvent {
|
||||
/**
|
||||
|
@ -146,7 +146,7 @@ export interface ChartSlots {}
|
|||
/**
|
||||
* Defines valid emits in Chart component.
|
||||
*/
|
||||
interface ChartEmitsOptions {
|
||||
export interface ChartEmitsOptions {
|
||||
/**
|
||||
* Callback to invoke when a tab gets expanded.
|
||||
* @param {ChartSelectEvent} event - Custom select event.
|
||||
|
|
|
@ -235,7 +235,7 @@ export interface CheckboxSlots {
|
|||
/**
|
||||
* Defines valid emits in Checkbox component.
|
||||
*/
|
||||
interface CheckboxEmitsOptions {
|
||||
export interface CheckboxEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -187,7 +187,7 @@ export interface ChipSlots {
|
|||
/**
|
||||
* Defines valid properties in Chip component.
|
||||
*/
|
||||
interface ChipEmitsOptions {
|
||||
export interface ChipEmitsOptions {
|
||||
/**
|
||||
* Callback to invoke when a chip is removed.
|
||||
* @param {Event} event - Browser event.
|
||||
|
|
|
@ -23,13 +23,13 @@ export interface ChipsSharedPassThroughMethodOptions extends InputChips.InputChi
|
|||
|
||||
/**
|
||||
* Custom add event.
|
||||
* @see {@link ChipsEmits.add}
|
||||
* @see {@link ChipsEmitsOptions.add}
|
||||
*/
|
||||
export interface ChipsAddEvent extends InputChips.InputChipsAddEvent {}
|
||||
|
||||
/**
|
||||
* Custom remove event.
|
||||
* @see {@link ChipsEmits.remove}
|
||||
* @see {@link ChipsEmitsOptions.remove}
|
||||
* @extends ChipsAddEvent
|
||||
*/
|
||||
export interface ChipsRemoveEvent extends ChipsAddEvent {}
|
||||
|
@ -61,7 +61,7 @@ export interface ChipsSlots extends InputChips.InputChipsSlots {}
|
|||
/**
|
||||
* Defines valid emits in Chips component.
|
||||
*/
|
||||
interface ChipsEmitsOptions {}
|
||||
export interface ChipsEmitsOptions {}
|
||||
|
||||
export declare type ChipsEmits = EmitFn<ChipsEmitsOptions> & InputChips.InputChipsEmits;
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ export interface ColorPickerPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom change event.
|
||||
* @see {@link ColorPickerEmits.change}
|
||||
* @see {@link ColorPickerEmitsOptions.change}
|
||||
*/
|
||||
export interface ColorPickerChangeEvent {
|
||||
/**
|
||||
|
@ -208,7 +208,7 @@ export interface ColorPickerSlots {}
|
|||
/**
|
||||
* Defines valid emits in ColorPicker component.
|
||||
*/
|
||||
interface ColorPickerEmitsOptions {
|
||||
export interface ColorPickerEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -974,7 +974,7 @@ export interface ColumnSlots {
|
|||
nodetoggleicon(): VNode[];
|
||||
}
|
||||
|
||||
interface ColumnEmitsOptions {}
|
||||
export interface ColumnEmitsOptions {}
|
||||
|
||||
export declare type ColumnEmits = EmitFn<ColumnEmitsOptions>;
|
||||
|
||||
|
|
|
@ -118,7 +118,7 @@ export interface ColumnGroupSlots {}
|
|||
/**
|
||||
* Defines valid emits in ColumnGroup component.
|
||||
*/
|
||||
interface ColumnGroupEmitsOptions {}
|
||||
export interface ColumnGroupEmitsOptions {}
|
||||
|
||||
export declare type ColumnGroupEmits = EmitFn<ColumnGroupEmitsOptions>;
|
||||
|
||||
|
|
|
@ -224,7 +224,7 @@ export interface ConfirmPopupSlots {
|
|||
/**
|
||||
* Defines valid emits in ConfirmPopup component.
|
||||
*/
|
||||
interface ConfirmPopupEmitsOptions {}
|
||||
export interface ConfirmPopupEmitsOptions {}
|
||||
|
||||
export declare type ConfirmPopupEmits = EmitFn<ConfirmPopupEmitsOptions>;
|
||||
|
||||
|
|
|
@ -341,7 +341,7 @@ export interface ContextMenuSlots {
|
|||
/**
|
||||
* Defines valid emits in ContextMenu component.
|
||||
*/
|
||||
interface ContextMenuEmitsOptions {
|
||||
export interface ContextMenuEmitsOptions {
|
||||
/**
|
||||
* Callback to invoke when the component receives focus.
|
||||
* @param {Event} event - Browser event.
|
||||
|
|
|
@ -230,7 +230,7 @@ export interface DataTableEditButtonPropsOptions {
|
|||
|
||||
/**
|
||||
* Custom sort event.
|
||||
* @see {@link DataTableEmits.sort}
|
||||
* @see {@link DataTableEmitsOptions.sort}
|
||||
*/
|
||||
export interface DataTableSortEvent {
|
||||
/**
|
||||
|
@ -270,7 +270,7 @@ export interface DataTableSortEvent {
|
|||
|
||||
/**
|
||||
* Custom pagination event.
|
||||
* @see {@link DataTableEmits.page}
|
||||
* @see {@link DataTableEmitsOptions.page}
|
||||
* @extends DataTableSortEvent
|
||||
*/
|
||||
export interface DataTablePageEvent extends DataTableSortEvent {
|
||||
|
@ -286,7 +286,7 @@ export interface DataTablePageEvent extends DataTableSortEvent {
|
|||
|
||||
/**
|
||||
* Custom filter event.
|
||||
* @see {@link DataTableEmits.filter}
|
||||
* @see {@link DataTableEmitsOptions.filter}
|
||||
* @extends DataTableSortEvent
|
||||
*/
|
||||
export interface DataTableFilterEvent extends DataTableSortEvent {
|
||||
|
@ -298,7 +298,7 @@ export interface DataTableFilterEvent extends DataTableSortEvent {
|
|||
|
||||
/**
|
||||
* Custom row click event.
|
||||
* @see {@link DataTableEmits['row-click']}
|
||||
* @see {@link DataTableEmitsOptions['row-click']}
|
||||
*/
|
||||
export interface DataTableRowClickEvent {
|
||||
/**
|
||||
|
@ -317,21 +317,21 @@ export interface DataTableRowClickEvent {
|
|||
|
||||
/**
|
||||
* Custom row double click event.
|
||||
* @see {@link DataTableEmits['row-dblclick']]}
|
||||
* @see {@link DataTableEmitsOptions['row-dblclick']]}
|
||||
* @extends DataTableRowClickEvent
|
||||
*/
|
||||
export interface DataTableRowDoubleClickEvent extends DataTableRowClickEvent {}
|
||||
|
||||
/**
|
||||
* Custom row context menu event.
|
||||
* @see {@link DataTableEmits['row-contextmenu']}
|
||||
* @see {@link DataTableEmitsOptions['row-contextmenu']}
|
||||
* @extends DataTableRowClickEvent
|
||||
*/
|
||||
export interface DataTableRowContextMenuEvent extends DataTableRowClickEvent {}
|
||||
|
||||
/**
|
||||
* Custom row select event.
|
||||
* @see {@link DataTableEmits['row-select']}
|
||||
* @see {@link DataTableEmitsOptions['row-select']}
|
||||
*/
|
||||
export interface DataTableRowSelectEvent {
|
||||
/**
|
||||
|
@ -354,14 +354,14 @@ export interface DataTableRowSelectEvent {
|
|||
|
||||
/**
|
||||
* Custom row unselect event.
|
||||
* @see {@link DataTableEmits['row-unselect']}
|
||||
* @see {@link DataTableEmitsOptions['row-unselect']}
|
||||
* @extends DataTableRowSelectEvent
|
||||
*/
|
||||
export interface DataTableRowUnselectEvent extends DataTableRowSelectEvent {}
|
||||
|
||||
/**
|
||||
* Custom row select all event.
|
||||
* @see {@link DataTableEmits['row-select-all']}
|
||||
* @see {@link DataTableEmitsOptions['row-select-all']}
|
||||
*/
|
||||
export interface DataTableRowSelectAllEvent {
|
||||
/**
|
||||
|
@ -376,7 +376,7 @@ export interface DataTableRowSelectAllEvent {
|
|||
|
||||
/**
|
||||
* Custom row unselect all event.
|
||||
* @see {@link DataTableEmits['row-unselect-all']}
|
||||
* @see {@link DataTableEmitsOptions['row-unselect-all']}
|
||||
*/
|
||||
export interface DataTableRowUnselectAllEvent {
|
||||
/**
|
||||
|
@ -387,7 +387,7 @@ export interface DataTableRowUnselectAllEvent {
|
|||
|
||||
/**
|
||||
* Custom row select all change event.
|
||||
* @see {@link DataTableEmits['select-all-change']}
|
||||
* @see {@link DataTableEmitsOptions['select-all-change']}
|
||||
*/
|
||||
export interface DataTableSelectAllChangeEvent {
|
||||
/**
|
||||
|
@ -402,7 +402,7 @@ export interface DataTableSelectAllChangeEvent {
|
|||
|
||||
/**
|
||||
* Custom column resize end event.
|
||||
* @see {@link DataTableEmits['column-resize-end']}
|
||||
* @see {@link DataTableEmitsOptions['column-resize-end']}
|
||||
*/
|
||||
export interface DataTableColumnResizeEndEvent {
|
||||
/**
|
||||
|
@ -417,7 +417,7 @@ export interface DataTableColumnResizeEndEvent {
|
|||
|
||||
/**
|
||||
* Custom row column reorder event.
|
||||
* @see {@link DataTableEmits['column-reorder']}
|
||||
* @see {@link DataTableEmitsOptions['column-reorder']}
|
||||
*/
|
||||
export interface DataTableColumnReorderEvent {
|
||||
/**
|
||||
|
@ -436,7 +436,7 @@ export interface DataTableColumnReorderEvent {
|
|||
|
||||
/**
|
||||
* Custom row reorder event.
|
||||
* @see {@link DataTableEmits['row-reorder']}
|
||||
* @see {@link DataTableEmitsOptions['row-reorder']}
|
||||
*/
|
||||
export interface DataTableRowReorderEvent {
|
||||
/**
|
||||
|
@ -459,7 +459,7 @@ export interface DataTableRowReorderEvent {
|
|||
|
||||
/**
|
||||
* Custom row expand event.
|
||||
* @see {@link DataTableEmits['row-expand']}
|
||||
* @see {@link DataTableEmitsOptions['row-expand']}
|
||||
*/
|
||||
export interface DataTableRowExpandEvent {
|
||||
/**
|
||||
|
@ -474,14 +474,14 @@ export interface DataTableRowExpandEvent {
|
|||
|
||||
/**
|
||||
* Custom row collapse event.
|
||||
* @see {@link DataTableEmits['row-expand']}
|
||||
* @see {@link DataTableEmitsOptions['row-expand']}
|
||||
* @extends DataTableRowExpandEvent
|
||||
*/
|
||||
export interface DataTableRowCollapseEvent extends DataTableRowExpandEvent {}
|
||||
|
||||
/**
|
||||
* Custom cell edit init event.
|
||||
* @see {@link DataTableEmits['cell-edit-init']}
|
||||
* @see {@link DataTableEmitsOptions['cell-edit-init']}
|
||||
*/
|
||||
export interface DataTableCellEditInitEvent {
|
||||
/**
|
||||
|
@ -504,14 +504,14 @@ export interface DataTableCellEditInitEvent {
|
|||
|
||||
/**
|
||||
* Custom cell edit cancel event.
|
||||
* @see {@link DataTableEmits['cell-edit-cancel']}
|
||||
* @see {@link DataTableEmitsOptions['cell-edit-cancel']}
|
||||
* @extends DataTableCellEditInitEvent
|
||||
*/
|
||||
export interface DataTableCellEditCancelEvent extends DataTableCellEditInitEvent {}
|
||||
|
||||
/**
|
||||
* Custom cell edit complete event.
|
||||
* @see {@link DataTableEmits['cell-edit-complete']}
|
||||
* @see {@link DataTableEmitsOptions['cell-edit-complete']}
|
||||
*/
|
||||
export interface DataTableCellEditCompleteEvent {
|
||||
/**
|
||||
|
@ -550,7 +550,7 @@ export interface DataTableCellEditCompleteEvent {
|
|||
|
||||
/**
|
||||
* Custom row edit init event.
|
||||
* @see {@link DataTableEmits['row-edit-init']}
|
||||
* @see {@link DataTableEmitsOptions['row-edit-init']}
|
||||
*/
|
||||
export interface DataTableRowEditInitEvent {
|
||||
/**
|
||||
|
@ -577,21 +577,21 @@ export interface DataTableRowEditInitEvent {
|
|||
|
||||
/**
|
||||
* Custom row edit save event.
|
||||
* @see {@link DataTableEmits['row-edit-save']}
|
||||
* @see {@link DataTableEmitsOptions['row-edit-save']}
|
||||
* @extends DataTableRowEditInitEvent
|
||||
*/
|
||||
export interface DataTableRowEditSaveEvent extends DataTableRowEditInitEvent {}
|
||||
|
||||
/**
|
||||
* Custom row edit cancel event.
|
||||
* @see {@link DataTableEmits['row-edit-cancel']}
|
||||
* @see {@link DataTableEmitsOptions['row-edit-cancel']}
|
||||
* @extends DataTableRowEditCancelEvent
|
||||
*/
|
||||
export interface DataTableRowEditCancelEvent extends DataTableRowEditInitEvent {}
|
||||
|
||||
/**
|
||||
* Custom state event.
|
||||
* @see {@link DataTableEmits['state-save']}
|
||||
* @see {@link DataTableEmitsOptions['state-save']}
|
||||
*/
|
||||
export interface DataTableStateEvent {
|
||||
/**
|
||||
|
@ -1415,7 +1415,7 @@ export interface DataTableSlots {
|
|||
/**
|
||||
* Defines valid emits in Datatable component.
|
||||
*/
|
||||
interface DataTableEmitsOptions {
|
||||
export interface DataTableEmitsOptions {
|
||||
/**
|
||||
* Emitted when the first changes.
|
||||
* @param {number} value - New value.
|
||||
|
|
|
@ -61,7 +61,7 @@ export interface DataViewSharedPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom page event.
|
||||
* @see {@link DataViewEmits.page}
|
||||
* @see {@link DataViewEmitsOptions.page}
|
||||
*/
|
||||
export interface DataViewPageEvent {
|
||||
/**
|
||||
|
@ -313,7 +313,7 @@ export interface DataViewSlots {
|
|||
/**
|
||||
* Defines valid slots in DataView component.
|
||||
*/
|
||||
interface DataViewEmitsOptions {
|
||||
export interface DataViewEmitsOptions {
|
||||
/**
|
||||
* Emitted when the first changes.
|
||||
* @param {number} value - New value.
|
||||
|
|
|
@ -82,7 +82,7 @@ export interface DatePickerResponsiveOptions {
|
|||
|
||||
/**
|
||||
* Custom DatePicker month change event.
|
||||
* @see {@link DatePickerEmits['month-change']]}
|
||||
* @see {@link DatePickerEmitsOptions['month-change']]}
|
||||
*/
|
||||
export interface DatePickerMonthChangeEvent {
|
||||
/**
|
||||
|
@ -97,7 +97,7 @@ export interface DatePickerMonthChangeEvent {
|
|||
|
||||
/**
|
||||
* Custom DatePicker year change event.
|
||||
* @see {@link DatePickerEmits['year-change']]}
|
||||
* @see {@link DatePickerEmitsOptions['year-change']]}
|
||||
*/
|
||||
export interface DatePickerYearChangeEvent {
|
||||
/**
|
||||
|
@ -112,7 +112,7 @@ export interface DatePickerYearChangeEvent {
|
|||
|
||||
/**
|
||||
* Custom DatePicker blur event.
|
||||
* @see {@link DatePickerEmits.blur}
|
||||
* @see {@link DatePickerEmitsOptions.blur}
|
||||
*/
|
||||
export interface DatePickerBlurEvent {
|
||||
/**
|
||||
|
@ -988,7 +988,7 @@ export interface DatePickerSlots {
|
|||
/**
|
||||
* Defines valid emits in DatePicker component.
|
||||
*/
|
||||
interface DatePickerEmitsOptions {
|
||||
export interface DatePickerEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {string | Date | string[] | Date[] | undefined} value - New value.
|
||||
|
|
|
@ -116,7 +116,7 @@ export interface DeferredContentSlots {
|
|||
/**
|
||||
* Defines valid emits in DeferredContent component.
|
||||
*/
|
||||
interface DeferredContentEmitsOptions {
|
||||
export interface DeferredContentEmitsOptions {
|
||||
/**
|
||||
* Callback to invoke when deferred content is loaded.
|
||||
*/
|
||||
|
|
|
@ -392,7 +392,7 @@ export interface DialogSlots {
|
|||
/**
|
||||
* Defines valid emits in Dialog component.
|
||||
*/
|
||||
interface DialogEmitsOptions {
|
||||
export interface DialogEmitsOptions {
|
||||
/**
|
||||
* Emitted when the visible changes.
|
||||
* @param {boolean} value - New value.
|
||||
|
|
|
@ -116,7 +116,7 @@ export interface DividerSlots {
|
|||
default(): VNode[];
|
||||
}
|
||||
|
||||
interface DividerEmitsOptions {}
|
||||
export interface DividerEmitsOptions {}
|
||||
|
||||
export declare type DividerEmits = EmitFn<DividerEmitsOptions>;
|
||||
|
||||
|
|
|
@ -299,7 +299,7 @@ export interface DockSlots {
|
|||
/**
|
||||
* Defines valid emits in Dock component.
|
||||
*/
|
||||
interface DockEmitsOptions {
|
||||
export interface DockEmitsOptions {
|
||||
/**
|
||||
* Callback to invoke when the component receives focus.
|
||||
* @param {Event} event - Browser event.
|
||||
|
|
|
@ -251,7 +251,7 @@ export interface DrawerSlots {
|
|||
/**
|
||||
* Defines valid emits in Drawer component.
|
||||
*/
|
||||
interface DrawerEmitsOptions {
|
||||
export interface DrawerEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {boolean} value - New value.
|
||||
|
|
|
@ -18,13 +18,13 @@ export interface DropdownPassThroughMethodOptions<T> extends Select.SelectPassTh
|
|||
|
||||
/**
|
||||
* Custom change event.
|
||||
* @see {@link DropdownEmits.change}
|
||||
* @see {@link DropdownEmitsOptions.change}
|
||||
*/
|
||||
export interface DropdownChangeEvent extends Select.SelectChangeEvent {}
|
||||
|
||||
/**
|
||||
* Custom filter event.
|
||||
* @see {@link DropdownEmits.filter}
|
||||
* @see {@link DropdownEmitsOptions.filter}
|
||||
*/
|
||||
export interface DropdownFilterEvent extends Select.SelectFilterEvent {}
|
||||
|
||||
|
@ -62,7 +62,7 @@ export interface DropdownSlots extends Select.SelectSlots {}
|
|||
/**
|
||||
* Defines valid emits in Dropdown component.
|
||||
*/
|
||||
interface DropdownEmitsOptions {}
|
||||
export interface DropdownEmitsOptions {}
|
||||
|
||||
export declare type DropdownEmits = EmitFn<DropdownEmitsOptions> & Select.SelectEmits;
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ export interface DynamicDialogSlots {}
|
|||
/**
|
||||
* Defines valid emits in DynamicDialog component.
|
||||
*/
|
||||
interface DynamicDialogEmitsOptions {}
|
||||
export interface DynamicDialogEmitsOptions {}
|
||||
|
||||
export declare type DynamicDialogEmits = EmitFn<DynamicDialogEmitsOptions>;
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ export interface EditorPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom text change event.
|
||||
* @see {@link EditorEmits['text-change']}
|
||||
* @see {@link EditorEmitsOptions['text-change']}
|
||||
*/
|
||||
export interface EditorTextChangeEvent {
|
||||
/**
|
||||
|
@ -72,7 +72,7 @@ export interface EditorTextChangeEvent {
|
|||
}
|
||||
/**
|
||||
* Custom selection change event.
|
||||
* @see {@link EditorEmits['selection-change']}
|
||||
* @see {@link EditorEmitsOptions['selection-change']}
|
||||
*/
|
||||
export interface EditorSelectionChangeEvent {
|
||||
/**
|
||||
|
@ -102,7 +102,7 @@ export interface EditorSelectionChangeEvent {
|
|||
}
|
||||
/**
|
||||
* Custom load event.
|
||||
* @see {@link EditorEmits.load}
|
||||
* @see {@link EditorEmitsOptions.load}
|
||||
*/
|
||||
export interface EditorLoadEvent {
|
||||
/**
|
||||
|
@ -272,7 +272,7 @@ export interface EditorSlots {
|
|||
/**
|
||||
* Defines valid emits in Editor component.
|
||||
*/
|
||||
interface EditorEmitsOptions {
|
||||
export interface EditorEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {string} value - New value.
|
||||
|
|
|
@ -48,7 +48,7 @@ export interface FieldsetPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom toggle event.
|
||||
* @see {@link FieldsetEmits.toggle}
|
||||
* @see {@link FieldsetEmitsOptions.toggle}
|
||||
*/
|
||||
export interface FieldsetToggleEvent {
|
||||
/**
|
||||
|
@ -216,7 +216,7 @@ export interface FieldsetSlots {
|
|||
/**
|
||||
* Defines valid emits in Fildset component.
|
||||
*/
|
||||
interface FieldsetEmitsOptions {
|
||||
export interface FieldsetEmitsOptions {
|
||||
/**
|
||||
* Emitted when the collapsed changes.
|
||||
* @param {boolean} value - New value.
|
||||
|
|
|
@ -64,7 +64,7 @@ export interface FileUploadPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom select event.
|
||||
* @see {@link FileUploadEmits.select}
|
||||
* @see {@link FileUploadEmitsOptions.select}
|
||||
*/
|
||||
export interface FileUploadSelectEvent {
|
||||
/**
|
||||
|
@ -79,7 +79,7 @@ export interface FileUploadSelectEvent {
|
|||
|
||||
/**
|
||||
* Custom before upload event.
|
||||
* @see {@link FileUploadEmits['before-upload']}
|
||||
* @see {@link FileUploadEmitsOptions['before-upload']}
|
||||
*/
|
||||
export interface FileUploadBeforeUploadEvent {
|
||||
/**
|
||||
|
@ -94,7 +94,7 @@ export interface FileUploadBeforeUploadEvent {
|
|||
|
||||
/**
|
||||
* Custom progress event.
|
||||
* @see {@link FileUploadEmits.progress }
|
||||
* @see {@link FileUploadEmitsOptions.progress }
|
||||
*/
|
||||
export interface FileUploadProgressEvent {
|
||||
/**
|
||||
|
@ -109,7 +109,7 @@ export interface FileUploadProgressEvent {
|
|||
|
||||
/**
|
||||
* Custom upload event.
|
||||
* @see {@link FileUploadEmits.upload}
|
||||
* @see {@link FileUploadEmitsOptions.upload}
|
||||
*/
|
||||
export interface FileUploadUploadEvent {
|
||||
/**
|
||||
|
@ -124,7 +124,7 @@ export interface FileUploadUploadEvent {
|
|||
|
||||
/**
|
||||
* Custom uploader event.
|
||||
* @see {@link FileUploadEmits.uploader}
|
||||
* @see {@link FileUploadEmitsOptions.uploader}
|
||||
*/
|
||||
export interface FileUploadUploaderEvent {
|
||||
/**
|
||||
|
@ -134,7 +134,7 @@ export interface FileUploadUploaderEvent {
|
|||
}
|
||||
/**
|
||||
* Custom error event.
|
||||
* @see {@link FileUploadEmits.error}
|
||||
* @see {@link FileUploadEmitsOptions.error}
|
||||
*/
|
||||
export interface FileUploadErrorEvent {
|
||||
/**
|
||||
|
@ -148,7 +148,7 @@ export interface FileUploadErrorEvent {
|
|||
}
|
||||
/**
|
||||
* Custom before send event.
|
||||
* @see {@link FileUploadEmits['before-send']}
|
||||
* @see {@link FileUploadEmitsOptions['before-send']}
|
||||
*/
|
||||
export interface FileUploadBeforeSendEvent {
|
||||
/**
|
||||
|
@ -163,7 +163,7 @@ export interface FileUploadBeforeSendEvent {
|
|||
|
||||
/**
|
||||
* Custom remove event.
|
||||
* @see {@link FileUploadEmits.remove}
|
||||
* @see {@link FileUploadEmitsOptions.remove}
|
||||
*/
|
||||
export interface FileUploadRemoveEvent {
|
||||
/**
|
||||
|
@ -177,7 +177,7 @@ export interface FileUploadRemoveEvent {
|
|||
}
|
||||
/**
|
||||
* Custom remove upload file event.
|
||||
* @see {@link FileUploadEmits['remove-uploaded-file']}
|
||||
* @see {@link FileUploadEmitsOptions['remove-uploaded-file']}
|
||||
*/
|
||||
export interface FileUploadRemoveUploadedFile {
|
||||
/**
|
||||
|
@ -587,7 +587,7 @@ export interface FileUploadSlots {
|
|||
}): VNode[];
|
||||
}
|
||||
|
||||
interface FileUploadEmitsOptions {
|
||||
export interface FileUploadEmitsOptions {
|
||||
/**
|
||||
* Callback to invoke when files are selected.
|
||||
* @param {FileUploadSelectEvent} event - Custom select event.
|
||||
|
|
|
@ -103,7 +103,7 @@ export interface FloatLabelSlots {
|
|||
/**
|
||||
* Defines valid emits in FloatLabel component.
|
||||
*/
|
||||
interface FloatLabelEmitsOptions {}
|
||||
export interface FloatLabelEmitsOptions {}
|
||||
|
||||
export declare type FloatLabelEmits = EmitFn<FloatLabelEmitsOptions>;
|
||||
|
||||
|
|
|
@ -503,7 +503,7 @@ export interface GalleriaSlots {
|
|||
/**
|
||||
* Defines valid emits in Galleria component.
|
||||
*/
|
||||
interface GalleriaEmitsOptions {
|
||||
export interface GalleriaEmitsOptions {
|
||||
/**
|
||||
* Emitted when the active index changes.
|
||||
* @param {number} value - Index of new active item.
|
||||
|
|
|
@ -101,7 +101,7 @@ export interface IconFieldSlots {
|
|||
/**
|
||||
* Defines valid emits in IconField component.
|
||||
*/
|
||||
interface IconFieldEmitsOptions {}
|
||||
export interface IconFieldEmitsOptions {}
|
||||
|
||||
export declare type IconFieldEmits = EmitFn<IconFieldEmitsOptions>;
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ export interface IconProps {
|
|||
|
||||
export interface IconSlots {}
|
||||
|
||||
interface IconEmitsOptions {}
|
||||
export interface IconEmitsOptions {}
|
||||
|
||||
export declare type IconEmits = EmitFn<IconEmitsOptions>;
|
||||
|
||||
|
|
|
@ -329,7 +329,7 @@ export interface ImageSlots {
|
|||
}): VNode[];
|
||||
}
|
||||
|
||||
interface ImageEmitsOptions {}
|
||||
export interface ImageEmitsOptions {}
|
||||
|
||||
export declare type ImageEmits = EmitFn<ImageEmitsOptions>;
|
||||
|
||||
|
|
|
@ -134,7 +134,7 @@ export interface InlineMessageSlots {
|
|||
icon(): VNode[];
|
||||
}
|
||||
|
||||
interface InlineMessageEmitsOptions {}
|
||||
export interface InlineMessageEmitsOptions {}
|
||||
|
||||
export declare type InlineMessageEmits = EmitFn<InlineMessageEmitsOptions>;
|
||||
|
||||
|
|
|
@ -167,7 +167,7 @@ export interface InplaceSlots {
|
|||
/**
|
||||
* Defines valid emits in Inplace component.
|
||||
*/
|
||||
interface InplaceEmitsOptions {
|
||||
export interface InplaceEmitsOptions {
|
||||
/**
|
||||
* Emitted when the active changes.
|
||||
* @param {boolean} value - New value.
|
||||
|
|
|
@ -61,7 +61,7 @@ export interface InputChipsSharedPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom add event.
|
||||
* @see {@link InputChipsEmits.add}
|
||||
* @see {@link InputChipsEmitsOptions.add}
|
||||
*/
|
||||
export interface InputChipsAddEvent {
|
||||
/**
|
||||
|
@ -76,7 +76,7 @@ export interface InputChipsAddEvent {
|
|||
|
||||
/**
|
||||
* Custom remove event.
|
||||
* @see {@link InputChipsEmits.remove}
|
||||
* @see {@link InputChipsEmitsOptions.remove}
|
||||
* @extends InputChipsAddEvent
|
||||
*/
|
||||
export interface InputChipsRemoveEvent extends InputChipsAddEvent {}
|
||||
|
@ -320,7 +320,7 @@ export interface InputChipsSlots {
|
|||
/**
|
||||
* Defines valid emits in InputChips component.
|
||||
*/
|
||||
interface InputChipsEmitsOptions {
|
||||
export interface InputChipsEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -102,7 +102,7 @@ export interface InputGroupSlots {
|
|||
/**
|
||||
* Defines valid emits in InputGroup component.
|
||||
*/
|
||||
interface InputGroupEmitsOptions {}
|
||||
export interface InputGroupEmitsOptions {}
|
||||
|
||||
export declare type InputGroupEmits = EmitFn<InputGroupEmitsOptions>;
|
||||
|
||||
|
|
|
@ -102,7 +102,7 @@ export interface InputGroupAddonSlots {
|
|||
/**
|
||||
* Defines valid emits in InputGroupAddon component.
|
||||
*/
|
||||
interface InputGroupAddonEmitsOptions {}
|
||||
export interface InputGroupAddonEmitsOptions {}
|
||||
|
||||
export declare type InputGroupAddonEmits = EmitFn<InputGroupAddonEmitsOptions>;
|
||||
|
||||
|
|
|
@ -97,7 +97,7 @@ export interface InputIconSlots {
|
|||
/**
|
||||
* Defines valid emits in InputIcon component.
|
||||
*/
|
||||
interface InputIconEmitsOptions {}
|
||||
export interface InputIconEmitsOptions {}
|
||||
|
||||
export declare type InputIconEmits = EmitFn<InputIconEmitsOptions>;
|
||||
|
||||
|
|
|
@ -174,7 +174,7 @@ export interface InputMaskSlots {}
|
|||
/**
|
||||
* Defines valid emits in InputMask component.
|
||||
*/
|
||||
interface InputMaskEmitsOptions {
|
||||
export interface InputMaskEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {string} value - New value.
|
||||
|
|
|
@ -59,7 +59,7 @@ export interface InputNumberSharedPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom input event.
|
||||
* @see {@link InputNumberEmits.input}
|
||||
* @see {@link InputNumberEmitsOptions.input}
|
||||
*/
|
||||
export interface InputNumberInputEvent {
|
||||
/**
|
||||
|
@ -78,7 +78,7 @@ export interface InputNumberInputEvent {
|
|||
|
||||
/**
|
||||
* Custom blur event.
|
||||
* @see {@link InputNumberEmits.blur}
|
||||
* @see {@link InputNumberEmitsOptions.blur}
|
||||
*/
|
||||
export interface InputNumberBlurEvent {
|
||||
/**
|
||||
|
@ -420,7 +420,7 @@ export interface InputNumberSlots {
|
|||
/**
|
||||
* Defines valid emits in InputNumber component.
|
||||
*/
|
||||
interface InputNumberEmitsOptions {
|
||||
export interface InputNumberEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {number} value - New value.
|
||||
|
|
|
@ -233,7 +233,7 @@ export interface InputOtpSlots {
|
|||
/**
|
||||
* Defines valid emits in InputOtp component.
|
||||
*/
|
||||
interface InputOtpEmitsOptions {
|
||||
export interface InputOtpEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {boolean} value - New value.
|
||||
|
|
|
@ -40,7 +40,7 @@ export interface InputSwitchSlots extends ToggleSwitch.ToggleSwitchSlots {}
|
|||
/**
|
||||
* Defines valid emits in InputSwitch component.
|
||||
*/
|
||||
interface InputSwitchEmitsOptions {}
|
||||
export interface InputSwitchEmitsOptions {}
|
||||
|
||||
export declare type InputSwitchEmits = EmitFn<InputSwitchEmitsOptions> & ToggleSwitch.ToggleSwitchEmits;
|
||||
|
||||
|
|
|
@ -130,7 +130,7 @@ export interface InputTextSlots {}
|
|||
/**
|
||||
* Defines valid emits in InputText component.
|
||||
*/
|
||||
interface InputTextEmitsOptions {
|
||||
export interface InputTextEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {string} value - New value.
|
||||
|
|
|
@ -68,7 +68,7 @@ export interface ListboxSharedPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom change event.
|
||||
* @see {@link ListboxEmits.change}
|
||||
* @see {@link ListboxEmitsOptions.change}
|
||||
*/
|
||||
export interface ListboxChangeEvent {
|
||||
/**
|
||||
|
@ -83,7 +83,7 @@ export interface ListboxChangeEvent {
|
|||
|
||||
/**
|
||||
* Custom double click event.
|
||||
* @see {@link ListboxEmits.['item-dblclick']}
|
||||
* @see {@link ListboxEmitsOptions.['item-dblclick']}
|
||||
*/
|
||||
export interface ListboxOptionDblClickEvent {
|
||||
/**
|
||||
|
@ -98,7 +98,7 @@ export interface ListboxOptionDblClickEvent {
|
|||
|
||||
/**
|
||||
* Custom filter event.
|
||||
* @see {@link ListboxEmits.filter}
|
||||
* @see {@link ListboxEmitsOptions.filter}
|
||||
*/
|
||||
export interface ListboxFilterEvent {
|
||||
/**
|
||||
|
@ -555,7 +555,7 @@ export interface ListboxSlots {
|
|||
/**
|
||||
* Defines valid emits in Listbox component.
|
||||
*/
|
||||
interface ListboxEmitsOptions {
|
||||
export interface ListboxEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -378,7 +378,7 @@ export interface MegaMenuSlots {
|
|||
/**
|
||||
* Defines valid emits in MegaMenu component.
|
||||
*/
|
||||
interface MegaMenuEmitsOptions {
|
||||
export interface MegaMenuEmitsOptions {
|
||||
/**
|
||||
* Callback to invoke when the component receives focus.
|
||||
* @param {Event} event - Browser event.
|
||||
|
|
|
@ -325,7 +325,7 @@ export interface MenuSlots {
|
|||
/**
|
||||
* Defines valid emits in Menu component.
|
||||
*/
|
||||
interface MenuEmitsOptions {
|
||||
export interface MenuEmitsOptions {
|
||||
/**
|
||||
* Callback to invoke when the component receives focus.
|
||||
* @param {Event} event - Browser event.
|
||||
|
|
|
@ -402,7 +402,7 @@ export interface MenubarSlots {
|
|||
/**
|
||||
* Defines valid emits in Menubar component.
|
||||
*/
|
||||
interface MenubarEmitsOptions {}
|
||||
export interface MenubarEmitsOptions {}
|
||||
|
||||
export declare type MenubarEmits = EmitFn<MenubarEmitsOptions>;
|
||||
|
||||
|
|
|
@ -216,7 +216,7 @@ export interface MessageSlots {
|
|||
/**
|
||||
* Defines valid emits in Message component.
|
||||
*/
|
||||
interface MessageEmitsOptions {
|
||||
export interface MessageEmitsOptions {
|
||||
/**
|
||||
* Callback to invoke when a message is closed.
|
||||
* @param {Event} event - Browser event.
|
||||
|
|
|
@ -285,7 +285,7 @@ export interface MeterGroupSlots {
|
|||
/**
|
||||
* Defines valid emits in MeterGroup component.
|
||||
*/
|
||||
interface MeterGroupEmitsOptions {}
|
||||
export interface MeterGroupEmitsOptions {}
|
||||
|
||||
export declare type MeterGroupEmits = EmitFn<MeterGroupEmitsOptions>;
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ export interface MultiSelectSharedPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom change event.
|
||||
* @see {@link MultiSelectEmits.change}
|
||||
* @see {@link MultiSelectEmitsOptions.change}
|
||||
*/
|
||||
export interface MultiSelectChangeEvent {
|
||||
/**
|
||||
|
@ -86,7 +86,7 @@ export interface MultiSelectChangeEvent {
|
|||
|
||||
/**
|
||||
* Custom all change event.
|
||||
* @see {@link MultiSelectEmits['selectall-change']}
|
||||
* @see {@link MultiSelectEmitsOptions['selectall-change']}
|
||||
*/
|
||||
export interface MultiSelectAllChangeEvent {
|
||||
/**
|
||||
|
@ -101,7 +101,7 @@ export interface MultiSelectAllChangeEvent {
|
|||
|
||||
/**
|
||||
* Custom filter event
|
||||
* @see {@link MultiSelectEmits.filter}
|
||||
* @see {@link MultiSelectEmitsOptions.filter}
|
||||
*/
|
||||
export interface MultiSelectFilterEvent {
|
||||
/**
|
||||
|
@ -828,7 +828,7 @@ export interface MultiSelectSlots {
|
|||
/**
|
||||
* Defines valid emits in MultiSelect component.
|
||||
*/
|
||||
interface MultiSelectEmitsOptions {
|
||||
export interface MultiSelectEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -64,7 +64,7 @@ export interface OrderListSharedPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom reorder event
|
||||
* @see {@link OrderListEmits.reorder}
|
||||
* @see {@link OrderListEmitsOptions.reorder}
|
||||
*/
|
||||
export interface OrderListReorderEvent {
|
||||
/**
|
||||
|
@ -83,7 +83,7 @@ export interface OrderListReorderEvent {
|
|||
|
||||
/**
|
||||
* Custom selection change event
|
||||
* @see {@link OrderListEmits['selection-change']}
|
||||
* @see {@link OrderListEmitsOptions['selection-change']}
|
||||
*/
|
||||
export interface OrderListSelectionChangeEvent {
|
||||
/**
|
||||
|
@ -333,7 +333,7 @@ export interface OrderListSlots {
|
|||
/**
|
||||
* Defines valid slots in OrderList component.
|
||||
*/
|
||||
interface OrderListEmitsOptions {
|
||||
export interface OrderListEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -307,7 +307,7 @@ export interface OrganizationChartSlots {
|
|||
/**
|
||||
* Defines valid emits in OrganizationChart component.
|
||||
*/
|
||||
interface OrganizationChartEmitsOptions {
|
||||
export interface OrganizationChartEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -52,7 +52,7 @@ export interface OverlayPanelSlots extends Popover.PopoverSlots {}
|
|||
/**
|
||||
* Defines valid emits in OverlayPanel component.
|
||||
*/
|
||||
interface OverlayPanelEmitsOptions {}
|
||||
export interface OverlayPanelEmitsOptions {}
|
||||
|
||||
export declare type OverlayPanelEmits = EmitFn<OverlayPanelEmitsOptions> & Popover.PopoverEmits;
|
||||
|
||||
|
|
|
@ -417,7 +417,7 @@ export interface PaginatorSlots {
|
|||
/**
|
||||
* Defines valid emits in Paginator component.
|
||||
*/
|
||||
interface PaginatorEmitsOptions {
|
||||
export interface PaginatorEmitsOptions {
|
||||
/**
|
||||
* Emitted when the first changes.
|
||||
* @param {number} value - New value.
|
||||
|
|
|
@ -63,7 +63,7 @@ export interface PanelSharedPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom toggle event.
|
||||
* @see {@link PanelEmits.toggle}
|
||||
* @see {@link PanelEmitsOptions.toggle}
|
||||
*/
|
||||
export interface PanelToggleEvent {
|
||||
/**
|
||||
|
@ -243,7 +243,7 @@ export interface PanelSlots {
|
|||
/**
|
||||
* Defines valid emits in Panel component.
|
||||
*/
|
||||
interface PanelEmitsOptions {
|
||||
export interface PanelEmitsOptions {
|
||||
/**
|
||||
* Emitted when the collapsed changes.
|
||||
* @param {boolean} value - New value.
|
||||
|
|
|
@ -200,7 +200,7 @@ export interface PanelMenuExpandedKeys {
|
|||
|
||||
/**
|
||||
* Custom panel open event.
|
||||
* @see {@link PanelMenuEmits['panel-open']}
|
||||
* @see {@link PanelMenuEmitsOptions['panel-open']}
|
||||
*/
|
||||
export interface PanelMenuPanelOpenEvent {
|
||||
/**
|
||||
|
@ -216,7 +216,7 @@ export interface PanelMenuPanelOpenEvent {
|
|||
|
||||
/**
|
||||
* Custom panel close event.
|
||||
* @see {@link PanelMenuEmits['panel-close']}
|
||||
* @see {@link PanelMenuEmitsOptions['panel-close']}
|
||||
* @extends {PanelMenuPanelOpenEvent}
|
||||
*/
|
||||
export interface PanelMenuPanelCloseEvent extends PanelMenuPanelOpenEvent {}
|
||||
|
@ -377,7 +377,7 @@ export interface PanelMenuSlots {
|
|||
/**
|
||||
* Defines valid emits in PanelMenu component.
|
||||
*/
|
||||
interface PanelMenuEmitsOptions {
|
||||
export interface PanelMenuEmitsOptions {
|
||||
/**
|
||||
* Emitted when the expandedKeys changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -413,7 +413,7 @@ export interface PasswordSlots {
|
|||
/**
|
||||
* Defines valid emits in Password component.
|
||||
*/
|
||||
interface PasswordEmitsOptions {
|
||||
export interface PasswordEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {string} value - New value.
|
||||
|
|
|
@ -68,7 +68,7 @@ export interface PickListSharedPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom reorder event.
|
||||
* @see {@link PickListEmits.reorder}
|
||||
* @see {@link PickListEmitsOptions.reorder}
|
||||
*/
|
||||
export interface PickListReorderEvent {
|
||||
/**
|
||||
|
@ -91,7 +91,7 @@ export interface PickListReorderEvent {
|
|||
|
||||
/**
|
||||
* Custom selection change event.
|
||||
* @see {@link PickListEmits['selection-change']}
|
||||
* @see {@link PickListEmitsOptions['selection-change']}
|
||||
*/
|
||||
export interface PickListSelectionChangeEvent {
|
||||
/**
|
||||
|
@ -106,7 +106,7 @@ export interface PickListSelectionChangeEvent {
|
|||
|
||||
/**
|
||||
* Custom move-to-target event.
|
||||
* @see {@link PickListEmits['move-to-target']}
|
||||
* @see {@link PickListEmitsOptions['move-to-target']}
|
||||
*/
|
||||
export interface PickListMoveToTargetEvent {
|
||||
/**
|
||||
|
@ -121,21 +121,21 @@ export interface PickListMoveToTargetEvent {
|
|||
|
||||
/**
|
||||
* Custom move-all-to-target event.
|
||||
* @see {@link PickListEmits['move-all-to-target']}
|
||||
* @see {@link PickListEmitsOptions['move-all-to-target']}
|
||||
* @extends PickListMoveToTargetEvent
|
||||
*/
|
||||
export interface PickListMoveAllToTargetEvent extends PickListMoveToTargetEvent {}
|
||||
|
||||
/**
|
||||
* Custom move-to-source event.
|
||||
* @see {@link PickListEmits['move-all-to-target']}
|
||||
* @see {@link PickListEmitsOptions['move-all-to-target']}
|
||||
* @extends PickListMoveToTargetEvent
|
||||
*/
|
||||
export interface PickListMoveToSourceEvent extends PickListMoveToTargetEvent {}
|
||||
|
||||
/**
|
||||
* Custom move-all-to-source event.
|
||||
* @see {@link PickListEmits['move-all-to-target']}
|
||||
* @see {@link PickListEmitsOptions['move-all-to-target']}
|
||||
* @extends PickListMoveToTargetEvent
|
||||
*/
|
||||
export interface PickListMoveAllToSourceEvent extends PickListMoveToTargetEvent {}
|
||||
|
@ -544,7 +544,7 @@ export interface PickListSlots {
|
|||
/**
|
||||
* Defines valid emits in PickList component.
|
||||
*/
|
||||
interface PickListEmitsOptions {
|
||||
export interface PickListEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -203,7 +203,7 @@ export interface PopoverSlots {
|
|||
/**
|
||||
* Defines valid emits in Popover component.
|
||||
*/
|
||||
interface PopoverEmitsOptions {
|
||||
export interface PopoverEmitsOptions {
|
||||
/**
|
||||
* Callback to invoke when the overlay is shown.
|
||||
*/
|
||||
|
|
|
@ -123,7 +123,7 @@ export interface ProgressBarSlots {
|
|||
/**
|
||||
* Defines valid emits in ProgressBar component.
|
||||
*/
|
||||
interface ProgressBarEmitsOptions {}
|
||||
export interface ProgressBarEmitsOptions {}
|
||||
|
||||
export declare type ProgressBarEmits = EmitFn<ProgressBarEmitsOptions>;
|
||||
|
||||
|
|
|
@ -117,7 +117,7 @@ export interface ProgressSpinnerSlots {}
|
|||
/**
|
||||
* Defines valid emits in ProgressSpinner component.
|
||||
*/
|
||||
interface ProgressSpinnerEmitsOptions {}
|
||||
export interface ProgressSpinnerEmitsOptions {}
|
||||
|
||||
export declare type ProgressSpinnerEmits = EmitFn<ProgressSpinnerEmitsOptions>;
|
||||
|
||||
|
|
|
@ -196,7 +196,7 @@ export interface RadioButtonSlots {}
|
|||
/**
|
||||
* Defines valid emits in RadioButton component.
|
||||
*/
|
||||
interface RadioButtonEmitsOptions {
|
||||
export interface RadioButtonEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -123,7 +123,7 @@ export interface RatingContext {
|
|||
|
||||
/**
|
||||
* Custom change event.
|
||||
* @see {@link RatingEmits.change}
|
||||
* @see {@link RatingEmitsOptions.change}
|
||||
*/
|
||||
export interface RatingChangeEvent {
|
||||
/**
|
||||
|
@ -231,7 +231,7 @@ export interface RatingSlots {
|
|||
/**
|
||||
* Defines valid emits in Rating component.
|
||||
*/
|
||||
interface RatingEmitsOptions {
|
||||
export interface RatingEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {number} value - New value.
|
||||
|
|
|
@ -8,14 +8,14 @@
|
|||
*
|
||||
*/
|
||||
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.
|
||||
*/
|
||||
export interface RowPassThroughMethodOptions {
|
||||
export interface RowPassThroughMethodOptions<T = any> {
|
||||
/**
|
||||
* Defines instance.
|
||||
*/
|
||||
|
@ -31,7 +31,7 @@ export interface RowPassThroughMethodOptions {
|
|||
/**
|
||||
* Defines parent options.
|
||||
*/
|
||||
parent: any;
|
||||
parent: T;
|
||||
/**
|
||||
* Defines current options.
|
||||
*/
|
||||
|
@ -46,11 +46,11 @@ export interface RowPassThroughMethodOptions {
|
|||
* Custom passthrough(pt) options.
|
||||
* @see {@link RowProps.pt}
|
||||
*/
|
||||
export interface RowPassThroughOptions {
|
||||
export interface RowPassThroughOptions<T = any> {
|
||||
/**
|
||||
* Used to pass attributes to the root's DOM element.
|
||||
*/
|
||||
root?: RowPassThroughOptionType;
|
||||
root?: RowPassThroughOptionType<T>;
|
||||
/**
|
||||
* Used to manage all lifecycle hooks.
|
||||
* @see {@link BaseComponent.ComponentHooks}
|
||||
|
@ -74,6 +74,11 @@ export interface RowProps {
|
|||
* @defaultValue false
|
||||
*/
|
||||
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.
|
||||
*/
|
||||
interface RowEmitsOptions {}
|
||||
export interface RowEmitsOptions {}
|
||||
|
||||
export declare type RowEmits = EmitFn<RowEmitsOptions>;
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ export interface ScrollPanelSlots {
|
|||
default: () => VNode[];
|
||||
}
|
||||
|
||||
interface ScrollPanelEmitsOptions {}
|
||||
export interface ScrollPanelEmitsOptions {}
|
||||
|
||||
export declare type ScrollPanelEmits = EmitFn<ScrollPanelEmitsOptions>;
|
||||
|
||||
|
|
|
@ -169,7 +169,7 @@ export interface ScrollTopSlots {
|
|||
/**
|
||||
* Defines valid emits in ScrollTop component.
|
||||
*/
|
||||
interface ScrollTopEmitsOptions {}
|
||||
export interface ScrollTopEmitsOptions {}
|
||||
|
||||
export declare type ScrollTopEmits = EmitFn<ScrollTopEmitsOptions>;
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@ export interface SelectSharedPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom change event.
|
||||
* @see {@link SelectEmits.change}
|
||||
* @see {@link SelectEmitsOptions.change}
|
||||
*/
|
||||
export interface SelectChangeEvent {
|
||||
/**
|
||||
|
@ -81,7 +81,7 @@ export interface SelectChangeEvent {
|
|||
|
||||
/**
|
||||
* Custom filter event.
|
||||
* @see {@link SelectEmits.filter}
|
||||
* @see {@link SelectEmitsOptions.filter}
|
||||
*/
|
||||
export interface SelectFilterEvent {
|
||||
/**
|
||||
|
@ -730,7 +730,7 @@ export interface SelectSlots {
|
|||
/**
|
||||
* Defines valid emits in Select component.
|
||||
*/
|
||||
interface SelectEmitsOptions {
|
||||
export interface SelectEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -78,7 +78,7 @@ export interface SelectButtonPassThroughAttributes {
|
|||
|
||||
/**
|
||||
* Custom change event.
|
||||
* @see {@link SelectButtonEmits.change}
|
||||
* @see {@link SelectButtonEmitsOptions.change}
|
||||
*/
|
||||
export interface SelectButtonChangeEvent {
|
||||
/**
|
||||
|
@ -223,7 +223,7 @@ export interface SelectButtonSlots {
|
|||
/**
|
||||
* Defines valid emits in SelectButton component.
|
||||
*/
|
||||
interface SelectButtonEmitsOptions {
|
||||
export interface SelectButtonEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
|
|
|
@ -50,7 +50,7 @@ export interface SidebarSlots extends Drawer.DrawerSlots {}
|
|||
/**
|
||||
* Defines valid emits in Sidebar component.
|
||||
*/
|
||||
interface SidebarEmitsOptions {}
|
||||
export interface SidebarEmitsOptions {}
|
||||
|
||||
export declare type SidebarEmits = EmitFn<SidebarEmitsOptions> & Drawer.DrawerEmits;
|
||||
|
||||
|
|
|
@ -123,7 +123,7 @@ export interface SkeletonSlots {}
|
|||
/**
|
||||
* Defines valid emits in Skeleton component.
|
||||
*/
|
||||
interface SkeletonEmitsOptions {}
|
||||
export interface SkeletonEmitsOptions {}
|
||||
|
||||
export declare type SkeletonEmits = EmitFn<SkeletonEmitsOptions>;
|
||||
|
||||
|
|
|
@ -80,7 +80,7 @@ export interface SliderPassThroughAttributes {
|
|||
|
||||
/**
|
||||
* Custom slide end event.
|
||||
* @see {@link SliderEmits.slideend}
|
||||
* @see {@link SliderEmitsOptions.slideend}
|
||||
*/
|
||||
export interface SliderSlideEndEvent {
|
||||
/**
|
||||
|
@ -172,7 +172,7 @@ export interface SliderSlots {}
|
|||
/**
|
||||
* Defines valid emits in Slider component.
|
||||
*/
|
||||
interface SliderEmitsOptions {
|
||||
export interface SliderEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {number | number[]} value - New value.
|
||||
|
|
|
@ -369,7 +369,7 @@ export interface SpeedDialSlots {
|
|||
/**
|
||||
* Defines valid emits in SpeedDial component.
|
||||
*/
|
||||
interface SpeedDialEmitsOptions {
|
||||
export interface SpeedDialEmitsOptions {
|
||||
/**
|
||||
* Fired when the button element clicked.
|
||||
* @param {Event} event - Browser event.
|
||||
|
|
|
@ -311,7 +311,7 @@ export interface SplitButtonSlots {
|
|||
/**
|
||||
* Defines valid emits in SplitButton component.
|
||||
*/
|
||||
interface SplitButtonEmitsOptions {
|
||||
export interface SplitButtonEmitsOptions {
|
||||
/**
|
||||
* Callback to invoke when main button is clicked.
|
||||
* @param {Event} event - Browser event.
|
||||
|
|
|
@ -50,7 +50,7 @@ export interface SplitterPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom resize start event.
|
||||
* @see {@link SplitterEmits.resizestart}
|
||||
* @see {@link SplitterEmitsOptions.resizestart}
|
||||
*/
|
||||
export interface SplitterResizeStartEvent {
|
||||
/**
|
||||
|
@ -65,7 +65,7 @@ export interface SplitterResizeStartEvent {
|
|||
|
||||
/**
|
||||
* Custom resize event.
|
||||
* @see {@link SplitterEmits.resize}
|
||||
* @see {@link SplitterEmitsOptions.resize}
|
||||
*/
|
||||
export interface SplitterResizeEvent {
|
||||
/**
|
||||
|
@ -80,7 +80,7 @@ export interface SplitterResizeEvent {
|
|||
|
||||
/**
|
||||
* Custom resize end event.
|
||||
* @see {@link SplitterEmits.resizeend}
|
||||
* @see {@link SplitterEmitsOptions.resizeend}
|
||||
*/
|
||||
export interface SplitterResizeEndEvent {
|
||||
/**
|
||||
|
@ -206,7 +206,7 @@ export interface SplitterSlots {
|
|||
/**
|
||||
* Defines valid emits in Splitter component.
|
||||
*/
|
||||
interface SplitterEmitsOptions {
|
||||
export interface SplitterEmitsOptions {
|
||||
/**
|
||||
* Callback to invoke when resize starts.
|
||||
* @param {SplitterResizeStartEvent} event - Custom resize start event.
|
||||
|
|
|
@ -46,7 +46,7 @@ export interface SplitterPanelPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom passthrough(pt) options.
|
||||
* @see {@link PanelProps.pt}
|
||||
* @see {@link SplitterPanelProps.pt}
|
||||
*/
|
||||
export interface SplitterPanelPassThroughOptions {
|
||||
/**
|
||||
|
@ -120,7 +120,7 @@ export interface SplitterPanelSlots {
|
|||
default: () => VNode[];
|
||||
}
|
||||
|
||||
interface SplitterPanelEmitsOptions {}
|
||||
export interface SplitterPanelEmitsOptions {}
|
||||
|
||||
export declare type SplitterPanelEmits = EmitFn<SplitterPanelEmitsOptions>;
|
||||
|
||||
|
|
|
@ -96,7 +96,7 @@ export interface StepperState {
|
|||
|
||||
/**
|
||||
* Custom tab change event.
|
||||
* @see {@link StepperEmits['step-change']}
|
||||
* @see {@link StepperEmitsOptions['step-change']}
|
||||
*/
|
||||
export interface StepperChangeEvent {
|
||||
/**
|
||||
|
@ -166,7 +166,7 @@ export interface StepperSlots {
|
|||
/**
|
||||
* Defines valid emits in Stepper component.
|
||||
*/
|
||||
interface StepperEmitsOptions {
|
||||
export interface StepperEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {number | number[]} value - New value.
|
||||
|
|
|
@ -261,7 +261,7 @@ export interface StepperPanelSlots {
|
|||
}): VNode[];
|
||||
}
|
||||
|
||||
interface StepperPanelEmitsOptions {}
|
||||
export interface StepperPanelEmitsOptions {}
|
||||
|
||||
export declare type StepperPanelEmits = EmitFn<StepperPanelEmitsOptions>;
|
||||
|
||||
|
|
|
@ -214,7 +214,7 @@ export interface StepsSlots {
|
|||
/**
|
||||
* Defines valid emits in Steps component.
|
||||
*/
|
||||
interface StepsEmitsOptions {}
|
||||
export interface StepsEmitsOptions {}
|
||||
|
||||
export declare type StepsEmits = EmitFn<StepsEmitsOptions>;
|
||||
|
||||
|
|
|
@ -123,7 +123,7 @@ export interface TabSlots {
|
|||
default(): VNode[];
|
||||
}
|
||||
|
||||
interface TabEmitsOptions {}
|
||||
export interface TabEmitsOptions {}
|
||||
|
||||
export declare type TabEmits = EmitFn<TabEmitsOptions>;
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
import { VNode } from 'vue';
|
||||
import { ComponentHooks } from '../basecomponent';
|
||||
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;
|
||||
|
||||
|
@ -117,7 +117,7 @@ export interface TabListSlots {
|
|||
default(): VNode[];
|
||||
}
|
||||
|
||||
interface TabListEmitsOptions {}
|
||||
export interface TabListEmitsOptions {}
|
||||
|
||||
export declare type TabListEmits = EmitFn<TabListEmitsOptions>;
|
||||
|
||||
|
|
|
@ -123,7 +123,7 @@ export interface TabMenuContext {
|
|||
|
||||
/**
|
||||
* Custom change event.
|
||||
* @see {@link TabMenuEmits['tab-change']}
|
||||
* @see {@link TabMenuEmitsOptions['tab-change']}
|
||||
*/
|
||||
export interface TabMenuChangeEvent {
|
||||
/**
|
||||
|
@ -251,7 +251,7 @@ export interface TabMenuSlots {
|
|||
/**
|
||||
* Defines valid emits in TabMenu component.
|
||||
*/
|
||||
interface TabMenuEmitsOptions {
|
||||
export interface TabMenuEmitsOptions {
|
||||
/**
|
||||
* Callback to invoke when an active tab is changed.
|
||||
* @param {TabMenuChangeEvent} event - Custom tab change event.
|
||||
|
|
|
@ -209,7 +209,7 @@ export interface TabPanelSlots {
|
|||
header(): VNode[];
|
||||
}
|
||||
|
||||
interface TabPanelEmitsOptions {}
|
||||
export interface TabPanelEmitsOptions {}
|
||||
|
||||
export declare type TabPanelEmits = EmitFn<TabPanelEmitsOptions>;
|
||||
|
||||
|
|
|
@ -101,7 +101,7 @@ export interface TabPanelsSlots {
|
|||
default(): VNode[];
|
||||
}
|
||||
|
||||
interface TabPanelsEmitsOptions {}
|
||||
export interface TabPanelsEmitsOptions {}
|
||||
|
||||
export declare type TabPanelsEmits = EmitFn<TabPanelsEmitsOptions>;
|
||||
|
||||
|
|
|
@ -156,7 +156,7 @@ export interface TabsSlots {
|
|||
/**
|
||||
* Defines valid emits in Tabs component.
|
||||
*/
|
||||
interface TabsEmitsOptions {
|
||||
export interface TabsEmitsOptions {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {string} value - Current value.
|
||||
|
|
|
@ -48,7 +48,7 @@ export interface TabViewPassThroughMethodOptions {
|
|||
|
||||
/**
|
||||
* Custom tab change event.
|
||||
* @see {@link TabViewEmits['tab-change']}
|
||||
* @see {@link TabViewEmitsOptions['tab-change']}
|
||||
*/
|
||||
export interface TabViewChangeEvent {
|
||||
/**
|
||||
|
@ -63,7 +63,7 @@ export interface TabViewChangeEvent {
|
|||
|
||||
/**
|
||||
* Custom tab change event.
|
||||
* @see {@link TabViewEmits['tab-click']}
|
||||
* @see {@link TabViewEmitsOptions['tab-click']}
|
||||
* @extends TabViewChangeEvent
|
||||
*/
|
||||
export interface TabViewClickEvent extends TabViewChangeEvent {}
|
||||
|
@ -251,7 +251,7 @@ export interface TabViewSlots {
|
|||
/**
|
||||
* Defines valid emits in TabView component.
|
||||
*/
|
||||
interface TabViewEmitsOptions {
|
||||
export interface TabViewEmitsOptions {
|
||||
/**
|
||||
* Emitted when the activeIndex changes.
|
||||
* @param {number} index - Current activeIndex.
|
||||
|
|
|
@ -131,7 +131,7 @@ export interface TagSlots {
|
|||
/**
|
||||
* Defines valid emits in Tag component.
|
||||
*/
|
||||
interface TagEmitsOptions {}
|
||||
export interface TagEmitsOptions {}
|
||||
|
||||
export declare type TagEmits = EmitFn<TagEmitsOptions>;
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue