@yeepay/fmc-material 0.0.7 → 0.0.8-beta.1

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.
@@ -1,7 +1,7 @@
1
1
  .yee-beneficiary-wrapper {
2
2
  width: 100%;
3
3
  .beneficiary {
4
- background: #FFFFFF;
4
+ background: #ffffff;
5
5
  border-radius: 8px;
6
6
  padding: 24px;
7
7
  .header {
@@ -24,12 +24,12 @@
24
24
  }
25
25
  .footer {
26
26
  height: 40px;
27
- background: #FFFFFF;
27
+ background: #ffffff;
28
28
  border-radius: 4px;
29
- border: 1px solid #1E75FF;
29
+ border: 1px solid #1e75ff;
30
30
  text-align: center;
31
31
  line-height: 40px;
32
32
  margin-top: 8px;
33
33
  }
34
34
  }
35
- }
35
+ }
@@ -3,15 +3,15 @@
3
3
  .bindMerchant {
4
4
  .footer {
5
5
  height: 40px;
6
- background: #FFFFFF;
6
+ background: #ffffff;
7
7
  border-radius: 4px;
8
- border: 1px solid #1E75FF;
8
+ border: 1px solid #1e75ff;
9
9
  text-align: center;
10
10
  line-height: 40px;
11
11
  margin-top: 8px;
12
12
  }
13
13
  }
