ecabs-components 1.1.68 → 1.1.70
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/README.md +3 -0
- package/esm2022/lib/ecabs-checkbox-toggle/ecabs-checkbox-toggle.component.mjs +2 -2
- package/esm2022/lib/ecabs-checkbox-v2/ecabs-checkbox-v2.component.mjs +12 -6
- package/esm2022/lib/ecabs-chip-autocomplete/ecabs-chip-autocomplete.component.mjs +13 -9
- package/fesm2022/ecabs-components.mjs +21 -12
- package/fesm2022/ecabs-components.mjs.map +1 -1
- package/lib/ecabs-checkbox-v2/ecabs-checkbox-v2.component.d.ts +2 -1
- package/package.json +1 -1
- package/src/assets/styles/scss/modules/_form.scss +2 -2
- package/src/assets/styles/scss/modules/_phone.scss +2 -2
|
@@ -8,6 +8,7 @@ export declare class EcabsCheckboxV2Component extends EcabsElementBaseComponent
|
|
|
8
8
|
private readonly destroyRef;
|
|
9
9
|
label: string;
|
|
10
10
|
showLabel: boolean;
|
|
11
|
+
set checked(value: boolean);
|
|
11
12
|
readonly checkboxChanged: EventEmitter<boolean>;
|
|
12
13
|
val: boolean;
|
|
13
14
|
get value(): boolean;
|
|
@@ -25,5 +26,5 @@ export declare class EcabsCheckboxV2Component extends EcabsElementBaseComponent
|
|
|
25
26
|
registerOnChange(fn: (value: boolean) => void): void;
|
|
26
27
|
registerOnTouched(fn: () => void): void;
|
|
27
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<EcabsCheckboxV2Component, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EcabsCheckboxV2Component, "ecabs-checkbox-v2", never, { "label": { "alias": "label"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; }, { "checkboxChanged": "checkboxChanged"; }, never, never, false, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EcabsCheckboxV2Component, "ecabs-checkbox-v2", never, { "label": { "alias": "label"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "checkboxChanged": "checkboxChanged"; }, never, never, false, never>;
|
|
29
30
|
}
|
package/package.json
CHANGED
|
@@ -65,7 +65,7 @@ form {
|
|
|
65
65
|
position: absolute !important;
|
|
66
66
|
top: 50%;
|
|
67
67
|
right: calc-rem(16px);
|
|
68
|
-
color: var(--color-gray-
|
|
68
|
+
color: var(--color-gray-300);
|
|
69
69
|
transform: translateY(-50%);
|
|
70
70
|
|
|
71
71
|
&,
|
|
@@ -106,7 +106,7 @@ form {
|
|
|
106
106
|
width: 100%;
|
|
107
107
|
padding: calc-rem(16px);
|
|
108
108
|
border-radius: $border-radius-medium;
|
|
109
|
-
border: 1px solid var(--color-gray-
|
|
109
|
+
border: 1px solid var(--color-gray-300);
|
|
110
110
|
color: var(--color-black);
|
|
111
111
|
line-height: $base-line-height;
|
|
112
112
|
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
.ecabs-tel-input-container {
|
|
3
3
|
position: relative;
|
|
4
4
|
border-radius: $border-radius-base;
|
|
5
|
-
border: 1px solid var(--color-gray-
|
|
5
|
+
border: 1px solid var(--color-gray-300);
|
|
6
6
|
|
|
7
7
|
.ecabs-tel-input-input {
|
|
8
|
-
padding: calc-rem(
|
|
8
|
+
padding: calc-rem(8px 8px 8px 105px) !important;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
.country-selector {
|