impaktapps-ui-builder 0.0.592-alpha.10 → 0.0.592-alpha.12
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 +10 -0
- 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 +8 -0
- package/src/impaktapps-ui-builder/builder/services/component.ts +1 -0
|
@@ -7451,6 +7451,15 @@ const buildPropertiesSection = function(type) {
|
|
|
7451
7451
|
];
|
|
7452
7452
|
break;
|
|
7453
7453
|
case "ProgressBar":
|
|
7454
|
+
uiSchema.elements = [
|
|
7455
|
+
getInputField("heading", "Heading"),
|
|
7456
|
+
getInputField("bottomLabel_1", "First BottomLabel"),
|
|
7457
|
+
getInputField("bottomLabel_2", "Second BottomLabel"),
|
|
7458
|
+
getInputField("bottomLabel_3", "Third BottomLabel"),
|
|
7459
|
+
emptyBox$1("ProgressBarCardEmpty1"),
|
|
7460
|
+
emptyBox$1("ProgressBarCardEmpty2")
|
|
7461
|
+
];
|
|
7462
|
+
break;
|
|
7454
7463
|
case "ProgressBarCard":
|
|
7455
7464
|
uiSchema.elements = [
|
|
7456
7465
|
getInputField("heading", "Heading"),
|
|
@@ -7960,6 +7969,7 @@ const sectionLabels = {
|
|
|
7960
7969
|
DownloadFile: ["Core", "Event", "Style", "Validation"],
|
|
7961
7970
|
Box: ["Core", "Event", "Style", "Validation"],
|
|
7962
7971
|
Properties: ["Core", "Properties", "Event", "Style", "Validation"],
|
|
7972
|
+
ProgressBar: ["Core", "Properties", "Event", "Style", "Validation"],
|
|
7963
7973
|
ProgressBarCard: ["Core", "Properties", "Event", "Style", "Validation"],
|
|
7964
7974
|
RankCard: ["Core", "Properties", "Event", "Style", "Validation"],
|
|
7965
7975
|
Slider: ["Core", "Components", "Event", "Style", "Validation"],
|