@yuuvis/client-framework 2.1.31 → 2.1.32
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/autocomplete/lib/autocomplete.component.d.ts +1 -0
- package/fesm2022/yuuvis-client-framework-autocomplete.mjs +10 -0
- package/fesm2022/yuuvis-client-framework-autocomplete.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-common.mjs +1 -1
- package/fesm2022/yuuvis-client-framework-common.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-forms.mjs +40 -0
- package/fesm2022/yuuvis-client-framework-forms.mjs.map +1 -1
- package/forms/lib/elements/catalog/catalog.component.d.ts +1 -0
- package/forms/lib/elements/number/number.component.d.ts +1 -0
- package/forms/lib/elements/organization/organization.component.d.ts +1 -0
- package/forms/lib/elements/organization-set/organization-set.component.d.ts +1 -0
- package/forms/lib/elements/string/string.component.d.ts +1 -0
- package/package.json +5 -5
|
@@ -22,6 +22,7 @@ export declare class CatalogComponent extends AbstractMatFormField<string | stri
|
|
|
22
22
|
writeValue(value: string | string[]): void;
|
|
23
23
|
registerOnChange(fn: any): void;
|
|
24
24
|
registerOnTouched(fn: any): void;
|
|
25
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
25
26
|
ngOnInit(): void;
|
|
26
27
|
ngOnDestroy(): void;
|
|
27
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogComponent, never>;
|
|
@@ -59,6 +59,7 @@ export declare class NumberComponent extends AbstractMatFormField<number> implem
|
|
|
59
59
|
writeValue(value: any): void;
|
|
60
60
|
registerOnChange(fn: any): void;
|
|
61
61
|
registerOnTouched(): void;
|
|
62
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
62
63
|
format(): void;
|
|
63
64
|
unformat(): void;
|
|
64
65
|
ngOnInit(): void;
|
|
@@ -64,6 +64,7 @@ export declare class OrganizationComponent extends AbstractMatFormField<FormCont
|
|
|
64
64
|
registerOnChange(fn: any): void;
|
|
65
65
|
registerOnTouched(fn: any): void;
|
|
66
66
|
private propagate;
|
|
67
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
67
68
|
resolveFn(value: any): import("rxjs").Subscription;
|
|
68
69
|
autocompleteFn(query: string): void;
|
|
69
70
|
ngOnInit(): void;
|
|
@@ -53,6 +53,7 @@ export declare class OrganizationSetComponent extends AbstractMatFormField<strin
|
|
|
53
53
|
writeValue(value: string | string[]): void;
|
|
54
54
|
registerOnChange(fn: any): void;
|
|
55
55
|
registerOnTouched(fn: any): void;
|
|
56
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
56
57
|
private propagate;
|
|
57
58
|
autocompleteFn(query: string): void;
|
|
58
59
|
ngOnInit(): void;
|
|
@@ -86,6 +86,7 @@ export declare class StringComponent extends AbstractMatFormField<string | strin
|
|
|
86
86
|
writeValue(value: string | string[]): void;
|
|
87
87
|
registerOnChange(fn: any): void;
|
|
88
88
|
registerOnTouched(): void;
|
|
89
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
89
90
|
onBlur(): void;
|
|
90
91
|
chipsAdd(event: MatChipInputEvent): void;
|
|
91
92
|
chipsRemove(v: string): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuuvis/client-framework",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.32",
|
|
4
4
|
"author": "OPTIMAL SYSTEMS GmbH <npm@optimal-systems.de>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"peerDependencies": {
|
|
@@ -8,16 +8,16 @@
|
|
|
8
8
|
"@angular/common": "^19.2.1",
|
|
9
9
|
"@angular/core": "^19.2.1",
|
|
10
10
|
"angular-gridster2": "^19.0.0",
|
|
11
|
-
"@yuuvis/client-core": "^2.1.
|
|
12
|
-
"@yuuvis/client-shell-core": "^2.1.
|
|
11
|
+
"@yuuvis/client-core": "^2.1.32",
|
|
12
|
+
"@yuuvis/client-shell-core": "^2.1.32",
|
|
13
13
|
"ng-dynamic-component": "^10.8.2",
|
|
14
14
|
"modern-normalize": "^3.0.1"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@angular/material": "^19.2.15",
|
|
18
18
|
"@ngrx/signals": "^19.2.0",
|
|
19
|
-
"@yuuvis/material": "2.1.
|
|
20
|
-
"@yuuvis/media-viewer": "^2.0.
|
|
19
|
+
"@yuuvis/material": "2.1.32",
|
|
20
|
+
"@yuuvis/media-viewer": "^2.0.6",
|
|
21
21
|
"angular-split": "^19.0.0",
|
|
22
22
|
"tslib": "^2.3.0"
|
|
23
23
|
},
|