@steedos/service-plugin-amis 2.4.0-beta.36 → 2.4.0-beta.37
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.
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"id": "u:4e769995f638",
|
|
89
89
|
"source": {
|
|
90
90
|
"method": "get",
|
|
91
|
-
"url": "/service/api/amis-metadata-objects/objects/options",
|
|
91
|
+
"url": "${context.rootUrl}/service/api/amis-metadata-objects/objects/options",
|
|
92
92
|
"headers": {
|
|
93
93
|
"Authorization": "Bearer ${context.tenantId},${context.authToken}"
|
|
94
94
|
}
|
|
@@ -241,7 +241,7 @@
|
|
|
241
241
|
"id": "u:bef2e378d96f",
|
|
242
242
|
"api": {
|
|
243
243
|
"method": "get",
|
|
244
|
-
"url": "/service/api/amis-metadata-objects/objects/${object_name}/actions/options",
|
|
244
|
+
"url": "${context.rootUrl}/service/api/amis-metadata-objects/objects/${object_name}/actions/options",
|
|
245
245
|
"adaptor": "let data = payload.data;\ndata.buttons_options = data.options;\ndelete data.options\npayload.data = data;\nreturn payload;\n",
|
|
246
246
|
"sendOn": "!!this.object_name",
|
|
247
247
|
"headers": {
|
|
@@ -496,7 +496,7 @@
|
|
|
496
496
|
"affixFooter": false,
|
|
497
497
|
"api": {
|
|
498
498
|
"method": "get",
|
|
499
|
-
"url": "/service/api/amis-metadata-objects/objects/${object_name}/fields/layout_options",
|
|
499
|
+
"url": "${context.rootUrl}/service/api/amis-metadata-objects/objects/${object_name}/fields/layout_options",
|
|
500
500
|
"adaptor": "let data = payload.data;\ndata.fields_options = data.options;\ndata.field_groups_options = lodash.uniq(lodash.compact(lodash.map(data.options, \"group\"))) || [];\ndelete data.options\npayload.data = data;\nreturn payload;\n",
|
|
501
501
|
"sendOn": "!!this.object_name",
|
|
502
502
|
"data": null,
|
|
@@ -536,7 +536,7 @@
|
|
|
536
536
|
"id": "u:dbadaff47153",
|
|
537
537
|
"api": {
|
|
538
538
|
"method": "get",
|
|
539
|
-
"url": "/service/api/amis-metadata-objects/objects/${object_name}/relatedLists/options",
|
|
539
|
+
"url": "${context.rootUrl}/service/api/amis-metadata-objects/objects/${object_name}/relatedLists/options",
|
|
540
540
|
"sendOn": "!!this.object_name",
|
|
541
541
|
"adaptor": "let data = payload.data;\ndata.related_lists_options = data.options;\ndelete data.options\npayload.data = data;\nreturn payload;\n",
|
|
542
542
|
"headers": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-plugin-amis",
|
|
3
|
-
"version": "2.4.0-beta.
|
|
3
|
+
"version": "2.4.0-beta.37",
|
|
4
4
|
"main": "package.service.js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:tailwind-base && yarn build:tailwind",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@steedos-widgets/amis-lib": "^1.0.22"
|
|
18
18
|
},
|
|
19
|
-
"gitHead": "
|
|
19
|
+
"gitHead": "3fe675c2fb030976c7e43729b754ce772c07d8e8",
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"tailwindcss": "3.2.4"
|
|
22
22
|
}
|
|
@@ -69,6 +69,10 @@ body.steedos .top-0 {
|
|
|
69
69
|
top: 0px
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
+
body.steedos .bottom-0 {
|
|
73
|
+
bottom: 0px
|
|
74
|
+
}
|
|
75
|
+
|
|
72
76
|
body.steedos .z-40 {
|
|
73
77
|
z-index: 40
|
|
74
78
|
}
|
|
@@ -89,6 +93,10 @@ body.steedos .m-0 {
|
|
|
89
93
|
margin: 0px
|
|
90
94
|
}
|
|
91
95
|
|
|
96
|
+
body.steedos .m-3 {
|
|
97
|
+
margin: 0.75rem
|
|
98
|
+
}
|
|
99
|
+
|
|
92
100
|
body.steedos .mx-4 {
|
|
93
101
|
margin-left: 1rem;
|
|
94
102
|
margin-right: 1rem
|
|
@@ -155,6 +163,10 @@ body.steedos .hidden {
|
|
|
155
163
|
display: none
|
|
156
164
|
}
|
|
157
165
|
|
|
166
|
+
body.steedos .h-full {
|
|
167
|
+
height: 100%
|
|
168
|
+
}
|
|
169
|
+
|
|
158
170
|
body.steedos .h-\[50px\] {
|
|
159
171
|
height: 50px
|
|
160
172
|
}
|
|
@@ -163,10 +175,6 @@ body.steedos .h-10 {
|
|
|
163
175
|
height: 2.5rem
|
|
164
176
|
}
|
|
165
177
|
|
|
166
|
-
body.steedos .h-full {
|
|
167
|
-
height: 100%
|
|
168
|
-
}
|
|
169
|
-
|
|
170
178
|
body.steedos .w-full {
|
|
171
179
|
width: 100%
|
|
172
180
|
}
|
|
@@ -187,6 +195,14 @@ body.steedos .w-6\/12 {
|
|
|
187
195
|
width: 50%
|
|
188
196
|
}
|
|
189
197
|
|
|
198
|
+
body.steedos .w-72 {
|
|
199
|
+
width: 18rem
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
body.steedos .w-1\/2 {
|
|
203
|
+
width: 50%
|
|
204
|
+
}
|
|
205
|
+
|
|
190
206
|
body.steedos .min-w-max {
|
|
191
207
|
min-width: -moz-max-content;
|
|
192
208
|
min-width: max-content
|
|
@@ -269,11 +285,21 @@ body.steedos .border-slate-200 {
|
|
|
269
285
|
border-color: rgb(226 232 240 / var(--tw-border-opacity))
|
|
270
286
|
}
|
|
271
287
|
|
|
288
|
+
body.steedos .border-gray-300 {
|
|
289
|
+
--tw-border-opacity: 1;
|
|
290
|
+
border-color: rgb(209 213 219 / var(--tw-border-opacity))
|
|
291
|
+
}
|
|
292
|
+
|
|
272
293
|
body.steedos .bg-white {
|
|
273
294
|
--tw-bg-opacity: 1;
|
|
274
295
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity))
|
|
275
296
|
}
|
|
276
297
|
|
|
298
|
+
body.steedos .bg-gray-100 {
|
|
299
|
+
--tw-bg-opacity: 1;
|
|
300
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity))
|
|
301
|
+
}
|
|
302
|
+
|
|
277
303
|
body.steedos .p-0 {
|
|
278
304
|
padding: 0px
|
|
279
305
|
}
|