14
- .ant-table-small>.ant-table-content>.ant-table-body {
14
+ .ant-table-small > .ant-table-content > .ant-table-body {
15
15
  margin: 0;
16
16
  }
17
- }
17
+ }
@@ -1,4 +1,5 @@
1
- .yee-docking-charge-wrapper, .yee-package-charge-wrapper {
1
+ .yee-docking-charge-wrapper,
2
+ .yee-package-charge-wrapper {
2
3
  .ant-form-item {
3
4
  margin-bottom: 0;
4
5
  padding-bottom: 0;
@@ -6,4 +7,4 @@
6
7
  .ant-table-small .ant-table-body {
7
8
  margin: 0 !important;
8
9
  }
9
- }
10
+ }
@@ -0,0 +1,91 @@
1
+ .fmc-card-wrap {
2
+ border-radius: 8px;
3
+ background-color: #fff;
4
+
5
+ .fmc-card-title {
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: space-between;
9
+ padding: 12px 24px;
10
+ position: relative;
11
+
12
+ .title {
13
+ height: 24px;
14
+ font-family: PingFangSC, PingFang SC;
15
+ font-weight: 500;
16
+ font-size: 16px;
17
+ color: #333333;
18
+ line-height: 24px;
19
+ text-align: left;
20
+ font-style: normal;
21
+ display: flex;
22
+ align-items: center;
23
+ }
24
+
25
+ .title-icon {
26
+ color: @primary-color;
27
+ }
28
+
29
+ .fmc-card-toggle {
30
+ height: 20px;
31
+ font-family: PingFangSC, PingFang SC;
32
+ font-weight: 400;
33
+ font-size: 12px;
34
+ color: @primary-color;
35
+ line-height: 20px;
36
+ text-align: center;
37
+ font-style: normal;
38
+ display: flex;
39
+ align-items: center;
40
+ justify-content: center;
41
+ cursor: pointer;
42
+
43
+ .toggle-icon {
44
+ width: 0;
45
+ height: 0;
46
+ display: inline-block;
47
+ border-left: 5px solid transparent;
48
+ border-right: 5px solid transparent;
49
+ border-top: 7px solid @primary-color;
50
+ margin-right: 5px;
51
+ }
52
+ }
53
+
54
+ &:before {
55
+ content: '';
56
+ position: absolute;
57
+ left: 0;
58
+ top: 50%;
59
+ transform: translateY(-50%);
60
+ width: 3px;
61
+ height: 16px;
62
+ background: @primary-color;
63
+ }
64
+
65
+ &:after {
66
+ display: none;
67
+ }
68
+
69
+ &.open {
70
+ .toggle-icon {
71
+ border-top: none;
72
+ border-bottom: 7px solid @primary-color;
73
+ }
74
+
75
+ &:after {
76
+ display: block;
77
+ content: '';
78
+ position: absolute;
79
+ right: 24px;
80
+ bottom: 0;
81
+ left: 24px;
82
+ height: 1px;
83
+ background: #f0f0f0;
84
+ }
85
+ }
86
+ }
87
+
88
+ .fmc-card-content {
89
+ padding: 20px 24px;
90
+ }
91
+ }
@@ -0,0 +1,27 @@
1
+ .yee-fmc-form-text-wrapper {
2
+ .fmc-form-text-wrap {
3
+ &[highlight-type='primary'] {
4
+ .ant-select-selection {
5
+ background-color: #1890ff33;
6
+ }
7
+ }
8
+
9
+ &[highlight-type='success'] {
10
+ .ant-select-selection {
11
+ background-color: #13ce6633;
12
+ }
13
+ }
14
+
15
+ &[highlight-type='warning'] {
16
+ .ant-select-selection {
17
+ background-color: #ffba0033;
18
+ }
19
+ }
20
+
21
+ &[highlight-type='danger'] {
22
+ .ant-select-selection {
23
+ background-color: #ff494933;
24
+ }
25
+ }
26
+ }
27
+ }
@@ -1,3 +1,4 @@
1
+ @primary-color: #1E75FF;
1
2
  @import 'serviceLevel.less';
2
3
  @import 'upload.less';
3
4
  @import 'product.less';
@@ -7,6 +8,6 @@
7
8
  @import 'subCard.less';
8
9
  @import 'renewForm.less';
9
10
  @import 'bindMerchant.less';
10
-
11
+ @import 'fmcCard.less';
11
12
 
12
13
  @import 'style.css';
@@ -10,7 +10,7 @@
10
10
  .ant-table-small.ant-table-bordered .ant-table-content {
11
11
  border-right: 0px !important;
12
12
  }
13
- .scene-wrap {
13
+ .scene-wrap {
14
14
  display: block !important;
15
15
  }
16
16
  }
@@ -19,7 +19,6 @@
19
19
  flex-wrap: wrap;
20
20
  .offline {
21
21
  margin-right: 16px;
22
-
23
22
  }
24
23
  .online,
25
24
  .offline {
@@ -28,10 +27,12 @@
28
27
  cursor: pointer;
29
28
  margin-bottom: 16px;
30
29
  align-items: center;
31
- background: #FFFFFF;
30
+ background: #ffffff;
32
31
  border-radius: 8px;
33
32
  padding: 32px 40px;
34
- box-shadow: 0px 1px 1px 0px rgba(190, 190, 190, 0.5), inset 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
33
+ box-shadow:
34
+ 0px 1px 1px 0px rgba(190, 190, 190, 0.5),
35
+ inset 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
35
36
  border-radius: 8px;
36
37
 
37
38
  .icon {
@@ -70,7 +71,7 @@
70
71
  }
71
72
 
72
73
  .active {
73
- border: 1px solid #2492FC;
74
+ border: 1px solid #2492fc;
74
75
  position: relative;
75
76
 
76
77
  .check-img {
@@ -84,13 +85,13 @@
84
85
  }
85
86
 
86
87
  .disabled {
87
- background: #FAFAFA;
88
+ background: #fafafa;
88
89
  box-shadow: 0px 1px 1px 0px rgba(190, 190, 190, 0.5);
89
90
  border-image: linear-gradient(360deg, rgba(248, 248, 248, 1), rgba(239, 239, 239, 1)) 1 1;
90
91
  }
91
92
  }
92
93
  .custom-check-box-wrap {
93
- background: #FFFFFF;
94
+ background: #ffffff;
94
95
  border-radius: 8px;
95
96
  border: 1px solid;
96
97
  border-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;
@@ -99,7 +100,7 @@
99
100
  margin-bottom: 16px;
100
101
 
101
102
  .check-box-line {
102
- border-top: 1px dashed #D8D8D8;
103
+ border-top: 1px dashed #d8d8d8;
103
104
  margin-bottom: 12px;
104
105
  }
105
106
 
@@ -118,7 +119,7 @@
118
119
  color: #666;
119
120
  margin-bottom: 12px;
120
121
  .title-desc-icon {
121
- color: #1E75FF;
122
+ color: #1e75ff;
122
123
  margin-right: 2px;
123
124
  }
124
125
  }
@@ -143,7 +144,7 @@
143
144
  }
144
145
 
145
146
  .qualification-total {
146
- background: #FFFFFF;
147
+ background: #ffffff;
147
148
  border-radius: 8px;
148
149
  padding: 24px;
149
150
  padding-bottom: 16px;
@@ -180,14 +181,14 @@
180
181
  }
181
182
  .qualification-group-item-wrap {
182
183
  padding: 12px;
183
- background-color: #FBFCFF;
184
+ background-color: #fbfcff;
184
185
  padding-left: 24px;
185
186
  margin-bottom: 12px;
186
187
  }
187
188
  }
