@arco-design/mobile-react 2.20.0 → 2.21.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.
Files changed (295) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.en-US.md +2 -2
  3. package/README.md +2 -2
  4. package/cjs/avatar/index.d.ts +1 -1
  5. package/cjs/avatar/index.js +1 -1
  6. package/cjs/badge/index.d.ts +1 -1
  7. package/cjs/badge/index.js +1 -1
  8. package/cjs/carousel/index.d.ts +1 -1
  9. package/cjs/carousel/index.js +1 -1
  10. package/cjs/cell/index.d.ts +1 -1
  11. package/cjs/cell/index.js +1 -1
  12. package/cjs/checkbox/index.d.ts +1 -1
  13. package/cjs/checkbox/index.js +1 -1
  14. package/cjs/collapse/index.d.ts +1 -1
  15. package/cjs/collapse/index.js +1 -1
  16. package/cjs/count-down/index.d.ts +1 -1
  17. package/cjs/count-down/index.js +1 -1
  18. package/cjs/date-picker/index.d.ts +1 -1
  19. package/cjs/date-picker/index.js +1 -1
  20. package/cjs/dropdown/dropdown.js +36 -20
  21. package/cjs/dropdown/style/css/index.css +3 -0
  22. package/cjs/dropdown/style/index.less +2 -0
  23. package/cjs/ellipsis/index.d.ts +1 -1
  24. package/cjs/ellipsis/index.js +1 -1
  25. package/cjs/image/index.d.ts +1 -1
  26. package/cjs/image/index.js +1 -1
  27. package/cjs/image-picker/index.d.ts +4 -175
  28. package/cjs/image-picker/index.js +41 -18
  29. package/cjs/image-picker/type.d.ts +174 -0
  30. package/cjs/image-picker/type.js +3 -0
  31. package/cjs/image-preview/index.d.ts +1 -1
  32. package/cjs/image-preview/index.js +1 -1
  33. package/cjs/index.d.ts +2 -0
  34. package/cjs/index.js +9 -1
  35. package/cjs/input/hooks.js +49 -8
  36. package/cjs/input/index.d.ts +1 -1
  37. package/cjs/input/index.js +1 -1
  38. package/cjs/input/props.d.ts +8 -2
  39. package/cjs/notice-bar/index.d.ts +1 -1
  40. package/cjs/notice-bar/index.js +1 -1
  41. package/cjs/picker/index.d.ts +1 -1
  42. package/cjs/picker/index.js +1 -1
  43. package/cjs/picker-view/index.d.ts +1 -1
  44. package/cjs/picker-view/index.js +1 -1
  45. package/cjs/popover/index.d.ts +1 -1
  46. package/cjs/popover/index.js +1 -1
  47. package/cjs/popup-swiper/index.js +3 -2
  48. package/cjs/radio/index.d.ts +1 -1
  49. package/cjs/radio/index.js +1 -1
  50. package/cjs/rate/index.d.ts +1 -1
  51. package/cjs/rate/index.js +1 -1
  52. package/cjs/search-bar/association.d.ts +3 -0
  53. package/cjs/search-bar/association.js +92 -0
  54. package/cjs/search-bar/cancel-button.d.ts +10 -0
  55. package/cjs/search-bar/cancel-button.js +41 -0
  56. package/cjs/search-bar/demo/style/css/mobile.css +5 -0
  57. package/cjs/search-bar/demo/style/mobile.less +9 -0
  58. package/cjs/search-bar/highlight.d.ts +12 -0
  59. package/cjs/search-bar/highlight.js +77 -0
  60. package/cjs/search-bar/index.d.ts +13 -0
  61. package/cjs/search-bar/index.js +239 -0
  62. package/cjs/search-bar/style/css/index.css +148 -0
  63. package/cjs/search-bar/style/css/index.d.ts +2 -0
  64. package/cjs/search-bar/style/css/index.js +5 -0
  65. package/cjs/search-bar/style/index.d.ts +2 -0
  66. package/cjs/search-bar/style/index.js +5 -0
  67. package/cjs/search-bar/style/index.less +111 -0
  68. package/cjs/search-bar/type.d.ts +163 -0
  69. package/cjs/search-bar/type.js +3 -0
  70. package/cjs/slider/index.d.ts +1 -1
  71. package/cjs/slider/index.js +1 -1
  72. package/cjs/steps/index.d.ts +1 -1
  73. package/cjs/steps/index.js +1 -1
  74. package/cjs/sticky/index.d.ts +1 -1
  75. package/cjs/style.d.ts +2 -0
  76. package/cjs/style.js +4 -0
  77. package/cjs/swipe-action/demo/style/css/mobile.css +5 -0
  78. package/cjs/swipe-action/demo/style/mobile.less +9 -0
  79. package/cjs/swipe-action/index.d.ts +12 -0
  80. package/cjs/swipe-action/index.js +339 -0
  81. package/cjs/swipe-action/item.d.ts +11 -0
  82. package/cjs/swipe-action/item.js +52 -0
  83. package/cjs/swipe-action/style/css/index.css +88 -0
  84. package/cjs/swipe-action/style/css/index.d.ts +2 -0
  85. package/cjs/swipe-action/style/css/index.js +5 -0
  86. package/cjs/swipe-action/style/index.d.ts +2 -0
  87. package/cjs/swipe-action/style/index.js +5 -0
  88. package/cjs/swipe-action/style/index.less +89 -0
  89. package/cjs/swipe-action/type.d.ts +123 -0
  90. package/cjs/swipe-action/type.js +3 -0
  91. package/cjs/switch/index.d.ts +1 -1
  92. package/cjs/switch/index.js +1 -1
  93. package/cjs/tabs/tab-pane.js +5 -1
  94. package/cjs/tag/index.d.ts +1 -1
  95. package/cjs/tag/index.js +1 -1
  96. package/cjs/textarea/index.d.ts +1 -1
  97. package/cjs/textarea/index.js +1 -1
  98. package/dist/index.js +7450 -6611
  99. package/dist/index.min.js +6 -6
  100. package/dist/style.css +203 -0
  101. package/dist/style.min.css +1 -1
  102. package/esm/avatar/index.d.ts +1 -1
  103. package/esm/avatar/index.js +1 -1
  104. package/esm/badge/index.d.ts +1 -1
  105. package/esm/badge/index.js +1 -1
  106. package/esm/carousel/index.d.ts +1 -1
  107. package/esm/carousel/index.js +1 -1
  108. package/esm/cell/index.d.ts +1 -1
  109. package/esm/cell/index.js +1 -1
  110. package/esm/checkbox/index.d.ts +1 -1
  111. package/esm/checkbox/index.js +1 -1
  112. package/esm/collapse/index.d.ts +1 -1
  113. package/esm/collapse/index.js +1 -1
  114. package/esm/count-down/index.d.ts +1 -1
  115. package/esm/count-down/index.js +1 -1
  116. package/esm/date-picker/index.d.ts +1 -1
  117. package/esm/date-picker/index.js +1 -1
  118. package/esm/dropdown/dropdown.js +36 -20
  119. package/esm/dropdown/style/css/index.css +3 -0
  120. package/esm/dropdown/style/index.less +2 -0
  121. package/esm/ellipsis/index.d.ts +1 -1
  122. package/esm/ellipsis/index.js +1 -1
  123. package/esm/image/index.d.ts +1 -1
  124. package/esm/image/index.js +1 -1
  125. package/esm/image-picker/index.d.ts +4 -175
  126. package/esm/image-picker/index.js +30 -17
  127. package/esm/image-picker/type.d.ts +174 -0
  128. package/esm/image-picker/type.js +1 -0
  129. package/esm/image-preview/index.d.ts +1 -1
  130. package/esm/image-preview/index.js +1 -1
  131. package/esm/index.d.ts +2 -0
  132. package/esm/index.js +2 -0
  133. package/esm/input/hooks.js +49 -8
  134. package/esm/input/index.d.ts +1 -1
  135. package/esm/input/index.js +1 -1
  136. package/esm/input/props.d.ts +8 -2
  137. package/esm/notice-bar/index.d.ts +1 -1
  138. package/esm/notice-bar/index.js +1 -1
  139. package/esm/picker/index.d.ts +1 -1
  140. package/esm/picker/index.js +1 -1
  141. package/esm/picker-view/index.d.ts +1 -1
  142. package/esm/picker-view/index.js +1 -1
  143. package/esm/popover/index.d.ts +1 -1
  144. package/esm/popover/index.js +1 -1
  145. package/esm/popup-swiper/index.js +3 -2
  146. package/esm/radio/index.d.ts +1 -1
  147. package/esm/radio/index.js +1 -1
  148. package/esm/rate/index.d.ts +1 -1
  149. package/esm/rate/index.js +1 -1
  150. package/esm/search-bar/association.d.ts +3 -0
  151. package/esm/search-bar/association.js +82 -0
  152. package/esm/search-bar/cancel-button.d.ts +10 -0
  153. package/esm/search-bar/cancel-button.js +30 -0
  154. package/esm/search-bar/demo/style/css/mobile.css +5 -0
  155. package/esm/search-bar/demo/style/mobile.less +9 -0
  156. package/esm/search-bar/highlight.d.ts +12 -0
  157. package/esm/search-bar/highlight.js +66 -0
  158. package/esm/search-bar/index.d.ts +13 -0
  159. package/esm/search-bar/index.js +213 -0
  160. package/esm/search-bar/style/css/index.css +148 -0
  161. package/esm/search-bar/style/css/index.d.ts +2 -0
  162. package/esm/search-bar/style/css/index.js +2 -0
  163. package/esm/search-bar/style/index.d.ts +2 -0
  164. package/esm/search-bar/style/index.js +2 -0
  165. package/esm/search-bar/style/index.less +111 -0
  166. package/esm/search-bar/type.d.ts +163 -0
  167. package/esm/search-bar/type.js +1 -0
  168. package/esm/slider/index.d.ts +1 -1
  169. package/esm/slider/index.js +1 -1
  170. package/esm/steps/index.d.ts +1 -1
  171. package/esm/steps/index.js +1 -1
  172. package/esm/sticky/index.d.ts +1 -1
  173. package/esm/style.d.ts +2 -0
  174. package/esm/style.js +2 -0
  175. package/esm/swipe-action/demo/style/css/mobile.css +5 -0
  176. package/esm/swipe-action/demo/style/mobile.less +9 -0
  177. package/esm/swipe-action/index.d.ts +12 -0
  178. package/esm/swipe-action/index.js +321 -0
  179. package/esm/swipe-action/item.d.ts +11 -0
  180. package/esm/swipe-action/item.js +42 -0
  181. package/esm/swipe-action/style/css/index.css +88 -0
  182. package/esm/swipe-action/style/css/index.d.ts +2 -0
  183. package/esm/swipe-action/style/css/index.js +2 -0
  184. package/esm/swipe-action/style/index.d.ts +2 -0
  185. package/esm/swipe-action/style/index.js +2 -0
  186. package/esm/swipe-action/style/index.less +89 -0
  187. package/esm/swipe-action/type.d.ts +123 -0
  188. package/esm/swipe-action/type.js +1 -0
  189. package/esm/switch/index.d.ts +1 -1
  190. package/esm/switch/index.js +1 -1
  191. package/esm/tabs/tab-pane.js +5 -1
  192. package/esm/tag/index.d.ts +1 -1
  193. package/esm/tag/index.js +1 -1
  194. package/esm/textarea/index.d.ts +1 -1
  195. package/esm/textarea/index.js +1 -1
  196. package/package.json +3 -3
  197. package/tokens/app/arcodesign/default/css-variables.less +34 -0
  198. package/tokens/app/arcodesign/default/index.d.ts +34 -0
  199. package/tokens/app/arcodesign/default/index.js +34 -0
  200. package/tokens/app/arcodesign/default/index.json +398 -0
  201. package/tokens/app/arcodesign/default/index.less +34 -0
  202. package/umd/avatar/index.d.ts +1 -1
  203. package/umd/avatar/index.js +1 -1
  204. package/umd/badge/index.d.ts +1 -1
  205. package/umd/badge/index.js +1 -1
  206. package/umd/carousel/index.d.ts +1 -1
  207. package/umd/carousel/index.js +1 -1
  208. package/umd/cell/index.d.ts +1 -1
  209. package/umd/cell/index.js +1 -1
  210. package/umd/checkbox/index.d.ts +1 -1
  211. package/umd/checkbox/index.js +1 -1
  212. package/umd/collapse/index.d.ts +1 -1
  213. package/umd/collapse/index.js +1 -1
  214. package/umd/count-down/index.d.ts +1 -1
  215. package/umd/count-down/index.js +1 -1
  216. package/umd/date-picker/index.d.ts +1 -1
  217. package/umd/date-picker/index.js +1 -1
  218. package/umd/dropdown/dropdown.js +36 -20
  219. package/umd/dropdown/style/css/index.css +3 -0
  220. package/umd/dropdown/style/index.less +2 -0
  221. package/umd/ellipsis/index.d.ts +1 -1
  222. package/umd/ellipsis/index.js +1 -1
  223. package/umd/image/index.d.ts +1 -1
  224. package/umd/image/index.js +1 -1
  225. package/umd/image-picker/index.d.ts +4 -175
  226. package/umd/image-picker/index.js +40 -22
  227. package/umd/image-picker/type.d.ts +174 -0
  228. package/umd/image-picker/type.js +17 -0
  229. package/umd/image-preview/index.d.ts +1 -1
  230. package/umd/image-preview/index.js +1 -1
  231. package/umd/index.d.ts +2 -0
  232. package/umd/index.js +9 -5
  233. package/umd/input/hooks.js +48 -7
  234. package/umd/input/index.d.ts +1 -1
  235. package/umd/input/index.js +1 -1
  236. package/umd/input/props.d.ts +8 -2
  237. package/umd/notice-bar/index.d.ts +1 -1
  238. package/umd/notice-bar/index.js +1 -1
  239. package/umd/picker/index.d.ts +1 -1
  240. package/umd/picker/index.js +1 -1
  241. package/umd/picker-view/index.d.ts +1 -1
  242. package/umd/picker-view/index.js +1 -1
  243. package/umd/popover/index.d.ts +1 -1
  244. package/umd/popover/index.js +1 -1
  245. package/umd/popup-swiper/index.js +3 -2
  246. package/umd/radio/index.d.ts +1 -1
  247. package/umd/radio/index.js +1 -1
  248. package/umd/rate/index.d.ts +1 -1
  249. package/umd/rate/index.js +1 -1
  250. package/umd/search-bar/association.d.ts +3 -0
  251. package/umd/search-bar/association.js +101 -0
  252. package/umd/search-bar/cancel-button.d.ts +10 -0
  253. package/umd/search-bar/cancel-button.js +52 -0
  254. package/umd/search-bar/demo/style/css/mobile.css +5 -0
  255. package/umd/search-bar/demo/style/mobile.less +9 -0
  256. package/umd/search-bar/highlight.d.ts +12 -0
  257. package/umd/search-bar/highlight.js +87 -0
  258. package/umd/search-bar/index.d.ts +13 -0
  259. package/umd/search-bar/index.js +235 -0
  260. package/umd/search-bar/style/css/index.css +148 -0
  261. package/umd/search-bar/style/css/index.d.ts +2 -0
  262. package/umd/search-bar/style/css/index.js +15 -0
  263. package/umd/search-bar/style/index.d.ts +2 -0
  264. package/umd/search-bar/style/index.js +15 -0
  265. package/umd/search-bar/style/index.less +111 -0
  266. package/umd/search-bar/type.d.ts +163 -0
  267. package/umd/search-bar/type.js +17 -0
  268. package/umd/slider/index.d.ts +1 -1
  269. package/umd/slider/index.js +1 -1
  270. package/umd/steps/index.d.ts +1 -1
  271. package/umd/steps/index.js +1 -1
  272. package/umd/sticky/index.d.ts +1 -1
  273. package/umd/style.d.ts +2 -0
  274. package/umd/style.js +4 -4
  275. package/umd/swipe-action/demo/style/css/mobile.css +5 -0
  276. package/umd/swipe-action/demo/style/mobile.less +9 -0
  277. package/umd/swipe-action/index.d.ts +12 -0
  278. package/umd/swipe-action/index.js +342 -0
  279. package/umd/swipe-action/item.d.ts +11 -0
  280. package/umd/swipe-action/item.js +62 -0
  281. package/umd/swipe-action/style/css/index.css +88 -0
  282. package/umd/swipe-action/style/css/index.d.ts +2 -0
  283. package/umd/swipe-action/style/css/index.js +15 -0
  284. package/umd/swipe-action/style/index.d.ts +2 -0
  285. package/umd/swipe-action/style/index.js +15 -0
  286. package/umd/swipe-action/style/index.less +89 -0
  287. package/umd/swipe-action/type.d.ts +123 -0
  288. package/umd/swipe-action/type.js +17 -0
  289. package/umd/switch/index.d.ts +1 -1
  290. package/umd/switch/index.js +1 -1
  291. package/umd/tabs/tab-pane.js +5 -1
  292. package/umd/tag/index.d.ts +1 -1
  293. package/umd/tag/index.js +1 -1
  294. package/umd/textarea/index.d.ts +1 -1
  295. package/umd/textarea/index.js +1 -1
