impaktapps-ui-builder 1.0.253 → 1.0.255
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 +12 -12
- 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/buildPopover.ts +4 -4
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +5 -4
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +4 -4
|
@@ -6317,28 +6317,28 @@ const ComponentSchema = {
|
|
|
6317
6317
|
{ title: "Standard", const: "standard" }
|
|
6318
6318
|
]
|
|
6319
6319
|
},
|
|
6320
|
-
|
|
6320
|
+
positionVertical: {
|
|
6321
6321
|
oneOf: [
|
|
6322
6322
|
{ title: "Top", const: "top" },
|
|
6323
6323
|
{ title: "Center", const: "center" },
|
|
6324
6324
|
{ title: "Bottom", const: "bottom" }
|
|
6325
6325
|
]
|
|
6326
6326
|
},
|
|
6327
|
-
|
|
6327
|
+
positionHorizontal: {
|
|
6328
6328
|
oneOf: [
|
|
6329
6329
|
{ title: "Left", const: "left" },
|
|
6330
6330
|
{ title: "Center", const: "center" },
|
|
6331
6331
|
{ title: "Right", const: "right" }
|
|
6332
6332
|
]
|
|
6333
6333
|
},
|
|
6334
|
-
|
|
6334
|
+
contentVertical: {
|
|
6335
6335
|
oneOf: [
|
|
6336
6336
|
{ title: "Top", const: "top" },
|
|
6337
6337
|
{ title: "Center", const: "center" },
|
|
6338
6338
|
{ title: "Bottom", const: "bottom" }
|
|
6339
6339
|
]
|
|
6340
6340
|
},
|
|
6341
|
-
|
|
6341
|
+
contentHorizontal: {
|
|
6342
6342
|
oneOf: [
|
|
6343
6343
|
{ title: "Left", const: "left" },
|
|
6344
6344
|
{ title: "Center", const: "center" },
|
|
@@ -8034,10 +8034,10 @@ const buildPropertiesSection = function(type) {
|
|
|
8034
8034
|
break;
|
|
8035
8035
|
case "PopOver":
|
|
8036
8036
|
uiSchema.elements = [
|
|
8037
|
-
getSelectField("
|
|
8038
|
-
getSelectField("
|
|
8039
|
-
getSelectField("
|
|
8040
|
-
getSelectField("
|
|
8037
|
+
getSelectField("positionVertical", "Attach To (Vertical)"),
|
|
8038
|
+
getSelectField("positionHorizontal", "Attach To (Horizontal)"),
|
|
8039
|
+
getSelectField("contentVertical", "Popover Start (Vertical)"),
|
|
8040
|
+
getSelectField("contentHorizontal", "Popover Start (Horizontal)"),
|
|
8041
8041
|
getInputField("width", "Width"),
|
|
8042
8042
|
getInputField("gap", "Gap"),
|
|
8043
8043
|
emptyBox$1("PopUpEmpty", { xs: 6, sm: 0, md: 8, lg: 6 })
|
|
@@ -13065,10 +13065,10 @@ const PopOver = {
|
|
|
13065
13065
|
const buildPopOver = (config2, componentScope2) => {
|
|
13066
13066
|
const popOver = _.cloneDeep(PopOver);
|
|
13067
13067
|
popOver.scope = componentScope2;
|
|
13068
|
-
popOver.config.main.
|
|
13069
|
-
popOver.config.main.
|
|
13070
|
-
popOver.config.main.
|
|
13071
|
-
popOver.config.main.
|
|
13068
|
+
popOver.config.main.positionVertical = config2.positionVertical;
|
|
13069
|
+
popOver.config.main.positionHorizontal = config2.positionHorizontal;
|
|
13070
|
+
popOver.config.main.contentVertical = config2.contentVertical;
|
|
13071
|
+
popOver.config.main.contentHorizontal = config2.contentHorizontal;
|
|
13072
13072
|
popOver.config.main.width = config2.width;
|
|
13073
13073
|
popOver.config.main.gap = config2.gap;
|
|
13074
13074
|
if (config2.layout) {
|