@wot-ui/ui 1.0.0 → 2.0.0-alpha.4

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 (386) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +134 -0
  3. package/attributes.json +1 -0
  4. package/changelog.md +63 -0
  5. package/common/AbortablePromise.ts +28 -0
  6. package/common/canvasHelper.ts +49 -0
  7. package/common/clickoutside.ts +25 -0
  8. package/common/event.ts +8 -0
  9. package/common/formatDate.ts +68 -0
  10. package/common/interceptor.ts +43 -0
  11. package/common/props.ts +53 -0
  12. package/common/util.ts +836 -0
  13. package/components/wd-action-sheet/index.scss +232 -0
  14. package/components/wd-action-sheet/types.ts +155 -0
  15. package/components/wd-action-sheet/wd-action-sheet.vue +176 -0
  16. package/components/wd-avatar/index.scss +150 -0
  17. package/components/wd-avatar/types.ts +98 -0
  18. package/components/wd-avatar/wd-avatar.vue +184 -0
  19. package/components/wd-avatar-group/index.scss +11 -0
  20. package/components/wd-avatar-group/types.ts +61 -0
  21. package/components/wd-avatar-group/wd-avatar-group.vue +115 -0
  22. package/components/wd-backtop/index.scss +67 -0
  23. package/components/wd-backtop/types.ts +66 -0
  24. package/components/wd-backtop/wd-backtop.vue +57 -0
  25. package/components/wd-badge/index.scss +116 -0
  26. package/components/wd-badge/types.ts +94 -0
  27. package/components/wd-badge/wd-badge.vue +78 -0
  28. package/components/wd-button/index.scss +436 -0
  29. package/components/wd-button/types.ts +204 -0
  30. package/components/wd-button/wd-button.vue +210 -0
  31. package/components/wd-calendar/index.scss +97 -0
  32. package/components/wd-calendar/types.ts +221 -0
  33. package/components/wd-calendar/wd-calendar.vue +339 -0
  34. package/components/wd-calendar-view/index.scss +41 -0
  35. package/components/wd-calendar-view/month/index.scss +144 -0
  36. package/components/wd-calendar-view/month/month.vue +389 -0
  37. package/components/wd-calendar-view/month/types.ts +70 -0
  38. package/components/wd-calendar-view/monthPanel/index.scss +84 -0
  39. package/components/wd-calendar-view/monthPanel/month-panel.vue +541 -0
  40. package/components/wd-calendar-view/monthPanel/types.ts +151 -0
  41. package/components/wd-calendar-view/types.ts +166 -0
  42. package/components/wd-calendar-view/utils.ts +318 -0
  43. package/components/wd-calendar-view/wd-calendar-view.vue +117 -0
  44. package/components/wd-calendar-view/year/index.scss +148 -0
  45. package/components/wd-calendar-view/year/types.ts +74 -0
  46. package/components/wd-calendar-view/year/year.vue +206 -0
  47. package/components/wd-calendar-view/yearPanel/index.scss +42 -0
  48. package/components/wd-calendar-view/yearPanel/types.ts +96 -0
  49. package/components/wd-calendar-view/yearPanel/year-panel.vue +249 -0
  50. package/components/wd-card/index.scss +104 -0
  51. package/components/wd-card/types.ts +47 -0
  52. package/components/wd-card/wd-card.vue +38 -0
  53. package/components/wd-cascader/index.scss +154 -0
  54. package/components/wd-cascader/types.ts +191 -0
  55. package/components/wd-cascader/wd-cascader.vue +589 -0
  56. package/components/wd-cell/index.scss +244 -0
  57. package/components/wd-cell/types.ts +205 -0
  58. package/components/wd-cell/wd-cell.vue +172 -0
  59. package/components/wd-cell-group/index.scss +53 -0
  60. package/components/wd-cell-group/types.ts +97 -0
  61. package/components/wd-cell-group/wd-cell-group.vue +48 -0
  62. package/components/wd-checkbox/index.scss +166 -0
  63. package/components/wd-checkbox/types.ts +118 -0
  64. package/components/wd-checkbox/wd-checkbox.vue +216 -0
  65. package/components/wd-checkbox-group/index.scss +5 -0
  66. package/components/wd-checkbox-group/types.ts +93 -0
  67. package/components/wd-checkbox-group/wd-checkbox-group.vue +148 -0
  68. package/components/wd-circle/index.scss +28 -0
  69. package/components/wd-circle/types.ts +54 -0
  70. package/components/wd-circle/wd-circle.vue +306 -0
  71. package/components/wd-col/index.scss +5 -0
  72. package/components/wd-col/types.ts +16 -0
  73. package/components/wd-col/wd-col.vue +83 -0
  74. package/components/wd-collapse/index.scss +71 -0
  75. package/components/wd-collapse/types.ts +68 -0
  76. package/components/wd-collapse/wd-collapse.vue +165 -0
  77. package/components/wd-collapse-item/index.scss +86 -0
  78. package/components/wd-collapse-item/types.ts +62 -0
  79. package/components/wd-collapse-item/wd-collapse-item.vue +184 -0
  80. package/components/wd-config-provider/index.scss +10 -0
  81. package/components/wd-config-provider/types.ts +2061 -0
  82. package/components/wd-config-provider/wd-config-provider.vue +61 -0
  83. package/components/wd-count-down/index.scss +16 -0
  84. package/components/wd-count-down/types.ts +58 -0
  85. package/components/wd-count-down/utils.ts +52 -0
  86. package/components/wd-count-down/wd-count-down.vue +62 -0
  87. package/components/wd-count-to/index.scss +25 -0
  88. package/components/wd-count-to/types.ts +121 -0
  89. package/components/wd-count-to/wd-count-to.vue +126 -0
  90. package/components/wd-curtain/index.scss +96 -0
  91. package/components/wd-curtain/types.ts +82 -0
  92. package/components/wd-curtain/wd-curtain.vue +172 -0
  93. package/components/wd-datetime-picker/index.scss +133 -0
  94. package/components/wd-datetime-picker/types.ts +198 -0
  95. package/components/wd-datetime-picker/wd-datetime-picker.vue +526 -0
  96. package/components/wd-datetime-picker-view/types.ts +171 -0
  97. package/components/wd-datetime-picker-view/util.ts +30 -0
  98. package/components/wd-datetime-picker-view/wd-datetime-picker-view.vue +402 -0
  99. package/components/wd-dialog/index.scss +281 -0
  100. package/components/wd-dialog/index.ts +168 -0
  101. package/components/wd-dialog/types.ts +452 -0
  102. package/components/wd-dialog/wd-dialog.vue +586 -0
  103. package/components/wd-divider/index.scss +122 -0
  104. package/components/wd-divider/types.ts +50 -0
  105. package/components/wd-divider/wd-divider.vue +54 -0
  106. package/components/wd-drop-menu/index.scss +90 -0
  107. package/components/wd-drop-menu/types.ts +38 -0
  108. package/components/wd-drop-menu/wd-drop-menu.vue +168 -0
  109. package/components/wd-drop-menu-item/index.scss +96 -0
  110. package/components/wd-drop-menu-item/types.ts +93 -0
  111. package/components/wd-drop-menu-item/wd-drop-menu-item.vue +205 -0
  112. package/components/wd-empty/index.scss +46 -0
  113. package/components/wd-empty/types.ts +37 -0
  114. package/components/wd-empty/wd-empty.vue +47 -0
  115. package/components/wd-fab/index.scss +124 -0
  116. package/components/wd-fab/types.ts +119 -0
  117. package/components/wd-fab/wd-fab.vue +322 -0
  118. package/components/wd-floating-panel/index.scss +73 -0
  119. package/components/wd-floating-panel/type.ts +32 -0
  120. package/components/wd-floating-panel/wd-floating-panel.vue +142 -0
  121. package/components/wd-form/adapters/zod.ts +56 -0
  122. package/components/wd-form/index.ts +2 -0
  123. package/components/wd-form/types.ts +133 -0
  124. package/components/wd-form/wd-form.vue +121 -0
  125. package/components/wd-form-item/index.scss +26 -0
  126. package/components/wd-form-item/types.ts +134 -0
  127. package/components/wd-form-item/wd-form-item.vue +182 -0
  128. package/components/wd-gap/index.scss +9 -0
  129. package/components/wd-gap/types.ts +26 -0
  130. package/components/wd-gap/wd-gap.vue +38 -0
  131. package/components/wd-grid/index.scss +11 -0
  132. package/components/wd-grid/types.ts +97 -0
  133. package/components/wd-grid/wd-grid.vue +48 -0
  134. package/components/wd-grid-item/index.scss +187 -0
  135. package/components/wd-grid-item/types.ts +98 -0
  136. package/components/wd-grid-item/wd-grid-item.vue +295 -0
  137. package/components/wd-icon/index.scss +46 -0
  138. package/components/wd-icon/types.ts +44 -0
  139. package/components/wd-icon/wd-icon.vue +66 -0
  140. package/components/wd-image-preview/index.scss +94 -0
  141. package/components/wd-image-preview/index.ts +95 -0
  142. package/components/wd-image-preview/types.ts +165 -0
  143. package/components/wd-image-preview/wd-image-preview.vue +233 -0
  144. package/components/wd-img/index.scss +82 -0
  145. package/components/wd-img/types.ts +96 -0
  146. package/components/wd-img/wd-img.vue +91 -0
  147. package/components/wd-img-cropper/index.scss +259 -0
  148. package/components/wd-img-cropper/types.ts +101 -0
  149. package/components/wd-img-cropper/wd-img-cropper.vue +653 -0
  150. package/components/wd-index-anchor/index.scss +34 -0
  151. package/components/wd-index-anchor/type.ts +9 -0
  152. package/components/wd-index-anchor/wd-index-anchor.vue +55 -0
  153. package/components/wd-index-bar/index.scss +68 -0
  154. package/components/wd-index-bar/type.ts +23 -0
  155. package/components/wd-index-bar/wd-index-bar.vue +157 -0
  156. package/components/wd-input/index.scss +129 -0
  157. package/components/wd-input/types.ts +165 -0
  158. package/components/wd-input/wd-input.vue +237 -0
  159. package/components/wd-input-number/index.scss +233 -0
  160. package/components/wd-input-number/types.ts +131 -0
  161. package/components/wd-input-number/wd-input-number.vue +473 -0
  162. package/components/wd-keyboard/constants.ts +81 -0
  163. package/components/wd-keyboard/index.scss +104 -0
  164. package/components/wd-keyboard/key/index.scss +103 -0
  165. package/components/wd-keyboard/key/index.vue +84 -0
  166. package/components/wd-keyboard/key/types.ts +44 -0
  167. package/components/wd-keyboard/types.ts +138 -0
  168. package/components/wd-keyboard/wd-keyboard.vue +236 -0
  169. package/components/wd-loading/index.scss +205 -0
  170. package/components/wd-loading/types.ts +61 -0
  171. package/components/wd-loading/wd-loading.vue +70 -0
  172. package/components/wd-loadmore/index.scss +62 -0
  173. package/components/wd-loadmore/types.ts +42 -0
  174. package/components/wd-loadmore/wd-loadmore.vue +68 -0
  175. package/components/wd-navbar/index.scss +96 -0
  176. package/components/wd-navbar/types.ts +74 -0
  177. package/components/wd-navbar/wd-navbar.vue +136 -0
  178. package/components/wd-navbar-capsule/index.scss +70 -0
  179. package/components/wd-navbar-capsule/types.ts +11 -0
  180. package/components/wd-navbar-capsule/wd-navbar-capsule.vue +48 -0
  181. package/components/wd-notice-bar/index.scss +94 -0
  182. package/components/wd-notice-bar/types.ts +97 -0
  183. package/components/wd-notice-bar/wd-notice-bar.vue +270 -0
  184. package/components/wd-notify/index.scss +114 -0
  185. package/components/wd-notify/index.ts +63 -0
  186. package/components/wd-notify/types.ts +130 -0
  187. package/components/wd-notify/wd-notify.vue +162 -0
  188. package/components/wd-overlay/index.scss +14 -0
  189. package/components/wd-overlay/types.ts +42 -0
  190. package/components/wd-overlay/wd-overlay.vue +55 -0
  191. package/components/wd-pagination/index.scss +71 -0
  192. package/components/wd-pagination/types.ts +69 -0
  193. package/components/wd-pagination/wd-pagination.vue +118 -0
  194. package/components/wd-password-input/index.scss +134 -0
  195. package/components/wd-password-input/types.ts +42 -0
  196. package/components/wd-password-input/wd-password-input.vue +51 -0
  197. package/components/wd-picker/index.scss +72 -0
  198. package/components/wd-picker/types.ts +141 -0
  199. package/components/wd-picker/wd-picker.vue +220 -0
  200. package/components/wd-picker-view/index.scss +93 -0
  201. package/components/wd-picker-view/types.ts +145 -0
  202. package/components/wd-picker-view/useSelection.ts +385 -0
  203. package/components/wd-picker-view/wd-picker-view.vue +227 -0
  204. package/components/wd-popover/index.scss +117 -0
  205. package/components/wd-popover/types.ts +106 -0
  206. package/components/wd-popover/wd-popover.vue +212 -0
  207. package/components/wd-popup/index.scss +89 -0
  208. package/components/wd-popup/types.ts +110 -0
  209. package/components/wd-popup/wd-popup.vue +174 -0
  210. package/components/wd-progress/index.scss +155 -0
  211. package/components/wd-progress/types.ts +94 -0
  212. package/components/wd-progress/wd-progress.vue +249 -0
  213. package/components/wd-radio/index.scss +189 -0
  214. package/components/wd-radio/types.ts +64 -0
  215. package/components/wd-radio/wd-radio.vue +164 -0
  216. package/components/wd-radio-group/index.scss +5 -0
  217. package/components/wd-radio-group/types.ts +70 -0
  218. package/components/wd-radio-group/wd-radio-group.vue +53 -0
  219. package/components/wd-rate/index.scss +57 -0
  220. package/components/wd-rate/types.ts +86 -0
  221. package/components/wd-rate/wd-rate.vue +168 -0
  222. package/components/wd-resize/index.scss +31 -0
  223. package/components/wd-resize/types.ts +14 -0
  224. package/components/wd-resize/wd-resize.vue +157 -0
  225. package/components/wd-root-portal/wd-root-portal.vue +77 -0
  226. package/components/wd-row/index.scss +6 -0
  227. package/components/wd-row/types.ts +36 -0
  228. package/components/wd-row/wd-row.vue +88 -0
  229. package/components/wd-search/index.scss +171 -0
  230. package/components/wd-search/types.ts +107 -0
  231. package/components/wd-search/wd-search.vue +198 -0
  232. package/components/wd-segmented/index.scss +155 -0
  233. package/components/wd-segmented/types.ts +81 -0
  234. package/components/wd-segmented/wd-segmented.vue +169 -0
  235. package/components/wd-select-picker/index.scss +72 -0
  236. package/components/wd-select-picker/types.ts +72 -0
  237. package/components/wd-select-picker/wd-select-picker.vue +371 -0
  238. package/components/wd-sidebar/index.scss +25 -0
  239. package/components/wd-sidebar/types.ts +34 -0
  240. package/components/wd-sidebar/wd-sidebar.vue +57 -0
  241. package/components/wd-sidebar-item/index.scss +91 -0
  242. package/components/wd-sidebar-item/types.ts +28 -0
  243. package/components/wd-sidebar-item/wd-sidebar-item.vue +118 -0
  244. package/components/wd-signature/index.scss +42 -0
  245. package/components/wd-signature/types.ts +295 -0
  246. package/components/wd-signature/wd-signature.vue +664 -0
  247. package/components/wd-skeleton/index.scss +112 -0
  248. package/components/wd-skeleton/types.ts +124 -0
  249. package/components/wd-skeleton/wd-skeleton.vue +110 -0
  250. package/components/wd-slide-verify/index.scss +112 -0
  251. package/components/wd-slide-verify/types.ts +98 -0
  252. package/components/wd-slide-verify/wd-slide-verify.vue +222 -0
  253. package/components/wd-slider/index.scss +485 -0
  254. package/components/wd-slider/types.ts +166 -0
  255. package/components/wd-slider/wd-slider.vue +529 -0
  256. package/components/wd-sort-button/index.scss +126 -0
  257. package/components/wd-sort-button/types.ts +68 -0
  258. package/components/wd-sort-button/wd-sort-button.vue +67 -0
  259. package/components/wd-step/index.scss +366 -0
  260. package/components/wd-step/types.ts +43 -0
  261. package/components/wd-step/wd-step.vue +181 -0
  262. package/components/wd-steps/index.scss +7 -0
  263. package/components/wd-steps/types.ts +50 -0
  264. package/components/wd-steps/wd-steps.vue +39 -0
  265. package/components/wd-sticky/index.scss +9 -0
  266. package/components/wd-sticky/types.ts +13 -0
  267. package/components/wd-sticky/wd-sticky.vue +192 -0
  268. package/components/wd-sticky-box/index.scss +6 -0
  269. package/components/wd-sticky-box/types.ts +20 -0
  270. package/components/wd-sticky-box/wd-sticky-box.vue +157 -0
  271. package/components/wd-swipe-action/index.scss +22 -0
  272. package/components/wd-swipe-action/types.ts +87 -0
  273. package/components/wd-swipe-action/wd-swipe-action.vue +320 -0
  274. package/components/wd-swiper/index.scss +69 -0
  275. package/components/wd-swiper/types.ts +275 -0
  276. package/components/wd-swiper/wd-swiper.vue +332 -0
  277. package/components/wd-swiper-nav/index.scss +179 -0
  278. package/components/wd-swiper-nav/types.ts +42 -0
  279. package/components/wd-swiper-nav/wd-swiper-nav.vue +42 -0
  280. package/components/wd-switch/index.scss +177 -0
  281. package/components/wd-switch/types.ts +93 -0
  282. package/components/wd-switch/wd-switch.vue +107 -0
  283. package/components/wd-tab/index.scss +16 -0
  284. package/components/wd-tab/types.ts +45 -0
  285. package/components/wd-tab/wd-tab.vue +99 -0
  286. package/components/wd-tabbar/index.scss +71 -0
  287. package/components/wd-tabbar/types.ts +79 -0
  288. package/components/wd-tabbar/wd-tabbar.vue +109 -0
  289. package/components/wd-tabbar-item/index.scss +50 -0
  290. package/components/wd-tabbar-item/types.ts +45 -0
  291. package/components/wd-tabbar-item/wd-tabbar-item.vue +101 -0
  292. package/components/wd-table/index.scss +128 -0
  293. package/components/wd-table/types.ts +160 -0
  294. package/components/wd-table/wd-table.vue +331 -0
  295. package/components/wd-table-column/index.scss +15 -0
  296. package/components/wd-table-column/types.ts +81 -0
  297. package/components/wd-table-column/wd-table-column.vue +198 -0
  298. package/components/wd-tabs/index.scss +332 -0
  299. package/components/wd-tabs/types.ts +155 -0
  300. package/components/wd-tabs/wd-tabs.vue +508 -0
  301. package/components/wd-tag/index.scss +325 -0
  302. package/components/wd-tag/types.ts +90 -0
  303. package/components/wd-tag/wd-tag.vue +158 -0
  304. package/components/wd-text/index.scss +52 -0
  305. package/components/wd-text/types.ts +107 -0
  306. package/components/wd-text/wd-text.vue +141 -0
  307. package/components/wd-textarea/index.scss +112 -0
  308. package/components/wd-textarea/types.ts +151 -0
  309. package/components/wd-textarea/wd-textarea.vue +212 -0
  310. package/components/wd-toast/index.scss +92 -0
  311. package/components/wd-toast/index.ts +97 -0
  312. package/components/wd-toast/types.ts +190 -0
  313. package/components/wd-toast/wd-toast.vue +158 -0
  314. package/components/wd-tooltip/index.scss +77 -0
  315. package/components/wd-tooltip/types.ts +105 -0
  316. package/components/wd-tooltip/wd-tooltip.vue +169 -0
  317. package/components/wd-tour/index.scss +106 -0
  318. package/components/wd-tour/types.ts +268 -0
  319. package/components/wd-tour/wd-tour.vue +518 -0
  320. package/components/wd-transition/index.scss +67 -0
  321. package/components/wd-transition/types.ts +106 -0
  322. package/components/wd-transition/wd-transition.vue +238 -0
  323. package/components/wd-upload/index.scss +204 -0
  324. package/components/wd-upload/types.ts +390 -0
  325. package/components/wd-upload/wd-upload.vue +565 -0
  326. package/components/wd-video-preview/index.scss +54 -0
  327. package/components/wd-video-preview/index.ts +64 -0
  328. package/components/wd-video-preview/types.ts +66 -0
  329. package/components/wd-video-preview/wd-video-preview.vue +141 -0
  330. package/components/wd-watermark/index.scss +21 -0
  331. package/components/wd-watermark/types.ts +130 -0
  332. package/components/wd-watermark/wd-watermark.vue +718 -0
  333. package/components/wot-ui/wot-ui.vue +5 -0
  334. package/composables/index.ts +16 -0
  335. package/composables/useCell.ts +34 -0
  336. package/composables/useChildren.ts +120 -0
  337. package/composables/useConfigProvider.ts +45 -0
  338. package/composables/useCountDown.ts +138 -0
  339. package/composables/useDeviceInfo.ts +136 -0
  340. package/composables/useLockScroll.ts +37 -0
  341. package/composables/useParent.ts +51 -0
  342. package/composables/usePopover.ts +212 -0
  343. package/composables/useQueue.ts +52 -0
  344. package/composables/useRaf.ts +37 -0
  345. package/composables/useTouch.ts +43 -0
  346. package/composables/useTranslate.ts +12 -0
  347. package/composables/useUpload.ts +366 -0
  348. package/global.d.ts +106 -0
  349. package/index.ts +6 -0
  350. package/locale/index.ts +32 -0
  351. package/locale/lang/ar-SA.ts +150 -0
  352. package/locale/lang/de-DE.ts +150 -0
  353. package/locale/lang/en-US.ts +150 -0
  354. package/locale/lang/es-ES.ts +150 -0
  355. package/locale/lang/fr-FR.ts +150 -0
  356. package/locale/lang/ja-JP.ts +150 -0
  357. package/locale/lang/ko-KR.ts +150 -0
  358. package/locale/lang/pt-PT.ts +150 -0
  359. package/locale/lang/ru-RU.ts +150 -0
  360. package/locale/lang/th-TH.ts +150 -0
  361. package/locale/lang/tr-TR.ts +155 -0
  362. package/locale/lang/ug-CN.ts +154 -0
  363. package/locale/lang/vi-VN.ts +89 -0
  364. package/locale/lang/zh-CN.ts +154 -0
  365. package/locale/lang/zh-HK.ts +78 -0
  366. package/locale/lang/zh-TW.ts +78 -0
  367. package/package.json +1 -11
  368. package/styles/iconfont/iconfont.scss +1243 -0
  369. package/styles/mixin/_config.scss +7 -0
  370. package/styles/mixin/_function.scss +44 -0
  371. package/styles/mixin/_mixin.scss +473 -0
  372. package/styles/theme/base/color.scss +210 -0
  373. package/styles/theme/base/font.scss +13 -0
  374. package/styles/theme/base/index.scss +8 -0
  375. package/styles/theme/base/insets.scss +32 -0
  376. package/styles/theme/base/number.scss +36 -0
  377. package/styles/theme/base/opacity.scss +9 -0
  378. package/styles/theme/base/radius.scss +13 -0
  379. package/styles/theme/base/stroke.scss +9 -0
  380. package/styles/theme/base/typography.scss +44 -0
  381. package/styles/theme/dark.scss +101 -0
  382. package/styles/theme/index.scss +16 -0
  383. package/styles/theme/light.scss +101 -0
  384. package/styles/variable.scss +472 -0
  385. package/tags.json +1 -0
  386. package/web-types.json +1 -0
