impaktapps-ui-builder 1.0.480 → 1.0.481
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 +11 -2
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +7 -7
- 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 -0
- package/src/impaktapps-ui-builder/builder/build/buildSelect.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +5 -2
|
@@ -8286,7 +8286,8 @@ const buildPropertiesSection = function(type) {
|
|
|
8286
8286
|
getSelectField("variant", "Variant"),
|
|
8287
8287
|
getInputField("toolTip", "Tooltip"),
|
|
8288
8288
|
getSelectField("toolTipPosition", "Tooltip Position"),
|
|
8289
|
-
|
|
8289
|
+
getRadioInputField("grouping", "grouping", ["YES", "NO"]),
|
|
8290
|
+
emptyBox$1("SelectEmpty", { xs: 0, sm: 0, md: 4, lg: 6 })
|
|
8290
8291
|
];
|
|
8291
8292
|
break;
|
|
8292
8293
|
case "MultipleSelect":
|
|
@@ -8294,7 +8295,9 @@ const buildPropertiesSection = function(type) {
|
|
|
8294
8295
|
getRadioInputField("lazyLoading", "Lazy Loading", ["YES", "NO"]),
|
|
8295
8296
|
getSelectField("variant", "Variant"),
|
|
8296
8297
|
getInputField("toolTip", "Tooltip"),
|
|
8297
|
-
getSelectField("toolTipPosition", "Tooltip Position")
|
|
8298
|
+
getSelectField("toolTipPosition", "Tooltip Position"),
|
|
8299
|
+
getRadioInputField("grouping", "grouping", ["YES", "NO"]),
|
|
8300
|
+
emptyBox$1("MultipleSelectEmpty", { xs: 6, sm: 6, md: 8, lg: 9 })
|
|
8298
8301
|
];
|
|
8299
8302
|
break;
|
|
8300
8303
|
case "PdfViewer":
|
|
@@ -11652,6 +11655,9 @@ const buildSelect = (config2, componentScope2) => {
|
|
|
11652
11655
|
if (config2.toolTipPosition) {
|
|
11653
11656
|
selectInputField.config.main.toolTipPosition = config2.toolTipPosition;
|
|
11654
11657
|
}
|
|
11658
|
+
if (config2.grouping) {
|
|
11659
|
+
selectInputField.config.main.grouping = config2.grouping;
|
|
11660
|
+
}
|
|
11655
11661
|
if (config2.style) {
|
|
11656
11662
|
selectInputField.config.style = JSON.parse(config2.style);
|
|
11657
11663
|
}
|
|
@@ -12349,6 +12355,9 @@ const buildMultiSelect = (config2, componentScope2) => {
|
|
|
12349
12355
|
if (config2.toolTipPosition) {
|
|
12350
12356
|
multipleSelect.config.main.toolTipPosition = config2.toolTipPosition;
|
|
12351
12357
|
}
|
|
12358
|
+
if (config2.grouping) {
|
|
12359
|
+
multipleSelect.config.main.grouping = config2.grouping;
|
|
12360
|
+
}
|
|
12352
12361
|
if (config2.style) {
|
|
12353
12362
|
multipleSelect.config.style = JSON.parse(config2.style);
|
|
12354
12363
|
}
|