@masterteam/work-center 0.0.48 → 0.0.50
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.50",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/work-center",
|
|
6
6
|
"linkDirectory": false,
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"rxjs": "^7.8.2",
|
|
21
21
|
"tailwindcss": "^4.2.2",
|
|
22
22
|
"tailwindcss-primeui": "^0.6.1",
|
|
23
|
+
"@masterteam/components": "^0.0.221",
|
|
24
|
+
"@masterteam/forms": "^0.0.111",
|
|
23
25
|
"@masterteam/structure-builder": "^0.0.59",
|
|
24
|
-
"@masterteam/forms": "^0.0.107",
|
|
25
26
|
"@masterteam/icons": "^0.0.17",
|
|
26
|
-
"@masterteam/components": "^0.0.217",
|
|
27
27
|
"@masterteam/discussion": "^0.0.23",
|
|
28
28
|
"@masterteam/client-components": "^0.0.53"
|
|
29
29
|
},
|
|
@@ -240,6 +240,7 @@ interface WorkCenterClientFormModalOptions {
|
|
|
240
240
|
operationKey?: string;
|
|
241
241
|
header?: string;
|
|
242
242
|
styleClass?: string;
|
|
243
|
+
closeOnPendingApproval?: boolean;
|
|
243
244
|
buttonLabel?: string;
|
|
244
245
|
buttonIcon?: string;
|
|
245
246
|
lookups?: ClientLookup[];
|
|
@@ -337,6 +338,7 @@ declare class WorkCenterClientFormModal {
|
|
|
337
338
|
readonly processForm: _angular_core.Signal<ClientForm>;
|
|
338
339
|
readonly data: _angular_core.InputSignal<WorkCenterClientFormModalData>;
|
|
339
340
|
readonly operationKey: _angular_core.InputSignal<string>;
|
|
341
|
+
readonly closeOnPendingApproval: _angular_core.InputSignal<boolean>;
|
|
340
342
|
readonly lookups: _angular_core.InputSignal<ClientLookup[]>;
|
|
341
343
|
readonly moduleKey: _angular_core.Signal<string>;
|
|
342
344
|
readonly moduleId: _angular_core.Signal<number | undefined>;
|
|
@@ -353,7 +355,7 @@ declare class WorkCenterClientFormModal {
|
|
|
353
355
|
onErrored(error: string): void;
|
|
354
356
|
private toNumber;
|
|
355
357
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WorkCenterClientFormModal, never>;
|
|
356
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WorkCenterClientFormModal, "mt-work-center-client-form-modal", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "operationKey": { "alias": "operationKey"; "required": false; "isSignal": true; }; "lookups": { "alias": "lookups"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
358
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WorkCenterClientFormModal, "mt-work-center-client-form-modal", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "operationKey": { "alias": "operationKey"; "required": false; "isSignal": true; }; "closeOnPendingApproval": { "alias": "closeOnPendingApproval"; "required": false; "isSignal": true; }; "lookups": { "alias": "lookups"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
357
359
|
}
|
|
358
360
|
|
|
359
361
|
declare class WorkCenterItemModal {
|