@tplc/wot 1.0.7 → 1.0.8

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 (518) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/components/common/AbortablePromise.ts +3 -11
  3. package/components/common/abstracts/_config.scss +1 -1
  4. package/components/common/abstracts/_function.scss +26 -13
  5. package/components/common/abstracts/_mixin.scss +117 -71
  6. package/components/common/abstracts/variable.scss +325 -697
  7. package/components/common/base64.ts +1 -2
  8. package/components/common/canvasHelper.ts +1 -1
  9. package/components/common/interceptor.ts +43 -0
  10. package/components/common/props.ts +8 -8
  11. package/components/common/util.ts +145 -60
  12. package/components/composables/index.ts +11 -0
  13. package/components/composables/useChildren.ts +9 -18
  14. package/components/composables/useCountDown.ts +2 -2
  15. package/components/composables/useLockScroll.ts +1 -3
  16. package/components/composables/useParent.ts +4 -4
  17. package/components/composables/usePopover.ts +43 -60
  18. package/components/composables/useQueue.ts +2 -2
  19. package/components/composables/useTouch.ts +2 -3
  20. package/components/composables/useTranslate.ts +2 -13
  21. package/components/composables/useUpload.ts +389 -0
  22. package/components/wd-action-sheet/index.scss +22 -22
  23. package/components/wd-action-sheet/types.ts +11 -21
  24. package/components/wd-action-sheet/wd-action-sheet.vue +21 -40
  25. package/components/wd-backtop/index.scss +5 -5
  26. package/components/wd-backtop/types.ts +3 -15
  27. package/components/wd-backtop/wd-backtop.vue +12 -20
  28. package/components/wd-badge/index.scss +14 -10
  29. package/components/wd-badge/types.ts +6 -9
  30. package/components/wd-badge/wd-badge.vue +29 -37
  31. package/components/wd-button/index.scss +76 -80
  32. package/components/wd-button/types.ts +43 -13
  33. package/components/wd-button/wd-button.vue +41 -22
  34. package/components/wd-calendar/index.scss +58 -145
  35. package/components/wd-calendar/types.ts +23 -41
  36. package/components/wd-calendar/wd-calendar.vue +123 -130
  37. package/components/wd-calendar-view/month/index.scss +33 -65
  38. package/components/wd-calendar-view/month/month.vue +80 -113
  39. package/components/wd-calendar-view/month/types.ts +2 -1
  40. package/components/wd-calendar-view/monthPanel/index.scss +15 -15
  41. package/components/wd-calendar-view/monthPanel/month-panel.vue +64 -78
  42. package/components/wd-calendar-view/monthPanel/types.ts +58 -10
  43. package/components/wd-calendar-view/types.ts +12 -36
  44. package/components/wd-calendar-view/utils.ts +14 -36
  45. package/components/wd-calendar-view/wd-calendar-view.vue +7 -7
  46. package/components/wd-calendar-view/year/index.scss +18 -13
  47. package/components/wd-calendar-view/year/types.ts +2 -1
  48. package/components/wd-calendar-view/year/year.vue +25 -43
  49. package/components/wd-calendar-view/yearPanel/index.scss +4 -4
  50. package/components/wd-calendar-view/yearPanel/types.ts +2 -2
  51. package/components/wd-calendar-view/yearPanel/year-panel.vue +36 -41
  52. package/components/wd-card/index.scss +11 -10
  53. package/components/wd-card/types.ts +1 -1
  54. package/components/wd-card/wd-card.vue +6 -9
  55. package/components/wd-cell/index.scss +56 -41
  56. package/components/wd-cell/types.ts +23 -8
  57. package/components/wd-cell/wd-cell.vue +48 -18
  58. package/components/wd-cell-group/index.scss +8 -7
  59. package/components/wd-cell-group/types.ts +1 -1
  60. package/components/wd-cell-group/wd-cell-group.vue +5 -5
  61. package/components/wd-checkbox/index.scss +35 -35
  62. package/components/wd-checkbox/types.ts +6 -6
  63. package/components/wd-checkbox/wd-checkbox.vue +12 -20
  64. package/components/wd-checkbox-group/index.scss +4 -4
  65. package/components/wd-checkbox-group/types.ts +2 -2
  66. package/components/wd-checkbox-group/wd-checkbox-group.vue +9 -12
  67. package/components/wd-circle/index.scss +5 -5
  68. package/components/wd-circle/types.ts +2 -2
  69. package/components/wd-circle/wd-circle.vue +18 -40
  70. package/components/wd-col/index.scss +2 -2
  71. package/components/wd-col/types.ts +1 -1
  72. package/components/wd-col/wd-col.vue +11 -53
  73. package/components/wd-col-picker/index.scss +41 -115
  74. package/components/wd-col-picker/types.ts +10 -14
  75. package/components/wd-col-picker/wd-col-picker.vue +103 -155
  76. package/components/wd-collapse/index.scss +7 -13
  77. package/components/wd-collapse/types.ts +4 -10
  78. package/components/wd-collapse/wd-collapse.vue +22 -55
  79. package/components/wd-collapse-item/index.scss +16 -5
  80. package/components/wd-collapse-item/types.ts +14 -2
  81. package/components/wd-collapse-item/wd-collapse-item.vue +70 -81
  82. package/components/wd-config-provider/types.ts +69 -40
  83. package/components/wd-config-provider/wd-config-provider.vue +11 -11
  84. package/components/wd-count-down/index.scss +3 -2
  85. package/components/wd-count-down/types.ts +1 -1
  86. package/components/wd-count-down/wd-count-down.vue +5 -5
  87. package/components/wd-count-to/index.scss +2 -1
  88. package/components/wd-count-to/types.ts +10 -3
  89. package/components/wd-count-to/wd-count-to.vue +9 -18
  90. package/components/wd-curtain/index.scss +28 -23
  91. package/components/wd-curtain/types.ts +46 -9
  92. package/components/wd-curtain/wd-curtain.vue +45 -47
  93. package/components/wd-datetime-picker/index.scss +65 -145
  94. package/components/wd-datetime-picker/types.ts +41 -31
  95. package/components/wd-datetime-picker/wd-datetime-picker.vue +307 -333
  96. package/components/wd-datetime-picker-view/types.ts +29 -46
  97. package/components/wd-datetime-picker-view/util.ts +30 -0
  98. package/components/wd-datetime-picker-view/wd-datetime-picker-view.vue +104 -119
  99. package/components/wd-divider/index.scss +78 -10
  100. package/components/wd-divider/types.ts +26 -3
  101. package/components/wd-divider/wd-divider.vue +33 -10
  102. package/components/wd-drop-menu/index.scss +17 -45
  103. package/components/wd-drop-menu/types.ts +3 -3
  104. package/components/wd-drop-menu/wd-drop-menu.vue +61 -25
  105. package/components/wd-drop-menu-item/index.scss +15 -15
  106. package/components/wd-drop-menu-item/types.ts +18 -15
  107. package/components/wd-drop-menu-item/wd-drop-menu-item.vue +33 -54
  108. package/components/wd-fab/index.scss +13 -12
  109. package/components/wd-fab/types.ts +9 -4
  110. package/components/wd-fab/wd-fab.vue +70 -51
  111. package/components/wd-floating-panel/index.scss +64 -0
  112. package/components/wd-floating-panel/type.ts +32 -0
  113. package/components/wd-floating-panel/wd-floating-panel.vue +140 -0
  114. package/components/wd-form/types.ts +8 -16
  115. package/components/wd-form/wd-form.vue +67 -45
  116. package/components/wd-form-item/index.scss +3 -2
  117. package/components/wd-form-item/types.ts +2 -8
  118. package/components/wd-form-item/wd-form-item.vue +3 -3
  119. package/components/wd-grid/index.scss +2 -2
  120. package/components/wd-grid/types.ts +5 -0
  121. package/components/wd-grid/wd-grid.vue +11 -12
  122. package/components/wd-grid-item/index.scss +44 -33
  123. package/components/wd-grid-item/types.ts +7 -4
  124. package/components/wd-grid-item/wd-grid-item.vue +39 -44
  125. package/components/wd-icon/index.scss +311 -303
  126. package/components/wd-icon/types.ts +3 -3
  127. package/components/wd-icon/wd-icon.vue +6 -6
  128. package/components/wd-img/types.ts +1 -1
  129. package/components/wd-img/wd-img.vue +12 -4
  130. package/components/wd-img-cropper/index.scss +43 -39
  131. package/components/wd-img-cropper/types.ts +6 -8
  132. package/components/wd-img-cropper/wd-img-cropper.vue +132 -127
  133. package/components/wd-index-anchor/index.scss +7 -6
  134. package/components/wd-index-anchor/type.ts +2 -2
  135. package/components/wd-index-anchor/wd-index-anchor.vue +3 -9
  136. package/components/wd-index-bar/index.scss +5 -5
  137. package/components/wd-index-bar/type.ts +3 -2
  138. package/components/wd-index-bar/wd-index-bar.vue +15 -51
  139. package/components/wd-input/index.scss +44 -33
  140. package/components/wd-input/types.ts +40 -19
  141. package/components/wd-input/wd-input.vue +58 -42
  142. package/components/wd-input-number/index.scss +23 -31
  143. package/components/wd-input-number/types.ts +42 -14
  144. package/components/wd-input-number/wd-input-number.vue +374 -141
  145. package/components/wd-keyboard/constants.ts +81 -0
  146. package/components/wd-keyboard/index.scss +102 -0
  147. package/components/wd-keyboard/key/index.scss +79 -0
  148. package/components/wd-keyboard/key/index.vue +71 -0
  149. package/components/wd-keyboard/key/types.ts +11 -0
  150. package/components/wd-keyboard/types.ts +92 -0
  151. package/components/wd-keyboard/wd-keyboard.vue +206 -0
  152. package/components/wd-loading/index.scss +9 -6
  153. package/components/wd-loading/types.ts +1 -1
  154. package/components/wd-loading/wd-loading.vue +9 -9
  155. package/components/wd-loadmore/index.scss +5 -5
  156. package/components/wd-loadmore/types.ts +8 -2
  157. package/components/wd-loadmore/wd-loadmore.vue +28 -13
  158. package/components/wd-message-box/index.scss +21 -34
  159. package/components/wd-message-box/index.ts +30 -29
  160. package/components/wd-message-box/types.ts +33 -8
  161. package/components/wd-message-box/wd-message-box.vue +130 -152
  162. package/components/wd-navbar/index.scss +14 -24
  163. package/components/wd-navbar/types.ts +1 -1
  164. package/components/wd-navbar/wd-navbar.vue +14 -45
  165. package/components/wd-navbar-capsule/index.scss +16 -15
  166. package/components/wd-navbar-capsule/types.ts +8 -0
  167. package/components/wd-navbar-capsule/wd-navbar-capsule.vue +8 -4
  168. package/components/wd-notice-bar/index.scss +15 -33
  169. package/components/wd-notice-bar/types.ts +14 -3
  170. package/components/wd-notice-bar/wd-notice-bar.vue +109 -66
  171. package/components/wd-notify/index.scss +5 -5
  172. package/components/wd-notify/index.ts +17 -15
  173. package/components/wd-notify/types.ts +4 -0
  174. package/components/wd-notify/wd-notify.vue +21 -19
  175. package/components/wd-number-keyboard/index.scss +10 -10
  176. package/components/wd-number-keyboard/key/index.scss +7 -5
  177. package/components/wd-number-keyboard/key/index.vue +6 -9
  178. package/components/wd-number-keyboard/key/types.ts +1 -1
  179. package/components/wd-number-keyboard/types.ts +4 -0
  180. package/components/wd-number-keyboard/wd-number-keyboard.vue +22 -44
  181. package/components/wd-overlay/index.scss +3 -3
  182. package/components/wd-overlay/types.ts +2 -2
  183. package/components/wd-overlay/wd-overlay.vue +7 -15
  184. package/components/wd-pagination/index.scss +17 -17
  185. package/components/wd-pagination/types.ts +1 -1
  186. package/components/wd-pagination/wd-pagination.vue +10 -21
  187. package/components/wd-password-input/index.scss +7 -6
  188. package/components/wd-password-input/types.ts +2 -8
  189. package/components/wd-password-input/wd-password-input.vue +6 -15
  190. package/components/wd-picker/index.scss +46 -153
  191. package/components/wd-picker/types.ts +22 -19
  192. package/components/wd-picker/wd-picker.vue +89 -86
  193. package/components/wd-picker-view/index.scss +13 -12
  194. package/components/wd-picker-view/types.ts +16 -26
  195. package/components/wd-picker-view/wd-picker-view.vue +32 -24
  196. package/components/wd-popover/index.scss +29 -36
  197. package/components/wd-popover/types.ts +1 -1
  198. package/components/wd-popover/wd-popover.vue +20 -56
  199. package/components/wd-popup/index.scss +47 -75
  200. package/components/wd-popup/types.ts +40 -4
  201. package/components/wd-popup/wd-popup.vue +100 -157
  202. package/components/wd-progress/index.scss +20 -14
  203. package/components/wd-progress/types.ts +10 -6
  204. package/components/wd-progress/wd-progress.vue +137 -141
  205. package/components/wd-radio/index.scss +54 -53
  206. package/components/wd-radio/types.ts +15 -6
  207. package/components/wd-radio/wd-radio.vue +41 -59
  208. package/components/wd-radio-group/index.scss +5 -5
  209. package/components/wd-radio-group/types.ts +4 -1
  210. package/components/wd-radio-group/wd-radio-group.vue +6 -9
  211. package/components/wd-rate/index.scss +1 -1
  212. package/components/wd-rate/types.ts +10 -5
  213. package/components/wd-rate/wd-rate.vue +35 -17
  214. package/components/wd-resize/index.scss +2 -1
  215. package/components/wd-resize/types.ts +1 -1
  216. package/components/wd-resize/wd-resize.vue +11 -22
  217. package/components/wd-root-portal/wd-root-portal.vue +50 -0
  218. package/components/wd-row/index.scss +1 -1
  219. package/components/wd-row/types.ts +1 -1
  220. package/components/wd-row/wd-row.vue +14 -35
  221. package/components/wd-search/index.scss +29 -29
  222. package/components/wd-search/types.ts +22 -3
  223. package/components/wd-search/wd-search.vue +70 -120
  224. package/components/wd-segmented/index.scss +19 -15
  225. package/components/wd-segmented/types.ts +16 -4
  226. package/components/wd-segmented/wd-segmented.vue +34 -34
  227. package/components/wd-select-picker/index.scss +55 -122
  228. package/components/wd-select-picker/types.ts +29 -36
  229. package/components/wd-select-picker/wd-select-picker.vue +128 -274
  230. package/components/wd-sidebar/index.scss +5 -5
  231. package/components/wd-sidebar/types.ts +22 -3
  232. package/components/wd-sidebar/wd-sidebar.vue +26 -4
  233. package/components/wd-sidebar-item/index.scss +17 -13
  234. package/components/wd-sidebar-item/types.ts +3 -3
  235. package/components/wd-sidebar-item/wd-sidebar-item.vue +12 -10
  236. package/components/wd-signature/index.scss +31 -0
  237. package/components/wd-signature/types.ts +263 -0
  238. package/components/wd-signature/wd-signature.vue +630 -0
  239. package/components/wd-skeleton/index.scss +8 -13
  240. package/components/wd-skeleton/types.ts +6 -6
  241. package/components/wd-skeleton/wd-skeleton.vue +15 -31
  242. package/components/wd-slider/index.scss +24 -17
  243. package/components/wd-slider/types.ts +45 -17
  244. package/components/wd-slider/wd-slider.vue +275 -297
  245. package/components/wd-sort-button/index.scss +10 -7
  246. package/components/wd-sort-button/types.ts +1 -1
  247. package/components/wd-sort-button/wd-sort-button.vue +7 -14
  248. package/components/wd-status-tip/index.scss +8 -8
  249. package/components/wd-status-tip/types.ts +8 -2
  250. package/components/wd-status-tip/wd-status-tip.vue +14 -37
  251. package/components/wd-step/index.scss +29 -30
  252. package/components/wd-step/types.ts +1 -1
  253. package/components/wd-step/wd-step.vue +8 -9
  254. package/components/wd-steps/index.scss +1 -1
  255. package/components/wd-steps/types.ts +1 -1
  256. package/components/wd-steps/wd-steps.vue +5 -5
  257. package/components/wd-sticky/index.scss +1 -1
  258. package/components/wd-sticky/types.ts +1 -1
  259. package/components/wd-sticky/wd-sticky.vue +21 -29
  260. package/components/wd-sticky-box/index.scss +1 -1
  261. package/components/wd-sticky-box/wd-sticky-box.vue +7 -6
  262. package/components/wd-swipe-action/index.scss +1 -1
  263. package/components/wd-swipe-action/types.ts +2 -5
  264. package/components/wd-swipe-action/wd-swipe-action.vue +9 -22
  265. package/components/wd-swiper-nav/index.scss +22 -16
  266. package/components/wd-swiper-nav/types.ts +1 -9
  267. package/components/wd-swiper-nav/wd-swiper-nav.vue +2 -5
  268. package/components/wd-switch/index.scss +15 -15
  269. package/components/wd-switch/types.ts +8 -6
  270. package/components/wd-switch/wd-switch.vue +15 -15
  271. package/components/wd-tab/index.scss +11 -3
  272. package/components/wd-tab/types.ts +11 -1
  273. package/components/wd-tab/wd-tab.vue +28 -36
  274. package/components/wd-tabbar/index.scss +12 -7
  275. package/components/wd-tabbar/types.ts +3 -18
  276. package/components/wd-tabbar/wd-tabbar.vue +10 -23
  277. package/components/wd-tabbar-item/index.scss +15 -12
  278. package/components/wd-tabbar-item/types.ts +3 -3
  279. package/components/wd-tabbar-item/wd-tabbar-item.vue +11 -13
  280. package/components/wd-table/index.scss +40 -9
  281. package/components/wd-table/types.ts +13 -15
  282. package/components/wd-table/wd-table.vue +123 -94
  283. package/components/wd-table-col/index.scss +6 -4
  284. package/components/wd-table-col/types.ts +1 -1
  285. package/components/wd-table-col/wd-table-col.vue +12 -12
  286. package/components/wd-tag/index.scss +19 -19
  287. package/components/wd-tag/types.ts +1 -1
  288. package/components/wd-tag/wd-tag.vue +14 -20
  289. package/components/wd-text/index.scss +4 -1
  290. package/components/wd-text/types.ts +4 -4
  291. package/components/wd-text/wd-text.vue +12 -11
  292. package/components/wd-textarea/index.scss +51 -41
  293. package/components/wd-textarea/types.ts +24 -34
  294. package/components/wd-textarea/wd-textarea.vue +59 -66
  295. package/components/wd-toast/index.scss +31 -18
  296. package/components/wd-toast/index.ts +26 -43
  297. package/components/wd-toast/types.ts +117 -3
  298. package/components/wd-toast/wd-toast.vue +49 -69
  299. package/components/wd-tooltip/index.scss +21 -16
  300. package/components/wd-tooltip/types.ts +8 -3
  301. package/components/wd-tooltip/wd-tooltip.vue +17 -43
  302. package/components/wd-tour/index.scss +123 -0
  303. package/components/wd-tour/types.ts +153 -0
  304. package/components/wd-tour/wd-tour.vue +509 -0
  305. package/components/wd-transition/index.scss +39 -35
  306. package/components/wd-transition/types.ts +27 -9
  307. package/components/wd-transition/wd-transition.vue +45 -34
  308. package/components/wd-upload/index.scss +23 -21
  309. package/components/wd-upload/types.ts +43 -30
  310. package/components/wd-upload/wd-upload.vue +183 -247
  311. package/components/wd-video-preview/index.scss +9 -9
  312. package/components/wd-video-preview/types.ts +1 -1
  313. package/components/wd-video-preview/wd-video-preview.vue +18 -22
  314. package/components/wd-watermark/index.scss +7 -7
  315. package/components/wd-watermark/types.ts +2 -8
  316. package/components/wd-watermark/wd-watermark.vue +38 -135
  317. package/dayjs/constant.js +26 -0
  318. package/dayjs/index.d.ts +430 -0
  319. package/dayjs/index.js +542 -0
  320. package/dayjs/locale/en.js +13 -0
  321. package/dayjs/utils.js +59 -0
  322. package/global.d.ts +97 -91
  323. package/index.ts +2 -10
  324. package/locale/index.ts +3 -15
  325. package/locale/lang/ar-SA.ts +133 -0
  326. package/locale/lang/de-DE.ts +133 -0
  327. package/locale/lang/en-US.ts +31 -26
  328. package/locale/lang/es-ES.ts +133 -0
  329. package/locale/lang/fr-FR.ts +133 -0
  330. package/locale/lang/ja-JP.ts +133 -0
  331. package/locale/lang/ko-KR.ts +133 -0
  332. package/locale/lang/pt-PT.ts +133 -0
  333. package/locale/lang/ru-RU.ts +133 -0
  334. package/locale/lang/th-TH.ts +28 -22
  335. package/locale/lang/tr-TR.ts +138 -0
  336. package/locale/lang/ug-CN.ts +137 -0
  337. package/locale/lang/vi-VN.ts +27 -30
  338. package/locale/lang/zh-CN.ts +32 -22
  339. package/locale/lang/zh-HK.ts +18 -31
  340. package/locale/lang/zh-TW.ts +22 -31
  341. package/package.json +1 -1
  342. package/types/components/common/interceptor.d.ts +15 -0
  343. package/types/components/common/util.d.ts +61 -1
  344. package/types/components/composables/useCell.d.ts +1 -1
  345. package/types/components/composables/useLockScroll.d.ts +1 -2
  346. package/types/components/composables/useParent.d.ts +1 -1
  347. package/types/components/composables/usePopover.d.ts +2 -2
  348. package/types/components/composables/useUpload.d.ts +41 -0
  349. package/types/components/wd-action-sheet/types.d.ts +13 -4
  350. package/types/components/wd-action-sheet/wd-action-sheet.vue.d.ts +20 -11
  351. package/types/components/wd-backtop/types.d.ts +1 -9
  352. package/types/components/wd-backtop/wd-backtop.vue.d.ts +6 -25
  353. package/types/components/wd-badge/types.d.ts +3 -6
  354. package/types/components/wd-badge/wd-badge.vue.d.ts +7 -14
  355. package/types/components/wd-button/types.d.ts +44 -8
  356. package/types/components/wd-button/wd-button.vue.d.ts +13 -9
  357. package/types/components/wd-calendar/types.d.ts +24 -18
  358. package/types/components/wd-calendar/wd-calendar.vue.d.ts +48 -32
  359. package/types/components/wd-calendar-view/month/month.vue.d.ts +11 -3
  360. package/types/components/wd-calendar-view/month/types.d.ts +4 -0
  361. package/types/components/wd-calendar-view/monthPanel/month-panel.vue.d.ts +18 -12
  362. package/types/components/wd-calendar-view/monthPanel/types.d.ts +48 -6
  363. package/types/components/wd-calendar-view/types.d.ts +11 -4
  364. package/types/components/wd-calendar-view/utils.d.ts +3 -12
  365. package/types/components/wd-calendar-view/wd-calendar-view.vue.d.ts +1 -1
  366. package/types/components/wd-calendar-view/year/types.d.ts +4 -0
  367. package/types/components/wd-calendar-view/year/year.vue.d.ts +11 -3
  368. package/types/components/wd-cell/types.d.ts +37 -1
  369. package/types/components/wd-cell/wd-cell.vue.d.ts +53 -9
  370. package/types/components/wd-checkbox/wd-checkbox.vue.d.ts +2 -2
  371. package/types/components/wd-checkbox-group/wd-checkbox-group.vue.d.ts +2 -2
  372. package/types/components/wd-circle/wd-circle.vue.d.ts +3 -3
  373. package/types/components/wd-col-picker/types.d.ts +14 -0
  374. package/types/components/wd-col-picker/wd-col-picker.vue.d.ts +36 -19
  375. package/types/components/wd-collapse/types.d.ts +1 -5
  376. package/types/components/wd-collapse/wd-collapse.vue.d.ts +3 -11
  377. package/types/components/wd-collapse-item/types.d.ts +19 -1
  378. package/types/components/wd-collapse-item/wd-collapse-item.vue.d.ts +20 -1
  379. package/types/components/wd-config-provider/types.d.ts +64 -7
  380. package/types/components/wd-config-provider/wd-config-provider.vue.d.ts +1 -1
  381. package/types/components/wd-count-to/types.d.ts +11 -0
  382. package/types/components/wd-count-to/wd-count-to.vue.d.ts +13 -4
  383. package/types/components/wd-curtain/types.d.ts +56 -0
  384. package/types/components/wd-curtain/wd-curtain.vue.d.ts +152 -77
  385. package/types/components/wd-datetime-picker/types.d.ts +49 -15
  386. package/types/components/wd-datetime-picker/wd-datetime-picker.vue.d.ts +75 -38
  387. package/types/components/wd-datetime-picker-view/types.d.ts +36 -14
  388. package/types/components/wd-datetime-picker-view/util.d.ts +12 -0
  389. package/types/components/wd-datetime-picker-view/wd-datetime-picker-view.vue.d.ts +35 -9
  390. package/types/components/wd-divider/types.d.ts +32 -4
  391. package/types/components/wd-divider/wd-divider.vue.d.ts +30 -7
  392. package/types/components/wd-drop-menu/types.d.ts +3 -3
  393. package/types/components/wd-drop-menu/wd-drop-menu.vue.d.ts +8 -8
  394. package/types/components/wd-drop-menu-item/types.d.ts +27 -15
  395. package/types/components/wd-drop-menu-item/wd-drop-menu-item.vue.d.ts +47 -36
  396. package/types/components/wd-fab/types.d.ts +19 -3
  397. package/types/components/wd-fab/wd-fab.vue.d.ts +13 -1
  398. package/types/components/wd-floating-panel/type.d.ts +54 -0
  399. package/types/components/wd-floating-panel/wd-floating-panel.vue.d.ts +109 -0
  400. package/types/components/wd-form/types.d.ts +1 -1
  401. package/types/components/wd-form/wd-form.vue.d.ts +2 -2
  402. package/types/components/wd-form-item/wd-form-item.vue.d.ts +2 -2
  403. package/types/components/wd-grid/types.d.ts +5 -0
  404. package/types/components/wd-grid/wd-grid.vue.d.ts +2 -0
  405. package/types/components/wd-grid-item/types.d.ts +4 -1
  406. package/types/components/wd-grid-item/wd-grid-item.vue.d.ts +3 -3
  407. package/types/components/wd-icon/types.d.ts +1 -1
  408. package/types/components/wd-icon/wd-icon.vue.d.ts +3 -3
  409. package/types/components/wd-img/types.d.ts +4 -1
  410. package/types/components/wd-img/wd-img.vue.d.ts +11 -4
  411. package/types/components/wd-img-cropper/types.d.ts +7 -0
  412. package/types/components/wd-img-cropper/wd-img-cropper.vue.d.ts +12 -3
  413. package/types/components/wd-index-bar/type.d.ts +2 -1
  414. package/types/components/wd-index-bar/wd-index-bar.vue.d.ts +1 -5
  415. package/types/components/wd-input/types.d.ts +53 -37
  416. package/types/components/wd-input/wd-input.vue.d.ts +50 -52
  417. package/types/components/wd-input-number/types.d.ts +51 -6
  418. package/types/components/wd-input-number/wd-input-number.vue.d.ts +152 -125
  419. package/types/components/wd-keyboard/constants.d.ts +8 -0
  420. package/types/components/wd-keyboard/key/index.vue.d.ts +70 -0
  421. package/types/components/wd-keyboard/key/types.d.ts +23 -0
  422. package/types/components/wd-keyboard/types.d.ts +137 -0
  423. package/types/components/wd-keyboard/wd-keyboard.vue.d.ts +200 -0
  424. package/types/components/wd-loading/wd-loading.vue.d.ts +2 -2
  425. package/types/components/wd-loadmore/types.d.ts +7 -4
  426. package/types/components/wd-loadmore/wd-loadmore.vue.d.ts +5 -9
  427. package/types/components/wd-message-box/index.d.ts +3 -8
  428. package/types/components/wd-message-box/types.d.ts +36 -5
  429. package/types/components/wd-message-box/wd-message-box.vue.d.ts +18 -2
  430. package/types/components/wd-navbar/wd-navbar.vue.d.ts +3 -3
  431. package/types/components/wd-navbar-capsule/types.d.ts +12 -0
  432. package/types/components/wd-navbar-capsule/wd-navbar-capsule.vue.d.ts +27 -4
  433. package/types/components/wd-notice-bar/types.d.ts +9 -1
  434. package/types/components/wd-notice-bar/wd-notice-bar.vue.d.ts +7 -5
  435. package/types/components/wd-notify/types.d.ts +7 -0
  436. package/types/components/wd-notify/wd-notify.vue.d.ts +13 -4
  437. package/types/components/wd-number-keyboard/types.d.ts +7 -0
  438. package/types/components/wd-number-keyboard/wd-number-keyboard.vue.d.ts +18 -9
  439. package/types/components/wd-overlay/wd-overlay.vue.d.ts +2 -2
  440. package/types/components/wd-pagination/wd-pagination.vue.d.ts +1 -1
  441. package/types/components/wd-password-input/wd-password-input.vue.d.ts +2 -2
  442. package/types/components/wd-picker/types.d.ts +28 -2
  443. package/types/components/wd-picker/wd-picker.vue.d.ts +55 -19
  444. package/types/components/wd-picker-view/types.d.ts +10 -0
  445. package/types/components/wd-picker-view/wd-picker-view.vue.d.ts +15 -3
  446. package/types/components/wd-popover/wd-popover.vue.d.ts +4 -4
  447. package/types/components/wd-popup/types.d.ts +44 -5
  448. package/types/components/wd-popup/wd-popup.vue.d.ts +35 -24
  449. package/types/components/wd-progress/types.d.ts +6 -3
  450. package/types/components/wd-progress/wd-progress.vue.d.ts +4 -6
  451. package/types/components/wd-qr-code/uqrcode.vue.d.ts +3 -3
  452. package/types/components/wd-qr-code/wd-qr-code.vue.d.ts +4 -4
  453. package/types/components/wd-radio/types.d.ts +8 -0
  454. package/types/components/wd-radio/wd-radio.vue.d.ts +7 -0
  455. package/types/components/wd-radio-group/types.d.ts +7 -1
  456. package/types/components/wd-radio-group/wd-radio-group.vue.d.ts +11 -2
  457. package/types/components/wd-rate/types.d.ts +9 -0
  458. package/types/components/wd-rate/wd-rate.vue.d.ts +13 -4
  459. package/types/components/wd-root-portal/wd-root-portal.vue.d.ts +26 -0
  460. package/types/components/wd-search/types.d.ts +16 -1
  461. package/types/components/wd-search/wd-search.vue.d.ts +28 -8
  462. package/types/components/wd-segmented/types.d.ts +10 -1
  463. package/types/components/wd-segmented/wd-segmented.vue.d.ts +6 -4
  464. package/types/components/wd-select-picker/types.d.ts +37 -22
  465. package/types/components/wd-select-picker/wd-select-picker.vue.d.ts +59 -30
  466. package/types/components/wd-sidebar/types.d.ts +19 -3
  467. package/types/components/wd-sidebar/wd-sidebar.vue.d.ts +4 -2
  468. package/types/components/wd-signature/types.d.ts +252 -0
  469. package/types/components/wd-signature/wd-signature.vue.d.ts +229 -0
  470. package/types/components/wd-skeleton/types.d.ts +3 -4
  471. package/types/components/wd-skeleton/wd-skeleton.vue.d.ts +10 -10
  472. package/types/components/wd-slider/types.d.ts +39 -15
  473. package/types/components/wd-slider/wd-slider.vue.d.ts +12 -38
  474. package/types/components/wd-sort-button/wd-sort-button.vue.d.ts +3 -3
  475. package/types/components/wd-status-tip/types.d.ts +9 -0
  476. package/types/components/wd-status-tip/wd-status-tip.vue.d.ts +69 -49
  477. package/types/components/wd-steps/wd-steps.vue.d.ts +1 -1
  478. package/types/components/wd-sticky/wd-sticky.vue.d.ts +3 -7
  479. package/types/components/wd-swipe-action/wd-swipe-action.vue.d.ts +3 -3
  480. package/types/components/wd-swiper/wd-swiper.vue.d.ts +4 -4
  481. package/types/components/wd-swiper-nav/types.d.ts +0 -14
  482. package/types/components/wd-swiper-nav/wd-swiper-nav.vue.d.ts +0 -18
  483. package/types/components/wd-switch/types.d.ts +0 -1
  484. package/types/components/wd-switch/wd-switch.vue.d.ts +2 -5
  485. package/types/components/wd-tab/types.d.ts +16 -3
  486. package/types/components/wd-tab/wd-tab.vue.d.ts +12 -4
  487. package/types/components/wd-tabbar/types.d.ts +1 -1
  488. package/types/components/wd-tabbar/wd-tabbar.vue.d.ts +5 -5
  489. package/types/components/wd-tabbar-item/wd-tabbar-item.vue.d.ts +1 -1
  490. package/types/components/wd-table/types.d.ts +12 -8
  491. package/types/components/wd-table/wd-table.vue.d.ts +16 -13
  492. package/types/components/wd-table-col/wd-table-col.vue.d.ts +1 -1
  493. package/types/components/wd-tabs/wd-tabs.vue.d.ts +7 -7
  494. package/types/components/wd-tag/wd-tag.vue.d.ts +4 -4
  495. package/types/components/wd-text/types.d.ts +2 -2
  496. package/types/components/wd-text/wd-text.vue.d.ts +7 -7
  497. package/types/components/wd-textarea/types.d.ts +41 -39
  498. package/types/components/wd-textarea/wd-textarea.vue.d.ts +46 -46
  499. package/types/components/wd-toast/index.d.ts +1 -6
  500. package/types/components/wd-toast/types.d.ts +127 -5
  501. package/types/components/wd-toast/wd-toast.vue.d.ts +101 -0
  502. package/types/components/wd-tooltip/types.d.ts +1 -1
  503. package/types/components/wd-tooltip/wd-tooltip.vue.d.ts +7 -7
  504. package/types/components/wd-tour/types.d.ts +194 -0
  505. package/types/components/wd-tour/wd-tour.vue.d.ts +267 -0
  506. package/types/components/wd-transition/types.d.ts +22 -7
  507. package/types/components/wd-transition/wd-transition.vue.d.ts +33 -20
  508. package/types/components/wd-upload/types.d.ts +39 -10
  509. package/types/components/wd-upload/wd-upload.vue.d.ts +42 -16
  510. package/types/components/wd-watermark/wd-watermark.vue.d.ts +7 -7
  511. package/types/locale/index.d.ts +0 -3
  512. package/types/locale/lang/zh-CN.d.ts +9 -0
  513. package/components/wd-datetime-picker-view/index.scss +0 -0
  514. package/components/wd-form/index.scss +0 -10
  515. package/components/wd-upload/utils.ts +0 -152
  516. package/types/components/common/dayjs.d.ts +0 -26
  517. package/types/components/wd-upload/utils.d.ts +0 -11
  518. package/types/locale/lang/en-US.d.ts +0 -128
