@acorex/platform 20.2.4-next.2 → 20.2.4-next.5
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/common/index.d.ts +30 -4
- package/core/index.d.ts +5 -1
- package/fesm2022/acorex-platform-common.mjs +2 -0
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +4 -1
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +9 -0
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +26 -36
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +770 -243
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +37 -24
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-DXGLsVis.mjs → acorex-platform-themes-default-entity-master-list-view.component-D3VUh8K8.mjs} +5 -4
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-D3VUh8K8.mjs.map +1 -0
- package/fesm2022/{acorex-platform-themes-default-entity-master-single-view.component-CVaJzWb2.mjs → acorex-platform-themes-default-entity-master-single-view.component-BMkhNfF4.mjs} +3 -3
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-BMkhNfF4.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +6 -6
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/{acorex-platform-widgets-checkbox-widget-column.component-BNBOATPB.mjs → acorex-platform-widgets-checkbox-widget-column.component-DeKpl0uK.mjs} +1 -2
- package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-DeKpl0uK.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-file-list-popup.component-B601gPsW.mjs → acorex-platform-widgets-file-list-popup.component-BafU5Lfl.mjs} +4 -2
- package/fesm2022/acorex-platform-widgets-file-list-popup.component-BafU5Lfl.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets.mjs +231 -71
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/builder/index.d.ts +4 -0
- package/layout/components/index.d.ts +1 -5
- package/layout/entity/index.d.ts +4 -5
- package/layout/views/index.d.ts +7 -0
- package/package.json +1 -1
- package/widgets/index.d.ts +25 -2
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-DXGLsVis.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-CVaJzWb2.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-BNBOATPB.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-file-list-popup.component-B601gPsW.mjs.map +0 -1
|
@@ -296,6 +296,7 @@ const AXPWidgetsCatalog = {
|
|
|
296
296
|
list: 'list',
|
|
297
297
|
listToolbar: 'list-toolbar',
|
|
298
298
|
entityList: 'entity-list',
|
|
299
|
+
documentUploader: 'document-uploader',
|
|
299
300
|
};
|
|
300
301
|
|
|
301
302
|
function cloneProperty(property, values) {
|
|
@@ -1603,6 +1604,14 @@ class AXPColumnWidgetComponent {
|
|
|
1603
1604
|
this.path = this.token.path;
|
|
1604
1605
|
this.options = this.token.options ?? {};
|
|
1605
1606
|
this.rawValue = null;
|
|
1607
|
+
this.nullText = this.options['nullText'];
|
|
1608
|
+
this.nullValue = this.options['nullValue'];
|
|
1609
|
+
this.value = computed(() => {
|
|
1610
|
+
if (isNil(this.rawValue) && !isNil(this.nullValue)) {
|
|
1611
|
+
return this.nullValue;
|
|
1612
|
+
}
|
|
1613
|
+
return this.rawValue;
|
|
1614
|
+
}, ...(ngDevMode ? [{ debugName: "value" }] : []));
|
|
1606
1615
|
}
|
|
1607
1616
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AXPColumnWidgetComponent, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1608
1617
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AXPColumnWidgetComponent }); }
|