@yuuvis/client-framework 2.3.12 → 2.3.13
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/fesm2022/yuuvis-client-framework-forms.mjs +11 -11
- package/fesm2022/yuuvis-client-framework-forms.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-metadata-form.mjs +10 -7
- package/fesm2022/yuuvis-client-framework-metadata-form.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-flavor.mjs +4 -2
- package/fesm2022/yuuvis-client-framework-object-flavor.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-form.mjs.map +1 -1
- package/forms/lib/elements/catalog/catalog.component.d.ts +2 -2
- package/metadata-form/lib/object-metadata-element-template.directive.d.ts +2 -2
- package/package.json +4 -4
|
@@ -15,7 +15,7 @@ export declare class CatalogComponent extends AbstractMatFormField<string | stri
|
|
|
15
15
|
/**
|
|
16
16
|
* Possibles values are `EDIT` (default),`SEARCH`,`CREATE`. In search situation validation of the form element will be turned off, so you are able to enter search terms that do not meet the elements validators.
|
|
17
17
|
*/
|
|
18
|
-
situation
|
|
18
|
+
situation: import("@angular/core").InputSignal<string | undefined>;
|
|
19
19
|
ngControl: import("@angular/forms").NgControl | null;
|
|
20
20
|
readonly fc: FormControl<string | string[] | null | undefined>;
|
|
21
21
|
propagateChange: (_: any) => void;
|
|
@@ -26,5 +26,5 @@ export declare class CatalogComponent extends AbstractMatFormField<string | stri
|
|
|
26
26
|
ngOnInit(): void;
|
|
27
27
|
ngOnDestroy(): void;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CatalogComponent, "yuv-catalog", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "classifications": { "alias": "classifications"; "required": false; "isSignal": true; }; "situation": { "alias": "situation"; "required": false; }; }, {}, never, never, true, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CatalogComponent, "yuv-catalog", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "classifications": { "alias": "classifications"; "required": false; "isSignal": true; }; "situation": { "alias": "situation"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
30
30
|
}
|
|
@@ -20,7 +20,7 @@ export declare class ObjectMetadataElementTemplateDirective implements OnInit, O
|
|
|
20
20
|
* Bucket to register the template. Use 'default' for templates that should be
|
|
21
21
|
* used across all situations.
|
|
22
22
|
*/
|
|
23
|
-
yuvMetadataElementTemplate
|
|
23
|
+
yuvMetadataElementTemplate: import("@angular/core").InputSignal<string | undefined>;
|
|
24
24
|
/**
|
|
25
25
|
* Situation to register the template for. So only object forms for that
|
|
26
26
|
* situation (CREATE, EDIT, SEARCH) will use the template. Defaults to `EDIT`.
|
|
@@ -41,5 +41,5 @@ export declare class ObjectMetadataElementTemplateDirective implements OnInit, O
|
|
|
41
41
|
ngOnInit(): void;
|
|
42
42
|
ngOnDestroy(): void;
|
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectMetadataElementTemplateDirective, never>;
|
|
44
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ObjectMetadataElementTemplateDirective, "[yuvMetadataElementTemplate]", never, { "yuvMetadataElementTemplate": { "alias": "yuvMetadataElementTemplate"; "required": false; }; "situation": { "alias": "situation"; "required": false; "isSignal": true; }; "propertyType": { "alias": "propertyType"; "required": false; "isSignal": true; }; "propertyName": { "alias": "propertyName"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
44
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ObjectMetadataElementTemplateDirective, "[yuvMetadataElementTemplate]", never, { "yuvMetadataElementTemplate": { "alias": "yuvMetadataElementTemplate"; "required": false; "isSignal": true; }; "situation": { "alias": "situation"; "required": false; "isSignal": true; }; "propertyType": { "alias": "propertyType"; "required": false; "isSignal": true; }; "propertyName": { "alias": "propertyName"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
45
45
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuuvis/client-framework",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.13",
|
|
4
4
|
"author": "OPTIMAL SYSTEMS GmbH <npm@optimal-systems.de>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"peerDependencies": {
|
|
@@ -8,15 +8,15 @@
|
|
|
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.3.
|
|
12
|
-
"@yuuvis/client-shell-core": "^2.3.
|
|
11
|
+
"@yuuvis/client-core": "^2.3.13",
|
|
12
|
+
"@yuuvis/client-shell-core": "^2.3.13",
|
|
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.3.
|
|
19
|
+
"@yuuvis/material": "2.3.13",
|
|
20
20
|
"@yuuvis/media-viewer": "^2.0.10",
|
|
21
21
|
"angular-split": "^19.0.0",
|
|
22
22
|
"tslib": "^2.3.0"
|