@tplc/wot 0.0.1

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