impaktapps-ui-builder 1.0.390 → 1.0.391
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 +14 -14
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +6 -6
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/buildSplitViewContainer.d.ts +1 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildSplitViewContainer.tsx +17 -0
- package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +3 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/{dualWrapper.ts → splitViewContainer.ts} +2 -2
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +1 -1
- package/src/impaktapps-ui-builder/builder/services/component.ts +2 -2
- package/dist/src/impaktapps-ui-builder/builder/build/buildDualWrapper.d.ts +0 -1
- package/src/impaktapps-ui-builder/builder/build/buildDualWrapper.tsx +0 -17
- /package/dist/src/impaktapps-ui-builder/builder/build/uischema/{dualWrapper.d.ts → splitViewContainer.d.ts} +0 -0
|
@@ -6282,7 +6282,7 @@ const ComponentSchema = {
|
|
|
6282
6282
|
{ title: "Tree ", const: "TreeMap" },
|
|
6283
6283
|
{ title: "Thought of the day", const: "Thought" },
|
|
6284
6284
|
{ title: "PDF", const: "PdfViewer" },
|
|
6285
|
-
{ title: "
|
|
6285
|
+
{ title: "Split View Container", const: "SplitViewContainer" }
|
|
6286
6286
|
]
|
|
6287
6287
|
},
|
|
6288
6288
|
elementType: {
|
|
@@ -8881,8 +8881,8 @@ const sectionLabels = {
|
|
|
8881
8881
|
TextArea: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8882
8882
|
PopUp: ["Core", "Components", "Properties", "Events", "Style"],
|
|
8883
8883
|
PopOver: ["Core", "Components", "Properties", "Style"],
|
|
8884
|
-
PdfViewer: ["Core", "
|
|
8885
|
-
|
|
8884
|
+
PdfViewer: ["Core", "Properties", "Style"],
|
|
8885
|
+
SplitViewContainer: ["Core", "Components", "Style"],
|
|
8886
8886
|
Stepper: ["Core", "Components", "Properties", "Events", "Style"],
|
|
8887
8887
|
DataGrid: ["Core", "Components", "Properties", "Events", "Style"],
|
|
8888
8888
|
InputSlider: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
@@ -13233,27 +13233,27 @@ const buildPdfViewer = (config2, componentScope2) => {
|
|
|
13233
13233
|
}
|
|
13234
13234
|
return PdfViewer;
|
|
13235
13235
|
};
|
|
13236
|
-
var
|
|
13236
|
+
var SplitViewContainer = {
|
|
13237
13237
|
type: "Control",
|
|
13238
|
-
scope: "#/properties/
|
|
13238
|
+
scope: "#/properties/SplitViewContainerPath",
|
|
13239
13239
|
options: {
|
|
13240
|
-
widget: "
|
|
13240
|
+
widget: "SplitViewContainer"
|
|
13241
13241
|
},
|
|
13242
13242
|
config: {
|
|
13243
13243
|
layout: { xs: 12, sm: 12, md: 12, lg: 12 },
|
|
13244
13244
|
main: {}
|
|
13245
13245
|
}
|
|
13246
13246
|
};
|
|
13247
|
-
const
|
|
13248
|
-
const
|
|
13249
|
-
|
|
13247
|
+
const buildSplitViewContainer = (config2, componentScope2, store2) => {
|
|
13248
|
+
const splitViewContainer = _.cloneDeep(SplitViewContainer);
|
|
13249
|
+
splitViewContainer.scope = componentScope2;
|
|
13250
13250
|
if (config2.style) {
|
|
13251
|
-
|
|
13251
|
+
splitViewContainer.config.style = JSON.parse(config2.style);
|
|
13252
13252
|
}
|
|
13253
13253
|
if (config2.layout) {
|
|
13254
|
-
|
|
13254
|
+
splitViewContainer.config.layout = createLayoutFormat(config2.layout);
|
|
13255
13255
|
}
|
|
13256
|
-
return
|
|
13256
|
+
return splitViewContainer;
|
|
13257
13257
|
};
|
|
13258
13258
|
let schema = {
|
|
13259
13259
|
type: "object",
|
|
@@ -13488,8 +13488,8 @@ const buildUiSchema = (config2, store2) => {
|
|
|
13488
13488
|
case "PdfViewer":
|
|
13489
13489
|
elements = buildPdfViewer(config2, componentScope2);
|
|
13490
13490
|
break;
|
|
13491
|
-
case "
|
|
13492
|
-
elements =
|
|
13491
|
+
case "SplitViewContainer":
|
|
13492
|
+
elements = buildSplitViewContainer(config2, componentScope2);
|
|
13493
13493
|
break;
|
|
13494
13494
|
default:
|
|
13495
13495
|
schema = {
|