@uxda/appkit 4.1.52 → 4.1.56
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/appkit.css +45 -3
- package/dist/index.js +517 -299
- package/package.json +1 -1
- package/src/balance/components/DateRange.vue +6 -6
- package/src/balance/components/ListFilter.vue +5 -6
- package/src/balance/components/ListFilterPicker.vue +0 -1
- package/src/balance/components/PromoterCard.vue +6 -5
- package/src/shared/components/AppVerify.vue +0 -1
- package/src/user/components/UserAuth.vue +216 -0
- package/src/user/components/UserInfo.vue +177 -91
- package/src/user/components/index.ts +2 -0
package/dist/appkit.css
CHANGED
|
@@ -86,7 +86,6 @@
|
|
|
86
86
|
.app-verify h2 {
|
|
87
87
|
font-size: 16px;
|
|
88
88
|
font-weight: bold;
|
|
89
|
-
margin: 10px;
|
|
90
89
|
}
|
|
91
90
|
.app-verify .caption {
|
|
92
91
|
font-size: 13px !important;
|
|
@@ -1173,7 +1172,6 @@ page {
|
|
|
1173
1172
|
.list-filter-picker-title {
|
|
1174
1173
|
position: relative;
|
|
1175
1174
|
height: 44px;
|
|
1176
|
-
line-height: 44px;
|
|
1177
1175
|
font-size: 17px;
|
|
1178
1176
|
color: #353535;
|
|
1179
1177
|
background: #f5f5f5;
|
|
@@ -1329,12 +1327,12 @@ page {
|
|
|
1329
1327
|
right: 13px;
|
|
1330
1328
|
border-radius: 4px;
|
|
1331
1329
|
overflow: hidden;
|
|
1330
|
+
background: rgba(204, 204, 204, 0.2);
|
|
1332
1331
|
}
|
|
1333
1332
|
.promoter-card-tab-item {
|
|
1334
1333
|
display: inline-flex;
|
|
1335
1334
|
align-items: center;
|
|
1336
1335
|
justify-content: center;
|
|
1337
|
-
background: rgba(53, 53, 53, 0.1);
|
|
1338
1336
|
height: 29px;
|
|
1339
1337
|
width: 90px;
|
|
1340
1338
|
box-sizing: border-box;
|
|
@@ -2610,4 +2608,48 @@ page {
|
|
|
2610
2608
|
font-size: 12px;
|
|
2611
2609
|
padding: 0 30px;
|
|
2612
2610
|
text-align: center;
|
|
2611
|
+
}
|
|
2612
|
+
.user-auth {
|
|
2613
|
+
height: 100vh;
|
|
2614
|
+
}
|
|
2615
|
+
.user-auth-footer {
|
|
2616
|
+
position: fixed;
|
|
2617
|
+
z-index: 10;
|
|
2618
|
+
bottom: 0;
|
|
2619
|
+
left: 0;
|
|
2620
|
+
width: 100%;
|
|
2621
|
+
min-height: 63px;
|
|
2622
|
+
background: #ffffff;
|
|
2623
|
+
box-shadow: 0 -3px 11px 0 rgba(224, 224, 224, 0.5);
|
|
2624
|
+
padding: 10px 12px calc(8px + var(--safe-bottom-height));
|
|
2625
|
+
display: flex;
|
|
2626
|
+
justify-content: space-between;
|
|
2627
|
+
box-sizing: border-box;
|
|
2628
|
+
}
|
|
2629
|
+
.user-auth-footer .btn {
|
|
2630
|
+
width: 100%;
|
|
2631
|
+
}
|
|
2632
|
+
.user-auth-footer .checkbox-row {
|
|
2633
|
+
--nut-primary-color: #017fff;
|
|
2634
|
+
position: absolute;
|
|
2635
|
+
top: -36px;
|
|
2636
|
+
left: 50%;
|
|
2637
|
+
transform: translateX(-50%);
|
|
2638
|
+
white-space: nowrap;
|
|
2639
|
+
display: flex;
|
|
2640
|
+
align-items: center;
|
|
2641
|
+
}
|
|
2642
|
+
.user-auth-footer .checkbox-row .nut-checkbox__label {
|
|
2643
|
+
margin-left: 2px;
|
|
2644
|
+
font-size: 11px;
|
|
2645
|
+
}
|
|
2646
|
+
.user-auth-footer .checkbox-row .nut-icon-check-normal {
|
|
2647
|
+
margin-top: 0 !important;
|
|
2648
|
+
}
|
|
2649
|
+
.user-auth-footer .checkbox-row .nut-icon-checked {
|
|
2650
|
+
font-size: 11px;
|
|
2651
|
+
}
|
|
2652
|
+
.user-auth-footer .checkbox-row .book {
|
|
2653
|
+
font-size: 11px;
|
|
2654
|
+
color: #007aff;
|
|
2613
2655
|
}
|