@acorex/platform 21.0.0-next.73 → 21.0.0-next.74
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 +403 -17
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-contracts.mjs +28 -0
- package/fesm2022/acorex-platform-contracts.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +8 -2
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +2 -4
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +2 -1
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +17 -70
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +2 -1
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +226 -218
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +0 -14
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +1 -1
- package/types/acorex-platform-common.d.ts +83 -257
- package/types/acorex-platform-contracts.d.ts +902 -1
- package/types/acorex-platform-layout-builder.d.ts +2 -5
- package/types/acorex-platform-layout-widget-core.d.ts +1 -25
- package/types/acorex-platform-layout-widgets.d.ts +16 -13
- package/types/acorex-platform-workflow.d.ts +3 -670
|
@@ -1624,6 +1624,7 @@ class AXPLayoutDetailsViewComponent extends AXPPageLayoutBaseComponent {
|
|
|
1624
1624
|
ngOnDestroy() {
|
|
1625
1625
|
this.unsavedChangesPopstate.unregisterSource('axp-layout-details-view');
|
|
1626
1626
|
this.onSelectionChangeSubscription?.unsubscribe();
|
|
1627
|
+
++this.keyboardShortcutRegistrationGeneration;
|
|
1627
1628
|
this.destroyed$.next();
|
|
1628
1629
|
this.destroyed$.complete();
|
|
1629
1630
|
}
|
|
@@ -1960,7 +1961,7 @@ class AXPLayoutDetailsViewComponent extends AXPPageLayoutBaseComponent {
|
|
|
1960
1961
|
//#region ---- Keyboard Shortcuts ----
|
|
1961
1962
|
async refreshKeyboardShortcutRegistrations(generation) {
|
|
1962
1963
|
const entries = await this.collectActionShortcutEntries();
|
|
1963
|
-
if (generation !== this.keyboardShortcutRegistrationGeneration) {
|
|
1964
|
+
if (generation !== this.keyboardShortcutRegistrationGeneration || this.destroyed$.closed) {
|
|
1964
1965
|
return;
|
|
1965
1966
|
}
|
|
1966
1967
|
this.actionShortcutEntries.set(entries);
|