@acorex/platform 20.6.0-next.18 → 20.6.0-next.19
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-layout-entity.mjs +1134 -413
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +3 -2
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +4 -4
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-4nWLEm89.mjs → acorex-platform-themes-default-entity-master-list-view.component-BbACUabi.mjs} +406 -173
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-BbACUabi.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +2 -2
- package/layout/entity/index.d.ts +168 -24
- package/layout/views/index.d.ts +1 -0
- package/package.json +1 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-4nWLEm89.mjs.map +0 -1
|
@@ -637,7 +637,7 @@ const AXPLayoutDetailsViewViewModel = signalStore(withState(() => {
|
|
|
637
637
|
});
|
|
638
638
|
//
|
|
639
639
|
await this.loadAdapter(adapter);
|
|
640
|
-
await this.loadPage();
|
|
640
|
+
await this.loadPage(undefined, true);
|
|
641
641
|
},
|
|
642
642
|
updateContext(context) {
|
|
643
643
|
patchState(store, {
|
|
@@ -909,7 +909,8 @@ class AXPLayoutDetailsViewComponent extends AXPPageLayoutBaseComponent {
|
|
|
909
909
|
return secondaryFooterActions.some((action) => action.visible != false);
|
|
910
910
|
}, ...(ngDevMode ? [{ debugName: "hasVisibleFooterSecondaryActions" }] : []));
|
|
911
911
|
this.hasFooter = computed(() => {
|
|
912
|
-
return this.hasVisibleFooterPrimaryActions() || this.hasVisibleFooterSecondaryActions()
|
|
912
|
+
return ((this.hasVisibleFooterPrimaryActions() || this.hasVisibleFooterSecondaryActions()) &&
|
|
913
|
+
!this.vm.currentPage()?.isReadonly);
|
|
913
914
|
}, ...(ngDevMode ? [{ debugName: "hasFooter" }] : []));
|
|
914
915
|
this.#FooterActionsEffect = effect(async () => {
|
|
915
916
|
this.updateTrigger();
|