@@ -3,20 +3,22 @@
3
3
 
4
4
  @font-face {
5
5
  font-family: 'wd-icons';
6
- font-style: normal;
7
- font-weight: normal;
8
- src:
9
- url('https://at.alicdn.com/t/c/font_4245058_s5cpwl25n7o.woff2?t=1696817709651') format('woff2'),
6
+ src: url('https://at.alicdn.com/t/c/font_4245058_s5cpwl25n7o.woff2?t=1696817709651') format('woff2'),
10
7
  url('https://at.alicdn.com/t/c/font_4245058_s5cpwl25n7o.woff?t=1696817709651') format('woff'),
11
8
  url('https://at.alicdn.com/t/c/font_4245058_s5cpwl25n7o.ttf?t=1696817709651') format('truetype');
9
+ font-weight: normal;
10
+ font-style: normal;
12
11
  }
13
- /* #ifdef APP-PLUS */
12
+
13
+ /* #ifdef APP-PLUS || H5 */
14
14
  @font-face {
15
15
  font-family: 'wd-icons';
16
- font-style: normal;
16
+ src:
17
+ url('./wd-icons.ttf') format('truetype');
17
18
  font-weight: normal;
18
- src: url('./wd-icons.ttf') format('truetype');
19
+ font-style: normal;
19
20
  }
