impaktapps-ui-builder 1.0.92 → 1.0.94

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.92",
3
+ "version": "1.0.94",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -34,14 +34,5 @@ const FileInput = {
34
34
  if (config.variant) {
35
35
  box.config.main.variant = config.variant
36
36
  }
37
- if(config.hideUpload){
38
- box.config.main.hideUpload = config.hideUpload === "YES" ? true : false;
39
- }
40
- if(config.hideDownload){
41
- box.config.main.hideDownload = config.hideDownload === "YES" ? true : false;
42
- }
43
- if(config.hideDelete){
44
- box.config.main.hideDelete = config.hideDelete === "YES" ? true : false;
45
- }
46
37
  return box;
47
38
  }
@@ -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": // // allExpanded childElementLabel label
264
+ case "Array":
265
265
  uiSchema.elements = [
266
266
  getRadioInputField("allExpanded", "Initial Expand", ["YES", "NO"]),
267
- getRadioInputField("disableAddButton ", "Disable Add Button", ["YES", "NO"]),
268
- getRadioInputField("disableExpandAllButton ", "Disable Expand Buttons", ["YES", "NO"]),
269
- getRadioInputField("disableRowActions ", "Disable Row Actions", ["YES", "NO"]),
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