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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ecabs-components",
3
- "version": "1.1.68",
3
+ "version": "1.1.70",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^16.2.12",
6
6
  "@angular/common": "^16.2.12",
@@ -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-100);
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-200);
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-500);
5
+ border: 1px solid var(--color-gray-300);
6
6
 
7
7
  .ecabs-tel-input-input {
8
- padding: calc-rem(8) calc-rem(8) calc-rem(8) calc-rem(105px) !important;
8
+ padding: calc-rem(8px 8px 8px 105px) !important;
9
9
  }
10
10
 
11
11
  .country-selector {