@acorex/platform 21.0.0-next.10 → 21.0.0-next.11
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/core/index.d.ts +109 -3
- package/fesm2022/acorex-platform-core.mjs +3 -0
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +0 -2
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +6 -6
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +619 -466
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +2 -2
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +3 -4
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +50 -55
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-CIV6YDDZ.mjs → acorex-platform-themes-default-entity-master-list-view.component-CD4Q_UIG.mjs} +3 -3
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-CD4Q_UIG.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +2 -2
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/layout/entity/index.d.ts +47 -16
- package/layout/widgets/index.d.ts +4 -6
- package/package.json +9 -9
- package/workflow/index.d.ts +4 -4
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-CIV6YDDZ.mjs.map +0 -1
|
@@ -818,12 +818,12 @@ class AXPColumnWidgetComponent {
|
|
|
818
818
|
this.rawValue = null;
|
|
819
819
|
this.nullText = this.options['nullText'];
|
|
820
820
|
this.nullValue = this.options['nullValue'];
|
|
821
|
-
this.value = (
|
|
821
|
+
this.value = () => {
|
|
822
822
|
if (isNil(this.rawValue) && !isNil(this.nullValue)) {
|
|
823
823
|
return this.nullValue;
|
|
824
824
|
}
|
|
825
825
|
return this.rawValue;
|
|
826
|
-
}
|
|
826
|
+
};
|
|
827
827
|
}
|
|
828
828
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: AXPColumnWidgetComponent, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
829
829
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: AXPColumnWidgetComponent }); }
|
|
@@ -1066,8 +1066,7 @@ class AXPGridBaseLayoutWidgetComponent extends AXPBlockBaseLayoutWidgetComponent
|
|
|
1066
1066
|
const g = this.grid()?.default;
|
|
1067
1067
|
if (g?.columns)
|
|
1068
1068
|
cls[`lg:ax-grid-cols-${g.columns}`] = true;
|
|
1069
|
-
if (g?.rows)
|
|
1070
|
-
cls[`lg:ax-grid-rows-${g.rows}`] = true;
|
|
1069
|
+
// if (g?.rows) cls[`lg:ax-grid-rows-${g.rows}`] = true;
|
|
1071
1070
|
if (g?.justifyItems)
|
|
1072
1071
|
cls[`lg:ax-justify-items-${g.justifyItems}`] = true;
|
|
1073
1072
|
if (g?.alignItems)
|