@acorex/platform 21.0.0-next.57 → 21.0.0-next.59
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/fesm2022/acorex-platform-common.mjs +11 -0
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +2 -2
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +33 -1
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +1 -0
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +226 -0
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +35 -3
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +1 -1
- package/types/acorex-platform-common.d.ts +11 -0
- package/types/acorex-platform-layout-entity.d.ts +42 -3
- package/types/acorex-platform-layout-widget-core.d.ts +1 -0
- package/types/acorex-platform-workflow.d.ts +31 -2
|
@@ -4138,6 +4138,7 @@ var AXPSystemStatusType;
|
|
|
4138
4138
|
AXPSystemStatusType["Cancelled"] = "cancelled";
|
|
4139
4139
|
AXPSystemStatusType["Draft"] = "draft";
|
|
4140
4140
|
AXPSystemStatusType["PendingReview"] = "pending-review";
|
|
4141
|
+
AXPSystemStatusType["WaitingSignOff"] = "waiting-sign-off";
|
|
4141
4142
|
AXPSystemStatusType["Approved"] = "approved";
|
|
4142
4143
|
AXPSystemStatusType["Published"] = "published";
|
|
4143
4144
|
AXPSystemStatusType["Archived"] = "archived";
|
|
@@ -4258,6 +4259,16 @@ const AXPSystemStatuses = Object.freeze({
|
|
|
4258
4259
|
isInitial: false,
|
|
4259
4260
|
isFinal: false,
|
|
4260
4261
|
},
|
|
4262
|
+
WaitingSignOff: {
|
|
4263
|
+
name: AXPSystemStatusType.WaitingSignOff,
|
|
4264
|
+
title: i18n('waiting-sign-off.title'),
|
|
4265
|
+
icon: 'fa-light fa-clock',
|
|
4266
|
+
color: 'warning',
|
|
4267
|
+
description: i18n('waiting-sign-off.description'),
|
|
4268
|
+
order: 3,
|
|
4269
|
+
isInitial: false,
|
|
4270
|
+
isFinal: false,
|
|
4271
|
+
},
|
|
4261
4272
|
Approved: {
|
|
4262
4273
|
name: AXPSystemStatusType.Approved,
|
|
4263
4274
|
title: i18n('approved.title'),
|