impaktapps-ui-builder 1.0.46 → 1.0.47
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.
|
@@ -8270,19 +8270,9 @@ var buildConfig = (FormData) => {
|
|
|
8270
8270
|
};
|
|
8271
8271
|
const createLayoutFormat = (config2) => {
|
|
8272
8272
|
if (_.isEmpty(config2)) {
|
|
8273
|
-
return {
|
|
8274
|
-
xs: 12,
|
|
8275
|
-
sm: 12,
|
|
8276
|
-
md: 12,
|
|
8277
|
-
lg: 12
|
|
8278
|
-
};
|
|
8273
|
+
return { xs: 12, sm: 6, md: 4, lg: 3 };
|
|
8279
8274
|
}
|
|
8280
|
-
let data = {
|
|
8281
|
-
xs: 12,
|
|
8282
|
-
sm: 12,
|
|
8283
|
-
md: 6,
|
|
8284
|
-
lg: 6
|
|
8285
|
-
};
|
|
8275
|
+
let data = { xs: 12, sm: 6, md: 4, lg: 3 };
|
|
8286
8276
|
config2.map((e) => {
|
|
8287
8277
|
data[e.key || "xs"] = +e.value || 5.5;
|
|
8288
8278
|
});
|