21
+
20
22
  /* #endif */
21
23
 
22
24
  @include b(icon) {
@@ -30,6 +32,10 @@
30
32
  -webkit-font-smoothing: antialiased;
31
33
  -moz-osx-font-smoothing: grayscale;
32
34
 
35
+ &::before {
36
+ display: inline-block;
37
+ }
38
+
33
39
  @include m(image) {
34
40
  width: 1em;
35
41
  height: 1em;
@@ -41,1182 +47,1184 @@
41
47
  }
42
48
  }
43
49
 
50
+
51
+
44
52
  .wd-icon-usergroup-clear:before {
45
- content: '\e739';
53
+ content: "\e739";
46
54
  }
47
55
 
48
56
  .wd-icon-user-circle:before {
49
- content: '\e73a';
57
+ content: "\e73a";
50
58
  }
51
59
 
52
60
  .wd-icon-user-talk:before {
53
- content: '\e73b';
61
+ content: "\e73b";
54
62
  }
55
63
 
56
64
  .wd-icon-user-clear:before {
57
- content: '\e73c';
65
+ content: "\e73c";
58
66
  }
59
67
 
60
68
  .wd-icon-user:before {
61
- content: '\e73d';
69
+ content: "\e73d";
62
70
  }
63
71
 
64
72
  .wd-icon-usergroup-add:before {
65
- content: '\e73e';
73
+ content: "\e73e";
66
74
  }
