@educarehq/solaris-components 0.4.3 → 0.4.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@educarehq/solaris-components",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^21.1.0",
6
6
  "intl-tel-input": "^26.0.9",
@@ -1178,7 +1178,9 @@ type Iso2 = Lowercase<string>;
1178
1178
  type PhoneFormat = 'e164';
1179
1179
 
1180
1180
  declare class SolarisPhoneInput implements AfterViewInit, OnDestroy, ControlValueAccessor, Validator {
1181
+ private readonly field;
1181
1182
  private readonly renderer;
1183
+ private readonly injector;
1182
1184
  readonly marker = "";
1183
1185
  inputRef?: ElementRef<HTMLInputElement>;
1184
1186
  set placeholder(v: string | undefined);
@@ -1198,6 +1200,7 @@ declare class SolarisPhoneInput implements AfterViewInit, OnDestroy, ControlValu
1198
1200
  private onChange;
1199
1201
  private onTouched;
1200
1202
  private onValidatorChange?;
1203
+ constructor();
1201
1204
  ngAfterViewInit(): void;
1202
1205
  ngOnDestroy(): void;
1203
1206
  writeValue(value: string | null): void;
@@ -1289,6 +1292,7 @@ declare class InputTextDirective {
1289
1292
  }
1290
1293
 
1291
1294
  declare class PasswordToggle {
1295
+ private readonly translationService;
1292
1296
  readonly solarisSuffix = "";
1293
1297
  private readonly field;
1294
1298
  protected visible: () => boolean;