diff --git a/src/app/components/cascadeselect/cascadeselect.ts b/src/app/components/cascadeselect/cascadeselect.ts index 4b330c70cb8..a167146ca4c 100755 --- a/src/app/components/cascadeselect/cascadeselect.ts +++ b/src/app/components/cascadeselect/cascadeselect.ts @@ -419,7 +419,7 @@ export class CascadeSelect implements OnInit, AfterContentInit { */ @Input() placeholder: string | undefined; /** - * No description available. + * Selected value of the component. * @group Props */ @Input() value: string | undefined | null; @@ -463,11 +463,6 @@ export class CascadeSelect implements OnInit, AfterContentInit { * @group Props */ @Input() disabled: boolean | undefined; - /** - * No description available. - * @group Props - */ - @Input() rounded: boolean | undefined; /** * When enabled, a clear icon is displayed to clear the value. * @group Props diff --git a/src/app/components/dropdown/dropdown.ts b/src/app/components/dropdown/dropdown.ts index f690c66d877..ba24993c798 100755 --- a/src/app/components/dropdown/dropdown.ts +++ b/src/app/components/dropdown/dropdown.ts @@ -378,11 +378,6 @@ export class Dropdown implements OnInit, AfterViewInit, AfterContentInit, AfterV * @group Props */ @Input() inputId: string | undefined; - /** - * No description available. - * @group Props - */ - @Input() selectId: string | undefined; /** * A property to uniquely identify a value in options. * @group Props @@ -533,11 +528,6 @@ export class Dropdown implements OnInit, AfterViewInit, AfterContentInit, AfterV * @group Props */ @Input() autofocusFilter: boolean = true; - /** - * No description available. - * @group Props - */ - @Input() overlayDirection: string = 'end'; /** * When present, it specifies that the component should be disabled. * @group Props diff --git a/src/app/components/inputnumber/inputnumber.ts b/src/app/components/inputnumber/inputnumber.ts index f058d0e9808..015b0c44ed4 100644 --- a/src/app/components/inputnumber/inputnumber.ts +++ b/src/app/components/inputnumber/inputnumber.ts @@ -261,7 +261,7 @@ export class InputNumber implements OnInit, AfterContentInit, OnChanges, Control */ @Input() name: string | undefined; /** - * No description available. + * Indicates that whether the input field is required. * @group Props */ @Input() required: boolean | undefined; @@ -380,10 +380,6 @@ export class InputNumber implements OnInit, AfterContentInit, OnChanges, Control * @group Props */ @Input() showClear: boolean = false; - /** - * No description available. - * @group Emits - */ /** * When present, it specifies that the element should be disabled. * @group Props diff --git a/src/app/components/multiselect/multiselect.ts b/src/app/components/multiselect/multiselect.ts index dc15d5948f1..9ddc4258e19 100755 --- a/src/app/components/multiselect/multiselect.ts +++ b/src/app/components/multiselect/multiselect.ts @@ -581,12 +581,12 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft */ @Input() autofocusFilter: boolean = true; /** - * No description available. + * Defines how the selected items are displayed. * @group Props */ - @Input() display: string = 'comma'; + @Input() display: string | 'comma' | 'chip' = 'comma'; /** - * No description available. + * Defines the autocomplete is active. * @group Props */ @Input() autocomplete: string = 'on'; diff --git a/src/app/components/radiobutton/radiobutton.ts b/src/app/components/radiobutton/radiobutton.ts index fc0d124e4d6..fc4b5a054a4 100755 --- a/src/app/components/radiobutton/radiobutton.ts +++ b/src/app/components/radiobutton/radiobutton.ts @@ -94,7 +94,7 @@ export class RadioButton implements ControlValueAccessor, OnInit, OnDestroy { */ @Input() value: any; /** - * No description available. + * The name of the form control. * @group Props */ @Input() formControlName: string | undefined; diff --git a/src/app/components/table/table.ts b/src/app/components/table/table.ts index 62791d70300..a4114524906 100644 --- a/src/app/components/table/table.ts +++ b/src/app/components/table/table.ts @@ -697,11 +697,6 @@ export class Table implements OnInit, AfterViewInit, AfterContentInit, Blockable * @group Props */ @Input() paginatorLocale: string | undefined; - /** - * No description available. - * @param {TableSelectAllChangeEvent} event - custom all selection change event. - * @group Emits - */ /** * An array of objects to display. * @group Props @@ -803,6 +798,11 @@ export class Table implements OnInit, AfterViewInit, AfterContentInit, Blockable set selectAll(val: boolean | null) { this._selection = val; } + /** + * Emits when the all of the items selected or unselected. + * @param {TableSelectAllChangeEvent} event - custom all selection change event. + * @group Emits + */ @Output() selectAllChange: EventEmitter = new EventEmitter(); /** * Callback to invoke on selection changed. diff --git a/src/app/components/tree/tree.ts b/src/app/components/tree/tree.ts index daefa17d048..d16d5fcc3d9 100755 --- a/src/app/components/tree/tree.ts +++ b/src/app/components/tree/tree.ts @@ -851,7 +851,7 @@ export class Tree implements OnInit, AfterContentInit, OnChanges, OnDestroy, Blo */ @Input() filterPlaceholder: string | undefined; /** - * No description available. + * Values after the tree nodes are filtered. * @group Props */ @Input() filteredNodes: TreeNode[] | undefined | null; diff --git a/src/app/showcase/doc/apidoc/index.json b/src/app/showcase/doc/apidoc/index.json index 3c22b3c63da..48c56f43403 100644 --- a/src/app/showcase/doc/apidoc/index.json +++ b/src/app/showcase/doc/apidoc/index.json @@ -5980,7 +5980,7 @@ "optional": false, "readonly": false, "type": "string", - "description": "No description available." + "description": "Selected value of the component." }, { "name": "dataKey", @@ -6039,14 +6039,6 @@ "default": "false", "description": "When present, it specifies that the component should be disabled." }, - { - "name": "rounded", - "optional": false, - "readonly": false, - "type": "boolean", - "default": "false", - "description": "No description available." - }, { "name": "showClear", "optional": false, @@ -9073,13 +9065,6 @@ "type": "string", "description": "Identifier of the accessible input element." }, - { - "name": "selectId", - "optional": false, - "readonly": false, - "type": "string", - "description": "No description available." - }, { "name": "dataKey", "optional": false, @@ -9305,14 +9290,6 @@ "default": "true", "description": "Applies focus to the filter element when the overlay is shown." }, - { - "name": "overlayDirection", - "optional": false, - "readonly": false, - "type": "string", - "default": "end", - "description": "No description available." - }, { "name": "disabled", "optional": false, @@ -9720,19 +9697,12 @@ } }, "dynamicdialog-config": { - "components": {}, - "interfaces": { - "description": "Defines the custom interfaces used by the module.", - "values": [ - { - "name": "DynamicDialogConfig", - "description": "Dialogs can be created dynamically with any component as the content using a DialogService.", - "props": [ - { - "name": "constructor", - "optional": false, - "readonly": false - }, + "components": { + "DynamicDialogConfig": { + "description": "Dialogs can be created dynamically with any component as the content using a DialogService.", + "props": { + "description": "Defines the input properties of the component.", + "values": [ { "name": "data", "optional": true, @@ -9780,6 +9750,7 @@ "optional": true, "readonly": false, "type": "boolean", + "default": "false", "description": "Specifies if pressing escape key should hide the dialog." }, { @@ -9794,6 +9765,7 @@ "optional": true, "readonly": false, "type": "boolean", + "default": "false", "description": "Whether to automatically manage layering." }, { @@ -9801,6 +9773,7 @@ "optional": true, "readonly": false, "type": "boolean", + "default": "false", "description": "Specifies if clicking the modal background should hide the dialog." }, { @@ -9808,6 +9781,7 @@ "optional": true, "readonly": false, "type": "boolean", + "default": "false", "description": "Inline style of the component." }, { @@ -9843,6 +9817,7 @@ "optional": true, "readonly": false, "type": "boolean", + "default": "false", "description": "Adds a close icon to the header to hide the dialog." }, { @@ -9850,6 +9825,7 @@ "optional": true, "readonly": false, "type": "boolean", + "default": "false", "description": "Whether to show the header or not." }, { @@ -9857,6 +9833,7 @@ "optional": true, "readonly": false, "type": "boolean", + "default": "false", "description": "Defines if background should be blocked when dialog is displayed." }, { @@ -9871,6 +9848,7 @@ "optional": true, "readonly": false, "type": "boolean", + "default": "false", "description": "Enables resizing of the content." }, { @@ -9878,6 +9856,7 @@ "optional": true, "readonly": false, "type": "boolean", + "default": "false", "description": "Enables dragging to change the position using header." }, { @@ -9885,6 +9864,7 @@ "optional": true, "readonly": false, "type": "boolean", + "default": "false", "description": "Keeps dialog in the viewport." }, { @@ -9906,6 +9886,7 @@ "optional": true, "readonly": false, "type": "boolean", + "default": "false", "description": "Whether the dialog can be displayed full screen." }, { @@ -9945,7 +9926,7 @@ } ] } - ] + } } }, "dynamicdialog-injector": { @@ -12335,7 +12316,7 @@ "readonly": false, "type": "boolean", "default": "false", - "description": "No description available." + "description": "Indicates that whether the input field is required." }, { "name": "autocomplete", @@ -14330,7 +14311,7 @@ "readonly": false, "type": "string", "default": "comma", - "description": "No description available." + "description": "Defines how the selected items are displayed." }, { "name": "autocomplete", @@ -14338,7 +14319,7 @@ "readonly": false, "type": "string", "default": "on", - "description": "No description available." + "description": "Defines the autocomplete is active." }, { "name": "showClear", @@ -17495,7 +17476,7 @@ "optional": false, "readonly": false, "type": "string", - "description": "No description available." + "description": "The name of the form control." }, { "name": "name", @@ -20788,6 +20769,16 @@ ], "description": "Callback to invoke on context menu selection change." }, + { + "name": "selectAllChange", + "parameters": [ + { + "name": "event", + "type": "TableSelectAllChangeEvent" + } + ], + "description": "Emits when the all of the items selected or unselected." + }, { "name": "selectionChange", "parameters": [ @@ -23369,7 +23360,7 @@ "optional": false, "readonly": false, "type": "TreeNode[]", - "description": "No description available." + "description": "Values after the tree nodes are filtered." }, { "name": "filterLocale",