67
75
 
68
76
  .wd-icon-usergroup:before {
69
- content: '\e73f';
77
+ content: "\e73f";
70
78
  }
71
79
 
72
80
  .wd-icon-user-add:before {
73
- content: '\e740';
81
+ content: "\e740";
74
82
  }
75
83
 
76
84
  .wd-icon-user-avatar:before {
77
- content: '\e741';
85
+ content: "\e741";
78
86
  }
79
87
 
80
88
  .wd-icon-pointing-hand:before {
81
- content: '\e742';
89
+ content: "\e742";
82
90
  }
83
91
 
84
92
  .wd-icon-cursor:before {
85
- content: '\e743';
93
+ content: "\e743";
86
94
  }
87
95
 
88
96
  .wd-icon-fullsreen:before {
89
- content: '\e72c';
97
+ content: "\e72c";
90
98
  }
91
99
 
92
100
  .wd-icon-cloud-download:before {
93
- content: '\e72d';
101
+ content: "\e72d";
94
102
  }
95
103
 
96
104
  .wd-icon-chevron-down-rectangle:before {
97
- content: '\e72e';
105
+ content: "\e72e";
98
106
  }
99
107
 
100
108
  .wd-icon-edit:before {
101
- content: '\e72f';
109
+ content: "\e72f";
102
110
  }
103
111
 
104
112
  .wd-icon-fullscreen-exit:before {
105
- content: '\e730';
113
+ content: "\e730";
106
114
  }
107
115
 
108
116
  .wd-icon-circle1:before {
109
- content: '\e731';
117
+ content: "\e731";
110
118
  }
111
119
 
112
120
  .wd-icon-close-normal:before {
113
- content: '\e732';
121
+ content: "\e732";
114
122
  }
115
123
 
116
124
  .wd-icon-browse:before {
117
- content: '\e733';
125
+ content: "\e733";
118
126
  }
119
127
 
