@indigina/ui-kit 1.0.131 → 1.0.132
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-checkbox/kit-checkbox.component.mjs +15 -4
- package/esm2020/lib/components/kit-radio-button/kit-radio-button.component.mjs +3 -3
- package/esm2020/lib/components/kit-radio-button/kit-radio-button.model.mjs +1 -1
- package/fesm2015/indigina-ui-kit.mjs +16 -5
- package/fesm2015/indigina-ui-kit.mjs.map +1 -1
- package/fesm2020/indigina-ui-kit.mjs +16 -5
- package/fesm2020/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-checkbox/kit-checkbox.component.d.ts +6 -1
- package/lib/components/kit-radio-button/kit-radio-button.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -21,6 +21,10 @@ export declare class KitCheckboxComponent implements ControlValueAccessor {
|
|
|
21
21
|
* Defines a default value
|
|
22
22
|
*/
|
|
23
23
|
defaultChecked: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Defines whether checkbox be in readonly state
|
|
26
|
+
*/
|
|
27
|
+
readonly: boolean;
|
|
24
28
|
/**
|
|
25
29
|
* Defines a particular state for the component
|
|
26
30
|
*/
|
|
@@ -50,11 +54,12 @@ export declare class KitCheckboxComponent implements ControlValueAccessor {
|
|
|
50
54
|
*/
|
|
51
55
|
onTouched: (value: boolean) => void;
|
|
52
56
|
onInputStateChange(event: Event): void;
|
|
57
|
+
handleClick(event: MouseEvent): void;
|
|
53
58
|
registerOnChange(fn: CheckboxValueFn): void;
|
|
54
59
|
registerOnTouched(fn: CheckboxValueFn): void;
|
|
55
60
|
writeValue(value: boolean): void;
|
|
56
61
|
setDisabledState(disabled: boolean): void;
|
|
57
62
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitCheckboxComponent, never>;
|
|
58
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitCheckboxComponent, "kit-checkbox", never, { "label": "label"; "disabled": "disabled"; "defaultChecked": "defaultChecked"; "state": "state"; "messageIcon": "messageIcon"; "messageText": "messageText"; "messageType": "messageType"; }, { "changed": "changed"; }, never, never>;
|
|
63
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitCheckboxComponent, "kit-checkbox", never, { "label": "label"; "disabled": "disabled"; "defaultChecked": "defaultChecked"; "readonly": "readonly"; "state": "state"; "messageIcon": "messageIcon"; "messageText": "messageText"; "messageType": "messageType"; }, { "changed": "changed"; }, never, never>;
|
|
59
64
|
}
|
|
60
65
|
export {};
|