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