@educarehq/solaris-components 0.2.7 → 0.2.8
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
|
@@ -1277,6 +1277,7 @@ declare class FormField {
|
|
|
1277
1277
|
appearance: SolarisFormFieldAppearance;
|
|
1278
1278
|
showErrors: SolarisFormFieldShowErrors;
|
|
1279
1279
|
private readonly _tick;
|
|
1280
|
+
readonly customErrorKey: i0.InputSignal<string>;
|
|
1280
1281
|
constructor();
|
|
1281
1282
|
get hasPrefix(): boolean;
|
|
1282
1283
|
get hasSuffix(): boolean;
|
|
@@ -1289,7 +1290,7 @@ declare class FormField {
|
|
|
1289
1290
|
} | undefined>;
|
|
1290
1291
|
readonly errorKey: i0.Signal<string>;
|
|
1291
1292
|
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>;
|
|
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>;
|
|
1293
1294
|
}
|
|
1294
1295
|
|
|
1295
1296
|
type SolarisSelectNode<T = any> = SolarisSelectItem<T> | SolarisSelectDivider | SolarisSelectGroup<T>;
|