impaktapps-ui-builder 1.0.57-alpha.4 → 1.0.57-alpha.6

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.
@@ -6304,6 +6304,13 @@ const ComponentSchema = {
6304
6304
  { title: "Amount Column", const: "amount" }
6305
6305
  ]
6306
6306
  },
6307
+ variant: {
6308
+ oneOf: [
6309
+ { title: "Outlined", const: "outlined" },
6310
+ { title: "Filled", const: "filled" },
6311
+ { title: "Standard", const: "standard" }
6312
+ ]
6313
+ },
6307
6314
  orientation: {
6308
6315
  oneOf: [
6309
6316
  { title: "Horizontal", const: "horizontal" },
@@ -10504,7 +10511,7 @@ var service = (funcParams) => {
10504
10511
  onKeyDown: function() {
10505
10512
  this.callHandler("onKeyDown");
10506
10513
  },
10507
- onFileDelete: function() {
10514
+ onFileDelete: async function() {
10508
10515
  this.callHandler("onFileDelete");
10509
10516
  },
10510
10517
  onMount: function() {
@@ -11756,7 +11763,7 @@ var MultipleSelect = {
11756
11763
  label: "",
11757
11764
  type: "text",
11758
11765
  multiple: true,
11759
- variant: "standard",
11766
+ variant: "outlined",
11760
11767
  options: []
11761
11768
  }
11762
11769
  }