188
189
 
189
190
  .qualification-group-item {
190
- background: #FFFFFF;
191
+ background: #ffffff;
191
192
  border-radius: 8px;
192
193
  padding: 24px;
193
194
  padding-bottom: 12px;
@@ -247,7 +248,7 @@
247
248
  }
248
249
 
249
250
  .product-card-content {
250
- background: #FFFFFF;
251
+ background: #ffffff;
251
252
  border-radius: 8px;
252
253
  padding: 24px;
253
254
  margin-bottom: 12px;
@@ -265,7 +266,7 @@
265
266
  .special-charge {
266
267
  font-weight: 400;
267
268
  font-size: 14px;
268
- color: #1E75FF;
269
+ color: #1e75ff;
269
270
  line-height: 22px;
270
271
  cursor: pointer;
271
272
  display: flex;
@@ -294,7 +295,7 @@
294
295
  position: absolute;
295
296
  top: 7px;
296
297
  left: 0;
297
- background: #D8D8D8;
298
+ background: #d8d8d8;
298
299
  border-radius: 50%;
299
300
  }
300
301
  }
@@ -317,7 +318,7 @@
317
318
  margin-bottom: 16px;
318
319
 
319
320
  .ladder-left {
320
- background: #FAFAFA;
321
+ background: #fafafa;
321
322
  border-radius: 8px;
322
323
  padding: 16px 16px;
323
324
  display: flex;
@@ -364,7 +365,7 @@
364
365
  display: flex;
365
366
  align-items: center;
366
367
  font-size: 16px;
367
- color: #1E75FF;
368
+ color: #1e75ff;
368
369
  width: 40px;
369
370
  flex-shrink: 0;
370
371
  }
@@ -384,7 +385,6 @@
384
385
  }
385
386
 
