@masterteam/work-center 0.0.44 → 0.0.45
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.45",
|
|
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/components": "^0.0.200",
|
|
24
|
-
"@masterteam/structure-builder": "^0.0.58",
|
|
25
23
|
"@masterteam/client-components": "^0.0.48",
|
|
26
|
-
"@masterteam/
|
|
24
|
+
"@masterteam/components": "^0.0.202",
|
|
27
25
|
"@masterteam/discussion": "^0.0.22",
|
|
28
|
-
"@masterteam/forms": "^0.0.
|
|
26
|
+
"@masterteam/forms": "^0.0.99",
|
|
27
|
+
"@masterteam/icons": "^0.0.17",
|
|
28
|
+
"@masterteam/structure-builder": "^0.0.59"
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"exports": {
|
|
@@ -46,4 +46,4 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"tslib": "^2.8.1"
|
|
48
48
|
}
|
|
49
|
-
}
|
|
49
|
+
}
|
|
@@ -296,6 +296,12 @@ declare class WorkCenterPage {
|
|
|
296
296
|
exportable?: boolean;
|
|
297
297
|
exportValue?: (row: any) => string | number | boolean | null;
|
|
298
298
|
}[]>;
|
|
299
|
+
/**
|
|
300
|
+
* Maps each status/group display label to its total count from the KPI
|
|
301
|
+
* summary cards so the group header shows the real backend total rather than
|
|
302
|
+
* the current-page row count.
|
|
303
|
+
*/
|
|
304
|
+
protected readonly statusGroupCountMap: _angular_core.Signal<Map<string, number>>;
|
|
299
305
|
protected readonly propertyFilterSchema: _angular_core.Signal<PropertyFilterBuilderSchema | null>;
|
|
300
306
|
protected readonly showGeneralTaskCreateButton: _angular_core.Signal<boolean>;
|
|
301
307
|
protected readonly generalTaskButtonLabel: _angular_core.Signal<string>;
|