@steedos/service-plugin-amis 2.5.0-beta.14 → 2.5.0-beta.15
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-plugin-amis",
|
|
3
|
-
"version": "2.5.0-beta.
|
|
3
|
+
"version": "2.5.0-beta.15",
|
|
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": "0b66b1a87086836a5c2bc45875207c29e057cff6",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"tailwindcss": "3.2.4"
|
|
19
19
|
}
|
|
@@ -46,10 +46,29 @@
|
|
|
46
46
|
position: static
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
+
.fixed {
|
|
50
|
+
position: fixed
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.absolute {
|
|
54
|
+
position: absolute
|
|
55
|
+
}
|
|
56
|
+
|
|
49
57
|
.sticky {
|
|
50
58
|
position: sticky
|
|
51
59
|
}
|
|
52
60
|
|
|
61
|
+
.inset-0 {
|
|
62
|
+
top: 0px;
|
|
63
|
+
right: 0px;
|
|
64
|
+
bottom: 0px;
|
|
65
|
+
left: 0px
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.z-20 {
|
|
69
|
+
z-index: 20
|
|
70
|
+
}
|
|
71
|
+
|
|
53
72
|
.col-span-2 {
|
|
54
73
|
grid-column: span 2 / span 2
|
|
55
74
|
}
|
|
@@ -149,6 +168,10 @@
|
|
|
149
168
|
width: 100%
|
|
150
169
|
}
|
|
151
170
|
|
|
171
|
+
.w-64 {
|
|
172
|
+
width: 16rem
|
|
173
|
+
}
|
|
174
|
+
|
|
152
175
|
.w-96 {
|
|
153
176
|
width: 24rem
|
|
154
177
|
}
|
|
@@ -174,10 +197,23 @@
|
|
|
174
197
|
flex-shrink: 0
|
|
175
198
|
}
|
|
176
199
|
|
|
200
|
+
.-translate-x-0 {
|
|
201
|
+
--tw-translate-x: -0px;
|
|
202
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.transform {
|
|
206
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
|
207
|
+
}
|
|
208
|
+
|
|
177
209
|
.flex-row {
|
|
178
210
|
flex-direction: row
|
|
179
211
|
}
|
|
180
212
|
|
|
213
|
+
.flex-col {
|
|
214
|
+
flex-direction: column
|
|
215
|
+
}
|
|
216
|
+
|
|
181
217
|
.items-center {
|
|
182
218
|
align-items: center
|
|
183
219
|
}
|
|
@@ -219,14 +255,19 @@
|
|
|
219
255
|
border-color: rgb(203 213 225 / var(--tw-border-opacity))
|
|
220
256
|
}
|
|
221
257
|
|
|
222
|
-
.border-gray-
|
|
258
|
+
.border-gray-300 {
|
|
223
259
|
--tw-border-opacity: 1;
|
|
224
|
-
border-color: rgb(
|
|
260
|
+
border-color: rgb(209 213 219 / var(--tw-border-opacity))
|
|
225
261
|
}
|
|
226
262
|
|
|
227
|
-
.border-
|
|
263
|
+
.border-slate-200 {
|
|
228
264
|
--tw-border-opacity: 1;
|
|
229
|
-
border-color: rgb(
|
|
265
|
+
border-color: rgb(226 232 240 / var(--tw-border-opacity))
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.border-gray-200 {
|
|
269
|
+
--tw-border-opacity: 1;
|
|
270
|
+
border-color: rgb(229 231 235 / var(--tw-border-opacity))
|
|
230
271
|
}
|
|
231
272
|
|
|
232
273
|
.bg-white {
|
|
@@ -271,6 +312,16 @@
|
|
|
271
312
|
padding-bottom: 0.5rem
|
|
272
313
|
}
|
|
273
314
|
|
|
315
|
+
.px-0 {
|
|
316
|
+
padding-left: 0px;
|
|
317
|
+
padding-right: 0px
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.py-0 {
|
|
321
|
+
padding-top: 0px;
|
|
322
|
+
padding-bottom: 0px
|
|
323
|
+
}
|
|
324
|
+
|
|
274
325
|
.py-5 {
|
|
275
326
|
padding-top: 1.25rem;
|
|
276
327
|
padding-bottom: 1.25rem
|
|
@@ -281,11 +332,6 @@
|
|
|
281
332
|
padding-bottom: 0.25rem
|
|
282
333
|
}
|
|
283
334
|
|
|
284
|
-
.px-0 {
|
|
285
|
-
padding-left: 0px;
|
|
286
|
-
padding-right: 0px
|
|
287
|
-
}
|
|
288
|
-
|
|
289
335
|
.pl-1\.5 {
|
|
290
336
|
padding-left: 0.375rem
|
|
291
337
|
}
|
|
@@ -350,6 +396,22 @@
|
|
|
350
396
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
|
|
351
397
|
}
|
|
352
398
|
|
|
399
|
+
.transition {
|
|
400
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
401
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
402
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
403
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
404
|
+
transition-duration: 150ms
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.duration-300 {
|
|
408
|
+
transition-duration: 300ms
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.ease-in-out {
|
|
412
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
|
|
413
|
+
}
|
|
414
|
+
|
|
353
415
|
.focus\:outline-none:focus {
|
|
354
416
|
outline: 2px solid transparent;
|
|
355
417
|
outline-offset: 2px
|
|
@@ -360,6 +422,10 @@
|
|
|
360
422
|
margin-top: 0.75rem
|
|
361
423
|
}
|
|
362
424
|
|
|
425
|
+
.sm\:w-\[220px\] {
|
|
426
|
+
width: 220px
|
|
427
|
+
}
|
|
428
|
+
|
|
363
429
|
.sm\:rounded-lg {
|
|
364
430
|
border-radius: 0.5rem
|
|
365
431
|
}
|