impaktapps-ui-builder 1.0.391 → 1.0.393
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 -1
- 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/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildSplitViewContainer.tsx +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +6 -0
- package/src/impaktapps-ui-builder/builder/services/component.ts +1 -1
|
@@ -8306,6 +8306,12 @@ const buildPropertiesSection = function(type) {
|
|
|
8306
8306
|
emptyBox$1("PdfViewer", { xs: 6, sm: 6, md: 8, lg: 9 })
|
|
8307
8307
|
];
|
|
8308
8308
|
break;
|
|
8309
|
+
case "splitViewContainer":
|
|
8310
|
+
uiSchema.elements = [
|
|
8311
|
+
getInputField("expandedPanelHeight", "Expanded Panel Height"),
|
|
8312
|
+
emptyBox$1("splitViewContainer", { xs: 6, sm: 6, md: 8, lg: 9 })
|
|
8313
|
+
];
|
|
8314
|
+
break;
|
|
8309
8315
|
case "Date":
|
|
8310
8316
|
uiSchema.elements = [
|
|
8311
8317
|
getSelectField("variant", "Variant"),
|
|
@@ -8882,7 +8888,7 @@ const sectionLabels = {
|
|
|
8882
8888
|
PopUp: ["Core", "Components", "Properties", "Events", "Style"],
|
|
8883
8889
|
PopOver: ["Core", "Components", "Properties", "Style"],
|
|
8884
8890
|
PdfViewer: ["Core", "Properties", "Style"],
|
|
8885
|
-
SplitViewContainer: ["Core", "Components", "Style"],
|
|
8891
|
+
SplitViewContainer: ["Core", "Components", "Properties", "Style"],
|
|
8886
8892
|
Stepper: ["Core", "Components", "Properties", "Events", "Style"],
|
|
8887
8893
|
DataGrid: ["Core", "Components", "Properties", "Events", "Style"],
|
|
8888
8894
|
InputSlider: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
@@ -13247,6 +13253,9 @@ var SplitViewContainer = {
|
|
|
13247
13253
|
const buildSplitViewContainer = (config2, componentScope2, store2) => {
|
|
13248
13254
|
const splitViewContainer = _.cloneDeep(SplitViewContainer);
|
|
13249
13255
|
splitViewContainer.scope = componentScope2;
|
|
13256
|
+
if (config2.expandedPanelHeight) {
|
|
13257
|
+
splitViewContainer.config.main.expandedPanelHeight = config2.expandedPanelHeight;
|
|
13258
|
+
}
|
|
13250
13259
|
if (config2.style) {
|
|
13251
13260
|
splitViewContainer.config.style = JSON.parse(config2.style);
|
|
13252
13261
|
}
|