@educarehq/solaris-components 0.2.8 → 0.3.0
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
|
@@ -1278,6 +1278,7 @@ declare class FormField {
|
|
|
1278
1278
|
showErrors: SolarisFormFieldShowErrors;
|
|
1279
1279
|
private readonly _tick;
|
|
1280
1280
|
readonly customErrorKey: i0.InputSignal<string>;
|
|
1281
|
+
readonly customErrorParams: i0.InputSignal<Record<string, unknown> | undefined>;
|
|
1281
1282
|
constructor();
|
|
1282
1283
|
get hasPrefix(): boolean;
|
|
1283
1284
|
get hasSuffix(): boolean;
|
|
@@ -1285,12 +1286,10 @@ declare class FormField {
|
|
|
1285
1286
|
private getPasswordErrorKey;
|
|
1286
1287
|
readonly showPasswordToggle: i0.Signal<boolean>;
|
|
1287
1288
|
readonly invalidComputed: i0.Signal<boolean>;
|
|
1288
|
-
readonly errorParams: i0.Signal<
|
|
1289
|
-
requiredLength: any;
|
|
1290
|
-
} | undefined>;
|
|
1289
|
+
readonly errorParams: i0.Signal<Record<string, unknown> | undefined>;
|
|
1291
1290
|
readonly errorKey: i0.Signal<string>;
|
|
1292
1291
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormField, never>;
|
|
1293
|
-
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; }; }, {}, ["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>;
|
|
1294
1293
|
}
|
|
1295
1294
|
|
|
1296
1295
|
type SolarisSelectNode<T = any> = SolarisSelectItem<T> | SolarisSelectDivider | SolarisSelectGroup<T>;
|