@cloudbase/weda-ui 2.0.28 → 3.1.2
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/dist/asset-manifest.json +17 -0
- package/dist/configs/actions/showModal.json +48 -0
- package/dist/configs/actions/showToast.json +41 -0
- package/dist/configs/components/auth.json +16 -0
- package/dist/configs/components/button.json +239 -0
- package/dist/configs/components/calendar.json +81 -0
- package/dist/configs/components/carousel.json +292 -0
- package/dist/configs/components/chart/bar.json +721 -0
- package/dist/configs/components/chart/line.json +674 -0
- package/dist/configs/components/chart/pie.json +494 -0
- package/dist/configs/components/chart/statisticsCard.json +376 -0
- package/dist/configs/components/container.json +50 -0
- package/dist/configs/components/dataView.json +239 -0
- package/dist/configs/components/drawer.json +115 -0
- package/dist/configs/components/form/checkbox.json +178 -0
- package/dist/configs/components/form/form.json +45 -0
- package/dist/configs/components/form/input.json +154 -0
- package/dist/configs/components/form/location.json +216 -0
- package/dist/configs/components/form/radio.json +203 -0
- package/dist/configs/components/form/richText.json +125 -0
- package/dist/configs/components/form/select.json +430 -0
- package/dist/configs/components/form/switch.json +58 -0
- package/dist/configs/components/form/textarea.json +116 -0
- package/dist/configs/components/form/tips.json +34 -0
- package/dist/configs/components/form/uploader.json +171 -0
- package/dist/configs/components/form/uploaderFile.json +158 -0
- package/dist/configs/components/graphicCard.json +413 -0
- package/dist/configs/components/image.json +187 -0
- package/dist/configs/components/link.json +79 -0
- package/dist/configs/components/listView.json +370 -0
- package/dist/configs/components/lottery.json +163 -0
- package/dist/configs/components/modal.json +72 -0
- package/dist/configs/components/navLayout.json +368 -0
- package/dist/configs/components/navigationBar.json +62 -0
- package/dist/configs/components/richtextview.json +26 -0
- package/dist/configs/components/scrollVeiw.json +253 -0
- package/dist/configs/components/slot.json +17 -0
- package/dist/configs/components/swiper.json +90 -0
- package/dist/configs/components/tabs.json +121 -0
- package/dist/configs/components/text.json +95 -0
- package/dist/configs/components/wedaVideo.json +89 -0
- package/dist/configs/components/wxOpenApi/phone.json +127 -0
- package/dist/configs/components/wxOpenApi/phoneCode.json +109 -0
- package/dist/configs/components/wxOpenApi/share.json +157 -0
- package/dist/configs/components/wxOpenApi/userInfo.json +156 -0
- package/dist/configs/index.d.ts +97 -0
- package/{src → dist}/configs/index.js +51 -57
- package/dist/docs/common/format.d.ts +13 -0
- package/dist/docs/common/format.js +103 -0
- package/dist/docs/common/tableView.d.ts +30 -0
- package/dist/docs/common/tableView.js +159 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.html +88 -0
- package/{src → dist}/index.js +0 -1
- package/dist/setupTests.d.ts +1 -0
- package/dist/setupTests.js +14 -0
- package/dist/static/js/bundle.js +963 -0
- package/dist/static/js/bundle.js.map +1 -0
- package/dist/static/js/main.chunk.js +8841 -0
- package/dist/static/js/main.chunk.js.map +1 -0
- package/dist/static/js/vendors~main.chunk.js +247885 -0
- package/dist/static/js/vendors~main.chunk.js.map +1 -0
- package/dist/static/media/ef6fa527e24e354765d806b826b41391.fa67580a.svg +627 -0
- package/dist/web/actions/index.d.ts +2 -0
- package/{src → dist}/web/actions/index.js +0 -0
- package/dist/web/actions/showModal/index.d.ts +3 -0
- package/dist/web/actions/showModal/index.js +66 -0
- package/dist/web/actions/showToast/index.d.ts +1 -0
- package/dist/web/actions/showToast/index.js +3 -0
- package/dist/web/components/auth/index.d.ts +10 -0
- package/dist/web/components/auth/index.js +37 -0
- package/{src → dist}/web/components/button/index.css +2 -2
- package/dist/web/components/button/index.d.ts +32 -0
- package/dist/web/components/button/index.js +48 -0
- package/{src → dist}/web/components/calendar/index.css +29 -29
- package/dist/web/components/calendar/index.d.ts +19 -0
- package/dist/web/components/calendar/index.js +181 -0
- package/dist/web/components/calendar/util.d.ts +13 -0
- package/dist/web/components/calendar/util.js +74 -0
- package/{src → dist}/web/components/carousel/index.css +11 -11
- package/dist/web/components/carousel/index.d.ts +41 -0
- package/dist/web/components/carousel/index.js +240 -0
- package/dist/web/components/chart/bar/index.d.ts +41 -0
- package/dist/web/components/chart/bar/index.js +56 -0
- package/dist/web/components/chart/common/config/bar.d.ts +48 -0
- package/dist/web/components/chart/common/config/bar.js +49 -0
- package/dist/web/components/chart/common/config/global.d.ts +13 -0
- package/dist/web/components/chart/common/config/global.js +16 -0
- package/dist/web/components/chart/common/config/line.d.ts +46 -0
- package/dist/web/components/chart/common/config/line.js +49 -0
- package/dist/web/components/chart/common/config/pie.d.ts +29 -0
- package/dist/web/components/chart/common/config/pie.js +36 -0
- package/dist/web/components/chart/common/core/eChartBar.d.ts +68 -0
- package/dist/web/components/chart/common/core/eChartBar.js +196 -0
- package/dist/web/components/chart/common/core/eChartBase.d.ts +128 -0
- package/dist/web/components/chart/common/core/eChartBase.js +346 -0
- package/dist/web/components/chart/common/core/eChartLine.d.ts +62 -0
- package/dist/web/components/chart/common/core/eChartLine.js +168 -0
- package/dist/web/components/chart/common/core/eChartPie.d.ts +50 -0
- package/dist/web/components/chart/common/core/eChartPie.js +132 -0
- package/dist/web/components/chart/common/core/type.d.ts +35 -0
- package/dist/web/components/chart/common/core/type.js +9 -0
- package/dist/web/components/chart/common/echarts.d.ts +2 -0
- package/{src/web/components/chart/common/echarts.ts → dist/web/components/chart/common/echarts.js} +12 -19
- package/dist/web/components/chart/common/useChart.d.ts +8 -0
- package/dist/web/components/chart/common/useChart.js +60 -0
- package/dist/web/components/chart/line/index.d.ts +39 -0
- package/dist/web/components/chart/line/index.js +53 -0
- package/dist/web/components/chart/pie/index.d.ts +27 -0
- package/dist/web/components/chart/pie/index.js +40 -0
- package/{src → dist}/web/components/chart/statisticsCard/index.css +12 -12
- package/dist/web/components/chart/statisticsCard/index.d.ts +85 -0
- package/dist/web/components/chart/statisticsCard/index.js +203 -0
- package/dist/web/components/chart/statisticsCard/interface.d.ts +13 -0
- package/dist/web/components/chart/statisticsCard/interface.js +1 -0
- package/dist/web/components/container/index.d.ts +6 -0
- package/dist/web/components/container/index.js +6 -0
- package/dist/web/components/dataView/index.d.ts +6 -0
- package/dist/web/components/dataView/index.js +8 -0
- package/{src/web/components/dataView/interface.ts → dist/web/components/dataView/interface.d.ts} +1 -2
- package/dist/web/components/dataView/interface.js +1 -0
- package/dist/web/components/drawer/index.d.ts +13 -0
- package/dist/web/components/drawer/index.js +12 -0
- package/dist/web/components/form/checkbox/index.d.ts +13 -0
- package/dist/web/components/form/checkbox/index.js +167 -0
- package/dist/web/components/form/enumSelect/MultipleSelect.d.ts +78 -0
- package/dist/web/components/form/enumSelect/MultipleSelect.js +52 -0
- package/dist/web/components/form/enumSelect/NormalSelect.d.ts +83 -0
- package/dist/web/components/form/enumSelect/NormalSelect.js +52 -0
- package/dist/web/components/form/enumSelect/SelectContainer.d.ts +16 -0
- package/dist/web/components/form/enumSelect/SelectContainer.js +30 -0
- package/dist/web/components/form/enumSelect/index.d.ts +82 -0
- package/{src/web/components/form/enumSelect/index.jsx → dist/web/components/form/enumSelect/index.js} +1 -4
- package/dist/web/components/form/enumSelect/props/defaultProps.d.ts +34 -0
- package/dist/web/components/form/enumSelect/props/defaultProps.js +40 -0
- package/dist/web/components/form/enumSelect/props/propsTypes.d.ts +39 -0
- package/dist/web/components/form/enumSelect/props/propsTypes.js +47 -0
- package/{src → dist}/web/components/form/form/index.css +2 -2
- package/dist/web/components/form/form/index.d.ts +13 -0
- package/dist/web/components/form/form/index.js +31 -0
- package/{src → dist}/web/components/form/formcell/index.css +14 -14
- package/dist/web/components/form/formcell/index.d.ts +8 -0
- package/dist/web/components/form/formcell/index.js +40 -0
- package/{src → dist}/web/components/form/input/index.css +3 -3
- package/dist/web/components/form/input/index.d.ts +14 -0
- package/dist/web/components/form/input/index.js +86 -0
- package/dist/web/components/form/location/common/mapChoose.css +477 -0
- package/dist/web/components/form/location/common/mapChoose.d.ts +15 -0
- package/dist/web/components/form/location/common/mapChoose.js +435 -0
- package/dist/web/components/form/location/common/mapView.d.ts +19 -0
- package/dist/web/components/form/location/common/mapView.js +170 -0
- package/dist/web/components/form/location/common/propsConfig.d.ts +59 -0
- package/dist/web/components/form/location/common/propsConfig.js +50 -0
- package/{src → dist}/web/components/form/location/common/selectModal.css +11 -10
- package/dist/web/components/form/location/common/selectModal.d.ts +21 -0
- package/dist/web/components/form/location/common/selectModal.js +44 -0
- package/dist/web/components/form/location/common/useLocationInfo.d.ts +36 -0
- package/dist/web/components/form/location/common/useLocationInfo.js +104 -0
- package/dist/web/components/form/location/components/LocationH5/index.css +100 -0
- package/dist/web/components/form/location/components/LocationH5/location.h5.d.ts +8 -0
- package/dist/web/components/form/location/components/LocationH5/location.h5.js +323 -0
- package/dist/web/components/form/location/components/LocationPC/Header.d.ts +12 -0
- package/dist/web/components/form/location/components/LocationPC/Header.js +43 -0
- package/{src → dist}/web/components/form/location/components/LocationPC/index.css +10 -14
- package/dist/web/components/form/location/components/LocationPC/location.PC.d.ts +8 -0
- package/dist/web/components/form/location/components/LocationPC/location.PC.js +224 -0
- package/dist/web/components/form/location/constants.d.ts +2 -0
- package/{src → dist}/web/components/form/location/constants.js +0 -1
- package/dist/web/components/form/location/index.css +13 -0
- package/dist/web/components/form/location/index.d.ts +1 -0
- package/dist/web/components/form/location/index.js +17 -0
- package/{src → dist}/web/components/form/radio/index.css +0 -0
- package/dist/web/components/form/radio/index.d.ts +11 -0
- package/dist/web/components/form/radio/index.js +115 -0
- package/dist/web/components/form/renderDecorator.d.ts +6 -0
- package/dist/web/components/form/renderDecorator.js +20 -0
- package/dist/web/components/form/select/h5.d.ts +16 -0
- package/dist/web/components/form/select/h5.js +504 -0
- package/{src → dist}/web/components/form/select/index.css +4 -4
- package/dist/web/components/form/select/index.d.ts +65 -0
- package/dist/web/components/form/select/index.js +301 -0
- package/dist/web/components/form/select/region/index.d.ts +6 -0
- package/dist/web/components/form/select/region/index.js +147 -0
- package/dist/web/components/form/select/time.d.ts +9 -0
- package/dist/web/components/form/select/time.js +146 -0
- package/dist/web/components/form/select/year.d.ts +7 -0
- package/dist/web/components/form/select/year.js +72 -0
- package/dist/web/components/form/switch/index.d.ts +6 -0
- package/dist/web/components/form/switch/index.js +57 -0
- package/{src → dist}/web/components/form/textarea/index.css +1 -1
- package/dist/web/components/form/textarea/index.d.ts +12 -0
- package/dist/web/components/form/textarea/index.js +66 -0
- package/{src → dist}/web/components/form/tips/index.css +0 -0
- package/dist/web/components/form/tips/index.d.ts +8 -0
- package/dist/web/components/form/tips/index.js +17 -0
- package/{src → dist}/web/components/form/uploader/index.css +14 -14
- package/dist/web/components/form/uploader/index.d.ts +3 -0
- package/dist/web/components/form/uploader/index.js +42 -0
- package/dist/web/components/form/uploader/uploader.h5.d.ts +19 -0
- package/dist/web/components/form/uploader/uploader.h5.js +201 -0
- package/dist/web/components/form/uploader/uploader.pc.d.ts +29 -0
- package/dist/web/components/form/uploader/uploader.pc.js +182 -0
- package/{src → dist}/web/components/form/uploaderFile/index.css +62 -62
- package/dist/web/components/form/uploaderFile/index.d.ts +4 -0
- package/dist/web/components/form/uploaderFile/index.js +19 -0
- package/dist/web/components/form/uploaderFile/uploadFile.h5.d.ts +23 -0
- package/dist/web/components/form/uploaderFile/uploadFile.h5.js +315 -0
- package/dist/web/components/form/uploaderFile/uploadFile.pc.d.ts +24 -0
- package/dist/web/components/form/uploaderFile/uploadFile.pc.js +290 -0
- package/{src → dist}/web/components/graphicCard/index.css +15 -15
- package/dist/web/components/graphicCard/index.d.ts +31 -0
- package/dist/web/components/graphicCard/index.js +166 -0
- package/dist/web/components/image/image.d.ts +9 -0
- package/dist/web/components/image/image.js +119 -0
- package/{src → dist}/web/components/image/index.css +2 -2
- package/dist/web/components/image/index.d.ts +13 -0
- package/dist/web/components/image/index.js +91 -0
- package/dist/web/components/index.d.ts +47 -0
- package/{src → dist}/web/components/index.js +25 -26
- package/{src → dist}/web/components/link/index.css +0 -0
- package/dist/web/components/link/index.d.ts +24 -0
- package/dist/web/components/link/index.js +71 -0
- package/{src → dist}/web/components/listView/index.css +17 -17
- package/dist/web/components/listView/index.d.ts +7 -0
- package/dist/web/components/listView/index.js +262 -0
- package/dist/web/components/listView/interface.d.ts +122 -0
- package/dist/web/components/listView/interface.js +1 -0
- package/{src → dist}/web/components/lottery/index.css +98 -72
- package/dist/web/components/lottery/index.d.ts +22 -0
- package/dist/web/components/lottery/index.js +390 -0
- package/dist/web/components/lottery/lotteryUtil.d.ts +23 -0
- package/dist/web/components/lottery/lotteryUtil.js +180 -0
- package/dist/web/components/modal/h5.css +53 -0
- package/dist/web/components/modal/index.d.ts +17 -0
- package/dist/web/components/modal/index.js +11 -0
- package/dist/web/components/modal/modal.h5.d.ts +4 -0
- package/dist/web/components/modal/modal.h5.js +46 -0
- package/dist/web/components/modal/modal.pc.d.ts +3 -0
- package/dist/web/components/modal/modal.pc.js +31 -0
- package/{src → dist}/web/components/navLayout/index.css +15 -15
- package/dist/web/components/navLayout/index.d.ts +46 -0
- package/dist/web/components/navLayout/index.js +116 -0
- package/dist/web/components/navigationBar/common.d.ts +15 -0
- package/dist/web/components/navigationBar/common.js +127 -0
- package/dist/web/components/navigationBar/h5Menu.d.ts +14 -0
- package/dist/web/components/navigationBar/h5Menu.js +72 -0
- package/dist/web/components/navigationBar/horizontalMenu.d.ts +12 -0
- package/dist/web/components/navigationBar/horizontalMenu.js +99 -0
- package/{src → dist}/web/components/navigationBar/index.css +66 -66
- package/dist/web/components/navigationBar/index.d.ts +13 -0
- package/dist/web/components/navigationBar/index.js +157 -0
- package/dist/web/components/navigationBar/verticalMenu.d.ts +13 -0
- package/dist/web/components/navigationBar/verticalMenu.js +38 -0
- package/dist/web/components/phone/index.d.ts +18 -0
- package/dist/web/components/phone/index.js +4 -0
- package/dist/web/components/phoneCode/index.d.ts +18 -0
- package/dist/web/components/phoneCode/index.js +4 -0
- package/dist/web/components/picker/datePicker.d.ts +10 -0
- package/dist/web/components/picker/datePicker.js +31 -0
- package/dist/web/components/picker/picker.d.ts +6 -0
- package/dist/web/components/picker/picker.js +45 -0
- package/dist/web/components/picker/timePicker.d.ts +7 -0
- package/dist/web/components/picker/timePicker.js +42 -0
- package/dist/web/components/richText/const.d.ts +1 -0
- package/dist/web/components/richText/const.js +2 -0
- package/{src → dist}/web/components/richText/index.css +3 -3
- package/dist/web/components/richText/index.d.ts +51 -0
- package/dist/web/components/richText/index.js +298 -0
- package/{src → dist}/web/components/richTextView/index.css +8 -8
- package/dist/web/components/richTextView/index.d.ts +7 -0
- package/dist/web/components/richTextView/index.js +44 -0
- package/dist/web/components/scrollView/index.d.ts +27 -0
- package/dist/web/components/scrollView/index.js +95 -0
- package/dist/web/components/share/index.d.ts +34 -0
- package/dist/web/components/share/index.js +4 -0
- package/dist/web/components/slot/index.d.ts +6 -0
- package/dist/web/components/slot/index.js +9 -0
- package/{src → dist}/web/components/swiper/index.css +10 -10
- package/dist/web/components/swiper/index.d.ts +24 -0
- package/dist/web/components/swiper/index.js +149 -0
- package/{src → dist}/web/components/tabs/index.css +6 -6
- package/dist/web/components/tabs/index.d.ts +13 -0
- package/dist/web/components/tabs/index.js +15 -0
- package/dist/web/components/tabs/tabs.h5.d.ts +4 -0
- package/dist/web/components/tabs/tabs.h5.js +42 -0
- package/dist/web/components/tabs/tabs.pc.d.ts +3 -0
- package/dist/web/components/tabs/tabs.pc.js +40 -0
- package/{src → dist}/web/components/text/index.css +6 -6
- package/dist/web/components/text/index.d.ts +14 -0
- package/dist/web/components/text/index.js +17 -0
- package/{src → dist}/web/components/uploaderFileView/index.css +0 -0
- package/dist/web/components/uploaderFileView/index.d.ts +10 -0
- package/dist/web/components/uploaderFileView/index.js +61 -0
- package/{src → dist}/web/components/uploaderView/index.css +5 -5
- package/dist/web/components/uploaderView/index.d.ts +17 -0
- package/dist/web/components/uploaderView/index.js +48 -0
- package/dist/web/components/userInfo/index.d.ts +26 -0
- package/dist/web/components/userInfo/index.js +4 -0
- package/{src → dist}/web/components/wedaVideo/index.css +2 -2
- package/dist/web/components/wedaVideo/index.d.ts +17 -0
- package/dist/web/components/wedaVideo/index.js +159 -0
- package/dist/web/index.d.ts +8 -0
- package/{src → dist}/web/index.js +1 -1
- package/dist/web/utils/classnames.d.ts +2 -0
- package/dist/web/utils/classnames.js +37 -0
- package/dist/web/utils/constant.d.ts +23 -0
- package/dist/web/utils/constant.js +24 -0
- package/dist/web/utils/debounce.d.ts +2 -0
- package/dist/web/utils/debounce.js +92 -0
- package/dist/web/utils/events.d.ts +1 -0
- package/{src → dist}/web/utils/events.js +1 -1
- package/dist/web/utils/getLocalCounter.d.ts +1 -0
- package/{src → dist}/web/utils/getLocalCounter.js +1 -2
- package/dist/web/utils/isObjectEqual.d.ts +2 -0
- package/dist/web/utils/isObjectEqual.js +12 -0
- package/dist/web/utils/loading-fallback.d.ts +2 -0
- package/dist/web/utils/loading-fallback.js +2 -0
- package/dist/web/utils/lodash.d.ts +1 -0
- package/{src/mp → dist/web}/utils/lodash.js +0 -0
- package/dist/web/utils/platform.d.ts +18 -0
- package/dist/web/utils/platform.js +191 -0
- package/dist/web/utils/tcb.d.ts +23 -0
- package/dist/web/utils/tcb.js +82 -0
- package/dist/web/utils/tmap.d.ts +3 -0
- package/dist/web/utils/tmap.js +21 -0
- package/dist/web/utils/useSetState.d.ts +1 -0
- package/dist/web/utils/useSetState.js +8 -0
- package/dist/web/utils/useSyncValue.d.ts +4 -0
- package/dist/web/utils/useSyncValue.js +15 -0
- package/dist/web/utils/weui.d.ts +1 -0
- package/{src → dist}/web/utils/weui.js +0 -1
- package/{src → dist}/web/weda-ui.css +2 -2
- package/package.json +22 -23
- package/src/configs/actions/showModal.json +0 -48
- package/src/configs/actions/showToast.json +0 -41
- package/src/configs/components/auth.json +0 -16
- package/src/configs/components/button.json +0 -239
- package/src/configs/components/calendar.json +0 -81
- package/src/configs/components/carousel.json +0 -292
- package/src/configs/components/chart/bar.json +0 -721
- package/src/configs/components/chart/line.json +0 -674
- package/src/configs/components/chart/pie.json +0 -494
- package/src/configs/components/chart/statisticsCard.json +0 -376
- package/src/configs/components/container.json +0 -50
- package/src/configs/components/dataView.json +0 -151
- package/src/configs/components/drawer.json +0 -115
- package/src/configs/components/form/checkbox.json +0 -173
- package/src/configs/components/form/form.json +0 -45
- package/src/configs/components/form/input.json +0 -154
- package/src/configs/components/form/label.json +0 -22
- package/src/configs/components/form/location.json +0 -155
- package/src/configs/components/form/radio.json +0 -203
- package/src/configs/components/form/richText.json +0 -125
- package/src/configs/components/form/select.json +0 -411
- package/src/configs/components/form/switch.json +0 -58
- package/src/configs/components/form/textarea.json +0 -116
- package/src/configs/components/form/tips.json +0 -34
- package/src/configs/components/form/uploader.json +0 -169
- package/src/configs/components/form/uploaderFile.json +0 -158
- package/src/configs/components/graphicCard.json +0 -413
- package/src/configs/components/image.json +0 -179
- package/src/configs/components/link.json +0 -79
- package/src/configs/components/listView.json +0 -281
- package/src/configs/components/lottery.json +0 -157
- package/src/configs/components/modal.json +0 -83
- package/src/configs/components/navLayout.json +0 -368
- package/src/configs/components/navigationBar.json +0 -62
- package/src/configs/components/picker/datePicker.json +0 -33
- package/src/configs/components/picker/picker.json +0 -18
- package/src/configs/components/picker/timePicker.json +0 -23
- package/src/configs/components/richtextview.json +0 -26
- package/src/configs/components/scrollVeiw.json +0 -253
- package/src/configs/components/slot.json +0 -17
- package/src/configs/components/swiper.json +0 -90
- package/src/configs/components/tabs.json +0 -121
- package/src/configs/components/text.json +0 -95
- package/src/configs/components/wedaVideo.json +0 -89
- package/src/configs/components/wxOpenApi/phone.json +0 -127
- package/src/configs/components/wxOpenApi/phoneCode.json +0 -109
- package/src/configs/components/wxOpenApi/share.json +0 -157
- package/src/configs/components/wxOpenApi/userInfo.json +0 -156
- package/src/mp/README.md +0 -1
- package/src/mp/actions/showModal/index.js +0 -3
- package/src/mp/actions/showToast/index.js +0 -3
- package/src/mp/components/button/index.js +0 -91
- package/src/mp/components/button/index.json +0 -4
- package/src/mp/components/button/index.wxml +0 -22
- package/src/mp/components/button/index.wxss +0 -13
- package/src/mp/components/calendar/arrowright--line.svg +0 -11
- package/src/mp/components/calendar/index.js +0 -268
- package/src/mp/components/calendar/index.json +0 -5
- package/src/mp/components/calendar/index.wxml +0 -35
- package/src/mp/components/calendar/index.wxss +0 -179
- package/src/mp/components/carousel/index.js +0 -88
- package/src/mp/components/carousel/index.json +0 -7
- package/src/mp/components/carousel/index.wxml +0 -6
- package/src/mp/components/chart/bar/index.js +0 -257
- package/src/mp/components/chart/bar/index.json +0 -6
- package/src/mp/components/chart/bar/index.wxml +0 -3
- package/src/mp/components/chart/bar/index.wxss +0 -9
- package/src/mp/components/chart/common/config/bar.js +0 -50
- package/src/mp/components/chart/common/config/global.js +0 -16
- package/src/mp/components/chart/common/config/line.js +0 -48
- package/src/mp/components/chart/common/config/pie.js +0 -36
- package/src/mp/components/chart/common/core/eChartBar.js +0 -258
- package/src/mp/components/chart/common/core/eChartBase.js +0 -389
- package/src/mp/components/chart/common/core/eChartLine.js +0 -223
- package/src/mp/components/chart/common/core/eChartPie.js +0 -169
- package/src/mp/components/chart/common/lib/echarts.min.js +0 -18
- package/src/mp/components/chart/ec-canvas/ec-canvas.js +0 -277
- package/src/mp/components/chart/ec-canvas/ec-canvas.json +0 -4
- package/src/mp/components/chart/ec-canvas/ec-canvas.wxml +0 -4
- package/src/mp/components/chart/ec-canvas/ec-canvas.wxss +0 -4
- package/src/mp/components/chart/ec-canvas/wx-canvas.js +0 -109
- package/src/mp/components/chart/line/index.js +0 -247
- package/src/mp/components/chart/line/index.json +0 -6
- package/src/mp/components/chart/line/index.wxml +0 -3
- package/src/mp/components/chart/line/index.wxss +0 -9
- package/src/mp/components/chart/pie/index.js +0 -182
- package/src/mp/components/chart/pie/index.json +0 -6
- package/src/mp/components/chart/pie/index.wxml +0 -3
- package/src/mp/components/chart/pie/index.wxss +0 -9
- package/src/mp/components/chart/statisticsCard/index.js +0 -253
- package/src/mp/components/chart/statisticsCard/index.json +0 -4
- package/src/mp/components/chart/statisticsCard/index.wxml +0 -9
- package/src/mp/components/chart/statisticsCard/index.wxss +0 -42
- package/src/mp/components/container/index.js +0 -20
- package/src/mp/components/container/index.json +0 -4
- package/src/mp/components/container/index.wxml +0 -3
- package/src/mp/components/dataView/index.js +0 -34
- package/src/mp/components/dataView/index.json +0 -7
- package/src/mp/components/dataView/index.wxml +0 -3
- package/src/mp/components/dataView/index.wxss +0 -0
- package/src/mp/components/form/checkbox/index.js +0 -124
- package/src/mp/components/form/checkbox/index.json +0 -7
- package/src/mp/components/form/checkbox/index.wxml +0 -13
- package/src/mp/components/form/checkbox/index.wxss +0 -1
- package/src/mp/components/form/form/index.js +0 -18
- package/src/mp/components/form/form/index.json +0 -4
- package/src/mp/components/form/form/index.wxml +0 -5
- package/src/mp/components/form/form/index.wxss +0 -1
- package/src/mp/components/form/formcell/index.js +0 -54
- package/src/mp/components/form/formcell/index.json +0 -4
- package/src/mp/components/form/formcell/index.wxml +0 -11
- package/src/mp/components/form/formcell/index.wxss +0 -31
- package/src/mp/components/form/input/index.js +0 -110
- package/src/mp/components/form/input/index.json +0 -7
- package/src/mp/components/form/input/index.wxml +0 -24
- package/src/mp/components/form/input/index.wxss +0 -22
- package/src/mp/components/form/location/components/mapChoose/index.js +0 -201
- package/src/mp/components/form/location/components/mapChoose/index.json +0 -4
- package/src/mp/components/form/location/components/mapChoose/index.wxml +0 -42
- package/src/mp/components/form/location/components/mapChoose/index.wxss +0 -188
- package/src/mp/components/form/location/index.js +0 -388
- package/src/mp/components/form/location/index.json +0 -6
- package/src/mp/components/form/location/index.wxml +0 -21
- package/src/mp/components/form/location/index.wxss +0 -89
- package/src/mp/components/form/radio/index.js +0 -124
- package/src/mp/components/form/radio/index.json +0 -7
- package/src/mp/components/form/radio/index.wxml +0 -13
- package/src/mp/components/form/radio/index.wxss +0 -1
- package/src/mp/components/form/select/index.js +0 -677
- package/src/mp/components/form/select/index.json +0 -7
- package/src/mp/components/form/select/index.wxml +0 -12
- package/src/mp/components/form/select/index.wxss +0 -16
- package/src/mp/components/form/select/region/index.js +0 -107
- package/src/mp/components/form/switch/index.js +0 -75
- package/src/mp/components/form/switch/index.json +0 -7
- package/src/mp/components/form/switch/index.wxml +0 -11
- package/src/mp/components/form/switch/index.wxss +0 -1
- package/src/mp/components/form/textarea/index.js +0 -90
- package/src/mp/components/form/textarea/index.json +0 -7
- package/src/mp/components/form/textarea/index.wxml +0 -8
- package/src/mp/components/form/textarea/index.wxss +0 -10
- package/src/mp/components/form/tips/index.js +0 -41
- package/src/mp/components/form/tips/index.json +0 -4
- package/src/mp/components/form/tips/index.wxml +0 -1
- package/src/mp/components/form/tips/index.wxss +0 -1
- package/src/mp/components/form/uploader/index.js +0 -158
- package/src/mp/components/form/uploader/index.json +0 -10
- package/src/mp/components/form/uploader/index.wxml +0 -14
- package/src/mp/components/form/uploader/index.wxss +0 -36
- package/src/mp/components/form/uploader/weui-uploader.js +0 -219
- package/src/mp/components/form/uploader/weui-uploader.json +0 -7
- package/src/mp/components/form/uploader/weui-uploader.wxml +0 -45
- package/src/mp/components/form/uploader/weui-uploader.wxss +0 -1
- package/src/mp/components/form/uploaderFile/index.js +0 -313
- package/src/mp/components/form/uploaderFile/index.json +0 -9
- package/src/mp/components/form/uploaderFile/index.wxml +0 -45
- package/src/mp/components/form/uploaderFile/index.wxss +0 -105
- package/src/mp/components/graphicCard/chevron-right.svg +0 -3
- package/src/mp/components/graphicCard/index.js +0 -203
- package/src/mp/components/graphicCard/index.json +0 -4
- package/src/mp/components/graphicCard/index.wxml +0 -25
- package/src/mp/components/graphicCard/index.wxss +0 -157
- package/src/mp/components/image/index.js +0 -182
- package/src/mp/components/image/index.json +0 -7
- package/src/mp/components/image/index.wxml +0 -9
- package/src/mp/components/image/index.wxss +0 -49
- package/src/mp/components/listView/arrow-right-line.svg +0 -3
- package/src/mp/components/listView/index.js +0 -274
- package/src/mp/components/listView/index.json +0 -4
- package/src/mp/components/listView/index.wxml +0 -38
- package/src/mp/components/listView/index.wxss +0 -155
- package/src/mp/components/listView/more-line.svg +0 -3
- package/src/mp/components/lottery/index.js +0 -270
- package/src/mp/components/lottery/index.json +0 -4
- package/src/mp/components/lottery/index.wxml +0 -41
- package/src/mp/components/lottery/index.wxss +0 -323
- package/src/mp/components/modal/index.js +0 -39
- package/src/mp/components/modal/index.json +0 -4
- package/src/mp/components/modal/index.wxml +0 -1
- package/src/mp/components/navLayout/index.js +0 -120
- package/src/mp/components/navLayout/index.json +0 -7
- package/src/mp/components/navLayout/index.wxml +0 -23
- package/src/mp/components/navLayout/index.wxss +0 -1193
- package/src/mp/components/navigationBar/index.js +0 -204
- package/src/mp/components/navigationBar/index.json +0 -5
- package/src/mp/components/navigationBar/index.wxml +0 -80
- package/src/mp/components/navigationBar/index.wxss +0 -1257
- package/src/mp/components/richText/index.js +0 -67
- package/src/mp/components/richText/index.json +0 -4
- package/src/mp/components/richText/index.wxml +0 -3
- package/src/mp/components/richText/index.wxss +0 -27
- package/src/mp/components/scrollView/index.js +0 -119
- package/src/mp/components/scrollView/index.json +0 -4
- package/src/mp/components/scrollView/index.wxml +0 -38
- package/src/mp/components/slot/index.js +0 -20
- package/src/mp/components/slot/index.json +0 -4
- package/src/mp/components/slot/index.wxml +0 -3
- package/src/mp/components/swiper/index.js +0 -65
- package/src/mp/components/swiper/index.json +0 -4
- package/src/mp/components/swiper/index.wxml +0 -3
- package/src/mp/components/tabs/index.js +0 -59
- package/src/mp/components/tabs/index.json +0 -4
- package/src/mp/components/tabs/index.wxml +0 -12
- package/src/mp/components/tabs/index.wxss +0 -57
- package/src/mp/components/text/index.js +0 -40
- package/src/mp/components/text/index.json +0 -4
- package/src/mp/components/text/index.wxml +0 -1
- package/src/mp/components/text/index.wxss +0 -26
- package/src/mp/components/wedaVideo/index.js +0 -86
- package/src/mp/components/wedaVideo/index.json +0 -4
- package/src/mp/components/wedaVideo/index.wxml +0 -4
- package/src/mp/components/wedaVideo/index.wxss +0 -20
- package/src/mp/components/wxOpenApi/phone/index.js +0 -109
- package/src/mp/components/wxOpenApi/phone/index.json +0 -4
- package/src/mp/components/wxOpenApi/phone/index.wxml +0 -4
- package/src/mp/components/wxOpenApi/phone/index.wxss +0 -22
- package/src/mp/components/wxOpenApi/phoneCode/index.js +0 -89
- package/src/mp/components/wxOpenApi/phoneCode/index.json +0 -4
- package/src/mp/components/wxOpenApi/phoneCode/index.wxml +0 -4
- package/src/mp/components/wxOpenApi/phoneCode/index.wxss +0 -22
- package/src/mp/components/wxOpenApi/share/index.js +0 -117
- package/src/mp/components/wxOpenApi/share/index.json +0 -4
- package/src/mp/components/wxOpenApi/share/index.wxml +0 -4
- package/src/mp/components/wxOpenApi/share/index.wxss +0 -22
- package/src/mp/components/wxOpenApi/userInfo/index.js +0 -88
- package/src/mp/components/wxOpenApi/userInfo/index.json +0 -4
- package/src/mp/components/wxOpenApi/userInfo/index.wxml +0 -4
- package/src/mp/components/wxOpenApi/userInfo/index.wxss +0 -22
- package/src/mp/index.json +0 -52
- package/src/mp/package.json +0 -6
- package/src/mp/style/weda-ui.wxss +0 -71
- package/src/mp/utils/classnames.js +0 -39
- package/src/mp/utils/constant.js +0 -20
- package/src/mp/utils/dayjs.min.js +0 -1
- package/src/mp/utils/debounce.js +0 -133
- package/src/mp/utils/deepEqual.js +0 -42
- package/src/mp/utils/destr.js +0 -49
- package/src/mp/utils/dr_square_point.js +0 -29
- package/src/mp/utils/handleEvents.js +0 -32
- package/src/mp/utils/platform.js +0 -45
- package/src/mp/utils/qqmap-wx-jssdk1.2/qqmap-wx-jssdk.js +0 -1336
- package/src/mp/utils/spark-md5.js +0 -776
- package/src/mp/utils/tcb.js +0 -90
- package/src/setupTests.js +0 -14
- package/src/web/actions/showModal/index.tsx +0 -118
- package/src/web/actions/showToast/index.js +0 -3
- package/src/web/components/auth/index.css +0 -0
- package/src/web/components/auth/index.js +0 -66
- package/src/web/components/button/index.tsx +0 -119
- package/src/web/components/calendar/index.jsx +0 -312
- package/src/web/components/calendar/util.js +0 -90
- package/src/web/components/carousel/index.tsx +0 -417
- package/src/web/components/chart/bar/index.tsx +0 -140
- package/src/web/components/chart/common/config/bar.js +0 -49
- package/src/web/components/chart/common/config/global.js +0 -16
- package/src/web/components/chart/common/config/line.js +0 -50
- package/src/web/components/chart/common/config/pie.js +0 -37
- package/src/web/components/chart/common/core/eChartBar.js +0 -259
- package/src/web/components/chart/common/core/eChartBase.ts +0 -396
- package/src/web/components/chart/common/core/eChartLine.js +0 -225
- package/src/web/components/chart/common/core/eChartPie.js +0 -173
- package/src/web/components/chart/common/core/type.ts +0 -34
- package/src/web/components/chart/common/echart.css +0 -106
- package/src/web/components/chart/common/useChart.tsx +0 -87
- package/src/web/components/chart/line/index.tsx +0 -136
- package/src/web/components/chart/pie/index.tsx +0 -99
- package/src/web/components/chart/statisticsCard/index.tsx +0 -307
- package/src/web/components/chart/statisticsCard/interface.ts +0 -14
- package/src/web/components/container/index.tsx +0 -34
- package/src/web/components/dataView/index.tsx +0 -20
- package/src/web/components/drawer/index.tsx +0 -68
- package/src/web/components/form/checkbox/index.tsx +0 -210
- package/src/web/components/form/enumSelect/MultipleSelect.jsx +0 -89
- package/src/web/components/form/enumSelect/NormalSelect.tsx +0 -92
- package/src/web/components/form/enumSelect/SelectContainer.jsx +0 -43
- package/src/web/components/form/enumSelect/props/defaultProps.js +0 -39
- package/src/web/components/form/enumSelect/props/propsTypes.js +0 -50
- package/src/web/components/form/form/index.tsx +0 -51
- package/src/web/components/form/formcell/index.tsx +0 -85
- package/src/web/components/form/input/index.tsx +0 -166
- package/src/web/components/form/location/common/mapChoose.css +0 -180
- package/src/web/components/form/location/common/mapChoose.jsx +0 -343
- package/src/web/components/form/location/common/mapView.jsx +0 -190
- package/src/web/components/form/location/common/propsConfig.js +0 -54
- package/src/web/components/form/location/common/selectModal.jsx +0 -73
- package/src/web/components/form/location/common/useLocationInfo.js +0 -104
- package/src/web/components/form/location/components/LocationH5/index.css +0 -239
- package/src/web/components/form/location/components/LocationH5/location.h5.jsx +0 -413
- package/src/web/components/form/location/components/LocationPC/Header.jsx +0 -96
- package/src/web/components/form/location/components/LocationPC/location.PC.jsx +0 -332
- package/src/web/components/form/location/index.css +0 -0
- package/src/web/components/form/location/index.jsx +0 -25
- package/src/web/components/form/radio/index.tsx +0 -179
- package/src/web/components/form/renderDecorator.tsx +0 -28
- package/src/web/components/form/select/h5.tsx +0 -602
- package/src/web/components/form/select/index.tsx +0 -510
- package/src/web/components/form/select/region/index.ts +0 -152
- package/src/web/components/form/select/time.jsx +0 -145
- package/src/web/components/form/select/year.tsx +0 -172
- package/src/web/components/form/switch/index.tsx +0 -100
- package/src/web/components/form/textarea/index.tsx +0 -127
- package/src/web/components/form/tips/index.tsx +0 -34
- package/src/web/components/form/types.d.ts +0 -12
- package/src/web/components/form/uploader/index.tsx +0 -65
- package/src/web/components/form/uploader/uploader.h5.tsx +0 -290
- package/src/web/components/form/uploader/uploader.pc.tsx +0 -287
- package/src/web/components/form/uploaderFile/fail.svg +0 -12
- package/src/web/components/form/uploaderFile/index.jsx +0 -25
- package/src/web/components/form/uploaderFile/pending.svg +0 -18
- package/src/web/components/form/uploaderFile/success.svg +0 -12
- package/src/web/components/form/uploaderFile/uploadFile.h5.tsx +0 -606
- package/src/web/components/form/uploaderFile/uploadFile.pc.tsx +0 -520
- package/src/web/components/graphicCard/index.tsx +0 -310
- package/src/web/components/image/image.tsx +0 -187
- package/src/web/components/image/index.tsx +0 -121
- package/src/web/components/link/index.tsx +0 -119
- package/src/web/components/listView/arrow-right-line.svg +0 -3
- package/src/web/components/listView/index.tsx +0 -346
- package/src/web/components/listView/interface.ts +0 -98
- package/src/web/components/lottery/index.tsx +0 -567
- package/src/web/components/lottery/lotteryUtil.ts +0 -130
- package/src/web/components/modal/index.tsx +0 -60
- package/src/web/components/navLayout/index.tsx +0 -247
- package/src/web/components/navigationBar/chevron-right--double.svg +0 -3
- package/src/web/components/navigationBar/common.tsx +0 -203
- package/src/web/components/navigationBar/h5Menu.tsx +0 -179
- package/src/web/components/navigationBar/horizontalMenu.tsx +0 -201
- package/src/web/components/navigationBar/index.tsx +0 -231
- package/src/web/components/navigationBar/type.d.ts +0 -118
- package/src/web/components/navigationBar/verticalMenu.tsx +0 -81
- package/src/web/components/phone/index.css +0 -0
- package/src/web/components/phone/index.tsx +0 -22
- package/src/web/components/phoneCode/index.css +0 -0
- package/src/web/components/phoneCode/index.tsx +0 -22
- package/src/web/components/picker/datePicker.tsx +0 -48
- package/src/web/components/picker/picker.tsx +0 -59
- package/src/web/components/picker/timePicker.tsx +0 -56
- package/src/web/components/richText/const.ts +0 -3
- package/src/web/components/richText/index.jsx +0 -473
- package/src/web/components/richTextView/index.tsx +0 -63
- package/src/web/components/scrollView/index.tsx +0 -148
- package/src/web/components/share/index.css +0 -0
- package/src/web/components/share/index.tsx +0 -38
- package/src/web/components/slot/index.tsx +0 -19
- package/src/web/components/swiper/index.tsx +0 -291
- package/src/web/components/tabs/index.tsx +0 -35
- package/src/web/components/tabs/tabs.h5.tsx +0 -84
- package/src/web/components/tabs/tabs.pc.tsx +0 -74
- package/src/web/components/text/index.tsx +0 -60
- package/src/web/components/uploaderFileView/index.jsx +0 -84
- package/src/web/components/uploaderView/index.tsx +0 -92
- package/src/web/components/userInfo/index.css +0 -0
- package/src/web/components/userInfo/index.tsx +0 -30
- package/src/web/components/wedaVideo/index.tsx +0 -208
- package/src/web/types.d.ts +0 -21
- package/src/web/utils/classnames.js +0 -39
- package/src/web/utils/constant.ts +0 -23
- package/src/web/utils/debounce.js +0 -98
- package/src/web/utils/isObjectEqual.js +0 -15
- package/src/web/utils/loading-fallback.tsx +0 -2
- package/src/web/utils/lodash.ts +0 -2
- package/src/web/utils/platform.js +0 -170
- package/src/web/utils/tcb.js +0 -86
- package/src/web/utils/tmap.js +0 -4
- package/src/web/utils/useSetState.ts +0 -18
- package/src/web/utils/useSyncValue.ts +0 -17
|
@@ -1,1193 +0,0 @@
|
|
|
1
|
-
@import '../../style/weda-ui.wxss';
|
|
2
|
-
@font-face {
|
|
3
|
-
font-family: 'lcap-icon';
|
|
4
|
-
font-weight: normal;
|
|
5
|
-
font-style: normal;
|
|
6
|
-
src: url(data:application/font-woff2;charset=utf-8;base64,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)
|
|
7
|
-
format('woff2');
|
|
8
|
-
}
|
|
9
|
-
.t-icon {
|
|
10
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
11
|
-
font-family: 't' !important;
|
|
12
|
-
display: inline-block;
|
|
13
|
-
speak: none;
|
|
14
|
-
font-style: normal;
|
|
15
|
-
font-weight: normal;
|
|
16
|
-
font-variant: normal;
|
|
17
|
-
text-transform: none;
|
|
18
|
-
line-height: 1;
|
|
19
|
-
text-align: center;
|
|
20
|
-
/* Better Font Rendering =========== */
|
|
21
|
-
-webkit-font-smoothing: antialiased;
|
|
22
|
-
-moz-osx-font-smoothing: grayscale;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.t-icon-add-circle:before {
|
|
26
|
-
content: '\E001';
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.t-icon-add-rectangle:before {
|
|
30
|
-
content: '\E002';
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.t-icon-add:before {
|
|
34
|
-
content: '\E003';
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.t-icon-app:before {
|
|
38
|
-
content: '\E004';
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.t-icon-arrow-down-rectangle:before {
|
|
42
|
-
content: '\E005';
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.t-icon-arrow-down:before {
|
|
46
|
-
content: '\E006';
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.t-icon-arrow-left:before {
|
|
50
|
-
content: '\E007';
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.t-icon-arrow-right:before {
|
|
54
|
-
content: '\E008';
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.t-icon-arrow-up:before {
|
|
58
|
-
content: '\E009';
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.t-icon-attach:before {
|
|
62
|
-
content: '\E00A';
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.t-icon-backtop-rectangle:before {
|
|
66
|
-
content: '\E00B';
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.t-icon-backtop:before {
|
|
70
|
-
content: '\E00C';
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.t-icon-backward:before {
|
|
74
|
-
content: '\E00D';
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.t-icon-barcode:before {
|
|
78
|
-
content: '\E00E';
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.t-icon-books:before {
|
|
82
|
-
content: '\E00F';
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.t-icon-browse-off:before {
|
|
86
|
-
content: '\E010';
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.t-icon-browse:before {
|
|
90
|
-
content: '\E011';
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.t-icon-bulletpoint:before {
|
|
94
|
-
content: '\E012';
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.t-icon-calendar:before {
|
|
98
|
-
content: '\E013';
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.t-icon-call:before {
|
|
102
|
-
content: '\E014';
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.t-icon-caret-down-small:before {
|
|
106
|
-
content: '\E015';
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
.t-icon-caret-down:before {
|
|
110
|
-
content: '\E016';
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.t-icon-caret-left-small:before {
|
|
114
|
-
content: '\E017';
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
.t-icon-caret-left:before {
|
|
118
|
-
content: '\E018';
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.t-icon-caret-right-small:before {
|
|
122
|
-
content: '\E019';
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.t-icon-caret-right:before {
|
|
126
|
-
content: '\E01A';
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
.t-icon-caret-up-small:before {
|
|
130
|
-
content: '\E01B';
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.t-icon-caret-up:before {
|
|
134
|
-
content: '\E01C';
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.t-icon-cart:before {
|
|
138
|
-
content: '\E01D';
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.t-icon-chart-bar:before {
|
|
142
|
-
content: '\E01E';
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
.t-icon-chart-bubble:before {
|
|
146
|
-
content: '\E01F';
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.t-icon-chart-pie:before {
|
|
150
|
-
content: '\E020';
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.t-icon-chart:before {
|
|
154
|
-
content: '\E021';
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.t-icon-chat:before {
|
|
158
|
-
content: '\E022';
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.t-icon-check-circle-filled:before {
|
|
162
|
-
content: '\E023';
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.t-icon-check-circle:before {
|
|
166
|
-
content: '\E024';
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.t-icon-check-rectangle-filled:before {
|
|
170
|
-
content: '\E025';
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.t-icon-check-rectangle:before {
|
|
174
|
-
content: '\E026';
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.t-icon-check:before {
|
|
178
|
-
content: '\E027';
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.t-icon-chevron-down-circle:before {
|
|
182
|
-
content: '\E028';
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.t-icon-chevron-down-rectangle:before {
|
|
186
|
-
content: '\E029';
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
.t-icon-chevron-down:before {
|
|
190
|
-
content: '\E02A';
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
.t-icon-chevron-left-circle:before {
|
|
194
|
-
content: '\E02B';
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
.t-icon-chevron-left-double:before {
|
|
198
|
-
content: '\E02C';
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
.t-icon-chevron-left-rectangle:before {
|
|
202
|
-
content: '\E02D';
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
.t-icon-chevron-left:before {
|
|
206
|
-
content: '\E02E';
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
.t-icon-chevron-right-circle:before {
|
|
210
|
-
content: '\E02F';
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.t-icon-chevron-right-double:before {
|
|
214
|
-
content: '\E030';
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.t-icon-chevron-right-rectangle:before {
|
|
218
|
-
content: '\E031';
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
.t-icon-chevron-right:before {
|
|
222
|
-
content: '\E032';
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
.t-icon-chevron-up-circle:before {
|
|
226
|
-
content: '\E033';
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
.t-icon-chevron-up-rectangle:before {
|
|
230
|
-
content: '\E034';
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.t-icon-chevron-up:before {
|
|
234
|
-
content: '\E035';
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
.t-icon-circle:before {
|
|
238
|
-
content: '\E036';
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
.t-icon-clear:before {
|
|
242
|
-
content: '\E037';
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
.t-icon-close-circle-filled:before {
|
|
246
|
-
content: '\E038';
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
.t-icon-close-circle:before {
|
|
250
|
-
content: '\E039';
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
.t-icon-close-rectangle:before {
|
|
254
|
-
content: '\E03A';
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
.t-icon-close:before {
|
|
258
|
-
content: '\E03B';
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.t-icon-cloud-download:before {
|
|
262
|
-
content: '\E03C';
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.t-icon-cloud-upload:before {
|
|
266
|
-
content: '\E03D';
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
.t-icon-cloud:before {
|
|
270
|
-
content: '\E03E';
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
.t-icon-code:before {
|
|
274
|
-
content: '\E03F';
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
.t-icon-control-platform:before {
|
|
278
|
-
content: '\E040';
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.t-icon-creditcard:before {
|
|
282
|
-
content: '\E041';
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
.t-icon-dashboard:before {
|
|
286
|
-
content: '\E042';
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.t-icon-delete:before {
|
|
290
|
-
content: '\E043';
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
.t-icon-desktop:before {
|
|
294
|
-
content: '\E044';
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
.t-icon-discount-filled:before {
|
|
298
|
-
content: '\E045';
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
.t-icon-discount:before {
|
|
302
|
-
content: '\E046';
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
.t-icon-download:before {
|
|
306
|
-
content: '\E047';
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
.t-icon-edit-1:before {
|
|
310
|
-
content: '\E048';
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
.t-icon-edit:before {
|
|
314
|
-
content: '\E049';
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
.t-icon-ellipsis:before {
|
|
318
|
-
content: '\E04A';
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
.t-icon-enter:before {
|
|
322
|
-
content: '\E04B';
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.t-icon-error-circle-filled:before {
|
|
326
|
-
content: '\E04C';
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
.t-icon-error-circle:before {
|
|
330
|
-
content: '\E04D';
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
.t-icon-error:before {
|
|
334
|
-
content: '\E04E';
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
.t-icon-file-add:before {
|
|
338
|
-
content: '\E04F';
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.t-icon-file-copy:before {
|
|
342
|
-
content: '\E050';
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
.t-icon-file-excel:before {
|
|
346
|
-
content: '\E051';
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
.t-icon-file-image:before {
|
|
350
|
-
content: '\E052';
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
.t-icon-file-paste:before {
|
|
354
|
-
content: '\E053';
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
.t-icon-file-pdf:before {
|
|
358
|
-
content: '\E054';
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
.t-icon-file-powerpoint:before {
|
|
362
|
-
content: '\E055';
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
.t-icon-file-unknown:before {
|
|
366
|
-
content: '\E056';
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
.t-icon-file-word:before {
|
|
370
|
-
content: '\E057';
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
.t-icon-file:before {
|
|
374
|
-
content: '\E058';
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
.t-icon-filter-clear:before {
|
|
378
|
-
content: '\E059';
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
.t-icon-filter:before {
|
|
382
|
-
content: '\E05A';
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
.t-icon-flag:before {
|
|
386
|
-
content: '\E05B';
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
.t-icon-folder-add:before {
|
|
390
|
-
content: '\E05C';
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
.t-icon-folder-open:before {
|
|
394
|
-
content: '\E05D';
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
.t-icon-folder:before {
|
|
398
|
-
content: '\E05E';
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
.t-icon-fork:before {
|
|
402
|
-
content: '\E05F';
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
.t-icon-format-horizontal-align-bottom:before {
|
|
406
|
-
content: '\E060';
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
.t-icon-format-horizontal-align-center:before {
|
|
410
|
-
content: '\E061';
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
.t-icon-format-horizontal-align-top:before {
|
|
414
|
-
content: '\E062';
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
.t-icon-format-vertical-align-center:before {
|
|
418
|
-
content: '\E063';
|
|
419
|
-
}
|
|
420
|
-
|
|
421
|
-
.t-icon-format-vertical-align-left:before {
|
|
422
|
-
content: '\E064';
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
.t-icon-format-vertical-align-right:before {
|
|
426
|
-
content: '\E065';
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
.t-icon-forward:before {
|
|
430
|
-
content: '\E066';
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
.t-icon-fullscreen-exit:before {
|
|
434
|
-
content: '\E067';
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
.t-icon-fullscreen:before {
|
|
438
|
-
content: '\E068';
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
.t-icon-gender-female:before {
|
|
442
|
-
content: '\E069';
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
.t-icon-gender-male:before {
|
|
446
|
-
content: '\E06A';
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
.t-icon-gift:before {
|
|
450
|
-
content: '\E06B';
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
.t-icon-heart-filled:before {
|
|
454
|
-
content: '\E06C';
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
.t-icon-heart:before {
|
|
458
|
-
content: '\E06D';
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
.t-icon-help-circle-filled:before {
|
|
462
|
-
content: '\E06E';
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
.t-icon-help-circle:before {
|
|
466
|
-
content: '\E06F';
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
.t-icon-help:before {
|
|
470
|
-
content: '\E070';
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
.t-icon-history:before {
|
|
474
|
-
content: '\E071';
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
.t-icon-home:before {
|
|
478
|
-
content: '\E072';
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
.t-icon-hourglass:before {
|
|
482
|
-
content: '\E073';
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
.t-icon-image:before {
|
|
486
|
-
content: '\E074';
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
.t-icon-info-circle-filled:before {
|
|
490
|
-
content: '\E075';
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.t-icon-info-circle:before {
|
|
494
|
-
content: '\E076';
|
|
495
|
-
}
|
|
496
|
-
|
|
497
|
-
.t-icon-internet:before {
|
|
498
|
-
content: '\E077';
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
.t-icon-jump:before {
|
|
502
|
-
content: '\E078';
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
.t-icon-laptop:before {
|
|
506
|
-
content: '\E079';
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
.t-icon-layers:before {
|
|
510
|
-
content: '\E07A';
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
.t-icon-link-unlink:before {
|
|
514
|
-
content: '\E07B';
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
.t-icon-link:before {
|
|
518
|
-
content: '\E07C';
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
.t-icon-loading:before {
|
|
522
|
-
content: '\E07D';
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
.t-icon-location:before {
|
|
526
|
-
content: '\E07E';
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
.t-icon-lock-off:before {
|
|
530
|
-
content: '\E07F';
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
.t-icon-lock-on:before {
|
|
534
|
-
content: '\E080';
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
.t-icon-login:before {
|
|
538
|
-
content: '\E081';
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
.t-icon-logo-android:before {
|
|
542
|
-
content: '\E082';
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
.t-icon-logo-apple-filled:before {
|
|
546
|
-
content: '\E083';
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
.t-icon-logo-apple:before {
|
|
550
|
-
content: '\E084';
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
.t-icon-logo-chrome-filled:before {
|
|
554
|
-
content: '\E085';
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
.t-icon-logo-chrome:before {
|
|
558
|
-
content: '\E086';
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
.t-icon-logo-codepen:before {
|
|
562
|
-
content: '\E087';
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
.t-icon-logo-github-filled:before {
|
|
566
|
-
content: '\E088';
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
.t-icon-logo-github:before {
|
|
570
|
-
content: '\E089';
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
.t-icon-logo-ie-filled:before {
|
|
574
|
-
content: '\E08A';
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
.t-icon-logo-ie:before {
|
|
578
|
-
content: '\E08B';
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
.t-icon-logo-windows-filled:before {
|
|
582
|
-
content: '\E08C';
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
.t-icon-logo-windows:before {
|
|
586
|
-
content: '\E08D';
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
.t-icon-logout:before {
|
|
590
|
-
content: '\E08E';
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
.t-icon-mail:before {
|
|
594
|
-
content: '\E08F';
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
.t-icon-menu-fold:before {
|
|
598
|
-
content: '\E090';
|
|
599
|
-
}
|
|
600
|
-
|
|
601
|
-
.t-icon-menu-unfold:before {
|
|
602
|
-
content: '\E091';
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
.t-icon-minus-circle-filled:before {
|
|
606
|
-
content: '\E092';
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
.t-icon-minus-circle:before {
|
|
610
|
-
content: '\E093';
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
.t-icon-minus-rectangle:before {
|
|
614
|
-
content: '\E094';
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
.t-icon-mobile-vibrate:before {
|
|
618
|
-
content: '\E095';
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
.t-icon-mobile:before {
|
|
622
|
-
content: '\E096';
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
.t-icon-money-circle:before {
|
|
626
|
-
content: '\E097';
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
.t-icon-more:before {
|
|
630
|
-
content: '\E098';
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
.t-icon-move:before {
|
|
634
|
-
content: '\E099';
|
|
635
|
-
}
|
|
636
|
-
|
|
637
|
-
.t-icon-next:before {
|
|
638
|
-
content: '\E09A';
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
.t-icon-notification-filled:before {
|
|
642
|
-
content: '\E09B';
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
.t-icon-notification:before {
|
|
646
|
-
content: '\E09C';
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
.t-icon-order-adjustment-column:before {
|
|
650
|
-
content: '\E09D';
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
.t-icon-order-ascending:before {
|
|
654
|
-
content: '\E09E';
|
|
655
|
-
}
|
|
656
|
-
|
|
657
|
-
.t-icon-order-descending:before {
|
|
658
|
-
content: '\E09F';
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
.t-icon-page-first:before {
|
|
662
|
-
content: '\E0A0';
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
.t-icon-page-last:before {
|
|
666
|
-
content: '\E0A1';
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
.t-icon-pause-circle-filled:before {
|
|
670
|
-
content: '\E0A2';
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
.t-icon-photo:before {
|
|
674
|
-
content: '\E0A3';
|
|
675
|
-
}
|
|
676
|
-
|
|
677
|
-
.t-icon-pin:before {
|
|
678
|
-
content: '\E0A4';
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
.t-icon-play-circle-filled:before {
|
|
682
|
-
content: '\E0A5';
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
.t-icon-play-circle-stroke:before {
|
|
686
|
-
content: '\E0A6';
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
.t-icon-play-circle:before {
|
|
690
|
-
content: '\E0A7';
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
.t-icon-play:before {
|
|
694
|
-
content: '\E0A8';
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
.t-icon-poweroff:before {
|
|
698
|
-
content: '\E0A9';
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
.t-icon-precise-monitor:before {
|
|
702
|
-
content: '\E0AA';
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
.t-icon-previous:before {
|
|
706
|
-
content: '\E0AB';
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
.t-icon-print:before {
|
|
710
|
-
content: '\E0AC';
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
.t-icon-qrcode:before {
|
|
714
|
-
content: '\E0AD';
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
.t-icon-queue:before {
|
|
718
|
-
content: '\E0AE';
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
.t-icon-rectangle:before {
|
|
722
|
-
content: '\E0AF';
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
.t-icon-refresh:before {
|
|
726
|
-
content: '\E0B0';
|
|
727
|
-
}
|
|
728
|
-
|
|
729
|
-
.t-icon-remove:before {
|
|
730
|
-
content: '\E0B1';
|
|
731
|
-
}
|
|
732
|
-
|
|
733
|
-
.t-icon-rollback:before {
|
|
734
|
-
content: '\E0B2';
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
.t-icon-root-list:before {
|
|
738
|
-
content: '\E0B3';
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
.t-icon-round:before {
|
|
742
|
-
content: '\E0B4';
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
.t-icon-save:before {
|
|
746
|
-
content: '\E0B5';
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
.t-icon-scan:before {
|
|
750
|
-
content: '\E0B6';
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
.t-icon-search:before {
|
|
754
|
-
content: '\E0B7';
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
.t-icon-secured:before {
|
|
758
|
-
content: '\E0B8';
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
.t-icon-server:before {
|
|
762
|
-
content: '\E0B9';
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
.t-icon-service:before {
|
|
766
|
-
content: '\E0BA';
|
|
767
|
-
}
|
|
768
|
-
|
|
769
|
-
.t-icon-setting:before {
|
|
770
|
-
content: '\E0BB';
|
|
771
|
-
}
|
|
772
|
-
|
|
773
|
-
.t-icon-share:before {
|
|
774
|
-
content: '\E0BC';
|
|
775
|
-
}
|
|
776
|
-
|
|
777
|
-
.t-icon-shop:before {
|
|
778
|
-
content: '\E0BD';
|
|
779
|
-
}
|
|
780
|
-
|
|
781
|
-
.t-icon-slash:before {
|
|
782
|
-
content: '\E0BE';
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
.t-icon-sound:before {
|
|
786
|
-
content: '\E0BF';
|
|
787
|
-
}
|
|
788
|
-
|
|
789
|
-
.t-icon-star-filled:before {
|
|
790
|
-
content: '\E0C0';
|
|
791
|
-
}
|
|
792
|
-
|
|
793
|
-
.t-icon-star:before {
|
|
794
|
-
content: '\E0C1';
|
|
795
|
-
}
|
|
796
|
-
|
|
797
|
-
.t-icon-stop-circle-1:before {
|
|
798
|
-
content: '\E0C2';
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
.t-icon-stop-circle-filled:before {
|
|
802
|
-
content: '\E0C3';
|
|
803
|
-
}
|
|
804
|
-
|
|
805
|
-
.t-icon-stop-circle:before {
|
|
806
|
-
content: '\E0C4';
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
.t-icon-stop:before {
|
|
810
|
-
content: '\E0C5';
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
.t-icon-swap-left:before {
|
|
814
|
-
content: '\E0C6';
|
|
815
|
-
}
|
|
816
|
-
|
|
817
|
-
.t-icon-swap-right:before {
|
|
818
|
-
content: '\E0C7';
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
.t-icon-swap:before {
|
|
822
|
-
content: '\E0C8';
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
.t-icon-thumb-down:before {
|
|
826
|
-
content: '\E0C9';
|
|
827
|
-
}
|
|
828
|
-
|
|
829
|
-
.t-icon-thumb-up:before {
|
|
830
|
-
content: '\E0CA';
|
|
831
|
-
}
|
|
832
|
-
|
|
833
|
-
.t-icon-time-filled:before {
|
|
834
|
-
content: '\E0CB';
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
.t-icon-time:before {
|
|
838
|
-
content: '\E0CC';
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
.t-icon-tips:before {
|
|
842
|
-
content: '\E0CD';
|
|
843
|
-
}
|
|
844
|
-
|
|
845
|
-
.t-icon-tools:before {
|
|
846
|
-
content: '\E0CE';
|
|
847
|
-
}
|
|
848
|
-
|
|
849
|
-
.t-icon-unfold-less:before {
|
|
850
|
-
content: '\E0CF';
|
|
851
|
-
}
|
|
852
|
-
|
|
853
|
-
.t-icon-unfold-more:before {
|
|
854
|
-
content: '\E0D0';
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
.t-icon-upload:before {
|
|
858
|
-
content: '\E0D1';
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
.t-icon-usb:before {
|
|
862
|
-
content: '\E0D2';
|
|
863
|
-
}
|
|
864
|
-
|
|
865
|
-
.t-icon-user-add:before {
|
|
866
|
-
content: '\E0D3';
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
.t-icon-user-avatar:before {
|
|
870
|
-
content: '\E0D4';
|
|
871
|
-
}
|
|
872
|
-
|
|
873
|
-
.t-icon-user-circle:before {
|
|
874
|
-
content: '\E0D5';
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
.t-icon-user-clear:before {
|
|
878
|
-
content: '\E0D6';
|
|
879
|
-
}
|
|
880
|
-
|
|
881
|
-
.t-icon-user-talk:before {
|
|
882
|
-
content: '\E0D7';
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
.t-icon-user:before {
|
|
886
|
-
content: '\E0D8';
|
|
887
|
-
}
|
|
888
|
-
|
|
889
|
-
.t-icon-usergroup-add:before {
|
|
890
|
-
content: '\E0D9';
|
|
891
|
-
}
|
|
892
|
-
|
|
893
|
-
.t-icon-usergroup-clear:before {
|
|
894
|
-
content: '\E0DA';
|
|
895
|
-
}
|
|
896
|
-
|
|
897
|
-
.t-icon-usergroup:before {
|
|
898
|
-
content: '\E0DB';
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
.t-icon-video:before {
|
|
902
|
-
content: '\E0DC';
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
.t-icon-view-column:before {
|
|
906
|
-
content: '\E0DD';
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
.t-icon-view-list:before {
|
|
910
|
-
content: '\E0DE';
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
.t-icon-view-module:before {
|
|
914
|
-
content: '\E0DF';
|
|
915
|
-
}
|
|
916
|
-
|
|
917
|
-
.t-icon-wallet:before {
|
|
918
|
-
content: '\E0E0';
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
.t-icon-wifi:before {
|
|
922
|
-
content: '\E0E1';
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
.t-icon-zoom-in:before {
|
|
926
|
-
content: '\E0E2';
|
|
927
|
-
}
|
|
928
|
-
|
|
929
|
-
.t-icon-zoom-out:before {
|
|
930
|
-
content: '\E0E3';
|
|
931
|
-
}
|
|
932
|
-
@font-face {
|
|
933
|
-
font-family: 't';
|
|
934
|
-
src: url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.eot'),
|
|
935
|
-
/* for IE 9*/ url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.eot?#iefix')
|
|
936
|
-
format('embedded-opentype'),
|
|
937
|
-
/* under IE9 */ url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.woff')
|
|
938
|
-
format('woff'),
|
|
939
|
-
/* chrome, firefox */
|
|
940
|
-
url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.ttf') format('truetype'),
|
|
941
|
-
/* opera, Safari, Android, iOS 4.2+ */
|
|
942
|
-
url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.svg') format('svg'); /* iOS 4.1- */
|
|
943
|
-
font-weight: normal;
|
|
944
|
-
font-style: normal;
|
|
945
|
-
}
|
|
946
|
-
|
|
947
|
-
:host {
|
|
948
|
-
display: inline-flex;
|
|
949
|
-
align-items: center;
|
|
950
|
-
justify-content: center;
|
|
951
|
-
}
|
|
952
|
-
.lcap-icon {
|
|
953
|
-
font-size: 34px;
|
|
954
|
-
display: inline-block;
|
|
955
|
-
font-family: 'lcap-icon' !important;
|
|
956
|
-
speak: none;
|
|
957
|
-
font-style: normal;
|
|
958
|
-
font-weight: normal;
|
|
959
|
-
font-variant: normal;
|
|
960
|
-
text-transform: none;
|
|
961
|
-
text-rendering: auto;
|
|
962
|
-
line-height: 1;
|
|
963
|
-
-webkit-font-smoothing: antialiased;
|
|
964
|
-
-moz-osx-font-smoothing: grayscale;
|
|
965
|
-
}
|
|
966
|
-
.lcap-icon-nointernet:before {
|
|
967
|
-
content: '\e900';
|
|
968
|
-
}
|
|
969
|
-
.lcap-icon-success:before {
|
|
970
|
-
content: '\e901';
|
|
971
|
-
}
|
|
972
|
-
.lcap-icon-warning:before {
|
|
973
|
-
content: '\e902';
|
|
974
|
-
}
|
|
975
|
-
.lcap-icon-pending:before {
|
|
976
|
-
content: '\e903';
|
|
977
|
-
}
|
|
978
|
-
.lcap-icon-refresh:before {
|
|
979
|
-
content: '\e904';
|
|
980
|
-
}
|
|
981
|
-
.lcap-icon-folder:before {
|
|
982
|
-
content: '\e905';
|
|
983
|
-
}
|
|
984
|
-
.lcap-icon-arrowup:before {
|
|
985
|
-
content: '\e906';
|
|
986
|
-
}
|
|
987
|
-
.lcap-icon-arrowdown:before {
|
|
988
|
-
content: '\e907';
|
|
989
|
-
}
|
|
990
|
-
.lcap-icon-arrowleft:before {
|
|
991
|
-
content: '\e908';
|
|
992
|
-
}
|
|
993
|
-
.lcap-icon-arrowright:before {
|
|
994
|
-
content: '\e909';
|
|
995
|
-
}
|
|
996
|
-
.lcap-icon-chevronup:before {
|
|
997
|
-
content: '\e90a';
|
|
998
|
-
}
|
|
999
|
-
.lcap-icon-chevrondown:before {
|
|
1000
|
-
content: '\e90b';
|
|
1001
|
-
}
|
|
1002
|
-
.lcap-icon-chevronleft:before {
|
|
1003
|
-
content: '\e90c';
|
|
1004
|
-
}
|
|
1005
|
-
.lcap-icon-chevronright:before {
|
|
1006
|
-
content: '\e90d';
|
|
1007
|
-
}
|
|
1008
|
-
.lcap-icon-delete:before {
|
|
1009
|
-
content: '\e90e';
|
|
1010
|
-
}
|
|
1011
|
-
.lcap-icon-edit:before {
|
|
1012
|
-
content: '\e90f';
|
|
1013
|
-
}
|
|
1014
|
-
.lcap-icon-search:before {
|
|
1015
|
-
content: '\e910';
|
|
1016
|
-
}
|
|
1017
|
-
.lcap-icon-check:before {
|
|
1018
|
-
content: '\e911';
|
|
1019
|
-
}
|
|
1020
|
-
.lcap-icon-close:before {
|
|
1021
|
-
content: '\e912';
|
|
1022
|
-
}
|
|
1023
|
-
.lcap-icon-add:before {
|
|
1024
|
-
content: '\e913';
|
|
1025
|
-
}
|
|
1026
|
-
.lcap-icon-download:before {
|
|
1027
|
-
content: '\e914';
|
|
1028
|
-
}
|
|
1029
|
-
.lcap-icon-success-fill:before {
|
|
1030
|
-
content: '\e915';
|
|
1031
|
-
}
|
|
1032
|
-
.lcap-icon-close-fill:before {
|
|
1033
|
-
content: '\e916';
|
|
1034
|
-
}
|
|
1035
|
-
.lcap-icon-minus-fill:before {
|
|
1036
|
-
content: '\e917';
|
|
1037
|
-
}
|
|
1038
|
-
.lcap-icon-add-fill:before {
|
|
1039
|
-
content: '\e918';
|
|
1040
|
-
}
|
|
1041
|
-
.lcap-icon-info-fill:before {
|
|
1042
|
-
content: '\e919';
|
|
1043
|
-
}
|
|
1044
|
-
.lcap-icon-pending-fill:before {
|
|
1045
|
-
content: '\e91a';
|
|
1046
|
-
}
|
|
1047
|
-
.lcap-icon-warning-fill:before {
|
|
1048
|
-
content: '\e91b';
|
|
1049
|
-
}
|
|
1050
|
-
.lcap-icon-more:before {
|
|
1051
|
-
content: '\e91c';
|
|
1052
|
-
}
|
|
1053
|
-
.lcap-icon-star:before {
|
|
1054
|
-
content: '\e91d';
|
|
1055
|
-
}
|
|
1056
|
-
.lcap-icon-star-fill:before {
|
|
1057
|
-
content: '\e91e';
|
|
1058
|
-
}
|
|
1059
|
-
.lcap-icon-location:before {
|
|
1060
|
-
content: '\e91f';
|
|
1061
|
-
}
|
|
1062
|
-
.lcap-icon-question:before {
|
|
1063
|
-
content: '\e920';
|
|
1064
|
-
}
|
|
1065
|
-
|
|
1066
|
-
/* pc style */
|
|
1067
|
-
.weda-grid-navigation {
|
|
1068
|
-
width: 100%;
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1071
|
-
.weda-grid-navigation .weda-grid-navigation__wrapper {
|
|
1072
|
-
width: 100%;
|
|
1073
|
-
padding: 0 16px;
|
|
1074
|
-
box-sizing: border-box;
|
|
1075
|
-
}
|
|
1076
|
-
|
|
1077
|
-
.weda-grid-navigation .weda-grid {
|
|
1078
|
-
display: flex;
|
|
1079
|
-
flex-wrap: wrap;
|
|
1080
|
-
}
|
|
1081
|
-
|
|
1082
|
-
.weda-grid-navigation .weda-grid .weda-grid__item {
|
|
1083
|
-
flex-grow: 1;
|
|
1084
|
-
}
|
|
1085
|
-
|
|
1086
|
-
.weda-grid-navigation .weda-grid-navigation__col .weda-grid__box {
|
|
1087
|
-
display: flex;
|
|
1088
|
-
flex-direction: column;
|
|
1089
|
-
text-align: center;
|
|
1090
|
-
justify-content: flex-start;
|
|
1091
|
-
/* align-items: center; */
|
|
1092
|
-
padding: 8px 0;
|
|
1093
|
-
height: 100%;
|
|
1094
|
-
box-sizing: border-box;
|
|
1095
|
-
}
|
|
1096
|
-
|
|
1097
|
-
.weda-grid-navigation
|
|
1098
|
-
.weda-grid-navigation__row:first-child
|
|
1099
|
-
.weda-grid-navigation__col
|
|
1100
|
-
.weda-grid__box {
|
|
1101
|
-
padding-top: 16px;
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
.weda-grid-navigation
|
|
1105
|
-
.weda-grid-navigation__row:last-child
|
|
1106
|
-
.weda-grid-navigation__col
|
|
1107
|
-
.weda-grid__box {
|
|
1108
|
-
padding-bottom: 16px;
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1111
|
-
.weda-grid-navigation
|
|
1112
|
-
.weda-grid-navigation__col.weda-grid-navigation__col--big
|
|
1113
|
-
.weda-grid__box {
|
|
1114
|
-
padding: 10px 0;
|
|
1115
|
-
}
|
|
1116
|
-
|
|
1117
|
-
.weda-grid-navigation
|
|
1118
|
-
.weda-grid-navigation__row:first-child
|
|
1119
|
-
.weda-grid-navigation__col.weda-grid-navigation__col--big
|
|
1120
|
-
.weda-grid__box {
|
|
1121
|
-
padding-top: 20px;
|
|
1122
|
-
}
|
|
1123
|
-
|
|
1124
|
-
.weda-grid-navigation
|
|
1125
|
-
.weda-grid-navigation__row:last-child
|
|
1126
|
-
.weda-grid-navigation__col.weda-grid-navigation__col--big
|
|
1127
|
-
.weda-grid__box {
|
|
1128
|
-
padding-bottom: 20px;
|
|
1129
|
-
}
|
|
1130
|
-
|
|
1131
|
-
.weda-grid-navigation
|
|
1132
|
-
.weda-grid-navigation__col--medium
|
|
1133
|
-
.weda-grid-navigation__img {
|
|
1134
|
-
width: 2.57142em;
|
|
1135
|
-
height: 2.57142em;
|
|
1136
|
-
}
|
|
1137
|
-
.weda-grid-navigation .weda-grid-navigation__icon .lcap-icon-padding {
|
|
1138
|
-
padding: 2px 0;
|
|
1139
|
-
}
|
|
1140
|
-
.weda-grid-navigation
|
|
1141
|
-
.weda-grid-navigation__col--medium
|
|
1142
|
-
.weda-grid-navigation__icon
|
|
1143
|
-
.weda-icon {
|
|
1144
|
-
font-size: 2.57142em;
|
|
1145
|
-
}
|
|
1146
|
-
.weda-grid-navigation
|
|
1147
|
-
.weda-grid-navigation__col--small
|
|
1148
|
-
.weda-grid-navigation__img {
|
|
1149
|
-
width: 2.2857em;
|
|
1150
|
-
}
|
|
1151
|
-
.weda-grid-navigation
|
|
1152
|
-
.weda-grid-navigation__col--small
|
|
1153
|
-
.weda-grid-navigation__icon
|
|
1154
|
-
.weda-icon {
|
|
1155
|
-
font-size: 2.2857em;
|
|
1156
|
-
}
|
|
1157
|
-
.weda-grid-navigation
|
|
1158
|
-
.weda-grid-navigation__col--big
|
|
1159
|
-
.weda-grid-navigation__img {
|
|
1160
|
-
width: 2.85714em;
|
|
1161
|
-
height: 2.85714em;
|
|
1162
|
-
}
|
|
1163
|
-
|
|
1164
|
-
.weda-grid-navigation
|
|
1165
|
-
.weda-grid-navigation__col--big
|
|
1166
|
-
.weda-grid-navigation__icon
|
|
1167
|
-
.weda-icon {
|
|
1168
|
-
font-size: 2.85714em;
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1171
|
-
.weda-grid-navigation .weda-grid-navigation__icon .weda-grid-navigation__img {
|
|
1172
|
-
width: 100%;
|
|
1173
|
-
height: 100%;
|
|
1174
|
-
}
|
|
1175
|
-
|
|
1176
|
-
.weda-grid-navigation .weda-grid-navigation__col .weda-grid-navigation__text {
|
|
1177
|
-
font-size: 0.85714em;
|
|
1178
|
-
line-height: 1.42857em;
|
|
1179
|
-
text-align: center;
|
|
1180
|
-
color: rgba(0, 0, 0, 0.6);
|
|
1181
|
-
display: -webkit-box;
|
|
1182
|
-
overflow: hidden;
|
|
1183
|
-
text-overflow: ellipsis;
|
|
1184
|
-
-webkit-box-orient: vertical;
|
|
1185
|
-
-webkit-line-clamp: 1;
|
|
1186
|
-
margin-top: 4px;
|
|
1187
|
-
}
|
|
1188
|
-
|
|
1189
|
-
.weda-grid-navigation
|
|
1190
|
-
.weda-grid-navigation__col--big
|
|
1191
|
-
.weda-grid-navigation__text {
|
|
1192
|
-
margin-top: 8px;
|
|
1193
|
-
}
|