impaktapps-ui-builder 1.0.92 → 1.0.93
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 +3 -3
- 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/uischema/buildPropertiesSection.ts +4 -4
package/package.json
CHANGED
|
@@ -261,12 +261,12 @@ const BaseSection = {
|
|
|
261
261
|
export const buildPropertiesSection = function (type: String) {
|
|
262
262
|
let uiSchema = _.cloneDeep(BaseSection);
|
|
263
263
|
switch (type) {
|
|
264
|
-
case "Array":
|
|
264
|
+
case "Array":
|
|
265
265
|
uiSchema.elements = [
|
|
266
266
|
getRadioInputField("allExpanded", "Initial Expand", ["YES", "NO"]),
|
|
267
|
-
getRadioInputField("disableAddButton
|
|
268
|
-
getRadioInputField("disableExpandAllButton
|
|
269
|
-
getRadioInputField("disableRowActions
|
|
267
|
+
getRadioInputField("disableAddButton", "Disable Add Button", ["YES", "NO"]),
|
|
268
|
+
getRadioInputField("disableExpandAllButton", "Disable Expand Buttons", ["YES", "NO"]),
|
|
269
|
+
getRadioInputField("disableRowActions", "Disable Row Actions", ["YES", "NO"]),
|
|
270
270
|
getInputField("childElementLabel", "Child Element Label"),
|
|
271
271
|
emptyBox("empty1", { xs: 12, sm: 6, md: 4, lg: 3 }),
|
|
272
272
|
|