120
128
  .wd-icon-browse-off:before {
121
- content: '\e734';
129
+ content: "\e734";
122
130
  }
123
131
 
124
132
  .wd-icon-chevron-up-rectangle:before {
125
- content: '\e735';
133
+ content: "\e735";
126
134
  }
127
135
 
128
136
  .wd-icon-add-rectangle:before {
129
- content: '\e736';
137
+ content: "\e736";
130
138
  }
131
139
 
132
140
  .wd-icon-add1:before {
133
- content: '\e737';
141
+ content: "\e737";
134
142
  }
135
143
 
136
144
  .wd-icon-add-circle1:before {
137
- content: '\e738';
145
+ content: "\e738";
138
146
  }
139
147
 
140
148
  .wd-icon-download1:before {
141
- content: '\e71c';
149
+ content: "\e71c";
142
150
  }
143
151
 
144
152
  .wd-icon-link:before {
145
- content: '\e71d';
153
+ content: "\e71d";
146
154
  }
147
155
 
148
156
  .wd-icon-edit-1:before {
149
- content: '\e71e';
157
+ content: "\e71e";
150
158
  }
151
159
 
152
160
  .wd-icon-jump:before {
153
- content: '\e71f';
161
+ content: "\e71f";
154
162
  }
155
163
 
156
164
  .wd-icon-chevron-down-circle:before {
157
- content: '\e720';
165
+ content: "\e720";
158
166
  }
159
167
 
160
168
  .wd-icon-delete1:before {
161
- content: '\e721';
169
+ content: "\e721";
162
170
  }
163
171
 
164
172
  .wd-icon-filter-clear:before {
165
- content: '\e722';
173
+ content: "\e722";
166
174
  }
167
175
 
168
176
  .wd-icon-check-rectangle-filled:before {
169
- content: '\e723';
177
+ content: "\e723";
170
178
  }
171
179
 
172
180
  .wd-icon-minus-circle-filled:before {
173
- content: '\e724';
181
+ content: "\e724";
174
182
  }
175
183
 
176
184
  .wd-icon-play:before {
177
- content: '\e725';
185
+ content: "\e725";
178
186
  }
179
187
 
180
188
  .wd-icon-pause-circle-filled:before {
181
- content: '\e726';
189
+ content: "\e726";
182
190
  }
183
191
 
184
192
  .wd-icon-filter1:before {
185
- content: '\e727';
193
+ content: "\e727";
186
194
  }
187
195
 
188
196
  .wd-icon-move:before {
189
- content: '\e728';
197
+ content: "\e728";
190
198
  }
191
199
 
192
200
  .wd-icon-login:before {
193
- content: '\e729';
201
+ content: "\e729";
194
202
  }
195
203
 
196
204
  .wd-icon-minus-circle:before {
197
- content: '\e72a';
205
+ content: "\e72a";
198
206
  }
199
207
 
200
208
  .wd-icon-close-circle:before {
201
- content: '\e72b';
209
+ content: "\e72b";
202
210
  }
203
211
 
204
212
  .wd-icon-logout:before {
205
- content: '\e70b';
213
+ content: "\e70b";
206
214
  }
207
215
 
208
216
  .wd-icon-search1:before {
209
- content: '\e70c';
217
+ content: "\e70c";
210
218
  }
211
219
 
212
220
  .wd-icon-pause-circle:before {
213
- content: '\e70d';
221
+ content: "\e70d";
214
222
  }
215
223
 
216
224
  .wd-icon-play-circle:before {
217
- content: '\e70e';
225
+ content: "\e70e";
218
226
  }
219
227
 
220
228
  .wd-icon-more1:before {
221
- content: '\e70f';
229
+ content: "\e70f";
222
230
  }
223
231
 
224
232
  .wd-icon-minus-rectangle:before {
225
- content: '\e710';
233
+ content: "\e710";
226
234
  }
227
235
 
228
236
  .wd-icon-stop:before {
229
- content: '\e711';
237
+ content: "\e711";
230
238
  }
231
239
 
232
240
  .wd-icon-scan1:before {
233
- content: '\e712';
241
+ content: "\e712";
234
242
  }
235
243
 
236
244
  .wd-icon-close-rectangle:before {
237
- content: '\e713';
245
+ content: "\e713";
238
246
  }
239
247
 
240
248
  .wd-icon-rollback:before {
241
- content: '\e714';
249
+ content: "\e714";
242
250
  }
243
251
 
244
252
  .wd-icon-a-order-adjustmentcolumn:before {
245
- content: '\e715';
253
+ content: "\e715";
246
254
  }
247
255
 
248
256
  .wd-icon-pause:before {
249
- content: '\e716';
257
+ content: "\e716";
250
258
  }
251
259
 
252
260
  .wd-icon-ellipsis:before {
253
- content: '\e717';
261
+ content: "\e717";
254
262
  }
255
263
 
256
264
  .wd-icon-cloud-upload:before {
257
- content: '\e718';
265
+ content: "\e718";
258
266
  }
259
267
 
260
268
  .wd-icon-stop-circle-filled:before {
261
- content: '\e719';
269
+ content: "\e719";
262
270
  }
263
271
 
264
272
  .wd-icon-clear:before {
265
- content: '\e71a';
273
+ content: "\e71a";
266
274
  }
267
275
 
268
276
  .wd-icon-remove:before {
269
- content: '\e71b';
277
+ content: "\e71b";
270
278
  }
271
279
 
272
280
  .wd-icon-zoom-out:before {
273
- content: '\e6fb';
281
+ content: "\e6fb";
274
282
  }
275
283
 
276
284
  .wd-icon-thumb-down:before {
277
- content: '\e6fc';
285
+ content: "\e6fc";
278
286
  }
279
287
 
280
288
  .wd-icon-setting1:before {
281
- content: '\e6fd';
289
+ content: "\e6fd";
282
290
  }
283
291
 
284
292
  .wd-icon-save:before {
285
- content: '\e6fe';
293
+ content: "\e6fe";
286
294
  }
287
295
 
288
296
  .wd-icon-unfold-more:before {
289
- content: '\e6ff';
297
+ content: "\e6ff";
290
298
  }
291
299
 
292
300
  .wd-icon-zoom-in:before {
293
- content: '\e700';
301
+ content: "\e700";
294
302
  }
295
303
 
296
304
  .wd-icon-thumb-up:before {
297
- content: '\e701';
305
+ content: "\e701";
298
306
  }
299
307
 
300
308
  .wd-icon-unfold-less:before {
301
- content: '\e702';
309
+ content: "\e702";
302
310
  }
303
311
 
304
312
  .wd-icon-play-circle-filled:before {
305
- content: '\e703';
313
+ content: "\e703";
306
314
  }
307
315
 
308
316
  .wd-icon-poweroff:before {
309
- content: '\e704';
317
+ content: "\e704";
310
318
  }
311
319
 
312
320
  .wd-icon-share:before {
313
- content: '\e705';
321
+ content: "\e705";
314
322
  }
315
323
 
316
324
  .wd-icon-refresh1:before {
317
- content: '\e706';
325
+ content: "\e706";
318
326
  }
319
327
 
320
328
  .wd-icon-link-unlink:before {
321
- content: '\e707';
329
+ content: "\e707";
322
330
  }
323
331
 
324
332
  .wd-icon-upload:before {
325
- content: '\e708';
333
+ content: "\e708";
326
334
  }
327
335
 
328
336
  .wd-icon-rectangle:before {
329
- content: '\e709';
337
+ content: "\e709";
330
338
  }
331
339
 
332
340
  .wd-icon-stop-circle:before {
333
- content: '\e70a';
341
+ content: "\e70a";
334
342
  }
335
343
 
336
344
  .wd-icon-backtop-rectangle:before {
337
- content: '\e6ea';
345
+ content: "\e6ea";
338
346
  }
339
347
 
340
348
  .wd-icon-caret-down:before {
341
- content: '\e6eb';
349
+ content: "\e6eb";
342
350
  }
343
351
 
344
352
  .wd-icon-arrow-left1:before {
345
- content: '\e6ec';
353
+ content: "\e6ec";
346
354
  }
347
355
 
348
356
  .wd-icon-help-circle:before {
349
- content: '\e6ed';
357
+ content: "\e6ed";
350
358
  }
351
359
 
352
360
  .wd-icon-help-circle-filled:before {
353
- content: '\e6ee';
361
+ content: "\e6ee";
354
362
  }
355
363
 
356
364
  .wd-icon-time-filled:before {
357
- content: '\e6ef';
365
+ content: "\e6ef";
358
366
  }
359
367
 
360
368
  .wd-icon-close-circle-filled:before {
361
- content: '\e6f0';
369
+ content: "\e6f0";
362
370
  }
363
371
 
364
372
  .wd-icon-info-circle:before {
365
- content: '\e6f1';
373
+ content: "\e6f1";
366
374
  }
367
375
 
368
376
  .wd-icon-info-circle-filled:before {
369
- content: '\e6f2';
377
+ content: "\e6f2";
370
378
  }
371
379
 
372
380
  .wd-icon-check1:before {
373
- content: '\e6f3';
381
+ content: "\e6f3";
374
382
  }
375
383
 
376
384
  .wd-icon-help:before {
377
- content: '\e6f4';
385
+ content: "\e6f4";
378
386
  }
379
387
 
380
388
  .wd-icon-error:before {
381
- content: '\e6f5';
389
+ content: "\e6f5";
382
390
  }
383
391
 
384
392
  .wd-icon-check-circle:before {
385
- content: '\e6f6';
393
+ content: "\e6f6";
386
394
  }
387
395
 
388
396
  .wd-icon-error-circle-filled:before {
389
- content: '\e6f7';
397
+ content: "\e6f7";
390
398
  }
391
399
 
392
400
  .wd-icon-error-circle:before {
393
- content: '\e6f8';
401
+ content: "\e6f8";
394
402
  }
395
403
 
396
404
  .wd-icon-check-rectangle:before {
397
- content: '\e6f9';
405
+ content: "\e6f9";
398
406
  }
399
407
 
400
408
  .wd-icon-check-circle-filled:before {
401
- content: '\e6fa';
409
+ content: "\e6fa";
402
410
  }