386
387
  .product-table-wrap {
387
-
388
388
  .ant-table-expand-icon-th,
389
389
  .ant-table-row-expand-icon-cell {
390
390
  width: 1px !important;
@@ -392,8 +392,9 @@
392
392
  min-width: 1px !important;
393
393
  border: none !important;
394
394
  }
395
- .ant-table-tbody {
396
- td:nth-child(2), td:nth-child(3) {
395
+ .ant-table-tbody {
396
+ td:nth-child(2),
397
+ td:nth-child(3) {
397
398
  vertical-align: top;
398
399
  }
399
400
  }
@@ -413,14 +414,14 @@
413
414
  display: none;
414
415
  }
415
416
 
416
- .ant-table-thead>tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td,
417
- .ant-table-tbody>tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td,
418
- .ant-table-thead>tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td,
419
- .ant-table-tbody>tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td {
417
+ .ant-table-thead > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
418
+ .ant-table-tbody > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
419
+ .ant-table-thead > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
420
+ .ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td {
420
421
  background: none !important;
421
422
  }
422
423
 
423
- .ant-table-thead>tr>th[colspan]:not([colspan='1']) {
424
+ .ant-table-thead > tr > th[colspan]:not([colspan='1']) {
424
425
  text-align: left;
425
426
  }
426
427
 
@@ -470,7 +471,7 @@
470
471
  top: 40px;
471
472
  .logo {
472
473
  width: 24px;
473
- margin-right: 8px
474
+ margin-right: 8px;
474
475
  }
475
476
 
476
477
  .operate-btn {
@@ -517,12 +518,12 @@
517
518
  font-size: 14px;
518
519
  color: #333333;
519
520
  line-height: 20px;
520
- margin-bottom: 17px
521
+ margin-bottom: 17px;
521
522
  }
522
523
  .custom-table {
523
524
  max-height: 50vh;
524
525
  overflow-y: auto;
525
- .ant-table-thead>tr>th[colspan]:not([colspan='1']) {
526
+ .ant-table-thead > tr > th[colspan]:not([colspan='1']) {
526
527
  text-align: left;
527
528
  }
528
529
  .ant-table-small > .ant-table-content > .ant-table-body {
@@ -532,11 +533,11 @@
532
533
  .title-dropdown {
533
534
  width: 170px;
534
535
  height: 62px;
535
- background: #FFFFFF;
536
- box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.05);
536
+ background: #ffffff;
537
+ box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
537
538
  border-radius: 8px;
538
- border: 1px solid #EFEFEF;
539
+ border: 1px solid #efefef;
539
540
  display: flex;
540
541
  align-items: center;
541
542
  justify-content: center;
542
- }
543
+ }
@@ -1,3 +1,3 @@
1
1
  .yee-renew-wrapper {
2
2
  background-color: #fff;
3
- }
3
+ }
@@ -1,25 +1,24 @@
1
1
  .yee-select-wrapper {
2
2
  .ant-select {
3
- &[highlight-type="primary"] {
3
+ &[highlight-type='primary'] {
4
4
  .ant-select-selection {
5
5
  background-color: #1890ff33;
6
6
  }
7
-
8
7
  }
9
- &[highlight-type="success"] {
8
+ &[highlight-type='success'] {
10
9
  .ant-select-selection {
11
10
  background-color: #13ce6633;
12
11
  }
13
12
  }
14
- &[highlight-type="warning"] {
13
+ &[highlight-type='warning'] {
15
14
  .ant-select-selection {
16
- background-color: #FFBA0033;
15
+ background-color: #ffba0033;
17
16
  }
18
17
  }
19
- &[highlight-type="danger"] {
18
+ &[highlight-type='danger'] {
20
19
  .ant-select-selection {
21
20
  background-color: #ff494933;
22
21
  }
23
22
  }
24
23
  }
25
- }
24
+ }
@@ -17,10 +17,10 @@
17
17
  height: 100%;
18
18
  }
19
19
  .hover {
20
- display: none;
20
+ display: none;
21
21
  }
22
22
  .active {
23
- display: none;
23
+ display: none;
24
24
  }
25
25
  &:hover {
26
26
  .default {
@@ -46,4 +46,4 @@
46
46
  opacity: 0.8;
47
47
  }
48
48
  }
49
- }
49
+ }
@@ -1 +1 @@
1
- .product[data-v-020131c4]{box-shadow:0 2px 12px #0000001a;border:4px solid #f0f2f5;border-radius:2px;}.product[data-v-020131c4] .ant-form-item{margin-bottom:0;}.product[data-v-020131c4] .ant-table-content{overflow-y:auto;}.padding[data-v-020131c4]{padding:0 24px;}.product-title[data-v-020131c4]{display:flex;align-items:center;background:#00000005;}.product-title p[data-v-020131c4]{flex:1;cursor:pointer;margin-right:10px;}.title[data-v-020131c4]{font-size:16px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#333;}.ellipsis[data-v-020131c4]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.product .actionButton[data-v-020131c4]{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-020131c4]{width:100%;height:32px;border-radius:4px;border:1px dashed #d9d9d9;margin-top:15px;font-size:13px;text-align:center;cursor:pointer;}[data-v-020131c4] .a-table_3_column_17,[data-v-020131c4] .a-table_3_column_18{vertical-align:top;}.select-wrap[data-v-020131c4]{display:flex;align-items:flex-start;}.select-wrap .icon-wrap[data-v-020131c4]{margin-top:5px;width:56px;display:flex;align-items:center;flex-shrink:0;}.select-wrap .icon[data-v-020131c4]{margin-left:8px;font-size:20px;cursor:pointer;height:30px;}.yee-renew-wrapper .title[data-v-890206e8],.yee-renew-wrapper .title[data-v-4c5edfba]{padding:24px 24px 0;margin-bottom:20px;font-weight:500;font-size:16px;color:#333;line-height:24px;margin-right:12px;}*,: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;}[col-span~="0"]{grid-column:span 0/span 0;}[col-span~="3"]{grid-column:span 3/span 3;}[rows~="4"]{grid-template-rows:repeat(4,minmax(0,1fr));}.inline{display:inline;}.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;}.gap-2{gap:.5rem;}.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;}.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);}
1
+ .product[data-v-735534ae]{box-shadow:0 2px 12px #0000001a;border:4px solid #f0f2f5;border-radius:2px;}.product[data-v-735534ae] .ant-form-item{margin-bottom:0;}.product[data-v-735534ae] .ant-table-content{overflow-y:auto;}.padding[data-v-735534ae]{padding:0 24px;}.product-title[data-v-735534ae]{display:flex;align-items:center;background:#00000005;}.product-title p[data-v-735534ae]{flex:1;cursor:pointer;margin-right:10px;}.title[data-v-735534ae]{font-size:16px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#333;}.ellipsis[data-v-735534ae]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.product .actionButton[data-v-735534ae]{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-735534ae]{width:100%;height:32px;border-radius:4px;border:1px dashed #d9d9d9;margin-top:15px;font-size:13px;text-align:center;cursor:pointer;}[data-v-735534ae] .a-table_3_column_17,[data-v-735534ae] .a-table_3_column_18{vertical-align:top;}.select-wrap[data-v-735534ae]{display:flex;align-items:flex-start;}.select-wrap .icon-wrap[data-v-735534ae]{margin-top:5px;width:56px;display:flex;align-items:center;flex-shrink:0;}.select-wrap .icon[data-v-735534ae]{margin-left:8px;font-size:20px;cursor:pointer;height:30px;}.yee-renew-wrapper .title[data-v-06a7f2f6],.yee-renew-wrapper .title[data-v-4c5edfba]{padding:24px 24px 0;margin-bottom:20px;font-weight:500;font-size:16px;color:#333;line-height:24px;margin-right:12px;}*,: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;}[col-span~="0"]{grid-column:span 0/span 0;}[col-span~="3"]{grid-column:span 3/span 3;}[rows~="4"]{grid-template-rows:repeat(4,minmax(0,1fr));}.inline{display:inline;}.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;}.gap-2{gap:.5rem;}.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;}.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);}
@@ -1,5 +1,5 @@
1
1
  .sub-card-wrap {
2
- background-color: #FBFCFF;
2
+ background-color: #fbfcff;
3
3
  padding: 16px 24px 8px 24px;
4
4
  .sub-card-title {
5
5
  color: #333;
@@ -15,4 +15,4 @@
15
15
  background-color: #40a9ff;
16
16
  }
17
17
  }
18
- }
18
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yeepay/fmc-material",
3
- "version": "0.0.7",
3
+ "version": "0.0.8-beta.1",
4
4
  "sideEffects": [
5
5
  "./dist/styles/*"
6
6
  ],
@@ -29,21 +29,6 @@
29
29
  "dist",
30
30
  "types"
31
31
  ],
32
- "scripts": {
33
- "dev": "vite",
34
- "clean": "rimraf dist dist.zip",
35
- "build": "nr clean && vite build --mode npm && nr build:cssfile",
36
- "build:fed": "nr clean && vite build --config ./vite.config.fed.ts --mode fed",
37
- "build:cssfile": "tsx ./scripts/build-cssfile.ts",
38
- "build:entry": "tsx ./scripts/build-entry.ts",
39
- "prepublishOnly": "nr build",
40
- "postpublish": "nr sync",
41
- "release": "tsx scripts/release.ts",
42
- "release:fed": "tsx scripts/release-fed.ts",
43
- "sync": "tsx scripts/cnpm-sync.ts",
44
- "lint": "eslint .",
45
- "lint:fix": "eslint . --fix"
46
- },
47
32
  "peerDependencies": {
48
33
  "@vue/composition-api": ">= 1.4.9",
49
34
  "@yeepay/antd-materials": "2.*",
@@ -53,6 +38,7 @@
53
38
  "dependencies": {
54
39
  "@yeepay/lowcode-shared": "2.*",
55
40
  "ant-design-vue": "^1.7.8",
41
+ "dayjs": "^1.11.11",
56
42
  "lodash-es": "^4.17.21",
57
43
  "nanoid": "^5.0.9"
58
44
  },
@@ -110,10 +96,17 @@
110
96
  "publishConfig": {
111
97
  "access": "public"
112
98
  },
113
- "pnpm": {
114
- "patchedDependencies": {
115
- "picomatch@2.3.1": "patches/picomatch@2.3.1.patch",
116
- "@originjs/vite-plugin-federation@1.3.6": "patches/@originjs__vite-plugin-federation@1.3.6.patch"
117
- }
99
+ "scripts": {
100
+ "dev": "vite",
101
+ "clean": "rimraf dist dist.zip",
102
+ "build": "nr clean && vite build --mode npm && nr build:cssfile",
103
+ "build:fed": "nr clean && vite build --config ./vite.config.fed.ts --mode fed",
104
+ "build:cssfile": "tsx ./scripts/build-cssfile.ts",
105
+ "build:entry": "tsx ./scripts/build-entry.ts",
106
+ "release": "tsx scripts/release.ts",
107
+ "release:fed": "tsx scripts/release-fed.ts",
108
+ "sync": "tsx scripts/cnpm-sync.ts",
109
+ "lint": "eslint .",
110
+ "lint:fix": "eslint . --fix"
118
111
  }
119
- }
112
+ }