@10yun/cv-mobile-ui 0.5.18 → 0.5.20
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/other/api-set-tabbar.nvue +147 -0
- package/other/mpvue-echarts/src/echarts.vue +112 -0
- package/other/mpvue-echarts/src/style.css +6 -0
- package/other/mpvue-picker/mpvuePicker.vue +402 -0
- package/other/mpvue-picker/style.css +75 -0
- package/other/product.vue +20 -0
- package/other/style.css +46 -0
- package/other/tab-nvue/mediaList.vue +68 -0
- package/other/tab-nvue/style.css +124 -0
- package/other/uParse/components/style.css +1 -0
- package/other/uParse/components/wxParseAudio.vue +1 -0
- package/other/uParse/components/wxParseImg.vue +86 -0
- package/other/uParse/components/wxParseTable.vue +54 -0
- package/other/uParse/components/wxParseTemplate0.vue +98 -0
- package/other/uParse/components/wxParseTemplate1.vue +81 -0
- package/other/uParse/components/wxParseTemplate10.vue +81 -0
- package/other/uParse/components/wxParseTemplate11.vue +79 -0
- package/other/uParse/components/wxParseTemplate2.vue +81 -0
- package/other/uParse/components/wxParseTemplate3.vue +81 -0
- package/other/uParse/components/wxParseTemplate4.vue +81 -0
- package/other/uParse/components/wxParseTemplate5.vue +81 -0
- package/other/uParse/components/wxParseTemplate6.vue +81 -0
- package/other/uParse/components/wxParseTemplate7.vue +81 -0
- package/other/uParse/components/wxParseTemplate8.vue +81 -0
- package/other/uParse/components/wxParseTemplate9.vue +81 -0
- package/other/uParse/components/wxParseVideo.vue +14 -0
- package/other/uParse/editor.css +495 -0
- package/other/uParse/libs/html2json.js +258 -0
- package/other/uParse/libs/htmlparser.js +163 -0
- package/other/uParse/libs/wxDiscode.js +195 -0
- package/other/uParse/wxParse.vue +196 -0
- package/package.json +1 -1
- package/plugins/map/amqp-wx.js +173 -0
- package/plugins/uni-upgrade.js +0 -1
- package/ui-cv/components/cv-banner/cv-banner.vue +131 -0
- package/ui-cv/components/cv-banner-card/cv-banner-card.vue +145 -0
- package/ui-cv/components/cv-base-audio/cv-base-audio.vue +282 -0
- package/ui-cv/components/cv-block/cv-block.vue +91 -0
- package/ui-cv/components/cv-box/cv-box.vue +77 -0
- package/ui-cv/components/cv-btn-base/cv-btn-base.vue +73 -0
- package/ui-cv/components/cv-cell-row/cv-cell-row.vue +220 -0
- package/ui-cv/components/cv-checkbox-group/cv-checkbox-group.vue +260 -0
- package/ui-cv/components/cv-checkbox-opt-base/cv-checkbox-opt-base.vue +100 -0
- package/ui-cv/components/cv-checkbox-opt-tag/cv-checkbox-opt-tag.vue +114 -0
- package/ui-cv/components/cv-code-sms/cv-code-sms.vue +232 -0
- package/ui-cv/components/cv-date-base/cv-date-base.vue +108 -0
- package/ui-cv/components/cv-datetime-base/cv-datetime-base.vue +155 -0
- package/ui-cv/components/cv-datetime-linkage/cv-datetime-linkage.vue +492 -0
- package/ui-cv/components/cv-dialog-bottom/cv-dialog-bottom.vue +171 -0
- package/ui-cv/components/cv-dialog-full/cv-dialog-full.vue +158 -0
- package/ui-cv/components/cv-dialog-loading/cv-dialog-loading.vue +102 -0
- package/ui-cv/components/cv-dialog-share/cv-dialog-share.vue +160 -0
- package/ui-cv/components/cv-draw-barcode/cv-draw-barcode.vue +212 -0
- package/ui-cv/components/cv-draw-gesture-lock/cv-draw-gesture-lock.vue +127 -0
- package/ui-cv/components/cv-draw-gesture-lock/gestureLock.js +169 -0
- package/ui-cv/components/cv-draw-gesture-lock/style.css +39 -0
- package/ui-cv/components/cv-draw-posters/cv-draw-posters.vue +495 -0
- package/ui-cv/components/cv-draw-progress/cv-draw-progress.vue +143 -0
- package/ui-cv/components/cv-draw-qrcode/cv-draw-qrcode.vue +308 -0
- package/ui-cv/components/cv-editor-parse/cv-editor-parse.vue +115 -0
- package/ui-cv/components/cv-editor-quill/cv-editor-quill.vue +487 -0
- package/ui-cv/components/cv-filter-hm/cv-filter-hm.vue +869 -0
- package/ui-cv/components/cv-form-base/cv-form-base.vue +471 -0
- package/ui-cv/components/cv-form-group/cv-form-group.vue +126 -0
- package/ui-cv/components/cv-form-item/cv-form-item.vue +561 -0
- package/ui-cv/components/cv-geo-local/cv-geo-local.vue +264 -0
- package/ui-cv/components/cv-geo-region/cv-geo-region.vue +246 -0
- package/ui-cv/components/cv-geo-region/mpvueCityPicker.vue +144 -0
- package/ui-cv/components/cv-geo-region/style.css +77 -0
- package/ui-cv/components/cv-grid-item/cv-grid-item.vue +210 -0
- package/ui-cv/components/cv-icons/cv-icons.vue +136 -0
- package/ui-cv/components/cv-input-digit/cv-input-digit.vue +114 -0
- package/ui-cv/components/cv-input-idcard/cv-input-idcard.vue +109 -0
- package/ui-cv/components/cv-input-number/cv-input-number.vue +115 -0
- package/ui-cv/components/cv-input-password/cv-input-password.vue +127 -0
- package/ui-cv/components/cv-input-text/cv-input-text.vue +118 -0
- package/ui-cv/components/cv-layout-topbar/cv-layout-topbar.vue +239 -0
- package/ui-cv/components/cv-link/cv-link.vue +60 -0
- package/ui-cv/components/cv-lists-base/cv-lists-base.vue +653 -0
- package/ui-cv/components/cv-lists-swiper/cv-lists-swipe2r.vue +200 -0
- package/ui-cv/components/cv-lists-swiper/cv-lists-swiper.vue +520 -0
- package/ui-cv/components/cv-load-empty/cv-load-empty.vue +60 -0
- package/ui-cv/components/cv-load-more/cv-load-more.vue +410 -0
- package/ui-cv/components/cv-load-more2/cv-load-more2.vue +47 -0
- package/ui-cv/components/cv-markdown-show/cv-markdown-show.vue +108 -0
- package/ui-cv/components/cv-message/cv-message.vue +40 -0
- package/ui-cv/components/cv-picker1/cv-picker1.vue +208 -0
- package/ui-cv/components/cv-picker2/cv-picker2.vue +255 -0
- package/ui-cv/components/cv-picker3/cv-picker3.vue +316 -0
- package/ui-cv/components/cv-radio-group/cv-radio-group.vue +199 -0
- package/ui-cv/components/cv-radio-opt-base/cv-radio-opt-base.vue +94 -0
- package/ui-cv/components/cv-radio-opt-tag/cv-radio-opt-tag.vue +110 -0
- package/ui-cv/components/cv-rate/cv-rate.vue +185 -0
- package/ui-cv/components/cv-search/cv-search.vue +185 -0
- package/ui-cv/components/cv-skeleton/cv-skeleton.vue +174 -0
- package/ui-cv/components/cv-skeleton/cv-skeleton2.vue +213 -0
- package/ui-cv/components/cv-skeleton-group/cv-skeleton-group.vue +24 -0
- package/ui-cv/components/cv-specs/cv-specs.vue +320 -0
- package/ui-cv/components/cv-switch/cv-switch.vue +113 -0
- package/ui-cv/components/cv-tab-lists/cv-tab-lists.vue +711 -0
- package/ui-cv/components/cv-tabs-box/cv-tabs-box.vue +100 -0
- package/ui-cv/components/cv-tabs-item/cv-tabs-item.vue +85 -0
- package/ui-cv/components/cv-textarea/cv-textarea.vue +144 -0
- package/ui-cv/components/cv-time-base/cv-time-base.vue +103 -0
- package/ui-cv/components/cv-treaty/cv-treaty.vue +95 -0
- package/ui-cv/components/cv-upload-avatar/cv-upload-avatar.vue +145 -0
- package/ui-cv/components/cv-upload-image/cv-upload-image.vue +481 -0
- package/ui-cv/libs/mixin/mixin.js +1 -0
- package/ui-cv/libs/mixin/mpMixin.js +8 -0
- package/uni-ui/LICENSE +202 -0
- package/uni-ui/README.md +245 -0
- package/uni-ui/lib/uni-badge/style.css +81 -0
- package/uni-ui/lib/uni-badge/style.scss +106 -0
- package/uni-ui/lib/uni-badge/uni-badge.vue +1 -0
- package/uni-ui/lib/uni-breadcrumb/style.css +3 -0
- package/uni-ui/lib/uni-breadcrumb/style.scss +4 -0
- package/uni-ui/lib/uni-breadcrumb/uni-breadcrumb.vue +1 -0
- package/uni-ui/lib/uni-breadcrumb-item/style.css +30 -0
- package/uni-ui/lib/uni-breadcrumb-item/style.scss +40 -0
- package/uni-ui/lib/uni-breadcrumb-item/uni-breadcrumb-item.vue +1 -0
- package/uni-ui/lib/uni-calendar/i18n/en.json +12 -0
- package/uni-ui/lib/uni-calendar/i18n/index.js +8 -0
- package/uni-ui/lib/uni-calendar/i18n/zh-Hans.json +12 -0
- package/uni-ui/lib/uni-calendar/i18n/zh-Hant.json +12 -0
- package/uni-ui/lib/uni-calendar/style.css +167 -0
- package/uni-ui/lib/uni-calendar/style.scss +200 -0
- package/uni-ui/lib/uni-calendar/uni-calendar-item.vue +1 -0
- package/uni-ui/lib/uni-calendar/uni-calendar.vue +1 -0
- package/uni-ui/lib/uni-calendar/util.js +360 -0
- package/uni-ui/lib/uni-card/style.css +115 -0
- package/uni-ui/lib/uni-card/style.scss +161 -0
- package/uni-ui/lib/uni-card/uni-card.vue +1 -0
- package/uni-ui/lib/uni-col/style.css +2145 -0
- package/uni-ui/lib/uni-col/style.scss +112 -0
- package/uni-ui/lib/uni-col/uni-col.vue +205 -0
- package/uni-ui/lib/uni-collapse/style.css +11 -0
- package/uni-ui/lib/uni-collapse/style.scss +12 -0
- package/uni-ui/lib/uni-collapse/uni-collapse.vue +1 -0
- package/uni-ui/lib/uni-collapse-item/style.css +120 -0
- package/uni-ui/lib/uni-collapse-item/style.scss +143 -0
- package/uni-ui/lib/uni-collapse-item/uni-collapse-item.vue +1 -0
- package/uni-ui/lib/uni-combox/style.css +114 -0
- package/uni-ui/lib/uni-combox/style.scss +133 -0
- package/uni-ui/lib/uni-combox/uni-combox.vue +174 -0
- package/uni-ui/lib/uni-countdown/i18n/en.json +6 -0
- package/uni-ui/lib/uni-countdown/i18n/index.js +8 -0
- package/uni-ui/lib/uni-countdown/i18n/zh-Hans.json +6 -0
- package/uni-ui/lib/uni-countdown/i18n/zh-Hant.json +6 -0
- package/uni-ui/lib/uni-countdown/style.css +16 -0
- package/uni-ui/lib/uni-countdown/style.scss +21 -0
- package/uni-ui/lib/uni-countdown/uni-countdown.vue +1 -0
- package/uni-ui/lib/uni-data-checkbox/style.css +302 -0
- package/uni-ui/lib/uni-data-checkbox/style.scss +366 -0
- package/uni-ui/lib/uni-data-checkbox/uni-data-checkbox.vue +1 -0
- package/uni-ui/lib/uni-data-picker/uni-data-picker.vue +1 -0
- package/uni-ui/lib/uni-data-pickerview/style.css +134 -0
- package/uni-ui/lib/uni-data-pickerview/style.scss +154 -0
- package/uni-ui/lib/uni-data-pickerview/uni-data-picker.js +622 -0
- package/uni-ui/lib/uni-data-pickerview/uni-data-pickerview.vue +1 -0
- package/uni-ui/lib/uni-data-select/style.css +181 -0
- package/uni-ui/lib/uni-data-select/style.scss +213 -0
- package/uni-ui/lib/uni-data-select/uni-data-select.vue +1 -0
- package/uni-ui/lib/uni-dateformat/uni-dateformat.vue +84 -0
- package/uni-ui/lib/uni-datetime-picker/calendar-item.vue +1 -0
- package/uni-ui/lib/uni-datetime-picker/calendar.vue +1 -0
- package/uni-ui/lib/uni-datetime-picker/i18n/en.json +22 -0
- package/uni-ui/lib/uni-datetime-picker/i18n/index.js +8 -0
- package/uni-ui/lib/uni-datetime-picker/i18n/zh-Hans.json +22 -0
- package/uni-ui/lib/uni-datetime-picker/i18n/zh-Hant.json +22 -0
- package/uni-ui/lib/uni-datetime-picker/style.css +188 -0
- package/uni-ui/lib/uni-datetime-picker/style.scss +218 -0
- package/uni-ui/lib/uni-datetime-picker/time-picker.vue +1 -0
- package/uni-ui/lib/uni-datetime-picker/uni-datetime-picker.vue +1 -0
- package/uni-ui/lib/uni-datetime-picker/util.js +403 -0
- package/uni-ui/lib/uni-drawer/keypress.js +45 -0
- package/uni-ui/lib/uni-drawer/style.css +63 -0
- package/uni-ui/lib/uni-drawer/style.scss +77 -0
- package/uni-ui/lib/uni-drawer/uni-drawer.vue +1 -0
- package/uni-ui/lib/uni-easyinput/style.css +126 -0
- package/uni-ui/lib/uni-easyinput/style.scss +155 -0
- package/uni-ui/lib/uni-easyinput/uni-easyinput.vue +1 -0
- package/uni-ui/lib/uni-fab/style.css +185 -0
- package/uni-ui/lib/uni-fab/style.scss +259 -0
- package/uni-ui/lib/uni-fab/uni-fab.vue +1 -0
- package/uni-ui/lib/uni-fav/i18n/en.json +4 -0
- package/uni-ui/lib/uni-fav/i18n/index.js +8 -0
- package/uni-ui/lib/uni-fav/i18n/zh-Hans.json +4 -0
- package/uni-ui/lib/uni-fav/i18n/zh-Hant.json +4 -0
- package/uni-ui/lib/uni-fav/style.css +39 -0
- package/uni-ui/lib/uni-fav/style.scss +45 -0
- package/uni-ui/lib/uni-fav/uni-fav.vue +1 -0
- package/uni-ui/lib/uni-file-picker/choose-and-upload-file.js +224 -0
- package/uni-ui/lib/uni-file-picker/style.css +97 -0
- package/uni-ui/lib/uni-file-picker/style.scss +110 -0
- package/uni-ui/lib/uni-file-picker/uni-file-picker.vue +1 -0
- package/uni-ui/lib/uni-file-picker/upload-file.vue +1 -0
- package/uni-ui/lib/uni-file-picker/upload-image.vue +1 -0
- package/uni-ui/lib/uni-forms/style.css +0 -0
- package/uni-ui/lib/uni-forms/style.scss +3 -0
- package/uni-ui/lib/uni-forms/uni-forms.vue +1 -0
- package/uni-ui/lib/uni-forms/utils.js +293 -0
- package/{ui-uni → uni-ui/lib}/uni-forms/validate.js +0 -0
- package/uni-ui/lib/uni-forms-item/style.css +133 -0
- package/uni-ui/lib/uni-forms-item/style.scss +165 -0
- package/uni-ui/lib/uni-forms-item/uni-forms-item.vue +1 -0
- package/uni-ui/lib/uni-goods-nav/i18n/en.json +6 -0
- package/uni-ui/lib/uni-goods-nav/i18n/index.js +8 -0
- package/uni-ui/lib/uni-goods-nav/i18n/zh-Hans.json +6 -0
- package/uni-ui/lib/uni-goods-nav/i18n/zh-Hant.json +6 -0
- package/uni-ui/lib/uni-goods-nav/style.css +100 -0
- package/uni-ui/lib/uni-goods-nav/style.scss +122 -0
- package/uni-ui/lib/uni-goods-nav/uni-goods-nav.vue +1 -0
- package/uni-ui/lib/uni-grid/style.css +29 -0
- package/uni-ui/lib/uni-grid/style.scss +33 -0
- package/uni-ui/lib/uni-grid/uni-grid.vue +1 -0
- package/uni-ui/lib/uni-grid-item/style.css +49 -0
- package/uni-ui/lib/uni-grid-item/style.scss +55 -0
- package/uni-ui/lib/uni-grid-item/uni-grid-item.vue +1 -0
- package/uni-ui/lib/uni-group/style.css +36 -0
- package/uni-ui/lib/uni-group/style.scss +50 -0
- package/uni-ui/lib/uni-group/uni-group.vue +1 -0
- package/uni-ui/lib/uni-icons/icons.js +1169 -0
- package/uni-ui/lib/uni-icons/style.css +12 -0
- package/uni-ui/lib/uni-icons/style.scss +14 -0
- package/uni-ui/lib/uni-icons/uni-icons.vue +1 -0
- package/uni-ui/lib/uni-icons/uniicons.css +663 -0
- package/uni-ui/lib/uni-icons/uniicons.ttf +0 -0
- package/uni-ui/lib/uni-indexed-list/style.css +68 -0
- package/uni-ui/lib/uni-indexed-list/style.scss +83 -0
- package/uni-ui/lib/uni-indexed-list/uni-indexed-list-item.vue +1 -0
- package/uni-ui/lib/uni-indexed-list/uni-indexed-list.vue +1 -0
- package/uni-ui/lib/uni-link/uni-link.vue +140 -0
- package/uni-ui/lib/uni-list/style.css +43 -0
- package/uni-ui/lib/uni-list/style.scss +52 -0
- package/uni-ui/lib/uni-list/uni-list.vue +1 -0
- package/uni-ui/lib/uni-list/uni-refresh.vue +63 -0
- package/uni-ui/lib/uni-list/uni-refresh.wxs +87 -0
- package/uni-ui/lib/uni-list-ad/style.css +30 -0
- package/uni-ui/lib/uni-list-ad/style.scss +35 -0
- package/uni-ui/lib/uni-list-ad/uni-list-ad.vue +1 -0
- package/uni-ui/lib/uni-list-chat/style.css +257 -0
- package/uni-ui/lib/uni-list-chat/style.scss +326 -0
- package/uni-ui/lib/uni-list-chat/uni-list-chat.scss +58 -0
- package/uni-ui/lib/uni-list-chat/uni-list-chat.vue +1 -0
- package/uni-ui/lib/uni-list-item/style.css +170 -0
- package/uni-ui/lib/uni-list-item/style.scss +213 -0
- package/uni-ui/lib/uni-list-item/uni-list-item.vue +1 -0
- package/uni-ui/lib/uni-load-more/i18n/en.json +5 -0
- package/uni-ui/lib/uni-load-more/i18n/index.js +8 -0
- package/uni-ui/lib/uni-load-more/i18n/zh-Hans.json +5 -0
- package/uni-ui/lib/uni-load-more/i18n/zh-Hant.json +5 -0
- package/uni-ui/lib/uni-load-more/style.css +194 -0
- package/uni-ui/lib/uni-load-more/style.scss +244 -0
- package/uni-ui/lib/uni-load-more/uni-load-more.vue +1 -0
- package/uni-ui/lib/uni-nav-bar/style.css +3 -0
- package/uni-ui/lib/uni-nav-bar/style.scss +6 -0
- package/uni-ui/lib/uni-nav-bar/uni-nav-bar.vue +1 -0
- package/uni-ui/lib/uni-nav-bar/uni-status-bar.vue +1 -0
- package/uni-ui/lib/uni-notice-bar/style.css +109 -0
- package/uni-ui/lib/uni-notice-bar/style.scss +125 -0
- package/uni-ui/lib/uni-notice-bar/uni-notice-bar.vue +1 -0
- package/uni-ui/lib/uni-number-box/style.css +50 -0
- package/uni-ui/lib/uni-number-box/style.scss +64 -0
- package/uni-ui/lib/uni-number-box/uni-number-box.vue +1 -0
- package/uni-ui/lib/uni-pagination/i18n/en.json +5 -0
- package/uni-ui/lib/uni-pagination/i18n/es.json +5 -0
- package/uni-ui/lib/uni-pagination/i18n/fr.json +5 -0
- package/uni-ui/lib/uni-pagination/i18n/index.js +12 -0
- package/uni-ui/lib/uni-pagination/i18n/zh-Hans.json +5 -0
- package/uni-ui/lib/uni-pagination/i18n/zh-Hant.json +5 -0
- package/uni-ui/lib/uni-pagination/style.css +125 -0
- package/uni-ui/lib/uni-pagination/style.scss +154 -0
- package/uni-ui/lib/uni-pagination/uni-pagination.vue +1 -0
- package/uni-ui/lib/uni-popup/i18n/en.json +7 -0
- package/uni-ui/lib/uni-popup/i18n/index.js +8 -0
- package/uni-ui/lib/uni-popup/i18n/zh-Hans.json +7 -0
- package/uni-ui/lib/uni-popup/i18n/zh-Hant.json +7 -0
- package/uni-ui/lib/uni-popup/keypress.js +45 -0
- package/uni-ui/lib/uni-popup/popup.js +26 -0
- package/uni-ui/lib/uni-popup/style.css +41 -0
- package/uni-ui/lib/uni-popup/style.scss +51 -0
- package/uni-ui/lib/uni-popup/uni-popup.vue +426 -0
- package/uni-ui/lib/uni-popup-dialog/keypress.js +45 -0
- package/uni-ui/lib/uni-popup-dialog/style.css +82 -0
- package/uni-ui/lib/uni-popup-dialog/style.scss +98 -0
- package/uni-ui/lib/uni-popup-dialog/uni-popup-dialog.vue +1 -0
- package/uni-ui/lib/uni-popup-message/style.css +57 -0
- package/uni-ui/lib/uni-popup-message/style.scss +69 -0
- package/uni-ui/lib/uni-popup-message/uni-popup-message.vue +1 -0
- package/uni-ui/lib/uni-popup-share/style.css +72 -0
- package/uni-ui/lib/uni-popup-share/style.scss +81 -0
- package/uni-ui/lib/uni-popup-share/uni-popup-share.vue +1 -0
- package/uni-ui/lib/uni-rate/style.css +29 -0
- package/uni-ui/lib/uni-rate/style.scss +33 -0
- package/uni-ui/lib/uni-rate/uni-rate.vue +1 -0
- package/uni-ui/lib/uni-row/style.css +58 -0
- package/uni-ui/lib/uni-row/style.scss +104 -0
- package/uni-ui/lib/uni-row/uni-row.vue +83 -0
- package/uni-ui/lib/uni-scss/changelog.md +8 -0
- package/uni-ui/lib/uni-scss/index.scss +1 -0
- package/uni-ui/lib/uni-scss/package.json +82 -0
- package/uni-ui/lib/uni-scss/readme.md +4 -0
- package/uni-ui/lib/uni-scss/styles/index.scss +7 -0
- package/uni-ui/lib/uni-scss/styles/setting/_border.scss +3 -0
- package/uni-ui/lib/uni-scss/styles/setting/_color.scss +66 -0
- package/uni-ui/lib/uni-scss/styles/setting/_radius.scss +55 -0
- package/uni-ui/lib/uni-scss/styles/setting/_space.scss +56 -0
- package/uni-ui/lib/uni-scss/styles/setting/_styles.scss +167 -0
- package/uni-ui/lib/uni-scss/styles/setting/_text.scss +24 -0
- package/uni-ui/lib/uni-scss/styles/setting/_variables.scss +146 -0
- package/uni-ui/lib/uni-scss/styles/tools/functions.scss +19 -0
- package/uni-ui/lib/uni-scss/theme.scss +31 -0
- package/uni-ui/lib/uni-scss/uni.scss +76 -0
- package/uni-ui/lib/uni-scss/variables.scss +62 -0
- package/uni-ui/lib/uni-search-bar/i18n/en.json +4 -0
- package/uni-ui/lib/uni-search-bar/i18n/index.js +8 -0
- package/uni-ui/lib/uni-search-bar/i18n/zh-Hans.json +4 -0
- package/uni-ui/lib/uni-search-bar/i18n/zh-Hant.json +4 -0
- package/uni-ui/lib/uni-search-bar/style.css +59 -0
- package/uni-ui/lib/uni-search-bar/style.scss +70 -0
- package/uni-ui/lib/uni-search-bar/uni-search-bar.vue +1 -0
- package/uni-ui/lib/uni-section/style.css +55 -0
- package/uni-ui/lib/uni-section/style.scss +65 -0
- package/uni-ui/lib/uni-section/uni-section.vue +1 -0
- package/uni-ui/lib/uni-segmented-control/style.css +48 -0
- package/uni-ui/lib/uni-segmented-control/style.scss +55 -0
- package/uni-ui/lib/uni-segmented-control/uni-segmented-control.vue +1 -0
- package/uni-ui/lib/uni-status-bar/style.css +4 -0
- package/uni-ui/lib/uni-status-bar/uni-status-bar.vue +19 -0
- package/uni-ui/lib/uni-steps/style.css +152 -0
- package/uni-ui/lib/uni-steps/style.scss +179 -0
- package/uni-ui/lib/uni-steps/uni-steps.vue +1 -0
- package/uni-ui/lib/uni-swipe-action/uni-swipe-action.vue +1 -0
- package/uni-ui/lib/uni-swipe-action-item/bindingx.js +302 -0
- package/uni-ui/lib/uni-swipe-action-item/isPC.js +12 -0
- package/uni-ui/lib/uni-swipe-action-item/mpalipay.js +195 -0
- package/uni-ui/lib/uni-swipe-action-item/mpother.js +260 -0
- package/uni-ui/lib/uni-swipe-action-item/mpwxs.js +84 -0
- package/uni-ui/lib/uni-swipe-action-item/render.js +270 -0
- package/uni-ui/lib/uni-swipe-action-item/style.css +90 -0
- package/uni-ui/lib/uni-swipe-action-item/style.scss +112 -0
- package/uni-ui/lib/uni-swipe-action-item/uni-swipe-action-item.vue +3 -0
- package/uni-ui/lib/uni-swipe-action-item/wx.wxs +341 -0
- package/uni-ui/lib/uni-swiper-dot/style.css +75 -0
- package/uni-ui/lib/uni-swiper-dot/style.scss +95 -0
- package/uni-ui/lib/uni-swiper-dot/uni-swiper-dot.vue +1 -0
- package/uni-ui/lib/uni-table/style.css +123 -0
- package/uni-ui/lib/uni-table/style.scss +152 -0
- package/uni-ui/lib/uni-table/uni-table.vue +1 -0
- package/uni-ui/lib/uni-tag/style.css +105 -0
- package/uni-ui/lib/uni-tag/style.scss +141 -0
- package/uni-ui/lib/uni-tag/uni-tag.vue +1 -0
- package/uni-ui/lib/uni-tbody/uni-tbody.vue +1 -0
- package/uni-ui/lib/uni-td/style.css +13 -0
- package/uni-ui/lib/uni-td/style.scss +17 -0
- package/uni-ui/lib/uni-td/uni-td.vue +1 -0
- package/uni-ui/lib/uni-test/uni-test.vue +11 -0
- package/uni-ui/lib/uni-th/filter-dropdown.vue +299 -0
- package/uni-ui/lib/uni-th/style.css +63 -0
- package/uni-ui/lib/uni-th/style.scss +78 -0
- package/uni-ui/lib/uni-th/uni-th.vue +1 -0
- package/uni-ui/lib/uni-thead/style.css +30 -0
- package/uni-ui/lib/uni-thead/style.scss +52 -0
- package/uni-ui/lib/uni-thead/uni-thead.vue +1 -0
- package/uni-ui/lib/uni-title/uni-title.vue +1 -0
- package/uni-ui/lib/uni-tooltip/uni-tooltip.vue +1 -0
- package/uni-ui/lib/uni-tr/style.css +25 -0
- package/uni-ui/lib/uni-tr/style.scss +46 -0
- package/uni-ui/lib/uni-tr/table-checkbox.vue +1 -0
- package/uni-ui/lib/uni-tr/uni-tr.vue +1 -0
- package/uni-ui/lib/uni-transition/createAnimation.js +131 -0
- package/uni-ui/lib/uni-transition/uni-transition.vue +286 -0
- package/uni-ui/package.json +17 -0
- package/uview-plus/LICENSE +21 -0
- package/uview-plus/README.md +64 -0
- package/uview-plus/changelog.md +24 -0
- package/uview-plus/components/u--form/u--form.vue +1 -0
- package/uview-plus/components/u--image/u--image.vue +1 -0
- package/uview-plus/components/u--input/u--input.vue +9 -0
- package/uview-plus/components/u--text/u--text.vue +1 -0
- package/uview-plus/components/u--textarea/u--textarea.vue +1 -0
- package/uview-plus/components/u-action-sheet/props.js +55 -0
- package/uview-plus/components/u-action-sheet/style.css +68 -0
- package/uview-plus/components/u-action-sheet/style.scss +84 -0
- package/uview-plus/components/u-action-sheet/u-action-sheet.vue +158 -0
- package/uview-plus/components/u-album/props.js +60 -0
- package/uview-plus/components/u-album/style.css +41 -0
- package/uview-plus/components/u-album/style.scss +26 -0
- package/uview-plus/components/u-album/u-album.vue +203 -0
- package/uview-plus/components/u-alert/props.js +45 -0
- package/uview-plus/components/u-alert/style.css +101 -0
- package/uview-plus/components/u-alert/style.scss +113 -0
- package/uview-plus/components/u-alert/u-alert.vue +118 -0
- package/uview-plus/components/u-avatar/props.js +79 -0
- package/uview-plus/components/u-avatar/style.css +31 -0
- package/uview-plus/components/u-avatar/style.scss +25 -0
- package/uview-plus/components/u-avatar/u-avatar.vue +168 -0
- package/uview-plus/components/u-avatar-group/props.js +53 -0
- package/uview-plus/components/u-avatar-group/style.css +39 -0
- package/uview-plus/components/u-avatar-group/style.scss +28 -0
- package/uview-plus/components/u-avatar-group/u-avatar-group.vue +74 -0
- package/uview-plus/components/u-back-top/props.js +55 -0
- package/uview-plus/components/u-back-top/style.css +27 -0
- package/uview-plus/components/u-back-top/style.scss +19 -0
- package/uview-plus/components/u-back-top/u-back-top.vue +95 -0
- package/uview-plus/components/u-badge/props.js +78 -0
- package/uview-plus/components/u-badge/style.css +68 -0
- package/uview-plus/components/u-badge/style.scss +85 -0
- package/uview-plus/components/u-badge/u-badge.vue +96 -0
- package/uview-plus/components/u-button/nvue-parse.scss +27 -0
- package/uview-plus/components/u-button/nvue.scss +1 -0
- package/uview-plus/components/u-button/props.js +162 -0
- package/uview-plus/components/u-button/style.css +202 -0
- package/uview-plus/components/u-button/style.scss +196 -0
- package/uview-plus/components/u-button/u-button.vue +262 -0
- package/uview-plus/components/u-button/vue-parse.scss +42 -0
- package/uview-plus/components/u-button/vue.scss +80 -0
- package/uview-plus/components/u-calendar/header.vue +1 -0
- package/uview-plus/components/u-calendar/month.vue +478 -0
- package/uview-plus/components/u-calendar/props.js +145 -0
- package/uview-plus/components/u-calendar/style.css +14 -0
- package/uview-plus/components/u-calendar/style.scss +7 -0
- package/uview-plus/components/u-calendar/u-calendar.vue +322 -0
- package/uview-plus/components/u-calendar/util.js +86 -0
- package/uview-plus/components/u-car-keyboard/props.js +15 -0
- package/uview-plus/components/u-car-keyboard/style.css +80 -0
- package/uview-plus/components/u-car-keyboard/style.scss +90 -0
- package/uview-plus/components/u-car-keyboard/u-car-keyboard.vue +1 -0
- package/uview-plus/components/u-cell/props.js +111 -0
- package/uview-plus/components/u-cell/style.css +98 -0
- package/uview-plus/components/u-cell/style.scss +127 -0
- package/uview-plus/components/u-cell/u-cell.vue +124 -0
- package/uview-plus/components/u-cell-group/props.js +15 -0
- package/uview-plus/components/u-cell-group/style.css +25 -0
- package/uview-plus/components/u-cell-group/style.scss +24 -0
- package/uview-plus/components/u-cell-group/u-cell-group.vue +37 -0
- package/uview-plus/components/u-checkbox/props.js +70 -0
- package/uview-plus/components/u-checkbox/style.css +86 -0
- package/uview-plus/components/u-checkbox/style.scss +103 -0
- package/uview-plus/components/u-checkbox/u-checkbox.vue +250 -0
- package/uview-plus/components/u-checkbox-group/props.js +91 -0
- package/uview-plus/components/u-checkbox-group/style.css +23 -0
- package/uview-plus/components/u-checkbox-group/style.scss +14 -0
- package/uview-plus/components/u-checkbox-group/u-checkbox-group.vue +112 -0
- package/uview-plus/components/u-circle-progress/props.js +9 -0
- package/uview-plus/components/u-circle-progress/style.css +80 -0
- package/uview-plus/components/u-circle-progress/style.scss +86 -0
- package/uview-plus/components/u-circle-progress/u-circle-progress.vue +99 -0
- package/uview-plus/components/u-code/props.js +35 -0
- package/uview-plus/components/u-code/style.css +11 -0
- package/uview-plus/components/u-code/style.scss +1 -0
- package/uview-plus/components/u-code/u-code.vue +129 -0
- package/uview-plus/components/u-code-input/props.js +80 -0
- package/uview-plus/components/u-code-input/style.css +78 -0
- package/uview-plus/components/u-code-input/style.scss +75 -0
- package/uview-plus/components/u-code-input/u-code-input.vue +169 -0
- package/uview-plus/components/u-col/props.js +30 -0
- package/uview-plus/components/u-col/style.css +61 -0
- package/uview-plus/components/u-col/style.scss +67 -0
- package/uview-plus/components/u-col/u-col.vue +92 -0
- package/uview-plus/components/u-collapse/props.js +20 -0
- package/uview-plus/components/u-collapse/style.css +11 -0
- package/uview-plus/components/u-collapse/style.scss +1 -0
- package/uview-plus/components/u-collapse/u-collapse.vue +87 -0
- package/uview-plus/components/u-collapse-item/props.js +60 -0
- package/uview-plus/components/u-collapse-item/style.css +21 -0
- package/uview-plus/components/u-collapse-item/style.scss +15 -0
- package/uview-plus/components/u-collapse-item/u-collapse-item.vue +1 -0
- package/uview-plus/components/u-column-notice/props.js +56 -0
- package/uview-plus/components/u-column-notice/style.css +48 -0
- package/uview-plus/components/u-column-notice/style.scss +35 -0
- package/uview-plus/components/u-column-notice/u-column-notice.vue +95 -0
- package/uview-plus/components/u-count-down/props.js +25 -0
- package/uview-plus/components/u-count-down/style.css +16 -0
- package/uview-plus/components/u-count-down/style.scss +12 -0
- package/uview-plus/components/u-count-down/u-count-down.vue +1 -0
- package/uview-plus/components/u-count-down/utils.js +62 -0
- package/uview-plus/components/u-count-to/props.js +60 -0
- package/uview-plus/components/u-count-to/style.css +17 -0
- package/uview-plus/components/u-count-to/style.scss +8 -0
- package/uview-plus/components/u-count-to/u-count-to.vue +179 -0
- package/uview-plus/components/u-datetime-picker/props.js +126 -0
- package/uview-plus/components/u-datetime-picker/style.css +11 -0
- package/uview-plus/components/u-datetime-picker/style.scss +1 -0
- package/uview-plus/components/u-datetime-picker/u-datetime-picker.vue +379 -0
- package/uview-plus/components/u-divider/props.js +45 -0
- package/uview-plus/components/u-divider/style.css +28 -0
- package/uview-plus/components/u-divider/style.scss +23 -0
- package/uview-plus/components/u-divider/u-divider.vue +73 -0
- package/uview-plus/components/u-dropdown/props.js +66 -0
- package/uview-plus/components/u-dropdown/style.css +32 -0
- package/uview-plus/components/u-dropdown/style.scss +18 -0
- package/uview-plus/components/u-dropdown/u-dropdown.vue +1 -0
- package/uview-plus/components/u-dropdown-item/props.js +37 -0
- package/uview-plus/components/u-dropdown-item/style.css +16 -0
- package/uview-plus/components/u-dropdown-item/style.scss +9 -0
- package/uview-plus/components/u-dropdown-item/u-dropdown-item.vue +1 -0
- package/uview-plus/components/u-empty/props.js +60 -0
- package/uview-plus/components/u-empty/style.css +38 -0
- package/uview-plus/components/u-empty/style.scss +23 -0
- package/uview-plus/components/u-empty/u-empty.vue +98 -0
- package/uview-plus/components/u-form/props.js +46 -0
- package/uview-plus/components/u-form/u-form.vue +1 -0
- package/uview-plus/components/u-form-item/props.js +44 -0
- package/uview-plus/components/u-form-item/style.css +95 -0
- package/uview-plus/components/u-form-item/style.scss +76 -0
- package/uview-plus/components/u-form-item/u-form-item.vue +159 -0
- package/uview-plus/components/u-gap/props.js +25 -0
- package/uview-plus/components/u-gap/style.css +11 -0
- package/uview-plus/components/u-gap/style.scss +1 -0
- package/uview-plus/components/u-gap/u-gap.vue +38 -0
- package/uview-plus/components/u-grid/props.js +20 -0
- package/uview-plus/components/u-grid/style.css +27 -0
- package/uview-plus/components/u-grid/style.scss +15 -0
- package/uview-plus/components/u-grid/u-grid.vue +80 -0
- package/uview-plus/components/u-grid-item/props.js +15 -0
- package/uview-plus/components/u-grid-item/style.css +41 -0
- package/uview-plus/components/u-grid-item/style.scss +44 -0
- package/uview-plus/components/u-grid-item/u-grid-item.vue +165 -0
- package/uview-plus/components/u-icon/icons.js +214 -0
- package/uview-plus/components/u-icon/props.js +90 -0
- package/uview-plus/components/u-icon/style.css +74 -0
- package/uview-plus/components/u-icon/style.scss +85 -0
- package/uview-plus/components/u-icon/u-icon.vue +133 -0
- package/uview-plus/components/u-image/props.js +85 -0
- package/uview-plus/components/u-image/style.css +35 -0
- package/uview-plus/components/u-image/style.scss +34 -0
- package/uview-plus/components/u-image/u-image.vue +182 -0
- package/uview-plus/components/u-index-anchor/props.js +30 -0
- package/uview-plus/components/u-index-anchor/style.css +29 -0
- package/uview-plus/components/u-index-anchor/style.scss +15 -0
- package/uview-plus/components/u-index-anchor/u-index-anchor.vue +78 -0
- package/uview-plus/components/u-index-item/props.js +4 -0
- package/uview-plus/components/u-index-item/style.css +11 -0
- package/uview-plus/components/u-index-item/style.scss +1 -0
- package/uview-plus/components/u-index-item/u-index-item.vue +81 -0
- package/uview-plus/components/u-index-list/props.js +30 -0
- package/uview-plus/components/u-index-list/style.css +61 -0
- package/uview-plus/components/u-index-list/style.scss +53 -0
- package/uview-plus/components/u-index-list/u-index-list.vue +367 -0
- package/uview-plus/components/u-input/props.js +196 -0
- package/uview-plus/components/u-input/style.css +75 -0
- package/uview-plus/components/u-input/style.scss +64 -0
- package/uview-plus/components/u-input/u-input.vue +287 -0
- package/uview-plus/components/u-keyboard/props.js +85 -0
- package/uview-plus/components/u-keyboard/style.css +37 -0
- package/uview-plus/components/u-keyboard/style.scss +31 -0
- package/uview-plus/components/u-keyboard/u-keyboard.vue +115 -0
- package/uview-plus/components/u-line/props.js +34 -0
- package/uview-plus/components/u-line/style.css +16 -0
- package/uview-plus/components/u-line/style.scss +7 -0
- package/uview-plus/components/u-line/u-line.vue +50 -0
- package/uview-plus/components/u-line-progress/props.js +29 -0
- package/uview-plus/components/u-line-progress/style.css +50 -0
- package/uview-plus/components/u-line-progress/style.scss +38 -0
- package/uview-plus/components/u-line-progress/u-line-progress.vue +99 -0
- package/uview-plus/components/u-link/props.js +40 -0
- package/uview-plus/components/u-link/style.css +22 -0
- package/uview-plus/components/u-link/style.scss +11 -0
- package/uview-plus/components/u-link/u-link.vue +68 -0
- package/uview-plus/components/u-list/props.js +76 -0
- package/uview-plus/components/u-list/style.css +17 -0
- package/uview-plus/components/u-list/style.scss +5 -0
- package/uview-plus/components/u-list/u-list.vue +152 -0
- package/uview-plus/components/u-list-item/props.js +10 -0
- package/uview-plus/components/u-list-item/style.css +11 -0
- package/uview-plus/components/u-list-item/style.scss +4 -0
- package/uview-plus/components/u-list-item/u-list-item.vue +105 -0
- package/uview-plus/components/u-loading-icon/props.js +60 -0
- package/uview-plus/components/u-loading-icon/style.css +148 -0
- package/uview-plus/components/u-loading-icon/style.scss +153 -0
- package/uview-plus/components/u-loading-icon/u-loading-icon.vue +1 -0
- package/uview-plus/components/u-loading-page/props.js +50 -0
- package/uview-plus/components/u-loading-page/style.css +44 -0
- package/uview-plus/components/u-loading-page/style.scss +37 -0
- package/uview-plus/components/u-loading-page/u-loading-page.vue +75 -0
- package/uview-plus/components/u-loadmore/props.js +95 -0
- package/uview-plus/components/u-loadmore/style.css +40 -0
- package/uview-plus/components/u-loadmore/style.scss +29 -0
- package/uview-plus/components/u-loadmore/u-loadmore.vue +101 -0
- package/uview-plus/components/u-message-input/style.css +115 -0
- package/uview-plus/components/u-message-input/style.scss +134 -0
- package/uview-plus/components/u-message-input/u-message-input.vue +205 -0
- package/uview-plus/components/u-modal/props.js +85 -0
- package/uview-plus/components/u-modal/style.css +70 -0
- package/uview-plus/components/u-modal/style.scss +65 -0
- package/uview-plus/components/u-modal/u-modal.vue +1 -0
- package/uview-plus/components/u-navbar/props.js +85 -0
- package/uview-plus/components/u-navbar/style.css +62 -0
- package/uview-plus/components/u-navbar/style.scss +58 -0
- package/uview-plus/components/u-navbar/u-navbar.vue +114 -0
- package/uview-plus/components/u-no-network/props.js +20 -0
- package/uview-plus/components/u-no-network/style.css +49 -0
- package/uview-plus/components/u-no-network/style.scss +36 -0
- package/uview-plus/components/u-no-network/u-no-network.vue +168 -0
- package/uview-plus/components/u-notice-bar/props.js +71 -0
- package/uview-plus/components/u-notice-bar/style.css +16 -0
- package/uview-plus/components/u-notice-bar/style.scss +7 -0
- package/uview-plus/components/u-notice-bar/u-notice-bar.vue +98 -0
- package/uview-plus/components/u-notify/props.js +50 -0
- package/uview-plus/components/u-notify/style.css +39 -0
- package/uview-plus/components/u-notify/style.scss +40 -0
- package/uview-plus/components/u-notify/u-notify.vue +166 -0
- package/uview-plus/components/u-number-box/props.js +119 -0
- package/uview-plus/components/u-number-box/style.css +67 -0
- package/uview-plus/components/u-number-box/style.scss +70 -0
- package/uview-plus/components/u-number-box/u-number-box.vue +343 -0
- package/uview-plus/components/u-number-keyboard/props.js +20 -0
- package/uview-plus/components/u-number-keyboard/style.css +56 -0
- package/uview-plus/components/u-number-keyboard/style.scss +62 -0
- package/uview-plus/components/u-number-keyboard/u-number-keyboard.vue +118 -0
- package/uview-plus/components/u-overlay/props.js +25 -0
- package/uview-plus/components/u-overlay/style.css +19 -0
- package/uview-plus/components/u-overlay/style.scss +14 -0
- package/uview-plus/components/u-overlay/u-overlay.vue +48 -0
- package/uview-plus/components/u-parse/node/node.vue +535 -0
- package/uview-plus/components/u-parse/parser.js +1333 -0
- package/uview-plus/components/u-parse/props.js +47 -0
- package/uview-plus/components/u-parse/u-parse.vue +519 -0
- package/uview-plus/components/u-picker/props.js +80 -0
- package/uview-plus/components/u-picker/style.css +57 -0
- package/uview-plus/components/u-picker/style.scss +45 -0
- package/uview-plus/components/u-picker/u-picker.vue +231 -0
- package/uview-plus/components/u-picker-column/props.js +4 -0
- package/uview-plus/components/u-picker-column/style.css +11 -0
- package/uview-plus/components/u-picker-column/style.scss +1 -0
- package/uview-plus/components/u-picker-column/u-picker-column.vue +25 -0
- package/uview-plus/components/u-popup/props.js +80 -0
- package/uview-plus/components/u-popup/style.css +70 -0
- package/uview-plus/components/u-popup/style.scss +75 -0
- package/uview-plus/components/u-popup/u-popup.vue +1 -0
- package/uview-plus/components/u-radio/props.js +70 -0
- package/uview-plus/components/u-radio/style.css +86 -0
- package/uview-plus/components/u-radio/style.scss +102 -0
- package/uview-plus/components/u-radio/u-radio.vue +238 -0
- package/uview-plus/components/u-radio-group/props.js +94 -0
- package/uview-plus/components/u-radio-group/style.css +26 -0
- package/uview-plus/components/u-radio-group/style.scss +16 -0
- package/uview-plus/components/u-radio-group/u-radio-group.vue +121 -0
- package/uview-plus/components/u-rate/props.js +79 -0
- package/uview-plus/components/u-rate/style.css +43 -0
- package/uview-plus/components/u-rate/style.scss +38 -0
- package/uview-plus/components/u-rate/u-rate.vue +249 -0
- package/uview-plus/components/u-read-more/props.js +62 -0
- package/uview-plus/components/u-read-more/style.css +33 -0
- package/uview-plus/components/u-read-more/style.scss +22 -0
- package/uview-plus/components/u-read-more/u-read-more.vue +119 -0
- package/uview-plus/components/u-row/props.js +20 -0
- package/uview-plus/components/u-row/style.css +17 -0
- package/uview-plus/components/u-row/style.scss +5 -0
- package/uview-plus/components/u-row/u-row.vue +82 -0
- package/uview-plus/components/u-row-notice/props.js +40 -0
- package/uview-plus/components/u-row-notice/style.css +61 -0
- package/uview-plus/components/u-row-notice/style.scss +50 -0
- package/uview-plus/components/u-row-notice/u-row-notice.vue +256 -0
- package/uview-plus/components/u-safe-bottom/props.js +4 -0
- package/uview-plus/components/u-safe-bottom/style.css +5 -0
- package/uview-plus/components/u-safe-bottom/style.scss +5 -0
- package/uview-plus/components/u-safe-bottom/u-safe-bottom.vue +1 -0
- package/uview-plus/components/u-scroll-list/nvue.js +3 -0
- package/uview-plus/components/u-scroll-list/other.js +0 -0
- package/uview-plus/components/u-scroll-list/props.js +35 -0
- package/uview-plus/components/u-scroll-list/scrollWxs.wxs +50 -0
- package/uview-plus/components/u-scroll-list/style.css +45 -0
- package/uview-plus/components/u-scroll-list/style.scss +32 -0
- package/uview-plus/components/u-scroll-list/u-scroll-list.vue +193 -0
- package/uview-plus/components/u-search/props.js +123 -0
- package/uview-plus/components/u-search/style.css +92 -0
- package/uview-plus/components/u-search/style.scss +98 -0
- package/uview-plus/components/u-search/u-search.vue +220 -0
- package/uview-plus/components/u-skeleton/props.js +60 -0
- package/uview-plus/components/u-skeleton/style.css +62 -0
- package/uview-plus/components/u-skeleton/style.scss +59 -0
- package/uview-plus/components/u-skeleton/u-skeleton.vue +188 -0
- package/uview-plus/components/u-slider/mpother.js +113 -0
- package/uview-plus/components/u-slider/mpwxs.js +42 -0
- package/uview-plus/components/u-slider/mpwxs.wxs +121 -0
- package/uview-plus/components/u-slider/nvue - /345/211/257/346/234/254.js" +175 -0
- package/uview-plus/components/u-slider/nvue.js +190 -0
- package/uview-plus/components/u-slider/props.js +55 -0
- package/uview-plus/components/u-slider/style.css +11 -0
- package/uview-plus/components/u-slider/style.scss +1 -0
- package/uview-plus/components/u-slider/u-slider.vue +1 -0
- package/uview-plus/components/u-status-bar/props.js +9 -0
- package/uview-plus/components/u-status-bar/style.css +5 -0
- package/uview-plus/components/u-status-bar/style.scss +6 -0
- package/uview-plus/components/u-status-bar/u-status-bar.vue +37 -0
- package/uview-plus/components/u-steps/props.js +40 -0
- package/uview-plus/components/u-steps/style.css +24 -0
- package/uview-plus/components/u-steps/style.scss +14 -0
- package/uview-plus/components/u-steps/u-steps.vue +63 -0
- package/uview-plus/components/u-steps-item/props.js +25 -0
- package/uview-plus/components/u-steps-item/style.css +119 -0
- package/uview-plus/components/u-steps-item/style.scss +111 -0
- package/uview-plus/components/u-steps-item/u-steps-item.vue +225 -0
- package/uview-plus/components/u-sticky/props.js +41 -0
- package/uview-plus/components/u-sticky/style.css +5 -0
- package/uview-plus/components/u-sticky/style.scss +6 -0
- package/uview-plus/components/u-sticky/u-sticky.vue +201 -0
- package/uview-plus/components/u-subsection/props.js +50 -0
- package/uview-plus/components/u-subsection/style.css +95 -0
- package/uview-plus/components/u-subsection/style.scss +90 -0
- package/uview-plus/components/u-subsection/u-subsection.vue +188 -0
- package/uview-plus/components/u-swipe-action/props.js +10 -0
- package/uview-plus/components/u-swipe-action/u-swipe-action.vue +65 -0
- package/uview-plus/components/u-swipe-action-item/index - backup.wxs +256 -0
- package/uview-plus/components/u-swipe-action-item/index.wxs +229 -0
- package/uview-plus/components/u-swipe-action-item/nvue - backup.js +264 -0
- package/uview-plus/components/u-swipe-action-item/nvue.js +172 -0
- package/uview-plus/components/u-swipe-action-item/props.js +42 -0
- package/uview-plus/components/u-swipe-action-item/style.css +61 -0
- package/uview-plus/components/u-swipe-action-item/style.scss +45 -0
- package/uview-plus/components/u-swipe-action-item/u-swipe-action-item.vue +188 -0
- package/uview-plus/components/u-swipe-action-item/wxs.js +15 -0
- package/uview-plus/components/u-swiper/props.js +126 -0
- package/uview-plus/components/u-swiper/style.css +58 -0
- package/uview-plus/components/u-swiper/style.scss +50 -0
- package/uview-plus/components/u-swiper/u-swiper.vue +196 -0
- package/uview-plus/components/u-swiper-indicator/props.js +30 -0
- package/uview-plus/components/u-swiper-indicator/style.css +37 -0
- package/uview-plus/components/u-swiper-indicator/style.scss +31 -0
- package/uview-plus/components/u-swiper-indicator/u-swiper-indicator.vue +70 -0
- package/uview-plus/components/u-switch/props.js +63 -0
- package/uview-plus/components/u-switch/style.css +58 -0
- package/uview-plus/components/u-switch/style.scss +48 -0
- package/uview-plus/components/u-switch/u-switch.vue +165 -0
- package/uview-plus/components/u-tabbar/props.js +45 -0
- package/uview-plus/components/u-tabbar/style.css +40 -0
- package/uview-plus/components/u-tabbar/style.scss +25 -0
- package/uview-plus/components/u-tabbar/u-tabbar.vue +115 -0
- package/uview-plus/components/u-tabbar-item/props.js +35 -0
- package/uview-plus/components/u-tabbar-item/style.css +42 -0
- package/uview-plus/components/u-tabbar-item/style.scss +30 -0
- package/uview-plus/components/u-tabbar-item/u-tabbar-item.vue +105 -0
- package/uview-plus/components/u-table/props.js +4 -0
- package/uview-plus/components/u-table/style.css +11 -0
- package/uview-plus/components/u-table/style.scss +1 -0
- package/uview-plus/components/u-table/u-table.vue +24 -0
- package/uview-plus/components/u-tabs/props.js +65 -0
- package/uview-plus/components/u-tabs/style.css +69 -0
- package/uview-plus/components/u-tabs/style.scss +58 -0
- package/uview-plus/components/u-tabs/u-tabs.vue +294 -0
- package/uview-plus/components/u-tabs-item/props.js +4 -0
- package/uview-plus/components/u-tabs-item/u-tabs-item.vue +26 -0
- package/uview-plus/components/u-tag/props.js +85 -0
- package/uview-plus/components/u-tag/style.css +180 -0
- package/uview-plus/components/u-tag/style.scss +206 -0
- package/uview-plus/components/u-tag/u-tag.vue +1 -0
- package/uview-plus/components/u-td/props.js +4 -0
- package/uview-plus/components/u-td/style.css +11 -0
- package/uview-plus/components/u-td/style.scss +1 -0
- package/uview-plus/components/u-td/u-td.vue +26 -0
- package/uview-plus/components/u-text/props.js +111 -0
- package/uview-plus/components/u-text/style.css +65 -0
- package/uview-plus/components/u-text/style.scss +62 -0
- package/uview-plus/components/u-text/u-text.vue +144 -0
- package/uview-plus/components/u-text/value.js +85 -0
- package/uview-plus/components/u-textarea/props.js +125 -0
- package/uview-plus/components/u-textarea/style.css +46 -0
- package/uview-plus/components/u-textarea/style.scss +39 -0
- package/uview-plus/components/u-textarea/u-textarea.vue +222 -0
- package/uview-plus/components/u-toast/style.css +78 -0
- package/uview-plus/components/u-toast/style.scss +108 -0
- package/uview-plus/components/u-toast/u-toast.vue +180 -0
- package/uview-plus/components/u-toolbar/props.js +35 -0
- package/uview-plus/components/u-toolbar/style.css +37 -0
- package/uview-plus/components/u-toolbar/style.scss +32 -0
- package/uview-plus/components/u-toolbar/u-toolbar.vue +62 -0
- package/uview-plus/components/u-tooltip/props.js +60 -0
- package/uview-plus/components/u-tooltip/style.css +75 -0
- package/uview-plus/components/u-tooltip/style.scss +63 -0
- package/uview-plus/components/u-tooltip/u-tooltip.vue +279 -0
- package/uview-plus/components/u-tr/props.js +4 -0
- package/uview-plus/components/u-tr/style.css +11 -0
- package/uview-plus/components/u-tr/style.scss +1 -0
- package/uview-plus/components/u-tr/u-tr.vue +26 -0
- package/uview-plus/components/u-transition/nvue-ani-map.js +1 -0
- package/uview-plus/components/u-transition/props.js +25 -0
- package/uview-plus/components/u-transition/style.css +109 -0
- package/uview-plus/components/u-transition/style.scss +9 -0
- package/uview-plus/components/u-transition/transition.js +164 -0
- package/uview-plus/components/u-transition/u-transition.vue +86 -0
- package/uview-plus/components/u-transition/vue.ani-style.scss +113 -0
- package/uview-plus/components/u-upload/mixin.js +21 -0
- package/uview-plus/components/u-upload/props.js +125 -0
- package/uview-plus/components/u-upload/style.css +164 -0
- package/uview-plus/components/u-upload/style.scss +200 -0
- package/uview-plus/components/u-upload/u-upload.vue +316 -0
- package/uview-plus/components/u-upload/utils.js +151 -0
- package/uview-plus/components/uview-plus/uview-plus.vue +8 -0
- package/uview-plus/index.css +4091 -0
- package/uview-plus/index.js +81 -0
- package/uview-plus/index.scss +24 -0
- package/uview-plus/libs/config/color.js +17 -0
- package/uview-plus/libs/config/config.js +33 -0
- package/uview-plus/libs/config/props/actionSheet.js +25 -0
- package/uview-plus/libs/config/props/album.js +25 -0
- package/uview-plus/libs/config/props/alert.js +22 -0
- package/uview-plus/libs/config/props/avatar.js +28 -0
- package/uview-plus/libs/config/props/avatarGroup.js +23 -0
- package/uview-plus/libs/config/props/backtop.js +27 -0
- package/uview-plus/libs/config/props/badge.js +27 -0
- package/uview-plus/libs/config/props/button.js +42 -0
- package/uview-plus/libs/config/props/calendar.js +42 -0
- package/uview-plus/libs/config/props/carKeyboard.js +15 -0
- package/uview-plus/libs/config/props/cell.js +35 -0
- package/uview-plus/libs/config/props/cellGroup.js +17 -0
- package/uview-plus/libs/config/props/checkbox.js +27 -0
- package/uview-plus/libs/config/props/checkboxGroup.js +29 -0
- package/uview-plus/libs/config/props/circleProgress.js +15 -0
- package/uview-plus/libs/config/props/code.js +21 -0
- package/uview-plus/libs/config/props/codeInput.js +29 -0
- package/uview-plus/libs/config/props/col.js +19 -0
- package/uview-plus/libs/config/props/collapse.js +17 -0
- package/uview-plus/libs/config/props/collapseItem.js +25 -0
- package/uview-plus/libs/config/props/columnNotice.js +24 -0
- package/uview-plus/libs/config/props/countDown.js +18 -0
- package/uview-plus/libs/config/props/countTo.js +25 -0
- package/uview-plus/libs/config/props/datetimePicker.js +36 -0
- package/uview-plus/libs/config/props/divider.js +23 -0
- package/uview-plus/libs/config/props/empty.js +26 -0
- package/uview-plus/libs/config/props/form.js +22 -0
- package/uview-plus/libs/config/props/formItem.js +22 -0
- package/uview-plus/libs/config/props/gap.js +19 -0
- package/uview-plus/libs/config/props/grid.js +17 -0
- package/uview-plus/libs/config/props/gridItem.js +16 -0
- package/uview-plus/libs/config/props/icon.js +36 -0
- package/uview-plus/libs/config/props/image.js +30 -0
- package/uview-plus/libs/config/props/indexAnchor.js +19 -0
- package/uview-plus/libs/config/props/indexList.js +19 -0
- package/uview-plus/libs/config/props/input.js +48 -0
- package/uview-plus/libs/config/props/keyboard.js +30 -0
- package/uview-plus/libs/config/props/line.js +20 -0
- package/uview-plus/libs/config/props/lineProgress.js +19 -0
- package/uview-plus/libs/config/props/link.js +26 -0
- package/uview-plus/libs/config/props/list.js +28 -0
- package/uview-plus/libs/config/props/listItem.js +15 -0
- package/uview-plus/libs/config/props/loadingIcon.js +30 -0
- package/uview-plus/libs/config/props/loadingPage.js +23 -0
- package/uview-plus/libs/config/props/loadmore.js +32 -0
- package/uview-plus/libs/config/props/modal.js +30 -0
- package/uview-plus/libs/config/props/navbar.js +32 -0
- package/uview-plus/libs/config/props/noNetwork.js +18 -0
- package/uview-plus/libs/config/props/noticeBar.js +27 -0
- package/uview-plus/libs/config/props/notify.js +22 -0
- package/uview-plus/libs/config/props/numberBox.js +35 -0
- package/uview-plus/libs/config/props/numberKeyboard.js +17 -0
- package/uview-plus/libs/config/props/overlay.js +18 -0
- package/uview-plus/libs/config/props/parse.js +22 -0
- package/uview-plus/libs/config/props/picker.js +29 -0
- package/uview-plus/libs/config/props/popup.js +29 -0
- package/uview-plus/libs/config/props/radio.js +27 -0
- package/uview-plus/libs/config/props/radioGroup.js +30 -0
- package/uview-plus/libs/config/props/rate.js +26 -0
- package/uview-plus/libs/config/props/readMore.js +22 -0
- package/uview-plus/libs/config/props/row.js +17 -0
- package/uview-plus/libs/config/props/rowNotice.js +21 -0
- package/uview-plus/libs/config/props/scrollList.js +20 -0
- package/uview-plus/libs/config/props/search.js +37 -0
- package/uview-plus/libs/config/props/section.js +24 -0
- package/uview-plus/libs/config/props/skeleton.js +25 -0
- package/uview-plus/libs/config/props/slider.js +25 -0
- package/uview-plus/libs/config/props/statusBar.js +15 -0
- package/uview-plus/libs/config/props/steps.js +21 -0
- package/uview-plus/libs/config/props/stepsItem.js +18 -0
- package/uview-plus/libs/config/props/sticky.js +20 -0
- package/uview-plus/libs/config/props/subsection.js +23 -0
- package/uview-plus/libs/config/props/swipeAction.js +15 -0
- package/uview-plus/libs/config/props/swipeActionItem.js +21 -0
- package/uview-plus/libs/config/props/swiper.js +39 -0
- package/uview-plus/libs/config/props/swipterIndicator.js +19 -0
- package/uview-plus/libs/config/props/switch.js +24 -0
- package/uview-plus/libs/config/props/tabbar.js +22 -0
- package/uview-plus/libs/config/props/tabbarItem.js +20 -0
- package/uview-plus/libs/config/props/tabs.js +32 -0
- package/uview-plus/libs/config/props/tag.js +29 -0
- package/uview-plus/libs/config/props/text.js +38 -0
- package/uview-plus/libs/config/props/textarea.js +36 -0
- package/uview-plus/libs/config/props/toast.js +30 -0
- package/uview-plus/libs/config/props/toolbar.js +21 -0
- package/uview-plus/libs/config/props/tooltip.js +25 -0
- package/uview-plus/libs/config/props/transition.js +18 -0
- package/uview-plus/libs/config/props/upload.js +36 -0
- package/uview-plus/libs/config/props.js +190 -0
- package/uview-plus/libs/config/zIndex.js +20 -0
- package/uview-plus/libs/css/color-libcss.scss +117 -0
- package/uview-plus/libs/css/color.scss +155 -0
- package/uview-plus/libs/css/common-libcss.scss +132 -0
- package/uview-plus/libs/css/common.scss +97 -0
- package/uview-plus/libs/css/components-libcss.scss +11 -0
- package/uview-plus/libs/css/components.scss +15 -0
- package/uview-plus/libs/css/flex-libcss.scss +2815 -0
- package/uview-plus/libs/css/flex.scss +296 -0
- package/uview-plus/libs/css/h5-libcss.scss +0 -0
- package/uview-plus/libs/css/h5.scss +0 -0
- package/uview-plus/libs/css/mixin-libcss.scss +0 -0
- package/uview-plus/libs/css/mixin.scss +8 -0
- package/uview-plus/libs/css/mp-libcss.scss +0 -0
- package/uview-plus/libs/css/mp.scss +0 -0
- package/uview-plus/libs/css/nvue-libcss.scss +0 -0
- package/uview-plus/libs/css/nvue.scss +0 -0
- package/uview-plus/libs/css/vue-libcss.scss +35 -0
- package/uview-plus/libs/css/vue.scss +27 -0
- package/uview-plus/libs/function/colorGradient.js +134 -0
- package/uview-plus/libs/function/debounce.js +29 -0
- package/uview-plus/libs/function/digit.js +167 -0
- package/uview-plus/libs/function/index.js +708 -0
- package/uview-plus/libs/function/platform.js +75 -0
- package/uview-plus/libs/function/test.js +288 -0
- package/uview-plus/libs/function/throttle.js +30 -0
- package/uview-plus/libs/luch-request/adapters/index.js +97 -0
- package/uview-plus/libs/luch-request/core/InterceptorManager.js +50 -0
- package/uview-plus/libs/luch-request/core/Request.js +198 -0
- package/uview-plus/libs/luch-request/core/buildFullPath.js +20 -0
- package/uview-plus/libs/luch-request/core/defaults.js +29 -0
- package/uview-plus/libs/luch-request/core/dispatchRequest.js +3 -0
- package/uview-plus/libs/luch-request/core/mergeConfig.js +103 -0
- package/uview-plus/libs/luch-request/core/settle.js +16 -0
- package/uview-plus/libs/luch-request/helpers/buildURL.js +69 -0
- package/uview-plus/libs/luch-request/helpers/combineURLs.js +14 -0
- package/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js +14 -0
- package/uview-plus/libs/luch-request/index.d.ts +116 -0
- package/uview-plus/libs/luch-request/index.js +3 -0
- package/uview-plus/libs/luch-request/utils/clone.js +264 -0
- package/uview-plus/libs/luch-request/utils.js +131 -0
- package/uview-plus/libs/mixin/button.js +13 -0
- package/uview-plus/libs/mixin/mixin.js +167 -0
- package/uview-plus/libs/mixin/mpMixin.js +8 -0
- package/uview-plus/libs/mixin/mpShare.js +13 -0
- package/uview-plus/libs/mixin/openType.js +25 -0
- package/uview-plus/libs/mixin/style.js +252 -0
- package/uview-plus/libs/mixin/touch.js +61 -0
- package/uview-plus/libs/util/async-validator.js +1343 -0
- package/uview-plus/libs/util/calendar.js +546 -0
- package/uview-plus/libs/util/emitter.js +51 -0
- package/uview-plus/libs/util/route.js +124 -0
- package/uview-plus/package.json +91 -0
- package/uview-plus/theme.css +29 -0
- package/uview-plus/theme.scss +44 -0
- package/uview-ui/LICENSE +21 -0
- package/uview-ui/README.md +66 -0
- package/uview-ui/changelog.md +362 -0
- package/uview-ui/components/u--form/u--form.vue +1 -0
- package/uview-ui/components/u--image/u--image.vue +1 -0
- package/uview-ui/components/u--input/u--input.vue +1 -0
- package/uview-ui/components/u--text/u--text.vue +1 -0
- package/uview-ui/components/u--textarea/u--textarea.vue +1 -0
- package/uview-ui/components/u-action-sheet/props.js +55 -0
- package/uview-ui/components/u-action-sheet/style.css +68 -0
- package/uview-ui/components/u-action-sheet/style.scss +84 -0
- package/uview-ui/components/u-action-sheet/u-action-sheet.vue +158 -0
- package/uview-ui/components/u-album/props.js +60 -0
- package/uview-ui/components/u-album/style.css +41 -0
- package/uview-ui/components/u-album/style.scss +26 -0
- package/uview-ui/components/u-album/u-album.vue +203 -0
- package/uview-ui/components/u-alert/props.js +45 -0
- package/uview-ui/components/u-alert/style.css +101 -0
- package/uview-ui/components/u-alert/style.scss +113 -0
- package/uview-ui/components/u-alert/u-alert.vue +118 -0
- package/uview-ui/components/u-avatar/props.js +79 -0
- package/uview-ui/components/u-avatar/style.css +31 -0
- package/uview-ui/components/u-avatar/style.scss +25 -0
- package/uview-ui/components/u-avatar/u-avatar.vue +168 -0
- package/uview-ui/components/u-avatar-group/props.js +53 -0
- package/uview-ui/components/u-avatar-group/style.css +39 -0
- package/uview-ui/components/u-avatar-group/style.scss +28 -0
- package/uview-ui/components/u-avatar-group/u-avatar-group.vue +74 -0
- package/uview-ui/components/u-back-top/props.js +55 -0
- package/uview-ui/components/u-back-top/style.css +27 -0
- package/uview-ui/components/u-back-top/style.scss +19 -0
- package/uview-ui/components/u-back-top/u-back-top.vue +95 -0
- package/uview-ui/components/u-badge/props.js +73 -0
- package/uview-ui/components/u-badge/style.css +68 -0
- package/uview-ui/components/u-badge/style.scss +85 -0
- package/uview-ui/components/u-badge/u-badge.vue +96 -0
- package/uview-ui/components/u-button/nvue-parse.scss +27 -0
- package/uview-ui/components/u-button/nvue.scss +1 -0
- package/uview-ui/components/u-button/props.js +162 -0
- package/uview-ui/components/u-button/style.css +202 -0
- package/uview-ui/components/u-button/style.scss +196 -0
- package/uview-ui/components/u-button/u-button.vue +261 -0
- package/uview-ui/components/u-button/vue-parse.scss +42 -0
- package/uview-ui/components/u-button/vue.scss +80 -0
- package/uview-ui/components/u-calendar/header.vue +1 -0
- package/uview-ui/components/u-calendar/month.vue +476 -0
- package/uview-ui/components/u-calendar/props.js +145 -0
- package/uview-ui/components/u-calendar/style.css +14 -0
- package/uview-ui/components/u-calendar/style.scss +7 -0
- package/uview-ui/components/u-calendar/u-calendar.vue +325 -0
- package/uview-ui/components/u-calendar/util.js +85 -0
- package/uview-ui/components/u-car-keyboard/props.js +14 -0
- package/uview-ui/components/u-car-keyboard/style.css +80 -0
- package/uview-ui/components/u-car-keyboard/style.scss +90 -0
- package/uview-ui/components/u-car-keyboard/u-car-keyboard.vue +1 -0
- package/uview-ui/components/u-cell/props.js +111 -0
- package/uview-ui/components/u-cell/style.css +98 -0
- package/uview-ui/components/u-cell/style.scss +127 -0
- package/uview-ui/components/u-cell/u-cell.vue +125 -0
- package/uview-ui/components/u-cell-group/props.js +15 -0
- package/uview-ui/components/u-cell-group/style.css +25 -0
- package/uview-ui/components/u-cell-group/style.scss +24 -0
- package/uview-ui/components/u-cell-group/u-cell-group.vue +37 -0
- package/uview-ui/components/u-checkbox/props.js +70 -0
- package/uview-ui/components/u-checkbox/style.css +84 -0
- package/uview-ui/components/u-checkbox/style.scss +101 -0
- package/uview-ui/components/u-checkbox/u-checkbox.vue +239 -0
- package/uview-ui/components/u-checkbox-group/props.js +82 -0
- package/uview-ui/components/u-checkbox-group/style.css +23 -0
- package/uview-ui/components/u-checkbox-group/style.scss +11 -0
- package/uview-ui/components/u-checkbox-group/u-checkbox-group.vue +96 -0
- package/uview-ui/components/u-circle-progress/props.js +9 -0
- package/uview-ui/components/u-circle-progress/style.css +80 -0
- package/uview-ui/components/u-circle-progress/style.scss +86 -0
- package/uview-ui/components/u-circle-progress/u-circle-progress.vue +99 -0
- package/uview-ui/components/u-code/props.js +35 -0
- package/uview-ui/components/u-code/style.css +11 -0
- package/uview-ui/components/u-code/style.scss +1 -0
- package/uview-ui/components/u-code/u-code.vue +129 -0
- package/uview-ui/components/u-code-input/props.js +80 -0
- package/uview-ui/components/u-code-input/style.css +78 -0
- package/uview-ui/components/u-code-input/style.scss +75 -0
- package/uview-ui/components/u-code-input/u-code-input.vue +169 -0
- package/uview-ui/components/u-col/props.js +30 -0
- package/uview-ui/components/u-col/style.css +61 -0
- package/uview-ui/components/u-col/style.scss +67 -0
- package/uview-ui/components/u-col/u-col.vue +88 -0
- package/uview-ui/components/u-collapse/props.js +20 -0
- package/uview-ui/components/u-collapse/style.css +11 -0
- package/uview-ui/components/u-collapse/style.scss +1 -0
- package/uview-ui/components/u-collapse/u-collapse.vue +89 -0
- package/uview-ui/components/u-collapse-item/props.js +60 -0
- package/uview-ui/components/u-collapse-item/style.css +21 -0
- package/uview-ui/components/u-collapse-item/style.scss +15 -0
- package/uview-ui/components/u-collapse-item/u-collapse-item.vue +1 -0
- package/uview-ui/components/u-column-notice/props.js +56 -0
- package/uview-ui/components/u-column-notice/style.css +48 -0
- package/uview-ui/components/u-column-notice/style.scss +35 -0
- package/uview-ui/components/u-column-notice/u-column-notice.vue +95 -0
- package/uview-ui/components/u-count-down/props.js +25 -0
- package/uview-ui/components/u-count-down/style.css +16 -0
- package/uview-ui/components/u-count-down/style.scss +12 -0
- package/uview-ui/components/u-count-down/u-count-down.vue +1 -0
- package/uview-ui/components/u-count-down/utils.js +62 -0
- package/uview-ui/components/u-count-to/props.js +60 -0
- package/uview-ui/components/u-count-to/style.css +17 -0
- package/uview-ui/components/u-count-to/style.scss +8 -0
- package/uview-ui/components/u-count-to/u-count-to.vue +179 -0
- package/uview-ui/components/u-datetime-picker/props.js +117 -0
- package/uview-ui/components/u-datetime-picker/style.css +11 -0
- package/uview-ui/components/u-datetime-picker/style.scss +1 -0
- package/uview-ui/components/u-datetime-picker/u-datetime-picker.vue +365 -0
- package/uview-ui/components/u-divider/props.js +45 -0
- package/uview-ui/components/u-divider/style.css +28 -0
- package/uview-ui/components/u-divider/style.scss +23 -0
- package/uview-ui/components/u-divider/u-divider.vue +73 -0
- package/uview-ui/components/u-dropdown/props.js +65 -0
- package/uview-ui/components/u-dropdown/style.css +32 -0
- package/uview-ui/components/u-dropdown/style.scss +18 -0
- package/uview-ui/components/u-dropdown/u-dropdown.vue +1 -0
- package/uview-ui/components/u-dropdown-item/props.js +36 -0
- package/uview-ui/components/u-dropdown-item/style.css +32 -0
- package/uview-ui/components/u-dropdown-item/style.scss +18 -0
- package/uview-ui/components/u-dropdown-item/u-dropdown-item.vue +1 -0
- package/uview-ui/components/u-empty/props.js +60 -0
- package/uview-ui/components/u-empty/style.css +38 -0
- package/uview-ui/components/u-empty/style.scss +23 -0
- package/uview-ui/components/u-empty/u-empty.vue +98 -0
- package/uview-ui/components/u-form/props.js +46 -0
- package/uview-ui/components/u-form/u-form.vue +1 -0
- package/uview-ui/components/u-form-item/props.js +49 -0
- package/uview-ui/components/u-form-item/style.css +95 -0
- package/uview-ui/components/u-form-item/style.scss +76 -0
- package/uview-ui/components/u-form-item/u-form-item.vue +159 -0
- package/uview-ui/components/u-gap/props.js +25 -0
- package/uview-ui/components/u-gap/style.css +11 -0
- package/uview-ui/components/u-gap/style.scss +1 -0
- package/uview-ui/components/u-gap/u-gap.vue +38 -0
- package/uview-ui/components/u-grid/props.js +20 -0
- package/uview-ui/components/u-grid/style.css +27 -0
- package/uview-ui/components/u-grid/style.scss +15 -0
- package/uview-ui/components/u-grid/u-grid.vue +79 -0
- package/uview-ui/components/u-grid-item/props.js +15 -0
- package/uview-ui/components/u-grid-item/style.css +41 -0
- package/uview-ui/components/u-grid-item/style.scss +44 -0
- package/uview-ui/components/u-grid-item/u-grid-item.vue +160 -0
- package/uview-ui/components/u-icon/icons.js +214 -0
- package/uview-ui/components/u-icon/props.js +90 -0
- package/uview-ui/components/u-icon/style.css +74 -0
- package/uview-ui/components/u-icon/style.scss +85 -0
- package/uview-ui/components/u-icon/u-icon.vue +132 -0
- package/uview-ui/components/u-image/props.js +85 -0
- package/uview-ui/components/u-image/style.css +35 -0
- package/uview-ui/components/u-image/style.scss +34 -0
- package/uview-ui/components/u-image/u-image.vue +181 -0
- package/uview-ui/components/u-index-anchor/props.js +30 -0
- package/uview-ui/components/u-index-anchor/style.css +29 -0
- package/uview-ui/components/u-index-anchor/style.scss +15 -0
- package/uview-ui/components/u-index-anchor/u-index-anchor.vue +78 -0
- package/uview-ui/components/u-index-item/props.js +3 -0
- package/uview-ui/components/u-index-item/style.css +11 -0
- package/uview-ui/components/u-index-item/style.scss +1 -0
- package/uview-ui/components/u-index-item/u-index-item.vue +81 -0
- package/uview-ui/components/u-index-list/props.js +30 -0
- package/uview-ui/components/u-index-list/style.css +61 -0
- package/uview-ui/components/u-index-list/style.scss +53 -0
- package/uview-ui/components/u-index-list/u-index-list.vue +367 -0
- package/uview-ui/components/u-input/props.js +188 -0
- package/uview-ui/components/u-input/style.css +75 -0
- package/uview-ui/components/u-input/style.scss +64 -0
- package/uview-ui/components/u-input/u-input.vue +260 -0
- package/uview-ui/components/u-keyboard/props.js +85 -0
- package/uview-ui/components/u-keyboard/style.css +37 -0
- package/uview-ui/components/u-keyboard/style.scss +31 -0
- package/uview-ui/components/u-keyboard/u-keyboard.vue +115 -0
- package/uview-ui/components/u-line/props.js +34 -0
- package/uview-ui/components/u-line/style.css +16 -0
- package/uview-ui/components/u-line/style.scss +7 -0
- package/uview-ui/components/u-line/u-line.vue +50 -0
- package/uview-ui/components/u-line-progress/props.js +29 -0
- package/uview-ui/components/u-line-progress/style.css +50 -0
- package/uview-ui/components/u-line-progress/style.scss +38 -0
- package/uview-ui/components/u-line-progress/u-line-progress.vue +99 -0
- package/uview-ui/components/u-link/props.js +40 -0
- package/uview-ui/components/u-link/style.css +22 -0
- package/uview-ui/components/u-link/style.scss +11 -0
- package/uview-ui/components/u-link/u-link.vue +68 -0
- package/uview-ui/components/u-list/props.js +76 -0
- package/uview-ui/components/u-list/style.css +17 -0
- package/uview-ui/components/u-list/style.scss +5 -0
- package/uview-ui/components/u-list/u-list.vue +152 -0
- package/uview-ui/components/u-list-item/props.js +10 -0
- package/uview-ui/components/u-list-item/style.css +11 -0
- package/uview-ui/components/u-list-item/style.scss +4 -0
- package/uview-ui/components/u-list-item/u-list-item.vue +105 -0
- package/uview-ui/components/u-loading-icon/props.js +60 -0
- package/uview-ui/components/u-loading-icon/style.css +148 -0
- package/uview-ui/components/u-loading-icon/style.scss +153 -0
- package/uview-ui/components/u-loading-icon/u-loading-icon.vue +1 -0
- package/uview-ui/components/u-loading-page/props.js +50 -0
- package/uview-ui/components/u-loading-page/style.css +44 -0
- package/uview-ui/components/u-loading-page/style.scss +37 -0
- package/uview-ui/components/u-loading-page/u-loading-page.vue +75 -0
- package/uview-ui/components/u-loadmore/props.js +95 -0
- package/uview-ui/components/u-loadmore/style.css +40 -0
- package/uview-ui/components/u-loadmore/style.scss +29 -0
- package/uview-ui/components/u-loadmore/u-loadmore.vue +101 -0
- package/uview-ui/components/u-modal/props.js +85 -0
- package/uview-ui/components/u-modal/style.css +70 -0
- package/uview-ui/components/u-modal/style.scss +65 -0
- package/uview-ui/components/u-modal/u-modal.vue +1 -0
- package/uview-ui/components/u-navbar/props.js +85 -0
- package/uview-ui/components/u-navbar/style.css +62 -0
- package/uview-ui/components/u-navbar/style.scss +58 -0
- package/uview-ui/components/u-navbar/u-navbar.vue +114 -0
- package/uview-ui/components/u-no-network/props.js +20 -0
- package/uview-ui/components/u-no-network/style.css +49 -0
- package/uview-ui/components/u-no-network/style.scss +36 -0
- package/uview-ui/components/u-no-network/u-no-network.vue +168 -0
- package/uview-ui/components/u-notice-bar/props.js +71 -0
- package/uview-ui/components/u-notice-bar/style.css +16 -0
- package/uview-ui/components/u-notice-bar/style.scss +7 -0
- package/uview-ui/components/u-notice-bar/u-notice-bar.vue +98 -0
- package/uview-ui/components/u-notify/props.js +50 -0
- package/uview-ui/components/u-notify/style.css +39 -0
- package/uview-ui/components/u-notify/style.scss +40 -0
- package/uview-ui/components/u-notify/u-notify.vue +166 -0
- package/uview-ui/components/u-number-box/props.js +110 -0
- package/uview-ui/components/u-number-box/style.css +67 -0
- package/uview-ui/components/u-number-box/style.scss +70 -0
- package/uview-ui/components/u-number-box/u-number-box.vue +320 -0
- package/uview-ui/components/u-number-keyboard/props.js +20 -0
- package/uview-ui/components/u-number-keyboard/style.css +56 -0
- package/uview-ui/components/u-number-keyboard/style.scss +62 -0
- package/uview-ui/components/u-number-keyboard/u-number-keyboard.vue +118 -0
- package/uview-ui/components/u-overlay/props.js +25 -0
- package/uview-ui/components/u-overlay/style.css +19 -0
- package/uview-ui/components/u-overlay/style.scss +14 -0
- package/uview-ui/components/u-overlay/u-overlay.vue +48 -0
- package/uview-ui/components/u-parse/node/node.vue +1 -0
- package/uview-ui/components/u-parse/parser.js +1075 -0
- package/uview-ui/components/u-parse/props.js +46 -0
- package/uview-ui/components/u-parse/u-parse.vue +363 -0
- package/uview-ui/components/u-picker/props.js +80 -0
- package/uview-ui/components/u-picker/style.css +57 -0
- package/uview-ui/components/u-picker/style.scss +45 -0
- package/uview-ui/components/u-picker/u-picker.vue +228 -0
- package/uview-ui/components/u-picker-column/props.js +3 -0
- package/uview-ui/components/u-picker-column/style.css +11 -0
- package/uview-ui/components/u-picker-column/style.scss +1 -0
- package/uview-ui/components/u-picker-column/u-picker-column.vue +25 -0
- package/uview-ui/components/u-popup/props.js +80 -0
- package/uview-ui/components/u-popup/style.css +70 -0
- package/uview-ui/components/u-popup/style.scss +75 -0
- package/uview-ui/components/u-popup/u-popup.vue +1 -0
- package/uview-ui/components/u-radio/props.js +65 -0
- package/uview-ui/components/u-radio/style.css +84 -0
- package/uview-ui/components/u-radio/style.scss +100 -0
- package/uview-ui/components/u-radio/u-radio.vue +234 -0
- package/uview-ui/components/u-radio-group/props.js +86 -0
- package/uview-ui/components/u-radio-group/style.css +26 -0
- package/uview-ui/components/u-radio-group/style.scss +13 -0
- package/uview-ui/components/u-radio-group/u-radio-group.vue +97 -0
- package/uview-ui/components/u-rate/props.js +70 -0
- package/uview-ui/components/u-rate/style.css +43 -0
- package/uview-ui/components/u-rate/style.scss +38 -0
- package/uview-ui/components/u-rate/u-rate.vue +231 -0
- package/uview-ui/components/u-read-more/props.js +62 -0
- package/uview-ui/components/u-read-more/style.css +33 -0
- package/uview-ui/components/u-read-more/style.scss +22 -0
- package/uview-ui/components/u-read-more/u-read-more.vue +119 -0
- package/uview-ui/components/u-row/props.js +20 -0
- package/uview-ui/components/u-row/style.css +17 -0
- package/uview-ui/components/u-row/style.scss +5 -0
- package/uview-ui/components/u-row/u-row.vue +82 -0
- package/uview-ui/components/u-row-notice/props.js +40 -0
- package/uview-ui/components/u-row-notice/style.css +59 -0
- package/uview-ui/components/u-row-notice/style.scss +48 -0
- package/uview-ui/components/u-row-notice/u-row-notice.vue +256 -0
- package/uview-ui/components/u-safe-bottom/props.js +3 -0
- package/uview-ui/components/u-safe-bottom/style.css +5 -0
- package/uview-ui/components/u-safe-bottom/style.scss +5 -0
- package/uview-ui/components/u-safe-bottom/u-safe-bottom.vue +1 -0
- package/uview-ui/components/u-scroll-list/nvue.js +3 -0
- package/uview-ui/components/u-scroll-list/other.js +0 -0
- package/uview-ui/components/u-scroll-list/props.js +35 -0
- package/uview-ui/components/u-scroll-list/scrollWxs.wxs +50 -0
- package/uview-ui/components/u-scroll-list/style.css +45 -0
- package/uview-ui/components/u-scroll-list/style.scss +32 -0
- package/uview-ui/components/u-scroll-list/u-scroll-list.vue +191 -0
- package/uview-ui/components/u-search/props.js +119 -0
- package/uview-ui/components/u-search/style.css +92 -0
- package/uview-ui/components/u-search/style.scss +98 -0
- package/uview-ui/components/u-search/u-search.vue +204 -0
- package/uview-ui/components/u-skeleton/props.js +60 -0
- package/uview-ui/components/u-skeleton/style.css +62 -0
- package/uview-ui/components/u-skeleton/style.scss +59 -0
- package/uview-ui/components/u-skeleton/u-skeleton.vue +188 -0
- package/uview-ui/components/u-slider/mpother.js +113 -0
- package/uview-ui/components/u-slider/mpwxs.js +42 -0
- package/uview-ui/components/u-slider/mpwxs.wxs +121 -0
- package/uview-ui/components/u-slider/nvue - /345/211/257/346/234/254.js" +175 -0
- package/uview-ui/components/u-slider/nvue.js +190 -0
- package/uview-ui/components/u-slider/props.js +55 -0
- package/uview-ui/components/u-slider/style.css +11 -0
- package/uview-ui/components/u-slider/style.scss +1 -0
- package/uview-ui/components/u-slider/u-slider.vue +1 -0
- package/uview-ui/components/u-status-bar/props.js +9 -0
- package/uview-ui/components/u-status-bar/style.css +5 -0
- package/uview-ui/components/u-status-bar/style.scss +6 -0
- package/uview-ui/components/u-status-bar/u-status-bar.vue +37 -0
- package/uview-ui/components/u-steps/props.js +40 -0
- package/uview-ui/components/u-steps/style.css +24 -0
- package/uview-ui/components/u-steps/style.scss +14 -0
- package/uview-ui/components/u-steps/u-steps.vue +63 -0
- package/uview-ui/components/u-steps-item/props.js +25 -0
- package/uview-ui/components/u-steps-item/style.css +119 -0
- package/uview-ui/components/u-steps-item/style.scss +111 -0
- package/uview-ui/components/u-steps-item/u-steps-item.vue +225 -0
- package/uview-ui/components/u-sticky/props.js +41 -0
- package/uview-ui/components/u-sticky/style.css +5 -0
- package/uview-ui/components/u-sticky/style.scss +6 -0
- package/uview-ui/components/u-sticky/u-sticky.vue +201 -0
- package/uview-ui/components/u-subsection/props.js +50 -0
- package/uview-ui/components/u-subsection/style.css +95 -0
- package/uview-ui/components/u-subsection/style.scss +90 -0
- package/uview-ui/components/u-subsection/u-subsection.vue +188 -0
- package/uview-ui/components/u-swipe-action/props.js +10 -0
- package/uview-ui/components/u-swipe-action/u-swipe-action.vue +65 -0
- package/uview-ui/components/u-swipe-action-item/index - backup.wxs +256 -0
- package/uview-ui/components/u-swipe-action-item/index.wxs +225 -0
- package/uview-ui/components/u-swipe-action-item/nvue - backup.js +264 -0
- package/uview-ui/components/u-swipe-action-item/nvue.js +172 -0
- package/uview-ui/components/u-swipe-action-item/props.js +42 -0
- package/uview-ui/components/u-swipe-action-item/style.css +61 -0
- package/uview-ui/components/u-swipe-action-item/style.scss +45 -0
- package/uview-ui/components/u-swipe-action-item/u-swipe-action-item.vue +147 -0
- package/uview-ui/components/u-swipe-action-item/wxs.js +15 -0
- package/uview-ui/components/u-swiper/props.js +126 -0
- package/uview-ui/components/u-swiper/style.css +58 -0
- package/uview-ui/components/u-swiper/style.scss +50 -0
- package/uview-ui/components/u-swiper/u-swiper.vue +196 -0
- package/uview-ui/components/u-swiper-indicator/props.js +30 -0
- package/uview-ui/components/u-swiper-indicator/style.css +37 -0
- package/uview-ui/components/u-swiper-indicator/style.scss +31 -0
- package/uview-ui/components/u-swiper-indicator/u-swiper-indicator.vue +70 -0
- package/uview-ui/components/u-switch/props.js +55 -0
- package/uview-ui/components/u-switch/style.css +58 -0
- package/uview-ui/components/u-switch/style.scss +48 -0
- package/uview-ui/components/u-switch/u-switch.vue +121 -0
- package/uview-ui/components/u-tabbar/props.js +45 -0
- package/uview-ui/components/u-tabbar/style.css +39 -0
- package/uview-ui/components/u-tabbar/style.scss +24 -0
- package/uview-ui/components/u-tabbar/u-tabbar.vue +115 -0
- package/uview-ui/components/u-tabbar-item/props.js +35 -0
- package/uview-ui/components/u-tabbar-item/style.css +39 -0
- package/uview-ui/components/u-tabbar-item/style.scss +28 -0
- package/uview-ui/components/u-tabbar-item/u-tabbar-item.vue +101 -0
- package/uview-ui/components/u-table/props.js +3 -0
- package/uview-ui/components/u-table/style.css +11 -0
- package/uview-ui/components/u-table/style.scss +1 -0
- package/uview-ui/components/u-table/u-table.vue +24 -0
- package/uview-ui/components/u-tabs/props.js +65 -0
- package/uview-ui/components/u-tabs/style.css +69 -0
- package/uview-ui/components/u-tabs/style.scss +58 -0
- package/uview-ui/components/u-tabs/u-tabs.vue +294 -0
- package/uview-ui/components/u-tabs-item/props.js +3 -0
- package/uview-ui/components/u-tabs-item/u-tabs-item.vue +26 -0
- package/uview-ui/components/u-tag/props.js +85 -0
- package/uview-ui/components/u-tag/style.css +180 -0
- package/uview-ui/components/u-tag/style.scss +206 -0
- package/uview-ui/components/u-tag/u-tag.vue +1 -0
- package/uview-ui/components/u-td/props.js +3 -0
- package/uview-ui/components/u-td/style.css +11 -0
- package/uview-ui/components/u-td/style.scss +1 -0
- package/uview-ui/components/u-td/u-td.vue +26 -0
- package/uview-ui/components/u-text/props.js +111 -0
- package/uview-ui/components/u-text/style.css +65 -0
- package/uview-ui/components/u-text/style.scss +62 -0
- package/uview-ui/components/u-text/u-text.vue +143 -0
- package/uview-ui/components/u-text/value.js +85 -0
- package/uview-ui/components/u-textarea/props.js +120 -0
- package/uview-ui/components/u-textarea/style.css +46 -0
- package/uview-ui/components/u-textarea/style.scss +39 -0
- package/uview-ui/components/u-textarea/u-textarea.vue +194 -0
- package/uview-ui/components/u-toast/style.css +78 -0
- package/uview-ui/components/u-toast/style.scss +108 -0
- package/uview-ui/components/u-toast/u-toast.vue +180 -0
- package/uview-ui/components/u-toolbar/props.js +35 -0
- package/uview-ui/components/u-toolbar/style.css +37 -0
- package/uview-ui/components/u-toolbar/style.scss +32 -0
- package/uview-ui/components/u-toolbar/u-toolbar.vue +62 -0
- package/uview-ui/components/u-tooltip/clipboard.min.js +58 -0
- package/uview-ui/components/u-tooltip/props.js +60 -0
- package/uview-ui/components/u-tooltip/style.css +75 -0
- package/uview-ui/components/u-tooltip/style.scss +63 -0
- package/uview-ui/components/u-tooltip/u-tooltip.vue +278 -0
- package/uview-ui/components/u-tr/props.js +3 -0
- package/uview-ui/components/u-tr/style.css +11 -0
- package/uview-ui/components/u-tr/style.scss +1 -0
- package/uview-ui/components/u-tr/u-tr.vue +26 -0
- package/uview-ui/components/u-transition/nvue.ani-map.js +1 -0
- package/uview-ui/components/u-transition/props.js +25 -0
- package/uview-ui/components/u-transition/style.css +109 -0
- package/uview-ui/components/u-transition/style.scss +9 -0
- package/uview-ui/components/u-transition/transition.js +157 -0
- package/uview-ui/components/u-transition/u-transition.vue +85 -0
- package/uview-ui/components/u-transition/vue.ani-style.scss +113 -0
- package/uview-ui/components/u-upload/mixin.js +21 -0
- package/uview-ui/components/u-upload/props.js +125 -0
- package/uview-ui/components/u-upload/style.css +164 -0
- package/uview-ui/components/u-upload/style.scss +200 -0
- package/uview-ui/components/u-upload/u-upload.vue +312 -0
- package/uview-ui/components/u-upload/utils.js +151 -0
- package/uview-ui/components/uview-ui/uview-ui.vue +8 -0
- package/uview-ui/index.css +352 -0
- package/uview-ui/index.js +79 -0
- package/uview-ui/index.scss +23 -0
- package/uview-ui/libs/config/color.js +17 -0
- package/uview-ui/libs/config/config.js +34 -0
- package/uview-ui/libs/config/props/actionSheet.js +25 -0
- package/uview-ui/libs/config/props/album.js +25 -0
- package/uview-ui/libs/config/props/alert.js +22 -0
- package/uview-ui/libs/config/props/avatar.js +28 -0
- package/uview-ui/libs/config/props/avatarGroup.js +23 -0
- package/uview-ui/libs/config/props/backtop.js +27 -0
- package/uview-ui/libs/config/props/badge.js +27 -0
- package/uview-ui/libs/config/props/button.js +42 -0
- package/uview-ui/libs/config/props/calendar.js +42 -0
- package/uview-ui/libs/config/props/carKeyboard.js +15 -0
- package/uview-ui/libs/config/props/cell.js +35 -0
- package/uview-ui/libs/config/props/cellGroup.js +17 -0
- package/uview-ui/libs/config/props/checkbox.js +27 -0
- package/uview-ui/libs/config/props/checkboxGroup.js +29 -0
- package/uview-ui/libs/config/props/circleProgress.js +15 -0
- package/uview-ui/libs/config/props/code.js +21 -0
- package/uview-ui/libs/config/props/codeInput.js +29 -0
- package/uview-ui/libs/config/props/col.js +19 -0
- package/uview-ui/libs/config/props/collapse.js +17 -0
- package/uview-ui/libs/config/props/collapseItem.js +25 -0
- package/uview-ui/libs/config/props/columnNotice.js +24 -0
- package/uview-ui/libs/config/props/countDown.js +18 -0
- package/uview-ui/libs/config/props/countTo.js +25 -0
- package/uview-ui/libs/config/props/datetimePicker.js +36 -0
- package/uview-ui/libs/config/props/divider.js +23 -0
- package/uview-ui/libs/config/props/empty.js +26 -0
- package/uview-ui/libs/config/props/form.js +22 -0
- package/uview-ui/libs/config/props/formItem.js +23 -0
- package/uview-ui/libs/config/props/gap.js +19 -0
- package/uview-ui/libs/config/props/grid.js +17 -0
- package/uview-ui/libs/config/props/gridItem.js +16 -0
- package/uview-ui/libs/config/props/icon.js +36 -0
- package/uview-ui/libs/config/props/image.js +30 -0
- package/uview-ui/libs/config/props/indexAnchor.js +19 -0
- package/uview-ui/libs/config/props/indexList.js +19 -0
- package/uview-ui/libs/config/props/input.js +48 -0
- package/uview-ui/libs/config/props/keyboard.js +30 -0
- package/uview-ui/libs/config/props/line.js +20 -0
- package/uview-ui/libs/config/props/lineProgress.js +19 -0
- package/uview-ui/libs/config/props/link.js +26 -0
- package/uview-ui/libs/config/props/list.js +28 -0
- package/uview-ui/libs/config/props/listItem.js +15 -0
- package/uview-ui/libs/config/props/loadingIcon.js +30 -0
- package/uview-ui/libs/config/props/loadingPage.js +23 -0
- package/uview-ui/libs/config/props/loadmore.js +32 -0
- package/uview-ui/libs/config/props/modal.js +30 -0
- package/uview-ui/libs/config/props/navbar.js +32 -0
- package/uview-ui/libs/config/props/noNetwork.js +18 -0
- package/uview-ui/libs/config/props/noticeBar.js +27 -0
- package/uview-ui/libs/config/props/notify.js +22 -0
- package/uview-ui/libs/config/props/numberBox.js +35 -0
- package/uview-ui/libs/config/props/numberKeyboard.js +17 -0
- package/uview-ui/libs/config/props/overlay.js +18 -0
- package/uview-ui/libs/config/props/parse.js +22 -0
- package/uview-ui/libs/config/props/picker.js +29 -0
- package/uview-ui/libs/config/props/popup.js +29 -0
- package/uview-ui/libs/config/props/radio.js +27 -0
- package/uview-ui/libs/config/props/radioGroup.js +30 -0
- package/uview-ui/libs/config/props/rate.js +26 -0
- package/uview-ui/libs/config/props/readMore.js +22 -0
- package/uview-ui/libs/config/props/row.js +17 -0
- package/uview-ui/libs/config/props/rowNotice.js +21 -0
- package/uview-ui/libs/config/props/scrollList.js +20 -0
- package/uview-ui/libs/config/props/search.js +37 -0
- package/uview-ui/libs/config/props/section.js +24 -0
- package/uview-ui/libs/config/props/skeleton.js +25 -0
- package/uview-ui/libs/config/props/slider.js +25 -0
- package/uview-ui/libs/config/props/statusBar.js +15 -0
- package/uview-ui/libs/config/props/steps.js +21 -0
- package/uview-ui/libs/config/props/stepsItem.js +18 -0
- package/uview-ui/libs/config/props/sticky.js +20 -0
- package/uview-ui/libs/config/props/subsection.js +23 -0
- package/uview-ui/libs/config/props/swipeAction.js +15 -0
- package/uview-ui/libs/config/props/swipeActionItem.js +21 -0
- package/uview-ui/libs/config/props/swiper.js +39 -0
- package/uview-ui/libs/config/props/swipterIndicator.js +19 -0
- package/uview-ui/libs/config/props/switch.js +24 -0
- package/uview-ui/libs/config/props/tabbar.js +22 -0
- package/uview-ui/libs/config/props/tabbarItem.js +20 -0
- package/uview-ui/libs/config/props/tabs.js +32 -0
- package/uview-ui/libs/config/props/tag.js +29 -0
- package/uview-ui/libs/config/props/text.js +38 -0
- package/uview-ui/libs/config/props/textarea.js +36 -0
- package/uview-ui/libs/config/props/toast.js +30 -0
- package/uview-ui/libs/config/props/toolbar.js +21 -0
- package/uview-ui/libs/config/props/tooltip.js +25 -0
- package/uview-ui/libs/config/props/transition.js +18 -0
- package/uview-ui/libs/config/props/upload.js +36 -0
- package/uview-ui/libs/config/props.js +190 -0
- package/uview-ui/libs/config/zIndex.js +20 -0
- package/uview-ui/libs/css/color-libcss.scss +117 -0
- package/uview-ui/libs/css/color.scss +155 -0
- package/uview-ui/libs/css/common-libcss.scss +132 -0
- package/uview-ui/libs/css/common.scss +97 -0
- package/uview-ui/libs/css/components-libcss.scss +11 -0
- package/uview-ui/libs/css/components.scss +15 -0
- package/uview-ui/libs/css/flex-libcss.scss +169 -0
- package/uview-ui/libs/css/flex.scss +257 -0
- package/uview-ui/libs/css/h5-libcss.scss +0 -0
- package/uview-ui/libs/css/h5.scss +0 -0
- package/uview-ui/libs/css/mixin-libcss.scss +0 -0
- package/uview-ui/libs/css/mixin.scss +8 -0
- package/uview-ui/libs/css/mp-libcss.scss +0 -0
- package/uview-ui/libs/css/mp.scss +0 -0
- package/uview-ui/libs/css/nvue-libcss.scss +0 -0
- package/uview-ui/libs/css/nvue.scss +0 -0
- package/uview-ui/libs/css/vue-libcss.scss +35 -0
- package/uview-ui/libs/css/vue.scss +27 -0
- package/uview-ui/libs/function/colorGradient.js +134 -0
- package/uview-ui/libs/function/debounce.js +29 -0
- package/uview-ui/libs/function/digit.js +167 -0
- package/uview-ui/libs/function/index.js +731 -0
- package/uview-ui/libs/function/platform.js +75 -0
- package/uview-ui/libs/function/test.js +288 -0
- package/uview-ui/libs/function/throttle.js +30 -0
- package/uview-ui/libs/luch-request/adapters/index.js +97 -0
- package/uview-ui/libs/luch-request/core/InterceptorManager.js +50 -0
- package/uview-ui/libs/luch-request/core/Request.js +198 -0
- package/uview-ui/libs/luch-request/core/buildFullPath.js +20 -0
- package/uview-ui/libs/luch-request/core/defaults.js +29 -0
- package/uview-ui/libs/luch-request/core/dispatchRequest.js +3 -0
- package/uview-ui/libs/luch-request/core/mergeConfig.js +103 -0
- package/uview-ui/libs/luch-request/core/settle.js +16 -0
- package/uview-ui/libs/luch-request/helpers/buildURL.js +69 -0
- package/uview-ui/libs/luch-request/helpers/combineURLs.js +14 -0
- package/uview-ui/libs/luch-request/helpers/isAbsoluteURL.js +14 -0
- package/uview-ui/libs/luch-request/index.d.ts +116 -0
- package/uview-ui/libs/luch-request/index.js +3 -0
- package/uview-ui/libs/luch-request/utils/clone.js +264 -0
- package/uview-ui/libs/luch-request/utils.js +131 -0
- package/uview-ui/libs/mixin/button.js +13 -0
- package/uview-ui/libs/mixin/mixin.js +164 -0
- package/uview-ui/libs/mixin/mpMixin.js +8 -0
- package/uview-ui/libs/mixin/mpShare.js +13 -0
- package/uview-ui/libs/mixin/openType.js +25 -0
- package/uview-ui/libs/mixin/style.js +252 -0
- package/uview-ui/libs/mixin/touch.js +61 -0
- package/uview-ui/libs/util/async-validator.js +1343 -0
- package/uview-ui/libs/util/calendar.js +546 -0
- package/uview-ui/libs/util/dayjs.js +308 -0
- package/uview-ui/libs/util/emitter.js +51 -0
- package/uview-ui/libs/util/route.js +124 -0
- package/uview-ui/package.json +87 -0
- package/uview-ui/theme.css +29 -0
- package/uview-ui/theme.scss +44 -0
- package/ui-cv/cv-banner/cv-banner.vue +0 -131
- package/ui-cv/cv-banner-card/cv-banner-card.vue +0 -145
- package/ui-cv/cv-base-audio/cv-base-audio.vue +0 -279
- package/ui-cv/cv-block/cv-block.vue +0 -91
- package/ui-cv/cv-box/cv-box.vue +0 -73
- package/ui-cv/cv-btn-base/cv-btn-base.vue +0 -70
- package/ui-cv/cv-cell-row/cv-cell-row.vue +0 -220
- package/ui-cv/cv-checkbox-group/cv-checkbox-group.vue +0 -257
- package/ui-cv/cv-checkbox-opt-base/cv-checkbox-opt-base.vue +0 -97
- package/ui-cv/cv-checkbox-opt-tag/cv-checkbox-opt-tag.vue +0 -111
- package/ui-cv/cv-code-sms/cv-code-sms.vue +0 -229
- package/ui-cv/cv-date-base/cv-date-base.vue +0 -105
- package/ui-cv/cv-datetime-base/cv-datetime-base.vue +0 -152
- package/ui-cv/cv-datetime-linkage/cv-datetime-linkage.vue +0 -489
- package/ui-cv/cv-dialog-bottom/cv-dialog-bottom.vue +0 -172
- package/ui-cv/cv-dialog-full/cv-dialog-full.vue +0 -159
- package/ui-cv/cv-dialog-loading/cv-dialog-loading.vue +0 -103
- package/ui-cv/cv-dialog-share/cv-dialog-share.vue +0 -157
- package/ui-cv/cv-draw-barcode/cv-draw-barcode.vue +0 -209
- package/ui-cv/cv-draw-posters/cv-draw-posters.vue +0 -492
- package/ui-cv/cv-draw-progress/cv-draw-progress.vue +0 -141
- package/ui-cv/cv-draw-qrcode/cv-draw-qrcode.vue +0 -305
- package/ui-cv/cv-editor-parse/cv-editor-parse.vue +0 -112
- package/ui-cv/cv-editor-quill/cv-editor-quill.vue +0 -485
- package/ui-cv/cv-filter-hm/cv-filter-hm.vue +0 -867
- package/ui-cv/cv-form-base/cv-form-base.vue +0 -469
- package/ui-cv/cv-form-group/cv-form-group.vue +0 -123
- package/ui-cv/cv-form-item/cv-form-item.vue +0 -558
- package/ui-cv/cv-geo-local/cv-geo-local.vue +0 -264
- package/ui-cv/cv-geo-region/cv-geo-region.vue +0 -243
- package/ui-cv/cv-grid-item/cv-grid-item.vue +0 -213
- package/ui-cv/cv-icons/cv-icons.vue +0 -133
- package/ui-cv/cv-input-digit/cv-input-digit.vue +0 -112
- package/ui-cv/cv-input-idcard/cv-input-idcard.vue +0 -107
- package/ui-cv/cv-input-number/cv-input-number.vue +0 -112
- package/ui-cv/cv-input-password/cv-input-password.vue +0 -125
- package/ui-cv/cv-input-text/cv-input-text.vue +0 -118
- package/ui-cv/cv-layout-topbar/cv-layout-topbar.vue +0 -238
- package/ui-cv/cv-link/cv-link.vue +0 -58
- package/ui-cv/cv-lists-base/cv-lists-base.vue +0 -650
- package/ui-cv/cv-lists-swiper/cv-lists-swipe2r.vue +0 -197
- package/ui-cv/cv-lists-swiper/cv-lists-swiper.vue +0 -517
- package/ui-cv/cv-load-empty/cv-load-empty.vue +0 -57
- package/ui-cv/cv-load-more/cv-load-more.vue +0 -407
- package/ui-cv/cv-load-more2/cv-load-more2.vue +0 -44
- package/ui-cv/cv-markdown-show/cv-markdown-show.vue +0 -109
- package/ui-cv/cv-message/cv-message.vue +0 -37
- package/ui-cv/cv-picker1/cv-picker1.vue +0 -205
- package/ui-cv/cv-picker2/cv-picker2.vue +0 -252
- package/ui-cv/cv-picker3/cv-picker3.vue +0 -313
- package/ui-cv/cv-radio-group/cv-radio-group.vue +0 -196
- package/ui-cv/cv-radio-opt-base/cv-radio-opt-base.vue +0 -91
- package/ui-cv/cv-radio-opt-tag/cv-radio-opt-tag.vue +0 -107
- package/ui-cv/cv-rate/cv-rate.vue +0 -182
- package/ui-cv/cv-search/cv-search.vue +0 -186
- package/ui-cv/cv-skeleton/cv-skeleton.vue +0 -171
- package/ui-cv/cv-skeleton/cv-skeleton2.vue +0 -210
- package/ui-cv/cv-skeleton-group/cv-skeleton-group.vue +0 -21
- package/ui-cv/cv-specs/cv-specs.vue +0 -320
- package/ui-cv/cv-switch/cv-switch.vue +0 -111
- package/ui-cv/cv-tab-lists/cv-tab-lists.vue +0 -708
- package/ui-cv/cv-tabs-box/cv-tabs-box.vue +0 -97
- package/ui-cv/cv-tabs-item/cv-tabs-item.vue +0 -82
- package/ui-cv/cv-textarea/cv-textarea.vue +0 -141
- package/ui-cv/cv-time-base/cv-time-base.vue +0 -101
- package/ui-cv/cv-treaty/cv-treaty.vue +0 -93
- package/ui-cv/cv-upload-avatar/cv-upload-avatar.vue +0 -142
- package/ui-cv/cv-upload-image/cv-upload-image.vue +0 -478
- package/ui-uni/README.md +0 -1
- package/ui-uni/amap-wx/js/util.js +0 -181
- package/ui-uni/api-set-tabbar.nvue +0 -156
- package/ui-uni/marked/index.js +0 -1
- package/ui-uni/mpvue-citypicker/city-data/area.js +0 -12542
- package/ui-uni/mpvue-citypicker/city-data/city.js +0 -1503
- package/ui-uni/mpvue-citypicker/city-data/province.js +0 -139
- package/ui-uni/mpvue-citypicker/mpvueCityPicker.vue +0 -230
- package/ui-uni/mpvue-echarts/src/echarts.vue +0 -123
- package/ui-uni/mpvue-picker/mpvuePicker.vue +0 -483
- package/ui-uni/mpvueGestureLock/gestureLock.js +0 -175
- package/ui-uni/mpvueGestureLock/index.vue +0 -138
- package/ui-uni/page-foot/page-foot.vue +0 -38
- package/ui-uni/page-head/page-head.vue +0 -16
- package/ui-uni/product.vue +0 -66
- package/ui-uni/tab-nvue/mediaList.vue +0 -175
- package/ui-uni/u-link/u-link.vue +0 -59
- package/ui-uni/uParse/src/components/wxParseAudio.vue +0 -26
- package/ui-uni/uParse/src/components/wxParseImg.vue +0 -94
- package/ui-uni/uParse/src/components/wxParseTable.vue +0 -55
- package/ui-uni/uParse/src/components/wxParseTemplate0.vue +0 -103
- package/ui-uni/uParse/src/components/wxParseTemplate1.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate10.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate11.vue +0 -86
- package/ui-uni/uParse/src/components/wxParseTemplate2.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate3.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate4.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate5.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate6.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate7.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate8.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate9.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseVideo.vue +0 -15
- package/ui-uni/uParse/src/editor.css +0 -495
- package/ui-uni/uParse/src/libs/html2json.js +0 -261
- package/ui-uni/uParse/src/libs/htmlparser.js +0 -156
- package/ui-uni/uParse/src/libs/wxDiscode.js +0 -195
- package/ui-uni/uParse/src/wxParse.vue +0 -206
- package/ui-uni/uni-badge/uni-badge.vue +0 -250
- package/ui-uni/uni-calendar/uni-calendar-item.vue +0 -171
- package/ui-uni/uni-calendar/uni-calendar.vue +0 -504
- package/ui-uni/uni-calendar/util.js +0 -352
- package/ui-uni/uni-card/uni-card.vue +0 -420
- package/ui-uni/uni-col/uni-col.vue +0 -2968
- package/ui-uni/uni-collapse/uni-collapse.vue +0 -146
- package/ui-uni/uni-collapse-item/uni-collapse-item.vue +0 -378
- package/ui-uni/uni-combox/uni-combox.vue +0 -237
- package/ui-uni/uni-countdown/uni-countdown.vue +0 -234
- package/ui-uni/uni-data-checkbox/uni-data-checkbox.vue +0 -792
- package/ui-uni/uni-data-indexed-list/clientdb.js +0 -362
- package/ui-uni/uni-data-indexed-list/uni-data-indexed-list-item.vue +0 -142
- package/ui-uni/uni-data-indexed-list/uni-data-indexed-list.vue +0 -364
- package/ui-uni/uni-data-picker/uni-data-picker.vue +0 -468
- package/ui-uni/uni-data-pickerview/uni-data-picker.js +0 -545
- package/ui-uni/uni-data-pickerview/uni-data-pickerview.vue +0 -298
- package/ui-uni/uni-dateformat/uni-dateformat.vue +0 -88
- package/ui-uni/uni-datetime-picker/calendar-item.vue +0 -171
- package/ui-uni/uni-datetime-picker/calendar.js +0 -546
- package/ui-uni/uni-datetime-picker/calendar.vue +0 -747
- package/ui-uni/uni-datetime-picker/keypress.js +0 -45
- package/ui-uni/uni-datetime-picker/time-picker.vue +0 -899
- package/ui-uni/uni-datetime-picker/uni-datetime-picker.vue +0 -874
- package/ui-uni/uni-datetime-picker/util.js +0 -408
- package/ui-uni/uni-drawer/keypress.js +0 -45
- package/ui-uni/uni-drawer/uni-drawer.vue +0 -185
- package/ui-uni/uni-easyinput/uni-easyinput.vue +0 -438
- package/ui-uni/uni-fab/uni-fab.vue +0 -443
- package/ui-uni/uni-fab/uni-fab.vue.bak +0 -382
- package/ui-uni/uni-fav/uni-fav.vue +0 -136
- package/ui-uni/uni-file-picker/choose-and-upload-file.js +0 -224
- package/ui-uni/uni-file-picker/uni-file-picker.vue +0 -614
- package/ui-uni/uni-file-picker/upload-file.vue +0 -309
- package/ui-uni/uni-file-picker/upload-image.vue +0 -288
- package/ui-uni/uni-forms/uni-forms.vue +0 -467
- package/ui-uni/uni-forms-item/uni-forms-item.vue +0 -500
- package/ui-uni/uni-goods-nav/uni-goods-nav.vue +0 -220
- package/ui-uni/uni-grid/uni-grid.vue +0 -141
- package/ui-uni/uni-grid-item/uni-grid-item.vue +0 -123
- package/ui-uni/uni-group/uni-group.vue +0 -123
- package/ui-uni/uni-icons/icons.js +0 -132
- package/ui-uni/uni-icons/uni-icons.vue +0 -72
- package/ui-uni/uni-icons/uni.ttf +0 -0
- package/ui-uni/uni-indexed-list/uni-indexed-list-item.vue +0 -142
- package/ui-uni/uni-indexed-list/uni-indexed-list.vue +0 -357
- package/ui-uni/uni-link/uni-link.vue +0 -117
- package/ui-uni/uni-list/uni-list.vue +0 -107
- package/ui-uni/uni-list/uni-refresh.vue +0 -65
- package/ui-uni/uni-list/uni-refresh.wxs +0 -87
- package/ui-uni/uni-list-ad/uni-list-ad.vue +0 -106
- package/ui-uni/uni-list-chat/uni-list-chat.scss +0 -58
- package/ui-uni/uni-list-chat/uni-list-chat.vue +0 -498
- package/ui-uni/uni-list-item/uni-list-item.vue +0 -428
- package/ui-uni/uni-load-more/uni-load-more.vue +0 -366
- package/ui-uni/uni-nav-bar/uni-nav-bar.vue +0 -244
- package/ui-uni/uni-nav-bar/uni-status-bar.vue +0 -25
- package/ui-uni/uni-notice-bar/uni-notice-bar.vue +0 -394
- package/ui-uni/uni-number-box/uni-number-box.vue +0 -224
- package/ui-uni/uni-pagination/uni-pagination.vue +0 -376
- package/ui-uni/uni-popup/keypress.js +0 -45
- package/ui-uni/uni-popup/popup.js +0 -23
- package/ui-uni/uni-popup/uni-popup.vue +0 -429
- package/ui-uni/uni-popup-dialog/keypress.js +0 -45
- package/ui-uni/uni-popup-dialog/uni-popup-dialog.vue +0 -243
- package/ui-uni/uni-popup-message/uni-popup-message.vue +0 -143
- package/ui-uni/uni-popup-share/uni-popup-share.vue +0 -175
- package/ui-uni/uni-rate/uni-rate.vue +0 -357
- package/ui-uni/uni-row/uni-row.vue +0 -155
- package/ui-uni/uni-search-bar/uni-search-bar.vue +0 -262
- package/ui-uni/uni-section/uni-section.vue +0 -125
- package/ui-uni/uni-segmented-control/uni-segmented-control.vue +0 -137
- package/ui-uni/uni-status-bar/uni-status-bar.vue +0 -23
- package/ui-uni/uni-steps/uni-steps.vue +0 -250
- package/ui-uni/uni-swipe-action/uni-swipe-action.vue +0 -38
- package/ui-uni/uni-swipe-action-item/bindingx.js +0 -293
- package/ui-uni/uni-swipe-action-item/index.wxs +0 -323
- package/ui-uni/uni-swipe-action-item/isPC.js +0 -12
- package/ui-uni/uni-swipe-action-item/mpalipay.js +0 -208
- package/ui-uni/uni-swipe-action-item/mpother.js +0 -253
- package/ui-uni/uni-swipe-action-item/mpwxs.js +0 -123
- package/ui-uni/uni-swipe-action-item/uni-swipe-action-item.vue +0 -316
- package/ui-uni/uni-swiper-dot/uni-swiper-dot.vue +0 -205
- package/ui-uni/uni-table/uni-table.vue +0 -455
- package/ui-uni/uni-tag/uni-tag.vue +0 -283
- package/ui-uni/uni-tbody/uni-tbody.vue +0 -30
- package/ui-uni/uni-td/uni-td.vue +0 -88
- package/ui-uni/uni-test/uni-test.vue +0 -17
- package/ui-uni/uni-th/filter-dropdown.vue +0 -509
- package/ui-uni/uni-th/uni-th.vue +0 -259
- package/ui-uni/uni-thead/uni-thead.vue +0 -114
- package/ui-uni/uni-title/uni-title.vue +0 -171
- package/ui-uni/uni-tr/table-checkbox.vue +0 -172
- package/ui-uni/uni-tr/uni-tr.vue +0 -156
- package/ui-uni/uni-transition/createAnimation.js +0 -128
- package/ui-uni/uni-transition/uni-transition.vue +0 -287
- /package/{ui-uni → other}/mpvue-echarts/src/wx-canvas.js +0 -0
- /package/{ui-uni → other}/u-charts/u-charts.js +0 -0
- /package/{ui-uni/uParse/src → other/uParse}/wxParse.css +0 -0
- /package/{ui-uni/amap-wx → plugins/map}/lib/amap-wx.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcode.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/Barcode.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128A.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128B.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128C.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128_AUTO.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/auto.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/constants.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE39/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN13.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN2.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN5.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN8.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/UPC.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/UPCE.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/constants.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/encoder.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/GenericBarcode/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/ITF/ITF.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/ITF/ITF14.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/ITF/constants.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/ITF/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI10.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI1010.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI11.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI1110.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/checksums.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/codabar/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/common.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/index.tmp.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/pharmacode/index.js +0 -0
- /package/ui-cv/{cv-draw-qrcode → components/cv-draw-qrcode}/qrcode.js +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseAudio.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseImg.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTable.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate0.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate1.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate10.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate11.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate2.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate3.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate4.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate5.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate6.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate7.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate8.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate9.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseVideo.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/libs/html2json.js +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/libs/htmlparser.js +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/libs/wxDiscode.js +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/readme.md +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/u-parse.css +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/u-parse.vue +0 -0
- /package/ui-cv/{cv-editor-quill → components/cv-editor-quill}/compressImage.vue +0 -0
- /package/ui-cv/{cv-editor-quill → components/cv-editor-quill}/editor-icon.css +0 -0
- /package/ui-cv/{cv-editor-quill → components/cv-editor-quill}/editor-icon.ttf +0 -0
- /package/ui-cv/{cv-editor-quill → components/cv-editor-quill}/index.js +0 -0
- /package/ui-cv/{cv-form-base → components/cv-form-base}/validate.js +0 -0
- /package/ui-cv/{cv-form-group → components/cv-form-group}/cv-form-group2.vue +0 -0
- /package/ui-cv/{cv-form-item → components/cv-form-item}/cv-form-item2.vue +0 -0
- /package/ui-cv/{cv-grid-group → components/cv-grid-group}/cv-grid-group.vue +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-action-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-action.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-action.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-arrow-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-arrow.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-arrow.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-base-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-base.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-base.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-default-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-default.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-default.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-mall-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-mall.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-mall.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-media-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-media.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-media.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-order-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-order.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-order.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-people-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-people.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-people.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-status-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-status.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-status.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-wallet-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-wallet.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-wallet.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/default-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-action.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-arrow.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-base.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-mall.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-media.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-order.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-people.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-status.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-wallet.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons.js +0 -0
- /package/ui-cv/{cv-input-text → components/cv-input-text}/input.css +0 -0
- /package/ui-cv/{cv-load-more → components/cv-load-more}/config.json +0 -0
- /package/ui-cv/{cv-load-more2 → components/cv-load-more2}/load-more.vue +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/11.8.0-es/highlight.min.js +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/highlight/atom-one-dark.css +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/highlight/atom-one-light.css +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/highlight/github-dark.min.css +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/html-parser.js +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/markdown-it.min.js +0 -0
- /package/{ui-uni/marked → ui-cv/components/cv-markdown-show}/lib/marked.js +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/markdown.css +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/package.json +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/readme.md +0 -0
- /package/ui-cv/{cv-rate → components/cv-rate}/uni-rate.vue +0 -0
- /package/{ui-uni → uni-ui/lib}/uni-calendar/calendar.js +0 -0
- /package/{ui-uni → uni-ui/lib}/uni-data-picker/keypress.js +0 -0
- /package/{ui-uni → uni-ui/lib}/uni-dateformat/date-format.js +0 -0
- /package/{ui-uni → uni-ui/lib}/uni-easyinput/common.js +0 -0
- /package/{ui-uni → uni-ui/lib}/uni-file-picker/utils.js +0 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="cv-empty-box">
|
|
3
|
+
<image class="cv-empty-image" :src="localImg" mode="aspectFit"></image>
|
|
4
|
+
<view class="cv-empty-text">{{ localDesc }}</view>
|
|
5
|
+
</view>
|
|
6
|
+
</template>
|
|
7
|
+
<script>
|
|
8
|
+
import mpMixin from '../../libs/mixin/mpMixin.js';
|
|
9
|
+
import mixin from '../../libs/mixin/mixin.js';
|
|
10
|
+
export default {
|
|
11
|
+
mixins: [mpMixin, mixin],
|
|
12
|
+
name: 'cvLoadEmpty',
|
|
13
|
+
props: ['src', 'des', 'show'],
|
|
14
|
+
watch: {
|
|
15
|
+
src(newVal) {
|
|
16
|
+
this.localImg = newVal;
|
|
17
|
+
},
|
|
18
|
+
des(newVal) {
|
|
19
|
+
this.localDesc = newVal;
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
data() {
|
|
23
|
+
return {
|
|
24
|
+
localDesc: '暂无数据',
|
|
25
|
+
localImg:
|
|
26
|
+
'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMMAAACtCAYAAAANgcuAAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Rjk5MjI3NjM1NUJGMTFFOThGRTZGQUIxMjY1ODk1QTkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Rjk5MjI3NjQ1NUJGMTFFOThGRTZGQUIxMjY1ODk1QTkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGOTkyMjc2MTU1QkYxMUU5OEZFNkZBQjEyNjU4OTVBOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGOTkyMjc2MjU1QkYxMUU5OEZFNkZBQjEyNjU4OTVBOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PvBPHdgAAEY/SURBVHja7H3bkiTH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'
|
|
27
|
+
};
|
|
28
|
+
},
|
|
29
|
+
created() {
|
|
30
|
+
this.localDesc = this.des || this.localDesc;
|
|
31
|
+
this.localImg = this.src || this.localImg;
|
|
32
|
+
},
|
|
33
|
+
methods: {}
|
|
34
|
+
};
|
|
35
|
+
</script>
|
|
36
|
+
<style>
|
|
37
|
+
.cv-empty-box {
|
|
38
|
+
display: flex;
|
|
39
|
+
align-items: center;
|
|
40
|
+
justify-content: center;
|
|
41
|
+
flex-direction: column;
|
|
42
|
+
/* position: fixed; */
|
|
43
|
+
left: 0;
|
|
44
|
+
/* top: 100rpx; */
|
|
45
|
+
padding-top: 100px;
|
|
46
|
+
right: 0;
|
|
47
|
+
bottom: 0;
|
|
48
|
+
/* background: #FFFFFF; */
|
|
49
|
+
padding-bottom: 60px;
|
|
50
|
+
}
|
|
51
|
+
.cv-empty-image {
|
|
52
|
+
width: 100px;
|
|
53
|
+
height: 100px;
|
|
54
|
+
}
|
|
55
|
+
.cv-empty-text {
|
|
56
|
+
color: #999999;
|
|
57
|
+
margin-top: 8px;
|
|
58
|
+
font-size: 13px;
|
|
59
|
+
}
|
|
60
|
+
</style>
|
|
@@ -0,0 +1,410 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="cv-load-more" @click="onClick">
|
|
3
|
+
<!-- #ifdef APP-NVUE -->
|
|
4
|
+
<loading-indicator
|
|
5
|
+
v-if="!webviewHide && status === 'loading' && showIcon"
|
|
6
|
+
:style="{ color: color, width: iconSize + 'px', height: iconSize + 'px' }"
|
|
7
|
+
:animating="true"
|
|
8
|
+
class="cv-load-more__img cv-load-more__img--nvue"
|
|
9
|
+
></loading-indicator>
|
|
10
|
+
<!-- #endif -->
|
|
11
|
+
<!-- #ifdef H5 -->
|
|
12
|
+
<svg
|
|
13
|
+
width="24"
|
|
14
|
+
height="24"
|
|
15
|
+
viewBox="25 25 50 50"
|
|
16
|
+
v-if="
|
|
17
|
+
!webviewHide &&
|
|
18
|
+
(iconType === 'circle' || (iconType === 'auto' && platform === 'android')) &&
|
|
19
|
+
status === 'loading' &&
|
|
20
|
+
showIcon
|
|
21
|
+
"
|
|
22
|
+
:style="{ width: iconSize + 'px', height: iconSize + 'px' }"
|
|
23
|
+
class="cv-load-more__img cv-load-more__img--android-H5"
|
|
24
|
+
>
|
|
25
|
+
<circle cx="50" cy="50" r="20" fill="none" :style="{ color: color }" :stroke-width="3"></circle>
|
|
26
|
+
</svg>
|
|
27
|
+
<!-- #endif -->
|
|
28
|
+
<!-- #ifndef APP-NVUE || H5 -->
|
|
29
|
+
<view
|
|
30
|
+
v-if="
|
|
31
|
+
!webviewHide &&
|
|
32
|
+
(iconType === 'circle' || (iconType === 'auto' && platform === 'android')) &&
|
|
33
|
+
status === 'loading' &&
|
|
34
|
+
showIcon
|
|
35
|
+
"
|
|
36
|
+
:style="{ width: iconSize + 'px', height: iconSize + 'px' }"
|
|
37
|
+
class="cv-load-more__img cv-load-more__img--android-MP"
|
|
38
|
+
>
|
|
39
|
+
<view :style="{ borderTopColor: color, borderTopWidth: iconSize / 12 }"></view>
|
|
40
|
+
<view :style="{ borderTopColor: color, borderTopWidth: iconSize / 12 }"></view>
|
|
41
|
+
<view :style="{ borderTopColor: color, borderTopWidth: iconSize / 12 }"></view>
|
|
42
|
+
</view>
|
|
43
|
+
<!-- #endif -->
|
|
44
|
+
<!-- #ifndef APP-NVUE -->
|
|
45
|
+
<view
|
|
46
|
+
v-else-if="!webviewHide && status === 'loading' && showIcon"
|
|
47
|
+
:style="{ width: iconSize + 'px', height: iconSize + 'px' }"
|
|
48
|
+
class="cv-load-more__img cv-load-more__img--ios-H5"
|
|
49
|
+
>
|
|
50
|
+
<image
|
|
51
|
+
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzlBMzU3OTlEOUM0MTFFOUI0NTZDNERBQURBQzI4RkUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzlBMzU3OUFEOUM0MTFFOUI0NTZDNERBQURBQzI4RkUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDOUEzNTc5N0Q5QzQxMUU5QjQ1NkM0REFBREFDMjhGRSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDOUEzNTc5OEQ5QzQxMUU5QjQ1NkM0REFBREFDMjhGRSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pt+ALSwAAA6CSURBVHja1FsLkFZV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"
|
|
52
|
+
mode="widthFix"
|
|
53
|
+
></image>
|
|
54
|
+
</view>
|
|
55
|
+
<!-- #endif -->
|
|
56
|
+
<text class="cv-load-more__text" :style="{ color: color }">
|
|
57
|
+
{{
|
|
58
|
+
status === 'more'
|
|
59
|
+
? contentText.contentdown
|
|
60
|
+
: status === 'loading'
|
|
61
|
+
? contentText.contentrefresh
|
|
62
|
+
: contentText.contentnomore
|
|
63
|
+
}}
|
|
64
|
+
</text>
|
|
65
|
+
</view>
|
|
66
|
+
</template>
|
|
67
|
+
|
|
68
|
+
<script>
|
|
69
|
+
let platform;
|
|
70
|
+
setTimeout(() => {
|
|
71
|
+
platform = uni.getSystemInfoSync().platform;
|
|
72
|
+
}, 16);
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* LoadMore 加载更多
|
|
76
|
+
* @description 用于列表中,做滚动加载使用,展示 loading 的各种状态
|
|
77
|
+
* @tutorial https://ext.dcloud.net.cn/plugin?id=29
|
|
78
|
+
* @property {String} status = [more|loading|noMore] loading 的状态
|
|
79
|
+
* @value more loading前
|
|
80
|
+
* @value loading loading中
|
|
81
|
+
* @value noMore 没有更多了
|
|
82
|
+
* @property {Number} iconSize 指定图标大小
|
|
83
|
+
* @property {Boolean} iconSize = [true|false] 是否显示 loading 图标
|
|
84
|
+
* @property {String} iconType = [snow|circle|auto] 指定图标样式
|
|
85
|
+
* @value snow ios雪花加载样式
|
|
86
|
+
* @value circle 安卓唤醒加载样式
|
|
87
|
+
* @value auto 根据平台自动选择加载样式
|
|
88
|
+
* @property {String} color 图标和文字颜色
|
|
89
|
+
* @property {Object} contentText 各状态文字说明,值为:{contentdown: "上拉显示更多",contentrefresh: "正在加载...",contentnomore: "没有更多数据了"}
|
|
90
|
+
* @event {Function} clickLoadMore 点击加载更多时触发
|
|
91
|
+
*/
|
|
92
|
+
import mpMixin from '../../libs/mixin/mpMixin.js';
|
|
93
|
+
import mixin from '../../libs/mixin/mixin.js';
|
|
94
|
+
export default {
|
|
95
|
+
mixins: [mpMixin, mixin],
|
|
96
|
+
name: 'cvLoadMore',
|
|
97
|
+
emits: ['clickLoadMore'],
|
|
98
|
+
props: {
|
|
99
|
+
status: {
|
|
100
|
+
// 上拉的状态:more-loading前;loading-loading中;noMore-没有更多了
|
|
101
|
+
type: String,
|
|
102
|
+
default: 'more'
|
|
103
|
+
},
|
|
104
|
+
showIcon: {
|
|
105
|
+
type: Boolean,
|
|
106
|
+
default: true
|
|
107
|
+
},
|
|
108
|
+
iconType: {
|
|
109
|
+
type: String,
|
|
110
|
+
default: 'auto'
|
|
111
|
+
},
|
|
112
|
+
iconSize: {
|
|
113
|
+
type: Number,
|
|
114
|
+
default: 24
|
|
115
|
+
},
|
|
116
|
+
color: {
|
|
117
|
+
type: String,
|
|
118
|
+
default: '#777777'
|
|
119
|
+
},
|
|
120
|
+
contentText: {
|
|
121
|
+
type: Object,
|
|
122
|
+
default() {
|
|
123
|
+
return {
|
|
124
|
+
contentdown: '上拉显示更多',
|
|
125
|
+
contentrefresh: '正在加载...',
|
|
126
|
+
contentnomore: '没有更多数据了'
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
data() {
|
|
132
|
+
return {
|
|
133
|
+
webviewHide: false,
|
|
134
|
+
platform: platform
|
|
135
|
+
};
|
|
136
|
+
},
|
|
137
|
+
// #ifndef APP-NVUE
|
|
138
|
+
computed: {
|
|
139
|
+
iconSnowWidth() {
|
|
140
|
+
return (Math.floor(this.iconSize / 24) || 1) * 2;
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
// #endif
|
|
144
|
+
mounted() {
|
|
145
|
+
// #ifdef APP-PLUS
|
|
146
|
+
var pages = getCurrentPages();
|
|
147
|
+
var page = pages[pages.length - 1];
|
|
148
|
+
var currentWebview = page.$getAppWebview();
|
|
149
|
+
currentWebview.addEventListener('hide', () => {
|
|
150
|
+
this.webviewHide = true;
|
|
151
|
+
});
|
|
152
|
+
currentWebview.addEventListener('show', () => {
|
|
153
|
+
this.webviewHide = false;
|
|
154
|
+
});
|
|
155
|
+
// #endif
|
|
156
|
+
},
|
|
157
|
+
methods: {
|
|
158
|
+
onClick() {
|
|
159
|
+
this.$emit('clickLoadMore', {
|
|
160
|
+
detail: {
|
|
161
|
+
status: this.status
|
|
162
|
+
}
|
|
163
|
+
});
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
};
|
|
167
|
+
</script>
|
|
168
|
+
|
|
169
|
+
<style scoped>
|
|
170
|
+
.cv-load-more {
|
|
171
|
+
/* #ifndef APP-NVUE */
|
|
172
|
+
display: flex;
|
|
173
|
+
/* #endif */
|
|
174
|
+
flex-direction: row;
|
|
175
|
+
height: 40px;
|
|
176
|
+
align-items: center;
|
|
177
|
+
justify-content: center;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.cv-load-more__text {
|
|
181
|
+
font-size: 15px;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.cv-load-more__img {
|
|
185
|
+
width: 24px;
|
|
186
|
+
height: 24px;
|
|
187
|
+
margin-right: 8px;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.cv-load-more__img--nvue {
|
|
191
|
+
color: #666666;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.cv-load-more__img--android,
|
|
195
|
+
.cv-load-more__img--ios {
|
|
196
|
+
width: 24px;
|
|
197
|
+
height: 24px;
|
|
198
|
+
transform: rotate(0deg);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
/* #ifndef APP-NVUE */
|
|
202
|
+
.cv-load-more__img--android {
|
|
203
|
+
animation: loading-ios 1s 0s linear infinite;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
@keyframes loading-android {
|
|
207
|
+
0% {
|
|
208
|
+
transform: rotate(0deg);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
100% {
|
|
212
|
+
transform: rotate(360deg);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.cv-load-more__img--ios-H5 {
|
|
217
|
+
position: relative;
|
|
218
|
+
animation: loading-ios-H5 1s 0s step-end infinite;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.cv-load-more__img--ios-H5 > image {
|
|
222
|
+
position: absolute;
|
|
223
|
+
width: 100%;
|
|
224
|
+
height: 100%;
|
|
225
|
+
left: 0;
|
|
226
|
+
top: 0;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
@keyframes loading-ios-H5 {
|
|
230
|
+
0% {
|
|
231
|
+
transform: rotate(0deg);
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
8% {
|
|
235
|
+
transform: rotate(30deg);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
16% {
|
|
239
|
+
transform: rotate(60deg);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
24% {
|
|
243
|
+
transform: rotate(90deg);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
32% {
|
|
247
|
+
transform: rotate(120deg);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
40% {
|
|
251
|
+
transform: rotate(150deg);
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
48% {
|
|
255
|
+
transform: rotate(180deg);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
56% {
|
|
259
|
+
transform: rotate(210deg);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
64% {
|
|
263
|
+
transform: rotate(240deg);
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
73% {
|
|
267
|
+
transform: rotate(270deg);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
82% {
|
|
271
|
+
transform: rotate(300deg);
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
91% {
|
|
275
|
+
transform: rotate(330deg);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
100% {
|
|
279
|
+
transform: rotate(360deg);
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
/* #endif */
|
|
284
|
+
/* #ifdef H5 */
|
|
285
|
+
.cv-load-more__img--android-H5 {
|
|
286
|
+
animation: loading-android-H5-rotate 2s linear infinite;
|
|
287
|
+
transform-origin: center center;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.cv-load-more__img--android-H5 > circle {
|
|
291
|
+
display: inline-block;
|
|
292
|
+
animation: loading-android-H5-dash 1.5s ease-in-out infinite;
|
|
293
|
+
stroke: currentColor;
|
|
294
|
+
stroke-linecap: round;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
@keyframes loading-android-H5-rotate {
|
|
298
|
+
0% {
|
|
299
|
+
transform: rotate(0deg);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
100% {
|
|
303
|
+
transform: rotate(360deg);
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
@keyframes loading-android-H5-dash {
|
|
308
|
+
0% {
|
|
309
|
+
stroke-dasharray: 1, 200;
|
|
310
|
+
stroke-dashoffset: 0;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
50% {
|
|
314
|
+
stroke-dasharray: 90, 150;
|
|
315
|
+
stroke-dashoffset: -40;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
100% {
|
|
319
|
+
stroke-dasharray: 90, 150;
|
|
320
|
+
stroke-dashoffset: -120;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
/* #endif */
|
|
325
|
+
/* #ifndef APP-NVUE || H5 */
|
|
326
|
+
.cv-load-more__img--android-MP {
|
|
327
|
+
position: relative;
|
|
328
|
+
width: 24px;
|
|
329
|
+
height: 24px;
|
|
330
|
+
transform: rotate(0deg);
|
|
331
|
+
animation: loading-ios 1s 0s ease infinite;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.cv-load-more__img--android-MP > view {
|
|
335
|
+
position: absolute;
|
|
336
|
+
box-sizing: border-box;
|
|
337
|
+
width: 100%;
|
|
338
|
+
height: 100%;
|
|
339
|
+
border-radius: 50%;
|
|
340
|
+
border: solid 2px transparent;
|
|
341
|
+
border-top: solid 2px #777777;
|
|
342
|
+
transform-origin: center;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.cv-load-more__img--android-MP > view:nth-child(1) {
|
|
346
|
+
animation: loading-android-MP-1 1s 0s linear infinite;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.cv-load-more__img--android-MP > view:nth-child(2) {
|
|
350
|
+
animation: loading-android-MP-2 1s 0s linear infinite;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.cv-load-more__img--android-MP > view:nth-child(3) {
|
|
354
|
+
animation: loading-android-MP-3 1s 0s linear infinite;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
@keyframes loading-android {
|
|
358
|
+
0% {
|
|
359
|
+
transform: rotate(0deg);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
100% {
|
|
363
|
+
transform: rotate(360deg);
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
@keyframes loading-android-MP-1 {
|
|
368
|
+
0% {
|
|
369
|
+
transform: rotate(0deg);
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
50% {
|
|
373
|
+
transform: rotate(90deg);
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
100% {
|
|
377
|
+
transform: rotate(360deg);
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
@keyframes loading-android-MP-2 {
|
|
382
|
+
0% {
|
|
383
|
+
transform: rotate(0deg);
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
50% {
|
|
387
|
+
transform: rotate(180deg);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
100% {
|
|
391
|
+
transform: rotate(360deg);
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
@keyframes loading-android-MP-3 {
|
|
396
|
+
0% {
|
|
397
|
+
transform: rotate(0deg);
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
50% {
|
|
401
|
+
transform: rotate(270deg);
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
100% {
|
|
405
|
+
transform: rotate(360deg);
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
/* #endif */
|
|
410
|
+
</style>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="cv-load-more-wrap">
|
|
3
|
+
<load-more :loadingType="loadingType" :contentText="contentText"></load-more>
|
|
4
|
+
</view>
|
|
5
|
+
</template>
|
|
6
|
+
<script>
|
|
7
|
+
import loadMore from './load-more.vue';
|
|
8
|
+
import mpMixin from '../../libs/mixin/mpMixin.js';
|
|
9
|
+
import mixin from '../../libs/mixin/mixin.js';
|
|
10
|
+
export default {
|
|
11
|
+
mixins: [mpMixin, mixin],
|
|
12
|
+
name: 'cvLoadMore',
|
|
13
|
+
components: { loadMore },
|
|
14
|
+
props: {
|
|
15
|
+
loadingType: {
|
|
16
|
+
type: [Number, String],
|
|
17
|
+
default: 0
|
|
18
|
+
},
|
|
19
|
+
contentText: {
|
|
20
|
+
type: [Object],
|
|
21
|
+
default: {
|
|
22
|
+
contentdown: '上拉显示更多',
|
|
23
|
+
contentrefresh: '正在加载...',
|
|
24
|
+
contentnomore: '没有更多数据了'
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
data() {
|
|
29
|
+
return {};
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
</script>
|
|
33
|
+
<style>
|
|
34
|
+
.cv-load-more-wrap {
|
|
35
|
+
flex-direction: column;
|
|
36
|
+
position: relative;
|
|
37
|
+
display: block;
|
|
38
|
+
box-sizing: border-box;
|
|
39
|
+
|
|
40
|
+
display: block;
|
|
41
|
+
width: 100%;
|
|
42
|
+
float: left;
|
|
43
|
+
-webkit-box-flex: 0;
|
|
44
|
+
-ms-flex: 0 0 auto;
|
|
45
|
+
flex: 0 0 auto;
|
|
46
|
+
}
|
|
47
|
+
</style>
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
<!-- uniapp vue3 markdown解析 -->
|
|
2
|
+
<template>
|
|
3
|
+
<view class="ua__markdown">
|
|
4
|
+
<rich-text space="nbsp" :nodes="parseNodes(source)" @itemclick="handleItemClick"></rich-text>
|
|
5
|
+
</view>
|
|
6
|
+
</template>
|
|
7
|
+
|
|
8
|
+
<script setup>
|
|
9
|
+
import MarkdownIt from './lib/markdown-it.min.js';
|
|
10
|
+
import hljs from './lib/11.8.0-es/highlight.min.js';
|
|
11
|
+
import './lib/highlight/atom-one-dark.css';
|
|
12
|
+
import parseHtml from './lib/html-parser.js';
|
|
13
|
+
const props = defineProps({
|
|
14
|
+
// 解析内容
|
|
15
|
+
source: String,
|
|
16
|
+
showLine: { type: [Boolean, String], default: true }
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
let copyCodeData = [];
|
|
20
|
+
const markdown = MarkdownIt({
|
|
21
|
+
html: true,
|
|
22
|
+
highlight: function (str, lang) {
|
|
23
|
+
let preCode = '';
|
|
24
|
+
try {
|
|
25
|
+
preCode = hljs.highlightAuto(str).value;
|
|
26
|
+
} catch (err) {
|
|
27
|
+
preCode = markdown.utils.escapeHtml(str);
|
|
28
|
+
}
|
|
29
|
+
const lines = preCode.split(/\n/).slice(0, -1);
|
|
30
|
+
// 添加自定义行号
|
|
31
|
+
let html = lines
|
|
32
|
+
.map((item, index) => {
|
|
33
|
+
if (item == '') {
|
|
34
|
+
return '';
|
|
35
|
+
}
|
|
36
|
+
return '<li><span class="line-num" data-line="' + (index + 1) + '"></span>' + item + '</li>';
|
|
37
|
+
})
|
|
38
|
+
.join('');
|
|
39
|
+
if (props.showLine) {
|
|
40
|
+
html = '<ol style="padding: 0px 30px;">' + html + '</ol>';
|
|
41
|
+
} else {
|
|
42
|
+
html = '<ol style="padding: 0px 7px;list-style:none;">' + html + '</ol>';
|
|
43
|
+
}
|
|
44
|
+
copyCodeData.push(str);
|
|
45
|
+
let htmlCode = `<div class="markdown-wrap">`;
|
|
46
|
+
// #ifndef MP-WEIXIN
|
|
47
|
+
htmlCode += `<div style="color: #aaa;text-align: right;font-size: 12px;padding:8px;">`;
|
|
48
|
+
htmlCode += `${lang}<a class="copy-btn" code-data-index="${copyCodeData.length - 1}" style="margin-left: 8px;">复制代码</a>`;
|
|
49
|
+
htmlCode += `</div>`;
|
|
50
|
+
// #endif
|
|
51
|
+
htmlCode += `<pre class="hljs" style="padding:10px 8px 0;margin-bottom:5px;overflow: auto;display: block;border-radius: 5px;"><code>${html}</code></pre>`;
|
|
52
|
+
htmlCode += '</div>';
|
|
53
|
+
return htmlCode;
|
|
54
|
+
}
|
|
55
|
+
});
|
|
56
|
+
const parseNodes = (value) => {
|
|
57
|
+
if (!value) return;
|
|
58
|
+
// 解析<br />到\n
|
|
59
|
+
value = value.replace(/<br>|<br\/>|<br \/>/g, '\n');
|
|
60
|
+
value = value.replace(/ /g, ' ');
|
|
61
|
+
let htmlString = '';
|
|
62
|
+
if (value.split('```').length % 2) {
|
|
63
|
+
let mdtext = value;
|
|
64
|
+
if (mdtext[mdtext.length - 1] != '\n') {
|
|
65
|
+
mdtext += '\n';
|
|
66
|
+
}
|
|
67
|
+
htmlString = markdown.render(mdtext);
|
|
68
|
+
} else {
|
|
69
|
+
htmlString = markdown.render(value);
|
|
70
|
+
}
|
|
71
|
+
// 解决小程序表格边框型失效问题
|
|
72
|
+
htmlString = htmlString.replace(/<table/g, `<table class="table"`);
|
|
73
|
+
htmlString = htmlString.replace(/<tr/g, `<tr class="tr"`);
|
|
74
|
+
htmlString = htmlString.replace(/<th>/g, `<th class="th">`);
|
|
75
|
+
htmlString = htmlString.replace(/<td/g, `<td class="td"`);
|
|
76
|
+
htmlString = htmlString.replace(/<hr>|<hr\/>|<hr \/>/g, `<hr class="hr">`);
|
|
77
|
+
|
|
78
|
+
// #ifndef APP-NVUE
|
|
79
|
+
return htmlString;
|
|
80
|
+
// #endif
|
|
81
|
+
|
|
82
|
+
// 将htmlString转成htmlArray,反之使用rich-text解析
|
|
83
|
+
// #ifdef APP-NVUE
|
|
84
|
+
return parseHtml(htmlString);
|
|
85
|
+
// #endif
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
// 复制代码
|
|
89
|
+
const handleItemClick = (e) => {
|
|
90
|
+
let { attrs } = e.detail.node;
|
|
91
|
+
let { 'code-data-index': codeDataIndex, class: className } = attrs;
|
|
92
|
+
if (className == 'copy-btn') {
|
|
93
|
+
uni.setClipboardData({
|
|
94
|
+
data: copyCodeData[codeDataIndex],
|
|
95
|
+
showToast: false,
|
|
96
|
+
success() {
|
|
97
|
+
uni.showToast({
|
|
98
|
+
title: '复制成功',
|
|
99
|
+
icon: 'none'
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
});
|
|
103
|
+
}
|
|
104
|
+
};
|
|
105
|
+
</script>
|
|
106
|
+
<style scoped>
|
|
107
|
+
@import url('./markdown.css');
|
|
108
|
+
</style>
|