impaktapps-ui-builder 0.0.358 → 0.0.359

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.
@@ -5988,17 +5988,6 @@ const ComponentSchema = {
5988
5988
  }
5989
5989
  }
5990
5990
  },
5991
- skipAvailable: {
5992
- type: "array",
5993
- items: {
5994
- type: "object",
5995
- properties: {
5996
- skipId: {
5997
- type: "string"
5998
- }
5999
- }
6000
- }
6001
- },
6002
5991
  Table_Download_Keys_Name: {
6003
5992
  type: "array",
6004
5993
  items: {
@@ -6799,8 +6788,7 @@ const buildPropertiesSection = function(type) {
6799
6788
  getInputField("completeText", "Complete Text"),
6800
6789
  getSelectField("orientation", "Orientation Type"),
6801
6790
  EmptyBox,
6802
- getArrayControl("sectionLabels", "label"),
6803
- getArrayControl("skipAvailable", "skipId")
6791
+ getArrayControl("sectionLabels", "label")
6804
6792
  ];
6805
6793
  break;
6806
6794
  case "PopUp":
@@ -10317,8 +10305,7 @@ const Stepper = {
10317
10305
  },
10318
10306
  config: {
10319
10307
  main: {
10320
- label: ["First", "Second", "Third"],
10321
- stepsSkip: { 0: "false", 1: "false" },
10308
+ steps: [{ label: "First" }, { label: "Second" }, { label: "Third" }],
10322
10309
  resetButton: false,
10323
10310
  resetText: "Reset",
10324
10311
  orientation: "vertical"
@@ -10338,13 +10325,6 @@ const buildStepper = (config, componentScope) => {
10338
10325
  return { label: e.label, id: i };
10339
10326
  });
10340
10327
  }
10341
- if (config.skipAvailable) {
10342
- const stepObj = {};
10343
- config.skipAvailable.map((e, i) => {
10344
- stepObj[e.skipId] = true;
10345
- });
10346
- stepper.config.main.stepSkip = stepObj;
10347
- }
10348
10328
  if (config.layout) {
10349
10329
  stepper.config.layout = createLayoutFormat(config.layout);
10350
10330
  }