@masterteam/work-center 0.0.39 → 0.0.40
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.40",
|
|
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.186",
|
|
24
23
|
"@masterteam/client-components": "^0.0.47",
|
|
24
|
+
"@masterteam/components": "^0.0.191",
|
|
25
|
+
"@masterteam/forms": "^0.0.92",
|
|
26
|
+
"@masterteam/discussion": "^0.0.18",
|
|
25
27
|
"@masterteam/icons": "^0.0.16",
|
|
26
|
-
"@masterteam/
|
|
27
|
-
"@masterteam/structure-builder": "^0.0.57",
|
|
28
|
-
"@masterteam/discussion": "^0.0.18"
|
|
28
|
+
"@masterteam/structure-builder": "^0.0.57"
|
|
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';
|
|
@@ -445,7 +446,7 @@ declare class WorkCenterFacade {
|
|
|
445
446
|
readonly menuItems: _angular_core.Signal<_masterteam_components_types_masterteam_components_client_page_menu.ClientPageMenuItem[]>;
|
|
446
447
|
readonly rows: _angular_core.Signal<Record<string, unknown>[]>;
|
|
447
448
|
readonly columns: _angular_core.Signal<_masterteam_components_types_masterteam_components_table.ColumnDef[]>;
|
|
448
|
-
readonly kpis: _angular_core.Signal<
|
|
449
|
+
readonly kpis: _angular_core.Signal<_masterteam_components_types_masterteam_components_statistic_card.StatisticCardData[]>;
|
|
449
450
|
readonly lookups: _angular_core.Signal<WorkCenterLookups>;
|
|
450
451
|
readonly runtimeFilterSchema: _angular_core.Signal<_masterteam_work_center.WorkCenterRuntimeFilterSchema | null>;
|
|
451
452
|
readonly headerFilters: _angular_core.Signal<WorkCenterFilterRule[]>;
|
|
@@ -490,7 +491,7 @@ declare class WorkCenterState {
|
|
|
490
491
|
static menuItems(snapshot: WorkCenterAreaState): _masterteam_components_types_masterteam_components_client_page_menu.ClientPageMenuItem[];
|
|
491
492
|
static rows(snapshot: WorkCenterAreaState): Record<string, unknown>[];
|
|
492
493
|
static columns(snapshot: WorkCenterAreaState): _masterteam_components_types_masterteam_components_table.ColumnDef[];
|
|
493
|
-
static kpis(snapshot: WorkCenterAreaState):
|
|
494
|
+
static kpis(snapshot: WorkCenterAreaState): _masterteam_components_types_masterteam_components_statistic_card.StatisticCardData[];
|
|
494
495
|
static runtimeFilterSchema(snapshot: WorkCenterAreaState): WorkCenterRuntimeFilterSchema | null;
|
|
495
496
|
static headerFilters(snapshot: WorkCenterAreaState): WorkCenterFilterRule[];
|
|
496
497
|
static columnFilters(snapshot: WorkCenterAreaState): WorkCenterFilterRule[];
|