diff --git a/components/lib/scrollpanel/style/ScrollPanelStyle.js b/components/lib/scrollpanel/style/ScrollPanelStyle.js
index 8cb578fd6..a979cbf59 100644
--- a/components/lib/scrollpanel/style/ScrollPanelStyle.js
+++ b/components/lib/scrollpanel/style/ScrollPanelStyle.js
@@ -16,7 +16,7 @@ const css = `
width: calc(100% + 18px);
padding: 0 18px 18px 0;
position: relative;
- overflow: scroll;
+ overflow: auto;
box-sizing: border-box;
scrollbar-width: none;
}
diff --git a/components/lib/splitter/Splitter.d.ts b/components/lib/splitter/Splitter.d.ts
index b9f1e0ccf..a308cae67 100644
--- a/components/lib/splitter/Splitter.d.ts
+++ b/components/lib/splitter/Splitter.d.ts
@@ -55,6 +55,21 @@ export interface SplitterResizeStartEvent {
sizes: number[];
}
+/**
+ * Custom resize event.
+ * @see {@link SplitterEmits.resize}
+ */
+export interface SplitterResizeEvent {
+ /**
+ * Browser event
+ */
+ originalEvent: Event;
+ /**
+ * Sizes of the panels
+ */
+ sizes: number[];
+}
+
/**
* Custom resize end event.
* @see {@link SplitterEmits.resizeend}
@@ -185,6 +200,11 @@ export interface SplitterEmits {
* @param {SplitterResizeStartEvent} event - Custom resize start event.
*/
resizestart(event: SplitterResizeStartEvent): void;
+ /**
+ * Callback to invoke during the resizing process.
+ * @param {SplitterResizeEvent} event - Custom resize event.
+ */
+ resize(event: SplitterResizeEvent): void;
/**
* Callback to invoke when resize ends.
* @param {SplitterResizeEndEvent} event - Custom resize end event.
diff --git a/components/lib/splitter/Splitter.vue b/components/lib/splitter/Splitter.vue
index 4d3a5a9ea..48693d4dc 100644
--- a/components/lib/splitter/Splitter.vue
+++ b/components/lib/splitter/Splitter.vue
@@ -28,7 +28,7 @@ import BaseSplitter from './BaseSplitter.vue';
export default {
name: 'Splitter',
extends: BaseSplitter,
- emits: ['resizestart', 'resizeend'],
+ emits: ['resizestart', 'resizeend', 'resize'],
dragging: false,
mouseMoveListener: null,
mouseUpListener: null,
@@ -141,6 +141,8 @@ export default {
this.panelSizes[this.prevPanelIndex] = newPrevPanelSize;
this.panelSizes[this.prevPanelIndex + 1] = newNextPanelSize;
}
+
+ this.$emit('resize', { originalEvent: event, sizes: this.panelSizes });
},
onResizeEnd(event) {
if (this.isStateful()) {
diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json
index eb551eec0..3f6004ccd 100644
--- a/doc/common/apidoc/index.json
+++ b/doc/common/apidoc/index.json
@@ -748,7 +748,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t index: number, // Index of the tab\n \t isTabActive: (index: number) ⇒ void, // Whether the tab is active\n}",
+ "type": "{\n \t index: number, // Index of the tab\n \t isTabActive: (index: number) ⇒ void, // Whether the tab is active\n}",
"description": "header slot's params."
}
],
@@ -3660,7 +3660,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // A value in the selection\n }",
+ "type": "{\n \t value: any, // A value in the selection\n }",
"description": "chip slot's params."
}
],
@@ -3673,7 +3673,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Value of the component\n \t suggestions: any, // Displayed options\n }",
+ "type": "{\n \t value: any, // Value of the component\n \t suggestions: any, // Displayed options\n }",
"description": "header slot's params."
}
],
@@ -3686,7 +3686,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Value of the component\n \t suggestions: any, // Displayed options\n }",
+ "type": "{\n \t value: any, // Value of the component\n \t suggestions: any, // Displayed options\n }",
"description": "footer slot's params."
}
],
@@ -3699,7 +3699,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: any, // Option instance\n \t index: number, // Index of the option\n }",
+ "type": "{\n \t item: any, // Option instance\n \t index: number, // Index of the option\n }",
"description": "item slot's params."
}
],
@@ -3713,7 +3713,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
+ "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
"description": "option slot's params."
}
],
@@ -3726,7 +3726,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: any, // undefined\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
+ "type": "{\n \t item: any, // undefined\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
"description": "option group slot's params."
}
],
@@ -3739,7 +3739,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t items: any, // An array of objects to display for virtualscroller\n \t styleClass: string, // Style class of the component\n \t contentRef: (el: any) ⇒ void, // Referance of the content\n\t getItemOptions: (index: number) ⇒ VirtualScrollerItemOptions, // Options of the items\n}",
+ "type": "{\n \t items: any, // An array of objects to display for virtualscroller\n \t styleClass: string, // Style class of the component\n \t contentRef: (el: any) ⇒ void, // Referance of the content\n\t getItemOptions: (index: number) ⇒ VirtualScrollerItemOptions, // Options of the items\n}",
"description": "content slot's params."
}
],
@@ -3752,7 +3752,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t options: any, // Options of the loader items for virtualscroller\n }",
+ "type": "{\n \t options: any, // Options of the loader items for virtualscroller\n }",
"description": "loader slot's params."
}
],
@@ -3771,7 +3771,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n }"
+ "type": "{\n \t class: string, // Style class of the icon.\n }"
}
],
"returnType": "VNode[]",
@@ -3783,7 +3783,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n \t index: number, // Index of the token.\n \t onClick: (event: Event, index: number) ⇒ void, // Remove token icon function.\n}"
+ "type": "{\n \t class: string, // Style class of the icon.\n \t index: number, // Index of the token.\n \t onClick: (event: Event, index: number) ⇒ void, // Remove token icon function.\n}"
}
],
"returnType": "VNode[]",
@@ -3795,7 +3795,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the loading icon.\n }"
+ "type": "{\n \t class: string, // Style class of the loading icon.\n }"
}
],
"returnType": "VNode[]",
@@ -6019,7 +6019,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: BreadcrumbRouterBindProps, // Binding properties of the menuitem\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: BreadcrumbRouterBindProps, // Binding properties of the menuitem\n }",
"description": "item slot's params."
}
],
@@ -6038,7 +6038,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
"description": "item icon slot's params."
}
],
@@ -6463,7 +6463,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t class: string, // Style class of the icon.\n }",
"description": "icon slot's params."
}
],
@@ -6476,7 +6476,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the loading icon.\n }",
+ "type": "{\n \t class: string, // Style class of the loading icon.\n }",
"description": "loading icon slot's params."
}
],
@@ -7835,7 +7835,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t date: undefined, // Value of the component.\n }"
+ "type": "{\n \t date: undefined, // Value of the component.\n }"
}
],
"returnType": "VNode[]",
@@ -7847,7 +7847,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t years: undefined, // An array containing the start and and year of a decade to display at header of the year picker.\n }"
+ "type": "{\n \t years: undefined, // An array containing the start and and year of a decade to display at header of the year picker.\n }"
}
],
"returnType": "VNode[]",
@@ -7859,7 +7859,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the dropdown icon\n }",
+ "type": "{\n \t class: any, // Style class of the dropdown icon\n }",
"description": "dropdown icon slot's params."
}
],
@@ -7872,7 +7872,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the previous icon\n }",
+ "type": "{\n \t class: any, // Style class of the previous icon\n }",
"description": "previous icon slot's params."
}
],
@@ -7885,7 +7885,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the next icon\n }",
+ "type": "{\n \t class: any, // Style class of the next icon\n }",
"description": "next icon slot's params."
}
],
@@ -7898,7 +7898,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the increment icon\n }",
+ "type": "{\n \t class: any, // Style class of the increment icon\n }",
"description": "increment icon slot's params."
}
],
@@ -7911,7 +7911,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the decrement icon\n }",
+ "type": "{\n \t class: any, // Style class of the decrement icon\n }",
"description": "decrement icon slot's params."
}
],
@@ -8916,7 +8916,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t data: any, // Data of the component\n \t index: number, // Index of the item\n }",
+ "type": "{\n \t data: any, // Data of the component\n \t index: number, // Index of the item\n }",
"description": "item slot's params."
}
],
@@ -9678,7 +9678,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t option: any, // Option instance\n }",
+ "type": "{\n \t option: any, // Option instance\n }",
"description": "option slot's params."
}
],
@@ -9691,7 +9691,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Value of the component\n \t placeholder: string, // Placeholder text to show\n }",
+ "type": "{\n \t value: any, // Value of the component\n \t placeholder: string, // Placeholder text to show\n }",
"description": "value slot's params."
}
],
@@ -10598,7 +10598,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t checked: boolean, // State of the checkbox.\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t checked: boolean, // State of the checkbox.\n \t class: string, // Style class of the icon.\n }",
"description": "icon slot's params."
}
],
@@ -10971,7 +10971,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t onClick: (event: Event) ⇒ void, // Remove icon click event\n\t onKeydown: (event: Event) ⇒ void, // Remove icon keydown event\n}",
+ "type": "{\n \t onClick: (event: Event) ⇒ void, // Remove icon click event\n\t onKeydown: (event: Event) ⇒ void, // Remove icon keydown event\n}",
"description": "remove icon slot's params."
}
],
@@ -11453,7 +11453,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Value of the component\n }",
+ "type": "{\n \t value: any, // Value of the component\n }",
"description": "chip slot's params."
}
],
@@ -11466,7 +11466,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n \t index: number, // Index of the token.\n \t onClick: (event: Event, index: number) ⇒ void, // Remove token icon function.\n}",
+ "type": "{\n \t class: string, // Style class of the icon.\n \t index: number, // Index of the token.\n \t onClick: (event: Event, index: number) ⇒ void, // Remove token icon function.\n}",
"description": "remove token icon slot's params."
}
],
@@ -13283,7 +13283,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t data: any, // Row data.\n \t node: any, // Row node data.\n \t column: ColumnNode, // Column node.\n \t field: string, // Column field.\n \t index: number, // Row index.\n \t frozenRow: boolean, // Whether the row is frozen.\n \t editorInitCallback: (event: Event) ⇒ void, // Callback function\n}",
+ "type": "{\n \t data: any, // Row data.\n \t node: any, // Row node data.\n \t column: ColumnNode, // Column node.\n \t field: string, // Column field.\n \t index: number, // Row index.\n \t frozenRow: boolean, // Whether the row is frozen.\n \t editorInitCallback: (event: Event) ⇒ void, // Callback function\n}",
"description": "body slot's params."
}
],
@@ -13296,7 +13296,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t column: ColumnNode, // Column node.\n }",
+ "type": "{\n \t column: ColumnNode, // Column node.\n }",
"description": "header slot's params."
}
],
@@ -13309,7 +13309,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t column: ColumnNode, // Column node.\n }",
+ "type": "{\n \t column: ColumnNode, // Column node.\n }",
"description": "footer slot's params."
}
],
@@ -13322,7 +13322,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t data: any, // Row data.\n \t column: ColumnNode, // Column node.\n \t field: string, // Column field.\n \t index: number, // Row index.\n \t frozenRow: boolean, // Whether the row is frozen.\n \t editorSaveCallback: (event: Event) ⇒ void, // Callback function\n\t editorCancelCallback: (event: Event) ⇒ void, // Callback function\n}",
+ "type": "{\n \t data: any, // Row data.\n \t column: ColumnNode, // Column node.\n \t field: string, // Column field.\n \t index: number, // Row index.\n \t frozenRow: boolean, // Whether the row is frozen.\n \t editorSaveCallback: (event: Event) ⇒ void, // Callback function\n\t editorCancelCallback: (event: Event) ⇒ void, // Callback function\n}",
"description": "editor slot's params."
}
],
@@ -13335,7 +13335,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t field: string, // Column field.\n \t filterModel: ColumnFilterModelType, // Filter metadata\n \t filterCallback: () ⇒ void, // Callback function\n\t applyFilter: () ⇒ void, // Callback function (closes the overlay)\n}",
+ "type": "{\n \t field: string, // Column field.\n \t filterModel: ColumnFilterModelType, // Filter metadata\n \t filterCallback: () ⇒ void, // Callback function\n\t applyFilter: () ⇒ void, // Callback function (closes the overlay)\n}",
"description": "filter slot's params."
}
],
@@ -13348,7 +13348,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t field: string, // Column field.\n \t filterModel: ColumnFilterModelType, // Filter metadata\n \t filterCallback: () ⇒ void, // Callback function\n}",
+ "type": "{\n \t field: string, // Column field.\n \t filterModel: ColumnFilterModelType, // Filter metadata\n \t filterCallback: () ⇒ void, // Callback function\n}",
"description": "filter header slot's params."
}
],
@@ -13361,7 +13361,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t field: string, // Column field.\n \t filterModel: ColumnFilterModelType, // Filter metadata\n \t filterCallback: () ⇒ void, // Callback function\n}",
+ "type": "{\n \t field: string, // Column field.\n \t filterModel: ColumnFilterModelType, // Filter metadata\n \t filterCallback: () ⇒ void, // Callback function\n}",
"description": "filter footer slot's params."
}
],
@@ -13374,7 +13374,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t field: string, // Column field.\n \t filterModel: ColumnFilterModelType, // Filter metadata\n \t filterCallback: () ⇒ void, // Callback function\n}",
+ "type": "{\n \t field: string, // Column field.\n \t filterModel: ColumnFilterModelType, // Filter metadata\n \t filterCallback: () ⇒ void, // Callback function\n}",
"description": "filter clear slot's params."
}
],
@@ -13387,7 +13387,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t field: string, // Column field.\n \t filterModel: ColumnFilterModelType, // Filter metadata\n \t filterCallback: () ⇒ void, // Callback function\n}",
+ "type": "{\n \t field: string, // Column field.\n \t filterModel: ColumnFilterModelType, // Filter metadata\n \t filterCallback: () ⇒ void, // Callback function\n}",
"description": "filter apply slot's params."
}
],
@@ -13400,7 +13400,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t data: any, // Row data.\n \t column: ColumnNode, // Column node.\n \t field: string, // Column field.\n \t index: number, // Row index.\n \t frozenRow: boolean, // Whether the row is frozen.\n \t loadingOptions: ColumnLoadingOptions, // Loading options.\n }",
+ "type": "{\n \t data: any, // Row data.\n \t column: ColumnNode, // Column node.\n \t field: string, // Column field.\n \t index: number, // Row index.\n \t frozenRow: boolean, // Whether the row is frozen.\n \t loadingOptions: ColumnLoadingOptions, // Loading options.\n }",
"description": "loading slot's params."
}
],
@@ -13413,7 +13413,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the row toggler icon.\n \t rowExpanded: boolean, // Current row expanded state.\n }",
+ "type": "{\n \t class: string, // Style class of the row toggler icon.\n \t rowExpanded: boolean, // Current row expanded state.\n }",
"description": "row toggler icon slot's params."
}
],
@@ -13426,7 +13426,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t checked: boolean, // Current check state.\n }",
+ "type": "{\n \t checked: boolean, // Current check state.\n }",
"description": "header row icon slot's params."
}
],
@@ -13481,7 +13481,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t sorted: boolean, // Current sort state.\n \t sortOrder: number, // Current sort order state.\n }",
+ "type": "{\n \t sorted: boolean, // Current sort state.\n \t sortOrder: number, // Current sort order state.\n }",
"description": "sort icon slot's params."
}
],
@@ -13494,7 +13494,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t checked: boolean, // Current check state.\n }",
+ "type": "{\n \t checked: boolean, // Current check state.\n }",
"description": "header checkbox icon slot's params."
}
],
@@ -15911,7 +15911,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t message: ConfirmationOptions, // Message of the component\n }",
+ "type": "{\n \t message: ConfirmationOptions, // Message of the component\n }",
"description": "message slot's params."
}
],
@@ -15924,7 +15924,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the icon template\n }",
+ "type": "{\n \t class: any, // Style class of the icon template\n }",
"description": "icon slot's params."
}
],
@@ -15949,7 +15949,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t message: any, // Message of the component\n \t onClose: () ⇒ void, // Close dialog function.\n\t onAccept: () ⇒ void, // Accept function of the component\n\t onReject: () ⇒ void, // Reject function of the component\n}",
+ "type": "{\n \t message: any, // Message of the component\n \t onClose: () ⇒ void, // Close dialog function.\n\t onAccept: () ⇒ void, // Accept function of the component\n\t onReject: () ⇒ void, // Reject function of the component\n}",
"description": "container slot's params."
}
],
@@ -16255,7 +16255,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t message: ConfirmationOptions, // Message of the component\n }",
+ "type": "{\n \t message: ConfirmationOptions, // Message of the component\n }",
"description": "message slot's params."
}
],
@@ -16268,7 +16268,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the icon template\n }",
+ "type": "{\n \t class: any, // Style class of the icon template\n }",
"description": "icon slot's params."
}
],
@@ -16293,7 +16293,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t message: any, // Message of the component\n \t onAccept: () ⇒ void, // Accept function of the component\n\t onReject: () ⇒ void, // Reject function of the component\n}",
+ "type": "{\n \t message: any, // Message of the component\n \t onAccept: () ⇒ void, // Accept function of the component\n\t onReject: () ⇒ void, // Reject function of the component\n}",
"description": "container slot's params."
}
],
@@ -16870,7 +16870,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: ContextMenuRouterBindProps, // Binding properties of the menuitem\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: ContextMenuRouterBindProps, // Binding properties of the menuitem\n }",
"description": "item slot's params."
}
],
@@ -16883,7 +16883,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
"description": "item icon slot's params."
}
],
@@ -16896,7 +16896,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t active: boolean, // Whether item is active\n }",
+ "type": "{\n \t active: boolean, // Whether item is active\n }",
"description": "submenuicon slot's params."
}
],
@@ -19305,7 +19305,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t data: any, // Row data\n \t index: number, // Row index\n }",
+ "type": "{\n \t data: any, // Row data\n \t index: number, // Row index\n }",
"description": "group header slot's params."
}
],
@@ -19318,7 +19318,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t data: any, // Row data\n \t index: number, // Row index\n }",
+ "type": "{\n \t data: any, // Row data\n \t index: number, // Row index\n }",
"description": "group footer slot's params."
}
],
@@ -19337,7 +19337,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t data: any, // Row data\n \t index: number, // Row index\n }",
+ "type": "{\n \t data: any, // Row data\n \t index: number, // Row index\n }",
"description": "expansion slot's params."
}
],
@@ -19368,7 +19368,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t expanded: boolean, // Current rowgroup's expanded state.\n }",
+ "type": "{\n \t expanded: boolean, // Current rowgroup's expanded state.\n }",
"description": "rowgroup toggler icon slot's params."
}
],
@@ -19381,7 +19381,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the paginator first page link icon.\n }"
+ "type": "{\n \t class: string, // Style class of the paginator first page link icon.\n }"
}
],
"returnType": "VNode[]",
@@ -19393,7 +19393,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the paginator prev page link icon.\n }"
+ "type": "{\n \t class: string, // Style class of the paginator prev page link icon.\n }"
}
],
"returnType": "VNode[]",
@@ -19405,7 +19405,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the paginator next page link icon.\n }"
+ "type": "{\n \t class: string, // Style class of the paginator next page link icon.\n }"
}
],
"returnType": "VNode[]",
@@ -19417,7 +19417,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the paginator last page link icon.\n }"
+ "type": "{\n \t class: string, // Style class of the paginator last page link icon.\n }"
}
],
"returnType": "VNode[]",
@@ -19429,7 +19429,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the paginator rows per page dropdown icon.\n }",
+ "type": "{\n \t class: string, // Style class of the paginator rows per page dropdown icon.\n }",
"description": "paginatorrowsperpagedropdownicon's params."
}
],
@@ -19442,7 +19442,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the paginator jump to page dropdown icon.\n }",
+ "type": "{\n \t class: string, // Style class of the paginator jump to page dropdown icon.\n }",
"description": "paginatorjumptopagedropdownicon's params."
}
],
@@ -20434,7 +20434,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t data: any, // Value of the component\n \t index: number, // Index of the grid\n }",
+ "type": "{\n \t data: any, // Value of the component\n \t index: number, // Index of the grid\n }",
"description": "list slot's params."
}
],
@@ -20447,7 +20447,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t data: any, // Value of the component\n \t index: number, // Index of the grid\n }",
+ "type": "{\n \t data: any, // Value of the component\n \t index: number, // Index of the grid\n }",
"description": "list slot's params."
}
],
@@ -21596,7 +21596,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the close icon\n }",
+ "type": "{\n \t class: any, // Style class of the close icon\n }",
"description": "close icon slot's params."
}
],
@@ -21609,7 +21609,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t maximized: boolean, // Maximized state as a boolean\n \t class: any, // Style class of the maximize icon\n }",
+ "type": "{\n \t maximized: boolean, // Maximized state as a boolean\n \t class: any, // Style class of the maximize icon\n }",
"description": "maximize icon slot's params."
}
],
@@ -21622,7 +21622,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t onClose: () ⇒ void, // Close dialog function.\n\t onMaximize: (event: Event) ⇒ void, // Maximize/minimize dialog function.\n}",
+ "type": "{\n \t onClose: () ⇒ void, // Close dialog function.\n\t onMaximize: (event: Event) ⇒ void, // Maximize/minimize dialog function.\n}",
"description": "container slot's params."
}
],
@@ -22444,7 +22444,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Custom content for item.\n \t index: number, // Index of the menuitem\n \t label: undefined, // Label property of the menuitem\n \t props: DockRouterBindProps, // Binding properties of the menuitem\n }",
+ "type": "{\n \t item: MenuItem, // Custom content for item.\n \t index: number, // Index of the menuitem\n \t label: undefined, // Label property of the menuitem\n \t props: DockRouterBindProps, // Binding properties of the menuitem\n }",
"description": "item slot's params."
}
],
@@ -22457,7 +22457,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Custom content for icon.\n }",
+ "type": "{\n \t item: MenuItem, // Custom content for icon.\n }",
"description": "icon slot's params."
}
],
@@ -23376,7 +23376,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Value of the component\n \t placeholder: string, // Placeholder prop value\n }",
+ "type": "{\n \t value: any, // Value of the component\n \t placeholder: string, // Placeholder prop value\n }",
"description": "value slot's params."
}
],
@@ -23396,7 +23396,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Value of the component\n \t options: any, // Displayed options\n }",
+ "type": "{\n \t value: any, // Value of the component\n \t options: any, // Displayed options\n }",
"description": "header slot's params."
}
],
@@ -23409,7 +23409,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Value of the component\n \t options: any, // Displayed options\n }",
+ "type": "{\n \t value: any, // Value of the component\n \t options: any, // Displayed options\n }",
"description": "footer slot's params."
}
],
@@ -23422,7 +23422,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
+ "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
"description": "option slot's params."
}
],
@@ -23435,7 +23435,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
+ "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
"description": "option group slot's params."
}
],
@@ -23460,7 +23460,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t items: any, // An array of objects to display for virtualscroller\n \t styleClass: string, // Style class of the component\n \t contentRef: (el: any) ⇒ void, // Referance of the content\n\t getItemOptions: (index: number) ⇒ VirtualScrollerItemOptions, // Options of the items\n}",
+ "type": "{\n \t items: any, // An array of objects to display for virtualscroller\n \t styleClass: string, // Style class of the component\n \t contentRef: (el: any) ⇒ void, // Referance of the content\n\t getItemOptions: (index: number) ⇒ VirtualScrollerItemOptions, // Options of the items\n}",
"description": "content slot's params."
}
],
@@ -23473,7 +23473,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t options: any, // Options of the loader items for virtualscroller\n }",
+ "type": "{\n \t options: any, // Options of the loader items for virtualscroller\n }",
"description": "loader slot's params."
}
],
@@ -23486,7 +23486,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the clear icon\n \t onClick: (event: Event) ⇒ void, // Clear icon click function.\n}",
+ "type": "{\n \t class: any, // Style class of the clear icon\n \t onClick: (event: Event) ⇒ void, // Clear icon click function.\n}",
"description": "clear icon slot's params."
}
],
@@ -23499,7 +23499,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the dropdown icon\n }",
+ "type": "{\n \t class: any, // Style class of the dropdown icon\n }",
"description": "dropdown icon slot's params."
}
],
@@ -23512,7 +23512,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the loading icon\n }",
+ "type": "{\n \t class: any, // Style class of the loading icon\n }",
"description": "loading icon slot's params."
}
],
@@ -23525,7 +23525,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the filter icon\n }",
+ "type": "{\n \t class: any, // Style class of the filter icon\n }",
"description": "filter icon slot's params."
}
],
@@ -25663,7 +25663,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t files: File, // Files to upload.\n \t uploadedFiles: File, // Uploaded files.\n \t chooseCallback: () ⇒ void, // Choose function\n\t uploadCallback: () ⇒ void, // Upload function\n\t clearCallback: () ⇒ void, // Clear function\n}",
+ "type": "{\n \t files: File, // Files to upload.\n \t uploadedFiles: File, // Uploaded files.\n \t chooseCallback: () ⇒ void, // Choose function\n\t uploadCallback: () ⇒ void, // Upload function\n\t clearCallback: () ⇒ void, // Clear function\n}",
"description": "header slot's params."
}
],
@@ -25676,7 +25676,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t files: File, // Files to upload.\n \t uploadedFiles: File, // Uploaded files.\n \t removeUploadedFileCallback: (index: number) ⇒ void, // Function to remove an uploaded file.\n\t removeFileCallback: (index: number) ⇒ void, // Function to remove a file.\n \t progress: number, // Uploaded progress as number.\n \t messages: undefined, // Status messages about upload process.\n }",
+ "type": "{\n \t files: File, // Files to upload.\n \t uploadedFiles: File, // Uploaded files.\n \t removeUploadedFileCallback: (index: number) ⇒ void, // Function to remove an uploaded file.\n\t removeFileCallback: (index: number) ⇒ void, // Function to remove a file.\n \t progress: number, // Uploaded progress as number.\n \t messages: undefined, // Status messages about upload process.\n }",
"description": "content slot's params."
}
],
@@ -25713,7 +25713,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t file: File, // File to upload.\n \t index: number, // The index of file\n }",
+ "type": "{\n \t file: File, // File to upload.\n \t index: number, // The index of file\n }",
"description": "fileremoveicon slot's params."
}
],
@@ -26832,7 +26832,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: any, // Item instance\n }",
+ "type": "{\n \t item: any, // Item instance\n }",
"description": "item slot's params."
}
],
@@ -26845,7 +26845,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: any, // Item instance\n }",
+ "type": "{\n \t item: any, // Item instance\n }",
"description": "caption slot's params."
}
],
@@ -26858,7 +26858,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t index: number, // Index of the indicator item\n }",
+ "type": "{\n \t index: number, // Index of the indicator item\n }",
"description": "indicator slot's params."
}
],
@@ -26871,7 +26871,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: any, // Item instance\n }",
+ "type": "{\n \t item: any, // Item instance\n }",
"description": "thumbnail slot's params."
}
],
@@ -27522,7 +27522,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the image element.\n \t style: any, // Style of the image element.\n \t onError: () ⇒ void, // Image error function.\n}",
+ "type": "{\n \t class: any, // Style class of the image element.\n \t style: any, // Style of the image element.\n \t onError: () ⇒ void, // Image error function.\n}",
"description": "image slot's params."
}
],
@@ -27535,7 +27535,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the preview image element.\n \t style: any, // Style of the preview image element.\n \t onClick: () ⇒ void, // Preview click function.\n}",
+ "type": "{\n \t class: any, // Style class of the preview image element.\n \t style: any, // Style of the preview image element.\n \t onClick: () ⇒ void, // Preview click function.\n}",
"description": "preview slot's params."
}
],
@@ -30907,7 +30907,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Value of the component\n \t options: any, // Displayed options\n }",
+ "type": "{\n \t value: any, // Value of the component\n \t options: any, // Displayed options\n }",
"description": "header slot's params."
}
],
@@ -30920,7 +30920,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Value of the component\n \t options: any, // Displayed options\n }",
+ "type": "{\n \t value: any, // Value of the component\n \t options: any, // Displayed options\n }",
"description": "footer slot's params."
}
],
@@ -30933,7 +30933,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
+ "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
"description": "option slot's params."
}
],
@@ -30946,7 +30946,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
+ "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
"description": "optiongroup slot's params."
}
],
@@ -30971,7 +30971,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t items: any, // An array of objects to display for virtualscroller\n \t styleClass: string, // Style class of the component\n \t contentRef: (el: any) ⇒ void, // Referance of the content\n\t getItemOptions: (index: number) ⇒ VirtualScrollerItemOptions, // Options of the items\n}",
+ "type": "{\n \t items: any, // An array of objects to display for virtualscroller\n \t styleClass: string, // Style class of the component\n \t contentRef: (el: any) ⇒ void, // Referance of the content\n\t getItemOptions: (index: number) ⇒ VirtualScrollerItemOptions, // Options of the items\n}",
"description": "content slot's params."
}
],
@@ -30984,7 +30984,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t options: any, // Options of the loader items for virtualscroller\n }",
+ "type": "{\n \t options: any, // Options of the loader items for virtualscroller\n }",
"description": "loader slot's params."
}
],
@@ -30997,7 +30997,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the filter icon\n }",
+ "type": "{\n \t class: any, // Style class of the filter icon\n }",
"description": "filter icon slot's params."
}
],
@@ -31626,7 +31626,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: MegaMenuRouterBindProps, // Binding properties of the menuitem\n \t hasSubmenu: boolean, // Whether or not there is a submenu\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: MegaMenuRouterBindProps, // Binding properties of the menuitem\n \t hasSubmenu: boolean, // Whether or not there is a submenu\n }",
"description": "item slot's params."
}
],
@@ -31639,7 +31639,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t active: boolean, // Whether item is active\n }",
+ "type": "{\n \t active: boolean, // Whether item is active\n }",
"description": "submenuicon slot's params."
}
],
@@ -31652,7 +31652,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
"description": "item icon slot's params."
}
],
@@ -32223,7 +32223,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: MenuRouterBindProps, // Binding properties of the menuitem\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: MenuRouterBindProps, // Binding properties of the menuitem\n }",
"description": "item slot's params."
}
],
@@ -32236,7 +32236,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
"description": "item icon slot's params."
}
],
@@ -32249,7 +32249,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t submenuheader: MenuItem, // Menuitem instance\n }",
+ "type": "{\n \t submenuheader: MenuItem, // Menuitem instance\n }",
"description": "submenuheader slot's params."
}
],
@@ -32826,7 +32826,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: MenubarRouterBindProps, // Binding properties of the menuitem\n \t root: boolean, // State of the root\n \t hasSubmenu: boolean, // Whether or not there is a submenu\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: MenubarRouterBindProps, // Binding properties of the menuitem\n \t root: boolean, // State of the root\n \t hasSubmenu: boolean, // Whether or not there is a submenu\n }",
"description": "item slot's params."
}
],
@@ -32845,7 +32845,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t root: boolean, // Whether item is root\n \t active: boolean, // Whether item is active\n }",
+ "type": "{\n \t root: boolean, // Whether item is root\n \t active: boolean, // Whether item is active\n }",
"description": "submenuicon slot's params."
}
],
@@ -32858,7 +32858,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
"description": "item icon slot's params."
}
],
@@ -33378,7 +33378,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the item icon element.\n }",
+ "type": "{\n \t class: any, // Style class of the item icon element.\n }",
"description": "messageicon slot's params."
}
],
@@ -33391,7 +33391,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the item icon element.\n }",
+ "type": "{\n \t class: any, // Style class of the item icon element.\n }",
"description": "closeicon slot's params."
}
],
@@ -33404,7 +33404,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t onClose: () ⇒ void, // Close message function.\n}",
+ "type": "{\n \t onClose: () ⇒ void, // Close message function.\n}",
"description": "container slot's params."
}
],
@@ -34490,7 +34490,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Value of the component\n \t placeholder: string, // Placeholder prop value\n }",
+ "type": "{\n \t value: any, // Value of the component\n \t placeholder: string, // Placeholder prop value\n }",
"description": "value slot's params."
}
],
@@ -34503,7 +34503,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // A value in the selection\n }",
+ "type": "{\n \t value: any, // A value in the selection\n }",
"description": "chip slot's params."
}
],
@@ -34523,7 +34523,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Value of the component\n \t options: any, // Displayed options\n }",
+ "type": "{\n \t value: any, // Value of the component\n \t options: any, // Displayed options\n }",
"description": "header slot's params."
}
],
@@ -34536,7 +34536,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Value of the component\n \t options: any, // Displayed options\n }",
+ "type": "{\n \t value: any, // Value of the component\n \t options: any, // Displayed options\n }",
"description": "footer slot's params."
}
],
@@ -34549,7 +34549,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
+ "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
"description": "option slot's params."
}
],
@@ -34562,7 +34562,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
+ "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
"description": "option group slot's params."
}
],
@@ -34587,7 +34587,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t items: any, // An array of objects to display for virtualscroller\n \t styleClass: string, // Style class of the component\n \t contentRef: (el: any) ⇒ void, // Referance of the content\n\t getItemOptions: (index: number) ⇒ VirtualScrollerItemOptions, // Options of the items\n}",
+ "type": "{\n \t items: any, // An array of objects to display for virtualscroller\n \t styleClass: string, // Style class of the component\n \t contentRef: (el: any) ⇒ void, // Referance of the content\n\t getItemOptions: (index: number) ⇒ VirtualScrollerItemOptions, // Options of the items\n}",
"description": "content slot's params."
}
],
@@ -34600,7 +34600,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t options: any, // Options of the loader items for virtualscroller\n }",
+ "type": "{\n \t options: any, // Options of the loader items for virtualscroller\n }",
"description": "loader slot's params."
}
],
@@ -34613,7 +34613,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the loading icon.\n \t item: any, // Item of the token.\n \t onClick: (event: Event, item: any) ⇒ void, // Remove token icon function.\n}",
+ "type": "{\n \t class: string, // Style class of the loading icon.\n \t item: any, // Item of the token.\n \t onClick: (event: Event, item: any) ⇒ void, // Remove token icon function.\n}",
"description": "removetokenicon slot's params."
}
],
@@ -34626,7 +34626,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t allSelected: boolean, // Options of the loader items for virtualscroller\n \t class: string, // Style class of the loading icon.\n }",
+ "type": "{\n \t allSelected: boolean, // Options of the loader items for virtualscroller\n \t class: string, // Style class of the loading icon.\n }",
"description": "header checkbox icon slot's params."
}
],
@@ -34639,7 +34639,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the loading icon.\n }",
+ "type": "{\n \t class: string, // Style class of the loading icon.\n }",
"description": "filtericon slot's params."
}
],
@@ -34652,7 +34652,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the loading icon.\n }",
+ "type": "{\n \t class: string, // Style class of the loading icon.\n }",
"description": "closeicon slot's params."
}
],
@@ -34665,7 +34665,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t selected: boolean, // Options of the loader items for virtualscroller\n \t class: string, // Style class of the loading icon.\n }",
+ "type": "{\n \t selected: boolean, // Options of the loader items for virtualscroller\n \t class: string, // Style class of the loading icon.\n }",
"description": "itemcheckboxicon slot's params."
}
],
@@ -34678,7 +34678,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the loading icon.\n }",
+ "type": "{\n \t class: string, // Style class of the loading icon.\n }",
"description": "loading icon slot's params."
}
],
@@ -34691,7 +34691,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the loading icon.\n }",
+ "type": "{\n \t class: string, // Style class of the loading icon.\n }",
"description": "dropdownicon slot's params."
}
],
@@ -35354,7 +35354,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: any, // Item of the component\n \t index: number, // Index of the item.\n }",
+ "type": "{\n \t item: any, // Item of the component\n \t index: number, // Index of the item.\n }",
"description": "item slot's params."
}
],
@@ -35991,7 +35991,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t expanded: boolean, // Curent state of the node\n }",
+ "type": "{\n \t expanded: boolean, // Curent state of the node\n }",
"description": "togglericon slot's params."
}
],
@@ -36979,7 +36979,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t state: PageState, // Current state\n }",
+ "type": "{\n \t state: PageState, // Current state\n }",
"description": "start slot's params."
}
],
@@ -36992,7 +36992,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t state: PageState, // Current state\n }",
+ "type": "{\n \t state: PageState, // Current state\n }",
"description": "end slot's params."
}
],
@@ -37029,7 +37029,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the rowsperpagedropdown icon.\n }",
+ "type": "{\n \t class: string, // Style class of the rowsperpagedropdown icon.\n }",
"description": "rowsperpagedropdownicon's params."
}
],
@@ -37042,7 +37042,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the jumptopagedropdown icon.\n }",
+ "type": "{\n \t class: string, // Style class of the jumptopagedropdown icon.\n }",
"description": "jumptopagedropdownicon's params."
}
],
@@ -37450,7 +37450,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t id: string, // Current id state as a string\n \t class: string, // Style class of the icon\n }",
+ "type": "{\n \t id: string, // Current id state as a string\n \t class: string, // Style class of the icon\n }",
"description": "header slot's params."
}
],
@@ -37469,7 +37469,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t collapsed: boolean, // Collapsed state as a boolean\n }",
+ "type": "{\n \t collapsed: boolean, // Collapsed state as a boolean\n }",
"description": "toggler icon slot's params."
}
],
@@ -38070,7 +38070,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: PanelMenuRouterBindProps, // Binding properties of the menuitem\n \t hasSubmenu: boolean, // Whether or not there is a submenu\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: PanelMenuRouterBindProps, // Binding properties of the menuitem\n \t hasSubmenu: boolean, // Whether or not there is a submenu\n }",
"description": "item slot's params."
}
],
@@ -38083,7 +38083,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t active: boolean, // Whether item is active\n }",
+ "type": "{\n \t active: boolean, // Whether item is active\n }",
"description": "submenuicon slot's params."
}
],
@@ -38096,7 +38096,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
"description": "header icon slot's params."
}
],
@@ -38109,7 +38109,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
"description": "item icon slot's params."
}
],
@@ -38787,7 +38787,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t onClick: () ⇒ void, // Hide icon click event\n}",
+ "type": "{\n \t onClick: () ⇒ void, // Hide icon click event\n}",
"description": "hideicon slot's params."
}
],
@@ -38800,7 +38800,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t onClick: () ⇒ void, // Show icon click event\n}",
+ "type": "{\n \t onClick: () ⇒ void, // Show icon click event\n}",
"description": "showicon slot's params."
}
],
@@ -39665,7 +39665,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: any, // Item of the component\n \t index: number, // Index of the item\n }",
+ "type": "{\n \t item: any, // Item of the component\n \t index: number, // Index of the item\n }",
"description": "item slot's params."
}
],
@@ -39750,7 +39750,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t viewChanged: boolean, // Whether view change.\n }",
+ "type": "{\n \t viewChanged: boolean, // Whether view change.\n }",
"description": "movetotargeticon slot's params."
}
],
@@ -39763,7 +39763,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t viewChanged: boolean, // Whether view change.\n }",
+ "type": "{\n \t viewChanged: boolean, // Whether view change.\n }",
"description": "movealltotargeticon slot's params."
}
],
@@ -39776,7 +39776,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t viewChanged: boolean, // Whether view change.\n }",
+ "type": "{\n \t viewChanged: boolean, // Whether view change.\n }",
"description": "movetosourceicon slot's params."
}
],
@@ -39789,7 +39789,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t viewChanged: boolean, // Whether view change.\n }",
+ "type": "{\n \t viewChanged: boolean, // Whether view change.\n }",
"description": "movealltosourceicon slot's params."
}
],
@@ -41304,7 +41304,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t class: string, // Style class of the icon.\n }",
"description": "cancelicon slot's params."
}
],
@@ -41317,7 +41317,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: number, // Item value\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t value: number, // Item value\n \t class: string, // Style class of the icon.\n }",
"description": "on icon slot's params."
}
],
@@ -41330,7 +41330,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: number, // Item value\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t value: number, // Item value\n \t class: string, // Style class of the icon.\n }",
"description": "off icon slot's params."
}
],
@@ -42718,7 +42718,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
+ "type": "{\n \t option: any, // Option instance\n \t index: number, // Index of the option\n }",
"description": "option slot's params."
}
],
@@ -43145,7 +43145,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the close icon\n }",
+ "type": "{\n \t class: any, // Style class of the close icon\n }",
"description": "close icon slot's params."
}
],
@@ -43158,7 +43158,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t onClose: () ⇒ void, // Close sidebar function.\n}",
+ "type": "{\n \t onClose: () ⇒ void, // Close sidebar function.\n}",
"description": "container slot's params."
}
],
@@ -44340,7 +44340,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t onClick: (event: Event) ⇒ void, // Item click function\n}",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t onClick: (event: Event) ⇒ void, // Item click function\n}",
"description": "item slot's params."
}
],
@@ -44353,7 +44353,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t onClick: (event: Event) ⇒ void, // Button click function\n}",
+ "type": "{\n \t onClick: (event: Event) ⇒ void, // Button click function\n}",
"description": "button slot's params."
}
],
@@ -44366,7 +44366,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t visible: boolean, // Visible state of the item\n }",
+ "type": "{\n \t visible: boolean, // Visible state of the item\n }",
"description": "icon slot's params."
}
],
@@ -44836,7 +44836,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t class: string, // Style class of the icon.\n }",
"description": "icon slot's params."
}
],
@@ -44849,7 +44849,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t class: string, // Style class of the icon.\n }",
"description": "menubuttonicon slot's params."
}
],
@@ -44862,7 +44862,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
"description": "menuitemicon slot's params."
}
],
@@ -45048,6 +45048,29 @@
],
"methods": []
},
+ "SplitterResizeEvent": {
+ "description": "Custom resize event.",
+ "relatedProp": "SplitterEmits.resize",
+ "props": [
+ {
+ "name": "originalEvent",
+ "optional": false,
+ "readonly": false,
+ "type": "Event",
+ "default": "",
+ "description": "Browser event"
+ },
+ {
+ "name": "sizes",
+ "optional": false,
+ "readonly": false,
+ "type": "number[]",
+ "default": "",
+ "description": "Sizes of the panels"
+ }
+ ],
+ "methods": []
+ },
"SplitterResizeEndEvent": {
"description": "Custom resize end event.",
"relatedProp": "SplitterEmits.resizeend",
@@ -45255,6 +45278,19 @@
"returnType": "void",
"description": "Callback to invoke when resize starts."
},
+ {
+ "name": "resize",
+ "parameters": [
+ {
+ "name": "event",
+ "optional": false,
+ "type": "SplitterResizeEvent",
+ "description": "Custom resize event."
+ }
+ ],
+ "returnType": "void",
+ "description": "Callback to invoke during the resizing process."
+ },
{
"name": "resizeend",
"parameters": [
@@ -45859,7 +45895,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t index: number, // Order of the menuitem\n \t props: StepsRouterBindProps, // Binding properties of the menuitem\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t index: number, // Order of the menuitem\n \t props: StepsRouterBindProps, // Binding properties of the menuitem\n }",
"description": "item slot's params."
}
],
@@ -46462,7 +46498,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: TabMenuRouterBindProps, // Binding properties of the menuitem\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: TabMenuRouterBindProps, // Binding properties of the menuitem\n }",
"description": "item slot's params."
}
],
@@ -46475,7 +46511,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
"description": "item icon slot's params."
}
],
@@ -48774,7 +48810,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: TabMenuRouterBindProps, // Binding properties of the menuitem\n \t hasSubmenu: boolean, // Whether or not there is a submenu\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t label: undefined, // Label property of the menuitem\n \t props: TabMenuRouterBindProps, // Binding properties of the menuitem\n \t hasSubmenu: boolean, // Whether or not there is a submenu\n }",
"description": "item slot's params."
}
],
@@ -48787,7 +48823,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t active: boolean, // Whether item is active\n }",
+ "type": "{\n \t active: boolean, // Whether item is active\n }",
"description": "submenuicon slot's params."
}
],
@@ -48800,7 +48836,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
+ "type": "{\n \t item: MenuItem, // Menuitem instance\n \t class: any, // Style class of the item icon element.\n }",
"description": "item icon slot's params."
}
],
@@ -49168,7 +49204,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: any, // Item data\n \t index: number, // Index of item\n }",
+ "type": "{\n \t item: any, // Item data\n \t index: number, // Index of item\n }",
"description": "content slot's params."
}
],
@@ -49181,7 +49217,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: any, // Item data\n \t index: number, // Index of item\n }",
+ "type": "{\n \t item: any, // Item data\n \t index: number, // Index of item\n }",
"description": "opposite slot's params."
}
],
@@ -49194,7 +49230,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: any, // Item data\n \t index: number, // Index of item\n }",
+ "type": "{\n \t item: any, // Item data\n \t index: number, // Index of item\n }",
"description": "marker slot's params."
}
],
@@ -49207,7 +49243,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: any, // Item data\n \t index: number, // Index of item\n }"
+ "type": "{\n \t item: any, // Item data\n \t index: number, // Index of item\n }"
}
],
"returnType": "VNode[]",
@@ -49724,7 +49760,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t message: any, // Message of the component\n }",
+ "type": "{\n \t message: any, // Message of the component\n }",
"description": "message slot's params."
}
],
@@ -49737,7 +49773,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the icon\n }",
+ "type": "{\n \t class: any, // Style class of the icon\n }",
"description": "icon slot's params."
}
],
@@ -49750,7 +49786,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: any, // Style class of the close icon\n }",
+ "type": "{\n \t class: any, // Style class of the close icon\n }",
"description": "close icon slot's params."
}
],
@@ -49763,7 +49799,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t message: any, // Message of the component\n \t onClose: () ⇒ void, // Close toast function\n}",
+ "type": "{\n \t message: any, // Message of the component\n \t onClose: () ⇒ void, // Close toast function\n}",
"description": "container slot's params."
}
],
@@ -50274,7 +50310,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Current value\n \t class: any, // Icon style class\n }",
+ "type": "{\n \t value: any, // Current value\n \t class: any, // Icon style class\n }",
"description": "icon slot's params."
}
],
@@ -51628,7 +51664,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t class: string, // Style class of the icon.\n }",
"description": "loadingicon slot's params."
}
],
@@ -51641,7 +51677,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t class: string, // Style class of the icon.\n }",
"description": "searchicon slot's params."
}
],
@@ -51654,7 +51690,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t node: TreeNode, // Tree node instance\n \t expanded: boolean, // Expanded state of the node\n }",
+ "type": "{\n \t node: TreeNode, // Tree node instance\n \t expanded: boolean, // Expanded state of the node\n }",
"description": "togglericon slot's params."
}
],
@@ -51667,7 +51703,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t checked: boolean, // Check state of the node\n \t partialChecked: boolean, // Partial check state of the node\n }",
+ "type": "{\n \t checked: boolean, // Check state of the node\n \t partialChecked: boolean, // Partial check state of the node\n }",
"description": "checkboxicon slot's params."
}
],
@@ -52243,7 +52279,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Selected value\n \t placeholder: string, // Placeholder\n }",
+ "type": "{\n \t value: any, // Selected value\n \t placeholder: string, // Placeholder\n }",
"description": "value slot's params."
}
],
@@ -52256,7 +52292,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Selected value\n \t options: TreeNode, // An array of treenodes.\n }",
+ "type": "{\n \t value: any, // Selected value\n \t options: TreeNode, // An array of treenodes.\n }",
"description": "header slot's params."
}
],
@@ -52269,7 +52305,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t value: any, // Selected value\n \t options: TreeNode, // An array of treenodes.\n }",
+ "type": "{\n \t value: any, // Selected value\n \t options: TreeNode, // An array of treenodes.\n }",
"description": "footer slot's params."
}
],
@@ -52295,7 +52331,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t class: string, // Style class of the icon.\n }",
"description": "triggericon slot's params."
}
],
@@ -52308,7 +52344,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t node: any, // Node instance\n \t expanded: TreeNode, // Expanded state of the node\n }",
+ "type": "{\n \t node: any, // Node instance\n \t expanded: TreeNode, // Expanded state of the node\n }",
"description": "item toggler icon slot's params."
}
],
@@ -52321,7 +52357,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t checked: boolean, // Check state of the node\n \t partialChecked: boolean, // Partial check state of the node\n }",
+ "type": "{\n \t checked: boolean, // Check state of the node\n \t partialChecked: boolean, // Partial check state of the node\n }",
"description": "item checkbox icon slot's params."
}
],
@@ -53657,7 +53693,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t sorted: TreeNode, // Whether or not column is sorted\n \t sortOrder: boolean, // Current sort order\n }",
+ "type": "{\n \t sorted: TreeNode, // Whether or not column is sorted\n \t sortOrder: boolean, // Current sort order\n }",
"description": "sorticon slot's params."
}
],
@@ -53670,7 +53706,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the paginator first page link icon.\n }"
+ "type": "{\n \t class: string, // Style class of the paginator first page link icon.\n }"
}
],
"returnType": "VNode[]",
@@ -53682,7 +53718,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the paginator prev page link icon.\n }"
+ "type": "{\n \t class: string, // Style class of the paginator prev page link icon.\n }"
}
],
"returnType": "VNode[]",
@@ -53694,7 +53730,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the paginator next page link icon.\n }"
+ "type": "{\n \t class: string, // Style class of the paginator next page link icon.\n }"
}
],
"returnType": "VNode[]",
@@ -53706,7 +53742,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the paginator last page link icon.\n }"
+ "type": "{\n \t class: string, // Style class of the paginator last page link icon.\n }"
}
],
"returnType": "VNode[]",
@@ -53718,7 +53754,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the paginator rows per page dropdown icon.\n }",
+ "type": "{\n \t class: string, // Style class of the paginator rows per page dropdown icon.\n }",
"description": "paginatorrowsperpagedropdownicon's params."
}
],
@@ -53731,7 +53767,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the paginator jump to page dropdown icon.\n }",
+ "type": "{\n \t class: string, // Style class of the paginator jump to page dropdown icon.\n }",
"description": "paginatorjumptopagedropdownicon's params."
}
],
@@ -54312,7 +54348,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t class: string, // Style class of the icon.\n }",
"description": "checkicon slot's params."
}
],
@@ -54325,7 +54361,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t class: string, // Style class of the icon.\n }",
"description": "uncheckicon slot's params."
}
],
@@ -54338,7 +54374,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t class: string, // Style class of the icon.\n }",
"description": "nullableicon slot's params."
}
],
@@ -55392,7 +55428,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t items: any, // An array of objects to display for virtualscroller\n \t styleClass: string, // Style class of the content\n \t contentRef: (el: any) ⇒ void, // Referance of the content\n\t getItemOptions: (index: number) ⇒ VirtualScrollerItemOptions, // Options of the items\n \t loading: boolean, // Whether the data is loaded.\n \t getLoaderOptions: (index: number, ext: any) ⇒ VirtualScrollerLoaderOptions, // Loader options of the items while the data is loading.\n \t itemSize: undefined, // The height/width of item according to orientation.\n \t rows: undefined, // The number of the rendered rows.\n \t columns: undefined, // The number of the rendered columns.\n \t spacerStyle: any, // The style of spacer element.\n \t contentStyle: any, // The style of content element.\n \t vertical: boolean, // Whether the orientation is vertical.\n \t horizontal: boolean, // Whether the orientation is horizontal.\n \t both: boolean, // Whether the orientation is both.\n }",
+ "type": "{\n \t items: any, // An array of objects to display for virtualscroller\n \t styleClass: string, // Style class of the content\n \t contentRef: (el: any) ⇒ void, // Referance of the content\n\t getItemOptions: (index: number) ⇒ VirtualScrollerItemOptions, // Options of the items\n \t loading: boolean, // Whether the data is loaded.\n \t getLoaderOptions: (index: number, ext: any) ⇒ VirtualScrollerLoaderOptions, // Loader options of the items while the data is loading.\n \t itemSize: undefined, // The height/width of item according to orientation.\n \t rows: undefined, // The number of the rendered rows.\n \t columns: undefined, // The number of the rendered columns.\n \t spacerStyle: any, // The style of spacer element.\n \t contentStyle: any, // The style of content element.\n \t vertical: boolean, // Whether the orientation is vertical.\n \t horizontal: boolean, // Whether the orientation is horizontal.\n \t both: boolean, // Whether the orientation is both.\n }",
"description": "content slot's params."
}
],
@@ -55405,7 +55441,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t item: any, // Item data.\n \t options: VirtualScrollerItemOptions, // Item options.\n }",
+ "type": "{\n \t item: any, // Item data.\n \t options: VirtualScrollerItemOptions, // Item options.\n }",
"description": "item slot's params."
}
],
@@ -55418,7 +55454,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t options: VirtualScrollerLoaderOptions, // Loader options.\n }",
+ "type": "{\n \t options: VirtualScrollerLoaderOptions, // Loader options.\n }",
"description": "header slot's params."
}
],
@@ -55431,7 +55467,7 @@
{
"name": "scope",
"optional": false,
- "type": "{\n \t class: string, // Style class of the icon.\n }",
+ "type": "{\n \t class: string, // Style class of the icon.\n }",
"description": "loadingicon slot's params."
}
],