impaktapps-ui-builder 0.0.56-alpha.21 → 0.0.56-alpha.22
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 +18 -12
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +3 -3
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.d.ts +1 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +5 -3
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +13 -8
|
@@ -6761,6 +6761,16 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6761
6761
|
layout: { xs: 0, sm: 4, md: 4, lg: 4 }
|
|
6762
6762
|
}
|
|
6763
6763
|
},
|
|
6764
|
+
{
|
|
6765
|
+
type: "Control",
|
|
6766
|
+
scope: "#/properties/EmptyBox",
|
|
6767
|
+
options: {
|
|
6768
|
+
widget: "EmptyBox"
|
|
6769
|
+
},
|
|
6770
|
+
config: {
|
|
6771
|
+
layout: { xs: 4, sm: 8 }
|
|
6772
|
+
}
|
|
6773
|
+
},
|
|
6764
6774
|
{
|
|
6765
6775
|
type: "Control",
|
|
6766
6776
|
scope: "#/properties/btn",
|
|
@@ -6768,7 +6778,7 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6768
6778
|
widget: "Button"
|
|
6769
6779
|
},
|
|
6770
6780
|
config: {
|
|
6771
|
-
layout:
|
|
6781
|
+
layout: { xs: 4, sm: 2 },
|
|
6772
6782
|
main: {
|
|
6773
6783
|
name: "Ok",
|
|
6774
6784
|
startIcon: "ApproveIcon",
|
|
@@ -6776,9 +6786,6 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6776
6786
|
type: "text",
|
|
6777
6787
|
onClick: "okHandler",
|
|
6778
6788
|
size: "medium"
|
|
6779
|
-
},
|
|
6780
|
-
style: {
|
|
6781
|
-
float: "right"
|
|
6782
6789
|
}
|
|
6783
6790
|
}
|
|
6784
6791
|
},
|
|
@@ -6789,7 +6796,7 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6789
6796
|
widget: "Button"
|
|
6790
6797
|
},
|
|
6791
6798
|
config: {
|
|
6792
|
-
layout:
|
|
6799
|
+
layout: { xs: 4, sm: 2 },
|
|
6793
6800
|
main: {
|
|
6794
6801
|
name: "Save & Exit",
|
|
6795
6802
|
startIcon: "ApproveIcon",
|
|
@@ -6797,9 +6804,6 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6797
6804
|
type: "text",
|
|
6798
6805
|
onClick: "saveHandler",
|
|
6799
6806
|
size: "medium"
|
|
6800
|
-
},
|
|
6801
|
-
style: {
|
|
6802
|
-
float: "right"
|
|
6803
6807
|
}
|
|
6804
6808
|
}
|
|
6805
6809
|
},
|
|
@@ -7301,7 +7305,8 @@ const buildWrapper = (label, elements) => {
|
|
|
7301
7305
|
},
|
|
7302
7306
|
wrapperStyle: {
|
|
7303
7307
|
marginTop: "-6px",
|
|
7304
|
-
marginBottom: "-8px"
|
|
7308
|
+
marginBottom: "-8px",
|
|
7309
|
+
marginLeft: "-24px"
|
|
7305
7310
|
},
|
|
7306
7311
|
componentsBoxStyle: {
|
|
7307
7312
|
marginLeft: "24px"
|
|
@@ -7499,6 +7504,7 @@ const buildPropertiesSection = function(type) {
|
|
|
7499
7504
|
getSelectField("graphType", "Graph Type"),
|
|
7500
7505
|
getInputField("leftLabel", "Left Label"),
|
|
7501
7506
|
getInputField("bottomLabel", "Bottom Label"),
|
|
7507
|
+
emptyBox$1({ xs: 6, sm: 0, md: 0, lg: 0 }),
|
|
7502
7508
|
getRadioInputField("legendHide", "Legend Hide", ["YES", "No"]),
|
|
7503
7509
|
getInputField("yAxisValue", "Y-AxisValue"),
|
|
7504
7510
|
getInputField("xAxisValue", "X-AxisValue"),
|
|
@@ -7513,7 +7519,7 @@ const buildPropertiesSection = function(type) {
|
|
|
7513
7519
|
getRadioInputField("isAccordion", "Accordion", ["YES", "No"]),
|
|
7514
7520
|
getRadioInputField("defaultStyle", "Default Style", ["YES", "No"]),
|
|
7515
7521
|
getInputField("rowSpacing", "Row Spacing"),
|
|
7516
|
-
emptyBox$1(),
|
|
7522
|
+
emptyBox$1({ xs: 6, sm: 0, md: 4, lg: 4 }),
|
|
7517
7523
|
emptyBox$1()
|
|
7518
7524
|
];
|
|
7519
7525
|
break;
|
|
@@ -7534,7 +7540,7 @@ const buildPropertiesSection = function(type) {
|
|
|
7534
7540
|
getRadioInputField("DragAvailable", "Row Dragging", ["YES", "NO"]),
|
|
7535
7541
|
getRadioInputField("downloadAllData", "Download All Data", ["YES", "NO"]),
|
|
7536
7542
|
getInputField("selectKey", "Selection Key"),
|
|
7537
|
-
emptyBox$1(),
|
|
7543
|
+
emptyBox$1({ xs: 6, sm: 0, md: 0, lg: 0 }),
|
|
7538
7544
|
buildWrapper("Tree Table Properties", [
|
|
7539
7545
|
getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
|
|
7540
7546
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
@@ -7562,7 +7568,7 @@ const buildPropertiesSection = function(type) {
|
|
|
7562
7568
|
case "MultipleSelect":
|
|
7563
7569
|
uiSchema.elements = [
|
|
7564
7570
|
getRadioInputField("lazyLoading", "Lazy Loading", ["YES", "NO"]),
|
|
7565
|
-
emptyBox$1(),
|
|
7571
|
+
emptyBox$1({ xs: 0, sm: 6, md: 4, lg: 4 }),
|
|
7566
7572
|
emptyBox$1()
|
|
7567
7573
|
];
|
|
7568
7574
|
break;
|