@masterteam/work-center 0.0.19 → 0.0.20
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.20",
|
|
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/
|
|
24
|
-
"@masterteam/
|
|
25
|
-
"@masterteam/forms": "^0.0.
|
|
26
|
-
"@masterteam/
|
|
27
|
-
"@masterteam/
|
|
28
|
-
"@masterteam/
|
|
23
|
+
"@masterteam/components": "^0.0.143",
|
|
24
|
+
"@masterteam/client-components": "^0.0.26",
|
|
25
|
+
"@masterteam/forms": "^0.0.66",
|
|
26
|
+
"@masterteam/discussion": "^0.0.11",
|
|
27
|
+
"@masterteam/structure-builder": "^0.0.45",
|
|
28
|
+
"@masterteam/icons": "^0.0.14"
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"exports": {
|
|
@@ -247,7 +247,15 @@ declare class WorkCenterPage {
|
|
|
247
247
|
readonly runtimeFiltersChanged: _angular_core.OutputEmitterRef<WorkCenterFilterRule[]>;
|
|
248
248
|
readonly itemClicked: _angular_core.OutputEmitterRef<string>;
|
|
249
249
|
protected readonly context: _angular_core.Signal<_masterteam_work_center.WorkCenterContext>;
|
|
250
|
-
|
|
250
|
+
private readonly _menuItems;
|
|
251
|
+
protected readonly menuItems: _angular_core.Signal<{
|
|
252
|
+
subtitle: string;
|
|
253
|
+
icon: string;
|
|
254
|
+
title: string;
|
|
255
|
+
color: string;
|
|
256
|
+
count: number;
|
|
257
|
+
key: string;
|
|
258
|
+
}[]>;
|
|
251
259
|
protected readonly rows: _angular_core.Signal<Record<string, unknown>[]>;
|
|
252
260
|
protected readonly columns: _angular_core.Signal<_masterteam_components_table.ColumnDef[]>;
|
|
253
261
|
protected readonly kpis: _angular_core.Signal<_masterteam_components_statistic_card.StatisticCardData[]>;
|