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.
@@ -13,7 +13,7 @@ declare const _default: (funcParams: funcParamsProps) => {
13
13
  onCellRenderer: (cellParams: any) => {};
14
14
  onClick: () => void;
15
15
  onKeyDown: () => void;
16
- onFileDelete: () => void;
16
+ onFileDelete: () => Promise<void>;
17
17
  onMount: () => void;
18
18
  onFileDownload: () => void;
19
19
  onFileUpload: () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.57-alpha.4",
3
+ "version": "1.0.57-alpha.6",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -11,7 +11,7 @@ export default {
11
11
  label: "",
12
12
  type: "text",
13
13
  multiple: true,
14
- variant: "standard",
14
+ variant: "outlined",
15
15
  options: [],
16
16
  },
17
17
  },
@@ -58,6 +58,13 @@ export const ComponentSchema: any = {
58
58
  { title: "Amount Column", const: "amount" },
59
59
  ]
60
60
  },
61
+ variant: {
62
+ oneOf: [
63
+ { title: "Outlined", const: "outlined" },
64
+ { title: "Filled", const: "filled" },
65
+ { title: "Standard", const: "standard" },
66
+ ]
67
+ },
61
68
  orientation: {
62
69
  oneOf: [
63
70
  { title: "Horizontal", const: "horizontal" },
@@ -240,7 +240,7 @@ export default (funcParams: funcParamsProps) => {
240
240
  onKeyDown: function () {
241
241
  this.callHandler("onKeyDown")
242
242
  },
243
- onFileDelete: function () {
243
+ onFileDelete: async function () {
244
244
  this.callHandler("onFileDelete")
245
245
  },
246
246
  onMount: function () {