Skip to content

Commit

Permalink
Regenerate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmatta committed Mar 27, 2024
1 parent eb731fa commit 52c76ba
Showing 1 changed file with 68 additions and 7 deletions.
75 changes: 68 additions & 7 deletions src/app/showcase/doc/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -3120,6 +3120,18 @@
"optional": true,
"readonly": false,
"type": "string"
},
{
"name": "browseFiles",
"optional": true,
"readonly": false,
"type": "string"
},
{
"name": "maximizeLabel",
"optional": true,
"readonly": false,
"type": "string"
}
]
}
Expand Down Expand Up @@ -5220,6 +5232,14 @@
"default": "false",
"description": "When enabled, calendar will show week numbers."
},
{
"name": "startWeekFromFirstDayOfYear",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "When enabled, calendar will start week numbers from first day of the year."
},
{
"name": "showClear",
"optional": false,
Expand Down Expand Up @@ -10288,7 +10308,7 @@
"parameters": [
{
"name": "componentType",
"type": "Type<any>",
"type": "Type<T>",
"description": "Dynamic component for content template."
},
{
Expand All @@ -10297,15 +10317,15 @@
"description": "DynamicDialog object."
}
],
"returnType": "DynamicDialogRef",
"returnType": "DynamicDialogRef<T>",
"description": "Displays the dialog using the dynamic dialog object options."
},
{
"name": "getInstance",
"parameters": [
{
"name": "ref",
"type": "DynamicDialogRef"
"type": "DynamicDialogRef<any>"
}
],
"returnType": "DynamicDialogComponent",
Expand Down Expand Up @@ -10742,6 +10762,10 @@
{
"name": "onMaximize",
"description": "Event triggered on dialog is maximized."
},
{
"name": "onChildComponentLoaded",
"description": "Event triggered on child component load."
}
]
}
Expand Down Expand Up @@ -14083,6 +14107,13 @@
"default": "true",
"description": "Whether to focus on the first visible or selected element when the overlay panel is shown."
},
{
"name": "ariaLabel",
"optional": false,
"readonly": false,
"type": "string",
"description": "Defines a string that labels the input for accessibility."
},
{
"name": "selectOnFocus",
"optional": false,
Expand Down Expand Up @@ -15868,7 +15899,7 @@
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Fields used when filtering the options, defaults to optionLabel."
"description": "Indicates whether to focus on options when hovering over them, defaults to optionLabel."
},
{
"name": "filterFields",
Expand Down Expand Up @@ -17482,6 +17513,13 @@
"default": "false",
"description": "Whether to display a input to navigate to any page."
},
{
"name": "jumpToPageItemTemplate",
"optional": false,
"readonly": false,
"type": "TemplateRef<Object>",
"description": "Template instance to inject into the jump to page dropdown item inside in the paginator."
},
{
"name": "showPageLinks",
"optional": false,
Expand All @@ -17502,7 +17540,7 @@
"optional": false,
"readonly": false,
"type": "TemplateRef<Object>",
"description": "Template instance to inject into the dropdown item inside in the paginator."
"description": "Template instance to inject into the rows per page dropdown item inside in the paginator."
},
{
"name": "first",
Expand Down Expand Up @@ -24135,7 +24173,8 @@
"name": "activeItem",
"optional": false,
"readonly": false,
"type": "MenuItem"
"type": "MenuItem",
"description": "Defines the default active menuitem"
},
{
"name": "scrollable",
Expand Down Expand Up @@ -26508,6 +26547,28 @@
"default": "true",
"description": "Clears the filter value when hiding the dropdown."
},
{
"name": "virtualScroll",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Whether the data should be loaded on demand during scroll."
},
{
"name": "virtualScrollItemSize",
"optional": false,
"readonly": false,
"type": "number",
"description": "Height of an item in the list for VirtualScrolling."
},
{
"name": "virtualScrollOptions",
"optional": false,
"readonly": false,
"type": "ScrollerOptions",
"description": "Whether to use the scroller feature. The properties of scroller component can be used like an object in it."
},
{
"name": "options",
"optional": false,
Expand Down Expand Up @@ -28535,4 +28596,4 @@
}
}
}
}
}

0 comments on commit 52c76ba

Please sign in to comment.