@cloudbase/weda-ui 0.2.13 → 0.2.16
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/README.md +7 -2
- package/package.json +41 -16
- package/src/configs/components/calendar.json +75 -0
- package/src/configs/components/carousel.json +273 -0
- package/src/configs/components/chart/statisticsCard.json +331 -0
- package/src/configs/components/dataView.json +139 -0
- package/src/configs/components/form/location.json +152 -0
- package/src/configs/components/form/uploaderFile.json +2 -1
- package/src/configs/components/graphicCard.json +399 -0
- package/src/configs/components/image.json +4 -0
- package/src/configs/components/link.json +2 -2
- package/src/configs/components/listView.json +230 -0
- package/src/configs/components/navLayout.json +350 -0
- package/src/configs/components/swiper.json +3 -3
- package/src/configs/index.js +16 -0
- package/src/mp/components/button/index.js +12 -13
- package/src/mp/components/button/index.wxml +1 -1
- package/src/{web/wedatheme/src/styles/assets → mp/components/calendar}/arrowright--line.svg +3 -4
- package/src/mp/components/calendar/index.js +238 -0
- package/src/mp/components/calendar/index.json +4 -0
- package/src/mp/components/calendar/index.wxml +37 -0
- package/src/mp/components/calendar/index.wxss +178 -0
- package/src/mp/components/carousel/index.js +88 -0
- package/src/mp/components/carousel/index.json +7 -0
- package/src/mp/components/carousel/index.wxml +6 -0
- package/src/mp/components/chart/statisticsCard/index.js +226 -0
- package/src/mp/components/chart/statisticsCard/index.json +4 -0
- package/src/mp/components/chart/statisticsCard/index.wxml +9 -0
- package/src/mp/components/chart/statisticsCard/index.wxss +45 -0
- package/src/mp/components/container/index.js +4 -0
- package/src/mp/components/dataView/index.js +34 -0
- package/src/mp/components/dataView/index.json +7 -0
- package/src/mp/components/dataView/index.wxml +15 -0
- package/src/{web/wedatheme/src/styles/theme/_icon.scss → mp/components/dataView/index.wxss} +0 -0
- package/src/mp/components/form/location/components/mapChoose/index.js +201 -0
- package/src/mp/components/form/location/components/mapChoose/index.json +4 -0
- package/src/mp/components/form/location/components/mapChoose/index.wxml +42 -0
- package/src/mp/components/form/location/components/mapChoose/index.wxss +188 -0
- package/src/mp/components/form/location/index.js +341 -0
- package/src/mp/components/form/location/index.json +6 -0
- package/src/mp/components/form/location/index.wxml +25 -0
- package/src/mp/components/form/location/index.wxss +91 -0
- package/src/mp/components/form/uploader/index.js +39 -35
- package/src/mp/components/form/uploaderFile/index.js +63 -30
- package/src/mp/components/form/uploaderFile/index.wxss +1 -0
- package/src/mp/components/graphicCard/chevron-right.svg +3 -0
- package/src/mp/components/graphicCard/index.js +205 -0
- package/src/mp/components/graphicCard/index.json +4 -0
- package/src/mp/components/graphicCard/index.wxml +29 -0
- package/src/mp/components/graphicCard/index.wxss +157 -0
- package/src/mp/components/image/index.js +53 -52
- package/src/mp/components/listView/arrow-right-line.svg +3 -0
- package/src/mp/components/listView/index.js +286 -0
- package/src/mp/components/listView/index.json +4 -0
- package/src/mp/components/listView/index.wxml +40 -0
- package/src/mp/components/listView/index.wxss +150 -0
- package/src/mp/components/listView/more-line.svg +3 -0
- package/src/mp/components/navLayout/index.js +123 -0
- package/src/mp/components/navLayout/index.json +7 -0
- package/src/mp/components/navLayout/index.wxml +25 -0
- package/src/mp/components/navLayout/index.wxss +1193 -0
- package/src/mp/components/swiper/index.wxml +2 -0
- package/src/mp/components/text/index.wxss +6 -6
- package/src/mp/index.json +9 -1
- package/src/mp/utils/debounce.js +133 -0
- package/src/mp/utils/dr_square_point.js +25 -0
- package/src/mp/utils/qqmap-wx-jssdk1.2/qqmap-wx-jssdk.js +1336 -0
- package/src/mp/utils/spark-md5.js +776 -0
- package/src/mp/utils/tcb.js +18 -0
- package/src/web/components/button/index.tsx +1 -1
- package/src/web/components/calendar/index.css +382 -0
- package/src/web/components/calendar/index.jsx +312 -0
- package/src/web/components/calendar/util.js +90 -0
- package/src/web/components/carousel/index.css +119 -0
- package/src/web/components/carousel/index.tsx +417 -0
- package/src/web/components/chart/statisticsCard/index.css +62 -0
- package/src/web/components/chart/statisticsCard/index.tsx +286 -0
- package/src/web/components/chart/statisticsCard/interface.ts +14 -0
- package/src/web/components/dataView/index.tsx +20 -0
- package/src/web/components/dataView/interface.ts +6 -0
- package/src/web/components/form/input/index.css +41 -4
- package/src/web/components/form/input/index.tsx +1 -0
- package/src/web/components/form/location/common/mapChoose.css +178 -0
- package/src/web/components/form/location/common/mapChoose.jsx +343 -0
- package/src/web/components/form/location/common/mapView.jsx +190 -0
- package/src/web/components/form/location/common/propsConfig.js +54 -0
- package/src/web/components/form/location/common/selectModal.css +44 -0
- package/src/web/components/form/location/common/selectModal.jsx +82 -0
- package/src/web/components/form/location/common/useLocationInfo.js +100 -0
- package/src/web/components/form/location/components/LocationH5/index.css +243 -0
- package/src/web/components/form/location/components/LocationH5/location.h5.jsx +403 -0
- package/src/web/components/form/location/components/LocationPC/Header.jsx +109 -0
- package/src/web/components/form/location/components/LocationPC/index.css +44 -0
- package/src/web/components/form/location/components/LocationPC/location.PC.jsx +323 -0
- package/src/web/components/form/location/constants.js +4 -0
- package/src/web/{wedatheme/src/styles/theme/_timeline.scss → components/form/location/index.css} +0 -0
- package/src/web/components/form/location/index.jsx +25 -0
- package/src/web/components/form/uploader/uploader.h5.tsx +16 -10
- package/src/web/components/form/uploader/uploader.pc.tsx +15 -11
- package/src/web/components/form/uploaderFile/{uploadFile.h5.jsx → uploadFile.h5.tsx} +179 -148
- package/src/web/components/form/uploaderFile/{uploadFile.pc.jsx → uploadFile.pc.tsx} +79 -56
- package/src/web/components/graphicCard/index.css +163 -0
- package/src/web/components/graphicCard/index.tsx +309 -0
- package/src/web/components/image/image.tsx +107 -94
- package/src/web/components/image/index.tsx +1 -1
- package/src/web/components/index.js +13 -1
- package/src/web/components/listView/arrow-right-line.svg +3 -0
- package/src/web/components/listView/index.css +139 -0
- package/src/web/components/listView/index.tsx +354 -0
- package/src/web/components/listView/interface.ts +98 -0
- package/src/web/components/navLayout/index.css +332 -0
- package/src/web/components/navLayout/index.tsx +247 -0
- package/src/web/components/swiper/index.css +4 -0
- package/src/web/components/swiper/index.tsx +21 -14
- package/src/web/components/tabs/index.tsx +2 -2
- package/src/web/components/tabs/tabs.h5.tsx +7 -4
- package/src/web/components/uploaderFileView/index.css +9 -9
- package/src/web/components/uploaderFileView/index.jsx +34 -25
- package/src/web/types.d.ts +15 -14
- package/src/web/utils/debounce.js +98 -0
- package/src/web/utils/platform.js +31 -0
- package/src/web/utils/tcb.js +35 -0
- package/src/web/utils/tmap.js +4 -0
- package/src/web/wedatheme/.code.yml +0 -16
- package/src/web/wedatheme/.editorconfig +0 -9
- package/src/web/wedatheme/.eslintrc +0 -20
- package/src/web/wedatheme/.git +0 -1
- package/src/web/wedatheme/.gitignore +0 -5
- package/src/web/wedatheme/.npmrc +0 -1
- package/src/web/wedatheme/.orange-ci.yml +0 -55
- package/src/web/wedatheme/.vscode/extensions.json +0 -3
- package/src/web/wedatheme/.vscode/settings.json +0 -11
- package/src/web/wedatheme/README.md +0 -50
- package/src/web/wedatheme/i18n/README.md +0 -4
- package/src/web/wedatheme/i18n/translation/index.js +0 -10
- package/src/web/wedatheme/i18n/translation/zh.js +0 -15
- package/src/web/wedatheme/jsconfig.json +0 -15
- package/src/web/wedatheme/mock/app.js +0 -42
- package/src/web/wedatheme/mock/history-context.js +0 -8
- package/src/web/wedatheme/mock/index.js +0 -3
- package/src/web/wedatheme/mock/layout/AppLayout.jsx +0 -28
- package/src/web/wedatheme/mock/layout/MenuWithRouter.jsx +0 -50
- package/src/web/wedatheme/mock/layout/index.js +0 -1
- package/src/web/wedatheme/package-lock.json +0 -14335
- package/src/web/wedatheme/package.json +0 -61
- package/src/web/wedatheme/public/index.html +0 -19
- package/src/web/wedatheme/src/app.js +0 -22
- package/src/web/wedatheme/src/components/README.md +0 -4
- package/src/web/wedatheme/src/configs/menu.js +0 -9
- package/src/web/wedatheme/src/routes/wedatheme-index/Component.jsx +0 -402
- package/src/web/wedatheme/src/routes/wedatheme-index/Form.jsx +0 -729
- package/src/web/wedatheme/src/routes/wedatheme-index/FormItem.jsx +0 -18
- package/src/web/wedatheme/src/routes/wedatheme-index/WedathemeIndex.jsx +0 -1276
- package/src/web/wedatheme/src/routes/wedatheme-index/index.js +0 -1
- package/src/web/wedatheme/src/routes/weui2td/WEUI2TD.jsx +0 -3
- package/src/web/wedatheme/src/routes/weui2td/index.js +0 -1
- package/src/web/wedatheme/src/styles/_btn.scss +0 -24
- package/src/web/wedatheme/src/styles/_icon.scss +0 -653
- package/src/web/wedatheme/src/styles/_map.scss +0 -12
- package/src/web/wedatheme/src/styles/_middle.scss +0 -340
- package/src/web/wedatheme/src/styles/_upload.scss +0 -47
- package/src/web/wedatheme/src/styles/assets/alert-close.svg +0 -3
- package/src/web/wedatheme/src/styles/assets/and.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/arrowdown--line.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/arrowdown.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/arrowleft--line.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/arrowleft.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/arrowright-blue--line.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/arrowright.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/arrowup--line.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/arrowup.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/bell-warning.svg +0 -3
- package/src/web/wedatheme/src/styles/assets/btnback.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/calendar.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/chartcolumn-1.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/chartcolumn.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/chartline-1.svg +0 -9
- package/src/web/wedatheme/src/styles/assets/chartline.svg +0 -9
- package/src/web/wedatheme/src/styles/assets/chartpie-1.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/chartpie.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/check-1.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/check-2.svg +0 -1
- package/src/web/wedatheme/src/styles/assets/check.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/close-1.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/close.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/consult.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/convertip--blue.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/convertip.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/copy.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/cur-active.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/cur.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/daily.svg +0 -13
- package/src/web/wedatheme/src/styles/assets/database.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/datasheet.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/delete-white.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/delete.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/detail.svg +0 -13
- package/src/web/wedatheme/src/styles/assets/dismiss.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/download.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/drop.svg +0 -15
- package/src/web/wedatheme/src/styles/assets/email-error.svg +0 -14
- package/src/web/wedatheme/src/styles/assets/email-warning.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/email.svg +0 -14
- package/src/web/wedatheme/src/styles/assets/emailv.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/error-1.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/error-filled.svg +0 -3
- package/src/web/wedatheme/src/styles/assets/error.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/externallink.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/favorable.svg +0 -9
- package/src/web/wedatheme/src/styles/assets/filter.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/firstpage.svg +0 -13
- package/src/web/wedatheme/src/styles/assets/folderclose.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/folderopen.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/fullscreenquit.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/fullsreen.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/globe-gray.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/guide.svg +0 -9
- package/src/web/wedatheme/src/styles/assets/help.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/hide.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/info.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/infoblue-1.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/infoblue-filled.svg +0 -3
- package/src/web/wedatheme/src/styles/assets/infoblue.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/jump-black.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/jump.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/lastpage.svg +0 -13
- package/src/web/wedatheme/src/styles/assets/loading.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/local.svg +0 -10
- package/src/web/wedatheme/src/styles/assets/menu-fold-white.svg +0 -6
- package/src/web/wedatheme/src/styles/assets/menu-fold.svg +0 -6
- package/src/web/wedatheme/src/styles/assets/minus.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/monitor.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/more.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/multi-line.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/news.svg +0 -3
- package/src/web/wedatheme/src/styles/assets/not.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/notice.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/pencil.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/pending-1.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/pending-gray.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/pending.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/percent-blue.svg +0 -16
- package/src/web/wedatheme/src/styles/assets/percent.svg +0 -16
- package/src/web/wedatheme/src/styles/assets/phone-error.svg +0 -11
- package/src/web/wedatheme/src/styles/assets/phone-warning.svg +0 -9
- package/src/web/wedatheme/src/styles/assets/phone.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/phonev.svg +0 -9
- package/src/web/wedatheme/src/styles/assets/plus.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/qq.svg +0 -11
- package/src/web/wedatheme/src/styles/assets/realname.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/realnamev.svg +0 -9
- package/src/web/wedatheme/src/styles/assets/refresh-blue.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/refresh.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/relationship-1.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/relationship.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/remind.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/search.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/setting.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/shopcart.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/show.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/sort.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/sortdown.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/sortup.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/success-1.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/success-filled.svg +0 -3
- package/src/web/wedatheme/src/styles/assets/success.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/table-1.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/table.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/tag.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/time.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/transfer.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/trenddown.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/trendup.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/viewgrid.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/viewlist.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/warning-1.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/warning-filled.svg +0 -3
- package/src/web/wedatheme/src/styles/assets/warning.svg +0 -8
- package/src/web/wedatheme/src/styles/assets/wechat-error.svg +0 -14
- package/src/web/wedatheme/src/styles/assets/wechat-warning.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/wechat.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/wechatv.svg +0 -12
- package/src/web/wedatheme/src/styles/assets/zoom-in-white.svg +0 -4
- package/src/web/wedatheme/src/styles/assets/zoom-in.svg +0 -4
- package/src/web/wedatheme/src/styles/assets/zoom-out-white.svg +0 -4
- package/src/web/wedatheme/src/styles/assets/zoom-out.svg +0 -4
- package/src/web/wedatheme/src/styles/index.scss +0 -18
- package/src/web/wedatheme/src/styles/main.css +0 -166
- package/src/web/wedatheme/src/styles/theme/_alert.scss +0 -73
- package/src/web/wedatheme/src/styles/theme/_badge.scss +0 -38
- package/src/web/wedatheme/src/styles/theme/_blank-page-v2.scss +0 -7
- package/src/web/wedatheme/src/styles/theme/_breadcrumb.scss +0 -8
- package/src/web/wedatheme/src/styles/theme/_bubble.scss +0 -24
- package/src/web/wedatheme/src/styles/theme/_button.scss +0 -212
- package/src/web/wedatheme/src/styles/theme/_card.scss +0 -12
- package/src/web/wedatheme/src/styles/theme/_cascader.scss +0 -43
- package/src/web/wedatheme/src/styles/theme/_checkbox&radio.scss +0 -83
- package/src/web/wedatheme/src/styles/theme/_datepicker.scss +0 -36
- package/src/web/wedatheme/src/styles/theme/_dialog.scss +0 -39
- package/src/web/wedatheme/src/styles/theme/_divider.scss +0 -1
- package/src/web/wedatheme/src/styles/theme/_drawer.scss +0 -15
- package/src/web/wedatheme/src/styles/theme/_dropdown.scss +0 -53
- package/src/web/wedatheme/src/styles/theme/_form.scss +0 -38
- package/src/web/wedatheme/src/styles/theme/_input&textarea&select.scss +0 -85
- package/src/web/wedatheme/src/styles/theme/_inputnumber.scss +0 -16
- package/src/web/wedatheme/src/styles/theme/_link.scss +0 -14
- package/src/web/wedatheme/src/styles/theme/_list.scss +0 -41
- package/src/web/wedatheme/src/styles/theme/_metrics-board.scss +0 -14
- package/src/web/wedatheme/src/styles/theme/_notification.scss +0 -27
- package/src/web/wedatheme/src/styles/theme/_pagination.scss +0 -22
- package/src/web/wedatheme/src/styles/theme/_popconfirm.scss +0 -4
- package/src/web/wedatheme/src/styles/theme/_progress.scss +0 -28
- package/src/web/wedatheme/src/styles/theme/_region-select.scss +0 -17
- package/src/web/wedatheme/src/styles/theme/_search.scss +0 -18
- package/src/web/wedatheme/src/styles/theme/_segment.scss +0 -69
- package/src/web/wedatheme/src/styles/theme/_slider.scss +0 -18
- package/src/web/wedatheme/src/styles/theme/_status.scss +0 -4
- package/src/web/wedatheme/src/styles/theme/_steps.scss +0 -68
- package/src/web/wedatheme/src/styles/theme/_switch.scss +0 -11
- package/src/web/wedatheme/src/styles/theme/_table.scss +0 -44
- package/src/web/wedatheme/src/styles/theme/_tabs.scss +0 -44
- package/src/web/wedatheme/src/styles/theme/_tag-search.scss +0 -9
- package/src/web/wedatheme/src/styles/theme/_tag.scss +0 -48
- package/src/web/wedatheme/src/styles/theme/_toast.scss +0 -3
- package/src/web/wedatheme/src/styles/theme/_transfer.scss +0 -9
- package/src/web/wedatheme/src/styles/theme/_tree.scss +0 -11
- package/src/web/wedatheme/src/styles/theme/_upload.scss +0 -14
- package/src/web/wedatheme/src/styles/theme/_variables.scss +0 -140
- package/src/web/wedatheme/src/styles/theme/index.scss +0 -91
- package/src/web/wedatheme/style-package/README.md +0 -31
- package/src/web/wedatheme/style-package/ef6fa527e24e354765d806b826b41391.svg +0 -627
- package/src/web/wedatheme/style-package/index.css +0 -3
- package/src/web/wedatheme/style-package/package.json +0 -15
- package/src/web/wedatheme/tea.config.js +0 -66
- package/src/web/wedatheme/webpack/css.config.js +0 -114
- package/src/web/wedatheme/webpack/plugins/css-package-plugin.js +0 -23
- package/src/web/wedatheme/webpack/plugins/inject-assets-plugin.js +0 -32
- package/src/web/wedatheme/webpack/plugins/package-json-plugin.js +0 -66
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
// // 字体颜色
|
|
2
|
-
// $list-color-text:$color-text !default;
|
|
3
|
-
// $list-color-text-weak:$color-text-weak !default;
|
|
4
|
-
// $list-color-text-weight:$color-text-weight !default;
|
|
5
|
-
// $list-color-text-disabled:$color-text-disabled !default;
|
|
6
|
-
// $list-color-text-label:$color-text-label !default;
|
|
7
|
-
// $list-primary-color-text-anti:$color-text-anti-primary !default;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
// // 边框
|
|
11
|
-
// $list-color-border-inner:$color-border-inner !default;
|
|
12
|
-
|
|
13
|
-
// // 背景
|
|
14
|
-
// $list-color-bg:$color-bg !default;
|
|
15
|
-
// $list-color-bg-gray:$color-bg-gray !default;
|
|
16
|
-
// $list-color-bg-hover:$color-bg-hover !default;
|
|
17
|
-
// $list-primary-color-bg:$color-primary !default;
|
|
18
|
-
|
|
19
|
-
// // 字体
|
|
20
|
-
// $list-font-size-default:$font-size-default !default;
|
|
21
|
-
// $list-font-size-l:$font-size-l !default;
|
|
22
|
-
|
|
23
|
-
// // 圆角
|
|
24
|
-
// $list-border-radius:$border-radius !default;
|
|
25
|
-
.#{$prefix}list--option>li{
|
|
26
|
-
padding:6px 8px;
|
|
27
|
-
}
|
|
28
|
-
.#{$prefix}list--option .#{$prefix}list__submenu:after{
|
|
29
|
-
background-image: url(../assets/arrowright--line.svg);
|
|
30
|
-
margin-top: 2px;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.#{$prefix}list--option.#{$prefix}list--checkoption .#{$prefix}form-check{
|
|
34
|
-
display: flex;
|
|
35
|
-
// font-size: 0; // 消除inline-block的间距
|
|
36
|
-
padding-left: 6px;
|
|
37
|
-
}
|
|
38
|
-
.#{$prefix}list--option.#{$prefix}list--checkoption .#{$prefix}form-check .#{$prefix}checkbox{
|
|
39
|
-
top:0;
|
|
40
|
-
left:0;
|
|
41
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
// $metrics-board-font-size:$font-size-default !default;
|
|
2
|
-
// $metrics-board-font-size-l:$font-size-l !default;
|
|
3
|
-
// $metrics-board-font-size-xl:$font-size-xl !default;
|
|
4
|
-
// $metrics-board-number-font-size:$font-size-xxxl !default;
|
|
5
|
-
|
|
6
|
-
// $metrics-board-border-radius:$border-radius !default;
|
|
7
|
-
|
|
8
|
-
// $metrics-board-color-bg-hover:$color-bg-gray-hover !default;
|
|
9
|
-
|
|
10
|
-
// $metrics-board-color-text:$color-text !default;
|
|
11
|
-
// $metrics-board-color-text-weight:$color-text-weight !default;
|
|
12
|
-
// $metrics-board-header-color-text:$color-text-weight !default;
|
|
13
|
-
// $metrics-board-info-color-text:$color-text-label !default;
|
|
14
|
-
// $metrics-board-info-key-color-text:$color-text-weight !default;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// $notification-font-size:$font-size-default !default;
|
|
3
|
-
// $notification-border-radius:$border-radius !default;
|
|
4
|
-
// $notification-max-width:368px !default;
|
|
5
|
-
// $notification-box-shadow: 0 0 20px 0 rgba(19,41,75,0.20) !default;
|
|
6
|
-
// $notification-space:4px !default;
|
|
7
|
-
|
|
8
|
-
// $notification-color-text-label:$color-text-label !default;
|
|
9
|
-
|
|
10
|
-
// $notification-color-bg:$color-bg !default;
|
|
11
|
-
// $notification-color-bg-hover:$color-bg-hover !default;
|
|
12
|
-
|
|
13
|
-
// $notification-success-color-bg:$color-success-0 !default;
|
|
14
|
-
// $notification-success-footer-color-bg:rgba($color-success-0,0.05) !default;
|
|
15
|
-
// $notification-success-color-text:$color-success !default;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
// $notification-error-color-bg:$color-error-0 !default;
|
|
19
|
-
// $notification-error-footer-color-bg:rgba($color-error-0,0.05) !default;
|
|
20
|
-
// $notification-error-color-text:$color-error !default;
|
|
21
|
-
|
|
22
|
-
// $notification-warning-color-bg:$color-warning-0 !default;
|
|
23
|
-
// $notification-warning-footer-color-bg:rgba($color-warning-0,0.05) !default;
|
|
24
|
-
// $notification-warning-color-text:$color-warning !default;
|
|
25
|
-
|
|
26
|
-
// $notification-color-border-inner:$color-border-inner !default;
|
|
27
|
-
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// $pagination-color-text:$color-text-label !default;
|
|
3
|
-
// $pagination-font-size:$font-size-default !default;
|
|
4
|
-
// $pagination-border-radius:$border-radius !default;
|
|
5
|
-
// $pagination-color-text-weight:$color-text-weight !default ;
|
|
6
|
-
// $pagination-color-text-label:$color-text-label !default;
|
|
7
|
-
// $pagination-color-bg:$color-bg !default;
|
|
8
|
-
// $pagination-color-bg-disabled:$color-bg-gray !default;
|
|
9
|
-
|
|
10
|
-
// // 翻页
|
|
11
|
-
// $pagination-turnbtn-color-border:$color-border !default;
|
|
12
|
-
// $pagination-turnbtn-color-bg-hover:$color-bg-hover !default;
|
|
13
|
-
// $pagination-turnbtn-color-border-hover:$color-border !default;
|
|
14
|
-
// $pagination-turnbtn-color-bg-disabled:$color-bg-disabled !default;
|
|
15
|
-
|
|
16
|
-
// $pagination-table-color-text:$color-text !default;
|
|
17
|
-
|
|
18
|
-
// //pagination-height
|
|
19
|
-
// $pagination-height:26px!default;
|
|
20
|
-
.#{$prefix}pagination .#{$prefix}dropdown__header .#{$prefix}icon{
|
|
21
|
-
top:5px;
|
|
22
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
// $progress-height:6px !default;
|
|
2
|
-
// $progress-line-height-fz-default:$line-height-fz-default !default;
|
|
3
|
-
|
|
4
|
-
// $progress-font-size:$font-size-default !default;
|
|
5
|
-
// $progress-font-size-l:$font-size-l !default;
|
|
6
|
-
// $progress-border-radius:$border-radius !default;
|
|
7
|
-
// $progress-color-base-text-weight:$color-text-weight !default;
|
|
8
|
-
// $progress-color-base-bg:$color-bg-gray !default;
|
|
9
|
-
|
|
10
|
-
// // 默认进度条
|
|
11
|
-
// $progress-primary-color-bg:$color-primary !default;
|
|
12
|
-
// $progress-primary-color-text-label:$color-text-label !default;
|
|
13
|
-
// // success
|
|
14
|
-
// $progress-success-color-border:$color-success !default;
|
|
15
|
-
// $progress-success-color-bg:$color-success !default;
|
|
16
|
-
// // error
|
|
17
|
-
// $progress-error-color-border:$color-error !default;
|
|
18
|
-
// $progress-error-color-bg:$color-error !default;
|
|
19
|
-
|
|
20
|
-
// // 圆环的宽高
|
|
21
|
-
// $progress-circle-width:160px!default;
|
|
22
|
-
// $progress-circle-height:160px!default;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
// $region-font-size:$font-size-default !default;
|
|
2
|
-
// $region-font-size-xl:$font-size-xl !default;
|
|
3
|
-
// $region-border-radius:$border-radius !default;
|
|
4
|
-
|
|
5
|
-
// $region-color-text:$color-text !default;
|
|
6
|
-
// $region-color-text-label:$color-text-label !default;
|
|
7
|
-
// $region-color-text-weight:$color-text-weight !default;
|
|
8
|
-
// $region-color-text-disabled:$color-text-disabled !default;
|
|
9
|
-
|
|
10
|
-
// $region-color-border:$color-border !default;
|
|
11
|
-
|
|
12
|
-
// $region-item-color-bg-hover:$color-bg-hover !default;
|
|
13
|
-
// $region-item-color-bg-gray:$color-bg-gray !default;
|
|
14
|
-
|
|
15
|
-
// $region-dropdown-color-bg:$color-bg !default;
|
|
16
|
-
|
|
17
|
-
// $region-empty-color-bg:$color-bg !default;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
// $search-font-size-default:$font-size-default !default;
|
|
2
|
-
|
|
3
|
-
// // 搜索框高度
|
|
4
|
-
// $search-height:$form-height !default;
|
|
5
|
-
|
|
6
|
-
// // multi
|
|
7
|
-
// $search-multi-height-focus:150px!default;
|
|
8
|
-
|
|
9
|
-
// // 搜索框宽度
|
|
10
|
-
// $search-width-size-s:100px !default;
|
|
11
|
-
// $search-width-size-m:200px !default;
|
|
12
|
-
// $search-width-size-l:420px !default;
|
|
13
|
-
|
|
14
|
-
.#{$prefix}search .#{$prefix}btn{
|
|
15
|
-
// bottom:2px;
|
|
16
|
-
padding:8px;
|
|
17
|
-
height: 30px;
|
|
18
|
-
}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// $segment-color-border:$color-border !default;
|
|
3
|
-
// $segment-color-bg:$color-bg !default;
|
|
4
|
-
// $segment-color-text:$color-text !default;
|
|
5
|
-
|
|
6
|
-
// // hover
|
|
7
|
-
// $segment-color-bg-hover:$color-bg-hover !default;
|
|
8
|
-
|
|
9
|
-
// // 字体
|
|
10
|
-
// $segment-font-size-default:$font-size-default !default;
|
|
11
|
-
|
|
12
|
-
// // 圆角
|
|
13
|
-
// $segment-border-radius:$border-radius !default;
|
|
14
|
-
|
|
15
|
-
// // 选中态
|
|
16
|
-
// $segment-color-text-selected:$color-primary !default;
|
|
17
|
-
|
|
18
|
-
// // disabled
|
|
19
|
-
// $segment-color-bg-disabled:$color-bg-disabled !default;
|
|
20
|
-
// $segment-color-text-disabled:$color-text-disabled !default;
|
|
21
|
-
|
|
22
|
-
// // 折扣
|
|
23
|
-
// $segment-discount-color-bg:$color-warning !default;
|
|
24
|
-
// $segment-discount-color-text: $color-text-anti-primary !default;
|
|
25
|
-
|
|
26
|
-
// // 高度
|
|
27
|
-
// $segment-height:$form-height !default;
|
|
28
|
-
// // 无线高度
|
|
29
|
-
// $segment-rimless-height:22px !default;
|
|
30
|
-
|
|
31
|
-
.#{$prefix}segment .#{$prefix}btn--weak{
|
|
32
|
-
background-color: $color-bg;
|
|
33
|
-
padding:0 16px;
|
|
34
|
-
|
|
35
|
-
&:not(.is-disabled):hover{
|
|
36
|
-
color:$color-primary;
|
|
37
|
-
background-color: $color-bg;
|
|
38
|
-
}
|
|
39
|
-
&.is-selected:hover{
|
|
40
|
-
color:$color-primary;
|
|
41
|
-
background-color: $color-bg;
|
|
42
|
-
border-color: $color-primary;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
.#{$prefix}segment--rimless {
|
|
46
|
-
// background-color: $color-neutral-3;
|
|
47
|
-
// padding:$space-base $space-base 0;
|
|
48
|
-
// border-radius: $border-radius;
|
|
49
|
-
.#{$prefix}btn{
|
|
50
|
-
// line-height: 20px;
|
|
51
|
-
font-size: 12px;
|
|
52
|
-
// border: none;
|
|
53
|
-
// background-color: transparent;
|
|
54
|
-
// &:not(.is-disabled):hover{
|
|
55
|
-
// color:$color-text-weight;
|
|
56
|
-
// // background-color: $color-bg;
|
|
57
|
-
// }
|
|
58
|
-
// &.is-selected{
|
|
59
|
-
// background-color: $color-primary;
|
|
60
|
-
// color:$color-text-anti-primary;
|
|
61
|
-
// :hover{
|
|
62
|
-
// color:$color-primary;
|
|
63
|
-
// background-color: $color-bg;
|
|
64
|
-
// border-color: $color-primary;
|
|
65
|
-
// }
|
|
66
|
-
// }
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
// $slider-font-size:$font-size-default !default;
|
|
2
|
-
// $slider-border-radius:$border-radius !default;
|
|
3
|
-
|
|
4
|
-
// $slider-height:4px !default;
|
|
5
|
-
// $slider-handle-width:18px !default;
|
|
6
|
-
// $slider-handle-height:18px !default;
|
|
7
|
-
|
|
8
|
-
// $slider-color-text:$color-text-label !default;
|
|
9
|
-
// $slider-base-color-bg:$color-neutral-1 !default;
|
|
10
|
-
// $slider-base-color-bg-hover:$color-neutral-2 !default;
|
|
11
|
-
// $slider-base-color-bg-disabled:$color-neutral-1 !default;
|
|
12
|
-
// $slider-track-color-bg:$color-primary !default;
|
|
13
|
-
// $slider-track-color-bg-disabled:$color-primary-disabled !default;
|
|
14
|
-
|
|
15
|
-
// $slider-handle-color-bg:$color-bg !default;
|
|
16
|
-
// $slider-handle-color-bg-disabled:$color-primary-disabled !default;
|
|
17
|
-
// $slider-handle-color-border:$color-primary !default;
|
|
18
|
-
// $slider-handle-width-border:2px !default;
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
// $step-font-size:$font-size-default !default;
|
|
2
|
-
// $step-font-size-l:$font-size-l !default;
|
|
3
|
-
// $step-font-size-xl:$font-size-xl !default;
|
|
4
|
-
|
|
5
|
-
// $step-color-text-label:$color-text-label !default;
|
|
6
|
-
|
|
7
|
-
$step-num-width:24px ;
|
|
8
|
-
// $step-num-height:24px;
|
|
9
|
-
// $step-num-color-bg:$color-primary !default;
|
|
10
|
-
// $step-num-color-bg-disabled:$color-bg !default;
|
|
11
|
-
// $step-num-color-border:$color-primary !default;
|
|
12
|
-
// $step-num-color-border-disabled:$color-border !default;
|
|
13
|
-
// $step-num-color-text:$color-text-anti-primary !default;
|
|
14
|
-
|
|
15
|
-
// $step-alternative-num-color-bg:$color-primary-1 !default;
|
|
16
|
-
// $step-alternative-num-color-bg-disabled:$color-bg !default;
|
|
17
|
-
// $step-alternative-num-color-border:$color-primary-1 !default;
|
|
18
|
-
// $step-alternative-num-color-border-disabled:$color-border !default;
|
|
19
|
-
// $step-alternative-num-color-text:$color-primary-8 !default;
|
|
20
|
-
|
|
21
|
-
// $step-vertical-num-color-bg:$color-primary-1 !default;
|
|
22
|
-
// $step-vertical-num-color-border:$color-primary-1 !default;
|
|
23
|
-
// $step-vertical-num-color-text:$color-primary-8 !default;
|
|
24
|
-
// $step-vertical-arrow-color-bg:$color-border !default;
|
|
25
|
-
|
|
26
|
-
// $step-dot-num-color-bg:$color-primary !default;
|
|
27
|
-
// $step-dot-num-color-bg-disabled:$color-text-disabled !default;
|
|
28
|
-
// $step-dot-num-color-border-disabled:$color-text-disabled !default;
|
|
29
|
-
// $step-dot-arrow-color-bg:$color-border !default;
|
|
30
|
-
|
|
31
|
-
// $step-readonly-num-color-bg:$color-primary !default;
|
|
32
|
-
// $step-readonly-num-color-border:$color-primary !default;
|
|
33
|
-
// $step-readonly-num-color-text:$color-text-anti-primary !default;
|
|
34
|
-
|
|
35
|
-
// $step-item-color-text-disabled:$color-text-disabled !default;
|
|
36
|
-
|
|
37
|
-
.#{$prefix}step__num{
|
|
38
|
-
height: 24px;
|
|
39
|
-
line-height: 22px;
|
|
40
|
-
background-color: #fff;
|
|
41
|
-
border-width: 1px;
|
|
42
|
-
font-weight: 400;
|
|
43
|
-
|
|
44
|
-
&::after{
|
|
45
|
-
top:3px;
|
|
46
|
-
left:3px;
|
|
47
|
-
background-image: url(../assets/check-2.svg);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
.#{$prefix}step__item.is-current >.#{$prefix}step__num{
|
|
51
|
-
background-color: $color-primary;
|
|
52
|
-
}
|
|
53
|
-
.#{$prefix}step__item.is-current .#{$prefix}step__num:before,
|
|
54
|
-
.#{$prefix}step__item.is-current~.#{$prefix}step__item .#{$prefix}step__num:before{
|
|
55
|
-
font-weight: 400;
|
|
56
|
-
}
|
|
57
|
-
.#{$prefix}step__item.is-current ~ .#{$prefix}step__item .#{$prefix}step__num {
|
|
58
|
-
border-width: 1px;
|
|
59
|
-
}
|
|
60
|
-
.#{$prefix}step__content{
|
|
61
|
-
padding-top: 2px;
|
|
62
|
-
}
|
|
63
|
-
.#{$prefix}step__title{
|
|
64
|
-
font-weight: 400;
|
|
65
|
-
}
|
|
66
|
-
.#{$prefix}step__arrow{
|
|
67
|
-
margin-top: 4px;
|
|
68
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
// $switch-width:35px !default;
|
|
2
|
-
// $switch-height:20px !default;
|
|
3
|
-
// $switch-border-radius:10px !default;
|
|
4
|
-
|
|
5
|
-
// $switch-dot-color-bg:$color-bg !default;
|
|
6
|
-
|
|
7
|
-
// $switch-color-bg:$color-neutral-4 !default;
|
|
8
|
-
// $switch-color-bg-checked:$color-primary !default;
|
|
9
|
-
// $switch-color-bg-checked-hover:$color-primary-hover !default;
|
|
10
|
-
// $switch-color-bg-checked-disabled:$color-primary-disabled !default;
|
|
11
|
-
// $switch-color-bg-disabled:$color-neutral-1 !default;
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// $table-font-size:$font-size-default !default;
|
|
3
|
-
// $table-border-radius:$border-radius !default;
|
|
4
|
-
|
|
5
|
-
// $table-color-bg:$color-bg !default;
|
|
6
|
-
// $table-color-bg-hover:$color-bg-hover !default;
|
|
7
|
-
// $table-color-bg-gray:$color-bg-gray !default;
|
|
8
|
-
|
|
9
|
-
// $table-color-text:$color-text !default;
|
|
10
|
-
// $table-color-text-weight:$color-text-weight !default;
|
|
11
|
-
// $table-color-text-link:$color-primary !default;
|
|
12
|
-
// $table-color-text-disabled:$color-text-disabled !default;
|
|
13
|
-
// $table-color-text-label:$color-text-label !default;
|
|
14
|
-
// $table-header-color-text:$color-text-label !default;
|
|
15
|
-
|
|
16
|
-
// $table-color-border:$color-border !default;
|
|
17
|
-
// $table-color-border-inner:$color-border-inner !default;
|
|
18
|
-
|
|
19
|
-
// $table-anim-hover-time:0.1s;
|
|
20
|
-
|
|
21
|
-
.#{$prefix}table__header .#{$prefix}icon{
|
|
22
|
-
top:7px; // 待定。模型那边需要7才能对齐
|
|
23
|
-
}
|
|
24
|
-
.is-expanded .#{$prefix}dropdown-filter .#{$prefix}icon-filter,
|
|
25
|
-
.#{$prefix}dropdown-filter:hover .#{$prefix}icon-filter,
|
|
26
|
-
.#{$prefix}table__filterbtn.is-active .#{$prefix}icon-filter,
|
|
27
|
-
.#{$prefix}table__filterbtn:hover .#{$prefix}icon-filter{
|
|
28
|
-
background-image: url(../assets/filter.svg);
|
|
29
|
-
}
|
|
30
|
-
.#{$prefix}table__sortbtn.is-active .#{$prefix}icon-sort,
|
|
31
|
-
.#{$prefix}table__sortbtn:hover .#{$prefix}icon-sort{
|
|
32
|
-
background-image: url(../assets/sort.svg);
|
|
33
|
-
}
|
|
34
|
-
.#{$prefix}table__sortbtn.is-active .#{$prefix}icon-sortup,
|
|
35
|
-
.#{$prefix}table__sortbtn:hover .#{$prefix}icon-sortup{
|
|
36
|
-
background-image: url(../assets/sortup.svg);
|
|
37
|
-
}
|
|
38
|
-
.#{$prefix}table__sortbtn.is-active .#{$prefix}icon-sortdown,
|
|
39
|
-
.#{$prefix}table__sortbtn:hover .#{$prefix}icon-sortdown{
|
|
40
|
-
background-image: url(../assets/sortdown.svg);
|
|
41
|
-
}
|
|
42
|
-
.#{$prefix}table__action-panel{
|
|
43
|
-
margin-bottom: 20px;
|
|
44
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// // 边框颜色
|
|
3
|
-
// $tabs-color-border-inner:$color-border-inner !default;
|
|
4
|
-
// $tabs-primary-color-border:$color-primary !default;
|
|
5
|
-
// $tabs-color-border:$color-border !default;
|
|
6
|
-
|
|
7
|
-
// // 字体大小
|
|
8
|
-
// $tabs-font-size-l:$font-size-l !default;
|
|
9
|
-
|
|
10
|
-
// // 字体颜色
|
|
11
|
-
|
|
12
|
-
// $tabs-color-text-weight:$color-text-weight !default;
|
|
13
|
-
// $tabs-color-text-disabled:$color-text-disabled !default;
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
// // 背景
|
|
17
|
-
// $tabs-color-bg:$color-bg !default;
|
|
18
|
-
// $tabs-ceiling-color-bg:$color-bg !default;
|
|
19
|
-
// $tabs-ceiling-line-color-bg:transparent !default;
|
|
20
|
-
// $tabs-color-bg-hover:$color-bg-hover !default;
|
|
21
|
-
|
|
22
|
-
// // 高度
|
|
23
|
-
$tabs-height:48px !default;
|
|
24
|
-
|
|
25
|
-
// $tabs-ceiling-gap:0 !default;
|
|
26
|
-
|
|
27
|
-
.#{$prefix}tabs__tab{
|
|
28
|
-
padding:0 $space-base*4;
|
|
29
|
-
|
|
30
|
-
&.is-active{
|
|
31
|
-
font-weight: 500;
|
|
32
|
-
color:$color-text-primary;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.#{$prefix}tabs__tab.is-active:after, .#{$prefix}tabs__tab:hover:after{
|
|
37
|
-
// border-width: 1px;
|
|
38
|
-
}
|
|
39
|
-
.#{$prefix}tabs__tabitem{
|
|
40
|
-
margin-right: 0;
|
|
41
|
-
}
|
|
42
|
-
.#{$prefix}tabs__tabpanel{
|
|
43
|
-
padding-top: $space-base*4;
|
|
44
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// $tag-search-width-s:100px !default;
|
|
3
|
-
// $tag-search-width-m:200px !default;
|
|
4
|
-
// $tag-search-width-l:420px !default;
|
|
5
|
-
|
|
6
|
-
// $tag-search-border-radius:$border-radius !default;
|
|
7
|
-
// $tag-search-color-bg:$color-bg !default;
|
|
8
|
-
// $tag-search-color-border:$color-border !default;
|
|
9
|
-
// $tag-search-color-border-active:$color-primary !default;
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// $tag-font-size:$font-size-default !default;
|
|
3
|
-
// $tag-border-radius:$border-radius !default;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
// $tag-default-color-bg:$color-bg-second !default;
|
|
7
|
-
// $tag-default-color-text:$color-text-weight !default;
|
|
8
|
-
// $tag-default-color-border:$color-bg-second !default;
|
|
9
|
-
|
|
10
|
-
// $tag-primary-color-bg:$color-primary-0 !default;
|
|
11
|
-
// $tag-primary-color-text:$color-primary-5 !default;
|
|
12
|
-
// $tag-primary-color-border:$color-primary-0 !default;
|
|
13
|
-
// $tag-primary-dark-color-bg:$color-primary-5 !default;
|
|
14
|
-
// $tag-primary-dark-color-text:$color-text-anti-primary !default;
|
|
15
|
-
// $tag-primary-dark-color-border:$color-primary-5 !default;
|
|
16
|
-
|
|
17
|
-
// $tag-warning-color-bg:$color-warning-0 !default;
|
|
18
|
-
// $tag-warning-color-text:$color-warning-5 !default;
|
|
19
|
-
// $tag-warning-color-border:$color-warning-0 !default;
|
|
20
|
-
// $tag-warning-dark-color-bg:$color-warning-5 !default;
|
|
21
|
-
// $tag-warning-dark-color-text:$color-text-anti-primary !default;
|
|
22
|
-
// $tag-warning-dark-color-border:$color-warning-5 !default;
|
|
23
|
-
|
|
24
|
-
// $tag-error-color-bg:$color-error-0 !default;
|
|
25
|
-
// $tag-error-color-text:$color-error-5 !default;
|
|
26
|
-
// $tag-error-color-border:$color-error-0 !default;
|
|
27
|
-
// $tag-error-dark-color-bg:$color-error-5 !default;
|
|
28
|
-
// $tag-error-dark-color-text:$color-text-anti-primary !default;
|
|
29
|
-
// $tag-error-dark-color-border:$color-error-5 !default;
|
|
30
|
-
|
|
31
|
-
// $tag-success-color-bg:$color-success-0 !default;
|
|
32
|
-
// $tag-success-color-text:$color-success-5 !default;
|
|
33
|
-
// $tag-success-color-border:$color-success-0 !default;
|
|
34
|
-
// $tag-success-dark-color-bg:$color-success-5 !default;
|
|
35
|
-
// $tag-success-dark-color-text:$color-text-anti-primary !default;
|
|
36
|
-
// $tag-success-dark-color-border:$color-success-5 !default;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
// $tag-input-color-bg:$color-bg !default;
|
|
40
|
-
// $tag-input-color-border:$color-border !default;
|
|
41
|
-
// $tag-input-color-border-active:$color-primary !default;
|
|
42
|
-
|
|
43
|
-
.#{$prefix}tag--edit{
|
|
44
|
-
padding-right: 30px;
|
|
45
|
-
.#{$prefix}icon-dismiss{
|
|
46
|
-
background-image: url(../assets/close-1.svg);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
// $tree-width: 420px !default;
|
|
2
|
-
|
|
3
|
-
// $tree-color-bg: $color-bg !default;
|
|
4
|
-
// $tree-color-bg-hover: $color-bg-hover !default;
|
|
5
|
-
|
|
6
|
-
// $tree-switcher-width: 16px !default;
|
|
7
|
-
// $tree-item-height: 30px !default;
|
|
8
|
-
// // 缩进
|
|
9
|
-
// $tree-subitem-indentaion:20px !default;
|
|
10
|
-
|
|
11
|
-
// $tree-font-size-default: $font-size-default !default;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
// $upload-color-border: $color-border !default;
|
|
2
|
-
// $upload-color-border-focus: $color-primary-focus !default;
|
|
3
|
-
// $upload-color-border-error: $color-error-4 !default;
|
|
4
|
-
|
|
5
|
-
// $upload-border-radius: $border-radius !default;
|
|
6
|
-
|
|
7
|
-
// $upload-color-bg: $color-bg !default;
|
|
8
|
-
// $upload-color-bg-hover: $color-bg-hover !default;
|
|
9
|
-
// $upload-color-bg-disabled: $color-bg-disabled !default;
|
|
10
|
-
|
|
11
|
-
// $upload-thumb-width: 100px !default;
|
|
12
|
-
// $upload-thumb-height: 100px !default;
|
|
13
|
-
|
|
14
|
-
// $upload-font-size: $font-size-default !default;
|