@mediusinc/mng-commons 3.4.0 → 3.4.2
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/esm2022/lib/components/action/action.component.mjs +32 -5
- package/esm2022/lib/components/action/editor/action-editor.component.mjs +22 -2
- package/esm2022/lib/components/action/models/action-execution.model.mjs +11 -9
- package/esm2022/lib/services/action-executor.service.mjs +7 -3
- package/fesm2022/mediusinc-mng-commons.mjs +65 -13
- package/fesm2022/mediusinc-mng-commons.mjs.map +1 -1
- package/lib/components/action/models/action-execution.model.d.ts +10 -8
- package/package.json +2 -2
|
@@ -152,14 +152,16 @@ export declare enum ActionInstanceStateEnum {
|
|
|
152
152
|
RunError = 12,
|
|
153
153
|
NextActionStart = 13,
|
|
154
154
|
NextActionEnd = 14,
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
155
|
+
ErrorActionStart = 15,
|
|
156
|
+
ErrorActionEnd = 16,
|
|
157
|
+
FinishSuccessFinal = 17,
|
|
158
|
+
FinishErrorFinal = 18,
|
|
159
|
+
FinishDismissedFinal = 19,
|
|
160
|
+
FinishSuccessReactivateFinal = 20,
|
|
161
|
+
FinishComponentDestroyFinal = 21,
|
|
162
|
+
FinishRouteUntriggerStart = 22,
|
|
163
|
+
FinishRouteUntriggerEndFinal = 23,
|
|
164
|
+
FinishRouteUntriggerTimeoutFinal = 24
|
|
163
165
|
}
|
|
164
166
|
export type ActionData = {
|
|
165
167
|
[key: string]: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mediusinc/mng-commons",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/animations": "^16.0.0",
|
|
6
6
|
"@angular/common": "^16.0.0",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"@angular/router": "^16.0.0",
|
|
11
11
|
"@ngx-formly/core": "^6.1.3",
|
|
12
12
|
"@ngx-translate/core": "^14.0.0",
|
|
13
|
-
"primeng": "
|
|
13
|
+
"primeng": ">=16.0.0 <16.5.0"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"reflect-metadata": "^0.1.13",
|