@steedos-widgets/amis-lib 6.3.0-beta.17 → 6.3.0-beta.19
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.
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/index.cjs.js +727 -259
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +727 -259
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +13 -13
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/buttons.d.ts +9 -21
- package/dist/types/lib/converter/amis/fields/editor.d.ts +1 -0
- package/dist/types/lib/converter/amis/header.d.ts +9 -21
- package/dist/types/lib/converter/amis/toolbars/setting_listview/new.d.ts +1 -0
- package/dist/types/lib/converter/amis/toolbars/setting_listview.d.ts +1 -0
- package/package.json +2 -2
|
@@ -30,11 +30,6 @@ export function getObjectDetailButtonsSchemas(objectSchema: any, recordId: any,
|
|
|
30
30
|
body: ({
|
|
31
31
|
type: string;
|
|
32
32
|
style: {
|
|
33
|
-
position: string;
|
|
34
|
-
top: number;
|
|
35
|
-
right: number;
|
|
36
|
-
bottom: number;
|
|
37
|
-
left: number;
|
|
38
33
|
"z-index": number;
|
|
39
34
|
background: string;
|
|
40
35
|
height: string;
|
|
@@ -42,6 +37,9 @@ export function getObjectDetailButtonsSchemas(objectSchema: any, recordId: any,
|
|
|
42
37
|
padding: string;
|
|
43
38
|
margin: string;
|
|
44
39
|
"border-radius": string;
|
|
40
|
+
position?: undefined;
|
|
41
|
+
bottom?: undefined;
|
|
42
|
+
left?: undefined;
|
|
45
43
|
"box-shadow"?: undefined;
|
|
46
44
|
};
|
|
47
45
|
body?: undefined;
|
|
@@ -56,8 +54,6 @@ export function getObjectDetailButtonsSchemas(objectSchema: any, recordId: any,
|
|
|
56
54
|
padding: string;
|
|
57
55
|
background: string;
|
|
58
56
|
"box-shadow": string;
|
|
59
|
-
top?: undefined;
|
|
60
|
-
right?: undefined;
|
|
61
57
|
height?: undefined;
|
|
62
58
|
margin?: undefined;
|
|
63
59
|
"border-radius"?: undefined;
|
|
@@ -136,11 +132,6 @@ export function getObjectListViewButtonsSchemas(objectSchema: any, ctx: any): {
|
|
|
136
132
|
body: ({
|
|
137
133
|
type: string;
|
|
138
134
|
style: {
|
|
139
|
-
position: string;
|
|
140
|
-
top: number;
|
|
141
|
-
right: number;
|
|
142
|
-
bottom: number;
|
|
143
|
-
left: number;
|
|
144
135
|
"z-index": number;
|
|
145
136
|
background: string;
|
|
146
137
|
height: string;
|
|
@@ -148,6 +139,9 @@ export function getObjectListViewButtonsSchemas(objectSchema: any, ctx: any): {
|
|
|
148
139
|
padding: string;
|
|
149
140
|
margin: string;
|
|
150
141
|
"border-radius": string;
|
|
142
|
+
position?: undefined;
|
|
143
|
+
bottom?: undefined;
|
|
144
|
+
left?: undefined;
|
|
151
145
|
"box-shadow"?: undefined;
|
|
152
146
|
};
|
|
153
147
|
body?: undefined;
|
|
@@ -162,8 +156,6 @@ export function getObjectListViewButtonsSchemas(objectSchema: any, ctx: any): {
|
|
|
162
156
|
padding: string;
|
|
163
157
|
background: string;
|
|
164
158
|
"box-shadow": string;
|
|
165
|
-
top?: undefined;
|
|
166
|
-
right?: undefined;
|
|
167
159
|
height?: undefined;
|
|
168
160
|
margin?: undefined;
|
|
169
161
|
"border-radius"?: undefined;
|
|
@@ -248,11 +240,6 @@ export function getObjectRecordDetailRelatedListButtonsSchemas(objectSchema: any
|
|
|
248
240
|
body: ({
|
|
249
241
|
type: string;
|
|
250
242
|
style: {
|
|
251
|
-
position: string;
|
|
252
|
-
top: number;
|
|
253
|
-
right: number;
|
|
254
|
-
bottom: number;
|
|
255
|
-
left: number;
|
|
256
243
|
"z-index": number;
|
|
257
244
|
background: string;
|
|
258
245
|
height: string;
|
|
@@ -260,6 +247,9 @@ export function getObjectRecordDetailRelatedListButtonsSchemas(objectSchema: any
|
|
|
260
247
|
padding: string;
|
|
261
248
|
margin: string;
|
|
262
249
|
"border-radius": string;
|
|
250
|
+
position?: undefined;
|
|
251
|
+
bottom?: undefined;
|
|
252
|
+
left?: undefined;
|
|
263
253
|
"box-shadow"?: undefined;
|
|
264
254
|
};
|
|
265
255
|
body?: undefined;
|
|
@@ -274,8 +264,6 @@ export function getObjectRecordDetailRelatedListButtonsSchemas(objectSchema: any
|
|
|
274
264
|
padding: string;
|
|
275
265
|
background: string;
|
|
276
266
|
"box-shadow": string;
|
|
277
|
-
top?: undefined;
|
|
278
|
-
right?: undefined;
|
|
279
267
|
height?: undefined;
|
|
280
268
|
margin?: undefined;
|
|
281
269
|
"border-radius"?: undefined;
|
|
@@ -70,11 +70,6 @@ export function getObjectListHeaderFirstLine(objectSchema: any, listViewName: an
|
|
|
70
70
|
body: ({
|
|
71
71
|
type: string;
|
|
72
72
|
style: {
|
|
73
|
-
position: string;
|
|
74
|
-
top: number;
|
|
75
|
-
right: number;
|
|
76
|
-
bottom: number;
|
|
77
|
-
left: number;
|
|
78
73
|
"z-index": number;
|
|
79
74
|
background: string;
|
|
80
75
|
height: string;
|
|
@@ -82,6 +77,9 @@ export function getObjectListHeaderFirstLine(objectSchema: any, listViewName: an
|
|
|
82
77
|
padding: string;
|
|
83
78
|
margin: string;
|
|
84
79
|
"border-radius": string;
|
|
80
|
+
position?: undefined;
|
|
81
|
+
bottom?: undefined;
|
|
82
|
+
left?: undefined;
|
|
85
83
|
"box-shadow"?: undefined;
|
|
86
84
|
};
|
|
87
85
|
body?: undefined;
|
|
@@ -96,8 +94,6 @@ export function getObjectListHeaderFirstLine(objectSchema: any, listViewName: an
|
|
|
96
94
|
padding: string;
|
|
97
95
|
background: string;
|
|
98
96
|
"box-shadow": string;
|
|
99
|
-
top?: undefined;
|
|
100
|
-
right?: undefined;
|
|
101
97
|
height?: undefined;
|
|
102
98
|
margin?: undefined;
|
|
103
99
|
"border-radius"?: undefined;
|
|
@@ -509,11 +505,6 @@ export function getObjectListHeader(objectSchema: any, listViewName: any, ctx: a
|
|
|
509
505
|
body: ({
|
|
510
506
|
type: string;
|
|
511
507
|
style: {
|
|
512
|
-
position: string;
|
|
513
|
-
top: number;
|
|
514
|
-
right: number;
|
|
515
|
-
bottom: number;
|
|
516
|
-
left: number;
|
|
517
508
|
"z-index": number;
|
|
518
509
|
background: string;
|
|
519
510
|
height: string;
|
|
@@ -521,6 +512,9 @@ export function getObjectListHeader(objectSchema: any, listViewName: any, ctx: a
|
|
|
521
512
|
padding: string;
|
|
522
513
|
margin: string;
|
|
523
514
|
"border-radius": string;
|
|
515
|
+
position?: undefined;
|
|
516
|
+
bottom?: undefined;
|
|
517
|
+
left?: undefined;
|
|
524
518
|
"box-shadow"?: undefined;
|
|
525
519
|
};
|
|
526
520
|
body?: undefined;
|
|
@@ -535,8 +529,6 @@ export function getObjectListHeader(objectSchema: any, listViewName: any, ctx: a
|
|
|
535
529
|
padding: string;
|
|
536
530
|
background: string;
|
|
537
531
|
"box-shadow": string;
|
|
538
|
-
top?: undefined;
|
|
539
|
-
right?: undefined;
|
|
540
532
|
height?: undefined;
|
|
541
533
|
margin?: undefined;
|
|
542
534
|
"border-radius"?: undefined;
|
|
@@ -786,11 +778,6 @@ export function getObjectRecordDetailRelatedListHeader(relatedObjectSchema: any,
|
|
|
786
778
|
body: ({
|
|
787
779
|
type: string;
|
|
788
780
|
style: {
|
|
789
|
-
position: string;
|
|
790
|
-
top: number;
|
|
791
|
-
right: number;
|
|
792
|
-
bottom: number;
|
|
793
|
-
left: number;
|
|
794
781
|
"z-index": number;
|
|
795
782
|
background: string;
|
|
796
783
|
height: string;
|
|
@@ -798,6 +785,9 @@ export function getObjectRecordDetailRelatedListHeader(relatedObjectSchema: any,
|
|
|
798
785
|
padding: string;
|
|
799
786
|
margin: string;
|
|
800
787
|
"border-radius": string;
|
|
788
|
+
position?: undefined;
|
|
789
|
+
bottom?: undefined;
|
|
790
|
+
left?: undefined;
|
|
801
791
|
"box-shadow"?: undefined;
|
|
802
792
|
};
|
|
803
793
|
body?: undefined;
|
|
@@ -812,8 +802,6 @@ export function getObjectRecordDetailRelatedListHeader(relatedObjectSchema: any,
|
|
|
812
802
|
padding: string;
|
|
813
803
|
background: string;
|
|
814
804
|
"box-shadow": string;
|
|
815
|
-
top?: undefined;
|
|
816
|
-
right?: undefined;
|
|
817
805
|
height?: undefined;
|
|
818
806
|
margin?: undefined;
|
|
819
807
|
"border-radius"?: undefined;
|
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.0-beta.
|
|
4
|
+
"version": "6.3.0-beta.19",
|
|
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": "
|
|
64
|
+
"gitHead": "ae1ce6c6b464db205540254899bf9734f02c7892"
|
|
65
65
|
}
|