@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,30 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:15:59
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/modal.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// modal 组件
|
|
12
|
+
modal: {
|
|
13
|
+
show: false,
|
|
14
|
+
title: '',
|
|
15
|
+
content: '',
|
|
16
|
+
confirmText: '确认',
|
|
17
|
+
cancelText: '取消',
|
|
18
|
+
showConfirmButton: true,
|
|
19
|
+
showCancelButton: false,
|
|
20
|
+
confirmColor: '#2979ff',
|
|
21
|
+
cancelColor: '#606266',
|
|
22
|
+
buttonReverse: false,
|
|
23
|
+
zoom: true,
|
|
24
|
+
asyncClose: false,
|
|
25
|
+
closeOnClickOverlay: false,
|
|
26
|
+
negativeTop: 0,
|
|
27
|
+
width: '650rpx',
|
|
28
|
+
confirmButtonShape: ''
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:16:18
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/navbar.js
|
|
9
|
+
*/
|
|
10
|
+
import color from '../color'
|
|
11
|
+
export default {
|
|
12
|
+
// navbar 组件
|
|
13
|
+
navbar: {
|
|
14
|
+
safeAreaInsetTop: true,
|
|
15
|
+
placeholder: false,
|
|
16
|
+
fixed: true,
|
|
17
|
+
border: false,
|
|
18
|
+
leftIcon: 'arrow-left',
|
|
19
|
+
leftText: '',
|
|
20
|
+
rightText: '',
|
|
21
|
+
rightIcon: '',
|
|
22
|
+
title: '',
|
|
23
|
+
bgColor: '#ffffff',
|
|
24
|
+
titleWidth: '400rpx',
|
|
25
|
+
height: '44px',
|
|
26
|
+
leftIconSize: 20,
|
|
27
|
+
leftIconColor: color.mainColor,
|
|
28
|
+
autoBack: false,
|
|
29
|
+
titleStyle: ''
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:16:39
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/noNetwork.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// noNetwork
|
|
12
|
+
noNetwork: {
|
|
13
|
+
tips: '哎呀,网络信号丢失',
|
|
14
|
+
zIndex: '',
|
|
15
|
+
image: 'data:image/png;base64,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'
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:17:13
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/noticeBar.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// noticeBar
|
|
12
|
+
noticeBar: {
|
|
13
|
+
text: () => [],
|
|
14
|
+
direction: 'row',
|
|
15
|
+
step: false,
|
|
16
|
+
icon: 'volume',
|
|
17
|
+
mode: '',
|
|
18
|
+
color: '#f9ae3d',
|
|
19
|
+
bgColor: '#fdf6ec',
|
|
20
|
+
speed: 80,
|
|
21
|
+
fontSize: 14,
|
|
22
|
+
duration: 2000,
|
|
23
|
+
disableTouch: true,
|
|
24
|
+
url: '',
|
|
25
|
+
linkType: 'navigateTo'
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:10:21
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/notify.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// notify组件
|
|
12
|
+
notify: {
|
|
13
|
+
top: 0,
|
|
14
|
+
type: 'primary',
|
|
15
|
+
color: '#ffffff',
|
|
16
|
+
bgColor: '',
|
|
17
|
+
message: '',
|
|
18
|
+
duration: 3000,
|
|
19
|
+
fontSize: 15,
|
|
20
|
+
safeAreaInsetTop: false
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:11:46
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/numberBox.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// 步进器组件
|
|
12
|
+
numberBox: {
|
|
13
|
+
name: '',
|
|
14
|
+
value: 0,
|
|
15
|
+
min: 1,
|
|
16
|
+
max: Number.MAX_SAFE_INTEGER,
|
|
17
|
+
step: 1,
|
|
18
|
+
integer: false,
|
|
19
|
+
disabled: false,
|
|
20
|
+
disabledInput: false,
|
|
21
|
+
asyncChange: false,
|
|
22
|
+
inputWidth: 35,
|
|
23
|
+
showMinus: true,
|
|
24
|
+
showPlus: true,
|
|
25
|
+
decimalLength: null,
|
|
26
|
+
longPress: true,
|
|
27
|
+
color: '#323233',
|
|
28
|
+
buttonSize: 30,
|
|
29
|
+
bgColor: '#EBECEE',
|
|
30
|
+
cursorSpacing: 100,
|
|
31
|
+
disableMinus: false,
|
|
32
|
+
disablePlus: false,
|
|
33
|
+
iconStyle: ''
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:08:05
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/numberKeyboard.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// 数字键盘
|
|
12
|
+
numberKeyboard: {
|
|
13
|
+
mode: 'number',
|
|
14
|
+
dotDisabled: false,
|
|
15
|
+
random: false
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:06:50
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/overlay.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// overlay组件
|
|
12
|
+
overlay: {
|
|
13
|
+
show: false,
|
|
14
|
+
zIndex: 10070,
|
|
15
|
+
duration: 300,
|
|
16
|
+
opacity: 0.5
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:17:33
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/parse.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// parse
|
|
12
|
+
parse: {
|
|
13
|
+
copyLink: true,
|
|
14
|
+
errorImg: '',
|
|
15
|
+
lazyLoad: false,
|
|
16
|
+
loadingImg: '',
|
|
17
|
+
pauseVideo: true,
|
|
18
|
+
previewImg: true,
|
|
19
|
+
setTitle: true,
|
|
20
|
+
showImgMenu: true
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:18:20
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/picker.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// picker
|
|
12
|
+
picker: {
|
|
13
|
+
show: false,
|
|
14
|
+
showToolbar: true,
|
|
15
|
+
title: '',
|
|
16
|
+
columns: () => [],
|
|
17
|
+
loading: false,
|
|
18
|
+
itemHeight: 44,
|
|
19
|
+
cancelText: '取消',
|
|
20
|
+
confirmText: '确定',
|
|
21
|
+
cancelColor: '#909193',
|
|
22
|
+
confirmColor: '#3c9cff',
|
|
23
|
+
visibleItemCount: 5,
|
|
24
|
+
keyName: 'text',
|
|
25
|
+
closeOnClickOverlay: false,
|
|
26
|
+
defaultIndex: () => [],
|
|
27
|
+
immediateChange: false
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:06:33
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/popup.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// popup组件
|
|
12
|
+
popup: {
|
|
13
|
+
show: false,
|
|
14
|
+
overlay: true,
|
|
15
|
+
mode: 'bottom',
|
|
16
|
+
duration: 300,
|
|
17
|
+
closeable: false,
|
|
18
|
+
overlayStyle: () => {},
|
|
19
|
+
closeOnClickOverlay: true,
|
|
20
|
+
zIndex: 10075,
|
|
21
|
+
safeAreaInsetBottom: true,
|
|
22
|
+
safeAreaInsetTop: false,
|
|
23
|
+
closeIconPos: 'top-right',
|
|
24
|
+
round: 0,
|
|
25
|
+
zoom: true,
|
|
26
|
+
bgColor: '',
|
|
27
|
+
overlayOpacity: 0.5
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:02:34
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/radio.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// radio组件
|
|
12
|
+
radio: {
|
|
13
|
+
name: '',
|
|
14
|
+
shape: '',
|
|
15
|
+
disabled: '',
|
|
16
|
+
labelDisabled: '',
|
|
17
|
+
activeColor: '',
|
|
18
|
+
inactiveColor: '',
|
|
19
|
+
iconSize: '',
|
|
20
|
+
labelSize: '',
|
|
21
|
+
label: '',
|
|
22
|
+
labelColor: '',
|
|
23
|
+
size: '',
|
|
24
|
+
iconColor: '',
|
|
25
|
+
placement: ''
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:03:12
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/radioGroup.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// radio-group组件
|
|
12
|
+
radioGroup: {
|
|
13
|
+
value: '',
|
|
14
|
+
disabled: false,
|
|
15
|
+
shape: 'circle',
|
|
16
|
+
activeColor: '#2979ff',
|
|
17
|
+
inactiveColor: '#c8c9cc',
|
|
18
|
+
name: '',
|
|
19
|
+
size: 18,
|
|
20
|
+
placement: 'row',
|
|
21
|
+
label: '',
|
|
22
|
+
labelColor: '#303133',
|
|
23
|
+
labelSize: 14,
|
|
24
|
+
labelDisabled: false,
|
|
25
|
+
iconColor: '#ffffff',
|
|
26
|
+
iconSize: 12,
|
|
27
|
+
borderBottom: false,
|
|
28
|
+
iconPlacement: 'left'
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:05:09
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/rate.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// rate组件
|
|
12
|
+
rate: {
|
|
13
|
+
value: 1,
|
|
14
|
+
count: 5,
|
|
15
|
+
disabled: false,
|
|
16
|
+
size: 18,
|
|
17
|
+
inactiveColor: '#b2b2b2',
|
|
18
|
+
activeColor: '#FA3534',
|
|
19
|
+
gutter: 4,
|
|
20
|
+
minCount: 1,
|
|
21
|
+
allowHalf: false,
|
|
22
|
+
activeIcon: 'star-fill',
|
|
23
|
+
inactiveIcon: 'star',
|
|
24
|
+
touchable: true
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:18:41
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/readMore.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// readMore
|
|
12
|
+
readMore: {
|
|
13
|
+
showHeight: 400,
|
|
14
|
+
toggle: false,
|
|
15
|
+
closeText: '展开阅读全文',
|
|
16
|
+
openText: '收起',
|
|
17
|
+
color: '#2979ff',
|
|
18
|
+
fontSize: 14,
|
|
19
|
+
textIndent: '2em',
|
|
20
|
+
name: ''
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:18:58
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/row.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// row
|
|
12
|
+
row: {
|
|
13
|
+
gutter: 0,
|
|
14
|
+
justify: 'start',
|
|
15
|
+
align: 'center'
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:19:13
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/rowNotice.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// rowNotice
|
|
12
|
+
rowNotice: {
|
|
13
|
+
text: '',
|
|
14
|
+
icon: 'volume',
|
|
15
|
+
mode: '',
|
|
16
|
+
color: '#f9ae3d',
|
|
17
|
+
bgColor: '#fdf6ec',
|
|
18
|
+
fontSize: 14,
|
|
19
|
+
speed: 80
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:19:28
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/scrollList.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// scrollList
|
|
12
|
+
scrollList: {
|
|
13
|
+
indicatorWidth: 50,
|
|
14
|
+
indicatorBarWidth: 20,
|
|
15
|
+
indicator: true,
|
|
16
|
+
indicatorColor: '#f2f2f2',
|
|
17
|
+
indicatorActiveColor: '#3c9cff',
|
|
18
|
+
indicatorStyle: ''
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:19:45
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/search.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// search
|
|
12
|
+
search: {
|
|
13
|
+
shape: 'round',
|
|
14
|
+
bgColor: '#f2f2f2',
|
|
15
|
+
placeholder: '请输入关键字',
|
|
16
|
+
clearabled: true,
|
|
17
|
+
focus: false,
|
|
18
|
+
showAction: true,
|
|
19
|
+
actionStyle: () => ({}),
|
|
20
|
+
actionText: '搜索',
|
|
21
|
+
inputAlign: 'left',
|
|
22
|
+
inputStyle: () => ({}),
|
|
23
|
+
disabled: false,
|
|
24
|
+
borderColor: 'transparent',
|
|
25
|
+
searchIconColor: '#909399',
|
|
26
|
+
searchIconSize: 22,
|
|
27
|
+
color: '#606266',
|
|
28
|
+
placeholderColor: '#909399',
|
|
29
|
+
searchIcon: 'search',
|
|
30
|
+
margin: '0',
|
|
31
|
+
animation: false,
|
|
32
|
+
value: '',
|
|
33
|
+
maxlength: '-1',
|
|
34
|
+
height: 32,
|
|
35
|
+
label: null
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:07:33
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/section.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// u-section组件
|
|
12
|
+
section: {
|
|
13
|
+
title: '',
|
|
14
|
+
subTitle: '更多',
|
|
15
|
+
right: true,
|
|
16
|
+
fontSize: 15,
|
|
17
|
+
bold: true,
|
|
18
|
+
color: '#303133',
|
|
19
|
+
subColor: '#909399',
|
|
20
|
+
showLine: true,
|
|
21
|
+
lineColor: '',
|
|
22
|
+
arrow: true
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:20:14
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/skeleton.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// skeleton
|
|
12
|
+
skeleton: {
|
|
13
|
+
loading: true,
|
|
14
|
+
animate: true,
|
|
15
|
+
rows: 0,
|
|
16
|
+
rowsWidth: '100%',
|
|
17
|
+
rowsHeight: 18,
|
|
18
|
+
title: true,
|
|
19
|
+
titleWidth: '50%',
|
|
20
|
+
titleHeight: 18,
|
|
21
|
+
avatar: false,
|
|
22
|
+
avatarSize: 32,
|
|
23
|
+
avatarShape: 'circle'
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:08:25
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/slider.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// slider组件
|
|
12
|
+
slider: {
|
|
13
|
+
value: 0,
|
|
14
|
+
blockSize: 18,
|
|
15
|
+
min: 0,
|
|
16
|
+
max: 100,
|
|
17
|
+
step: 1,
|
|
18
|
+
activeColor: '#2979ff',
|
|
19
|
+
inactiveColor: '#c0c4cc',
|
|
20
|
+
blockColor: '#ffffff',
|
|
21
|
+
showValue: false,
|
|
22
|
+
disabled:false,
|
|
23
|
+
blockStyle: () => {}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 1.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : LQ
|
|
7
|
+
* @lastTime : 2021-08-20 17:20:39
|
|
8
|
+
* @FilePath : /u-view2.0/uview-ui/libs/config/props/statusBar.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// statusBar
|
|
12
|
+
statusBar: {
|
|
13
|
+
bgColor: 'transparent'
|
|
14
|
+
}
|
|
15
|
+
}
|