persagy-vant 0.0.25 → 0.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -7
- package/es/background/index.css +1 -1
- package/es/background/index.less +10 -0
- package/es/background/types.d.ts +1 -1
- package/es/bot-mobile/BotFab.d.ts +72 -0
- package/es/bot-mobile/BotFab.mjs +152 -0
- package/es/bot-mobile/BotHistoryDrawer.d.ts +72 -0
- package/es/bot-mobile/BotHistoryDrawer.mjs +97 -0
- package/es/bot-mobile/BotMobile.d.ts +83 -0
- package/es/bot-mobile/BotMobile.mjs +47 -0
- package/es/bot-mobile/BotMobileContextTags.d.ts +52 -0
- package/es/bot-mobile/BotMobileContextTags.mjs +52 -0
- package/es/bot-mobile/BotMobilePrompts.d.ts +54 -0
- package/es/bot-mobile/BotMobilePrompts.mjs +49 -0
- package/es/bot-mobile/BotMobileSheet.d.ts +92 -0
- package/es/bot-mobile/BotMobileSheet.mjs +50 -0
- package/es/bot-mobile/BotMobileView.d.ts +82 -0
- package/es/bot-mobile/BotMobileView.mjs +45 -0
- package/es/bot-mobile/BotSessionList.d.ts +71 -0
- package/es/bot-mobile/BotSessionList.mjs +99 -0
- package/es/bot-mobile/BotVoiceBar.d.ts +80 -0
- package/es/bot-mobile/BotVoiceBar.mjs +138 -0
- package/es/bot-mobile/fab-position.d.ts +9 -0
- package/es/bot-mobile/fab-position.mjs +10 -0
- package/es/bot-mobile/fab-position.test.mjs +29 -0
- package/es/bot-mobile/index.css +1 -0
- package/es/bot-mobile/index.d.ts +469 -0
- package/es/bot-mobile/index.less +464 -0
- package/es/bot-mobile/index.mjs +50 -0
- package/es/bot-mobile/session-filter.d.ts +6 -0
- package/es/bot-mobile/session-filter.mjs +15 -0
- package/es/bot-mobile/session-item.d.ts +15 -0
- package/es/bot-mobile/session-item.mjs +73 -0
- package/es/bot-mobile/style/index.mjs +15 -0
- package/es/bot-mobile/style/less.mjs +15 -0
- package/es/bot-mobile/types.d.ts +23 -0
- package/es/bot-mobile/types.mjs +0 -0
- package/es/bot-mobile/var.css +0 -0
- package/es/bot-mobile/var.less +58 -0
- package/es/bot-mobile/voice-zone.d.ts +6 -0
- package/es/bot-mobile/voice-zone.mjs +6 -0
- package/es/bot-mobile/voice-zone.test.mjs +19 -0
- package/es/cascader/Cascader.d.ts +1 -1
- package/es/cascader/index.d.ts +1 -1
- package/es/coupon-list/style/index.mjs +1 -1
- package/es/coupon-list/style/less.mjs +1 -1
- package/es/empty/Empty.mjs +6 -274
- package/es/empty/assets/default.png +0 -0
- package/es/empty/assets/network.png +0 -0
- package/es/empty/index.css +1 -1
- package/es/empty/index.less +19 -1
- package/es/empty/var.less +6 -5
- package/es/field/index.css +1 -1
- package/es/field/var.less +1 -1
- package/es/floor-select/FloorSelect.mjs +3 -0
- package/es/floor-select/index.css +1 -1
- package/es/floor-select/index.less +4 -3
- package/es/icon/base-iconfont.css +1 -0
- package/es/icon/base-iconfont.less +1144 -0
- package/es/icon/config.d.ts +7 -0
- package/es/icon/config.mjs +268 -0
- package/es/icon/index.less +1 -1
- package/es/icon/latest-iconfont.less +1 -1
- package/es/index.d.ts +3 -1
- package/es/index.mjs +7 -1
- package/es/location-select/style/index.mjs +1 -1
- package/es/location-select/style/less.mjs +1 -1
- package/es/material-add/MaterialAdd.d.ts +1 -1
- package/es/material-add/index.d.ts +1 -1
- package/es/quantity-input/QuantityInput.d.ts +1 -1
- package/es/quantity-input/index.d.ts +2 -2
- package/es/radio-panel/RadioPanel.mjs +25 -13
- package/es/sidebar-item/SidebarItem.mjs +1 -2
- package/es/sticky/Sticky.d.ts +1 -1
- package/es/sticky/index.d.ts +1 -1
- package/es/work-order-card/WorkOrderCard.d.ts +145 -0
- package/es/work-order-card/WorkOrderCard.mjs +121 -0
- package/es/work-order-card/index.css +1 -0
- package/es/work-order-card/index.d.ts +107 -0
- package/es/work-order-card/index.less +34 -0
- package/es/work-order-card/index.mjs +8 -0
- package/es/work-order-card/style/index.mjs +8 -0
- package/es/work-order-card/style/less.mjs +8 -0
- package/es/work-order-card/types.d.ts +16 -0
- package/es/work-order-card/types.mjs +0 -0
- package/es/work-order-card/var.css +0 -0
- package/es/work-order-card/var.less +6 -0
- package/lib/background/index.css +1 -1
- package/lib/background/index.less +10 -0
- package/lib/background/types.d.ts +1 -1
- package/lib/bot-mobile/BotFab.d.ts +72 -0
- package/lib/bot-mobile/BotFab.js +171 -0
- package/lib/bot-mobile/BotHistoryDrawer.d.ts +72 -0
- package/lib/bot-mobile/BotHistoryDrawer.js +116 -0
- package/lib/bot-mobile/BotMobile.d.ts +83 -0
- package/lib/bot-mobile/BotMobile.js +66 -0
- package/lib/bot-mobile/BotMobileContextTags.d.ts +52 -0
- package/lib/bot-mobile/BotMobileContextTags.js +71 -0
- package/lib/bot-mobile/BotMobilePrompts.d.ts +54 -0
- package/lib/bot-mobile/BotMobilePrompts.js +68 -0
- package/lib/bot-mobile/BotMobileSheet.d.ts +92 -0
- package/lib/bot-mobile/BotMobileSheet.js +79 -0
- package/lib/bot-mobile/BotMobileView.d.ts +82 -0
- package/lib/bot-mobile/BotMobileView.js +64 -0
- package/lib/bot-mobile/BotSessionList.d.ts +71 -0
- package/lib/bot-mobile/BotSessionList.js +118 -0
- package/lib/bot-mobile/BotVoiceBar.d.ts +80 -0
- package/lib/bot-mobile/BotVoiceBar.js +157 -0
- package/lib/bot-mobile/fab-position.d.ts +9 -0
- package/lib/bot-mobile/fab-position.js +29 -0
- package/lib/bot-mobile/fab-position.test.js +29 -0
- package/lib/bot-mobile/index.css +1 -0
- package/lib/bot-mobile/index.d.ts +469 -0
- package/lib/bot-mobile/index.js +79 -0
- package/lib/bot-mobile/index.less +464 -0
- package/lib/bot-mobile/session-filter.d.ts +6 -0
- package/lib/bot-mobile/session-filter.js +34 -0
- package/lib/bot-mobile/session-item.d.ts +15 -0
- package/lib/bot-mobile/session-item.js +92 -0
- package/lib/bot-mobile/style/index.js +15 -0
- package/lib/bot-mobile/style/less.js +15 -0
- package/lib/bot-mobile/types.d.ts +23 -0
- package/lib/bot-mobile/types.js +15 -0
- package/lib/bot-mobile/var.css +0 -0
- package/lib/bot-mobile/var.less +58 -0
- package/lib/bot-mobile/voice-zone.d.ts +6 -0
- package/lib/bot-mobile/voice-zone.js +25 -0
- package/lib/bot-mobile/voice-zone.test.js +19 -0
- package/lib/cascader/Cascader.d.ts +1 -1
- package/lib/cascader/index.d.ts +1 -1
- package/lib/coupon-list/style/index.js +1 -1
- package/lib/coupon-list/style/less.js +1 -1
- package/lib/empty/Empty.js +6 -274
- package/lib/empty/assets/default.png +0 -0
- package/lib/empty/assets/network.png +0 -0
- package/lib/empty/index.css +1 -1
- package/lib/empty/index.less +19 -1
- package/lib/empty/var.less +6 -5
- package/lib/field/index.css +1 -1
- package/lib/field/var.less +1 -1
- package/lib/floor-select/FloorSelect.js +3 -0
- package/lib/floor-select/index.css +1 -1
- package/lib/floor-select/index.less +4 -3
- package/lib/icon/base-iconfont.css +1 -0
- package/lib/icon/base-iconfont.less +1144 -0
- package/lib/icon/config.d.ts +7 -0
- package/lib/icon/config.js +287 -0
- package/lib/icon/index.less +1 -1
- package/lib/icon/latest-iconfont.less +1 -1
- package/lib/index.css +1 -1
- package/lib/index.d.ts +3 -1
- package/lib/index.js +7 -1
- package/lib/index.less +6 -4
- package/lib/location-select/style/index.js +1 -1
- package/lib/location-select/style/less.js +1 -1
- package/lib/material-add/MaterialAdd.d.ts +1 -1
- package/lib/material-add/index.d.ts +1 -1
- package/lib/quantity-input/QuantityInput.d.ts +1 -1
- package/lib/quantity-input/index.d.ts +2 -2
- package/lib/radio-panel/RadioPanel.js +25 -13
- package/lib/sidebar-item/SidebarItem.js +1 -2
- package/lib/sticky/Sticky.d.ts +1 -1
- package/lib/sticky/index.d.ts +1 -1
- package/lib/vant.cjs.js +2206 -1576
- package/lib/vant.es.js +2206 -1576
- package/lib/vant.js +18781 -7348
- package/lib/vant.min.js +1 -1
- package/lib/web-types.json +1 -1
- package/lib/work-order-card/WorkOrderCard.d.ts +145 -0
- package/lib/work-order-card/WorkOrderCard.js +140 -0
- package/lib/work-order-card/index.css +1 -0
- package/lib/work-order-card/index.d.ts +107 -0
- package/lib/work-order-card/index.js +37 -0
- package/lib/work-order-card/index.less +34 -0
- package/lib/work-order-card/style/index.js +8 -0
- package/lib/work-order-card/style/less.js +8 -0
- package/lib/work-order-card/types.d.ts +16 -0
- package/lib/work-order-card/types.js +15 -0
- package/lib/work-order-card/var.css +0 -0
- package/lib/work-order-card/var.less +6 -0
- package/package.json +2 -2
- package/skills/use-persagy-vant/SKILL.md +2 -2
- package/skills/use-persagy-vant/references/business-component-catalog.md +6 -1
- package/skills/use-persagy-vant/references/component-catalog.md +8 -5
- package/skills/use-persagy-vant/references/page-recipes.md +11 -1
- package/es/action-bar/style/index.d.ts +0 -1
- package/es/action-bar/style/less.d.ts +0 -1
- package/es/action-sheet/style/index.d.ts +0 -1
- package/es/action-sheet/style/less.d.ts +0 -1
- package/es/address-edit/style/index.d.ts +0 -1
- package/es/address-edit/style/less.d.ts +0 -1
- package/es/address-list/style/index.d.ts +0 -1
- package/es/address-list/style/less.d.ts +0 -1
- package/es/area/style/index.d.ts +0 -1
- package/es/area/style/less.d.ts +0 -1
- package/es/background/style/index.d.ts +0 -1
- package/es/background/style/less.d.ts +0 -1
- package/es/badge/style/index.d.ts +0 -1
- package/es/badge/style/less.d.ts +0 -1
- package/es/blue-mark/style/index.d.ts +0 -1
- package/es/blue-mark/style/less.d.ts +0 -1
- package/es/bottom-action-bar/style/index.d.ts +0 -1
- package/es/bottom-action-bar/style/less.d.ts +0 -1
- package/es/button/style/index.d.ts +0 -1
- package/es/button/style/less.d.ts +0 -1
- package/es/calendar/style/index.d.ts +0 -1
- package/es/calendar/style/less.d.ts +0 -1
- package/es/card/style/index.d.ts +0 -1
- package/es/card/style/less.d.ts +0 -1
- package/es/cascader/style/index.d.ts +0 -1
- package/es/cascader/style/less.d.ts +0 -1
- package/es/cell/style/index.d.ts +0 -1
- package/es/cell/style/less.d.ts +0 -1
- package/es/cell-group/style/index.d.ts +0 -1
- package/es/cell-group/style/less.d.ts +0 -1
- package/es/checkbox/style/index.d.ts +0 -1
- package/es/checkbox/style/less.d.ts +0 -1
- package/es/checkbox-group/style/index.d.ts +0 -1
- package/es/checkbox-group/style/less.d.ts +0 -1
- package/es/checkbox-panel/style/index.d.ts +0 -1
- package/es/checkbox-panel/style/less.d.ts +0 -1
- package/es/circle/style/index.d.ts +0 -1
- package/es/circle/style/less.d.ts +0 -1
- package/es/col/style/index.d.ts +0 -1
- package/es/col/style/less.d.ts +0 -1
- package/es/collapse/style/index.d.ts +0 -1
- package/es/collapse/style/less.d.ts +0 -1
- package/es/collapse-item/style/index.d.ts +0 -1
- package/es/collapse-item/style/less.d.ts +0 -1
- package/es/config-provider/style/index.d.ts +0 -1
- package/es/config-provider/style/less.d.ts +0 -1
- package/es/contact-card/style/index.d.ts +0 -1
- package/es/contact-card/style/less.d.ts +0 -1
- package/es/contact-edit/style/index.d.ts +0 -1
- package/es/contact-edit/style/less.d.ts +0 -1
- package/es/contact-list/style/index.d.ts +0 -1
- package/es/contact-list/style/less.d.ts +0 -1
- package/es/count-down/style/index.d.ts +0 -1
- package/es/count-down/style/less.d.ts +0 -1
- package/es/coupon/style/index.d.ts +0 -1
- package/es/coupon/style/less.d.ts +0 -1
- package/es/coupon-cell/style/index.d.ts +0 -1
- package/es/coupon-cell/style/less.d.ts +0 -1
- package/es/coupon-list/style/index.d.ts +0 -1
- package/es/coupon-list/style/less.d.ts +0 -1
- package/es/datetime-picker/style/index.d.ts +0 -1
- package/es/datetime-picker/style/less.d.ts +0 -1
- package/es/dialog/style/index.d.ts +0 -1
- package/es/dialog/style/less.d.ts +0 -1
- package/es/divider/style/index.d.ts +0 -1
- package/es/divider/style/less.d.ts +0 -1
- package/es/dropdown-item/style/index.d.ts +0 -1
- package/es/dropdown-item/style/less.d.ts +0 -1
- package/es/dropdown-menu/style/index.d.ts +0 -1
- package/es/dropdown-menu/style/less.d.ts +0 -1
- package/es/empty/style/index.d.ts +0 -1
- package/es/empty/style/less.d.ts +0 -1
- package/es/field/style/index.d.ts +0 -1
- package/es/field/style/less.d.ts +0 -1
- package/es/filter-tag/style/index.d.ts +0 -1
- package/es/filter-tag/style/less.d.ts +0 -1
- package/es/floor-select/style/index.d.ts +0 -1
- package/es/floor-select/style/less.d.ts +0 -1
- package/es/form/style/index.d.ts +0 -1
- package/es/form/style/less.d.ts +0 -1
- package/es/form-panel/style/index.d.ts +0 -1
- package/es/form-panel/style/less.d.ts +0 -1
- package/es/friendly-tip/style/index.d.ts +0 -1
- package/es/friendly-tip/style/less.d.ts +0 -1
- package/es/grid/style/index.d.ts +0 -1
- package/es/grid/style/less.d.ts +0 -1
- package/es/grid-item/style/index.d.ts +0 -1
- package/es/grid-item/style/less.d.ts +0 -1
- package/es/icon/style/index.d.ts +0 -1
- package/es/icon/style/less.d.ts +0 -1
- package/es/image/style/index.d.ts +0 -1
- package/es/image/style/less.d.ts +0 -1
- package/es/image-preview/style/index.d.ts +0 -1
- package/es/image-preview/style/less.d.ts +0 -1
- package/es/index-anchor/style/index.d.ts +0 -1
- package/es/index-anchor/style/less.d.ts +0 -1
- package/es/index-bar/style/index.d.ts +0 -1
- package/es/index-bar/style/less.d.ts +0 -1
- package/es/lazyload/style/index.d.ts +0 -1
- package/es/lazyload/style/less.d.ts +0 -1
- package/es/list/style/index.d.ts +0 -1
- package/es/list/style/less.d.ts +0 -1
- package/es/loading/style/index.d.ts +0 -1
- package/es/loading/style/less.d.ts +0 -1
- package/es/locale/style/index.d.ts +0 -1
- package/es/locale/style/less.d.ts +0 -1
- package/es/location-select/style/index.d.ts +0 -1
- package/es/location-select/style/less.d.ts +0 -1
- package/es/material-add/style/index.d.ts +0 -1
- package/es/material-add/style/less.d.ts +0 -1
- package/es/multi-person-select/style/index.d.ts +0 -1
- package/es/multi-person-select/style/less.d.ts +0 -1
- package/es/nav-bar/style/index.d.ts +0 -1
- package/es/nav-bar/style/less.d.ts +0 -1
- package/es/notice-bar/style/index.d.ts +0 -1
- package/es/notice-bar/style/less.d.ts +0 -1
- package/es/notify/style/index.d.ts +0 -1
- package/es/notify/style/less.d.ts +0 -1
- package/es/number-keyboard/style/index.d.ts +0 -1
- package/es/number-keyboard/style/less.d.ts +0 -1
- package/es/object-select/style/index.d.ts +0 -1
- package/es/object-select/style/less.d.ts +0 -1
- package/es/overlay/style/index.d.ts +0 -1
- package/es/overlay/style/less.d.ts +0 -1
- package/es/pagination/style/index.d.ts +0 -1
- package/es/pagination/style/less.d.ts +0 -1
- package/es/password-input/style/index.d.ts +0 -1
- package/es/password-input/style/less.d.ts +0 -1
- package/es/picker/style/index.d.ts +0 -1
- package/es/picker/style/less.d.ts +0 -1
- package/es/popover/style/index.d.ts +0 -1
- package/es/popover/style/less.d.ts +0 -1
- package/es/popup/style/index.d.ts +0 -1
- package/es/popup/style/less.d.ts +0 -1
- package/es/progress/style/index.d.ts +0 -1
- package/es/progress/style/less.d.ts +0 -1
- package/es/pull-refresh/style/index.d.ts +0 -1
- package/es/pull-refresh/style/less.d.ts +0 -1
- package/es/quantity-input/style/index.d.ts +0 -1
- package/es/quantity-input/style/less.d.ts +0 -1
- package/es/radio/style/index.d.ts +0 -1
- package/es/radio/style/less.d.ts +0 -1
- package/es/radio-group/style/index.d.ts +0 -1
- package/es/radio-group/style/less.d.ts +0 -1
- package/es/radio-panel/style/index.d.ts +0 -1
- package/es/radio-panel/style/less.d.ts +0 -1
- package/es/rate/style/index.d.ts +0 -1
- package/es/rate/style/less.d.ts +0 -1
- package/es/row/style/index.d.ts +0 -1
- package/es/row/style/less.d.ts +0 -1
- package/es/search/style/index.d.ts +0 -1
- package/es/search/style/less.d.ts +0 -1
- package/es/share-sheet/style/index.d.ts +0 -1
- package/es/share-sheet/style/less.d.ts +0 -1
- package/es/sidebar/style/index.d.ts +0 -1
- package/es/sidebar/style/less.d.ts +0 -1
- package/es/sidebar-item/style/index.d.ts +0 -1
- package/es/sidebar-item/style/less.d.ts +0 -1
- package/es/single-person-select/style/index.d.ts +0 -1
- package/es/single-person-select/style/less.d.ts +0 -1
- package/es/skeleton/style/index.d.ts +0 -1
- package/es/skeleton/style/less.d.ts +0 -1
- package/es/slider/style/index.d.ts +0 -1
- package/es/slider/style/less.d.ts +0 -1
- package/es/space/style/index.d.ts +0 -1
- package/es/space/style/less.d.ts +0 -1
- package/es/step/style/index.d.ts +0 -1
- package/es/step/style/less.d.ts +0 -1
- package/es/stepper/style/index.d.ts +0 -1
- package/es/stepper/style/less.d.ts +0 -1
- package/es/steps/style/index.d.ts +0 -1
- package/es/steps/style/less.d.ts +0 -1
- package/es/sticky/style/index.d.ts +0 -1
- package/es/sticky/style/less.d.ts +0 -1
- package/es/submit-bar/style/index.d.ts +0 -1
- package/es/submit-bar/style/less.d.ts +0 -1
- package/es/swipe/style/index.d.ts +0 -1
- package/es/swipe/style/less.d.ts +0 -1
- package/es/swipe-cell/style/index.d.ts +0 -1
- package/es/swipe-cell/style/less.d.ts +0 -1
- package/es/swipe-item/style/index.d.ts +0 -1
- package/es/swipe-item/style/less.d.ts +0 -1
- package/es/switch/style/index.d.ts +0 -1
- package/es/switch/style/less.d.ts +0 -1
- package/es/tab/style/index.d.ts +0 -1
- package/es/tab/style/less.d.ts +0 -1
- package/es/tabbar/style/index.d.ts +0 -1
- package/es/tabbar/style/less.d.ts +0 -1
- package/es/tabbar-item/style/index.d.ts +0 -1
- package/es/tabbar-item/style/less.d.ts +0 -1
- package/es/tabs/style/index.d.ts +0 -1
- package/es/tabs/style/less.d.ts +0 -1
- package/es/tag/style/index.d.ts +0 -1
- package/es/tag/style/less.d.ts +0 -1
- package/es/toast/style/index.d.ts +0 -1
- package/es/toast/style/less.d.ts +0 -1
- package/es/tree-select/style/index.d.ts +0 -1
- package/es/tree-select/style/less.d.ts +0 -1
- package/es/uploader/style/index.d.ts +0 -1
- package/es/uploader/style/less.d.ts +0 -1
- package/es/video-preview/style/index.d.ts +0 -1
- package/es/video-preview/style/less.d.ts +0 -1
- package/es/work-order-filter/style/index.d.ts +0 -1
- package/es/work-order-filter/style/less.d.ts +0 -1
- package/lib/action-bar/style/index.d.ts +0 -1
- package/lib/action-bar/style/less.d.ts +0 -1
- package/lib/action-bar-button/style/index.d.ts +0 -1
- package/lib/action-bar-button/style/less.d.ts +0 -1
- package/lib/action-bar-icon/style/index.d.ts +0 -1
- package/lib/action-bar-icon/style/less.d.ts +0 -1
- package/lib/action-sheet/style/index.d.ts +0 -1
- package/lib/action-sheet/style/less.d.ts +0 -1
- package/lib/address-edit/style/index.d.ts +0 -1
- package/lib/address-edit/style/less.d.ts +0 -1
- package/lib/address-list/style/index.d.ts +0 -1
- package/lib/address-list/style/less.d.ts +0 -1
- package/lib/area/style/index.d.ts +0 -1
- package/lib/area/style/less.d.ts +0 -1
- package/lib/background/style/index.d.ts +0 -1
- package/lib/background/style/less.d.ts +0 -1
- package/lib/badge/style/index.d.ts +0 -1
- package/lib/badge/style/less.d.ts +0 -1
- package/lib/blue-mark/style/index.d.ts +0 -1
- package/lib/blue-mark/style/less.d.ts +0 -1
- package/lib/bottom-action-bar/style/index.d.ts +0 -1
- package/lib/bottom-action-bar/style/less.d.ts +0 -1
- package/lib/button/style/index.d.ts +0 -1
- package/lib/button/style/less.d.ts +0 -1
- package/lib/calendar/style/index.d.ts +0 -1
- package/lib/calendar/style/less.d.ts +0 -1
- package/lib/card/style/index.d.ts +0 -1
- package/lib/card/style/less.d.ts +0 -1
- package/lib/cascader/style/index.d.ts +0 -1
- package/lib/cascader/style/less.d.ts +0 -1
- package/lib/cell/style/index.d.ts +0 -1
- package/lib/cell/style/less.d.ts +0 -1
- package/lib/cell-group/style/index.d.ts +0 -1
- package/lib/cell-group/style/less.d.ts +0 -1
- package/lib/checkbox/style/index.d.ts +0 -1
- package/lib/checkbox/style/less.d.ts +0 -1
- package/lib/checkbox-group/style/index.d.ts +0 -1
- package/lib/checkbox-group/style/less.d.ts +0 -1
- package/lib/checkbox-panel/style/index.d.ts +0 -1
- package/lib/checkbox-panel/style/less.d.ts +0 -1
- package/lib/circle/style/index.d.ts +0 -1
- package/lib/circle/style/less.d.ts +0 -1
- package/lib/col/style/index.d.ts +0 -1
- package/lib/col/style/less.d.ts +0 -1
- package/lib/collapse/style/index.d.ts +0 -1
- package/lib/collapse/style/less.d.ts +0 -1
- package/lib/collapse-item/style/index.d.ts +0 -1
- package/lib/collapse-item/style/less.d.ts +0 -1
- package/lib/config-provider/style/index.d.ts +0 -1
- package/lib/config-provider/style/less.d.ts +0 -1
- package/lib/contact-card/style/index.d.ts +0 -1
- package/lib/contact-card/style/less.d.ts +0 -1
- package/lib/contact-edit/style/index.d.ts +0 -1
- package/lib/contact-edit/style/less.d.ts +0 -1
- package/lib/contact-list/style/index.d.ts +0 -1
- package/lib/contact-list/style/less.d.ts +0 -1
- package/lib/count-down/style/index.d.ts +0 -1
- package/lib/count-down/style/less.d.ts +0 -1
- package/lib/coupon/style/index.d.ts +0 -1
- package/lib/coupon/style/less.d.ts +0 -1
- package/lib/coupon-cell/style/index.d.ts +0 -1
- package/lib/coupon-cell/style/less.d.ts +0 -1
- package/lib/coupon-list/style/index.d.ts +0 -1
- package/lib/coupon-list/style/less.d.ts +0 -1
- package/lib/datetime-picker/style/index.d.ts +0 -1
- package/lib/datetime-picker/style/less.d.ts +0 -1
- package/lib/dialog/style/index.d.ts +0 -1
- package/lib/dialog/style/less.d.ts +0 -1
- package/lib/divider/style/index.d.ts +0 -1
- package/lib/divider/style/less.d.ts +0 -1
- package/lib/dropdown-item/style/index.d.ts +0 -1
- package/lib/dropdown-item/style/less.d.ts +0 -1
- package/lib/dropdown-menu/style/index.d.ts +0 -1
- package/lib/dropdown-menu/style/less.d.ts +0 -1
- package/lib/empty/style/index.d.ts +0 -1
- package/lib/empty/style/less.d.ts +0 -1
- package/lib/field/style/index.d.ts +0 -1
- package/lib/field/style/less.d.ts +0 -1
- package/lib/filter-tag/style/index.d.ts +0 -1
- package/lib/filter-tag/style/less.d.ts +0 -1
- package/lib/floor-select/style/index.d.ts +0 -1
- package/lib/floor-select/style/less.d.ts +0 -1
- package/lib/form/style/index.d.ts +0 -1
- package/lib/form/style/less.d.ts +0 -1
- package/lib/form-panel/style/index.d.ts +0 -1
- package/lib/form-panel/style/less.d.ts +0 -1
- package/lib/friendly-tip/style/index.d.ts +0 -1
- package/lib/friendly-tip/style/less.d.ts +0 -1
- package/lib/grid/style/index.d.ts +0 -1
- package/lib/grid/style/less.d.ts +0 -1
- package/lib/grid-item/style/index.d.ts +0 -1
- package/lib/grid-item/style/less.d.ts +0 -1
- package/lib/icon/style/index.d.ts +0 -1
- package/lib/icon/style/less.d.ts +0 -1
- package/lib/image/style/index.d.ts +0 -1
- package/lib/image/style/less.d.ts +0 -1
- package/lib/image-preview/style/index.d.ts +0 -1
- package/lib/image-preview/style/less.d.ts +0 -1
- package/lib/index-anchor/style/index.d.ts +0 -1
- package/lib/index-anchor/style/less.d.ts +0 -1
- package/lib/index-bar/style/index.d.ts +0 -1
- package/lib/index-bar/style/less.d.ts +0 -1
- package/lib/lazyload/style/index.d.ts +0 -1
- package/lib/lazyload/style/less.d.ts +0 -1
- package/lib/list/style/index.d.ts +0 -1
- package/lib/list/style/less.d.ts +0 -1
- package/lib/loading/style/index.d.ts +0 -1
- package/lib/loading/style/less.d.ts +0 -1
- package/lib/locale/style/index.d.ts +0 -1
- package/lib/locale/style/less.d.ts +0 -1
- package/lib/location-select/style/index.d.ts +0 -1
- package/lib/location-select/style/less.d.ts +0 -1
- package/lib/material-add/style/index.d.ts +0 -1
- package/lib/material-add/style/less.d.ts +0 -1
- package/lib/multi-person-select/style/index.d.ts +0 -1
- package/lib/multi-person-select/style/less.d.ts +0 -1
- package/lib/nav-bar/style/index.d.ts +0 -1
- package/lib/nav-bar/style/less.d.ts +0 -1
- package/lib/notice-bar/style/index.d.ts +0 -1
- package/lib/notice-bar/style/less.d.ts +0 -1
- package/lib/notify/style/index.d.ts +0 -1
- package/lib/notify/style/less.d.ts +0 -1
- package/lib/number-keyboard/style/index.d.ts +0 -1
- package/lib/number-keyboard/style/less.d.ts +0 -1
- package/lib/object-select/style/index.d.ts +0 -1
- package/lib/object-select/style/less.d.ts +0 -1
- package/lib/overlay/style/index.d.ts +0 -1
- package/lib/overlay/style/less.d.ts +0 -1
- package/lib/pagination/style/index.d.ts +0 -1
- package/lib/pagination/style/less.d.ts +0 -1
- package/lib/password-input/style/index.d.ts +0 -1
- package/lib/password-input/style/less.d.ts +0 -1
- package/lib/picker/style/index.d.ts +0 -1
- package/lib/picker/style/less.d.ts +0 -1
- package/lib/popover/style/index.d.ts +0 -1
- package/lib/popover/style/less.d.ts +0 -1
- package/lib/popup/style/index.d.ts +0 -1
- package/lib/popup/style/less.d.ts +0 -1
- package/lib/progress/style/index.d.ts +0 -1
- package/lib/progress/style/less.d.ts +0 -1
- package/lib/pull-refresh/style/index.d.ts +0 -1
- package/lib/pull-refresh/style/less.d.ts +0 -1
- package/lib/quantity-input/style/index.d.ts +0 -1
- package/lib/quantity-input/style/less.d.ts +0 -1
- package/lib/radio/style/index.d.ts +0 -1
- package/lib/radio/style/less.d.ts +0 -1
- package/lib/radio-group/style/index.d.ts +0 -1
- package/lib/radio-group/style/less.d.ts +0 -1
- package/lib/radio-panel/style/index.d.ts +0 -1
- package/lib/radio-panel/style/less.d.ts +0 -1
- package/lib/rate/style/index.d.ts +0 -1
- package/lib/rate/style/less.d.ts +0 -1
- package/lib/row/style/index.d.ts +0 -1
- package/lib/row/style/less.d.ts +0 -1
- package/lib/search/style/index.d.ts +0 -1
- package/lib/search/style/less.d.ts +0 -1
- package/lib/share-sheet/style/index.d.ts +0 -1
- package/lib/share-sheet/style/less.d.ts +0 -1
- package/lib/sidebar/style/index.d.ts +0 -1
- package/lib/sidebar/style/less.d.ts +0 -1
- package/lib/sidebar-item/style/index.d.ts +0 -1
- package/lib/sidebar-item/style/less.d.ts +0 -1
- package/lib/single-person-select/style/index.d.ts +0 -1
- package/lib/single-person-select/style/less.d.ts +0 -1
- package/lib/skeleton/style/index.d.ts +0 -1
- package/lib/skeleton/style/less.d.ts +0 -1
- package/lib/slider/style/index.d.ts +0 -1
- package/lib/slider/style/less.d.ts +0 -1
- package/lib/space/style/index.d.ts +0 -1
- package/lib/space/style/less.d.ts +0 -1
- package/lib/step/style/index.d.ts +0 -1
- package/lib/step/style/less.d.ts +0 -1
- package/lib/stepper/style/index.d.ts +0 -1
- package/lib/stepper/style/less.d.ts +0 -1
- package/lib/steps/style/index.d.ts +0 -1
- package/lib/steps/style/less.d.ts +0 -1
- package/lib/sticky/style/index.d.ts +0 -1
- package/lib/sticky/style/less.d.ts +0 -1
- package/lib/submit-bar/style/index.d.ts +0 -1
- package/lib/submit-bar/style/less.d.ts +0 -1
- package/lib/swipe/style/index.d.ts +0 -1
- package/lib/swipe/style/less.d.ts +0 -1
- package/lib/swipe-cell/style/index.d.ts +0 -1
- package/lib/swipe-cell/style/less.d.ts +0 -1
- package/lib/swipe-item/style/index.d.ts +0 -1
- package/lib/swipe-item/style/less.d.ts +0 -1
- package/lib/switch/style/index.d.ts +0 -1
- package/lib/switch/style/less.d.ts +0 -1
- package/lib/tab/style/index.d.ts +0 -1
- package/lib/tab/style/less.d.ts +0 -1
- package/lib/tabbar/style/index.d.ts +0 -1
- package/lib/tabbar/style/less.d.ts +0 -1
- package/lib/tabbar-item/style/index.d.ts +0 -1
- package/lib/tabbar-item/style/less.d.ts +0 -1
- package/lib/tabs/style/index.d.ts +0 -1
- package/lib/tabs/style/less.d.ts +0 -1
- package/lib/tag/style/index.d.ts +0 -1
- package/lib/tag/style/less.d.ts +0 -1
- package/lib/toast/style/index.d.ts +0 -1
- package/lib/toast/style/less.d.ts +0 -1
- package/lib/tree-select/style/index.d.ts +0 -1
- package/lib/tree-select/style/less.d.ts +0 -1
- package/lib/uploader/style/index.d.ts +0 -1
- package/lib/uploader/style/less.d.ts +0 -1
- package/lib/video-preview/style/index.d.ts +0 -1
- package/lib/video-preview/style/less.d.ts +0 -1
- package/lib/work-order-filter/style/index.d.ts +0 -1
- package/lib/work-order-filter/style/less.d.ts +0 -1
- /package/es/{action-bar-button/style/index.d.ts → bot-mobile/fab-position.test.d.ts} +0 -0
- /package/es/{action-bar-button/style/less.d.ts → bot-mobile/voice-zone.test.d.ts} +0 -0
- /package/{es/action-bar-icon/style/index.d.ts → lib/bot-mobile/fab-position.test.d.ts} +0 -0
- /package/{es/action-bar-icon/style/less.d.ts → lib/bot-mobile/voice-zone.test.d.ts} +0 -0
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
var stdin_default = {
|
|
2
|
+
name: "vant-icon",
|
|
3
|
+
basic: [
|
|
4
|
+
"arrow",
|
|
5
|
+
"arrow-left",
|
|
6
|
+
"arrow-up",
|
|
7
|
+
"arrow-down",
|
|
8
|
+
"success",
|
|
9
|
+
"cross",
|
|
10
|
+
"plus",
|
|
11
|
+
"minus",
|
|
12
|
+
"fail",
|
|
13
|
+
"circle"
|
|
14
|
+
],
|
|
15
|
+
outline: [
|
|
16
|
+
"alarm-clock-minus",
|
|
17
|
+
"activity",
|
|
18
|
+
"eye-orders",
|
|
19
|
+
"add-box",
|
|
20
|
+
"add-orders",
|
|
21
|
+
"handshake",
|
|
22
|
+
"minus",
|
|
23
|
+
"cut",
|
|
24
|
+
// has corresponding filled icon
|
|
25
|
+
"location-o",
|
|
26
|
+
"like-o",
|
|
27
|
+
"star-o",
|
|
28
|
+
"phone-o",
|
|
29
|
+
"setting-o",
|
|
30
|
+
"fire-o",
|
|
31
|
+
"coupon-o",
|
|
32
|
+
"cart-o",
|
|
33
|
+
"shopping-cart-o",
|
|
34
|
+
"cart-circle-o",
|
|
35
|
+
"friends-o",
|
|
36
|
+
"comment-o",
|
|
37
|
+
"gem-o",
|
|
38
|
+
"gift-o",
|
|
39
|
+
"point-gift-o",
|
|
40
|
+
"send-gift-o",
|
|
41
|
+
"service-o",
|
|
42
|
+
"bag-o",
|
|
43
|
+
"todo-list-o",
|
|
44
|
+
"balance-list-o",
|
|
45
|
+
"close",
|
|
46
|
+
"clock-o",
|
|
47
|
+
"question-o",
|
|
48
|
+
"passed",
|
|
49
|
+
"add-o",
|
|
50
|
+
"gold-coin-o",
|
|
51
|
+
"info-o",
|
|
52
|
+
"play-circle-o",
|
|
53
|
+
"pause-circle-o",
|
|
54
|
+
"stop-circle-o",
|
|
55
|
+
"warning-o",
|
|
56
|
+
"phone-circle-o",
|
|
57
|
+
"music-o",
|
|
58
|
+
"smile-o",
|
|
59
|
+
"thumb-circle-o",
|
|
60
|
+
"comment-circle-o",
|
|
61
|
+
"browsing-history-o",
|
|
62
|
+
"underway-o",
|
|
63
|
+
"more-o",
|
|
64
|
+
"video-o",
|
|
65
|
+
"shop-o",
|
|
66
|
+
"shop-collect-o",
|
|
67
|
+
"share-o",
|
|
68
|
+
"chat-o",
|
|
69
|
+
"smile-comment-o",
|
|
70
|
+
"vip-card-o",
|
|
71
|
+
"award-o",
|
|
72
|
+
"diamond-o",
|
|
73
|
+
"volume-o",
|
|
74
|
+
"cluster-o",
|
|
75
|
+
"wap-home-o",
|
|
76
|
+
"photo-o",
|
|
77
|
+
"gift-card-o",
|
|
78
|
+
"expand-o",
|
|
79
|
+
"medal-o",
|
|
80
|
+
"good-job-o",
|
|
81
|
+
"manager-o",
|
|
82
|
+
"label-o",
|
|
83
|
+
"bookmark-o",
|
|
84
|
+
"bill-o",
|
|
85
|
+
"hot-o",
|
|
86
|
+
"hot-sale-o",
|
|
87
|
+
"new-o",
|
|
88
|
+
"new-arrival-o",
|
|
89
|
+
"goods-collect-o",
|
|
90
|
+
"eye-o",
|
|
91
|
+
"delete-o",
|
|
92
|
+
"font-o",
|
|
93
|
+
// without corresponding filled icon
|
|
94
|
+
"balance-o",
|
|
95
|
+
"refund-o",
|
|
96
|
+
"birthday-cake-o",
|
|
97
|
+
"user-o",
|
|
98
|
+
"orders-o",
|
|
99
|
+
"tv-o",
|
|
100
|
+
"envelop-o",
|
|
101
|
+
"flag-o",
|
|
102
|
+
"flower-o",
|
|
103
|
+
"filter-o",
|
|
104
|
+
"bar-chart-o",
|
|
105
|
+
"chart-trending-o",
|
|
106
|
+
"brush-o",
|
|
107
|
+
"bullhorn-o",
|
|
108
|
+
"hotel-o",
|
|
109
|
+
"cashier-o",
|
|
110
|
+
"newspaper-o",
|
|
111
|
+
"warn-o",
|
|
112
|
+
"notes-o",
|
|
113
|
+
"calendar-o",
|
|
114
|
+
"bulb-o",
|
|
115
|
+
"user-circle-o",
|
|
116
|
+
"desktop-o",
|
|
117
|
+
"apps-o",
|
|
118
|
+
"home-o",
|
|
119
|
+
"back-top",
|
|
120
|
+
"search",
|
|
121
|
+
"points",
|
|
122
|
+
"edit",
|
|
123
|
+
"qr",
|
|
124
|
+
"qr-invalid",
|
|
125
|
+
"closed-eye",
|
|
126
|
+
"down",
|
|
127
|
+
"scan",
|
|
128
|
+
"revoke",
|
|
129
|
+
"free-postage",
|
|
130
|
+
"certificate",
|
|
131
|
+
"logistics",
|
|
132
|
+
"contact",
|
|
133
|
+
"cash-back-record",
|
|
134
|
+
"after-sale",
|
|
135
|
+
"exchange",
|
|
136
|
+
"upgrade",
|
|
137
|
+
"ellipsis",
|
|
138
|
+
"description",
|
|
139
|
+
"records",
|
|
140
|
+
"sign",
|
|
141
|
+
"completed",
|
|
142
|
+
"failure",
|
|
143
|
+
"ecard-pay",
|
|
144
|
+
"peer-pay",
|
|
145
|
+
"balance-pay",
|
|
146
|
+
"credit-pay",
|
|
147
|
+
"debit-pay",
|
|
148
|
+
"cash-on-deliver",
|
|
149
|
+
"other-pay",
|
|
150
|
+
"tosend",
|
|
151
|
+
"pending-payment",
|
|
152
|
+
"paid",
|
|
153
|
+
"aim",
|
|
154
|
+
"discount",
|
|
155
|
+
"idcard",
|
|
156
|
+
"replay",
|
|
157
|
+
"shrink",
|
|
158
|
+
"shield-o",
|
|
159
|
+
"guide-o",
|
|
160
|
+
"cash-o",
|
|
161
|
+
"link-o",
|
|
162
|
+
"miniprogram-o",
|
|
163
|
+
"equipment"
|
|
164
|
+
],
|
|
165
|
+
filled: [
|
|
166
|
+
// has corresponding outline icon
|
|
167
|
+
"location",
|
|
168
|
+
"like",
|
|
169
|
+
"star",
|
|
170
|
+
"phone",
|
|
171
|
+
"setting",
|
|
172
|
+
"fire",
|
|
173
|
+
"coupon",
|
|
174
|
+
"cart",
|
|
175
|
+
"shopping-cart",
|
|
176
|
+
"cart-circle",
|
|
177
|
+
"friends",
|
|
178
|
+
"comment",
|
|
179
|
+
"gem",
|
|
180
|
+
"gift",
|
|
181
|
+
"point-gift",
|
|
182
|
+
"send-gift",
|
|
183
|
+
"service",
|
|
184
|
+
"bag",
|
|
185
|
+
"todo-list",
|
|
186
|
+
"balance-list",
|
|
187
|
+
"clear",
|
|
188
|
+
"clock",
|
|
189
|
+
"question",
|
|
190
|
+
"checked",
|
|
191
|
+
"add",
|
|
192
|
+
"gold-coin",
|
|
193
|
+
"info",
|
|
194
|
+
"play-circle",
|
|
195
|
+
"pause-circle",
|
|
196
|
+
"stop-circle",
|
|
197
|
+
"warning",
|
|
198
|
+
"phone-circle",
|
|
199
|
+
"music",
|
|
200
|
+
"smile",
|
|
201
|
+
"thumb-circle",
|
|
202
|
+
"comment-circle",
|
|
203
|
+
"browsing-history",
|
|
204
|
+
"underway",
|
|
205
|
+
"more",
|
|
206
|
+
"video",
|
|
207
|
+
"shop",
|
|
208
|
+
"shop-collect",
|
|
209
|
+
"share",
|
|
210
|
+
"chat",
|
|
211
|
+
"smile-comment",
|
|
212
|
+
"vip-card",
|
|
213
|
+
"award",
|
|
214
|
+
"diamond",
|
|
215
|
+
"volume",
|
|
216
|
+
"cluster",
|
|
217
|
+
"wap-home",
|
|
218
|
+
"photo",
|
|
219
|
+
"gift-card",
|
|
220
|
+
"expand",
|
|
221
|
+
"medal",
|
|
222
|
+
"good-job",
|
|
223
|
+
"manager",
|
|
224
|
+
"label",
|
|
225
|
+
"bookmark",
|
|
226
|
+
"bill",
|
|
227
|
+
"hot",
|
|
228
|
+
"hot-sale",
|
|
229
|
+
"new",
|
|
230
|
+
"new-arrival",
|
|
231
|
+
"goods-collect",
|
|
232
|
+
"eye",
|
|
233
|
+
"delete",
|
|
234
|
+
"font",
|
|
235
|
+
// without corresponding outline icon
|
|
236
|
+
"wechat",
|
|
237
|
+
"wechat-pay",
|
|
238
|
+
"alipay",
|
|
239
|
+
"photograph",
|
|
240
|
+
"youzan-shield",
|
|
241
|
+
"umbrella-circle",
|
|
242
|
+
"bell",
|
|
243
|
+
"printer",
|
|
244
|
+
"map-marked",
|
|
245
|
+
"card",
|
|
246
|
+
"add-square",
|
|
247
|
+
"live",
|
|
248
|
+
"lock",
|
|
249
|
+
"audio",
|
|
250
|
+
"graphic",
|
|
251
|
+
"column",
|
|
252
|
+
"invitation",
|
|
253
|
+
"play",
|
|
254
|
+
"pause",
|
|
255
|
+
"stop",
|
|
256
|
+
"weapp-nav",
|
|
257
|
+
"ascending",
|
|
258
|
+
"descending",
|
|
259
|
+
"bars",
|
|
260
|
+
"wap-nav",
|
|
261
|
+
"enlarge",
|
|
262
|
+
"photo-fail",
|
|
263
|
+
"sort"
|
|
264
|
+
]
|
|
265
|
+
};
|
|
266
|
+
export {
|
|
267
|
+
stdin_default as default
|
|
268
|
+
};
|
package/es/icon/index.less
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
// Names added in the current local iconfont export. The existing icon names
|
|
27
|
-
// keep their matching definitions
|
|
27
|
+
// keep their matching definitions.
|
|
28
28
|
.van-icon-word-edit:before { content: '\e66a'; }
|
|
29
29
|
.van-icon-trangle-right:before { content: '\e669'; }
|
|
30
30
|
.van-icon-lock-o:before { content: '\e664'; }
|
package/es/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export * from "./area";
|
|
|
8
8
|
export * from "./background";
|
|
9
9
|
export * from "./badge";
|
|
10
10
|
export * from "./blue-mark";
|
|
11
|
+
export * from "./bot-mobile";
|
|
11
12
|
export * from "./bottom-action-bar";
|
|
12
13
|
export * from "./button";
|
|
13
14
|
export * from "./calendar";
|
|
@@ -101,6 +102,7 @@ export * from "./toast";
|
|
|
101
102
|
export * from "./tree-select";
|
|
102
103
|
export * from "./uploader";
|
|
103
104
|
export * from "./video-preview";
|
|
105
|
+
export * from "./work-order-card";
|
|
104
106
|
export * from "./work-order-filter";
|
|
105
107
|
declare namespace _default {
|
|
106
108
|
export { install };
|
|
@@ -108,4 +110,4 @@ declare namespace _default {
|
|
|
108
110
|
}
|
|
109
111
|
export default _default;
|
|
110
112
|
export function install(app: any): void;
|
|
111
|
-
export const version: "0.0.
|
|
113
|
+
export const version: "0.0.27";
|
package/es/index.mjs
CHANGED
|
@@ -8,6 +8,7 @@ import { Area } from "./area/index.mjs";
|
|
|
8
8
|
import { Background } from "./background/index.mjs";
|
|
9
9
|
import { Badge } from "./badge/index.mjs";
|
|
10
10
|
import { BlueMark } from "./blue-mark/index.mjs";
|
|
11
|
+
import { BotMobile } from "./bot-mobile/index.mjs";
|
|
11
12
|
import { BottomActionBar } from "./bottom-action-bar/index.mjs";
|
|
12
13
|
import { Button } from "./button/index.mjs";
|
|
13
14
|
import { Calendar } from "./calendar/index.mjs";
|
|
@@ -100,8 +101,9 @@ import { Toast } from "./toast/index.mjs";
|
|
|
100
101
|
import { TreeSelect } from "./tree-select/index.mjs";
|
|
101
102
|
import { Uploader } from "./uploader/index.mjs";
|
|
102
103
|
import { VideoPreview } from "./video-preview/index.mjs";
|
|
104
|
+
import { WorkOrderCard } from "./work-order-card/index.mjs";
|
|
103
105
|
import { WorkOrderFilter } from "./work-order-filter/index.mjs";
|
|
104
|
-
const version = "0.0.
|
|
106
|
+
const version = "0.0.27";
|
|
105
107
|
function install(app) {
|
|
106
108
|
const components = [
|
|
107
109
|
ActionBar,
|
|
@@ -114,6 +116,7 @@ function install(app) {
|
|
|
114
116
|
Background,
|
|
115
117
|
Badge,
|
|
116
118
|
BlueMark,
|
|
119
|
+
BotMobile,
|
|
117
120
|
BottomActionBar,
|
|
118
121
|
Button,
|
|
119
122
|
Calendar,
|
|
@@ -206,6 +209,7 @@ function install(app) {
|
|
|
206
209
|
TreeSelect,
|
|
207
210
|
Uploader,
|
|
208
211
|
VideoPreview,
|
|
212
|
+
WorkOrderCard,
|
|
209
213
|
WorkOrderFilter
|
|
210
214
|
];
|
|
211
215
|
components.forEach((item) => {
|
|
@@ -226,6 +230,7 @@ export * from "./area/index.mjs";
|
|
|
226
230
|
export * from "./background/index.mjs";
|
|
227
231
|
export * from "./badge/index.mjs";
|
|
228
232
|
export * from "./blue-mark/index.mjs";
|
|
233
|
+
export * from "./bot-mobile/index.mjs";
|
|
229
234
|
export * from "./bottom-action-bar/index.mjs";
|
|
230
235
|
export * from "./button/index.mjs";
|
|
231
236
|
export * from "./calendar/index.mjs";
|
|
@@ -319,6 +324,7 @@ export * from "./toast/index.mjs";
|
|
|
319
324
|
export * from "./tree-select/index.mjs";
|
|
320
325
|
export * from "./uploader/index.mjs";
|
|
321
326
|
export * from "./video-preview/index.mjs";
|
|
327
|
+
export * from "./work-order-card/index.mjs";
|
|
322
328
|
export * from "./work-order-filter/index.mjs";
|
|
323
329
|
var stdin_default = {
|
|
324
330
|
install,
|
|
@@ -17,8 +17,8 @@ import "../../radio/index.css";
|
|
|
17
17
|
import "../../cell/index.css";
|
|
18
18
|
import "../../tree-select/index.css";
|
|
19
19
|
import "../../field/index.css";
|
|
20
|
-
import "../../search/index.css";
|
|
21
20
|
import "../../dialog/index.css";
|
|
21
|
+
import "../../search/index.css";
|
|
22
22
|
import "../../sticky/index.css";
|
|
23
23
|
import "../../swipe/index.css";
|
|
24
24
|
import "../../swipe-item/index.css";
|
|
@@ -17,8 +17,8 @@ import "../../radio/index.less";
|
|
|
17
17
|
import "../../cell/index.less";
|
|
18
18
|
import "../../tree-select/index.less";
|
|
19
19
|
import "../../field/index.less";
|
|
20
|
-
import "../../search/index.less";
|
|
21
20
|
import "../../dialog/index.less";
|
|
21
|
+
import "../../search/index.less";
|
|
22
22
|
import "../../sticky/index.less";
|
|
23
23
|
import "../../swipe/index.less";
|
|
24
24
|
import "../../swipe-item/index.less";
|
|
@@ -77,8 +77,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
77
77
|
title: string;
|
|
78
78
|
modelValue: number[];
|
|
79
79
|
show: boolean;
|
|
80
|
-
confirmText: string;
|
|
81
80
|
items: MaterialAddItem[];
|
|
81
|
+
confirmText: string;
|
|
82
82
|
categories: MaterialAddCategory[];
|
|
83
83
|
}>;
|
|
84
84
|
export default _default;
|
|
@@ -51,8 +51,8 @@ export declare const MaterialAdd: import("../utils").WithInstall<import("vue").D
|
|
|
51
51
|
title: string;
|
|
52
52
|
modelValue: number[];
|
|
53
53
|
show: boolean;
|
|
54
|
-
confirmText: string;
|
|
55
54
|
items: import("./types").MaterialAddItem[];
|
|
55
|
+
confirmText: string;
|
|
56
56
|
categories: import("./types").MaterialAddCategory[];
|
|
57
57
|
}>>;
|
|
58
58
|
export default MaterialAdd;
|
|
@@ -92,8 +92,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
92
92
|
expanded: boolean;
|
|
93
93
|
expandText: string;
|
|
94
94
|
collapseText: string;
|
|
95
|
-
confirmText: string;
|
|
96
95
|
items: QuantityInputItem[];
|
|
96
|
+
confirmText: string;
|
|
97
97
|
clearText: string;
|
|
98
98
|
}>;
|
|
99
99
|
export default _default;
|
|
@@ -60,8 +60,8 @@ export declare const QuantityInput: import("../utils").WithInstall<import("vue")
|
|
|
60
60
|
expanded: boolean;
|
|
61
61
|
expandText: string;
|
|
62
62
|
collapseText: string;
|
|
63
|
-
confirmText: string;
|
|
64
63
|
items: import("./QuantityInput").QuantityInputItem[];
|
|
64
|
+
confirmText: string;
|
|
65
65
|
clearText: string;
|
|
66
66
|
}>>;
|
|
67
67
|
export declare const BatchMultiSelect: import("../utils").WithInstall<import("vue").DefineComponent<{
|
|
@@ -126,8 +126,8 @@ export declare const BatchMultiSelect: import("../utils").WithInstall<import("vu
|
|
|
126
126
|
expanded: boolean;
|
|
127
127
|
expandText: string;
|
|
128
128
|
collapseText: string;
|
|
129
|
-
confirmText: string;
|
|
130
129
|
items: import("./QuantityInput").QuantityInputItem[];
|
|
130
|
+
confirmText: string;
|
|
131
131
|
clearText: string;
|
|
132
132
|
}>>;
|
|
133
133
|
export default QuantityInput;
|
|
@@ -4,6 +4,8 @@ import { ActionSheet } from "../action-sheet/index.mjs";
|
|
|
4
4
|
import { NavBar } from "../nav-bar/index.mjs";
|
|
5
5
|
import { Icon } from "../icon/index.mjs";
|
|
6
6
|
import { Cell } from "../cell/index.mjs";
|
|
7
|
+
import { Radio } from "../radio/index.mjs";
|
|
8
|
+
import { RadioGroup } from "../radio-group/index.mjs";
|
|
7
9
|
const [name, bem] = createNamespace("radio-panel");
|
|
8
10
|
const radioPanelProps = {
|
|
9
11
|
show: Boolean,
|
|
@@ -49,20 +51,30 @@ var stdin_default = defineComponent({
|
|
|
49
51
|
"class": bem("body")
|
|
50
52
|
}, [_createVNode("div", {
|
|
51
53
|
"class": bem("card")
|
|
52
|
-
}, [
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
}
|
|
59
|
-
"onClick": () => select(option)
|
|
54
|
+
}, [_createVNode(RadioGroup, {
|
|
55
|
+
"modelValue": props.modelValue,
|
|
56
|
+
"onUpdate:modelValue": (value) => {
|
|
57
|
+
const option = props.options.find((item) => item.value === value);
|
|
58
|
+
if (option)
|
|
59
|
+
select(option);
|
|
60
|
+
}
|
|
60
61
|
}, {
|
|
61
|
-
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
|
|
62
|
+
default: () => [props.options.map((option) => _createVNode(Cell, {
|
|
63
|
+
"key": option.value,
|
|
64
|
+
"clickable": !option.disabled,
|
|
65
|
+
"title": option.label,
|
|
66
|
+
"titleStyle": {
|
|
67
|
+
color: props.modelValue === option.value ? "var(--van-primary-color)" : void 0
|
|
68
|
+
},
|
|
69
|
+
"onClick": () => select(option)
|
|
70
|
+
}, {
|
|
71
|
+
"right-icon": () => _createVNode(Radio, {
|
|
72
|
+
"name": option.value,
|
|
73
|
+
"disabled": option.disabled,
|
|
74
|
+
"onClick": (event) => event.stopPropagation()
|
|
75
|
+
}, null)
|
|
76
|
+
}))]
|
|
77
|
+
})])])])]
|
|
66
78
|
});
|
|
67
79
|
}
|
|
68
80
|
});
|
|
@@ -59,8 +59,7 @@ var stdin_default = defineComponent({
|
|
|
59
59
|
}, [_createVNode(Badge, _mergeProps({
|
|
60
60
|
"dot": dot,
|
|
61
61
|
"class": bem("text"),
|
|
62
|
-
"content": badge
|
|
63
|
-
"color": "var(--van-primary-color)"
|
|
62
|
+
"content": badge
|
|
64
63
|
}, props.badgeProps), {
|
|
65
64
|
default: () => [slots.title ? slots.title() : title]
|
|
66
65
|
})]);
|
package/es/sticky/Sticky.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
52
52
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
53
53
|
}, {
|
|
54
54
|
position: StickyPosition;
|
|
55
|
-
offsetTop: string | number;
|
|
56
55
|
offsetBottom: string | number;
|
|
56
|
+
offsetTop: string | number;
|
|
57
57
|
}>;
|
|
58
58
|
export default _default;
|
package/es/sticky/index.d.ts
CHANGED
|
@@ -33,8 +33,8 @@ export declare const Sticky: import("../utils").WithInstall<import("vue").Define
|
|
|
33
33
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
34
34
|
}, {
|
|
35
35
|
position: import("./Sticky").StickyPosition;
|
|
36
|
-
offsetTop: string | number;
|
|
37
36
|
offsetBottom: string | number;
|
|
37
|
+
offsetTop: string | number;
|
|
38
38
|
}>>;
|
|
39
39
|
export default Sticky;
|
|
40
40
|
export type { StickyProps, StickyPosition } from './Sticky';
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import { type ExtractPropTypes } from 'vue';
|
|
2
|
+
import type { WorkOrderCardAction, WorkOrderCardInfo, WorkOrderCardTag } from './types';
|
|
3
|
+
declare const props: {
|
|
4
|
+
title: {
|
|
5
|
+
type: import("vue").PropType<string>;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
expanded: {
|
|
9
|
+
type: () => boolean | undefined;
|
|
10
|
+
default: undefined;
|
|
11
|
+
};
|
|
12
|
+
defaultExpanded: BooleanConstructor;
|
|
13
|
+
expandable: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: true;
|
|
16
|
+
};
|
|
17
|
+
tags: {
|
|
18
|
+
type: import("vue").PropType<WorkOrderCardTag[]>;
|
|
19
|
+
default: () => never[];
|
|
20
|
+
};
|
|
21
|
+
location: StringConstructor;
|
|
22
|
+
showLocation: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: true;
|
|
25
|
+
};
|
|
26
|
+
primaryInfos: {
|
|
27
|
+
type: import("vue").PropType<WorkOrderCardInfo[]>;
|
|
28
|
+
default: () => never[];
|
|
29
|
+
};
|
|
30
|
+
expandedInfos: {
|
|
31
|
+
type: import("vue").PropType<WorkOrderCardInfo[]>;
|
|
32
|
+
default: () => never[];
|
|
33
|
+
};
|
|
34
|
+
actions: {
|
|
35
|
+
type: import("vue").PropType<WorkOrderCardAction[]>;
|
|
36
|
+
default: () => never[];
|
|
37
|
+
};
|
|
38
|
+
overdue: StringConstructor;
|
|
39
|
+
showOverdue: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: true;
|
|
42
|
+
};
|
|
43
|
+
clickable: BooleanConstructor;
|
|
44
|
+
};
|
|
45
|
+
export declare type WorkOrderCardProps = ExtractPropTypes<typeof props>;
|
|
46
|
+
declare const _default: import("vue").DefineComponent<{
|
|
47
|
+
title: {
|
|
48
|
+
type: import("vue").PropType<string>;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
expanded: {
|
|
52
|
+
type: () => boolean | undefined;
|
|
53
|
+
default: undefined;
|
|
54
|
+
};
|
|
55
|
+
defaultExpanded: BooleanConstructor;
|
|
56
|
+
expandable: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: true;
|
|
59
|
+
};
|
|
60
|
+
tags: {
|
|
61
|
+
type: import("vue").PropType<WorkOrderCardTag[]>;
|
|
62
|
+
default: () => never[];
|
|
63
|
+
};
|
|
64
|
+
location: StringConstructor;
|
|
65
|
+
showLocation: {
|
|
66
|
+
type: BooleanConstructor;
|
|
67
|
+
default: true;
|
|
68
|
+
};
|
|
69
|
+
primaryInfos: {
|
|
70
|
+
type: import("vue").PropType<WorkOrderCardInfo[]>;
|
|
71
|
+
default: () => never[];
|
|
72
|
+
};
|
|
73
|
+
expandedInfos: {
|
|
74
|
+
type: import("vue").PropType<WorkOrderCardInfo[]>;
|
|
75
|
+
default: () => never[];
|
|
76
|
+
};
|
|
77
|
+
actions: {
|
|
78
|
+
type: import("vue").PropType<WorkOrderCardAction[]>;
|
|
79
|
+
default: () => never[];
|
|
80
|
+
};
|
|
81
|
+
overdue: StringConstructor;
|
|
82
|
+
showOverdue: {
|
|
83
|
+
type: BooleanConstructor;
|
|
84
|
+
default: true;
|
|
85
|
+
};
|
|
86
|
+
clickable: BooleanConstructor;
|
|
87
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "click-action" | "update:expanded")[], "click" | "click-action" | "update:expanded", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
88
|
+
title: {
|
|
89
|
+
type: import("vue").PropType<string>;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
92
|
+
expanded: {
|
|
93
|
+
type: () => boolean | undefined;
|
|
94
|
+
default: undefined;
|
|
95
|
+
};
|
|
96
|
+
defaultExpanded: BooleanConstructor;
|
|
97
|
+
expandable: {
|
|
98
|
+
type: BooleanConstructor;
|
|
99
|
+
default: true;
|
|
100
|
+
};
|
|
101
|
+
tags: {
|
|
102
|
+
type: import("vue").PropType<WorkOrderCardTag[]>;
|
|
103
|
+
default: () => never[];
|
|
104
|
+
};
|
|
105
|
+
location: StringConstructor;
|
|
106
|
+
showLocation: {
|
|
107
|
+
type: BooleanConstructor;
|
|
108
|
+
default: true;
|
|
109
|
+
};
|
|
110
|
+
primaryInfos: {
|
|
111
|
+
type: import("vue").PropType<WorkOrderCardInfo[]>;
|
|
112
|
+
default: () => never[];
|
|
113
|
+
};
|
|
114
|
+
expandedInfos: {
|
|
115
|
+
type: import("vue").PropType<WorkOrderCardInfo[]>;
|
|
116
|
+
default: () => never[];
|
|
117
|
+
};
|
|
118
|
+
actions: {
|
|
119
|
+
type: import("vue").PropType<WorkOrderCardAction[]>;
|
|
120
|
+
default: () => never[];
|
|
121
|
+
};
|
|
122
|
+
overdue: StringConstructor;
|
|
123
|
+
showOverdue: {
|
|
124
|
+
type: BooleanConstructor;
|
|
125
|
+
default: true;
|
|
126
|
+
};
|
|
127
|
+
clickable: BooleanConstructor;
|
|
128
|
+
}>> & {
|
|
129
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
130
|
+
"onClick-action"?: ((...args: any[]) => any) | undefined;
|
|
131
|
+
"onUpdate:expanded"?: ((...args: any[]) => any) | undefined;
|
|
132
|
+
}, {
|
|
133
|
+
title: string;
|
|
134
|
+
tags: WorkOrderCardTag[];
|
|
135
|
+
clickable: boolean;
|
|
136
|
+
expanded: boolean | undefined;
|
|
137
|
+
actions: WorkOrderCardAction[];
|
|
138
|
+
expandable: boolean;
|
|
139
|
+
defaultExpanded: boolean;
|
|
140
|
+
showLocation: boolean;
|
|
141
|
+
primaryInfos: WorkOrderCardInfo[];
|
|
142
|
+
expandedInfos: WorkOrderCardInfo[];
|
|
143
|
+
showOverdue: boolean;
|
|
144
|
+
}>;
|
|
145
|
+
export default _default;
|