@masterteam/work-center 0.0.59 → 0.0.61
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": "@masterteam/work-center",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.61",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/work-center",
|
|
6
6
|
"linkDirectory": false,
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"rxjs": "^7.8.2",
|
|
21
21
|
"tailwindcss": "^4.2.2",
|
|
22
22
|
"tailwindcss-primeui": "^0.6.1",
|
|
23
|
-
"@masterteam/client-components": "^0.0.
|
|
24
|
-
"@masterteam/components": "^0.0.
|
|
25
|
-
"@masterteam/
|
|
26
|
-
"@masterteam/
|
|
27
|
-
"@masterteam/discussion": "^0.0.
|
|
28
|
-
"@masterteam/
|
|
23
|
+
"@masterteam/client-components": "^0.0.66",
|
|
24
|
+
"@masterteam/components": "^0.0.238",
|
|
25
|
+
"@masterteam/icons": "^0.0.17",
|
|
26
|
+
"@masterteam/forms": "^0.0.126",
|
|
27
|
+
"@masterteam/discussion": "^0.0.26",
|
|
28
|
+
"@masterteam/structure-builder": "^0.0.61"
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"exports": {
|
|
@@ -102,6 +102,12 @@ interface WorkCenterRuntimeStatsItem {
|
|
|
102
102
|
key: string;
|
|
103
103
|
label: TranslatableDto;
|
|
104
104
|
count: number;
|
|
105
|
+
/**
|
|
106
|
+
* Backend-owned accent color for the KPI card (typically a `#hex` status
|
|
107
|
+
* color). `null` means "no color configured" — the card falls back to the
|
|
108
|
+
* neutral theme accent. Never derive a color from `key`/`label`.
|
|
109
|
+
*/
|
|
110
|
+
color?: string | null;
|
|
105
111
|
}
|
|
106
112
|
interface WorkCenterRuntimePagination {
|
|
107
113
|
page: number;
|
|
@@ -403,12 +409,12 @@ declare class WorkCenterItemModalRoute {
|
|
|
403
409
|
private readonly facade;
|
|
404
410
|
readonly modal: ModalService;
|
|
405
411
|
protected readonly lookups: _angular_core.Signal<_masterteam_work_center.WorkCenterLookups>;
|
|
406
|
-
readonly contextKey: _angular_core.
|
|
407
|
-
readonly manageRouteOutlet: _angular_core.
|
|
408
|
-
readonly showPreviewLevelAction: _angular_core.
|
|
409
|
-
readonly readOnly: _angular_core.
|
|
410
|
-
readonly appendTo: _angular_core.
|
|
411
|
-
readonly drawerStyleClass: _angular_core.
|
|
412
|
+
readonly contextKey: _angular_core.InputSignalWithTransform<string | null, string | null | undefined>;
|
|
413
|
+
readonly manageRouteOutlet: _angular_core.InputSignalWithTransform<boolean, boolean | null | undefined>;
|
|
414
|
+
readonly showPreviewLevelAction: _angular_core.InputSignalWithTransform<boolean, boolean | null | undefined>;
|
|
415
|
+
readonly readOnly: _angular_core.InputSignalWithTransform<boolean, boolean | null | undefined>;
|
|
416
|
+
readonly appendTo: _angular_core.InputSignalWithTransform<string | HTMLElement, string | HTMLElement | null | undefined>;
|
|
417
|
+
readonly drawerStyleClass: _angular_core.InputSignalWithTransform<string, string | null | undefined>;
|
|
412
418
|
readonly previewLevel: _angular_core.OutputEmitterRef<WorkCenterPreviewLevelTarget>;
|
|
413
419
|
readonly closed: _angular_core.OutputEmitterRef<void>;
|
|
414
420
|
protected readonly drawerVisible: _angular_core.WritableSignal<boolean>;
|