@yuuvis/client-framework 3.14.0 → 3.14.1
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuuvis/client-framework",
|
|
3
|
-
"version": "3.14.
|
|
3
|
+
"version": "3.14.1",
|
|
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": "^21.2.9",
|
|
9
9
|
"@angular/core": "^21.2.9",
|
|
10
10
|
"angular-gridster2": "^21.0.1",
|
|
11
|
-
"@yuuvis/client-core": "^3.14.
|
|
12
|
-
"@yuuvis/client-shell-core": "^3.14.
|
|
13
|
-
"@yuuvis/client-components": "^3.14.
|
|
11
|
+
"@yuuvis/client-core": "^3.14.1",
|
|
12
|
+
"@yuuvis/client-shell-core": "^3.14.1",
|
|
13
|
+
"@yuuvis/client-components": "^3.14.1",
|
|
14
14
|
"ng-dynamic-component": "^10.8.2",
|
|
15
15
|
"modern-normalize": "^3.0.1"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@angular/material": "^21.2.7",
|
|
19
19
|
"@ngrx/signals": "^21.1.0",
|
|
20
|
-
"@yuuvis/material": "^3.14.
|
|
20
|
+
"@yuuvis/material": "^3.14.1",
|
|
21
21
|
"@yuuvis/media-viewer": "^3.0.6",
|
|
22
22
|
"angular-split": "^20.0.0",
|
|
23
23
|
"vis-network": "^10.0.2",
|
|
@@ -579,7 +579,7 @@ interface ReferenceEntry {
|
|
|
579
579
|
/**
|
|
580
580
|
* Form input for references to other dms objects. As the user types, a CMIS
|
|
581
581
|
* fulltext search (narrowed to the allowed target types from the field's
|
|
582
|
-
* `
|
|
582
|
+
* `object:reference[...]` classification) provides suggestions. The selected object
|
|
583
583
|
* id(s) are stored; on load they are resolved back to display chips.
|
|
584
584
|
*
|
|
585
585
|
* ## Label retrieval
|
|
@@ -612,7 +612,7 @@ interface ReferenceEntry {
|
|
|
612
612
|
* display the object without an extra fetch.
|
|
613
613
|
*
|
|
614
614
|
* @example
|
|
615
|
-
* <yuv-reference [multiselect]="true" [classifications]="['
|
|
615
|
+
* <yuv-reference [multiselect]="true" [classifications]="['object:reference[appCasem:correctionDocument]']" />
|
|
616
616
|
*/
|
|
617
617
|
declare class ReferenceComponent extends AbstractMatFormField<string | string[] | undefined> implements ControlValueAccessor, OnInit, OnDestroy {
|
|
618
618
|
#private;
|
|
@@ -632,7 +632,7 @@ declare class ReferenceComponent extends AbstractMatFormField<string | string[]
|
|
|
632
632
|
*/
|
|
633
633
|
multiselect: _angular_core.InputSignal<boolean>;
|
|
634
634
|
/**
|
|
635
|
-
* Additional semantics for the form element. The `
|
|
635
|
+
* Additional semantics for the form element. The `object:reference[...]` classification
|
|
636
636
|
* restricts the suggestions to the target types listed in the brackets.
|
|
637
637
|
*/
|
|
638
638
|
classifications: _angular_core.InputSignal<string[] | undefined>;
|