@masterteam/work-center 0.0.39 → 0.0.41
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.41",
|
|
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.
|
|
24
|
-
"@masterteam/
|
|
25
|
-
"@masterteam/
|
|
26
|
-
"@masterteam/
|
|
27
|
-
"@masterteam/
|
|
28
|
-
"@masterteam/
|
|
23
|
+
"@masterteam/client-components": "^0.0.48",
|
|
24
|
+
"@masterteam/components": "^0.0.197",
|
|
25
|
+
"@masterteam/forms": "^0.0.96",
|
|
26
|
+
"@masterteam/icons": "^0.0.17",
|
|
27
|
+
"@masterteam/discussion": "^0.0.21",
|
|
28
|
+
"@masterteam/structure-builder": "^0.0.58"
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"exports": {
|
|
@@ -13,6 +13,7 @@ import { ModalRef } from '@masterteam/components/dialog';
|
|
|
13
13
|
import { DrawerController } from '@masterteam/components/dynamic-drawer';
|
|
14
14
|
import { ModalService } from '@masterteam/components/modal';
|
|
15
15
|
import * as rxjs from 'rxjs';
|
|
16
|
+
import * as _masterteam_components_types_masterteam_components_statistic_card from '@masterteam/components/types/masterteam-components-statistic-card';
|
|
16
17
|
import * as _masterteam_components_types_masterteam_components_table from '@masterteam/components/types/masterteam-components-table';
|
|
17
18
|
import * as _masterteam_components_types_masterteam_components_client_page_menu from '@masterteam/components/types/masterteam-components-client-page-menu';
|
|
18
19
|
import { StateContext } from '@ngxs/store';
|
|
@@ -268,8 +269,9 @@ declare class WorkCenterPage {
|
|
|
268
269
|
icon: string;
|
|
269
270
|
title: string;
|
|
270
271
|
color: string;
|
|
271
|
-
count
|
|
272
|
+
count?: number;
|
|
272
273
|
key: string;
|
|
274
|
+
children?: ClientPageMenuItem[];
|
|
273
275
|
}[]>;
|
|
274
276
|
protected readonly rows: _angular_core.Signal<Record<string, unknown>[]>;
|
|
275
277
|
protected readonly columns: _angular_core.Signal<ColumnDef[]>;
|
|
@@ -445,7 +447,7 @@ declare class WorkCenterFacade {
|
|
|
445
447
|
readonly menuItems: _angular_core.Signal<_masterteam_components_types_masterteam_components_client_page_menu.ClientPageMenuItem[]>;
|
|
446
448
|
readonly rows: _angular_core.Signal<Record<string, unknown>[]>;
|
|
447
449
|
readonly columns: _angular_core.Signal<_masterteam_components_types_masterteam_components_table.ColumnDef[]>;
|
|
448
|
-
readonly kpis: _angular_core.Signal<
|
|
450
|
+
readonly kpis: _angular_core.Signal<_masterteam_components_types_masterteam_components_statistic_card.StatisticCardData[]>;
|
|
449
451
|
readonly lookups: _angular_core.Signal<WorkCenterLookups>;
|
|
450
452
|
readonly runtimeFilterSchema: _angular_core.Signal<_masterteam_work_center.WorkCenterRuntimeFilterSchema | null>;
|
|
451
453
|
readonly headerFilters: _angular_core.Signal<WorkCenterFilterRule[]>;
|
|
@@ -490,7 +492,7 @@ declare class WorkCenterState {
|
|
|
490
492
|
static menuItems(snapshot: WorkCenterAreaState): _masterteam_components_types_masterteam_components_client_page_menu.ClientPageMenuItem[];
|
|
491
493
|
static rows(snapshot: WorkCenterAreaState): Record<string, unknown>[];
|
|
492
494
|
static columns(snapshot: WorkCenterAreaState): _masterteam_components_types_masterteam_components_table.ColumnDef[];
|
|
493
|
-
static kpis(snapshot: WorkCenterAreaState):
|
|
495
|
+
static kpis(snapshot: WorkCenterAreaState): _masterteam_components_types_masterteam_components_statistic_card.StatisticCardData[];
|
|
494
496
|
static runtimeFilterSchema(snapshot: WorkCenterAreaState): WorkCenterRuntimeFilterSchema | null;
|
|
495
497
|
static headerFilters(snapshot: WorkCenterAreaState): WorkCenterFilterRule[];
|
|
496
498
|
static columnFilters(snapshot: WorkCenterAreaState): WorkCenterFilterRule[];
|