@indigina/ui-kit 1.0.63 → 1.0.64
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/indigina-ui-kit.umd.js +3 -2
- package/bundles/indigina-ui-kit.umd.js.map +1 -1
- package/esm2015/lib/components/kit-dropdown/kit-dropdown.component.js +4 -3
- package/fesm2015/indigina-ui-kit.js +3 -2
- package/fesm2015/indigina-ui-kit.js.map +1 -1
- package/indigina-ui-kit.metadata.json +1 -1
- package/lib/components/kit-dropdown/kit-dropdown.component.d.ts +5 -0
- package/package.json +1 -1
|
@@ -46,6 +46,11 @@ export declare class KitDropdownComponent<T> implements ControlValueAccessor {
|
|
|
46
46
|
* Defines a particular state for the component
|
|
47
47
|
*/
|
|
48
48
|
state: KitAutocompleteState;
|
|
49
|
+
/**
|
|
50
|
+
* An item that is going to be presented as a default value.
|
|
51
|
+
* Using as a placeholder
|
|
52
|
+
*/
|
|
53
|
+
defaultItem?: KitDropdownItem<T>;
|
|
49
54
|
/**
|
|
50
55
|
* occurs once an item in the dropdown is selected
|
|
51
56
|
*/
|