valtech-components 2.0.392 → 2.0.393
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/esm2022/lib/components/molecules/multi-select-simple/multi-select-simple.component.mjs +56 -4
- package/esm2022/lib/components/organisms/form/form.component.mjs +12 -1
- package/fesm2022/valtech-components.mjs +66 -3
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/molecules/multi-select-simple/multi-select-simple.component.d.ts +2 -0
- package/lib/components/organisms/article/article.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ export declare class MultiSelectSimpleComponent implements OnInit, OnDestroy, On
|
|
|
13
13
|
isOpen: import("@angular/core").WritableSignal<boolean>;
|
|
14
14
|
searchTerm: import("@angular/core").WritableSignal<string>;
|
|
15
15
|
selectedValues: import("@angular/core").WritableSignal<string[]>;
|
|
16
|
+
optionsSignal: import("@angular/core").WritableSignal<InputOption[]>;
|
|
16
17
|
displayValue: import("@angular/core").Signal<any>;
|
|
17
18
|
filteredOptions: import("@angular/core").Signal<InputOption[]>;
|
|
18
19
|
searchPlaceholder: string;
|
|
@@ -38,6 +39,7 @@ export declare class MultiSelectSimpleComponent implements OnInit, OnDestroy, On
|
|
|
38
39
|
private emitValue;
|
|
39
40
|
private getOptionByValue;
|
|
40
41
|
private applyDefaultValue;
|
|
42
|
+
debugOptions(): void;
|
|
41
43
|
private syncSelectedValues;
|
|
42
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectSimpleComponent, never>;
|
|
43
45
|
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectSimpleComponent, "val-multi-select-simple", never, { "props": { "alias": "props"; "required": false; }; "labelProperty": { "alias": "labelProperty"; "required": false; }; "valueProperty": { "alias": "valueProperty"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -75,7 +75,7 @@ export declare class ArticleComponent implements OnInit {
|
|
|
75
75
|
shape?: "round";
|
|
76
76
|
size?: "small" | "large" | "default";
|
|
77
77
|
fill?: "default" | "clear" | "outline" | "solid";
|
|
78
|
-
type: "
|
|
78
|
+
type: "reset" | "submit" | "button";
|
|
79
79
|
token?: string;
|
|
80
80
|
ref?: any;
|
|
81
81
|
handler?: (value: any) => any;
|