@steedos/service-plugin-amis 2.6.4-beta.8 → 2.6.5
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/main/default/client/amis.render.client.js +1 -1
- package/main/default/pages/listview_form.page.amis.json +17 -2
- package/main/default/pages/object_layouts_form.page.amis.json +12 -1
- package/package.json +2 -2
- package/public/amis/amis.css +4 -0
- package/public/tailwind/tailwind-steedos.css +5 -9
|
@@ -68,7 +68,22 @@
|
|
|
68
68
|
}
|
|
69
69
|
],
|
|
70
70
|
"addable": false,
|
|
71
|
-
"draggable": false
|
|
71
|
+
"draggable": false,
|
|
72
|
+
"columns": [
|
|
73
|
+
{
|
|
74
|
+
"name": "field",
|
|
75
|
+
"inlineEditMode": false
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "width",
|
|
79
|
+
"width": 100
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "wrap",
|
|
83
|
+
"width": 50
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
"inlineEditMode": true
|
|
72
87
|
}
|
|
73
88
|
},
|
|
74
89
|
"sort": {
|
|
@@ -135,6 +150,7 @@
|
|
|
135
150
|
{
|
|
136
151
|
"type": "condition-builder",
|
|
137
152
|
"label": "",
|
|
153
|
+
"labelClassName": "none",
|
|
138
154
|
"name": "_filters_conditions",
|
|
139
155
|
"description": "",
|
|
140
156
|
"id": "u:a9f2232e30d7",
|
|
@@ -149,7 +165,6 @@
|
|
|
149
165
|
"disabled": false,
|
|
150
166
|
"className": "col-span-2 m-0",
|
|
151
167
|
"visibleOn": "!!this.object_name",
|
|
152
|
-
"labelClassName": "",
|
|
153
168
|
"en-US": {
|
|
154
169
|
"label": "Filters Conditions"
|
|
155
170
|
}
|
|
@@ -105,7 +105,17 @@
|
|
|
105
105
|
"id": "u:1120663b07c6",
|
|
106
106
|
"dialog": {
|
|
107
107
|
"title": "按钮明细"
|
|
108
|
-
}
|
|
108
|
+
},
|
|
109
|
+
"columns": [
|
|
110
|
+
{
|
|
111
|
+
"name": "button_name",
|
|
112
|
+
"inlineEditMode": false
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "visible_on"
|
|
116
|
+
}
|
|
117
|
+
],
|
|
118
|
+
"inlineEditMode": true
|
|
109
119
|
}
|
|
110
120
|
},
|
|
111
121
|
"fields": {
|
|
@@ -227,6 +237,7 @@
|
|
|
227
237
|
"draggable": true,
|
|
228
238
|
"editable": true,
|
|
229
239
|
"showIndex": true,
|
|
240
|
+
"removable": true,
|
|
230
241
|
"fields": [
|
|
231
242
|
{
|
|
232
243
|
"name": "group_name",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-plugin-amis",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.5",
|
|
4
4
|
"main": "package.service.js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:tailwind-base && yarn build:tailwind",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"publishConfig": {
|
|
14
14
|
"access": "public"
|
|
15
15
|
},
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "977b48666fda5a16f911d9b981da6b8b37a57e5c",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"tailwindcss": "3.2.4"
|
|
19
19
|
}
|
package/public/amis/amis.css
CHANGED
|
@@ -202,10 +202,6 @@
|
|
|
202
202
|
width: 2.25rem
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
-
.w-10 {
|
|
206
|
-
width: 2.5rem
|
|
207
|
-
}
|
|
208
|
-
|
|
209
205
|
.w-full {
|
|
210
206
|
width: 100%
|
|
211
207
|
}
|
|
@@ -222,11 +218,6 @@
|
|
|
222
218
|
width: 24rem
|
|
223
219
|
}
|
|
224
220
|
|
|
225
|
-
.min-w-max {
|
|
226
|
-
min-width: -moz-max-content;
|
|
227
|
-
min-width: max-content
|
|
228
|
-
}
|
|
229
|
-
|
|
230
221
|
.min-w-\[240px\] {
|
|
231
222
|
min-width: 240px
|
|
232
223
|
}
|
|
@@ -409,6 +400,11 @@
|
|
|
409
400
|
padding-bottom: 0.25rem
|
|
410
401
|
}
|
|
411
402
|
|
|
403
|
+
.py-4 {
|
|
404
|
+
padding-top: 1rem;
|
|
405
|
+
padding-bottom: 1rem
|
|
406
|
+
}
|
|
407
|
+
|
|
412
408
|
.pb-3 {
|
|
413
409
|
padding-bottom: 0.75rem
|
|
414
410
|
}
|