@indigina/ui-kit 1.0.115 → 1.0.118
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/esm2020/lib/components/kit-cta-panel-action/kit-cta-panel-action.component.mjs +3 -3
- package/esm2020/lib/components/kit-cta-panel-confirmation/kit-cta-panel-confirmation.component.mjs +6 -3
- package/esm2020/lib/components/kit-dropdown/kit-dropdown.component.mjs +10 -4
- package/fesm2015/indigina-ui-kit.mjs +16 -7
- package/fesm2015/indigina-ui-kit.mjs.map +1 -1
- package/fesm2020/indigina-ui-kit.mjs +16 -7
- package/fesm2020/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-cta-panel-confirmation/kit-cta-panel-confirmation.component.d.ts +2 -1
- package/lib/components/kit-dropdown/kit-dropdown.component.d.ts +5 -1
- package/package.json +1 -1
|
@@ -14,6 +14,7 @@ export declare class KitCtaPanelConfirmationComponent<T> {
|
|
|
14
14
|
private formBuilder;
|
|
15
15
|
data?: KitCtaPanelConfirmation<T>;
|
|
16
16
|
confirmButtonDisabled: boolean;
|
|
17
|
+
dropdownListHeight: number;
|
|
17
18
|
quitText: string;
|
|
18
19
|
confirmText: string;
|
|
19
20
|
quitClicked: EventEmitter<void>;
|
|
@@ -22,5 +23,5 @@ export declare class KitCtaPanelConfirmationComponent<T> {
|
|
|
22
23
|
constructor(formBuilder: FormBuilder);
|
|
23
24
|
onConfirmButtonClick(): void;
|
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitCtaPanelConfirmationComponent<any>, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitCtaPanelConfirmationComponent<any>, "kit-cta-panel-confirmation", never, { "data": "data"; "confirmButtonDisabled": "confirmButtonDisabled"; "quitText": "quitText"; "confirmText": "confirmText"; }, { "quitClicked": "quitClicked"; "confirmClicked": "confirmClicked"; }, never, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitCtaPanelConfirmationComponent<any>, "kit-cta-panel-confirmation", never, { "data": "data"; "confirmButtonDisabled": "confirmButtonDisabled"; "dropdownListHeight": "dropdownListHeight"; "quitText": "quitText"; "confirmText": "confirmText"; }, { "quitClicked": "quitClicked"; "confirmClicked": "confirmClicked"; }, never, never>;
|
|
26
27
|
}
|
|
@@ -53,6 +53,10 @@ export declare class KitDropdownComponent<T> implements ControlValueAccessor {
|
|
|
53
53
|
* Using as a placeholder
|
|
54
54
|
*/
|
|
55
55
|
defaultItem?: KitDropdownItem<T>;
|
|
56
|
+
/**
|
|
57
|
+
* Defines dropdown popup list height. By default, listHeight is 200px.
|
|
58
|
+
*/
|
|
59
|
+
listHeight: number;
|
|
56
60
|
/**
|
|
57
61
|
* occurs once an item in the dropdown is selected
|
|
58
62
|
*/
|
|
@@ -81,5 +85,5 @@ export declare class KitDropdownComponent<T> implements ControlValueAccessor {
|
|
|
81
85
|
setDisabledState(disabled: boolean): void;
|
|
82
86
|
reset(value: T): void;
|
|
83
87
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitDropdownComponent<any>, never>;
|
|
84
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitDropdownComponent<any>, "kit-dropdown", never, { "items": "items"; "selectedItem": "selectedItem"; "label": "label"; "disabled": "disabled"; "messageIcon": "messageIcon"; "messageText": "messageText"; "messageType": "messageType"; "state": "state"; "defaultItem": "defaultItem"; }, { "selected": "selected"; }, never, never>;
|
|
88
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitDropdownComponent<any>, "kit-dropdown", never, { "items": "items"; "selectedItem": "selectedItem"; "label": "label"; "disabled": "disabled"; "messageIcon": "messageIcon"; "messageText": "messageText"; "messageType": "messageType"; "state": "state"; "defaultItem": "defaultItem"; "listHeight": "listHeight"; }, { "selected": "selected"; }, never, never>;
|
|
85
89
|
}
|