diff --git a/api-generator/build-apidoc.js b/api-generator/build-apidoc.js
index e5ce7c4ef..ecbc066b7 100644
--- a/api-generator/build-apidoc.js
+++ b/api-generator/build-apidoc.js
@@ -385,14 +385,14 @@ if (project) {
child.type?.declaration?.signatures[0]?.parameters.map((param, index) => {
if (index !== 0) functionParameters += `, `;
- functionParameters += `${param.name}: ${param.type?.name}`;
+ functionParameters += `${param.name}: ${param.type?.name}`;
});
- type += `\t ${child.name}: (${functionParameters}) ⇒ ${child.type?.declaration?.signatures[0]?.type?.name}, // ${child.type?.declaration?.signatures[0]?.comment.summary[0]?.text}\n`;
+ type += `\t ${child.name}: (${functionParameters}) ⇒ ${child.type?.declaration?.signatures[0]?.type?.name}, // ${child.type?.declaration?.signatures[0]?.comment.summary[0]?.text}\n`;
} else {
const childType = child.type.elementType ? child.type.elementType.name : child.type.name;
- type += ` \t ${child.name}: ${childType}, // ${child.comment?.summary[0]?.text}\n `;
+ type += ` \t ${child.name}: ${childType}, // ${child.comment?.summary[0]?.text}\n `;
}
}
});
diff --git a/assets/styles/layout/_doc.scss b/assets/styles/layout/_doc.scss
index 2ec5b34c9..594883d5f 100644
--- a/assets/styles/layout/_doc.scss
+++ b/assets/styles/layout/_doc.scss
@@ -259,7 +259,7 @@
th {
border-bottom: 1px solid var(--surface-border);
- padding: .75rem;
+ padding: .75rem 1rem;
text-align: left;
text-transform: capitalize;
}
@@ -270,37 +270,36 @@
}
td {
- padding: .75rem;
+ padding: .75rem 1rem;
border-bottom: 1px solid var(--surface-border);
- white-space: pre-wrap;
+ white-space: pre-line;
line-height: 1.5;
scroll-margin-top: 6.5rem;
+ &:first-child {
+ color: var(--primary-color);
+ font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace;
+ }
+
.doc-option-type {
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace;
color: var(--primary-500);
font-weight: 500;
- > a {
- color: var(--primary-500);
-
- &:hover {
- text-decoration: underline;
- }
- }
-
.doc-option-type-options-container {
display: flex;
align-items: center;
}
+
span.doc-option-type-options {
color: var(--primary-700);
}
- }
- &:first-child {
- color: var(--primary-color);
- font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace;
+ &.doc-option-link {
+ &:hover {
+ text-decoration: underline;
+ }
+ }
}
.doc-option-name,
@@ -312,8 +311,9 @@
color: var(--highlight-text-color);
border-radius: 6px;
padding: 2px 6px;
- font-weight: 400;
+ font-weight: 600;
font-style: normal;
+ white-space: nowrap;
.doc-option-link {
position: absolute;
@@ -326,16 +326,6 @@
}
}
- .doc-option-default,
- .doc-option-returnType {
- display: flex;
- border-width: 1px;
- border-style: solid;
- border-radius: 6px;
- padding: 2px 6px;
- max-width: min-content;
- }
-
&:hover {
.doc-option-name {
.doc-option-link {
@@ -348,6 +338,33 @@
}
}
+ .doc-option-default,
+ .doc-option-returnType {
+ font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace;
+ font-weight: 400;
+ font-style: normal;
+ display: flex;
+ border-width: 1px;
+ border-style: solid;
+ border-radius: 6px;
+ padding: 2px 6px;
+ max-width: min-content;
+ }
+
+ .doc-option-parameter-name {
+ font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace;
+ color: var(--primary-700);
+ }
+
+ .doc-option-parameter-type {
+ font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace;
+ color: var(--primary-500);
+ }
+
+ .doc-option-params {
+ font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace;
+ }
+
.doc-option-light {
background: var(--bluegray-50);
border-color: var(--bluegray-100);
diff --git a/components/doc/DocApiTable.vue b/components/doc/DocApiTable.vue
index febc56c3e..b1a2246b0 100644
--- a/components/doc/DocApiTable.vue
+++ b/components/doc/DocApiTable.vue
@@ -42,11 +42,13 @@
- {{ v.name }} :
-
- {{ i !== 0 ? ' | ' : '' }} {{ value }}
-
-
+
+ {{ v.name }} :
+
+ {{ i !== 0 ? ' | ' : '' }} {{ value }}
+
+
+
diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json
index 8217b37a7..a6f3cdcf2 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."
}
],
@@ -19297,7 +19297,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."
}
],
@@ -19310,7 +19310,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."
}
],
@@ -19329,7 +19329,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."
}
],
@@ -19360,7 +19360,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."
}
],
@@ -19373,7 +19373,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[]",
@@ -19385,7 +19385,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[]",
@@ -19397,7 +19397,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[]",
@@ -19409,7 +19409,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[]",
@@ -19421,7 +19421,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."
}
],
@@ -19434,7 +19434,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."
}
],
@@ -20426,7 +20426,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."
}
],
@@ -20439,7 +20439,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."
}
],
@@ -21588,7 +21588,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."
}
],
@@ -21601,7 +21601,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."
}
],
@@ -21614,7 +21614,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."
}
],
@@ -22436,7 +22436,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."
}
],
@@ -22449,7 +22449,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."
}
],
@@ -23368,7 +23368,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."
}
],
@@ -23388,7 +23388,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."
}
],
@@ -23401,7 +23401,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."
}
],
@@ -23414,7 +23414,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."
}
],
@@ -23427,7 +23427,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."
}
],
@@ -23452,7 +23452,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."
}
],
@@ -23465,7 +23465,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."
}
],
@@ -23478,7 +23478,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."
}
],
@@ -23491,7 +23491,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."
}
],
@@ -23504,7 +23504,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."
}
],
@@ -23517,7 +23517,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."
}
],
@@ -25655,7 +25655,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."
}
],
@@ -25668,7 +25668,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."
}
],
@@ -25705,7 +25705,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."
}
],
@@ -26824,7 +26824,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."
}
],
@@ -26837,7 +26837,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."
}
],
@@ -26850,7 +26850,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."
}
],
@@ -26863,7 +26863,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."
}
],
@@ -27514,7 +27514,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."
}
],
@@ -27527,7 +27527,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."
}
],
@@ -30899,7 +30899,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."
}
],
@@ -30912,7 +30912,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."
}
],
@@ -30925,7 +30925,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."
}
],
@@ -30938,7 +30938,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."
}
],
@@ -30963,7 +30963,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."
}
],
@@ -30976,7 +30976,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."
}
],
@@ -30989,7 +30989,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."
}
],
@@ -31618,7 +31618,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."
}
],
@@ -31631,7 +31631,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."
}
],
@@ -31644,7 +31644,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."
}
],
@@ -32215,7 +32215,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."
}
],
@@ -32228,7 +32228,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."
}
],
@@ -32241,7 +32241,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."
}
],
@@ -32818,7 +32818,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."
}
],
@@ -32837,7 +32837,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."
}
],
@@ -32850,7 +32850,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."
}
],
@@ -33370,7 +33370,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."
}
],
@@ -33383,7 +33383,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."
}
],
@@ -33396,7 +33396,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."
}
],
@@ -34482,7 +34482,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."
}
],
@@ -34495,7 +34495,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."
}
],
@@ -34515,7 +34515,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."
}
],
@@ -34528,7 +34528,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."
}
],
@@ -34541,7 +34541,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."
}
],
@@ -34554,7 +34554,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."
}
],
@@ -34579,7 +34579,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."
}
],
@@ -34592,7 +34592,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."
}
],
@@ -34605,7 +34605,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."
}
],
@@ -34618,7 +34618,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."
}
],
@@ -34631,7 +34631,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."
}
],
@@ -34644,7 +34644,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."
}
],
@@ -34657,7 +34657,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."
}
],
@@ -34670,7 +34670,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."
}
],
@@ -34683,7 +34683,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."
}
],
@@ -35346,7 +35346,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."
}
],
@@ -35983,7 +35983,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."
}
],
@@ -36971,7 +36971,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."
}
],
@@ -36984,7 +36984,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."
}
],
@@ -37021,7 +37021,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."
}
],
@@ -37034,7 +37034,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."
}
],
@@ -37442,7 +37442,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."
}
],
@@ -37461,7 +37461,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."
}
],
@@ -38062,7 +38062,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."
}
],
@@ -38075,7 +38075,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."
}
],
@@ -38088,7 +38088,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."
}
],
@@ -38101,7 +38101,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."
}
],
@@ -38779,7 +38779,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."
}
],
@@ -38792,7 +38792,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."
}
],
@@ -39657,7 +39657,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."
}
],
@@ -39742,7 +39742,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."
}
],
@@ -39755,7 +39755,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."
}
],
@@ -39768,7 +39768,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."
}
],
@@ -39781,7 +39781,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."
}
],
@@ -41296,7 +41296,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."
}
],
@@ -41309,7 +41309,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."
}
],
@@ -41322,7 +41322,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."
}
],
@@ -42710,7 +42710,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."
}
],
@@ -43137,7 +43137,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."
}
],
@@ -43150,7 +43150,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."
}
],
@@ -44332,7 +44332,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."
}
],
@@ -44345,7 +44345,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."
}
],
@@ -44358,7 +44358,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."
}
],
@@ -44828,7 +44828,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."
}
],
@@ -44841,7 +44841,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."
}
],
@@ -44854,7 +44854,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."
}
],
@@ -45887,7 +45887,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."
}
],
@@ -46490,7 +46490,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."
}
],
@@ -46503,7 +46503,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."
}
],
@@ -48802,7 +48802,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."
}
],
@@ -48815,7 +48815,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."
}
],
@@ -48828,7 +48828,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."
}
],
@@ -49196,7 +49196,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."
}
],
@@ -49209,7 +49209,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."
}
],
@@ -49222,7 +49222,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."
}
],
@@ -49235,7 +49235,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[]",
@@ -49752,7 +49752,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."
}
],
@@ -49765,7 +49765,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."
}
],
@@ -49778,7 +49778,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."
}
],
@@ -49791,7 +49791,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."
}
],
@@ -50302,7 +50302,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."
}
],
@@ -51656,7 +51656,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."
}
],
@@ -51669,7 +51669,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."
}
],
@@ -51682,7 +51682,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."
}
],
@@ -51695,7 +51695,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."
}
],
@@ -52271,7 +52271,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."
}
],
@@ -52284,7 +52284,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."
}
],
@@ -52297,7 +52297,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."
}
],
@@ -52323,7 +52323,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."
}
],
@@ -52336,7 +52336,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."
}
],
@@ -52349,7 +52349,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."
}
],
@@ -53685,7 +53685,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."
}
],
@@ -53698,7 +53698,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[]",
@@ -53710,7 +53710,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[]",
@@ -53722,7 +53722,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[]",
@@ -53734,7 +53734,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[]",
@@ -53746,7 +53746,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."
}
],
@@ -53759,7 +53759,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."
}
],
@@ -54340,7 +54340,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."
}
],
@@ -54353,7 +54353,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."
}
],
@@ -54366,7 +54366,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."
}
],
@@ -55420,7 +55420,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."
}
],
@@ -55433,7 +55433,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."
}
],
@@ -55446,7 +55446,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."
}
],
@@ -55459,7 +55459,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."
}
],
@@ -55597,4 +55597,4 @@
}
}
}
-}
+}
\ No newline at end of file