@indigina/ui-kit 1.0.140 → 1.0.142
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/assets/icons/open-sign-green.svg +11 -0
- package/esm2020/lib/components/kit-svg-icon/kit-svg-icon.const.mjs +2 -1
- package/esm2020/lib/components/kit-svg-sprite/kit-svg-sprite.component.mjs +3 -3
- package/esm2020/lib/components/kit-textarea/kit-textarea.component.mjs +10 -4
- package/fesm2015/indigina-ui-kit.mjs +12 -5
- package/fesm2015/indigina-ui-kit.mjs.map +1 -1
- package/fesm2020/indigina-ui-kit.mjs +12 -5
- package/fesm2020/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-svg-icon/kit-svg-icon.const.d.ts +1 -0
- package/lib/components/kit-textarea/kit-textarea.component.d.ts +5 -1
- package/package.json +1 -1
|
@@ -41,6 +41,7 @@ export declare enum KitSvgIcon {
|
|
|
41
41
|
STATUS = "status",
|
|
42
42
|
CLOSE_SIGN = "close-sign",
|
|
43
43
|
CLOSE_SIGN_RED = "close-sign-red",
|
|
44
|
+
OPEN_SIGN_GREEN = "open-sign-green",
|
|
44
45
|
ARROW_LEFT = "arrow-left",
|
|
45
46
|
WARNING_YELLOW = "warning-yellow",
|
|
46
47
|
CIRCLE_MINUS = "circle-minus",
|
|
@@ -49,6 +49,10 @@ export declare class KitTextareaComponent implements ControlValueAccessor, OnCha
|
|
|
49
49
|
* Defines a particular state for the component
|
|
50
50
|
*/
|
|
51
51
|
state: KitTextareaState;
|
|
52
|
+
/**
|
|
53
|
+
* Defines whether the textarea will be in the readonly mode
|
|
54
|
+
*/
|
|
55
|
+
readonly: boolean;
|
|
52
56
|
/**
|
|
53
57
|
* Defines a value that is going to be applied as a minimal textarea height
|
|
54
58
|
*/
|
|
@@ -99,5 +103,5 @@ export declare class KitTextareaComponent implements ControlValueAccessor, OnCha
|
|
|
99
103
|
*/
|
|
100
104
|
onTextareaChange(event: Event): void;
|
|
101
105
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitTextareaComponent, never>;
|
|
102
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitTextareaComponent, "kit-textarea", never, { "placeholder": "placeholder"; "label": "label"; "defaultValue": "defaultValue"; "maxlength": "maxlength"; "minLines": "minLines"; "maxLines": "maxLines"; "disabled": "disabled"; "messageIcon": "messageIcon"; "messageText": "messageText"; "state": "state"; }, { "focused": "focused"; "blured": "blured"; "changed": "changed"; }, never, never>;
|
|
106
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitTextareaComponent, "kit-textarea", never, { "placeholder": "placeholder"; "label": "label"; "defaultValue": "defaultValue"; "maxlength": "maxlength"; "minLines": "minLines"; "maxLines": "maxLines"; "disabled": "disabled"; "messageIcon": "messageIcon"; "messageText": "messageText"; "state": "state"; "readonly": "readonly"; }, { "focused": "focused"; "blured": "blured"; "changed": "changed"; }, never, never>;
|
|
103
107
|
}
|