@@ -0,0 +1,1243 @@
1
+ @font-face {
2
+ font-family: "wd-icons";
3
+ /* Project id 5024693 */
4
+ src: url('//at.alicdn.com/t/c/font_5024693_esasb18zrbp.eot?t=1773909649753');
5
+ /* IE9 */
6
+ src: url('//at.alicdn.com/t/c/font_5024693_esasb18zrbp.eot?t=1773909649753#iefix') format('embedded-opentype'),
7
+ /* IE6-IE8 */
8
+ url('//at.alicdn.com/t/c/font_5024693_esasb18zrbp.woff?t=1773909649753') format('woff'),
9
+ url('//at.alicdn.com/t/c/font_5024693_esasb18zrbp.ttf?t=1773909649753') format('truetype'),
10
+ url('//at.alicdn.com/t/c/font_5024693_esasb18zrbp.svg?t=1773909649753#wd-icons') format('svg');
11
+ }
12
+
13
+ /* #ifdef APP-PLUS || H5 */
14
+ /*
15
+ @font-face {
16
+ font-family: 'wd-icons';
17
+ src:
18
+ url('./wd-icons.ttf') format('truetype');
19
+ font-weight: normal;
20
+ font-style: normal;
21
+ }
22
+ */
23
+ /* #endif */
24
+
25
+ .wd-icon-expand:before {
26
+ content: "\e809";
27
+ }
28
+
29
+ .wd-icon-del:before {
30
+ content: "\e80a";
31
+ }
32
+
33
+ .wd-icon-multiple-horizontal:before {
34
+ content: "\e80b";
35
+ }
36
+
37
+ .wd-icon-left:before {
38
+ content: "\e80c";
39
+ }
40
+
41
+ .wd-icon-left-circle:before {
42
+ content: "\e80d";
43
+ }
44
+
45
+ .wd-icon-down-circle:before {
46
+ content: "\e80e";
47
+ }
48
+
49
+ .wd-icon-caret-down:before {
50
+ content: "\e80f";
51
+ }
52
+
53
+ .wd-icon-double-left:before {
54
+ content: "\e810";
55
+ }
56
+
57
+ .wd-icon-caret-right:before {
58
+ content: "\e811";
59
+ }
60
+
61
+ .wd-icon-double-right:before {
62
+ content: "\e812";
63
+ }
64
+
65
+ .wd-icon-double-down:before {
66
+ content: "\e813";
67
+ }
68
+
69
+ .wd-icon-down:before {
70
+ content: "\e814";
71
+ }
72
+
73
+ .wd-icon-arrow-right:before {
74
+ content: "\e815";
75
+ }
76
+
77
+ .wd-icon-caret-left:before {
78
+ content: "\e816";
79
+ }
80
+
81
+ .wd-icon-arrow-down:before {
82
+ content: "\e817";
83
+ }
84
+
85
+ .wd-icon-arrow-left:before {
86
+ content: "\e818";
87
+ }
88
+
89
+ .wd-icon-up:before {
90
+ content: "\e6ed";
91
+ }
92
+
93
+ .wd-icon-arrow-rise:before {
94
+ content: "\e6e8";
95
+ }
96
+
97
+ .wd-icon-double-up:before {
98
+ content: "\e6e9";
99
+ }
100
+
101
+ .wd-icon-to-right:before {
102
+ content: "\e6ec";
103
+ }
104
+
105
+ .wd-icon-up-circle:before {
106
+ content: "\e7f9";
107
+ }
108
+
109
+ .wd-icon-sort-fill:before {
110
+ content: "\e6eb";
111
+ }
112
+
113
+ .wd-icon-to-top:before {
114
+ content: "\e7fa";
115
+ }
116
+
117
+ .wd-icon-to-left:before {
118
+ content: "\e7fb";
119
+ }
120
+
121
+ .wd-icon-menu-fold:before {
122
+ content: "\e7fc";
123
+ }
124
+
125
+ .wd-icon-swap:before {
126
+ content: "\e7fd";
127
+ }
128
+
129
+ .wd-icon-drag-arrow:before {
130
+ content: "\e7fe";
131
+ }
132
+
133
+ .wd-icon-sort-fill-1:before {
134
+ content: "\e7ff";
135
+ }
136
+
137
+ .wd-icon-to-bottom:before {
138
+ content: "\e800";
139
+ }
140
+
141
+ .wd-icon-caret-up:before {
142
+ content: "\e6ea";
143
+ }
144
+
145
+ .wd-icon-rotate-left:before {
146
+ content: "\e801";
147
+ }
148
+
149
+ .wd-icon-arrow-up:before {
150
+ content: "\e802";
151
+ }
152
+
153
+ .wd-icon-arrow-fall:before {
154
+ content: "\e803";
155
+ }
156
+
157
+ .wd-icon-right:before {
158
+ content: "\e804";
159
+ }
160
+
161
+ .wd-icon-menu-unfold:before {
162
+ content: "\e805";
163
+ }
164
+
165
+ .wd-icon-rotate-right:before {
166
+ content: "\e806";
167
+ }
168
+
169
+ .wd-icon-shrink:before {
170
+ content: "\e807";
171
+ }
172
+
173
+ .wd-icon-right-circle:before {
174
+ content: "\e808";
175
+ }
176
+
177
+ .wd-icon-bold:before {
178
+ content: "\e6ee";
179
+ }
180
+
181
+ .wd-icon-filter-fill:before {
182
+ content: "\e6ef";
183
+ }
184
+
185
+ .wd-icon-deleteall:before {
186
+ content: "\e7eb";
187
+ }
188
+
189
+ .wd-icon-brush:before {
190
+ content: "\e7ec";
191
+ }
192
+
193
+ .wd-icon-font-colors:before {
194
+ content: "\e7ed";
195
+ }
196
+
197
+ .wd-icon-edit:before {
198
+ content: "\e7ee";
199
+ }
200
+
201
+ .wd-icon-filter:before {
202
+ content: "\e7ef";
203
+ }
204
+
205
+ .wd-icon-find-replace:before {
206
+ content: "\e7f0";
207
+ }
208
+
209
+ .wd-icon-eraser:before {
210
+ content: "\e7f1";
211
+ }
212
+
213
+ .wd-icon-copy:before {
214
+ content: "\e7f2";
215
+ }
216
+
217
+ .wd-icon-delete:before {
218
+ content: "\e7f3";
219
+ }
220
+
221
+ .wd-icon-circular:before {
222
+ content: "\e7f4";
223
+ }
224
+
225
+ .wd-icon-bg-colors:before {
226
+ content: "\e7f5";
227
+ }
228
+
229
+ .wd-icon-align-right:before {
230
+ content: "\e7f6";
231
+ }
232
+
233
+ .wd-icon-align-center:before {
234
+ content: "\e7f7";
235
+ }
236
+
237
+ .wd-icon-align-left:before {
238
+ content: "\e7f8";
239
+ }
240
+
241
+ .wd-icon-unordered-list:before {
242
+ content: "\e7d6";
243
+ }
244
+
245
+ .wd-icon-undo:before {
246
+ content: "\e7d7";
247
+ }
248
+
249
+ .wd-icon-zoom-out:before {
250
+ content: "\e7d8";
251
+ }
252
+
253
+ .wd-icon-sort-ascending:before {
254
+ content: "\e7d9";
255
+ }
256
+
257
+ .wd-icon-scissor:before {
258
+ content: "\e7da";
259
+ }
260
+
261
+ .wd-icon-quote:before {
262
+ content: "\e7db";
263
+ }
264
+
265
+ .wd-icon-sort-descending:before {
266
+ content: "\e7dc";
267
+ }
268
+
269
+ .wd-icon-link:before {
270
+ content: "\e7dd";
271
+ }
272
+
273
+ .wd-icon-ordered-list:before {
274
+ content: "\e7de";
275
+ }
276
+
277
+ .wd-icon-h3:before {
278
+ content: "\e7df";
279
+ }
280
+
281
+ .wd-icon-h4:before {
282
+ content: "\e7e0";
283
+ }
284
+
285
+ .wd-icon-italic:before {
286
+ content: "\e7e1";
287
+ }
288
+
289
+ .wd-icon-redo:before {
290
+ content: "\e7e2";
291
+ }
292
+
293
+ .wd-icon-highlight:before {
294
+ content: "\e7e3";
295
+ }
296
+
297
+ .wd-icon-original-size:before {
298
+ content: "\e7e4";
299
+ }
300
+
301
+ .wd-icon-h1:before {
302
+ content: "\e7e5";
303
+ }
304
+
305
+ .wd-icon-h5:before {
306
+ content: "\e7e6";
307
+ }
308
+
309
+ .wd-icon-oblique-line:before {
310
+ content: "\e7e7";
311
+ }
312
+
313
+ .wd-icon-line-height:before {
314
+ content: "\e7e8";
315
+ }
316
+
317
+ .wd-icon-h7:before {
318
+ content: "\e7e9";
319
+ }
320
+
321
+ .wd-icon-h2:before {
322
+ content: "\e7ea";
323
+ }
324
+
325
+ .wd-icon-apps:before {
326
+ content: "\e7cb";
327
+ }
328
+
329
+ .wd-icon-application:before {
330
+ content: "\e7cc";
331
+ }
332
+
333
+ .wd-icon-no-wifi:before {
334
+ content: "\e6f7";
335
+ }
336
+
337
+ .wd-icon-no-result:before {
338
+ content: "\e7cd";
339
+ }
340
+
341
+ .wd-icon-no-product:before {
342
+ content: "\e7ce";
343
+ }
344
+
345
+ .wd-icon-no-message:before {
346
+ content: "\e7cf";
347
+ }
348
+
349
+ .wd-icon-no-content:before {
350
+ content: "\e6f6";
351
+ }
352
+
353
+ .wd-icon-no-comment:before {
354
+ content: "\e7d0";
355
+ }
356
+
357
+ .wd-icon-no-collection:before {
358
+ content: "\e6f5";
359
+ }
360
+
361
+ .wd-icon-failpayment:before {
362
+ content: "\e7d1";
363
+ }
364
+
365
+ .wd-icon-formula:before {
366
+ content: "\e6f0";
367
+ }
368
+
369
+ .wd-icon-zoom-in:before {
370
+ content: "\e6f4";
371
+ }
372
+
373
+ .wd-icon-sort:before {
374
+ content: "\e7d2";
375
+ }
376
+
377
+ .wd-icon-textarea:before {
378
+ content: "\e6f3";
379
+ }
380
+
381
+ .wd-icon-paste:before {
382
+ content: "\e6f2";
383
+ }
384
+
385
+ .wd-icon-h6:before {
386
+ content: "\e6f1";
387
+ }
388
+
389
+ .wd-icon-number:before {
390
+ content: "\e7d3";
391
+ }
392
+
393
+ .wd-icon-underline:before {
394
+ content: "\e7d4";
395
+ }
396
+
397
+ .wd-icon-strikethrough:before {
398
+ content: "\e7d5";
399
+ }
400
+
401
+ .wd-icon-drag-dot:before {
402
+ content: "\e7bc";
403
+ }
404
+
405
+ .wd-icon-dice:before {
406
+ content: "\e6fd";
407
+ }
408
+
409
+ .wd-icon-drive-file:before {
410
+ content: "\e7bd";
411
+ }
412
+
413
+ .wd-icon-email:before {
414
+ content: "\e7be";
415
+ }
416
+
417
+ .wd-icon-drag-dot-vertical:before {
418
+ content: "\e7bf";
419
+ }
420
+
421
+ .wd-icon-compass:before {
422
+ content: "\e6fc";
423
+ }
424
+
425
+ .wd-icon-dashboard:before {
426
+ content: "\e7c0";
427
+ }
428
+
429
+ .wd-icon-common:before {
430
+ content: "\e6fb";
431
+ }
432
+
433
+ .wd-icon-desktop:before {
434
+ content: "\e7c1";
435
+ }
436
+
437
+ .wd-icon-copyright:before {
438
+ content: "\e7c2";
439
+ }
440
+
441
+ .wd-icon-cloud:before {
442
+ content: "\e7c3";
443
+ }
444
+
445
+ .wd-icon-company:before {
446
+ content: "\e7c4";
447
+ }
448
+
449
+ .wd-icon-command:before {
450
+ content: "\e7c5";
451
+ }
452
+
453
+ .wd-icon-camera:before {
454
+ content: "\e6fa";
455
+ }
456
+
457
+ .wd-icon-camera-fill:before {
458
+ content: "\e6f9";
459
+ }
460
+
461
+ .wd-icon-branch:before {
462
+ content: "\e6f8";
463
+ }
464
+
465
+ .wd-icon-calendar-line:before {
466
+ content: "\e7c6";
467
+ }
468
+
469
+ .wd-icon-bug:before {
470
+ content: "\e7c7";
471
+ }
472
+
473
+ .wd-icon-bulb:before {
474
+ content: "\e7c8";
475
+ }
476
+
477
+ .wd-icon-book:before {
478
+ content: "\e7c9";
479
+ }
480
+
481
+ .wd-icon-archive:before {
482
+ content: "\e7ca";
483
+ }
484
+
485
+ .wd-icon-gift:before {
486
+ content: "\e700";
487
+ }
488
+
489
+ .wd-icon-image-failloading:before {
490
+ content: "\e7aa";
491
+ }
492
+
493
+ .wd-icon-interaction:before {
494
+ content: "\e7ab";
495
+ }
496
+
497
+ .wd-icon-image-close:before {
498
+ content: "\e7ac";
499
+ }
500
+
501
+ .wd-icon-Fire:before {
502
+ content: "\e7ad";
503
+ }
504
+
505
+ .wd-icon-image:before {
506
+ content: "\e7ae";
507
+ }
508
+
509
+ .wd-icon-idcard:before {
510
+ content: "\e7af";
511
+ }
512
+
513
+ .wd-icon-folder-add:before {
514
+ content: "\e7b0";
515
+ }
516
+
517
+ .wd-icon-face-frown-fill:before {
518
+ content: "\e6fe";
519
+ }
520
+
521
+ .wd-icon-folder:before {
522
+ content: "\e7b1";
523
+ }
524
+
525
+ .wd-icon-folder-delete:before {
526
+ content: "\e7b2";
527
+ }
528
+
529
+ .wd-icon-file-video:before {
530
+ content: "\e6ff";
531
+ }
532
+
533
+ .wd-icon-file:before {
534
+ content: "\e7b3";
535
+ }
536
+
537
+ .wd-icon-file-pdf:before {
538
+ content: "\e7b4";
539
+ }
540
+
541
+ .wd-icon-experiment:before {
542
+ content: "\e7b5";
543
+ }
544
+
545
+ .wd-icon-file-audio:before {
546
+ content: "\e7b6";
547
+ }
548
+
549
+ .wd-icon-face-meh-fill:before {
550
+ content: "\e7b7";
551
+ }
552
+
553
+ .wd-icon-file-image:before {
554
+ content: "\e7b8";
555
+ }
556
+
557
+ .wd-icon-empty:before {
558
+ content: "\e7b9";
559
+ }
560
+
561
+ .wd-icon-face-smile-fill:before {
562
+ content: "\e7ba";
563
+ }
564
+
565
+ .wd-icon-ear:before {
566
+ content: "\e7bb";
567
+ }
568
+
569
+ .wd-icon-mobile:before {
570
+ content: "\e7a2";
571
+ }
572
+
573
+ .wd-icon-lock:before {
574
+ content: "\e702";
575
+ }
576
+
577
+ .wd-icon-mind-mapping:before {
578
+ content: "\e7a3";
579
+ }
580
+
581
+ .wd-icon-location:before {
582
+ content: "\e7a4";
583
+ }
584
+
585
+ .wd-icon-loop:before {
586
+ content: "\e7a5";
587
+ }
588
+
589
+ .wd-icon-language:before {
590
+ content: "\e701";
591
+ }
592
+
593
+ .wd-icon-locate:before {
594
+ content: "\e7a6";
595
+ }
596
+
597
+ .wd-icon-keyboard:before {
598
+ content: "\e7a7";
599
+ }
600
+
601
+ .wd-icon-loading:before {
602
+ content: "\e7a8";
603
+ }
604
+
605
+ .wd-icon-layout:before {
606
+ content: "\e7a9";
607
+ }
608
+
609
+ .wd-icon-phone:before {
610
+ content: "\e705";
611
+ }
612
+
613
+ .wd-icon-printer:before {
614
+ content: "\e798";
615
+ }
616
+
617
+ .wd-icon-pen-fill:before {
618
+ content: "\e799";
619
+ }
620
+
621
+ .wd-icon-organization:before {
622
+ content: "\e79a";
623
+ }
624
+
625
+ .wd-icon-notification-close:before {
626
+ content: "\e704";
627
+ }
628
+
629
+ .wd-icon-old-version:before {
630
+ content: "\e79b";
631
+ }
632
+
633
+ .wd-icon-moon:before {
634
+ content: "\e79c";
635
+ }
636
+
637
+ .wd-icon-notification:before {
638
+ content: "\e79d";
639
+ }
640
+
641
+ .wd-icon-nav:before {
642
+ content: "\e79e";
643
+ }
644
+
645
+ .wd-icon-mosaic:before {
646
+ content: "\e79f";
647
+ }
648
+
649
+ .wd-icon-man:before {
650
+ content: "\e703";
651
+ }
652
+
653
+ .wd-icon-moon-fill:before {
654
+ content: "\e7a0";
655
+ }
656
+
657
+ .wd-icon-menu:before {
658
+ content: "\e7a1";
659
+ }
660
+
661
+ .wd-icon-tags:before {
662
+ content: "\e788";
663
+ }
664
+
665
+ .wd-icon-tag:before {
666
+ content: "\e789";
667
+ }
668
+
669
+ .wd-icon-thunderbolt:before {
670
+ content: "\e78a";
671
+ }
672
+
673
+ .wd-icon-sun:before {
674
+ content: "\e709";
675
+ }
676
+
677
+ .wd-icon-store:before {
678
+ content: "\e708";
679
+ }
680
+
681
+ .wd-icon-sun-fill:before {
682
+ content: "\e78b";
683
+ }
684
+
685
+ .wd-icon-subscribed:before {
686
+ content: "\e78c";
687
+ }
688
+
689
+ .wd-icon-stamp:before {
690
+ content: "\e78d";
691
+ }
692
+
693
+ .wd-icon-subscribe:before {
694
+ content: "\e78e";
695
+ }
696
+
697
+ .wd-icon-skin:before {
698
+ content: "\e78f";
699
+ }
700
+
701
+ .wd-icon-storage:before {
702
+ content: "\e790";
703
+ }
704
+
705
+ .wd-icon-subscribe-add:before {
706
+ content: "\e791";
707
+ }
708
+
709
+ .wd-icon-shake:before {
710
+ content: "\e792";
711
+ }
712
+
713
+ .wd-icon-safe:before {
714
+ content: "\e707";
715
+ }
716
+
717
+ .wd-icon-public:before {
718
+ content: "\e706";
719
+ }
720
+
721
+ .wd-icon-pen:before {
722
+ content: "\e793";
723
+ }
724
+
725
+ .wd-icon-robot:before {
726
+ content: "\e794";
727
+ }
728
+
729
+ .wd-icon-robot-add:before {
730
+ content: "\e795";
731
+ }
732
+
733
+ .wd-icon-pushpin:before {
734
+ content: "\e796";
735
+ }
736
+
737
+ .wd-icon-qrcode:before {
738
+ content: "\e797";
739
+ }
740
+
741
+ .wd-icon-eye-fill:before {
742
+ content: "\e778";
743
+ }
744
+
745
+ .wd-icon-code:before {
746
+ content: "\e779";
747
+ }
748
+
749
+ .wd-icon-code-square:before {
750
+ content: "\e70e";
751
+ }
752
+
753
+ .wd-icon-Export:before {
754
+ content: "\e77a";
755
+ }
756
+
757
+ .wd-icon-download:before {
758
+ content: "\e77b";
759
+ }
760
+
761
+ .wd-icon-clock-circle-fill:before {
762
+ content: "\e77c";
763
+ }
764
+
765
+ .wd-icon-code-block:before {
766
+ content: "\e77d";
767
+ }
768
+
769
+ .wd-icon-cloud-download:before {
770
+ content: "\e77e";
771
+ }
772
+
773
+ .wd-icon-buble-circle-fill:before {
774
+ content: "\e70d";
775
+ }
776
+
777
+ .wd-icon-barcode:before {
778
+ content: "\e77f";
779
+ }
780
+
781
+ .wd-icon-at:before {
782
+ content: "\e780";
783
+ }
784
+
785
+ .wd-icon-wifi:before {
786
+ content: "\e70c";
787
+ }
788
+
789
+ .wd-icon-tool:before {
790
+ content: "\e70a";
791
+ }
792
+
793
+ .wd-icon-woman:before {
794
+ content: "\e781";
795
+ }
796
+
797
+ .wd-icon-video-camera:before {
798
+ content: "\e70b";
799
+ }
800
+
801
+ .wd-icon-user:before {
802
+ content: "\e782";
803
+ }
804
+
805
+ .wd-icon-user-group:before {
806
+ content: "\e783";
807
+ }
808
+
809
+ .wd-icon-time-line:before {
810
+ content: "\e784";
811
+ }
812
+
813
+ .wd-icon-trophy:before {
814
+ content: "\e785";
815
+ }
816
+
817
+ .wd-icon-user-add:before {
818
+ content: "\e786";
819
+ }
820
+
821
+ .wd-icon-unlock:before {
822
+ content: "\e787";
823
+ }
824
+
825
+ .wd-icon-refresh:before {
826
+ content: "\e765";
827
+ }
828
+
829
+ .wd-icon-more:before {
830
+ content: "\e766";
831
+ }
832
+
833
+ .wd-icon-more-vertical:before {
834
+ content: "\e767";
835
+ }
836
+
837
+ .wd-icon-mic:before {
838
+ content: "\e713";
839
+ }
840
+
841
+ .wd-icon-module-fill:before {
842
+ content: "\e768";
843
+ }
844
+
845
+ .wd-icon-mfill:before {
846
+ content: "\e769";
847
+ }
848
+
849
+ .wd-icon-message:before {
850
+ content: "\e76a";
851
+ }
852
+
853
+ .wd-icon-message-banned:before {
854
+ content: "\e76b";
855
+ }
856
+
857
+ .wd-icon-lightning-circle-fill:before {
858
+ content: "\e712";
859
+ }
860
+
861
+ .wd-icon-import:before {
862
+ content: "\e76c";
863
+ }
864
+
865
+ .wd-icon-list:before {
866
+ content: "\e76d";
867
+ }
868
+
869
+ .wd-icon-Launch:before {
870
+ content: "\e76e";
871
+ }
872
+
873
+ .wd-icon-home:before {
874
+ content: "\e711";
875
+ }
876
+
877
+ .wd-icon-home-fill:before {
878
+ content: "\e76f";
879
+ }
880
+
881
+ .wd-icon-heart:before {
882
+ content: "\e770";
883
+ }
884
+
885
+ .wd-icon-history:before {
886
+ content: "\e771";
887
+ }
888
+
889
+ .wd-icon-headset:before {
890
+ content: "\e772";
891
+ }
892
+
893
+ .wd-icon-heart-fill:before {
894
+ content: "\e773";
895
+ }
896
+
897
+ .wd-icon-headset-off:before {
898
+ content: "\e710";
899
+ }
900
+
901
+ .wd-icon-headset-fill:before {
902
+ content: "\e774";
903
+ }
904
+
905
+ .wd-icon-headset-off-fill:before {
906
+ content: "\e775";
907
+ }
908
+
909
+ .wd-icon-eye:before {
910
+ content: "\e776";
911
+ }
912
+
913
+ .wd-icon-eye-invisible:before {
914
+ content: "\e777";
915
+ }
916
+
917
+ .wd-icon-eye-invisible-fill:before {
918
+ content: "\e70f";
919
+ }
920
+
921
+ .wd-icon-live-broadcast:before {
922
+ content: "\e753";
923
+ }
924
+
925
+ .wd-icon-fullscreen:before {
926
+ content: "\e71b";
927
+ }
928
+
929
+ .wd-icon-fullscreen-exit:before {
930
+ content: "\e71a";
931
+ }
932
+
933
+ .wd-icon-forward:before {
934
+ content: "\e754";
935
+ }
936
+
937
+ .wd-icon-backward:before {
938
+ content: "\e755";
939
+ }
940
+
941
+ .wd-icon-voice:before {
942
+ content: "\e719";
943
+ }
944
+
945
+ .wd-icon-upload:before {
946
+ content: "\e756";
947
+ }
948
+
949
+ .wd-icon-translate:before {
950
+ content: "\e718";
951
+ }
952
+
953
+ .wd-icon-thumb-up:before {
954
+ content: "\e757";
955
+ }
956
+
957
+ .wd-icon-sync:before {
958
+ content: "\e758";
959
+ }
960
+
961
+ .wd-icon-thumb-down:before {
962
+ content: "\e759";
963
+ }
964
+
965
+ .wd-icon-thumb-up-fill:before {
966
+ content: "\e75a";
967
+ }
968
+
969
+ .wd-icon-star:before {
970
+ content: "\e717";
971
+ }
972
+
973
+ .wd-icon-thumb-down-fill:before {
974
+ content: "\e75b";
975
+ }
976
+
977
+ .wd-icon-share-internal:before {
978
+ content: "\e75c";
979
+ }
980
+
981
+ .wd-icon-star-fill:before {
982
+ content: "\e75d";
983
+ }
984
+
985
+ .wd-icon-share-external:before {
986
+ content: "\e716";
987
+ }
988
+
989
+ .wd-icon-settings:before {
990
+ content: "\e75e";
991
+ }
992
+
993
+ .wd-icon-share-alt:before {
994
+ content: "\e75f";
995
+ }
996
+
997
+ .wd-icon-send:before {
998
+ content: "\e760";
999
+ }
1000
+
1001
+ .wd-icon-select-all:before {
1002
+ content: "\e715";
1003
+ }
1004
+
1005
+ .wd-icon-poweroff:before {
1006
+ content: "\e714";
1007
+ }
1008
+
1009
+ .wd-icon-search-line:before {
1010
+ content: "\e761";
1011
+ }
1012
+
1013
+ .wd-icon-save:before {
1014
+ content: "\e762";
1015
+ }
1016
+
1017
+ .wd-icon-scan:before {
1018
+ content: "\e763";
1019
+ }
1020
+
1021
+ .wd-icon-reply:before {
1022
+ content: "\e764";
1023
+ }
1024
+
1025
+ .wd-icon-check-half-square-fill:before {
1026
+ content: "\e746";
1027
+ }
1028
+
1029
+ .wd-icon-check-circle:before {
1030
+ content: "\e724";
1031
+ }
1032
+
1033
+ .wd-icon-check-circle-radio-fill:before {
1034
+ content: "\e723";
1035
+ }
1036
+
1037
+ .wd-icon-check-circle-fill:before {
1038
+ content: "\e747";
1039
+ }
1040
+
1041
+ .wd-icon-sound:before {
1042
+ content: "\e722";
1043
+ }
1044
+
1045
+ .wd-icon-skip-next-fill:before {
1046
+ content: "\e720";
1047
+ }
1048
+
1049
+ .wd-icon-sound-fill:before {
1050
+ content: "\e721";
1051
+ }
1052
+
1053
+ .wd-icon-skip-previous:before {
1054
+ content: "\e748";
1055
+ }
1056
+
1057
+ .wd-icon-skip-previous-fill:before {
1058
+ content: "\e749";
1059
+ }
1060
+
1061
+ .wd-icon-skip-next:before {
1062
+ content: "\e74a";
1063
+ }
1064
+
1065
+ .wd-icon-record-stop:before {
1066
+ content: "\e71f";
1067
+ }
1068
+
1069
+ .wd-icon-record:before {
1070
+ content: "\e74b";
1071
+ }
1072
+
1073
+ .wd-icon-play-circle:before {
1074
+ content: "\e74c";
1075
+ }
1076
+
1077
+ .wd-icon-play-circle-fill:before {
1078
+ content: "\e74d";
1079
+ }
1080
+
1081
+ .wd-icon-play-arrow:before {
1082
+ content: "\e71e";
1083
+ }
1084
+
1085
+ .wd-icon-play-arrow-fill:before {
1086
+ content: "\e74e";
1087
+ }
1088
+
1089
+ .wd-icon-pause-circle:before {
1090
+ content: "\e71d";
1091
+ }
1092
+
1093
+ .wd-icon-pause:before {
1094
+ content: "\e74f";
1095
+ }
1096
+
1097
+ .wd-icon-mute-fill:before {
1098
+ content: "\e71c";
1099
+ }
1100
+
1101
+ .wd-icon-pause-circle-fill:before {
1102
+ content: "\e750";
1103
+ }
1104
+
1105
+ .wd-icon-music:before {
1106
+ content: "\e751";
1107
+ }
1108
+
1109
+ .wd-icon-mute:before {
1110
+ content: "\e752";
1111
+ }
1112
+
1113
+ .wd-icon-page-fill:before {
1114
+ content: "\e73b";
1115
+ }
1116
+
1117
+ .wd-icon-minus-square:before {
1118
+ content: "\e72e";
1119
+ }
1120
+
1121
+ .wd-icon-minus-square-3px:before {
1122
+ content: "\e73c";
1123
+ }
1124
+
1125
+ .wd-icon-minus-circle:before {
1126
+ content: "\e73d";
1127
+ }
1128
+
1129
+ .wd-icon-minus-circle-fill:before {
1130
+ content: "\e72d";
1131
+ }
1132
+
1133
+ .wd-icon-info:before {
1134
+ content: "\e73e";
1135
+ }
1136
+
1137
+ .wd-icon-info-circle:before {
1138
+ content: "\e72c";
1139
+ }
1140
+
1141
+ .wd-icon-info-circle-fill:before {
1142
+ content: "\e73f";
1143
+ }
1144
+
1145
+ .wd-icon-exclamation:before {
1146
+ content: "\e72b";
1147
+ }
1148
+
1149
+ .wd-icon-exclamation-polygon-fill:before {
1150
+ content: "\e740";
1151
+ }
1152
+
1153
+ .wd-icon-exclamation-circle:before {
1154
+ content: "\e72a";
1155
+ }
1156
+
1157
+ .wd-icon-exclamation-circle-fill:before {
1158
+ content: "\e741";
1159
+ }
1160
+
1161
+ .wd-icon-doublecheck:before {
1162
+ content: "\e729";
1163
+ }
1164
+
1165
+ .wd-icon-close:before {
1166
+ content: "\e728";
1167
+ }
1168
+
1169
+ .wd-icon-division:before {
1170
+ content: "\e742";
1171
+ }
1172
+
1173
+ .wd-icon-close-circle:before {
1174
+ content: "\e743";
1175
+ }
1176
+
1177
+ .wd-icon-close-circle-fill:before {
1178
+ content: "\e727";
1179
+ }
1180
+
1181
+ .wd-icon-clock-circle:before {
1182
+ content: "\e744";
1183
+ }
1184
+
1185
+ .wd-icon-check:before {
1186
+ content: "\e726";
1187
+ }
1188
+
1189
+ .wd-icon-check-square:before {
1190
+ content: "\e745";
1191
+ }
1192
+
1193
+ .wd-icon-check-square-fill:before {
1194
+ content: "\e725";
1195
+ }
1196
+
1197
+ .wd-icon-uncheck-square:before {
1198
+ content: "\e733";
1199
+ }
1200
+
1201
+ .wd-icon-stop:before {
1202
+ content: "\e732";
1203
+ }
1204
+
1205
+ .wd-icon-uncheck-circle:before {
1206
+ content: "\e734";
1207
+ }
1208
+
1209
+ .wd-icon-question-circle:before {
1210
+ content: "\e735";
1211
+ }
1212
+
1213
+ .wd-icon-question:before {
1214
+ content: "\e736";
1215
+ }
1216
+
1217
+ .wd-icon-question-circle-fill:before {
1218
+ content: "\e731";
1219
+ }
1220
+
1221
+ .wd-icon-plus-square-3px:before {
1222
+ content: "\e730";
1223
+ }
1224
+
1225
+ .wd-icon-plus:before {
1226
+ content: "\e737";
1227
+ }
1228
+
1229
+ .wd-icon-plus-square:before {
1230
+ content: "\e738";
1231
+ }
1232
+
1233
+ .wd-icon-plus-circle:before {
1234
+ content: "\e739";
1235
+ }
1236
+
1237
+ .wd-icon-plus-circle-fill:before {
1238
+ content: "\e72f";
1239
+ }
1240
+
1241
+ .wd-icon-minus:before {
1242
+ content: "\e73a";
1243
+ }