@yeepay/fmc-material 0.0.4 → 0.0.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/dist/index.js +5077 -869
- package/dist/styles/index.less +1 -0
- package/dist/styles/product.less +353 -0
- package/dist/styles/style.css +1 -1
- package/package.json +1 -1
- package/types/component-meta.d.ts +21 -5
package/dist/styles/index.less
CHANGED
|
@@ -0,0 +1,353 @@
|
|
|
1
|
+
.yee-product-wrapper {
|
|
2
|
+
.scene-wrap {
|
|
3
|
+
display: flex;
|
|
4
|
+
|
|
5
|
+
.online {
|
|
6
|
+
margin-right: 16px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.online,
|
|
10
|
+
.offline {
|
|
11
|
+
display: flex;
|
|
12
|
+
flex: 1;
|
|
13
|
+
cursor: pointer;
|
|
14
|
+
margin-bottom: 16px;
|
|
15
|
+
align-items: center;
|
|
16
|
+
height: 160px;
|
|
17
|
+
background: #FFFFFF;
|
|
18
|
+
border-radius: 8px;
|
|
19
|
+
padding: 32px 40px;
|
|
20
|
+
box-shadow: 0px 1px 1px 0px rgba(190, 190, 190, 0.5), inset 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
|
|
21
|
+
border-radius: 8px;
|
|
22
|
+
border: 1px solid;
|
|
23
|
+
border-image: linear-gradient(360deg, rgba(248, 248, 248, 1), rgba(239, 239, 239, 1)) 1 1;
|
|
24
|
+
|
|
25
|
+
.icon {
|
|
26
|
+
width: 96px;
|
|
27
|
+
height: 96px;
|
|
28
|
+
background: rgba(22, 119, 255, 0.1);
|
|
29
|
+
border-radius: 50%;
|
|
30
|
+
margin-right: 32px;
|
|
31
|
+
line-height: 96px;
|
|
32
|
+
text-align: center;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.content-wrap {
|
|
36
|
+
flex: 1;
|
|
37
|
+
padding-top: 9px;
|
|
38
|
+
|
|
39
|
+
.title {
|
|
40
|
+
font-weight: 500;
|
|
41
|
+
font-size: 24px;
|
|
42
|
+
color: #333333;
|
|
43
|
+
line-height: 32px;
|
|
44
|
+
margin-bottom: 10px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.desc {
|
|
48
|
+
font-weight: 400;
|
|
49
|
+
font-size: 14px;
|
|
50
|
+
color: #666666;
|
|
51
|
+
line-height: 22px;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.active {
|
|
57
|
+
border: 1px solid #2492FC;
|
|
58
|
+
position: relative;
|
|
59
|
+
|
|
60
|
+
&::after {
|
|
61
|
+
position: absolute;
|
|
62
|
+
content: '';
|
|
63
|
+
top: 0;
|
|
64
|
+
right: 0;
|
|
65
|
+
background: url('../components/product/img/active.png') no-repeat center;
|
|
66
|
+
width: 40px;
|
|
67
|
+
height: 40px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.custom-check-box-wrap {
|
|
73
|
+
background: #FFFFFF;
|
|
74
|
+
border-radius: 8px;
|
|
75
|
+
border: 1px solid;
|
|
76
|
+
border-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;
|
|
77
|
+
margin-bottom: 16px;
|
|
78
|
+
padding: 24px;
|
|
79
|
+
|
|
80
|
+
.title {
|
|
81
|
+
font-weight: 500;
|
|
82
|
+
font-size: 16px;
|
|
83
|
+
color: #333333;
|
|
84
|
+
line-height: 24px;
|
|
85
|
+
margin-bottom: 24px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.check-list {
|
|
89
|
+
.check-item {
|
|
90
|
+
margin-bottom: 22px;
|
|
91
|
+
line-height: 22px;
|
|
92
|
+
display: flex;
|
|
93
|
+
align-items: flex-start;
|
|
94
|
+
|
|
95
|
+
.check-label {
|
|
96
|
+
width: 80px;
|
|
97
|
+
font-weight: 500;
|
|
98
|
+
font-size: 14px;
|
|
99
|
+
color: #333333;
|
|
100
|
+
line-height: 22px;
|
|
101
|
+
text-align: left;
|
|
102
|
+
flex-shrink: 0;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.product-card-wrap {
|
|
109
|
+
margin-bottom: 24px;
|
|
110
|
+
|
|
111
|
+
.title {
|
|
112
|
+
font-weight: 500;
|
|
113
|
+
font-size: 14px;
|
|
114
|
+
color: #666666;
|
|
115
|
+
line-height: 20px;
|
|
116
|
+
padding-left: 10px;
|
|
117
|
+
position: relative;
|
|
118
|
+
margin-bottom: 12px;
|
|
119
|
+
|
|
120
|
+
&::before {
|
|
121
|
+
content: '';
|
|
122
|
+
position: absolute;
|
|
123
|
+
left: 0;
|
|
124
|
+
top: 3px;
|
|
125
|
+
width: 2px;
|
|
126
|
+
height: 14px;
|
|
127
|
+
background: #999999;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.product-card-content {
|
|
132
|
+
background: #FFFFFF;
|
|
133
|
+
border-radius: 8px;
|
|
134
|
+
padding: 24px;
|
|
135
|
+
|
|
136
|
+
.sub-title {
|
|
137
|
+
font-weight: 500;
|
|
138
|
+
font-size: 16px;
|
|
139
|
+
color: #333333;
|
|
140
|
+
line-height: 24px;
|
|
141
|
+
margin-bottom: 16px;
|
|
142
|
+
display: flex;
|
|
143
|
+
justify-content: space-between;
|
|
144
|
+
align-items: center;
|
|
145
|
+
|
|
146
|
+
.special-charge {
|
|
147
|
+
font-weight: 400;
|
|
148
|
+
font-size: 14px;
|
|
149
|
+
color: #1E75FF;
|
|
150
|
+
line-height: 22px;
|
|
151
|
+
cursor: pointer;
|
|
152
|
+
display: flex;
|
|
153
|
+
align-items: center;
|
|
154
|
+
cursor: pointer;
|
|
155
|
+
|
|
156
|
+
span {
|
|
157
|
+
margin-right: 4px;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.qualification-title {
|
|
163
|
+
font-weight: 400;
|
|
164
|
+
font-size: 14px;
|
|
165
|
+
color: #333333;
|
|
166
|
+
line-height: 20px;
|
|
167
|
+
padding-left: 14px;
|
|
168
|
+
position: relative;
|
|
169
|
+
margin: 24px 0 16px;
|
|
170
|
+
|
|
171
|
+
&::before {
|
|
172
|
+
content: '';
|
|
173
|
+
width: 6px;
|
|
174
|
+
height: 6px;
|
|
175
|
+
position: absolute;
|
|
176
|
+
top: 7px;
|
|
177
|
+
left: 0;
|
|
178
|
+
background: #D8D8D8;
|
|
179
|
+
border-radius: 50%;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
tr.ant-table-expanded-row,
|
|
186
|
+
tr.ant-table-expanded-row:hover {
|
|
187
|
+
background-color: #fff !important;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.ladder-wrap {
|
|
191
|
+
.ladder-item {
|
|
192
|
+
display: flex;
|
|
193
|
+
align-items: center;
|
|
194
|
+
margin-bottom: 16px;
|
|
195
|
+
|
|
196
|
+
.ladder-left {
|
|
197
|
+
background: #FAFAFA;
|
|
198
|
+
border-radius: 8px;
|
|
199
|
+
padding: 16px 24px;
|
|
200
|
+
display: flex;
|
|
201
|
+
align-items: flex-start;
|
|
202
|
+
margin-right: 32px;
|
|
203
|
+
|
|
204
|
+
.tip {
|
|
205
|
+
font-weight: 400;
|
|
206
|
+
font-size: 14px;
|
|
207
|
+
color: #666666;
|
|
208
|
+
line-height: 20px;
|
|
209
|
+
margin-right: 2px;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.left-content {
|
|
213
|
+
.top {
|
|
214
|
+
margin-bottom: 8px;
|
|
215
|
+
|
|
216
|
+
.input-wrap {
|
|
217
|
+
display: flex;
|
|
218
|
+
align-items: center;
|
|
219
|
+
|
|
220
|
+
.split-icon {
|
|
221
|
+
margin: 0 4px;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.bottom {
|
|
227
|
+
display: flex;
|
|
228
|
+
align-items: center;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.ladder-action {
|
|
234
|
+
display: flex;
|
|
235
|
+
align-items: center;
|
|
236
|
+
font-size: 16px;
|
|
237
|
+
color: #1E75FF;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.rate-input-wrap {
|
|
243
|
+
display: flex;
|
|
244
|
+
align-items: center;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.all-qualification-render {
|
|
248
|
+
.all-qualification-item {
|
|
249
|
+
background: #FFFFFF;
|
|
250
|
+
border-radius: 8px;
|
|
251
|
+
padding: 32px;
|
|
252
|
+
padding-top: 24px;
|
|
253
|
+
margin-bottom: 22px;
|
|
254
|
+
|
|
255
|
+
.title {
|
|
256
|
+
font-weight: 500;
|
|
257
|
+
font-size: 16px;
|
|
258
|
+
color: #333333;
|
|
259
|
+
line-height: 24px;
|
|
260
|
+
margin-bottom: 24px;
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.show-title {
|
|
265
|
+
height: 0px;
|
|
266
|
+
padding: 0;
|
|
267
|
+
margin: 0;
|
|
268
|
+
|
|
269
|
+
.title {
|
|
270
|
+
display: none;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.special-charge-title {
|
|
276
|
+
font-weight: 500;
|
|
277
|
+
font-size: 14px;
|
|
278
|
+
color: #333333;
|
|
279
|
+
line-height: 20px;
|
|
280
|
+
margin-bottom: 17px
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.special-charge-check {
|
|
284
|
+
display: flex;
|
|
285
|
+
justify-content: space-between;
|
|
286
|
+
align-items: center;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.custom-table {
|
|
290
|
+
.ant-table-thead>tr>th[colspan]:not([colspan='1']) {
|
|
291
|
+
text-align: left;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.product-table-wrap {
|
|
296
|
+
|
|
297
|
+
.ant-table-expand-icon-th,
|
|
298
|
+
.ant-table-row-expand-icon-cell {
|
|
299
|
+
width: 1px !important;
|
|
300
|
+
padding: 0;
|
|
301
|
+
min-width: 1px !important;
|
|
302
|
+
border: none !important;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
tr.ant-table-expanded-row td:first-child {
|
|
306
|
+
width: 1px !important;
|
|
307
|
+
padding: 0;
|
|
308
|
+
min-width: 1px !important;
|
|
309
|
+
border: none !important;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.ant-table-row-expand-icon {
|
|
313
|
+
display: none;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.ant-table-thead>tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td,
|
|
317
|
+
.ant-table-tbody>tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td,
|
|
318
|
+
.ant-table-thead>tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td,
|
|
319
|
+
.ant-table-tbody>tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td {
|
|
320
|
+
background: none !important;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.ant-table-thead>tr>th[colspan]:not([colspan='1']) {
|
|
324
|
+
text-align: left;
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.more-product-wrap {
|
|
329
|
+
display: flex;
|
|
330
|
+
align-items: flex-start;
|
|
331
|
+
margin: 25px 0;
|
|
332
|
+
|
|
333
|
+
.more-product-title {
|
|
334
|
+
width: 56px;
|
|
335
|
+
height: 20px;
|
|
336
|
+
font-weight: 500;
|
|
337
|
+
font-size: 14px;
|
|
338
|
+
color: #333333;
|
|
339
|
+
flex-shrink: 0;
|
|
340
|
+
margin-right: 32px;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.select-all {
|
|
344
|
+
margin-right: 24px;
|
|
345
|
+
flex-shrink: 0;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.select-item-wrap {
|
|
349
|
+
display: flex;
|
|
350
|
+
flex-wrap: wrap;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
}
|
package/dist/styles/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
*,:before,:after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x:0;--un-pan-y:0;--un-pinch-zoom:0;--un-scroll-snap-strictness:proximity;--un-ordinal:0;--un-slashed-zero:0;--un-numeric-figure:0;--un-numeric-spacing:0;--un-numeric-fraction:0;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset:0;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset:0;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur:0;--un-brightness:0;--un-contrast:0;--un-drop-shadow:0;--un-grayscale:0;--un-hue-rotate:0;--un-invert:0;--un-saturate:0;--un-sepia:0;--un-backdrop-blur:0;--un-backdrop-brightness:0;--un-backdrop-contrast:0;--un-backdrop-grayscale:0;--un-backdrop-hue-rotate:0;--un-backdrop-invert:0;--un-backdrop-opacity:0;--un-backdrop-saturate:0;--un-backdrop-sepia:0;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x:0;--un-pan-y:0;--un-pinch-zoom:0;--un-scroll-snap-strictness:proximity;--un-ordinal:0;--un-slashed-zero:0;--un-numeric-figure:0;--un-numeric-spacing:0;--un-numeric-fraction:0;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset:0;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset:0;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur:0;--un-brightness:0;--un-contrast:0;--un-drop-shadow:0;--un-grayscale:0;--un-hue-rotate:0;--un-invert:0;--un-saturate:0;--un-sepia:0;--un-backdrop-blur:0;--un-backdrop-brightness:0;--un-backdrop-contrast:0;--un-backdrop-grayscale:0;--un-backdrop-hue-rotate:0;--un-backdrop-invert:0;--un-backdrop-opacity:0;--un-backdrop-saturate:0;--un-backdrop-sepia:0;}.visible{visibility:visible;}.absolute{position:absolute;}.relative{position:relative;}.block{display:block;}.w-4\/5{width:80%;}.flex-row{flex-direction:row;}.flex-col{flex-direction:column;}.cursor-auto{cursor:auto;}.cursor-default{cursor:default;}.cursor-none{cursor:none;}.cursor-context-menu{cursor:context-menu;}.cursor-help{cursor:help;}.cursor-pointer{cursor:pointer;}.cursor-progress{cursor:progress;}.cursor-wait{cursor:wait;}.cursor-cell{cursor:cell;}.cursor-crosshair{cursor:crosshair;}.cursor-text{cursor:text;}.cursor-vertical-text{cursor:vertical-text;}.cursor-alias{cursor:alias;}.cursor-copy{cursor:copy;}.cursor-move{cursor:move;}.cursor-no-drop{cursor:no-drop;}.cursor-not-allowed{cursor:not-allowed;}.cursor-grab{cursor:grab;}.cursor-grabbing{cursor:grabbing;}.cursor-all-scroll{cursor:all-scroll;}.cursor-col-resize{cursor:col-resize;}.cursor-row-resize{cursor:row-resize;}.cursor-n-resize{cursor:n-resize;}.cursor-e-resize{cursor:e-resize;}.cursor-s-resize{cursor:s-resize;}.cursor-w-resize{cursor:w-resize;}.cursor-zoom-in{cursor:zoom-in;}.cursor-zoom-out{cursor:zoom-out;}.items-start{align-items:flex-start;}.items-end{align-items:flex-end;}.items-center{align-items:center;}.items-baseline{align-items:baseline;}.items-stretch{align-items:stretch;}.justify-start{justify-content:flex-start;}.justify-end{justify-content:flex-end;}.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}.justify-around{justify-content:space-around;}.justify-evenly{justify-content:space-evenly;}.overflow-auto{overflow:auto;}.overflow-hidden{overflow:hidden;}.overflow-scroll{overflow:scroll;}.overflow-visible{overflow:visible;}.truncate,[truncate=""]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.object-cover{object-fit:cover;}.object-contain{object-fit:contain;}.object-fill{object-fit:fill;}.object-scale-down{object-fit:scale-down;}.object-none{object-fit:none;}.px-4{padding-left:1rem;padding-right:1rem;}
|
|
1
|
+
.group-render[data-v-ffc0991a]{display:flex;align-items:center;}.group-render .logo[data-v-ffc0991a]{width:24px;margin-right:8px;}.group-render[data-v-ffc0991a] .operate-btn{padding:0 8px;}.group-render[data-v-ffc0991a] .operate-btn .anticon{margin-left:0;}.group-render .risk-wrap[data-v-ffc0991a]{background:#f462661a;border-radius:2px;line-height:18px;text-align:center;font-weight:500;font-size:12px;color:#f46266;line-height:12px;padding:3px 4px;margin-left:4px;flex-shrink:0;}.custom-upload[data-v-2a2776b8]{display:flex;flex-direction:column;align-items:center;}.product[data-v-53be5af3]{box-shadow:0 2px 12px #0000001a;border:4px solid #f0f2f5;border-radius:2px;}.padding[data-v-53be5af3]{padding:0 24px;}.product-title[data-v-53be5af3]{display:flex;align-items:center;background:#00000005;}.product-title p[data-v-53be5af3]{flex:1;cursor:pointer;margin-right:10px;}.title[data-v-53be5af3]{font-size:16px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#333;}.ellipsis[data-v-53be5af3]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.product .actionButton[data-v-53be5af3]{text-align:center;line-height:56px;box-shadow:0 -1px 2px #00000008;border-top:1px solid #e8e8e8;margin-top:16px;}.add-table-button[data-v-53be5af3]{width:100%;height:32px;border-radius:4px;border:1px dashed #d9d9d9;margin-top:15px;font-size:13px;text-align:center;cursor:pointer;}[data-v-53be5af3] .a-table_3_column_17,[data-v-53be5af3] .a-table_3_column_18{vertical-align:top;}.select-wrap[data-v-53be5af3]{display:flex;align-items:flex-start;}.select-wrap .icon-wrap[data-v-53be5af3]{margin-top:5px;width:56px;display:flex;align-items:center;flex-shrink:0;}.select-wrap .icon[data-v-53be5af3]{margin-left:8px;font-size:20px;cursor:pointer;}*,:before,:after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x:0;--un-pan-y:0;--un-pinch-zoom:0;--un-scroll-snap-strictness:proximity;--un-ordinal:0;--un-slashed-zero:0;--un-numeric-figure:0;--un-numeric-spacing:0;--un-numeric-fraction:0;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset:0;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset:0;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur:0;--un-brightness:0;--un-contrast:0;--un-drop-shadow:0;--un-grayscale:0;--un-hue-rotate:0;--un-invert:0;--un-saturate:0;--un-sepia:0;--un-backdrop-blur:0;--un-backdrop-brightness:0;--un-backdrop-contrast:0;--un-backdrop-grayscale:0;--un-backdrop-hue-rotate:0;--un-backdrop-invert:0;--un-backdrop-opacity:0;--un-backdrop-saturate:0;--un-backdrop-sepia:0;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x:0;--un-pan-y:0;--un-pinch-zoom:0;--un-scroll-snap-strictness:proximity;--un-ordinal:0;--un-slashed-zero:0;--un-numeric-figure:0;--un-numeric-spacing:0;--un-numeric-fraction:0;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset:0;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset:0;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur:0;--un-brightness:0;--un-contrast:0;--un-drop-shadow:0;--un-grayscale:0;--un-hue-rotate:0;--un-invert:0;--un-saturate:0;--un-sepia:0;--un-backdrop-blur:0;--un-backdrop-brightness:0;--un-backdrop-contrast:0;--un-backdrop-grayscale:0;--un-backdrop-hue-rotate:0;--un-backdrop-invert:0;--un-backdrop-opacity:0;--un-backdrop-saturate:0;--un-backdrop-sepia:0;}.visible{visibility:visible;}.absolute{position:absolute;}.relative{position:relative;}.block{display:block;}.hidden{display:none;}.w-4\/5{width:80%;}.flex{display:flex;}.flex-shrink{flex-shrink:1;}.flex-row{flex-direction:row;}.flex-col{flex-direction:column;}.cursor-auto{cursor:auto;}.cursor-default{cursor:default;}.cursor-none{cursor:none;}.cursor-context-menu{cursor:context-menu;}.cursor-help{cursor:help;}.cursor-pointer{cursor:pointer;}.cursor-progress{cursor:progress;}.cursor-wait{cursor:wait;}.cursor-cell{cursor:cell;}.cursor-crosshair{cursor:crosshair;}.cursor-text{cursor:text;}.cursor-vertical-text{cursor:vertical-text;}.cursor-alias{cursor:alias;}.cursor-copy{cursor:copy;}.cursor-move{cursor:move;}.cursor-no-drop{cursor:no-drop;}.cursor-not-allowed{cursor:not-allowed;}.cursor-grab{cursor:grab;}.cursor-grabbing{cursor:grabbing;}.cursor-all-scroll{cursor:all-scroll;}.cursor-col-resize{cursor:col-resize;}.cursor-row-resize{cursor:row-resize;}.cursor-n-resize{cursor:n-resize;}.cursor-e-resize{cursor:e-resize;}.cursor-s-resize{cursor:s-resize;}.cursor-w-resize{cursor:w-resize;}.cursor-zoom-in{cursor:zoom-in;}.cursor-zoom-out{cursor:zoom-out;}.select-all{-webkit-user-select:all;user-select:all;}.items-start{align-items:flex-start;}.items-end{align-items:flex-end;}.items-center{align-items:center;}.items-baseline{align-items:baseline;}.items-stretch{align-items:stretch;}.justify-start{justify-content:flex-start;}.justify-end{justify-content:flex-end;}.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}.justify-around{justify-content:space-around;}.justify-evenly{justify-content:space-evenly;}.overflow-auto{overflow:auto;}.overflow-hidden{overflow:hidden;}.overflow-scroll{overflow:scroll;}.overflow-visible{overflow:visible;}.truncate,[truncate=""]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.border{border-width:1px;}.object-cover{object-fit:cover;}.object-contain{object-fit:contain;}.object-fill{object-fit:fill;}.object-scale-down{object-fit:scale-down;}.object-none{object-fit:none;}.p\[key\]{padding:key;}.px,.px-4{padding-left:1rem;padding-right:1rem;}.blur{--un-blur:blur(8px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}
|
package/package.json
CHANGED
|
@@ -13,12 +13,28 @@ type Flatten<T> =
|
|
|
13
13
|
}[keyof T]
|
|
14
14
|
: never;
|
|
15
15
|
|
|
16
|
-
import
|
|
16
|
+
import InputPhone from '../src/components-meta/input-phone'
|
|
17
17
|
|
|
18
|
+
export type InputPhoneProperties = Record<Flatten<typeof InputPhone.properties>, any>
|
|
19
|
+
export type InputPhoneStyles = Record<Flatten<typeof InputPhone.styles>, any>
|
|
20
|
+
export type InputPhoneValidation = Record<Flatten<typeof InputPhone.validation>, any>
|
|
21
|
+
export type InputPhoneExposedVariables = Record<Flatten<typeof InputPhone.definition.exposedVariables>, any>
|
|
18
22
|
export type LocationProperties = Record<Flatten<typeof Location.properties>, any>
|
|
19
23
|
export type LocationStyles = Record<Flatten<typeof Location.styles>, any>
|
|
20
24
|
export type LocationValidation = Record<Flatten<typeof Location.validation>, any>
|
|
21
25
|
export type LocationExposedVariables = Record<Flatten<typeof Location.definition.exposedVariables>, any>
|
|
26
|
+
export type PolicyConfigProperties = Record<Flatten<typeof PolicyConfig.properties>, any>
|
|
27
|
+
export type PolicyConfigStyles = Record<Flatten<typeof PolicyConfig.styles>, any>
|
|
28
|
+
export type PolicyConfigValidation = Record<Flatten<typeof PolicyConfig.validation>, any>
|
|
29
|
+
export type PolicyConfigExposedVariables = Record<Flatten<typeof PolicyConfig.definition.exposedVariables>, any>
|
|
30
|
+
export type ProductProperties = Record<Flatten<typeof Product.properties>, any>
|
|
31
|
+
export type ProductStyles = Record<Flatten<typeof Product.styles>, any>
|
|
32
|
+
export type ProductValidation = Record<Flatten<typeof Product.validation>, any>
|
|
33
|
+
export type ProductExposedVariables = Record<Flatten<typeof Product.definition.exposedVariables>, any>
|
|
34
|
+
export type RenewFormProperties = Record<Flatten<typeof RenewForm.properties>, any>
|
|
35
|
+
export type RenewFormStyles = Record<Flatten<typeof RenewForm.styles>, any>
|
|
36
|
+
export type RenewFormValidation = Record<Flatten<typeof RenewForm.validation>, any>
|
|
37
|
+
export type RenewFormExposedVariables = Record<Flatten<typeof RenewForm.definition.exposedVariables>, any>
|
|
22
38
|
export type UploadProperties = Record<Flatten<typeof Upload.properties>, any>
|
|
23
39
|
export type UploadStyles = Record<Flatten<typeof Upload.styles>, any>
|
|
24
40
|
export type UploadValidation = Record<Flatten<typeof Upload.validation>, any>
|
|
@@ -29,15 +45,15 @@ declare global {
|
|
|
29
45
|
export type Properties<T> =
|
|
30
46
|
LayoutVisible &
|
|
31
47
|
(
|
|
32
|
-
T extends 'location' ? LocationProperties :
|
|
33
48
|
T extends 'upload' ? UploadProperties : never
|
|
49
|
+
T extends 'input-phone' ? InputPhoneProperties :
|
|
34
50
|
T extends 'location' ? LocationProperties :
|
|
35
51
|
T extends 'policy-config' ? PolicyConfigProperties :
|
|
36
52
|
T extends 'product' ? ProductProperties :
|
|
37
53
|
T extends 'renew-form' ? RenewFormProperties :
|
|
38
54
|
T extends 'upload' ? UploadProperties : never
|
|
39
55
|
)
|
|
40
56
|
|
|
41
57
|
export type Styles<T> =
|
|
42
|
-
T extends 'location' ? LocationStyles :
|
|
43
58
|
T extends 'upload' ? UploadStyles : never
|
|
59
|
+
T extends 'input-phone' ? InputPhoneStyles :
|
|
44
60
|
T extends 'location' ? LocationStyles :
|
|
45
61
|
T extends 'policy-config' ? PolicyConfigStyles :
|
|
46
62
|
T extends 'product' ? ProductStyles :
|
|
47
63
|
T extends 'renew-form' ? RenewFormStyles :
|
|
48
64
|
T extends 'upload' ? UploadStyles : never
|
|
49
65
|
|
|
50
66
|
export type Validation<T> =
|
|
51
|
-
T extends 'location' ? LocationValidation :
|
|
52
67
|
T extends 'upload' ? UploadValidation : never
|
|
68
|
+
T extends 'input-phone' ? InputPhoneValidation :
|
|
53
69
|
T extends 'location' ? LocationValidation :
|
|
54
70
|
T extends 'policy-config' ? PolicyConfigValidation :
|
|
55
71
|
T extends 'product' ? ProductValidation :
|
|
56
72
|
T extends 'renew-form' ? RenewFormValidation :
|
|
57
73
|
T extends 'upload' ? UploadValidation : never
|
|
58
74
|
|
|
59
75
|
export type ExposedVariables<T> =
|
|
60
|
-
T extends 'location' ? LocationExposedVariables :
|
|
61
76
|
T extends 'upload' ? UploadExposedVariables : never
|
|
77
|
+
T extends 'input-phone' ? InputPhoneExposedVariables :
|
|
62
78
|
T extends 'location' ? LocationExposedVariables :
|
|
63
79
|
T extends 'policy-config' ? PolicyConfigExposedVariables :
|
|
64
80
|
T extends 'product' ? ProductExposedVariables :
|
|
65
81
|
T extends 'renew-form' ? RenewFormExposedVariables :
|
|
66
82
|
T extends 'upload' ? UploadExposedVariables : never
|
|
67
83
|
}
|