package/dist/style.css CHANGED
@@ -2890,6 +2890,8 @@ samp {
2890
2890
  }
2891
2891
  .arco-dropdown-options-item-icon {
2892
2892
  position: absolute;
2893
+ top: 50%;
2894
+ transform: translateY(-50%);
2893
2895
  right: 0.32rem ;
2894
2896
  color: transparent;
2895
2897
  }
@@ -4718,6 +4720,133 @@ samp {
4718
4720
  opacity: 0.8 ;
4719
4721
  }
4720
4722
 
4723
+ .arco-search-bar-container {
4724
+ display: flex;
4725
+ align-items: center;
4726
+ position: relative;
4727
+ padding: 0.32rem ;
4728
+ background-color: #FFFFFF ;
4729
+ }
4730
+ .arco-search-bar-square .arco-search-bar-wrap {
4731
+ border-radius: 0.04rem ;
4732
+ }
4733
+ .arco-search-bar-round .arco-search-bar-wrap {
4734
+ border-radius: 199.98rem ;
4735
+ }
4736
+ .arco-search-bar-wrap {
4737
+ display: flex;
4738
+ align-items: center;
4739
+ flex: 1;
4740
+ height: 0.72rem ;
4741
+ font-size: 0.28rem ;
4742
+ padding: 0.16rem 0.28rem ;
4743
+ background-color: #F2F3F5 ;
4744
+ }
4745
+ .arco-search-bar-input {
4746
+ flex: 1;
4747
+ background-color: transparent;
4748
+ height: 0.4rem ;
4749
+ caret-color: #165dff ;
4750
+ }
4751
+ .arco-search-bar-input-left {
4752
+ text-align: left;
4753
+ }
4754
+ .arco-search-bar-input-right {
4755
+ text-align: right;
4756
+ }
4757
+ .arco-search-bar-input-center {
4758
+ text-align: center;
4759
+ }
4760
+ .arco-search-bar-input::-moz-placeholder {
4761
+ color: #c9cdd4 ;
4762
+ }
4763
+ .arco-search-bar-input::placeholder {
4764
+ color: #c9cdd4 ;
4765
+ }
4766
+ .arco-search-bar-input::-webkit-search-cancel-button {
4767
+ display: none;
4768
+ }
4769
+ .arco-search-bar-prefix,
4770
+ .arco-search-bar-suffix,
4771
+ .arco-search-bar-clear {
4772
+ align-items: center;
4773
+ justify-content: center;
4774
+ display: flex;
4775
+ }
4776
+ .arco-search-bar-prefix {
4777
+ margin-right: 0.18rem ;
4778
+ }
4779
+ .arco-search-bar-clear {
4780
+ color: #C9CDD4 ;
4781
+ }
4782
+ .arco-search-bar-search-icon {
4783
+ color: #86909C ;
4784
+ font-size: 0.32rem ;
4785
+ }
4786
+ .arco-search-bar-cancel-btn {
4787
+ margin-left: 0.32rem ;
4788
+ color: #165dff ;
4789
+ font-size: 0.3rem ;
4790
+ }
4791
+ .arco-search-bar-association {
4792
+ position: absolute;
4793
+ left: 0;
4794
+ right: 0;
4795
+ background-color: #FFFFFF ;
4796
+ top: 100%;
4797
+ display: none;
4798
+ }
4799
+ .arco-search-bar-association-visible {
4800
+ display: block;
4801
+ }
4802
+ .arco-search-bar-association-item {
4803
+ height: 1.04rem ;
4804
+ display: flex;
4805
+ align-items: center;
4806
+ position: relative;
4807
+ color: #1d2129 ;
4808
+ padding: 0.32rem ;
4809
+ font-size: 0.3rem ;
4810
+ }
4811
+ .arco-search-bar-association-item:not(:last-child) {
4812
+ position: relative;
4813
+ border-width: 0;
4814
+ }
4815
+ .arco-search-bar-association-item:not(:last-child)::after {
4816
+ content: '';
4817
+ width: 100%;
4818
+ height: 1PX;
4819
+ position: absolute;
4820
+ left: 0;
4821
+ bottom: 0;
4822
+ z-index: 1;
4823
+ border-bottom-style: solid;
4824
+ border-bottom-width: 1PX;
4825
+ border-bottom-color: #e5e6eb;
4826
+ box-sizing: border-box;
4827
+ transform-origin: left bottom;
4828
+ -webkit-transform-origin: left bottom;
4829
+ pointer-events: none;
4830
+ border-radius: 0;
4831
+ }
4832
+ @media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2) {
4833
+ .arco-search-bar-association-item:not(:last-child)::after {
4834
+ transform: scaleY(0.5);
4835
+ -webkit-transform: scaleY(0.5);
4836
+ border-radius: 0;
4837
+ }
4838
+ }
4839
+ @media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
4840
+ .arco-search-bar-association-item:not(:last-child)::after {
4841
+ transform: scaleY(0.33333333);
4842
+ -webkit-transform: scaleY(0.33333333);
4843
+ border-radius: 0;
4844
+ }
4845
+ }
4846
+ .arco-search-bar-association-item-highlight {
4847
+ color: #165dff ;
4848
+ }
4849
+
4721
4850
  .arco-steps {
4722
4851
  display: flex;
4723
4852
  padding: 0.32rem 0 ;
@@ -4889,6 +5018,80 @@ samp {
4889
5018
  }
4890
5019
 
4891
5020
 
5021
+ .arco-swipe-action {
5022
+ position: relative;
5023
+ transition: transform 0s;
5024
+ font-size: 0.32rem ;
5025
+ }
5026
+ .arco-swipe-action.action-open,
5027
+ .arco-swipe-action-menu.action-open {
5028
+ transition-timing-function: cubic-bezier(0.2, 0.8, 0.32, 1.28) ;
5029
+ }
5030
+ .arco-swipe-action.action-close,
5031
+ .arco-swipe-action-menu.action-close {
5032
+ transition-timing-function: cubic-bezier(0.34, 0.69, 0.1, 1) ;
5033
+ }
5034
+ .arco-swipe-action-content {
5035
+ width: 100%;
5036
+ }
5037
+ .arco-swipe-action-menu {
5038
+ display: flex;
5039
+ position: absolute;
5040
+ height: 100%;
5041
+ overflow: visible;
5042
+ flex-wrap: nowrap;
5043
+ top: 0;
5044
+ transition: width 0s;
5045
+ }
5046
+ .arco-swipe-action-menu-left {
5047
+ right: 100%;
5048
+ }
5049
+ .arco-swipe-action-menu-right {
5050
+ left: 100%;
5051
+ }
5052
+ .arco-swipe-action-menu-action-left::after {
5053
+ right: 100%;
5054
+ margin-right: -1PX;
5055
+ }
5056
+ .arco-swipe-action-menu-action-right::after {
5057
+ left: 100%;
5058
+ margin-left: -1PX;
5059
+ }
5060
+ .arco-swipe-action-menu-action-info {
5061
+ height: 100%;
5062
+ padding: 0.32rem ;
5063
+ display: flex;
5064
+ justify-content: center;
5065
+ align-items: center;
5066
+ }
5067
+ .arco-swipe-action-menu-action-info-container {
5068
+ position: relative;
5069
+ }
5070
+ .arco-swipe-action-menu-action-info-container.open-style-layer {
5071
+ position: absolute;
5072
+ height: 100%;
5073
+ }
5074
+ .arco-swipe-action-menu-action-info-container::after {
5075
+ content: " ";
5076
+ position: absolute;
5077
+ top: 0;
5078
+ height: 100%;
5079
+ width: 0.6rem ;
5080
+ background: inherit;
5081
+ }
5082
+ .arco-swipe-action-menu-action-info-text {
5083
+ white-space: nowrap;
5084
+ font-size: 0.32rem ;
5085
+ line-height: 0.44rem ;
5086
+ color: #ffffff ;
5087
+ }
5088
+ .arco-swipe-action-menu-action-info-icon {
5089
+ margin-right: 0.08rem ;
5090
+ height: 0.4rem ;
5091
+ width: 0.4rem ;
5092
+ color: #ffffff ;
5093
+ }
5094
+
4892
5095
  .arco-swipe-load {
4893
5096
  position: relative;
4894
5097
  display: inline-flex;