@steedos-widgets/amis-lib 6.3.6 → 6.3.7

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.
@@ -4,6 +4,7 @@ export function getAmisFileReadonlySchema(steedosField: any, ctx?: {}): Promise<
4
4
  enlargeAble: boolean;
5
5
  showToolbar: boolean;
6
6
  body?: undefined;
7
+ name?: undefined;
7
8
  } | {
8
9
  type: string;
9
10
  body: {
@@ -26,16 +27,20 @@ export function getAmisFileReadonlySchema(steedosField: any, ctx?: {}): Promise<
26
27
  label?: undefined;
27
28
  };
28
29
  placeholder?: undefined;
30
+ className?: undefined;
29
31
  source?: undefined;
30
32
  };
31
33
  defaultImage?: undefined;
32
34
  enlargeAble?: undefined;
33
35
  showToolbar?: undefined;
36
+ name?: undefined;
34
37
  } | {
35
38
  type: string;
39
+ name: string;
36
40
  body: {
37
41
  type: string;
38
42
  placeholder: string;
43
+ className: string;
39
44
  source: string;
40
45
  items: {
41
46
  type: string;
@@ -91,6 +96,7 @@ export function getAmisFileSchema(steedosField: any, readonly: any, ctx: any): P
91
96
  enlargeAble: boolean;
92
97
  showToolbar: boolean;
93
98
  body?: undefined;
99
+ name?: undefined;
94
100
  } | {
95
101
  type: string;
96
102
  body: {
@@ -113,16 +119,20 @@ export function getAmisFileSchema(steedosField: any, readonly: any, ctx: any): P
113
119
  label?: undefined;
114
120
  };
115
121
  placeholder?: undefined;
122
+ className?: undefined;
116
123
  source?: undefined;
117
124
  };
118
125
  defaultImage?: undefined;
119
126
  enlargeAble?: undefined;
120
127
  showToolbar?: undefined;
128
+ name?: undefined;
121
129
  } | {
122
130
  type: string;
131
+ name: string;
123
132
  body: {
124
133
  type: string;
125
134
  placeholder: string;
135
+ className: string;
126
136
  source: string;
127
137
  items: {
128
138
  type: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@steedos-widgets/amis-lib",
3
3
  "private": false,
4
- "version": "6.3.6",
4
+ "version": "6.3.7",
5
5
  "unpkg": "./dist/index.umd.js",
6
6
  "main": "./dist/index.cjs.js",
7
7
  "module": "./dist/index.esm.js",
@@ -61,5 +61,5 @@
61
61
  "lodash": "^4.17.21",
62
62
  "react-i18next": "12.3.1"
63
63
  },
64
- "gitHead": "ba522a8b8f014fb81a597c36be6383c31ff6aebf"
64
+ "gitHead": "4c8fd800cfe3a46819ab697524c629af97270bf5"
65
65
  }