impaktapps-ui-builder 1.0.76 → 1.0.77
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 +13 -2
- 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/dist/src/impaktapps-ui-builder/builder/build/uischema/box.d.ts +3 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildLabel.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/box.ts +3 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +6 -0
- package/src/impaktapps-ui-builder/builder/services/component.ts +1 -1
|
@@ -7797,6 +7797,12 @@ const buildPropertiesSection = function(type) {
|
|
|
7797
7797
|
emptyBox$1("ButtonEmpty1", { xs: 6, sm: 6, md: 4, lg: 4 })
|
|
7798
7798
|
];
|
|
7799
7799
|
break;
|
|
7800
|
+
case "Box":
|
|
7801
|
+
uiSchema.elements = [
|
|
7802
|
+
getSelectField("iconName", "Icon Name"),
|
|
7803
|
+
emptyBox$1("BoxEmpty1", { xs: 6, sm: 6, md: 4, lg: 8 })
|
|
7804
|
+
];
|
|
7805
|
+
break;
|
|
7800
7806
|
case "Graph":
|
|
7801
7807
|
uiSchema.elements = [
|
|
7802
7808
|
getInputField("height", "Height"),
|
|
@@ -8394,7 +8400,7 @@ const sectionLabels = {
|
|
|
8394
8400
|
DeleteFileIcon: ["Core", "Events", "Style"],
|
|
8395
8401
|
Graph: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8396
8402
|
DownloadFile: ["Core", "Events", "Style", "Validation"],
|
|
8397
|
-
Box: ["Core", "Events", "Style", "Validation"],
|
|
8403
|
+
Box: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8398
8404
|
Properties: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8399
8405
|
ProgressBarCard: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8400
8406
|
RankCard: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
@@ -11146,7 +11152,9 @@ const Box = {
|
|
|
11146
11152
|
},
|
|
11147
11153
|
config: {
|
|
11148
11154
|
layout: { xs: 6, sm: 6, md: 4, lg: 3 },
|
|
11149
|
-
main: {
|
|
11155
|
+
main: {
|
|
11156
|
+
iconName: ""
|
|
11157
|
+
},
|
|
11150
11158
|
style: {}
|
|
11151
11159
|
}
|
|
11152
11160
|
};
|
|
@@ -11157,6 +11165,9 @@ const buildLabel = (config2, componentScope2) => {
|
|
|
11157
11165
|
if (config2.layout) {
|
|
11158
11166
|
box.config.layout = createLayoutFormat(config2.layout);
|
|
11159
11167
|
}
|
|
11168
|
+
if (config2.iconName) {
|
|
11169
|
+
box.config.main.iconName = config2.iconName;
|
|
11170
|
+
}
|
|
11160
11171
|
if (config2.style) {
|
|
11161
11172
|
box.config.style = JSON.parse(config2.style);
|
|
11162
11173
|
}
|