@energycap/components 0.28.9 → 0.28.11
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/bundles/energycap-components.umd.js +5 -4
- package/bundles/energycap-components.umd.js.map +1 -1
- package/bundles/energycap-components.umd.min.js +2 -2
- package/bundles/energycap-components.umd.min.js.map +1 -1
- package/energycap-components.metadata.json +1 -1
- package/esm2015/lib/controls/banner/banner.component.js +1 -1
- package/esm2015/lib/controls/item-picker/item-picker.component.js +3 -2
- package/esm2015/lib/controls/menu/menu.component.js +3 -3
- package/fesm2015/energycap-components.js +5 -4
- package/fesm2015/energycap-components.js.map +1 -1
- package/lib/controls/item-picker/item-picker.component.d.ts +5 -0
- package/package.json +1 -1
|
@@ -49,6 +49,11 @@ export declare class ItemPickerComponent<T> implements OnInit, OnChanges, OnDest
|
|
|
49
49
|
* to inherit the default message.
|
|
50
50
|
*/
|
|
51
51
|
noDataMessage: string;
|
|
52
|
+
/**
|
|
53
|
+
* Used to override the default no selected items message. If provided this will be used, otherwise the default message with the item name
|
|
54
|
+
* interpolation will be used.
|
|
55
|
+
*/
|
|
56
|
+
noSelectedItemsMessage?: string;
|
|
52
57
|
/** List of available items to pick from */
|
|
53
58
|
availableItems: PickerItem[];
|
|
54
59
|
/**
|