@steedos/service-plugin-amis 2.7.18-beta.6 → 3.0.0-beta.10
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/client/{creator.function.client.js → steedos.function.client.js} +2 -2
- package/main/default/services/utils/fields/index.js +1 -1
- package/main/default/services/utils/object-record.js +2 -2
- package/main/default/services/utils/page-schema.js +1 -1
- package/main/default/services/utils/util.js +1 -1
- package/package.json +2 -2
- package/package.service.js +7 -18
- package/public/amis/amis.css +0 -4
- package/public/tailwind/tailwind-steedos.css +75 -177
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
};
|
|
40
40
|
|
|
41
41
|
const getAmisLng = ()=>{
|
|
42
|
-
var locale =
|
|
42
|
+
var locale = Builder.settings.context.user ? Builder.settings.context.user.language : null;
|
|
43
43
|
if(locale){
|
|
44
44
|
locale = locale.replace('_', '-');
|
|
45
45
|
locale = locale === 'en' ? 'en-US' : locale;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: baozhoutao@steedos.com
|
|
3
3
|
* @Date: 2022-05-20 17:42:20
|
|
4
4
|
* @LastEditors: baozhoutao@steedos.com
|
|
5
|
-
* @LastEditTime:
|
|
5
|
+
* @LastEditTime: 2025-03-05 11:30:22
|
|
6
6
|
* @Description: 提供辅助函数
|
|
7
7
|
*/
|
|
8
8
|
(function(){
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
-
|
|
76
|
+
Steedos.showListFilter = (objectName, listView, data, props)=>{
|
|
77
77
|
const pageName = `${objectName}-list-filter`;
|
|
78
78
|
const canSave = canSaveFilters();
|
|
79
79
|
return Steedos.Page.render(SteedosUI.Drawer, {
|
|
@@ -193,7 +193,7 @@ function convertSFieldToAmisFilesField(field,readonly){
|
|
|
193
193
|
type: getAmisStaticFieldType(fieldType, readonly),
|
|
194
194
|
receiver: {
|
|
195
195
|
method: "post",
|
|
196
|
-
url:
|
|
196
|
+
url: `/api/v6/files/${table_name}`,
|
|
197
197
|
adaptor: `
|
|
198
198
|
var rootUrl = ${JSON.stringify(rootUrl)};
|
|
199
199
|
payload = {
|
|
@@ -160,7 +160,7 @@ function getScriptForRewriteValueForFileFields(fields){
|
|
|
160
160
|
return {
|
|
161
161
|
value: value,
|
|
162
162
|
name: fileFieldNames[index],
|
|
163
|
-
url: fileRootUrl + value
|
|
163
|
+
url: fileRootUrl + value,
|
|
164
164
|
state: "uploaded"
|
|
165
165
|
}
|
|
166
166
|
});
|
|
@@ -169,7 +169,7 @@ function getScriptForRewriteValueForFileFields(fields){
|
|
|
169
169
|
data[item] = {
|
|
170
170
|
value: fileFieldValue,
|
|
171
171
|
name: fileFieldNames[0],
|
|
172
|
-
url: fileRootUrl + fileFieldValue
|
|
172
|
+
url: fileRootUrl + fileFieldValue,
|
|
173
173
|
state: "uploaded"
|
|
174
174
|
};
|
|
175
175
|
}
|
|
@@ -88,7 +88,7 @@ const getRecordPageInitSchema = async function (objectApiName, userSession) {
|
|
|
88
88
|
}
|
|
89
89
|
const content = {
|
|
90
90
|
"type": "tabs",
|
|
91
|
-
"className": "steedos-record-tabs bg-white p-4 sm:m-
|
|
91
|
+
"className": "steedos-record-tabs bg-white p-4 sm:m-2 sm:border sm:rounded",
|
|
92
92
|
"tabs": [
|
|
93
93
|
detailed
|
|
94
94
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-plugin-amis",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-beta.10",
|
|
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": "7ad4c70eeca10e893ab638176fd92de84af29f76",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"tailwindcss": "3.2.4"
|
|
19
19
|
}
|
package/package.service.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: baozhoutao@steedos.com
|
|
3
3
|
* @Date: 2022-05-19 11:38:30
|
|
4
4
|
* @LastEditors: baozhoutao@steedos.com
|
|
5
|
-
* @LastEditTime:
|
|
5
|
+
* @LastEditTime: 2025-03-10 11:59:01
|
|
6
6
|
* @Description:
|
|
7
7
|
*/
|
|
8
8
|
"use strict";
|
|
@@ -49,16 +49,7 @@ module.exports = {
|
|
|
49
49
|
* Events
|
|
50
50
|
*/
|
|
51
51
|
events: {
|
|
52
|
-
|
|
53
|
-
async handler() {
|
|
54
|
-
await this.publicClientJS();
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
"space.initialized": {
|
|
58
|
-
async handler() {
|
|
59
|
-
await this.publicClientJS();
|
|
60
|
-
}
|
|
61
|
-
}
|
|
52
|
+
|
|
62
53
|
},
|
|
63
54
|
|
|
64
55
|
/**
|
|
@@ -74,10 +65,11 @@ module.exports = {
|
|
|
74
65
|
const { path : packagePath } = packageInfo;
|
|
75
66
|
let publicPath = path.join(packagePath, 'main', 'default', 'client');
|
|
76
67
|
try {
|
|
77
|
-
if (!fs.existsSync(publicPath) || this.settings.loadedPublicClientJS
|
|
68
|
+
if (!fs.existsSync(publicPath) || this.settings.loadedPublicClientJS) {
|
|
78
69
|
return;
|
|
79
70
|
}
|
|
80
71
|
} catch (error) {
|
|
72
|
+
console.log('error', error)
|
|
81
73
|
return
|
|
82
74
|
}
|
|
83
75
|
|
|
@@ -87,12 +79,11 @@ module.exports = {
|
|
|
87
79
|
try {
|
|
88
80
|
const router = require('@steedos/router').staticRouter();
|
|
89
81
|
let routerPath = "";
|
|
90
|
-
if (
|
|
91
|
-
routerPath =
|
|
82
|
+
if (process.env.ROOT_URL_PATH_PREFIX) {
|
|
83
|
+
routerPath = process.env.ROOT_URL_PATH_PREFIX;
|
|
92
84
|
}
|
|
93
85
|
const cacheTime = 86400000 * 1; // one day
|
|
94
86
|
router.use(`${routerPath}/amis-pages/js`, express.static(publicPath, { maxAge: cacheTime }));
|
|
95
|
-
// WebApp.connectHandlers.use(router);
|
|
96
87
|
} catch (error) {
|
|
97
88
|
console.error(error)
|
|
98
89
|
this.settings.loadedPublicClientJS = false;
|
|
@@ -115,9 +106,7 @@ module.exports = {
|
|
|
115
106
|
* Service started lifecycle event handler
|
|
116
107
|
*/
|
|
117
108
|
async started() {
|
|
118
|
-
this.
|
|
119
|
-
await this.publicClientJS()
|
|
120
|
-
});
|
|
109
|
+
await this.publicClientJS()
|
|
121
110
|
},
|
|
122
111
|
|
|
123
112
|
/**
|
package/public/amis/amis.css
CHANGED
|
@@ -56,10 +56,6 @@
|
|
|
56
56
|
position: static !important
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
.fixed {
|
|
60
|
-
position: fixed
|
|
61
|
-
}
|
|
62
|
-
|
|
63
59
|
.absolute {
|
|
64
60
|
position: absolute
|
|
65
61
|
}
|
|
@@ -68,17 +64,6 @@
|
|
|
68
64
|
position: sticky
|
|
69
65
|
}
|
|
70
66
|
|
|
71
|
-
.inset-0 {
|
|
72
|
-
top: 0px;
|
|
73
|
-
right: 0px;
|
|
74
|
-
bottom: 0px;
|
|
75
|
-
left: 0px
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.z-20 {
|
|
79
|
-
z-index: 20
|
|
80
|
-
}
|
|
81
|
-
|
|
82
67
|
.col-span-2 {
|
|
83
68
|
grid-column: span 2 / span 2
|
|
84
69
|
}
|
|
@@ -87,25 +72,20 @@
|
|
|
87
72
|
float: right
|
|
88
73
|
}
|
|
89
74
|
|
|
90
|
-
.m-1 {
|
|
91
|
-
margin: 0.25rem
|
|
92
|
-
}
|
|
93
|
-
|
|
94
75
|
.m-0 {
|
|
95
76
|
margin: 0px
|
|
96
77
|
}
|
|
97
78
|
|
|
98
|
-
.-m-8 {
|
|
99
|
-
margin: -2rem
|
|
100
|
-
}
|
|
101
|
-
|
|
102
79
|
.m-auto {
|
|
103
80
|
margin: auto
|
|
104
81
|
}
|
|
105
82
|
|
|
106
|
-
.
|
|
107
|
-
margin
|
|
108
|
-
|
|
83
|
+
.m-4 {
|
|
84
|
+
margin: 1rem
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.m-1 {
|
|
88
|
+
margin: 0.25rem
|
|
109
89
|
}
|
|
110
90
|
|
|
111
91
|
.my-2 {
|
|
@@ -113,19 +93,31 @@
|
|
|
113
93
|
margin-bottom: 0.5rem
|
|
114
94
|
}
|
|
115
95
|
|
|
116
|
-
|
|
117
|
-
margin-left:
|
|
118
|
-
margin-right:
|
|
96
|
+
.mx-4 {
|
|
97
|
+
margin-left: 1rem;
|
|
98
|
+
margin-right: 1rem
|
|
119
99
|
}
|
|
120
100
|
|
|
121
|
-
.
|
|
122
|
-
margin-
|
|
101
|
+
.mb-0 {
|
|
102
|
+
margin-bottom: 0px
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.ml-2 {
|
|
106
|
+
margin-left: 0.5rem
|
|
123
107
|
}
|
|
124
108
|
|
|
125
109
|
.mb-4 {
|
|
126
110
|
margin-bottom: 1rem
|
|
127
111
|
}
|
|
128
112
|
|
|
113
|
+
.mr-7 {
|
|
114
|
+
margin-right: 1.75rem
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.mt-3 {
|
|
118
|
+
margin-top: 0.75rem
|
|
119
|
+
}
|
|
120
|
+
|
|
129
121
|
.mt-2 {
|
|
130
122
|
margin-top: 0.5rem
|
|
131
123
|
}
|
|
@@ -142,18 +134,6 @@
|
|
|
142
134
|
margin-top: -0.75rem
|
|
143
135
|
}
|
|
144
136
|
|
|
145
|
-
.mr-7 {
|
|
146
|
-
margin-right: 1.75rem
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.mb-0 {
|
|
150
|
-
margin-bottom: 0px
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.ml-2 {
|
|
154
|
-
margin-left: 0.5rem
|
|
155
|
-
}
|
|
156
|
-
|
|
157
137
|
.block {
|
|
158
138
|
display: block
|
|
159
139
|
}
|
|
@@ -186,34 +166,22 @@
|
|
|
186
166
|
display: none
|
|
187
167
|
}
|
|
188
168
|
|
|
189
|
-
.h-9 {
|
|
190
|
-
height: 2.25rem
|
|
191
|
-
}
|
|
192
|
-
|
|
193
169
|
.h-full {
|
|
194
170
|
height: 100%
|
|
195
171
|
}
|
|
196
172
|
|
|
197
|
-
.h-0 {
|
|
198
|
-
height: 0px
|
|
199
|
-
}
|
|
200
|
-
|
|
201
173
|
.h-7 {
|
|
202
174
|
height: 1.75rem
|
|
203
175
|
}
|
|
204
176
|
|
|
205
|
-
.
|
|
206
|
-
|
|
177
|
+
.h-9 {
|
|
178
|
+
height: 2.25rem
|
|
207
179
|
}
|
|
208
180
|
|
|
209
181
|
.w-full {
|
|
210
182
|
width: 100%
|
|
211
183
|
}
|
|
212
184
|
|
|
213
|
-
.w-6\/12 {
|
|
214
|
-
width: 50%
|
|
215
|
-
}
|
|
216
|
-
|
|
217
185
|
.w-4\/5 {
|
|
218
186
|
width: 80%
|
|
219
187
|
}
|
|
@@ -222,8 +190,8 @@
|
|
|
222
190
|
width: 24rem
|
|
223
191
|
}
|
|
224
192
|
|
|
225
|
-
.
|
|
226
|
-
|
|
193
|
+
.w-9 {
|
|
194
|
+
width: 2.25rem
|
|
227
195
|
}
|
|
228
196
|
|
|
229
197
|
.min-w-\[200px\] {
|
|
@@ -246,23 +214,10 @@
|
|
|
246
214
|
flex-grow: 1
|
|
247
215
|
}
|
|
248
216
|
|
|
249
|
-
.-translate-x-0 {
|
|
250
|
-
--tw-translate-x: -0px;
|
|
251
|
-
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))
|
|
252
|
-
}
|
|
253
|
-
|
|
254
217
|
.transform {
|
|
255
218
|
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))
|
|
256
219
|
}
|
|
257
220
|
|
|
258
|
-
.flex-row {
|
|
259
|
-
flex-direction: row
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.flex-col {
|
|
263
|
-
flex-direction: column
|
|
264
|
-
}
|
|
265
|
-
|
|
266
221
|
.items-center {
|
|
267
222
|
align-items: center
|
|
268
223
|
}
|
|
@@ -275,10 +230,6 @@
|
|
|
275
230
|
justify-content: space-between
|
|
276
231
|
}
|
|
277
232
|
|
|
278
|
-
.gap-3 {
|
|
279
|
-
gap: 0.75rem
|
|
280
|
-
}
|
|
281
|
-
|
|
282
233
|
.overflow-auto {
|
|
283
234
|
overflow: auto
|
|
284
235
|
}
|
|
@@ -287,18 +238,10 @@
|
|
|
287
238
|
overflow: hidden
|
|
288
239
|
}
|
|
289
240
|
|
|
290
|
-
.overflow-x-auto {
|
|
291
|
-
overflow-x: auto
|
|
292
|
-
}
|
|
293
|
-
|
|
294
241
|
.overflow-y-auto {
|
|
295
242
|
overflow-y: auto
|
|
296
243
|
}
|
|
297
244
|
|
|
298
|
-
.whitespace-nowrap {
|
|
299
|
-
white-space: nowrap
|
|
300
|
-
}
|
|
301
|
-
|
|
302
245
|
.rounded {
|
|
303
246
|
border-radius: 0.25rem
|
|
304
247
|
}
|
|
@@ -320,17 +263,12 @@
|
|
|
320
263
|
border-bottom-width: 1px
|
|
321
264
|
}
|
|
322
265
|
|
|
323
|
-
.border-r {
|
|
324
|
-
border-right-width: 1px
|
|
325
|
-
}
|
|
326
|
-
|
|
327
266
|
.border-b {
|
|
328
267
|
border-bottom-width: 1px
|
|
329
268
|
}
|
|
330
269
|
|
|
331
|
-
.border-
|
|
332
|
-
|
|
333
|
-
border-color: rgb(209 213 219 / var(--tw-border-opacity))
|
|
270
|
+
.border-r {
|
|
271
|
+
border-right-width: 1px
|
|
334
272
|
}
|
|
335
273
|
|
|
336
274
|
.border-gray-200 {
|
|
@@ -338,33 +276,38 @@
|
|
|
338
276
|
border-color: rgb(229 231 235 / var(--tw-border-opacity))
|
|
339
277
|
}
|
|
340
278
|
|
|
279
|
+
.border-gray-300 {
|
|
280
|
+
--tw-border-opacity: 1;
|
|
281
|
+
border-color: rgb(209 213 219 / var(--tw-border-opacity))
|
|
282
|
+
}
|
|
283
|
+
|
|
341
284
|
.bg-white {
|
|
342
285
|
--tw-bg-opacity: 1;
|
|
343
286
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity))
|
|
344
287
|
}
|
|
345
288
|
|
|
346
|
-
.bg-gray-
|
|
289
|
+
.bg-gray-100 {
|
|
347
290
|
--tw-bg-opacity: 1;
|
|
348
|
-
background-color: rgb(
|
|
291
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity))
|
|
349
292
|
}
|
|
350
293
|
|
|
351
|
-
.bg-gray-
|
|
294
|
+
.bg-gray-50 {
|
|
352
295
|
--tw-bg-opacity: 1;
|
|
353
|
-
background-color: rgb(
|
|
296
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity))
|
|
354
297
|
}
|
|
355
298
|
|
|
356
299
|
.bg-none {
|
|
357
300
|
background-image: none
|
|
358
301
|
}
|
|
359
302
|
|
|
360
|
-
.p-0 {
|
|
361
|
-
padding: 0px
|
|
362
|
-
}
|
|
363
|
-
|
|
364
303
|
.p-4 {
|
|
365
304
|
padding: 1rem
|
|
366
305
|
}
|
|
367
306
|
|
|
307
|
+
.p-0 {
|
|
308
|
+
padding: 0px
|
|
309
|
+
}
|
|
310
|
+
|
|
368
311
|
.p-2 {
|
|
369
312
|
padding: 0.5rem
|
|
370
313
|
}
|
|
@@ -373,6 +316,21 @@
|
|
|
373
316
|
padding: 0.25rem
|
|
374
317
|
}
|
|
375
318
|
|
|
319
|
+
.py-1 {
|
|
320
|
+
padding-top: 0.25rem;
|
|
321
|
+
padding-bottom: 0.25rem
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.px-0 {
|
|
325
|
+
padding-left: 0px;
|
|
326
|
+
padding-right: 0px
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.py-4 {
|
|
330
|
+
padding-top: 1rem;
|
|
331
|
+
padding-bottom: 1rem
|
|
332
|
+
}
|
|
333
|
+
|
|
376
334
|
.px-2 {
|
|
377
335
|
padding-left: 0.5rem;
|
|
378
336
|
padding-right: 0.5rem
|
|
@@ -398,29 +356,14 @@
|
|
|
398
356
|
padding-bottom: 0.5rem
|
|
399
357
|
}
|
|
400
358
|
|
|
401
|
-
.
|
|
402
|
-
padding-
|
|
403
|
-
padding-right: 0px
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
.py-1 {
|
|
407
|
-
padding-top: 0.25rem;
|
|
408
|
-
padding-bottom: 0.25rem
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
.py-4 {
|
|
412
|
-
padding-top: 1rem;
|
|
413
|
-
padding-bottom: 1rem
|
|
359
|
+
.pt-4 {
|
|
360
|
+
padding-top: 1rem
|
|
414
361
|
}
|
|
415
362
|
|
|
416
363
|
.pl-10 {
|
|
417
364
|
padding-left: 2.5rem
|
|
418
365
|
}
|
|
419
366
|
|
|
420
|
-
.pt-4 {
|
|
421
|
-
padding-top: 1rem
|
|
422
|
-
}
|
|
423
|
-
|
|
424
367
|
.text-left {
|
|
425
368
|
text-align: left
|
|
426
369
|
}
|
|
@@ -437,22 +380,18 @@
|
|
|
437
380
|
font-weight: 700
|
|
438
381
|
}
|
|
439
382
|
|
|
440
|
-
.italic {
|
|
441
|
-
font-style: italic
|
|
442
|
-
}
|
|
443
|
-
|
|
444
383
|
.leading-none {
|
|
445
384
|
line-height: 1
|
|
446
385
|
}
|
|
447
386
|
|
|
448
|
-
.text-
|
|
387
|
+
.text-black {
|
|
449
388
|
--tw-text-opacity: 1;
|
|
450
|
-
color: rgb(
|
|
389
|
+
color: rgb(0 0 0 / var(--tw-text-opacity))
|
|
451
390
|
}
|
|
452
391
|
|
|
453
|
-
.text-
|
|
392
|
+
.text-gray-300 {
|
|
454
393
|
--tw-text-opacity: 1;
|
|
455
|
-
color: rgb(
|
|
394
|
+
color: rgb(209 213 219 / var(--tw-text-opacity))
|
|
456
395
|
}
|
|
457
396
|
|
|
458
397
|
.text-gray-500 {
|
|
@@ -460,13 +399,15 @@
|
|
|
460
399
|
color: rgb(107 114 128 / var(--tw-text-opacity))
|
|
461
400
|
}
|
|
462
401
|
|
|
463
|
-
.text-gray-
|
|
402
|
+
.text-gray-600 {
|
|
464
403
|
--tw-text-opacity: 1;
|
|
465
|
-
color: rgb(
|
|
404
|
+
color: rgb(75 85 99 / var(--tw-text-opacity))
|
|
466
405
|
}
|
|
467
406
|
|
|
468
|
-
.
|
|
469
|
-
|
|
407
|
+
.shadow {
|
|
408
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
409
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
410
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
|
|
470
411
|
}
|
|
471
412
|
|
|
472
413
|
.shadow-none {
|
|
@@ -475,48 +416,10 @@
|
|
|
475
416
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
|
|
476
417
|
}
|
|
477
418
|
|
|
478
|
-
.shadow {
|
|
479
|
-
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
480
|
-
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
481
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
|
|
482
|
-
}
|
|
483
|
-
|
|
484
419
|
.filter {
|
|
485
420
|
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)
|
|
486
421
|
}
|
|
487
422
|
|
|
488
|
-
.transition {
|
|
489
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
490
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
491
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
492
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
493
|
-
transition-duration: 150ms
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
.duration-300 {
|
|
497
|
-
transition-duration: 300ms
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
.ease-in-out {
|
|
501
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
.hover\:ml-2\.5:hover {
|
|
505
|
-
margin-left: 0.625rem
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
.hover\:ml-2:hover {
|
|
509
|
-
margin-left: 0.5rem
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
.hover\:inline-block:hover {
|
|
513
|
-
display: inline-block
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
.hover\:cursor-pointer:hover {
|
|
517
|
-
cursor: pointer
|
|
518
|
-
}
|
|
519
|
-
|
|
520
423
|
.focus\:outline-none:focus {
|
|
521
424
|
outline: 2px solid transparent;
|
|
522
425
|
outline-offset: 2px
|
|
@@ -527,14 +430,18 @@
|
|
|
527
430
|
margin: 0.5rem
|
|
528
431
|
}
|
|
529
432
|
|
|
530
|
-
.sm\:
|
|
531
|
-
|
|
433
|
+
.sm\:m-4 {
|
|
434
|
+
margin: 1rem
|
|
532
435
|
}
|
|
533
436
|
|
|
534
437
|
.sm\:rounded {
|
|
535
438
|
border-radius: 0.25rem
|
|
536
439
|
}
|
|
537
440
|
|
|
441
|
+
.sm\:rounded-lg {
|
|
442
|
+
border-radius: 0.5rem
|
|
443
|
+
}
|
|
444
|
+
|
|
538
445
|
.sm\:border {
|
|
539
446
|
border-width: 1px
|
|
540
447
|
}
|
|
@@ -544,15 +451,6 @@
|
|
|
544
451
|
border-color: rgb(209 213 219 / var(--tw-border-opacity))
|
|
545
452
|
}
|
|
546
453
|
|
|
547
|
-
.sm\:px-3 {
|
|
548
|
-
padding-left: 0.75rem;
|
|
549
|
-
padding-right: 0.75rem
|
|
550
|
-
}
|
|
551
|
-
|
|
552
|
-
.sm\:pt-3 {
|
|
553
|
-
padding-top: 0.75rem
|
|
554
|
-
}
|
|
555
|
-
|
|
556
454
|
.sm\:shadow {
|
|
557
455
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
558
456
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|