@arco-design/mobile-react 2.22.3 → 2.24.0
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/CHANGELOG.md +32 -0
- package/README.en-US.md +2 -2
- package/README.md +2 -2
- package/cjs/_helpers/render.d.ts +3 -1
- package/cjs/_helpers/render.js +10 -3
- package/cjs/action-sheet/index.d.ts +5 -5
- package/cjs/action-sheet/index.js +4 -3
- package/cjs/action-sheet/methods.d.ts +1 -1
- package/cjs/badge/style/css/index.css +1 -2
- package/cjs/checkbox/checkbox.js +4 -0
- package/cjs/circle-progress/index.js +4 -0
- package/cjs/context-provider/index.d.ts +4 -0
- package/cjs/context-provider/index.js +14 -2
- package/cjs/dialog/index.d.ts +8 -8
- package/cjs/dialog/index.js +3 -2
- package/cjs/dialog/methods.d.ts +3 -3
- package/cjs/dialog/style/css/index.css +1 -2
- package/cjs/image-picker/index.js +18 -12
- package/cjs/image-picker/type.d.ts +10 -0
- package/cjs/image-preview/index.d.ts +3 -3
- package/cjs/image-preview/index.js +3 -2
- package/cjs/image-preview/methods.d.ts +2 -1
- package/cjs/image-preview/methods.js +2 -2
- package/cjs/index.d.ts +1 -0
- package/cjs/index.js +5 -1
- package/cjs/input/hooks.js +1 -0
- package/cjs/input/index.d.ts +5 -0
- package/cjs/input/index.js +6 -2
- package/cjs/input/style/css/index.css +1 -0
- package/cjs/input/style/index.less +1 -0
- package/cjs/masking/index.d.ts +4 -14
- package/cjs/masking/index.js +3 -2
- package/cjs/masking/methods.d.ts +3 -2
- package/cjs/masking/methods.js +2 -2
- package/cjs/nav-bar/index.d.ts +12 -0
- package/cjs/nav-bar/index.js +8 -2
- package/cjs/notify/index.d.ts +12 -12
- package/cjs/notify/index.js +3 -2
- package/cjs/notify/methods.d.ts +2 -1
- package/cjs/notify/methods.js +2 -2
- package/cjs/picker-view/components/picker-cell.js +3 -1
- package/cjs/popup/index.d.ts +4 -4
- package/cjs/popup/index.js +3 -2
- package/cjs/popup/methods.d.ts +1 -1
- package/cjs/popup-swiper/index.d.ts +12 -6
- package/cjs/popup-swiper/index.js +3 -2
- package/cjs/popup-swiper/methods.d.ts +1 -1
- package/cjs/progress/index.js +4 -0
- package/cjs/rate/index.js +5 -0
- package/cjs/slider/index.js +6 -1
- package/cjs/stepper/demo/style/css/mobile.css +4 -0
- package/cjs/stepper/demo/style/mobile.less +10 -0
- package/cjs/stepper/hooks/useButtonClick.d.ts +11 -0
- package/cjs/stepper/hooks/useButtonClick.js +74 -0
- package/cjs/stepper/hooks/useInputEvent.d.ts +9 -0
- package/cjs/stepper/hooks/useInputEvent.js +59 -0
- package/cjs/stepper/hooks/useValue.d.ts +6 -0
- package/cjs/stepper/hooks/useValue.js +44 -0
- package/cjs/stepper/index.d.ts +13 -0
- package/cjs/stepper/index.js +190 -0
- package/cjs/stepper/style/css/index.css +76 -0
- package/cjs/stepper/style/css/index.d.ts +2 -0
- package/cjs/stepper/style/css/index.js +5 -0
- package/cjs/stepper/style/index.d.ts +2 -0
- package/cjs/stepper/style/index.js +5 -0
- package/cjs/stepper/style/index.less +80 -0
- package/cjs/stepper/type.d.ts +159 -0
- package/cjs/stepper/type.js +3 -0
- package/cjs/style.d.ts +1 -0
- package/cjs/style.js +2 -0
- package/cjs/swipe-action/index.d.ts +1 -0
- package/cjs/swipe-action/index.js +10 -0
- package/cjs/switch/index.js +4 -0
- package/cjs/toast/index.d.ts +18 -18
- package/cjs/toast/index.js +3 -2
- package/cjs/toast/methods.d.ts +2 -1
- package/cjs/toast/methods.js +2 -2
- package/dist/index.js +463 -52
- package/dist/index.min.js +3 -3
- package/dist/style.css +77 -113
- package/dist/style.min.css +1 -1
- package/esm/_helpers/render.d.ts +3 -1
- package/esm/_helpers/render.js +10 -3
- package/esm/action-sheet/index.d.ts +5 -5
- package/esm/action-sheet/index.js +4 -3
- package/esm/action-sheet/methods.d.ts +1 -1
- package/esm/badge/style/css/index.css +1 -2
- package/esm/checkbox/checkbox.js +4 -0
- package/esm/circle-progress/index.js +4 -0
- package/esm/context-provider/index.d.ts +4 -0
- package/esm/context-provider/index.js +13 -2
- package/esm/dialog/index.d.ts +8 -8
- package/esm/dialog/index.js +3 -2
- package/esm/dialog/methods.d.ts +3 -3
- package/esm/dialog/style/css/index.css +1 -2
- package/esm/image-picker/index.js +18 -12
- package/esm/image-picker/type.d.ts +10 -0
- package/esm/image-preview/index.d.ts +3 -3
- package/esm/image-preview/index.js +3 -2
- package/esm/image-preview/methods.d.ts +2 -1
- package/esm/image-preview/methods.js +2 -2
- package/esm/index.d.ts +1 -0
- package/esm/index.js +1 -0
- package/esm/input/hooks.js +1 -0
- package/esm/input/index.d.ts +5 -0
- package/esm/input/index.js +6 -2
- package/esm/input/style/css/index.css +1 -0
- package/esm/input/style/index.less +1 -0
- package/esm/masking/index.d.ts +4 -14
- package/esm/masking/index.js +3 -2
- package/esm/masking/methods.d.ts +3 -2
- package/esm/masking/methods.js +2 -2
- package/esm/nav-bar/index.d.ts +12 -0
- package/esm/nav-bar/index.js +8 -2
- package/esm/notify/index.d.ts +12 -12
- package/esm/notify/index.js +3 -2
- package/esm/notify/methods.d.ts +2 -1
- package/esm/notify/methods.js +2 -2
- package/esm/picker-view/components/picker-cell.js +3 -1
- package/esm/popup/index.d.ts +4 -4
- package/esm/popup/index.js +3 -2
- package/esm/popup/methods.d.ts +1 -1
- package/esm/popup-swiper/index.d.ts +12 -6
- package/esm/popup-swiper/index.js +3 -2
- package/esm/popup-swiper/methods.d.ts +1 -1
- package/esm/progress/index.js +4 -0
- package/esm/rate/index.js +5 -0
- package/esm/slider/index.js +6 -1
- package/esm/stepper/demo/style/css/mobile.css +4 -0
- package/esm/stepper/demo/style/mobile.less +10 -0
- package/esm/stepper/hooks/useButtonClick.d.ts +11 -0
- package/esm/stepper/hooks/useButtonClick.js +69 -0
- package/esm/stepper/hooks/useInputEvent.d.ts +9 -0
- package/esm/stepper/hooks/useInputEvent.js +53 -0
- package/esm/stepper/hooks/useValue.d.ts +6 -0
- package/esm/stepper/hooks/useValue.js +38 -0
- package/esm/stepper/index.d.ts +13 -0
- package/esm/stepper/index.js +163 -0
- package/esm/stepper/style/css/index.css +76 -0
- package/esm/stepper/style/css/index.d.ts +2 -0
- package/esm/stepper/style/css/index.js +2 -0
- package/esm/stepper/style/index.d.ts +2 -0
- package/esm/stepper/style/index.js +2 -0
- package/esm/stepper/style/index.less +80 -0
- package/esm/stepper/type.d.ts +159 -0
- package/esm/stepper/type.js +1 -0
- package/esm/style.d.ts +1 -0
- package/esm/style.js +1 -0
- package/esm/swipe-action/index.d.ts +1 -0
- package/esm/swipe-action/index.js +1 -0
- package/esm/switch/index.js +4 -0
- package/esm/toast/index.d.ts +18 -18
- package/esm/toast/index.js +3 -2
- package/esm/toast/methods.d.ts +2 -1
- package/esm/toast/methods.js +2 -2
- package/package.json +3 -3
- package/style/css/public.css +4 -4
- package/tokens/app/arcodesign/default/css-variables.less +15 -0
- package/tokens/app/arcodesign/default/index.d.ts +15 -0
- package/tokens/app/arcodesign/default/index.js +16 -1
- package/tokens/app/arcodesign/default/index.json +180 -0
- package/tokens/app/arcodesign/default/index.less +15 -0
- package/umd/_helpers/render.d.ts +3 -1
- package/umd/_helpers/render.js +13 -7
- package/umd/action-sheet/index.d.ts +5 -5
- package/umd/action-sheet/index.js +4 -3
- package/umd/action-sheet/methods.d.ts +1 -1
- package/umd/badge/style/css/index.css +1 -2
- package/umd/checkbox/checkbox.js +4 -0
- package/umd/circle-progress/index.js +4 -0
- package/umd/context-provider/index.d.ts +4 -0
- package/umd/context-provider/index.js +13 -1
- package/umd/dialog/index.d.ts +8 -8
- package/umd/dialog/index.js +3 -2
- package/umd/dialog/methods.d.ts +3 -3
- package/umd/dialog/style/css/index.css +1 -2
- package/umd/image-picker/index.js +18 -12
- package/umd/image-picker/type.d.ts +10 -0
- package/umd/image-preview/index.d.ts +3 -3
- package/umd/image-preview/index.js +3 -2
- package/umd/image-preview/methods.d.ts +2 -1
- package/umd/image-preview/methods.js +2 -2
- package/umd/index.d.ts +1 -0
- package/umd/index.js +7 -5
- package/umd/input/hooks.js +1 -0
- package/umd/input/index.d.ts +5 -0
- package/umd/input/index.js +6 -2
- package/umd/input/style/css/index.css +1 -0
- package/umd/input/style/index.less +1 -0
- package/umd/masking/index.d.ts +4 -14
- package/umd/masking/index.js +3 -2
- package/umd/masking/methods.d.ts +3 -2
- package/umd/masking/methods.js +2 -2
- package/umd/nav-bar/index.d.ts +12 -0
- package/umd/nav-bar/index.js +8 -2
- package/umd/notify/index.d.ts +12 -12
- package/umd/notify/index.js +3 -2
- package/umd/notify/methods.d.ts +2 -1
- package/umd/notify/methods.js +2 -2
- package/umd/picker-view/components/picker-cell.js +3 -1
- package/umd/popup/index.d.ts +4 -4
- package/umd/popup/index.js +3 -2
- package/umd/popup/methods.d.ts +1 -1
- package/umd/popup-swiper/index.d.ts +12 -6
- package/umd/popup-swiper/index.js +3 -2
- package/umd/popup-swiper/methods.d.ts +1 -1
- package/umd/progress/index.js +4 -0
- package/umd/rate/index.js +5 -0
- package/umd/slider/index.js +6 -1
- package/umd/stepper/demo/style/css/mobile.css +4 -0
- package/umd/stepper/demo/style/mobile.less +10 -0
- package/umd/stepper/hooks/useButtonClick.d.ts +11 -0
- package/umd/stepper/hooks/useButtonClick.js +86 -0
- package/umd/stepper/hooks/useInputEvent.d.ts +9 -0
- package/umd/stepper/hooks/useInputEvent.js +71 -0
- package/umd/stepper/hooks/useValue.d.ts +6 -0
- package/umd/stepper/hooks/useValue.js +56 -0
- package/umd/stepper/index.d.ts +13 -0
- package/umd/stepper/index.js +191 -0
- package/umd/stepper/style/css/index.css +76 -0
- package/umd/stepper/style/css/index.d.ts +2 -0
- package/umd/stepper/style/css/index.js +15 -0
- package/umd/stepper/style/index.d.ts +2 -0
- package/umd/stepper/style/index.js +15 -0
- package/umd/stepper/style/index.less +80 -0
- package/umd/stepper/type.d.ts +159 -0
- package/umd/stepper/type.js +17 -0
- package/umd/style.d.ts +1 -0
- package/umd/style.js +4 -4
- package/umd/swipe-action/index.d.ts +1 -0
- package/umd/swipe-action/index.js +11 -4
- package/umd/switch/index.js +4 -0
- package/umd/toast/index.d.ts +18 -18
- package/umd/toast/index.js +3 -2
- package/umd/toast/methods.d.ts +2 -1
- package/umd/toast/methods.js +2 -2
package/dist/style.css
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
* {
|
2
|
-
margin: 0;
|
3
|
-
padding: 0;
|
4
|
-
border: 0;
|
5
|
-
-webkit-font-smoothing: antialiased;
|
6
2
|
-webkit-tap-highlight-color: transparent;
|
7
3
|
}
|
8
4
|
body {
|
5
|
+
margin: 0;
|
6
|
+
padding: 0;
|
7
|
+
border: 0;
|
9
8
|
touch-action: manipulation;
|
9
|
+
-webkit-font-smoothing: antialiased;
|
10
10
|
-webkit-text-size-adjust: none;
|
11
11
|
}
|
12
12
|
button,
|
@@ -590,14 +590,6 @@ samp {
|
|
590
590
|
.arco-loading .stroke-color-with-config {
|
591
591
|
stroke: #165dff;
|
592
592
|
}
|
593
|
-
@-webkit-keyframes changDeg {
|
594
|
-
0% {
|
595
|
-
transform: rotate(0deg);
|
596
|
-
}
|
597
|
-
100% {
|
598
|
-
transform: rotate(360deg);
|
599
|
-
}
|
600
|
-
}
|
601
593
|
@keyframes changDeg {
|
602
594
|
0% {
|
603
595
|
transform: rotate(0deg);
|
@@ -609,8 +601,7 @@ samp {
|
|
609
601
|
.arco-loading.circle,
|
610
602
|
.arco-loading.arc,
|
611
603
|
.arco-loading.spin {
|
612
|
-
|
613
|
-
animation: changDeg 1s infinite linear;
|
604
|
+
animation: changDeg 1s infinite linear;
|
614
605
|
}
|
615
606
|
.arco-loading.circle .loading-circle-middle {
|
616
607
|
stop-opacity: 0.5;
|
@@ -669,16 +660,6 @@ samp {
|
|
669
660
|
stop-opacity: 0;
|
670
661
|
}
|
671
662
|
|
672
|
-
@-webkit-keyframes scale-on {
|
673
|
-
0% {
|
674
|
-
transform: scale(0);
|
675
|
-
opacity: 0;
|
676
|
-
}
|
677
|
-
100% {
|
678
|
-
transform: scale(1);
|
679
|
-
opacity: 1;
|
680
|
-
}
|
681
|
-
}
|
682
663
|
@keyframes scale-on {
|
683
664
|
0% {
|
684
665
|
transform: scale(0);
|
@@ -689,16 +670,6 @@ samp {
|
|
689
670
|
opacity: 1;
|
690
671
|
}
|
691
672
|
}
|
692
|
-
@-webkit-keyframes scale-off {
|
693
|
-
0% {
|
694
|
-
transform: scale(1);
|
695
|
-
opacity: 1;
|
696
|
-
}
|
697
|
-
100% {
|
698
|
-
transform: scale(0);
|
699
|
-
opacity: 0;
|
700
|
-
}
|
701
|
-
}
|
702
673
|
@keyframes scale-off {
|
703
674
|
0% {
|
704
675
|
transform: scale(1);
|
@@ -710,12 +681,10 @@ samp {
|
|
710
681
|
}
|
711
682
|
}
|
712
683
|
.arco-scale-enter-active {
|
713
|
-
|
714
|
-
animation: scale-on 0.4s cubic-bezier(0.3, 1.3, 0.3, 1) forwards;
|
684
|
+
animation: scale-on 0.4s cubic-bezier(0.3, 1.3, 0.3, 1) forwards;
|
715
685
|
}
|
716
686
|
.arco-scale-exit-active {
|
717
|
-
|
718
|
-
animation: scale-off 0.4s cubic-bezier(0.3, 1.3, 0.3, 1) forwards;
|
687
|
+
animation: scale-off 0.4s cubic-bezier(0.3, 1.3, 0.3, 1) forwards;
|
719
688
|
}
|
720
689
|
.arco-badge {
|
721
690
|
cursor: pointer;
|
@@ -1584,14 +1553,6 @@ samp {
|
|
1584
1553
|
display: inline-block;
|
1585
1554
|
transition: all 0.2s ;
|
1586
1555
|
}
|
1587
|
-
@-webkit-keyframes changDeg {
|
1588
|
-
0% {
|
1589
|
-
transform: rotate(0deg);
|
1590
|
-
}
|
1591
|
-
100% {
|
1592
|
-
transform: rotate(360deg);
|
1593
|
-
}
|
1594
|
-
}
|
1595
1556
|
@keyframes changDeg {
|
1596
1557
|
0% {
|
1597
1558
|
transform: rotate(0deg);
|
@@ -2085,17 +2046,6 @@ samp {
|
|
2085
2046
|
align-items: center;
|
2086
2047
|
justify-content: center;
|
2087
2048
|
}
|
2088
|
-
@-webkit-keyframes caterpillarX {
|
2089
|
-
0% {
|
2090
|
-
transform: scaleX(1) translateZ(0);
|
2091
|
-
}
|
2092
|
-
50% {
|
2093
|
-
transform: scaleX(2) translateZ(0);
|
2094
|
-
}
|
2095
|
-
100% {
|
2096
|
-
transform: scaleX(1) translateZ(0);
|
2097
|
-
}
|
2098
|
-
}
|
2099
2049
|
@keyframes caterpillarX {
|
2100
2050
|
0% {
|
2101
2051
|
transform: scaleX(1) translateZ(0);
|
@@ -2107,17 +2057,6 @@ samp {
|
|
2107
2057
|
transform: scaleX(1) translateZ(0);
|
2108
2058
|
}
|
2109
2059
|
}
|
2110
|
-
@-webkit-keyframes caterpillarY {
|
2111
|
-
0% {
|
2112
|
-
transform: scaleY(1) translateZ(0);
|
2113
|
-
}
|
2114
|
-
50% {
|
2115
|
-
transform: scaleY(2) translateZ(0);
|
2116
|
-
}
|
2117
|
-
100% {
|
2118
|
-
transform: scaleY(1) translateZ(0);
|
2119
|
-
}
|
2120
|
-
}
|
2121
2060
|
@keyframes caterpillarY {
|
2122
2061
|
0% {
|
2123
2062
|
transform: scaleY(1) translateZ(0);
|
@@ -2168,16 +2107,13 @@ samp {
|
|
2168
2107
|
background-color: #165dff ;
|
2169
2108
|
}
|
2170
2109
|
.arco-tab-cell-underline-inner.caterpillar {
|
2171
|
-
|
2172
|
-
animation-timing-function: linear;
|
2110
|
+
animation-timing-function: linear;
|
2173
2111
|
}
|
2174
2112
|
.arco-tab-cell-underline-inner.caterpillar:not(.custom-animate).vertical {
|
2175
|
-
|
2176
|
-
animation-name: caterpillarX;
|
2113
|
+
animation-name: caterpillarX;
|
2177
2114
|
}
|
2178
2115
|
.arco-tab-cell-underline-inner.caterpillar:not(.custom-animate).horizontal {
|
2179
|
-
|
2180
|
-
animation-name: caterpillarY;
|
2116
|
+
animation-name: caterpillarY;
|
2181
2117
|
}
|
2182
2118
|
.arco-tab-cell {
|
2183
2119
|
font-size: 0.3rem ;
|
@@ -2333,16 +2269,6 @@ samp {
|
|
2333
2269
|
}
|
2334
2270
|
|
2335
2271
|
|
2336
|
-
@-webkit-keyframes fade-scale-on {
|
2337
|
-
0% {
|
2338
|
-
opacity: 0;
|
2339
|
-
transform: scale(0.5);
|
2340
|
-
}
|
2341
|
-
100% {
|
2342
|
-
opacity: 1;
|
2343
|
-
transform: scale(1);
|
2344
|
-
}
|
2345
|
-
}
|
2346
2272
|
@keyframes fade-scale-on {
|
2347
2273
|
0% {
|
2348
2274
|
opacity: 0;
|
@@ -2353,16 +2279,6 @@ samp {
|
|
2353
2279
|
transform: scale(1);
|
2354
2280
|
}
|
2355
2281
|
}
|
2356
|
-
@-webkit-keyframes fade-scale-off {
|
2357
|
-
0% {
|
2358
|
-
opacity: 1;
|
2359
|
-
transform: scale(1);
|
2360
|
-
}
|
2361
|
-
100% {
|
2362
|
-
opacity: 0;
|
2363
|
-
transform: scale(0.5);
|
2364
|
-
}
|
2365
|
-
}
|
2366
2282
|
@keyframes fade-scale-off {
|
2367
2283
|
0% {
|
2368
2284
|
opacity: 1;
|
@@ -2374,12 +2290,10 @@ samp {
|
|
2374
2290
|
}
|
2375
2291
|
}
|
2376
2292
|
.arco-fade-scale-enter-active {
|
2377
|
-
|
2378
|
-
animation: fade-scale-on 0.45s cubic-bezier(0.2, 1.23, 0.25, 1) forwards;
|
2293
|
+
animation: fade-scale-on 0.45s cubic-bezier(0.2, 1.23, 0.25, 1) forwards;
|
2379
2294
|
}
|
2380
2295
|
.arco-fade-scale-exit-active {
|
2381
|
-
|
2382
|
-
animation: fade-scale-off 0.15s cubic-bezier(0.48, 0.04, 0.52, 0.96) forwards;
|
2296
|
+
animation: fade-scale-off 0.15s cubic-bezier(0.48, 0.04, 0.52, 0.96) forwards;
|
2383
2297
|
}
|
2384
2298
|
.arco-dialog-mask,
|
2385
2299
|
.arco-dialog-container {
|
@@ -3457,6 +3371,7 @@ samp {
|
|
3457
3371
|
}
|
3458
3372
|
.arco-input-clear {
|
3459
3373
|
color: #c9cdd4 ;
|
3374
|
+
font-size: 16PX ;
|
3460
3375
|
}
|
3461
3376
|
.arco-input {
|
3462
3377
|
display: inline-block;
|
@@ -3676,8 +3591,7 @@ samp {
|
|
3676
3591
|
line-height: 0.72rem ;
|
3677
3592
|
}
|
3678
3593
|
.arco-notice-bar-content-inner.animate {
|
3679
|
-
|
3680
|
-
animation: marquee linear both;
|
3594
|
+
animation: marquee linear both;
|
3681
3595
|
}
|
3682
3596
|
.arco-notice-bar-content .arco-carousel {
|
3683
3597
|
height: 0.72rem ;
|
@@ -3710,14 +3624,6 @@ samp {
|
|
3710
3624
|
right: -2PX;
|
3711
3625
|
transform: rotate(180deg);
|
3712
3626
|
}
|
3713
|
-
@-webkit-keyframes marquee {
|
3714
|
-
0% {
|
3715
|
-
transform: translate3d(0, 0, 0);
|
3716
|
-
}
|
3717
|
-
100% {
|
3718
|
-
transform: translate3d(-100%, 0, 0);
|
3719
|
-
}
|
3720
|
-
}
|
3721
3627
|
@keyframes marquee {
|
3722
3628
|
0% {
|
3723
3629
|
transform: translate3d(0, 0, 0);
|
@@ -3992,7 +3898,6 @@ samp {
|
|
3992
3898
|
.arco-popover-inner {
|
3993
3899
|
box-sizing: border-box;
|
3994
3900
|
position: absolute;
|
3995
|
-
width: -webkit-max-content;
|
3996
3901
|
width: -moz-max-content;
|
3997
3902
|
width: max-content;
|
3998
3903
|
z-index: 1010;
|
@@ -4335,7 +4240,6 @@ samp {
|
|
4335
4240
|
position: absolute;
|
4336
4241
|
display: flex;
|
4337
4242
|
width: 100%;
|
4338
|
-
height: -webkit-fit-content;
|
4339
4243
|
height: -moz-fit-content;
|
4340
4244
|
height: fit-content;
|
4341
4245
|
justify-content: center;
|
@@ -4561,10 +4465,8 @@ samp {
|
|
4561
4465
|
.arco-slider-thumb-wrapper {
|
4562
4466
|
position: absolute;
|
4563
4467
|
display: flex;
|
4564
|
-
width: -webkit-fit-content;
|
4565
4468
|
width: -moz-fit-content;
|
4566
4469
|
width: fit-content;
|
4567
|
-
height: -webkit-fit-content;
|
4568
4470
|
height: -moz-fit-content;
|
4569
4471
|
height: fit-content;
|
4570
4472
|
margin: auto;
|
@@ -4599,7 +4501,6 @@ samp {
|
|
4599
4501
|
}
|
4600
4502
|
.arco-slider-popover {
|
4601
4503
|
position: absolute;
|
4602
|
-
width: -webkit-max-content;
|
4603
4504
|
width: -moz-max-content;
|
4604
4505
|
width: max-content;
|
4605
4506
|
color: #fff ;
|
@@ -4847,6 +4748,69 @@ samp {
|
|
4847
4748
|
color: #165dff ;
|
4848
4749
|
}
|
4849
4750
|
|
4751
|
+
.arco-stepper {
|
4752
|
+
display: flex;
|
4753
|
+
font-size: 0.28rem ;
|
4754
|
+
}
|
4755
|
+
.arco-stepper.arco-square {
|
4756
|
+
border: 1PX solid #f2f3f5 ;
|
4757
|
+
border-radius: 0.04rem ;
|
4758
|
+
}
|
4759
|
+
.arco-stepper.arco-square .arco-stepper-add-button,
|
4760
|
+
.arco-stepper.arco-square .arco-stepper-minus-button,
|
4761
|
+
.arco-stepper.arco-square .arco-stepper-input {
|
4762
|
+
background: #ffffff ;
|
4763
|
+
}
|
4764
|
+
.arco-stepper.arco-square .arco-stepper-input {
|
4765
|
+
border-left: 1PX solid #f2f3f5 ;
|
4766
|
+
border-right: 1PX solid #f2f3f5 ;
|
4767
|
+
}
|
4768
|
+
.arco-stepper.arco-round .arco-stepper-minus-button,
|
4769
|
+
.arco-stepper.arco-round .arco-stepper-add-button {
|
4770
|
+
border-radius: 50% ;
|
4771
|
+
}
|
4772
|
+
.arco-stepper.arco-round .arco-stepper-input {
|
4773
|
+
background: transparent ;
|
4774
|
+
}
|
4775
|
+
.arco-stepper-minus-button {
|
4776
|
+
display: flex;
|
4777
|
+
align-items: center;
|
4778
|
+
justify-content: center;
|
4779
|
+
font-size: 0.2rem ;
|
4780
|
+
width: 0.56rem ;
|
4781
|
+
height: 0.56rem ;
|
4782
|
+
background: #f7f8fa ;
|
4783
|
+
}
|
4784
|
+
.arco-stepper-minus-button-icon {
|
4785
|
+
color: #1d2129 ;
|
4786
|
+
}
|
4787
|
+
.arco-stepper-minus-button-icon.disabled {
|
4788
|
+
color: #c9cdd4 ;
|
4789
|
+
}
|
4790
|
+
.arco-stepper-input {
|
4791
|
+
text-align: center;
|
4792
|
+
width: 0.8rem ;
|
4793
|
+
height: 0.56rem ;
|
4794
|
+
background: #f7f8fa ;
|
4795
|
+
color: #1d2129 ;
|
4796
|
+
margin: 0 1PX ;
|
4797
|
+
}
|
4798
|
+
.arco-stepper-add-button {
|
4799
|
+
display: flex;
|
4800
|
+
align-items: center;
|
4801
|
+
justify-content: center;
|
4802
|
+
font-size: 0.2rem ;
|
4803
|
+
width: 0.56rem ;
|
4804
|
+
height: 0.56rem ;
|
4805
|
+
background: #f7f8fa ;
|
4806
|
+
}
|
4807
|
+
.arco-stepper-add-button-icon {
|
4808
|
+
color: #1d2129 ;
|
4809
|
+
}
|
4810
|
+
.arco-stepper-add-button-icon.disabled {
|
4811
|
+
color: #c9cdd4 ;
|
4812
|
+
}
|
4813
|
+
|
4850
4814
|
.arco-steps {
|
4851
4815
|
display: flex;
|
4852
4816
|
padding: 0.32rem 0 ;
|