@steedos-widgets/amis-lib 1.3.17 → 1.3.18
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 +92 -14
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +93 -15
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +41 -35
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/converter/amis/toolbars/setting_listview/columns.d.ts +0 -1
- package/dist/types/lib/converter/amis/toolbars/setting_listview/copy.d.ts +6 -0
- package/dist/types/lib/converter/amis/toolbars/setting_listview/new.d.ts +19 -0
- package/dist/types/lib/converter/amis/toolbars/setting_listview.d.ts +25 -1
- package/package.json +2 -2
|
@@ -31,79 +31,98 @@ export function getNewListviewButtonSchema(): {
|
|
|
31
31
|
object_name: string;
|
|
32
32
|
};
|
|
33
33
|
fieldsExtend: {
|
|
34
|
+
group: string;
|
|
34
35
|
label: {
|
|
35
36
|
is_wide: boolean;
|
|
36
37
|
};
|
|
37
38
|
name: {
|
|
39
|
+
group: string;
|
|
38
40
|
amis: {
|
|
39
41
|
hidden: boolean;
|
|
40
42
|
required: boolean;
|
|
41
43
|
};
|
|
42
44
|
};
|
|
43
45
|
object_name: {
|
|
46
|
+
group: string;
|
|
44
47
|
amis: {
|
|
45
48
|
hidden: boolean;
|
|
46
49
|
};
|
|
47
50
|
};
|
|
48
51
|
filter_scope: {
|
|
52
|
+
group: string;
|
|
49
53
|
amis: {
|
|
50
54
|
hidden: boolean;
|
|
51
55
|
required: boolean;
|
|
52
56
|
};
|
|
53
57
|
};
|
|
54
58
|
columns: {
|
|
59
|
+
group: string;
|
|
55
60
|
amis: {
|
|
56
61
|
hidden: boolean;
|
|
57
62
|
required: boolean;
|
|
58
63
|
};
|
|
59
64
|
};
|
|
60
65
|
mobile_columns: {
|
|
66
|
+
group: string;
|
|
61
67
|
amis: {
|
|
62
68
|
hidden: boolean;
|
|
63
69
|
required: boolean;
|
|
64
70
|
};
|
|
65
71
|
};
|
|
66
72
|
searchable_fields: {
|
|
73
|
+
group: string;
|
|
67
74
|
amis: {
|
|
68
75
|
hidden: boolean;
|
|
69
76
|
required: boolean;
|
|
70
77
|
};
|
|
71
78
|
};
|
|
72
79
|
filter_fields: {
|
|
80
|
+
group: string;
|
|
73
81
|
amis: {
|
|
74
82
|
hidden: boolean;
|
|
75
83
|
required: boolean;
|
|
76
84
|
};
|
|
77
85
|
};
|
|
78
86
|
scrolling_mode: {
|
|
87
|
+
group: string;
|
|
79
88
|
amis: {
|
|
80
89
|
hidden: boolean;
|
|
81
90
|
required: boolean;
|
|
82
91
|
};
|
|
83
92
|
};
|
|
84
93
|
sort: {
|
|
94
|
+
group: string;
|
|
85
95
|
amis: {
|
|
86
96
|
hidden: boolean;
|
|
87
97
|
required: boolean;
|
|
88
98
|
};
|
|
89
99
|
};
|
|
90
100
|
show_count: {
|
|
101
|
+
group: string;
|
|
91
102
|
amis: {
|
|
92
103
|
hidden: boolean;
|
|
93
104
|
required: boolean;
|
|
94
105
|
};
|
|
95
106
|
};
|
|
96
107
|
type: {
|
|
108
|
+
group: string;
|
|
97
109
|
amis: {
|
|
98
110
|
hidden: boolean;
|
|
99
111
|
required: boolean;
|
|
100
112
|
};
|
|
101
113
|
};
|
|
102
114
|
shared: {
|
|
115
|
+
group: string;
|
|
103
116
|
amis: {
|
|
104
117
|
visibleOn: string;
|
|
105
118
|
};
|
|
106
119
|
};
|
|
120
|
+
filters: {
|
|
121
|
+
group: string;
|
|
122
|
+
amis: {
|
|
123
|
+
hidden: boolean;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
107
126
|
};
|
|
108
127
|
fields: string[];
|
|
109
128
|
onEvent: {
|
|
@@ -40,79 +40,98 @@ export function getSettingListviewToolbarButtonSchema(): {
|
|
|
40
40
|
object_name: string;
|
|
41
41
|
};
|
|
42
42
|
fieldsExtend: {
|
|
43
|
+
group: string;
|
|
43
44
|
label: {
|
|
44
45
|
is_wide: boolean;
|
|
45
46
|
};
|
|
46
47
|
name: {
|
|
48
|
+
group: string;
|
|
47
49
|
amis: {
|
|
48
50
|
hidden: boolean;
|
|
49
51
|
required: boolean;
|
|
50
52
|
};
|
|
51
53
|
};
|
|
52
54
|
object_name: {
|
|
55
|
+
group: string;
|
|
53
56
|
amis: {
|
|
54
57
|
hidden: boolean;
|
|
55
58
|
};
|
|
56
59
|
};
|
|
57
60
|
filter_scope: {
|
|
61
|
+
group: string;
|
|
58
62
|
amis: {
|
|
59
63
|
hidden: boolean;
|
|
60
64
|
required: boolean;
|
|
61
65
|
};
|
|
62
66
|
};
|
|
63
67
|
columns: {
|
|
68
|
+
group: string;
|
|
64
69
|
amis: {
|
|
65
70
|
hidden: boolean;
|
|
66
71
|
required: boolean;
|
|
67
72
|
};
|
|
68
73
|
};
|
|
69
74
|
mobile_columns: {
|
|
75
|
+
group: string;
|
|
70
76
|
amis: {
|
|
71
77
|
hidden: boolean;
|
|
72
78
|
required: boolean;
|
|
73
79
|
};
|
|
74
80
|
};
|
|
75
81
|
searchable_fields: {
|
|
82
|
+
group: string;
|
|
76
83
|
amis: {
|
|
77
84
|
hidden: boolean;
|
|
78
85
|
required: boolean;
|
|
79
86
|
};
|
|
80
87
|
};
|
|
81
88
|
filter_fields: {
|
|
89
|
+
group: string;
|
|
82
90
|
amis: {
|
|
83
91
|
hidden: boolean;
|
|
84
92
|
required: boolean;
|
|
85
93
|
};
|
|
86
94
|
};
|
|
87
95
|
scrolling_mode: {
|
|
96
|
+
group: string;
|
|
88
97
|
amis: {
|
|
89
98
|
hidden: boolean;
|
|
90
99
|
required: boolean;
|
|
91
100
|
};
|
|
92
101
|
};
|
|
93
102
|
sort: {
|
|
103
|
+
group: string;
|
|
94
104
|
amis: {
|
|
95
105
|
hidden: boolean;
|
|
96
106
|
required: boolean;
|
|
97
107
|
};
|
|
98
108
|
};
|
|
99
109
|
show_count: {
|
|
110
|
+
group: string;
|
|
100
111
|
amis: {
|
|
101
112
|
hidden: boolean;
|
|
102
113
|
required: boolean;
|
|
103
114
|
};
|
|
104
115
|
};
|
|
105
116
|
type: {
|
|
117
|
+
group: string;
|
|
106
118
|
amis: {
|
|
107
119
|
hidden: boolean;
|
|
108
120
|
required: boolean;
|
|
109
121
|
};
|
|
110
122
|
};
|
|
111
123
|
shared: {
|
|
124
|
+
group: string;
|
|
112
125
|
amis: {
|
|
113
126
|
visibleOn: string;
|
|
114
127
|
};
|
|
115
128
|
};
|
|
129
|
+
filters: {
|
|
130
|
+
group: string;
|
|
131
|
+
amis: {
|
|
132
|
+
hidden: boolean;
|
|
133
|
+
};
|
|
134
|
+
};
|
|
116
135
|
};
|
|
117
136
|
fields: string[];
|
|
118
137
|
onEvent: {
|
|
@@ -229,6 +248,12 @@ export function getSettingListviewToolbarButtonSchema(): {
|
|
|
229
248
|
visibleOn: string;
|
|
230
249
|
};
|
|
231
250
|
};
|
|
251
|
+
filters: {
|
|
252
|
+
group: string;
|
|
253
|
+
amis: {
|
|
254
|
+
hidden: boolean;
|
|
255
|
+
};
|
|
256
|
+
};
|
|
232
257
|
};
|
|
233
258
|
fields: string[];
|
|
234
259
|
onEvent: {
|
|
@@ -377,7 +402,6 @@ export function getSettingListviewToolbarButtonSchema(): {
|
|
|
377
402
|
};
|
|
378
403
|
};
|
|
379
404
|
mobile_columns: {
|
|
380
|
-
group: string;
|
|
381
405
|
amis: {
|
|
382
406
|
type: string;
|
|
383
407
|
sortable: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.18",
|
|
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": "f3b0222793b8b873dbab5424ecfdee95ee7329d5"
|
|
65
65
|
}
|