@educarehq/solaris-components 0.3.2 → 0.3.5
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
|
@@ -1289,6 +1289,7 @@ declare class FormField {
|
|
|
1289
1289
|
readonly invalidComputed: i0.Signal<boolean>;
|
|
1290
1290
|
readonly errorParams: i0.Signal<Record<string, unknown> | undefined>;
|
|
1291
1291
|
readonly errorKey: i0.Signal<string>;
|
|
1292
|
+
readonly disabledComputed: i0.Signal<boolean>;
|
|
1292
1293
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormField, never>;
|
|
1293
1294
|
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>;
|
|
1294
1295
|
}
|
|
@@ -1356,6 +1357,7 @@ declare class SolarisSelect implements OnInit, ControlValueAccessor, AfterViewIn
|
|
|
1356
1357
|
triggerInput?: ElementRef<HTMLInputElement>;
|
|
1357
1358
|
get dataOpen(): "true" | null;
|
|
1358
1359
|
get dataCompact(): "true" | null;
|
|
1360
|
+
get dataMultiple(): "true" | "false";
|
|
1359
1361
|
private readonly _rootNodes;
|
|
1360
1362
|
set items(v: SolarisSelectNode[] | null | undefined);
|
|
1361
1363
|
private sameCvaValue;
|
|
@@ -1388,7 +1390,8 @@ declare class SolarisSelect implements OnInit, ControlValueAccessor, AfterViewIn
|
|
|
1388
1390
|
readonly selectedText: i0.Signal<string>;
|
|
1389
1391
|
readonly triggerValue: i0.Signal<string>;
|
|
1390
1392
|
readonly activeOptionId: i0.Signal<string>;
|
|
1391
|
-
readonly
|
|
1393
|
+
readonly inputPlaceholderKey: i0.Signal<string>;
|
|
1394
|
+
readonly inputPlaceholderText: i0.Signal<string>;
|
|
1392
1395
|
private readonly _value;
|
|
1393
1396
|
readonly selectedItems: i0.Signal<SolarisSelectItem<any>[]>;
|
|
1394
1397
|
private readonly _stack;
|