ud-components 0.2.2 → 0.2.4
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.
|
@@ -28,6 +28,8 @@ export declare class MultiSelectComponent implements OnInit, OnDestroy {
|
|
|
28
28
|
icon?: string;
|
|
29
29
|
iconFontSet: string;
|
|
30
30
|
options: UdSelectOption[];
|
|
31
|
+
/** Set to false for single-select mode — value will be a scalar instead of an array */
|
|
32
|
+
multiple: boolean;
|
|
31
33
|
/** How many chips to show before collapsing into "+N more" */
|
|
32
34
|
maxChipsVisible: number;
|
|
33
35
|
/**
|
|
@@ -46,5 +48,5 @@ export declare class MultiSelectComponent implements OnInit, OnDestroy {
|
|
|
46
48
|
getMoreText(count: number): string;
|
|
47
49
|
private buildLabelMap;
|
|
48
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "ud-multi-select", never, { "controlName": { "alias": "controlName"; "required": true; }; "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconFontSet": { "alias": "iconFontSet"; "required": false; }; "options": { "alias": "options"; "required": false; }; "maxChipsVisible": { "alias": "maxChipsVisible"; "required": false; }; "moreText": { "alias": "moreText"; "required": false; }; }, {}, never, never, true, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "ud-multi-select", never, { "controlName": { "alias": "controlName"; "required": true; }; "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconFontSet": { "alias": "iconFontSet"; "required": false; }; "options": { "alias": "options"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "maxChipsVisible": { "alias": "maxChipsVisible"; "required": false; }; "moreText": { "alias": "moreText"; "required": false; }; }, {}, never, never, true, never>;
|
|
50
52
|
}
|