@educarehq/solaris-components 0.2.7 → 0.2.9

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.2.7",
3
+ "version": "0.2.9",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^21.1.0",
6
6
  "intl-tel-input": "^26.0.9",
@@ -1277,6 +1277,8 @@ declare class FormField {
1277
1277
  appearance: SolarisFormFieldAppearance;
1278
1278
  showErrors: SolarisFormFieldShowErrors;
1279
1279
  private readonly _tick;
1280
+ readonly customErrorKey: i0.InputSignal<string>;
1281
+ readonly customErrorParams: i0.InputSignal<Record<string, unknown> | undefined>;
1280
1282
  constructor();
1281
1283
  get hasPrefix(): boolean;
1282
1284
  get hasSuffix(): boolean;
@@ -1284,12 +1286,10 @@ declare class FormField {
1284
1286
  private getPasswordErrorKey;
1285
1287
  readonly showPasswordToggle: i0.Signal<boolean>;
1286
1288
  readonly invalidComputed: i0.Signal<boolean>;
1287
- readonly errorParams: i0.Signal<{
1288
- requiredLength: any;
1289
- } | undefined>;
1289
+ readonly errorParams: i0.Signal<Record<string, unknown> | undefined>;
1290
1290
  readonly errorKey: i0.Signal<string>;
1291
1291
  static ɵfac: i0.ɵɵFactoryDeclaration<FormField, never>;
1292
- static ɵcmp: i0.ɵɵComponentDeclaration<FormField, "solaris-form-field", never, { "hint": { "alias": "hint"; "required": false; }; "label": { "alias": "label"; "required": false; }; "hintKey": { "alias": "hintKey"; "required": false; }; "labelKey": { "alias": "labelKey"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "showErrors": { "alias": "showErrors"; "required": false; }; }, {}, ["prefix", "suffix"], ["[solaris-prefix]", "*", "[solaris-suffix]", "[form-field-message]"], true, never>;
1292
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormField, "solaris-form-field", never, { "hint": { "alias": "hint"; "required": false; }; "label": { "alias": "label"; "required": false; }; "hintKey": { "alias": "hintKey"; "required": false; }; "labelKey": { "alias": "labelKey"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "showErrors": { "alias": "showErrors"; "required": false; }; "customErrorKey": { "alias": "customErrorKey"; "required": false; "isSignal": true; }; "customErrorParams": { "alias": "customErrorParams"; "required": false; "isSignal": true; }; }, {}, ["prefix", "suffix"], ["[solaris-prefix]", "*", "[solaris-suffix]", "[form-field-message]"], true, never>;
1293
1293
  }
1294
1294
 
1295
1295
  type SolarisSelectNode<T = any> = SolarisSelectItem<T> | SolarisSelectDivider | SolarisSelectGroup<T>;