403
411
 
404
412
  .wd-icon-chevron-up:before {
405
- content: '\e6da';
413
+ content: "\e6da";
406
414
  }
407
415
 
408
416
  .wd-icon-chevron-up-circle:before {
409
- content: '\e6db';
417
+ content: "\e6db";
410
418
  }
411
419
 
412
420
  .wd-icon-chevron-right:before {
413
- content: '\e6dc';
421
+ content: "\e6dc";
414
422
  }
415
423
 
416
424
  .wd-icon-arrow-down-rectangle:before {
417
- content: '\e6dd';
425
+ content: "\e6dd";
418
426
  }
419
427
 
420
428
  .wd-icon-caret-up-small:before {
421
- content: '\e6de';
429
+ content: "\e6de";
422
430
  }
423
431
 
424
432
  .wd-icon-chevron-right-rectangle:before {
425
- content: '\e6df';
433
+ content: "\e6df";
426
434
  }
427
435
 
428
436
  .wd-icon-caret-right-small:before {
429
- content: '\e6e0';
437
+ content: "\e6e0";
430
438
  }
431
439
 
432
440
  .wd-icon-arrow-right1:before {
433
- content: '\e6e1';
441
+ content: "\e6e1";
434
442
  }
435
443
 
436
444
  .wd-icon-backtop:before {
437
- content: '\e6e2';
445
+ content: "\e6e2";
438
446
  }
439
447
 
440
448
  .wd-icon-arrow-up1:before {
441
- content: '\e6e3';
449
+ content: "\e6e3";
442
450
  }
443
451
 
444
452
  .wd-icon-caret-up:before {
445
- content: '\e6e4';
453
+ content: "\e6e4";
446
454
  }
447
455
 
448
456
  .wd-icon-backward:before {
449
- content: '\e6e5';
457
+ content: "\e6e5";
450
458
  }
451
459
 
452
460
  .wd-icon-arrow-down1:before {
453
- content: '\e6e6';
461
+ content: "\e6e6";
454
462
  }
455
463
 
456
464
  .wd-icon-chevron-left:before {
457
- content: '\e6e7';
465
+ content: "\e6e7";
458
466
  }
459
467
 
460
468
  .wd-icon-caret-right:before {
461
- content: '\e6e8';
469
+ content: "\e6e8";
462
470
  }
463
471
 
464
472
  .wd-icon-caret-left:before {
465
- content: '\e6e9';
473
+ content: "\e6e9";
466
474
  }
467
475
 
468
476
  .wd-icon-page-last:before {
469
- content: '\e6c9';
477
+ content: "\e6c9";
470
478
  }
471
479
 
472
480
  .wd-icon-next:before {
473
- content: '\e6ca';
481
+ content: "\e6ca";
474
482
  }
475
483
 
476
484
  .wd-icon-swap:before {
477
- content: '\e6cb';
485
+ content: "\e6cb";
478
486
  }
479
487
 
480
488
  .wd-icon-round:before {
481
- content: '\e6cc';
489
+ content: "\e6cc";
482
490
  }
483
491
 
484
492
  .wd-icon-previous:before {
485
- content: '\e6cd';
493
+ content: "\e6cd";
486
494
  }
487
495
 
488
496
  .wd-icon-enter:before {
489
- content: '\e6ce';
497
+ content: "\e6ce";
490
498
  }
491
499
 
492
500
  .wd-icon-chevron-down:before {
493
- content: '\e6cf';
501
+ content: "\e6cf";
494
502
  }
495
503
 
496
504
  .wd-icon-caret-down-small:before {
497
- content: '\e6d0';
505
+ content: "\e6d0";
498
506
  }
499
507
 
500
508
  .wd-icon-swap-right:before {
501
- content: '\e6d1';
509
+ content: "\e6d1";
502
510
  }
503
511
 
504
512
  .wd-icon-chevron-left-circle:before {
505
- content: '\e6d2';
513
+ content: "\e6d2";
506
514
  }
507
515
 
508
516
  .wd-icon-caret-left-small:before {
509
- content: '\e6d3';
517
+ content: "\e6d3";
510
518
  }
511
519
 
512
520
  .wd-icon-chevron-right-circle:before {
513
- content: '\e6d4';
521
+ content: "\e6d4";
514
522
  }
515
523
 
516
524
  .wd-icon-a-chevron-leftdouble:before {
517
- content: '\e6d5';
525
+ content: "\e6d5";
518
526
  }
519
527
 
520
528
  .wd-icon-chevron-left-rectangle:before {
521
- content: '\e6d6';
529
+ content: "\e6d6";
522
530
  }
523
531
 
524
532
  .wd-icon-a-chevron-rightdouble:before {
525
- content: '\e6d7';
533
+ content: "\e6d7";
526
534
  }
527
535
 
528
536
  .wd-icon-page-first:before {
529
- content: '\e6d8';
537
+ content: "\e6d8";
530
538
  }
531
539
 
532
540
  .wd-icon-forward:before {
533
- content: '\e6d9';
541
+ content: "\e6d9";
534
542
  }
535
543
 
536
544
  .wd-icon-view-column:before {
537
- content: '\e6b9';
545
+ content: "\e6b9";
538
546
  }
539
547
 
540
548
  .wd-icon-view-module:before {
541
- content: '\e6ba';
549
+ content: "\e6ba";
542
550
  }
543
551
 
544
552
  .wd-icon-format-vertical-align-right:before {
545
- content: '\e6bb';
553
+ content: "\e6bb";
546
554
  }
547
555
 
548
556
  .wd-icon-view-list:before {
549
- content: '\e6bc';
557
+ content: "\e6bc";
550
558
  }
551
559
 
552
560
  .wd-icon-order-descending:before {
553
- content: '\e6bd';
561
+ content: "\e6bd";
554
562
  }
555
563
 
556
564
  .wd-icon-format-horizontal-align-bottom:before {
557
- content: '\e6be';
565
+ content: "\e6be";
558
566
  }
559
567
 
560
568
  .wd-icon-queue:before {
561
- content: '\e6bf';
569
+ content: "\e6bf";
562
570
  }
563
571
 
564
572
  .wd-icon-menu-fold:before {
565
- content: '\e6c0';
573
+ content: "\e6c0";
566
574
  }
567
575
 
568
576
  .wd-icon-menu-unfold:before {
569
- content: '\e6c1';
577
+ content: "\e6c1";
570
578
  }
571
579
 
572
580
  .wd-icon-format-horizontal-align-top:before {
573
- content: '\e6c2';
581
+ content: "\e6c2";
574
582
  }
575
583
 
576
584
  .wd-icon-a-rootlist:before {
577
- content: '\e6c3';
585
+ content: "\e6c3";
578
586
  }
579
587
 
580
588
  .wd-icon-order-ascending:before {
581
- content: '\e6c4';
589
+ content: "\e6c4";
582
590
  }
583
591
 
584
592
  .wd-icon-format-vertical-align-left:before {
585
- content: '\e6c5';
593
+ content: "\e6c5";
586
594
  }
587
595
 
588
596
  .wd-icon-format-horizontal-align-center:before {
589
- content: '\e6c6';
597
+ content: "\e6c6";
590
598
  }
591
599
 
592
600
  .wd-icon-format-vertical-align-center:before {
593
- content: '\e6c7';
601
+ content: "\e6c7";
594
602
  }
595
603
 
596
604
  .wd-icon-swap-left:before {
597
- content: '\e6c8';
605
+ content: "\e6c8";
598
606
  }
599
607
 
600
608
  .wd-icon-flag:before {
601
- content: '\e6aa';
609
+ content: "\e6aa";
602
610
  }
603
611
 
604
612
  .wd-icon-code:before {
605
- content: '\e6ab';
613
+ content: "\e6ab";
606
614
  }
607
615
 
608
616
  .wd-icon-cart:before {
609
- content: '\e6ac';
617
+ content: "\e6ac";
610
618
  }
611
619
 
612
620
  .wd-icon-attach:before {
613
- content: '\e6ad';
621
+ content: "\e6ad";
614
622
  }
615
623
 
616
624
  .wd-icon-chart:before {
617
- content: '\e6ae';
625
+ content: "\e6ae";
618
626
  }
619
627
 
620
628
  .wd-icon-creditcard:before {
621
- content: '\e6af';
629
+ content: "\e6af";
622
630
  }
623
631
 
624
632
  .wd-icon-calendar:before {
625
- content: '\e6b0';
633
+ content: "\e6b0";
626
634
  }
627
635
 
628
636
  .wd-icon-app:before {
629
- content: '\e6b1';
637
+ content: "\e6b1";
630
638
  }
631
639
 
632
640
  .wd-icon-books:before {
633
- content: '\e6b2';
641
+ content: "\e6b2";
634
642
  }
635
643
 
636
644
  .wd-icon-barcode:before {
637
- content: '\e6b3';
645
+ content: "\e6b3";
638
646
  }
639
647
 
640
648
  .wd-icon-chart-pie:before {
641
- content: '\e6b4';
649
+ content: "\e6b4";
642
650
  }
643
651
 
644
652
  .wd-icon-chart-bar:before {
645
- content: '\e6b5';
653
+ content: "\e6b5";
646
654
  }
647
655
 
648
656
  .wd-icon-chart-bubble:before {
649
- content: '\e6b6';
657
+ content: "\e6b6";
650
658
  }
651
659
 
652
660
  .wd-icon-bulletpoint:before {
653
- content: '\e6b7';
661
+ content: "\e6b7";
654
662
  }
655
663
 
656
664
  .wd-icon-bianjiliebiao:before {
657
- content: '\e6b8';
665
+ content: "\e6b8";
658
666
  }
659
667
 
660
668
  .wd-icon-image:before {
661
- content: '\e69a';
669
+ content: "\e69a";
662
670
  }
663
671
 
664
672
  .wd-icon-laptop:before {
665
- content: '\e69b';
673
+ content: "\e69b";
666
674
  }
667
675
 
668
676
  .wd-icon-hourglass:before {
669
- content: '\e69c';
677
+ content: "\e69c";
670
678
  }
671
679
 
