impaktapps-ui-builder 1.0.147-test.5 → 1.0.147-test.8
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 +6 -0
- 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/buildMultiSelect.ts +3 -1
- package/src/impaktapps-ui-builder/builder/build/buildSelect.ts +3 -0
|
@@ -11284,6 +11284,9 @@ const buildSelect = (config, componentScope) => {
|
|
|
11284
11284
|
if (config.layout) {
|
|
11285
11285
|
selectInputField.config.layout = createLayoutFormat(config.layout);
|
|
11286
11286
|
}
|
|
11287
|
+
if (config.style) {
|
|
11288
|
+
selectInputField.config.style = JSON.parse(config.style);
|
|
11289
|
+
}
|
|
11287
11290
|
selectInputField.scope = componentScope;
|
|
11288
11291
|
return selectInputField;
|
|
11289
11292
|
};
|
|
@@ -11888,6 +11891,9 @@ const buildMultiSelect = (config, componentScope) => {
|
|
|
11888
11891
|
if (config.lazyLoading) {
|
|
11889
11892
|
multipleSelect.config.main.lazyLoading = config.lazyLoading === "YES" ? true : false;
|
|
11890
11893
|
}
|
|
11894
|
+
if (config.style) {
|
|
11895
|
+
multipleSelect.config.style = JSON.parse(config.style);
|
|
11896
|
+
}
|
|
11891
11897
|
return multipleSelect;
|
|
11892
11898
|
};
|
|
11893
11899
|
const buildBasicUiSchema = (config) => {
|