impaktapps-ui-builder 1.0.112 → 1.0.114-test.1
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/dist/impaktapps-ui-builder.es.js +7 -1
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +3 -0
- package/src/impaktapps-ui-builder/runtime/services/service.ts +4 -1
|
@@ -10301,7 +10301,10 @@ var service = (funcParams) => {
|
|
|
10301
10301
|
setPage: async function() {
|
|
10302
10302
|
var _a, _b, _c;
|
|
10303
10303
|
funcParams.store.setAdditionalErrors([]);
|
|
10304
|
-
funcParams.store.setFormdata((
|
|
10304
|
+
funcParams.store.setFormdata((pre) => ({
|
|
10305
|
+
...pre,
|
|
10306
|
+
...funcParams == null ? void 0 : funcParams.initFormData()
|
|
10307
|
+
}));
|
|
10305
10308
|
funcParams.store.setSchema({ type: "object", properties: {} });
|
|
10306
10309
|
funcParams.store.newData = {};
|
|
10307
10310
|
eventGroups = {};
|
|
@@ -11178,6 +11181,9 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11178
11181
|
if (config2.maxPageSize) {
|
|
11179
11182
|
table.config.main.maxPageSize = config2.maxPageSize;
|
|
11180
11183
|
}
|
|
11184
|
+
if (config2.initialDensity) {
|
|
11185
|
+
table.config.main.initialDensity = config2.initialDensity;
|
|
11186
|
+
}
|
|
11181
11187
|
return table;
|
|
11182
11188
|
};
|
|
11183
11189
|
const Box = {
|