@acorex/platform 21.0.0-next.70 → 21.0.0-next.71
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-core.mjs +332 -76
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +563 -44
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +83 -67
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +543 -237
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +319 -66
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +54 -6
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +198 -91
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default.mjs +13 -14
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-shared.mjs +50 -30
- package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
- package/package.json +1 -1
- package/types/acorex-platform-common.d.ts +11 -0
- package/types/acorex-platform-core.d.ts +137 -47
- package/types/acorex-platform-layout-builder.d.ts +90 -13
- package/types/acorex-platform-layout-components.d.ts +21 -17
- package/types/acorex-platform-layout-entity.d.ts +63 -10
- package/types/acorex-platform-layout-views.d.ts +68 -6
- package/types/acorex-platform-layout-widget-core.d.ts +43 -8
- package/types/acorex-platform-layout-widgets.d.ts +21 -6
- package/types/acorex-platform-themes-default.d.ts +24 -4
- package/types/acorex-platform-themes-shared.d.ts +6 -0
- package/types/acorex-platform-workflow.d.ts +1 -1
|
@@ -4345,6 +4345,7 @@ var AXPSystemStatusType;
|
|
|
4345
4345
|
AXPSystemStatusType["Draft"] = "draft";
|
|
4346
4346
|
AXPSystemStatusType["PendingReview"] = "pending-review";
|
|
4347
4347
|
AXPSystemStatusType["WaitingSignOff"] = "waiting-sign-off";
|
|
4348
|
+
AXPSystemStatusType["WaitingApproval"] = "waiting-approval";
|
|
4348
4349
|
AXPSystemStatusType["Approved"] = "approved";
|
|
4349
4350
|
AXPSystemStatusType["Published"] = "published";
|
|
4350
4351
|
AXPSystemStatusType["Archived"] = "archived";
|
|
@@ -4475,6 +4476,16 @@ const AXPSystemStatuses = Object.freeze({
|
|
|
4475
4476
|
isInitial: false,
|
|
4476
4477
|
isFinal: false,
|
|
4477
4478
|
},
|
|
4479
|
+
WaitingApproval: {
|
|
4480
|
+
name: AXPSystemStatusType.WaitingApproval,
|
|
4481
|
+
title: i18n('waiting-approval.title'),
|
|
4482
|
+
icon: 'fa-light fa-clock',
|
|
4483
|
+
color: 'warning',
|
|
4484
|
+
description: i18n('waiting-approval.description'),
|
|
4485
|
+
order: 1,
|
|
4486
|
+
isInitial: true,
|
|
4487
|
+
isFinal: false,
|
|
4488
|
+
},
|
|
4478
4489
|
Approved: {
|
|
4479
4490
|
name: AXPSystemStatusType.Approved,
|
|
4480
4491
|
title: i18n('approved.title'),
|