@masterteam/work-center 0.0.16 → 0.0.18
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,31 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/work-center",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/work-center",
|
|
6
6
|
"linkDirectory": false,
|
|
7
7
|
"access": "public"
|
|
8
8
|
},
|
|
9
9
|
"peerDependencies": {
|
|
10
|
-
"@angular/common": "
|
|
11
|
-
"@angular/core": "
|
|
12
|
-
"@angular/forms": "
|
|
13
|
-
"@angular/router": "
|
|
14
|
-
"@jsverse/transloco": "
|
|
10
|
+
"@angular/common": "catalog:angular21",
|
|
11
|
+
"@angular/core": "catalog:angular21",
|
|
12
|
+
"@angular/forms": "catalog:angular21",
|
|
13
|
+
"@angular/router": "catalog:angular21",
|
|
14
|
+
"@jsverse/transloco": "catalog:i18n",
|
|
15
15
|
"@ngxs/store": "^20.1.0",
|
|
16
|
-
"@primeuix/themes": "
|
|
17
|
-
"@tailwindcss/postcss": "
|
|
18
|
-
"postcss": "
|
|
19
|
-
"primeng": "
|
|
20
|
-
"rxjs": "
|
|
21
|
-
"tailwindcss": "
|
|
22
|
-
"tailwindcss-primeui": "
|
|
23
|
-
"@masterteam/client-components": "
|
|
24
|
-
"@masterteam/
|
|
25
|
-
"@masterteam/
|
|
26
|
-
"@masterteam/forms": "
|
|
27
|
-
"@masterteam/
|
|
28
|
-
"@masterteam/
|
|
16
|
+
"@primeuix/themes": "catalog:",
|
|
17
|
+
"@tailwindcss/postcss": "catalog:",
|
|
18
|
+
"postcss": "catalog:",
|
|
19
|
+
"primeng": "catalog:",
|
|
20
|
+
"rxjs": "catalog:angular21",
|
|
21
|
+
"tailwindcss": "catalog:",
|
|
22
|
+
"tailwindcss-primeui": "catalog:",
|
|
23
|
+
"@masterteam/client-components": "workspace:^",
|
|
24
|
+
"@masterteam/components": "workspace:^",
|
|
25
|
+
"@masterteam/discussion": "workspace:^",
|
|
26
|
+
"@masterteam/forms": "workspace:^",
|
|
27
|
+
"@masterteam/icons": "workspace:^",
|
|
28
|
+
"@masterteam/structure-builder": "workspace:^"
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"exports": {
|
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
},
|
|
43
43
|
"module": "fesm2022/masterteam-work-center.mjs",
|
|
44
44
|
"typings": "types/masterteam-work-center.d.ts",
|
|
45
|
+
"type": "module",
|
|
45
46
|
"dependencies": {
|
|
46
|
-
"tslib": "
|
|
47
|
+
"tslib": "catalog:angular21"
|
|
47
48
|
}
|
|
48
49
|
}
|
|
@@ -252,10 +252,7 @@ declare class WorkCenterPage {
|
|
|
252
252
|
protected readonly columns: _angular_core.Signal<_masterteam_components_table.ColumnDef[]>;
|
|
253
253
|
protected readonly kpis: _angular_core.Signal<_masterteam_components_statistic_card.StatisticCardData[]>;
|
|
254
254
|
protected readonly runtimeFilterSchema: _angular_core.Signal<WorkCenterRuntimeFilterSchema | null>;
|
|
255
|
-
protected readonly totalCount: _angular_core.Signal<number>;
|
|
256
255
|
protected readonly loading: _angular_core.Signal<boolean>;
|
|
257
|
-
protected readonly tableCurrentPage: _angular_core.Signal<number>;
|
|
258
|
-
protected readonly tableFirst: _angular_core.Signal<number>;
|
|
259
256
|
protected readonly tableColumns: _angular_core.Signal<{
|
|
260
257
|
sortable: boolean;
|
|
261
258
|
key: string;
|
|
@@ -263,6 +260,7 @@ declare class WorkCenterPage {
|
|
|
263
260
|
type?: _masterteam_components_table.ColumnType;
|
|
264
261
|
customCellTpl?: _angular_core.TemplateRef<any>;
|
|
265
262
|
filterConfig?: _masterteam_components_table.FilterConfig;
|
|
263
|
+
statusMap?: Record<string, _masterteam_components_table.TableStatusMapValue>;
|
|
266
264
|
readonly?: boolean;
|
|
267
265
|
width?: string;
|
|
268
266
|
}[]>;
|
|
@@ -275,7 +273,6 @@ declare class WorkCenterPage {
|
|
|
275
273
|
private readonly defaultGeneralTaskModalStyleClass;
|
|
276
274
|
constructor();
|
|
277
275
|
onMenuItemClick(item: ClientPageMenuItem): void;
|
|
278
|
-
onLazyLoad(event: any): void;
|
|
279
276
|
onRuntimeFiltersApplied(filters: PropertyFilterBuilderRule[]): void;
|
|
280
277
|
onRuntimeFiltersCleared(): void;
|
|
281
278
|
onGeneralTaskCreateClick(): void;
|