@masterteam/work-center 0.0.12 → 0.0.14
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.14",
|
|
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/
|
|
24
|
-
"@masterteam/
|
|
25
|
-
"@masterteam/discussion": "
|
|
26
|
-
"@masterteam/forms": "
|
|
27
|
-
"@masterteam/
|
|
28
|
-
"@masterteam/structure-builder": "
|
|
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": {
|
|
@@ -43,6 +43,6 @@
|
|
|
43
43
|
"module": "fesm2022/masterteam-work-center.mjs",
|
|
44
44
|
"typings": "types/masterteam-work-center.d.ts",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"tslib": "
|
|
46
|
+
"tslib": "catalog:angular21"
|
|
47
47
|
}
|
|
48
48
|
}
|
|
@@ -253,6 +253,16 @@ declare class WorkCenterPage {
|
|
|
253
253
|
protected readonly loading: _angular_core.Signal<boolean>;
|
|
254
254
|
protected readonly tableCurrentPage: _angular_core.Signal<number>;
|
|
255
255
|
protected readonly tableFirst: _angular_core.Signal<number>;
|
|
256
|
+
protected readonly tableColumns: _angular_core.Signal<{
|
|
257
|
+
sortable: boolean;
|
|
258
|
+
key: string;
|
|
259
|
+
label: string;
|
|
260
|
+
type?: _masterteam_components_table.ColumnType;
|
|
261
|
+
customCellTpl?: _angular_core.TemplateRef<any>;
|
|
262
|
+
filterConfig?: _masterteam_components_table.FilterConfig;
|
|
263
|
+
readonly?: boolean;
|
|
264
|
+
width?: string;
|
|
265
|
+
}[]>;
|
|
256
266
|
protected readonly propertyFilterSchema: _angular_core.Signal<PropertyFilterBuilderSchema | null>;
|
|
257
267
|
protected readonly showGeneralTaskCreateButton: _angular_core.Signal<boolean>;
|
|
258
268
|
protected readonly generalTaskButtonLabel: _angular_core.Signal<string>;
|