carbon-components-angular 5.26.3 → 5.27.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/combobox/combobox.component.d.ts +5 -1
- package/docs/documentation/components/ComboBox.html +176 -131
- package/docs/documentation/components/ContainedList.html +22 -14
- package/docs/documentation/components/Dropdown.html +154 -109
- package/docs/documentation/coverage.html +4 -4
- package/docs/documentation/js/search/search_index.js +2 -2
- package/docs/documentation.json +247 -216
- package/docs/storybook/3224.a6cd0578.iframe.bundle.js +1 -0
- package/docs/storybook/combobox-combobox-stories.92875119.iframe.bundle.js +1 -0
- package/docs/storybook/{contained-list-contained-list-stories.118968ad.iframe.bundle.js → contained-list-contained-list-stories.b0377336.iframe.bundle.js} +1 -1
- package/docs/storybook/{dropdown-dropdown-stories.57d6428d.iframe.bundle.js → dropdown-dropdown-stories.eb5b6694.iframe.bundle.js} +1 -1
- package/docs/storybook/iframe.html +2 -2
- package/docs/storybook/main.830d907f.iframe.bundle.js +1 -0
- package/docs/storybook/project.json +1 -1
- package/docs/storybook/{runtime~main.2319260a.iframe.bundle.js → runtime~main.719f5f81.iframe.bundle.js} +1 -1
- package/dropdown/dropdown.component.d.ts +5 -1
- package/esm2020/combobox/combobox.component.mjs +16 -4
- package/esm2020/contained-list/contained-list.component.mjs +11 -3
- package/esm2020/dropdown/dropdown.component.mjs +16 -4
- package/fesm2015/carbon-components-angular-combobox.mjs +15 -3
- package/fesm2015/carbon-components-angular-combobox.mjs.map +1 -1
- package/fesm2015/carbon-components-angular-contained-list.mjs +10 -2
- package/fesm2015/carbon-components-angular-contained-list.mjs.map +1 -1
- package/fesm2015/carbon-components-angular-dropdown.mjs +15 -3
- package/fesm2015/carbon-components-angular-dropdown.mjs.map +1 -1
- package/fesm2020/carbon-components-angular-combobox.mjs +15 -3
- package/fesm2020/carbon-components-angular-combobox.mjs.map +1 -1
- package/fesm2020/carbon-components-angular-contained-list.mjs +10 -2
- package/fesm2020/carbon-components-angular-contained-list.mjs.map +1 -1
- package/fesm2020/carbon-components-angular-dropdown.mjs +15 -3
- package/fesm2020/carbon-components-angular-dropdown.mjs.map +1 -1
- package/package.json +1 -1
- package/docs/storybook/3224.aa2b4664.iframe.bundle.js +0 -1
- package/docs/storybook/combobox-combobox-stories.330abc6c.iframe.bundle.js +0 -1
- package/docs/storybook/main.d6e42b2b.iframe.bundle.js +0 -1
|
@@ -121,6 +121,10 @@ export declare class ComboBox implements OnChanges, AfterViewInit, AfterContentI
|
|
|
121
121
|
* Label for the combobox.
|
|
122
122
|
*/
|
|
123
123
|
label: string | TemplateRef<any>;
|
|
124
|
+
/**
|
|
125
|
+
* Hide label while keeping it accessible for screen readers
|
|
126
|
+
*/
|
|
127
|
+
hideLabel: boolean;
|
|
124
128
|
/**
|
|
125
129
|
* Sets the optional helper text.
|
|
126
130
|
*/
|
|
@@ -343,5 +347,5 @@ export declare class ComboBox implements OnChanges, AfterViewInit, AfterContentI
|
|
|
343
347
|
protected updateSelected(): void;
|
|
344
348
|
protected checkForReorder(): void;
|
|
345
349
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComboBox, never>;
|
|
346
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ComboBox, "cds-combo-box, ibm-combo-box", never, { "placeholder": "placeholder"; "openMenuAria": "openMenuAria"; "closeMenuAria": "closeMenuAria"; "clearSelectionsTitle": "clearSelectionsTitle"; "clearSelectionsAria": "clearSelectionsAria"; "clearSelectionTitle": "clearSelectionTitle"; "clearSelectionAria": "clearSelectionAria"; "id": "id"; "labelId": "labelId"; "items": "items"; "type": "type"; "size": "size"; "itemValueKey": "itemValueKey"; "label": "label"; "helperText": "helperText"; "appendInline": "appendInline"; "invalid": "invalid"; "invalidText": "invalidText"; "warn": "warn"; "warnText": "warnText"; "maxLength": "maxLength"; "theme": "theme"; "selectionFeedback": "selectionFeedback"; "autocomplete": "autocomplete"; "dropUp": "dropUp"; "disabled": "disabled"; }, { "selected": "selected"; "submit": "submit"; "close": "close"; "search": "search"; "clear": "clear"; }, ["view"], ["*"], false>;
|
|
350
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ComboBox, "cds-combo-box, ibm-combo-box", never, { "placeholder": "placeholder"; "openMenuAria": "openMenuAria"; "closeMenuAria": "closeMenuAria"; "clearSelectionsTitle": "clearSelectionsTitle"; "clearSelectionsAria": "clearSelectionsAria"; "clearSelectionTitle": "clearSelectionTitle"; "clearSelectionAria": "clearSelectionAria"; "id": "id"; "labelId": "labelId"; "items": "items"; "type": "type"; "size": "size"; "itemValueKey": "itemValueKey"; "label": "label"; "hideLabel": "hideLabel"; "helperText": "helperText"; "appendInline": "appendInline"; "invalid": "invalid"; "invalidText": "invalidText"; "warn": "warn"; "warnText": "warnText"; "maxLength": "maxLength"; "theme": "theme"; "selectionFeedback": "selectionFeedback"; "autocomplete": "autocomplete"; "dropUp": "dropUp"; "disabled": "disabled"; }, { "selected": "selected"; "submit": "submit"; "close": "close"; "search": "search"; "clear": "clear"; }, ["view"], ["*"], false>;
|
|
347
351
|
}
|