@educarehq/solaris-components 0.3.0 → 0.3.2
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
|
@@ -439,6 +439,7 @@ declare class SolarisNotificationItemComponent {
|
|
|
439
439
|
readonly secondsLeft: i0.Signal<number>;
|
|
440
440
|
readonly progress: i0.Signal<number>;
|
|
441
441
|
readonly iconClass: i0.Signal<"ph-check-circle" | "ph-warning-circle" | "ph-x-circle" | "ph-info">;
|
|
442
|
+
protected readonly isCompactHeader: i0.Signal<boolean>;
|
|
442
443
|
toggleExpanded(): void;
|
|
443
444
|
toggleUserPause(): void;
|
|
444
445
|
close(): void;
|
|
@@ -1272,12 +1273,12 @@ declare class FormField {
|
|
|
1272
1273
|
label?: string;
|
|
1273
1274
|
hintKey?: string;
|
|
1274
1275
|
labelKey?: string;
|
|
1275
|
-
invalid: boolean | null;
|
|
1276
1276
|
radius: SolarisFormFieldRadius;
|
|
1277
1277
|
appearance: SolarisFormFieldAppearance;
|
|
1278
1278
|
showErrors: SolarisFormFieldShowErrors;
|
|
1279
1279
|
private readonly _tick;
|
|
1280
1280
|
readonly customErrorKey: i0.InputSignal<string>;
|
|
1281
|
+
readonly invalid: i0.InputSignal<boolean | null>;
|
|
1281
1282
|
readonly customErrorParams: i0.InputSignal<Record<string, unknown> | undefined>;
|
|
1282
1283
|
constructor();
|
|
1283
1284
|
get hasPrefix(): boolean;
|
|
@@ -1289,7 +1290,7 @@ declare class FormField {
|
|
|
1289
1290
|
readonly errorParams: i0.Signal<Record<string, unknown> | 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; }; "
|
|
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; }; "radius": { "alias": "radius"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "showErrors": { "alias": "showErrors"; "required": false; }; "customErrorKey": { "alias": "customErrorKey"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "customErrorParams": { "alias": "customErrorParams"; "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>;
|