672
680
  .wd-icon-call:before {
673
- content: '\e69d';
681
+ content: "\e69d";
674
682
  }
675
683
 
676
684
  .wd-icon-mobile-vibrate:before {
677
- content: '\e69e';
685
+ content: "\e69e";
678
686
  }
679
687
 
680
688
  .wd-icon-mail:before {
681
- content: '\e69f';
689
+ content: "\e69f";
682
690
  }
683
691
 
684
692
  .wd-icon-notification-filled:before {
685
- content: '\e6a0';
693
+ content: "\e6a0";
686
694
  }
687
695
 
688
696
  .wd-icon-desktop:before {
689
- content: '\e6a1';
697
+ content: "\e6a1";
690
698
  }
691
699
 
692
700
  .wd-icon-history:before {
693
- content: '\e6a2';
701
+ content: "\e6a2";
694
702
  }
695
703
 
696
704
  .wd-icon-discount-filled:before {
697
- content: '\e6a3';
705
+ content: "\e6a3";
698
706
  }
699
707
 
700
708
  .wd-icon-dashboard:before {
701
- content: '\e6a4';
709
+ content: "\e6a4";
702
710
  }
703
711
 
704
712
  .wd-icon-discount:before {
705
- content: '\e6a5';
713
+ content: "\e6a5";
706
714
  }
707
715
 
708
716
  .wd-icon-heart-filled:before {
709
- content: '\e6a6';
717
+ content: "\e6a6";
710
718
  }
711
719
 
712
720
  .wd-icon-chat1:before {
713
- content: '\e6a7';
721
+ content: "\e6a7";
714
722
  }
715
723
 
716
724
  .wd-icon-a-controlplatform:before {
717
- content: '\e6a8';
725
+ content: "\e6a8";
718
726
  }
719
727
 
720
728
  .wd-icon-gift:before {
721
- content: '\e6a9';
729
+ content: "\e6a9";
722
730
  }
723
731
 
724
732
  .wd-icon-photo:before {
725
- content: '\e692';
733
+ content: "\e692";
726
734
  }
727
735
 
728
736
  .wd-icon-play-circle-stroke:before {
729
- content: '\e693';
737
+ content: "\e693";
730
738
  }
731
739
 
732
740
  .wd-icon-notification:before {
733
- content: '\e694';
741
+ content: "\e694";
734
742
  }
735
743
 
736
744
  .wd-icon-cloud:before {
737
- content: '\e695';
745
+ content: "\e695";
738
746
  }
739
747
 
740
748
  .wd-icon-gender-female:before {
741
- content: '\e696';
749
+ content: "\e696";
742
750
  }
743
751
 
744
752
  .wd-icon-fork:before {
745
- content: '\e697';
753
+ content: "\e697";
746
754
  }
747
755
 
748
756
  .wd-icon-layers:before {
749
- content: '\e698';
757
+ content: "\e698";
750
758
  }
751
759
 
752
760
  .wd-icon-lock-off:before {
753
- content: '\e699';
761
+ content: "\e699";
754
762
  }
755
763
 
756
764
  .wd-icon-location:before {
757
- content: '\e68a';
765
+ content: "\e68a";
758
766
  }
759
767
 
760
768
  .wd-icon-mobile:before {
761
- content: '\e68b';
769
+ content: "\e68b";
762
770
  }
763
771
 
764
772
  .wd-icon-qrcode:before {
765
- content: '\e68c';
773
+ content: "\e68c";
766
774
  }
767
775
 
768
776
  .wd-icon-home1:before {
769
- content: '\e68d';
777
+ content: "\e68d";
770
778
  }
771
779
 
772
780
  .wd-icon-time:before {
773
- content: '\e68e';
781
+ content: "\e68e";
774
782
  }
775
783
 
776
784
  .wd-icon-heart:before {
777
- content: '\e68f';
785
+ content: "\e68f";
778
786
  }
779
787
 
780
788
  .wd-icon-lock-on:before {
781
- content: '\e690';
789
+ content: "\e690";
782
790
  }
783
791
 
784
792
  .wd-icon-print:before {
785
- content: '\e691';
793
+ content: "\e691";
786
794
  }
787
795
 
788
796
  .wd-icon-slash:before {
789
- content: '\e67a';
797
+ content: "\e67a";
790
798
  }
791
799
 
792
800
  .wd-icon-usb:before {
793
- content: '\e67b';
801
+ content: "\e67b";
794
802
  }
795
803
 
796
804
  .wd-icon-tools:before {
797
- content: '\e67c';
805
+ content: "\e67c";
798
806
  }
799
807
 
800
808
  .wd-icon-wifi:before {
801
- content: '\e67d';
809
+ content: "\e67d";
802
810
  }
803
811
 
804
812
  .wd-icon-star-filled:before {
805
- content: '\e67e';
813
+ content: "\e67e";
806
814
  }
807
815
 
808
816
  .wd-icon-server:before {
809
- content: '\e67f';
817
+ content: "\e67f";
810
818
  }
811
819
 
812
820
  .wd-icon-sound:before {
813
- content: '\e680';
821
+ content: "\e680";
814
822
  }
815
823
 
816
824
  .wd-icon-a-precisemonitor:before {
817
- content: '\e681';
825
+ content: "\e681";
818
826
  }
819
827
 
820
828
  .wd-icon-service:before {
821
- content: '\e682';
829
+ content: "\e682";
822
830
  }
823
831
 
824
832
  .wd-icon-tips:before {
825
- content: '\e683';
833
+ content: "\e683";
826
834
  }
827
835
 
828
836
  .wd-icon-pin:before {
829
- content: '\e684';
837
+ content: "\e684";
830
838
  }
831
839
 
832
840
  .wd-icon-secured:before {
833
- content: '\e685';
841
+ content: "\e685";
834
842
  }
835
843
 
836
844
  .wd-icon-star:before {
837
- content: '\e686';
845
+ content: "\e686";
838
846
  }
839
847
 
840
848
  .wd-icon-gender-male:before {
841
- content: '\e687';
849
+ content: "\e687";
842
850
  }
843
851
 
844
852
  .wd-icon-shop:before {
845
- content: '\e688';
853
+ content: "\e688";
846
854
  }
847
855
 
848
856
  .wd-icon-money-circle:before {
849
- content: '\e689';
857
+ content: "\e689";
850
858
  }
851
859
 
852
860
  .wd-icon-file-word:before {
853
- content: '\e66a';
861
+ content: "\e66a";
854
862
  }
855
863
 
856
864
  .wd-icon-file-unknown:before {
857
- content: '\e66b';
865
+ content: "\e66b";
858
866
  }
859
867
 
860
868
  .wd-icon-folder-open:before {
861
- content: '\e66c';
869
+ content: "\e66c";
862
870
  }
863
871
 
864
872
  .wd-icon-file-pdf:before {
865
- content: '\e66d';
873
+ content: "\e66d";
866
874
  }
867
875
 
868
876
  .wd-icon-folder:before {
869
- content: '\e66e';
877
+ content: "\e66e";
870
878
  }
871
879
 
872
880
  .wd-icon-folder-add:before {
873
- content: '\e66f';
881
+ content: "\e66f";
874
882
  }
875
883
 
876
884
  .wd-icon-file:before {
877
- content: '\e670';
885
+ content: "\e670";
878
886
  }
879
887
 
880
888
  .wd-icon-file-image:before {
881
- content: '\e671';
889
+ content: "\e671";
882
890
  }
883
891
 
884
892
  .wd-icon-file-powerpoint:before {
885
- content: '\e672';
893
+ content: "\e672";
886
894
  }
887
895
 
888
896
  .wd-icon-file-add:before {
889
- content: '\e673';
897
+ content: "\e673";
890
898
  }
891
899
 
892
900
  .wd-icon-file-icon:before {
893
- content: '\e674';
901
+ content: "\e674";
894
902
  }
895
903
 
896
904
  .wd-icon-file-paste:before {
897
- content: '\e675';
905
+ content: "\e675";
898
906
  }
899
907
 
900
908
  .wd-icon-file-excel:before {
901
- content: '\e676';
909
+ content: "\e676";
902
910
  }
903
911
 
904
912
  .wd-icon-file-copy:before {
905
- content: '\e677';
913
+ content: "\e677";
906
914
  }
907
915
 
908
916
  .wd-icon-video1:before {
909
- content: '\e678';
917
+ content: "\e678";
910
918
  }
911
919
 
912
920
  .wd-icon-wallet:before {
913
- content: '\e679';
921
+ content: "\e679";
914
922
  }
915
923
 
916
924
  .wd-icon-ie:before {
917
- content: '\e65d';
925
+ content: "\e65d";
918
926
  }
919
927
 
920
928
  .wd-icon-logo-codepen:before {
921
- content: '\e65e';
929
+ content: "\e65e";
922
930
  }
923
931
 
924
932
  .wd-icon-github-filled:before {
925
- content: '\e65f';
933
+ content: "\e65f";
926
934
  }
927
935
 
928
936
  .wd-icon-ie-filled:before {
929
- content: '\e660';
937
+ content: "\e660";
930
938
  }
931
939
 
932
940
  .wd-icon-apple:before {
933
- content: '\e661';
941
+ content: "\e661";
934
942
  }
935
943
 
936
944
  .wd-icon-windows-filled:before {
937
- content: '\e662';
945
+ content: "\e662";
938
946
  }
939
947
 
940
948
  .wd-icon-internet:before {
941
- content: '\e663';
949
+ content: "\e663";
942
950
  }
943
951
 
944
952
  .wd-icon-github:before {
945
- content: '\e664';
953
+ content: "\e664";
946
954
  }
947
955
 
948
956
  .wd-icon-windows:before {
949
- content: '\e665';
957
+ content: "\e665";
950
958
  }
951
959
 
952
960
  .wd-icon-apple-filled:before {
953
- content: '\e666';
961
+ content: "\e666";
954
962
  }
955
963
 
956
964
  .wd-icon-chrome-filled:before {
957
- content: '\e667';
965
+ content: "\e667";
958
966
  }
959
967
 
960
968
  .wd-icon-chrome:before {
961
- content: '\e668';
969
+ content: "\e668";
962
970
  }
