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.
@@ -6317,28 +6317,28 @@ const ComponentSchema = {
6317
6317
  { title: "Standard", const: "standard" }
6318
6318
  ]
6319
6319
  },
6320
- anchorOriginVertical: {
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
- anchorOriginHorizontal: {
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
- transformOriginVertical: {
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
- transformOriginHorizontal: {
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("anchorOriginVertical", "Attach To (Vertical)"),
8038
- getSelectField("anchorOriginHorizontal", "Attach To (Horizontal)"),
8039
- getSelectField("transformOriginVertical", "Popover Start (Vertical)"),
8040
- getSelectField("transformOriginHorizontal", "Popover Start (Horizontal)"),
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.anchorOriginVertical = config2.anchorOriginVertical;
13069
- popOver.config.main.anchorOriginHorizontal = config2.anchorOriginHorizontal;
13070
- popOver.config.main.transformOriginVertical = config2.transformOriginVertical;
13071
- popOver.config.main.transformOriginHorizontal = config2.transformOriginHorizontal;
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) {