impaktapps-ui-builder 1.0.71-alpha.1 → 1.0.71-alpha.2
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 +7 -1
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +8 -8
- 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 +5 -0
- package/src/impaktapps-ui-builder/builder/services/component.ts +2 -1
|
@@ -7899,6 +7899,11 @@ const buildPropertiesSection = function(type) {
|
|
|
7899
7899
|
getTextArea("thought", "Today's thought", false)
|
|
7900
7900
|
];
|
|
7901
7901
|
break;
|
|
7902
|
+
case "Image":
|
|
7903
|
+
uiSchema.elements = [
|
|
7904
|
+
getInputField("imageUrl", "Image URL")
|
|
7905
|
+
];
|
|
7906
|
+
break;
|
|
7902
7907
|
}
|
|
7903
7908
|
return uiSchema;
|
|
7904
7909
|
};
|
|
@@ -8402,7 +8407,8 @@ const sectionLabels = {
|
|
|
8402
8407
|
ColumnGroup: ["Core", "Components"],
|
|
8403
8408
|
Thought: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8404
8409
|
Date: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8405
|
-
DateTime: ["Core", "Properties", "Events", "Style", "Validation"]
|
|
8410
|
+
DateTime: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8411
|
+
Image: ["Core", "Properties", "Style"]
|
|
8406
8412
|
};
|
|
8407
8413
|
function refreshPage(type, store2) {
|
|
8408
8414
|
var _a, _b;
|