963
971
 
964
972
  .wd-icon-android:before {
965
- content: '\e669';
973
+ content: "\e669";
966
974
  }
967
975
 
968
976
  .wd-icon-edit-outline:before {
969
- content: '\e64a';
977
+ content: "\e64a";
970
978
  }
971
979
 
972
980
  .wd-icon-detection:before {
973
- content: '\e64b';
981
+ content: "\e64b";
974
982
  }
975
983
 
976
984
  .wd-icon-check-outline:before {
977
- content: '\e64c';
985
+ content: "\e64c";
978
986
  }
979
987
 
980
988
  .wd-icon-close:before {
981
- content: '\e64d';
989
+ content: "\e64d";
982
990
  }
983
991
 
984
992
  .wd-icon-check:before {
985
- content: '\e64e';
993
+ content: "\e64e";
986
994
  }
987
995
 
988
996
  .wd-icon-arrow-left:before {
989
- content: '\e64f';
997
+ content: "\e64f";
990
998
  }
991
999
 
992
1000
  .wd-icon-computer:before {
993
- content: '\e650';
1001
+ content: "\e650";
994
1002
  }
995
1003
 
996
1004
  .wd-icon-clock:before {
997
- content: '\e651';
1005
+ content: "\e651";
998
1006
  }
999
1007
 
1000
1008
  .wd-icon-check-bold:before {
1001
- content: '\e652';
1009
+ content: "\e652";
1002
1010
  }
1003
1011
 
1004
1012
  .wd-icon-bags:before {
1005
- content: '\e653';
1013
+ content: "\e653";
1006
1014
  }
1007
1015
 
1008
1016
  .wd-icon-arrow-down:before {
1009
- content: '\e654';
1017
+ content: "\e654";
1010
1018
  }
1011
1019
 
1012
1020
  .wd-icon-arrow-right:before {
1013
- content: '\e655';
1021
+ content: "\e655";
1014
1022
  }
1015
1023
 
1016
1024
  .wd-icon-circle:before {
1017
- content: '\e656';
1025
+ content: "\e656";
1018
1026
  }
1019
1027
 
1020
1028
  .wd-icon-arrow-thin-down:before {
1021
- content: '\e657';
1029
+ content: "\e657";
1022
1030
  }
1023
1031
 
1024
1032
  .wd-icon-camera:before {
1025
- content: '\e658';
1033
+ content: "\e658";
1026
1034
  }
1027
1035
 
1028
1036
  .wd-icon-close-bold:before {
1029
- content: '\e659';
1037
+ content: "\e659";
1030
1038
  }
1031
1039
 
1032
1040
  .wd-icon-add-circle:before {
1033
- content: '\e65a';
1041
+ content: "\e65a";
1034
1042
  }
1035
1043
 
1036
1044
  .wd-icon-arrow-thin-up:before {
1037
- content: '\e65b';
1045
+ content: "\e65b";
1038
1046
  }
1039
1047
 
1040
1048
  .wd-icon-add:before {
1041
- content: '\e65c';
1049
+ content: "\e65c";
1042
1050
  }
1043
1051
 
1044
1052
  .wd-icon-keyboard-delete:before {
1045
- content: '\e634';
1053
+ content: "\e634";
1046
1054
  }
1047
1055
 
1048
1056
  .wd-icon-transfer:before {
1049
- content: '\e635';
1057
+ content: "\e635";
1050
1058
  }
1051
1059
 
1052
1060
  .wd-icon-eye-close:before {
1053
- content: '\e61f';
1061
+ content: "\e61f";
1054
1062
  }
1055
1063
 
1056
1064
  .wd-icon-delete:before {
1057
- content: '\e61e';
1065
+ content: "\e61e";
1058
1066
  }
1059
1067
 
1060
1068
  .wd-icon-download:before {
1061
- content: '\e636';
1069
+ content: "\e636";
1062
1070
  }
1063
1071
 
1064
1072
  .wd-icon-picture:before {
1065
- content: '\e637';
1073
+ content: "\e637";
1066
1074
  }
1067
1075
 
1068
1076
  .wd-icon-refresh:before {
1069
- content: '\e638';
1077
+ content: "\e638";
1070
1078
  }
1071
1079
 
1072
1080
  .wd-icon-read:before {
1073
- content: '\e639';
1081
+ content: "\e639";
1074
1082
  }
1075
1083
 
1076
1084
  .wd-icon-note:before {
1077
- content: '\e63a';
1085
+ content: "\e63a";
1078
1086
  }
1079
1087
 
1080
1088
  .wd-icon-phone:before {
1081
- content: '\e63b';
1089
+ content: "\e63b";
1082
1090
  }
1083
1091
 
1084
1092
  .wd-icon-lenovo:before {
1085
- content: '\e63c';
1093
+ content: "\e63c";
1086
1094
  }
1087
1095
 
1088
1096
  .wd-icon-home:before {
1089
- content: '\e63d';
1097
+ content: "\e63d";
1090
1098
  }
1091
1099
 
1092
1100
  .wd-icon-search:before {
1093
- content: '\e63e';
1101
+ content: "\e63e";
1094
1102
  }
1095
1103
 
1096
1104
  .wd-icon-fill-camera:before {
1097
- content: '\e63f';
1105
+ content: "\e63f";
1098
1106
  }
1099
1107
 
1100
1108
  .wd-icon-fill-arrow-down:before {
1101
- content: '\e640';
1109
+ content: "\e640";
1102
1110
  }
1103
1111
 
1104
1112
  .wd-icon-arrow-up:before {
1105
- content: '\e61d';
1113
+ content: "\e61d";
1106
1114
  }
1107
1115
 
1108
1116
  .wd-icon-delete-thin:before {
1109
- content: '\e641';
1117
+ content: "\e641";
1110
1118
  }
1111
1119
 
1112
1120
  .wd-icon-filter:before {
1113
- content: '\e642';
1121
+ content: "\e642";
1114
1122
  }
1115
1123
 
1116
1124
  .wd-icon-evaluation:before {
1117
- content: '\e643';
1125
+ content: "\e643";
1118
1126
  }
1119
1127
 
1120
1128
  .wd-icon-close-outline:before {
1121
- content: '\e644';
1129
+ content: "\e644";
1122
1130
  }
1123
1131
 
1124
1132
  .wd-icon-dong:before {
1125
- content: '\e645';
1133
+ content: "\e645";
1126
1134
  }
1127
1135
 
1128
1136
  .wd-icon-error-fill:before {
1129
- content: '\e646';
1137
+ content: "\e646";
1130
1138
  }
1131
1139
 
1132
1140
  .wd-icon-chat:before {
1133
- content: '\e647';
1141
+ content: "\e647";
1134
1142
  }
1135
1143
 
1136
1144
  .wd-icon-decrease:before {
1137
- content: '\e648';
1145
+ content: "\e648";
1138
1146
  }
1139
1147
 
1140
1148
  .wd-icon-copy:before {
1141
- content: '\e649';
1149
+ content: "\e649";
1142
1150
  }
1143
1151
 
1144
1152
  .wd-icon-setting:before {
1145
- content: '\e621';
1153
+ content: "\e621";
1146
1154
  }
1147
1155
 
1148
1156
  .wd-icon-subscribe:before {
1149
- content: '\e622';
1157
+ content: "\e622";
1150
1158
  }
1151
1159
 
1152
1160
  .wd-icon-jdm:before {
1153
- content: '\e620';
1161
+ content: "\e620";
1154
1162
  }
1155
1163
 
1156
1164
  .wd-icon-spool:before {
1157
- content: '\e623';
1165
+ content: "\e623";
1158
1166
  }
1159
1167
 
1160
1168
  .wd-icon-warning:before {
1161
- content: '\e624';
1169
+ content: "\e624";
1162
1170
  }
1163
1171
 
1164
1172
  .wd-icon-wifi-error:before {
1165
- content: '\e625';
1173
+ content: "\e625";
1166
1174
  }
1167
1175
 
1168
1176
  .wd-icon-star-on:before {
1169
- content: '\e626';
1177
+ content: "\e626";
1170
1178
  }
1171
1179
 
1172
1180
  .wd-icon-rotate:before {
1173
- content: '\e627';
1181
+ content: "\e627";
1174
1182
  }
1175
1183
 
1176
1184
  .wd-icon-translate-bold:before {
1177
- content: '\e628';
1185
+ content: "\e628";
1178
1186
  }
1179
1187
 
1180
1188
  .wd-icon-keyboard-collapse:before {
1181
- content: '\e629';
1189
+ content: "\e629";
1182
1190
  }
1183
1191
 
1184
1192
  .wd-icon-keywords:before {
1185
- content: '\e62a';
1193
+ content: "\e62a";
1186
1194
  }
1187
1195
 
1188
1196
  .wd-icon-scan:before {
1189
- content: '\e62b';
1197
+ content: "\e62b";
1190
1198
  }
1191
1199
 
1192
1200
  .wd-icon-view:before {
1193
- content: '\e62c';
1201
+ content: "\e62c";
1194
1202
  }
1195
1203
 
1196
1204
  .wd-icon-phone-compute:before {
1197
- content: '\e62d';
1205
+ content: "\e62d";
1198
1206
  }
1199
1207
 
1200
1208
  .wd-icon-video:before {
1201
- content: '\e62e';
1209
+ content: "\e62e";
1202
1210
  }
1203
1211
 
1204
1212
  .wd-icon-thin-arrow-left:before {
1205
- content: '\e62f';
1213
+ content: "\e62f";
1206
1214
  }
1207
1215
 
1208
1216
  .wd-icon-goods:before {
1209
- content: '\e630';
1217
+ content: "\e630";
1210
1218
  }
1211
1219
 
1212
1220
  .wd-icon-list:before {
1213
- content: '\e631';
1221
+ content: "\e631";
1214
1222
  }
1215
1223
 
1216
1224
  .wd-icon-warn-bold:before {
1217
- content: '\e632';
1225
+ content: "\e632";
1218
1226
  }
1219
1227
 
1220
1228
  .wd-icon-more:before {
1221
- content: '\e633';
1222
- }
1229
+ content: "\e633";
1230
+ }