@steedos-widgets/amis-lib 6.10.34-beta.5 → 6.10.34-beta.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,7 +4,6 @@ export function getAmisFileReadonlySchema(steedosField: any, ctx?: {}): Promise<
4
4
  enlargeAble: boolean;
5
5
  showToolbar: boolean;
6
6
  body?: undefined;
7
- name?: undefined;
8
7
  } | {
9
8
  type: string;
10
9
  body: {
@@ -52,10 +51,8 @@ export function getAmisFileReadonlySchema(steedosField: any, ctx?: {}): Promise<
52
51
  defaultImage?: undefined;
53
52
  enlargeAble?: undefined;
54
53
  showToolbar?: undefined;
55
- name?: undefined;
56
54
  } | {
57
55
  type: string;
58
- name: string;
59
56
  body: {
60
57
  type: string;
61
58
  placeholder: string;
@@ -118,7 +115,6 @@ export function getAmisFileSchema(steedosField: any, readonly: any, ctx: any): P
118
115
  enlargeAble: boolean;
119
116
  showToolbar: boolean;
120
117
  body?: undefined;
121
- name?: undefined;
122
118
  } | {
123
119
  type: string;
124
120
  body: {
@@ -166,10 +162,8 @@ export function getAmisFileSchema(steedosField: any, readonly: any, ctx: any): P
166
162
  defaultImage?: undefined;
167
163
  enlargeAble?: undefined;
168
164
  showToolbar?: undefined;
169
- name?: undefined;
170
165
  } | {
171
166
  type: string;
172
- name: string;
173
167
  body: {
174
168
  type: string;
175
169
  placeholder: string;
@@ -182,7 +182,6 @@ export function getObjectListHeaderFirstLine(objectSchema: any, listViewName: an
182
182
  visibleOn: any;
183
183
  className: string;
184
184
  }[];
185
- visibleOn: string;
186
185
  }[];
187
186
  md: string;
188
187
  valign: string;
@@ -622,7 +621,6 @@ export function getObjectListHeader(objectSchema: any, listViewName: any, ctx: a
622
621
  visibleOn: any;
623
622
  className: string;
624
623
  }[];
625
- visibleOn: string;
626
624
  }[];
627
625
  md: string;
628
626
  valign: string;
@@ -1,5 +1,6 @@
1
1
  export function getSettingListviewToolbarButtonSchema(): {
2
2
  type: string;
3
+ hideCaret: boolean;
3
4
  trigger: string;
4
5
  icon: string;
5
6
  btnClassName: string;
@@ -81,7 +81,6 @@ export function getApprovalDrawerSchema(instance: any, events: any): Promise<{
81
81
  required: boolean;
82
82
  autoFill: {
83
83
  new_next_step: string;
84
- next_users: any;
85
84
  };
86
85
  source: {
87
86
  url: string;
@@ -1,3 +1,4 @@
1
+ export function checkInstanceFlowVersion(instance: any): Promise<boolean>;
1
2
  export function getFlowFormSchema(instance: any, box: any): Promise<{
2
3
  type: string;
3
4
  name: string;
@@ -361,7 +362,6 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
361
362
  required: boolean;
362
363
  autoFill: {
363
364
  new_next_step: string;
364
- next_users: any;
365
365
  };
366
366
  source: {
367
367
  url: 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.10.34-beta.5",
4
+ "version": "6.10.34-beta.7",
5
5
  "unpkg": "./dist/index.umd.js",
6
6
  "main": "./dist/index.cjs.js",
7
7
  "module": "./dist/index.esm.js",
@@ -59,5 +59,5 @@
59
59
  "i18next": "24.2.2",
60
60
  "lodash": "^4.17.21"
61
61
  },
62
- "gitHead": "432bce3f8ed20e4f98ffab140c3b590a0d8af57e"
62
+ "gitHead": "5ff55d21ea7198228dbff49a9b95d8fd7035be78"
63
63
  }