@sdata/web-vue 1.18.0 → 2.1.0
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 +3 -7
- package/dist/sd.css +4083 -2512
- package/dist/sd.min.css +1 -1
- package/es/_components/feedback-icon.js +1 -1
- package/es/_components/icon-hover.js +1 -1
- package/es/_components/icon-hover.vue.d.ts +1 -1
- package/es/_components/input-label/input-label.d.ts +1 -1
- package/es/_components/input-label/style/index.css +27 -27
- package/es/_components/picker/input-range.js +1 -1
- package/es/_components/picker/input-range.vue.d.ts +2 -2
- package/es/_components/picker/input.js +1 -1
- package/es/_components/picker/input.vue.d.ts +2 -2
- package/es/_components/resize-trigger.js +1 -1
- package/es/_components/select-view/select-view.d.ts +3 -3
- package/es/_components/select-view/style/index.css +199 -199
- package/es/_components/transition/expand-transition.js +1 -1
- package/es/_components/virtual-list/virtual-list.js +1 -1
- package/es/_components/virtual-list/virtual-list.vue.d.ts +8 -5
- package/es/_components/virtual-list/virtual-list.vue_vue_type_script_lang.js +9 -16
- package/es/_hooks/use-form-item.d.ts +1 -1
- package/es/_hooks/use-scrollbar.d.ts +2 -3
- package/es/_hooks/use-scrollbar.js +4 -8
- package/es/_hooks/use-size.d.ts +1 -1
- package/es/_utils/color.d.ts +9 -0
- package/es/_utils/color.js +38 -2
- package/es/_utils/date.d.ts +1 -2
- package/es/_utils/date.js +74 -25
- package/es/_utils/global-config.d.ts +4 -0
- package/es/_utils/global-config.js +10 -2
- package/es/_utils/omit.js +1 -1
- package/es/_utils/responsive-observe.js +1 -1
- package/es/_utils/virtual-dropdown.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/asyncToGenerator.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/defineProperty.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/extends.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/objectDestructuringEmpty.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/objectSpread2.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/objectWithoutProperties.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/objectWithoutPropertiesLoose.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/toPrimitive.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/toPropertyKey.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/typeof.js +1 -1
- package/es/affix/affix.js +1 -1
- package/es/affix/affix.vue_vue_type_script_lang.js +1 -1
- package/es/alert/alert.js +1 -1
- package/es/alert/alert.vue.d.ts +1 -1
- package/es/alert/index.d.ts +2 -2
- package/es/alert/style/index.css +28 -28
- package/es/anchor/anchor-link.js +1 -1
- package/es/anchor/anchor.js +1 -1
- package/es/anchor/style/index.css +9 -9
- package/es/auto-complete/auto-complete.d.ts +3 -3
- package/es/auto-complete/auto-complete.js +23 -9
- package/es/auto-complete/index.d.ts +9 -9
- package/es/auto-complete/style/index.css +3 -3
- package/es/avatar/avatar.js +1 -1
- package/es/avatar/avatar.vue_vue_type_script_lang.js +1 -1
- package/es/avatar/style/index.css +15 -15
- package/es/back-top/back-top.js +1 -1
- package/es/back-top/style/index.css +4 -4
- package/es/badge/badge.d.ts +1 -1
- package/es/badge/badge.js +1 -1
- package/es/badge/index.d.ts +3 -3
- package/es/badge/style/index.css +25 -25
- package/es/breadcrumb/style/index.css +12 -12
- package/es/button/button-group.js +1 -1
- package/es/button/button.js +1 -1
- package/es/button/button.vue.d.ts +2 -2
- package/es/button/index.d.ts +6 -6
- package/es/button/style/index.css +37 -37
- package/es/calendar/components/body.js +5 -0
- package/es/calendar/components/body.vue.d.ts +100 -0
- package/es/calendar/components/body.vue_vue_type_script_setup_true_lang.js +158 -0
- package/es/calendar/components/cell.js +5 -0
- package/es/calendar/components/cell.vue.d.ts +220 -0
- package/es/calendar/components/cell.vue_vue_type_script_setup_true_lang.js +813 -0
- package/es/calendar/components/event.js +5 -0
- package/es/calendar/components/event.vue.d.ts +73 -0
- package/es/calendar/components/event.vue_vue_type_script_setup_true_lang.js +290 -0
- package/es/calendar/components/header.js +5 -0
- package/es/calendar/components/header.vue.d.ts +34 -0
- package/es/calendar/components/header.vue_vue_type_script_setup_true_lang.js +84 -0
- package/es/calendar/components/headings-bar.js +5 -0
- package/es/calendar/components/headings-bar.vue.d.ts +40 -0
- package/es/calendar/components/headings-bar.vue_vue_type_script_setup_true_lang.js +201 -0
- package/es/calendar/components/index.js +5 -0
- package/es/calendar/components/index.vue.d.ts +616 -0
- package/es/calendar/components/index.vue_vue_type_script_setup_true_lang.js +314 -0
- package/es/calendar/components/time-column.js +5 -0
- package/es/calendar/components/time-column.vue.d.ts +27 -0
- package/es/calendar/components/time-column.vue_vue_type_script_setup_true_lang.js +66 -0
- package/es/calendar/context.d.ts +16 -0
- package/es/calendar/context.js +5 -0
- package/es/calendar/core/config.d.ts +126 -0
- package/es/calendar/core/config.js +522 -0
- package/es/calendar/core/events.d.ts +1 -0
- package/es/calendar/core/events.js +921 -0
- package/es/calendar/core/i18n.d.ts +1 -0
- package/es/calendar/core/i18n.js +72 -0
- package/es/calendar/core/index.d.ts +112 -0
- package/es/calendar/core/index.js +66 -0
- package/es/calendar/core/props-definitions.d.ts +263 -0
- package/es/calendar/core/props-definitions.js +70 -0
- package/es/calendar/core/view.d.ts +60 -0
- package/es/calendar/core/view.js +761 -0
- package/es/calendar/default-theme.scss +1012 -0
- package/es/calendar/hooks/use-calendar-theme.d.ts +4 -0
- package/es/calendar/hooks/use-calendar-theme.js +32 -0
- package/es/calendar/index.d.ts +836 -98
- package/es/calendar/index.js +3 -3
- package/es/calendar/index.scss +331 -0
- package/es/calendar/modules/drag-and-drop.d.ts +8 -0
- package/es/calendar/modules/drag-and-drop.js +442 -0
- package/es/calendar/style/body.scss +51 -0
- package/es/calendar/style/cell.scss +153 -0
- package/es/calendar/style/css.js +0 -1
- package/es/calendar/style/event.scss +69 -0
- package/es/calendar/style/header.scss +104 -0
- package/es/calendar/style/headings-bar.scss +94 -0
- package/es/calendar/style/index.css +1514 -264
- package/es/calendar/style/index.d.ts +1 -3
- package/es/calendar/style/index.js +0 -1
- package/es/calendar/style/index.scss +9 -496
- package/es/calendar/style/time-column.scss +109 -0
- package/es/calendar/style/token.scss +64 -60
- package/es/calendar/utils/conversions.d.ts +3 -0
- package/es/calendar/utils/conversions.js +31 -0
- package/es/calendar/utils/date.d.ts +26 -0
- package/es/calendar/utils/date.js +253 -0
- package/es/calendar/utils/special-hours-allow-events.d.ts +28 -0
- package/es/calendar/utils/special-hours-allow-events.js +230 -0
- package/es/card/card-grid.js +1 -1
- package/es/card/style/index.css +16 -16
- package/es/carousel/carousel-arrow.js +1 -1
- package/es/carousel/carousel-indicator.js +1 -1
- package/es/carousel/carousel-indicator.vue.d.ts +1 -1
- package/es/carousel/carousel-item.js +1 -1
- package/es/carousel/carousel.js +1 -1
- package/es/carousel/style/index.css +11 -11
- package/es/cascader/cascader-option.d.ts +1 -1
- package/es/cascader/cascader-option.js +1 -1
- package/es/cascader/cascader-panel.vue.d.ts +1 -1
- package/es/cascader/cascader-panel.vue_vue_type_script_setup_true_lang.js +2 -2
- package/es/cascader/cascader.vue.d.ts +5 -5
- package/es/cascader/cascader.vue_vue_type_script_setup_true_lang.js +5 -5
- package/es/cascader/style/index.css +36 -36
- package/es/checkbox/checkbox.d.ts +1 -1
- package/es/checkbox/index.d.ts +2 -2
- package/es/checkbox/style/index.css +18 -18
- package/es/collapse/collapse-item.d.ts +1 -1
- package/es/collapse/collapse.js +1 -1
- package/es/collapse/index.d.ts +1 -1
- package/es/collapse/style/index.css +15 -15
- package/es/color-picker/color-picker.d.ts +1 -1
- package/es/color-picker/color-picker.js +1 -1
- package/es/color-picker/index.d.ts +3 -3
- package/es/color-picker/palette.js +1 -1
- package/es/color-picker/panel.d.ts +1 -1
- package/es/color-picker/panel.js +2 -2
- package/es/color-picker/style/index.css +13 -13
- package/es/color-picker/utils.js +1 -1
- package/es/comment/comment.js +2 -2
- package/es/comment/style/index.css +5 -5
- package/es/components.d.ts +2 -2
- package/es/config-provider/config-provider.js +1 -1
- package/es/config-provider/config-provider.vue.d.ts +1 -1
- package/es/config-provider/context.d.ts +3 -0
- package/es/config-provider/index.d.ts +3 -3
- package/es/config-provider/theme-provider.vue_vue_type_script_setup_true_lang.js +2 -2
- package/es/config-provider/theme.js +1 -1
- package/es/copy/copy.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/cropper/cropper.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/cropper/style/index.css +3 -3
- package/es/date-picker/hooks/use-range-time-picker-value.js +1 -1
- package/es/date-picker/index.d.ts +48 -48
- package/es/date-picker/panels/body.js +1 -1
- package/es/date-picker/panels/date/index.js +2 -2
- package/es/date-picker/panels/date/index.vue.d.ts +6 -6
- package/es/date-picker/panels/date/index.vue_vue_type_script_lang.js +1 -1
- package/es/date-picker/panels/footer.js +1 -1
- package/es/date-picker/panels/footer.vue.d.ts +9 -9
- package/es/date-picker/panels/header.js +1 -1
- package/es/date-picker/panels/month/index.js +2 -2
- package/es/date-picker/panels/quarter/index.js +2 -2
- package/es/date-picker/panels/shortcuts.js +1 -1
- package/es/date-picker/panels/shortcuts.vue.d.ts +6 -6
- package/es/date-picker/panels/week/index.js +1 -1
- package/es/date-picker/panels/week/index.vue.d.ts +6 -6
- package/es/date-picker/panels/week-list.js +1 -1
- package/es/date-picker/panels/year/index.js +2 -2
- package/es/date-picker/picker-panel.js +1 -1
- package/es/date-picker/picker-panel.vue.d.ts +28 -28
- package/es/date-picker/picker.js +2 -2
- package/es/date-picker/picker.vue.d.ts +46 -46
- package/es/date-picker/picker.vue_vue_type_script_lang.js +1 -1
- package/es/date-picker/range-picker-panel.js +1 -1
- package/es/date-picker/range-picker-panel.vue.d.ts +29 -29
- package/es/date-picker/range-picker-panel.vue_vue_type_script_lang.js +1 -1
- package/es/date-picker/range-picker.js +2 -2
- package/es/date-picker/range-picker.vue.d.ts +48 -48
- package/es/date-picker/range-picker.vue_vue_type_script_lang.js +1 -1
- package/es/date-picker/style/index.css +72 -72
- package/es/descriptions/descriptions-item.js +1 -1
- package/es/descriptions/descriptions.d.ts +2 -2
- package/es/descriptions/descriptions.js +1 -1
- package/es/descriptions/index.d.ts +6 -6
- package/es/descriptions/style/index.css +10 -10
- package/es/divider/divider.d.ts +1 -1
- package/es/divider/index.d.ts +3 -3
- package/es/divider/style/index.css +4 -4
- package/es/drawer/drawer.js +9 -2
- package/es/drawer/drawer.vue.d.ts +2905 -10
- package/es/drawer/drawer.vue_vue_type_script_lang.js +26 -7
- package/es/drawer/index.d.ts +6550 -764
- package/es/drawer/index.js +2 -2
- package/es/drawer/style/index.css +12 -7
- package/es/drawer/style/index.scss +6 -0
- package/es/dropdown/dropdown-button.js +1 -1
- package/es/dropdown/dropdown-button.vue.d.ts +24 -21
- package/es/dropdown/dropdown-group.js +1 -1
- package/es/dropdown/dropdown-option.js +1 -1
- package/es/dropdown/dropdown-option.vue.d.ts +1 -1
- package/es/dropdown/dropdown-panel.js +1 -1
- package/es/dropdown/dropdown-panel.vue.d.ts +6 -3
- package/es/dropdown/dropdown-submenu.js +1 -1
- package/es/dropdown/dropdown-submenu.vue.d.ts +18 -15
- package/es/dropdown/dropdown.js +1 -1
- package/es/dropdown/dropdown.vue.d.ts +16 -13
- package/es/dropdown/index.d.ts +78 -66
- package/es/dropdown/style/index.css +1 -1
- package/es/ellipsis/ellipsis.js +1 -1
- package/es/ellipsis/ellipsis.vue.d.ts +24 -24
- package/es/ellipsis/ellipsis.vue_vue_type_script_lang.js +2 -2
- package/es/ellipsis/index.d.ts +96 -96
- package/es/ellipsis/performant-ellipsis.js +1 -1
- package/es/ellipsis/performant-ellipsis.vue.d.ts +24 -24
- package/es/ellipsis/performant-ellipsis.vue_vue_type_script_lang.js +1 -1
- package/es/empty/style/index.css +2 -2
- package/es/form/form-item-label.js +1 -1
- package/es/form/form-item-label.vue.d.ts +24 -24
- package/es/form/form-item-message.js +1 -1
- package/es/form/form-item.js +1 -1
- package/es/form/form-item.vue.d.ts +29 -29
- package/es/form/form-item.vue_vue_type_script_lang.js +3 -3
- package/es/form/form.js +1 -1
- package/es/form/form.vue.d.ts +1 -1
- package/es/form/index.d.ts +35 -35
- package/es/form/style/index.css +6 -6
- package/es/grid/grid-col.js +1 -1
- package/es/grid/grid-col.vue_vue_type_script_lang.js +1 -1
- package/es/grid/grid-item.js +1 -1
- package/es/grid/grid-item.vue_vue_type_script_lang.js +1 -1
- package/es/grid/grid-row.js +1 -1
- package/es/grid/grid-row.vue.d.ts +4 -4
- package/es/grid/grid.js +1 -1
- package/es/grid/index.d.ts +4 -4
- package/es/icon/icon-calendar/icon-calendar.js +1 -1
- package/es/icon/icon-caret-down/icon-caret-down.js +1 -1
- package/es/icon/icon-caret-left/icon-caret-left.js +1 -1
- package/es/icon/icon-caret-right/icon-caret-right.js +1 -1
- package/es/icon/icon-caret-up/icon-caret-up.js +1 -1
- package/es/icon/icon-check/icon-check.js +1 -1
- package/es/icon/icon-check-circle-fill/icon-check-circle-fill.js +1 -1
- package/es/icon/icon-clock-circle/icon-clock-circle.js +1 -1
- package/es/icon/icon-close/icon-close.js +1 -1
- package/es/icon/icon-close-circle-fill/icon-close-circle-fill.js +1 -1
- package/es/icon/icon-copy/icon-copy.js +1 -1
- package/es/icon/icon-delete/icon-delete.js +1 -1
- package/es/icon/icon-double-left/icon-double-left.js +1 -1
- package/es/icon/icon-double-right/icon-double-right.js +1 -1
- package/es/icon/icon-down/icon-down.js +1 -1
- package/es/icon/icon-drag-dot/icon-drag-dot.js +1 -1
- package/es/icon/icon-drag-dot-vertical/icon-drag-dot-vertical.js +1 -1
- package/es/icon/icon-edit/icon-edit.js +1 -1
- package/es/icon/icon-empty/icon-empty.js +1 -1
- package/es/icon/icon-exclamation/icon-exclamation.js +1 -1
- package/es/icon/icon-exclamation-circle-fill/icon-exclamation-circle-fill.js +1 -1
- package/es/icon/icon-eye/icon-eye.js +1 -1
- package/es/icon/icon-eye-invisible/icon-eye-invisible.js +1 -1
- package/es/icon/icon-face-frown-fill/icon-face-frown-fill.js +1 -1
- package/es/icon/icon-face-meh-fill/icon-face-meh-fill.js +1 -1
- package/es/icon/icon-face-smile-fill/icon-face-smile-fill.js +1 -1
- package/es/icon/icon-file/icon-file.js +1 -1
- package/es/icon/icon-file-audio/icon-file-audio.js +1 -1
- package/es/icon/icon-file-image/icon-file-image.js +1 -1
- package/es/icon/icon-file-pdf/icon-file-pdf.js +1 -1
- package/es/icon/icon-file-video/icon-file-video.js +1 -1
- package/es/icon/icon-filter/icon-filter.js +1 -1
- package/es/icon/icon-fullscreen/icon-fullscreen.js +1 -1
- package/es/icon/icon-image-close/icon-image-close.js +1 -1
- package/es/icon/icon-info/icon-info.js +1 -1
- package/es/icon/icon-info-circle-fill/icon-info-circle-fill.js +1 -1
- package/es/icon/icon-left/icon-left.js +1 -1
- package/es/icon/icon-link/icon-link.js +1 -1
- package/es/icon/icon-loading/icon-loading.js +1 -1
- package/es/icon/icon-menu-fold/icon-menu-fold.js +1 -1
- package/es/icon/icon-menu-unfold/icon-menu-unfold.js +1 -1
- package/es/icon/icon-minus/icon-minus.js +1 -1
- package/es/icon/icon-more/icon-more.js +1 -1
- package/es/icon/icon-oblique-line/icon-oblique-line.js +1 -1
- package/es/icon/icon-original-size/icon-original-size.js +1 -1
- package/es/icon/icon-pause/icon-pause.js +1 -1
- package/es/icon/icon-play-arrow-fill/icon-play-arrow-fill.js +1 -1
- package/es/icon/icon-plus/icon-plus.js +1 -1
- package/es/icon/icon-question-circle/icon-question-circle.js +1 -1
- package/es/icon/icon-right/icon-right.js +1 -1
- package/es/icon/icon-rotate-left/icon-rotate-left.js +1 -1
- package/es/icon/icon-rotate-right/icon-rotate-right.js +1 -1
- package/es/icon/icon-search/icon-search.js +1 -1
- package/es/icon/icon-star-fill/icon-star-fill.js +1 -1
- package/es/icon/icon-to-top/icon-to-top.js +1 -1
- package/es/icon/icon-up/icon-up.js +1 -1
- package/es/icon/icon-upload/icon-upload.js +1 -1
- package/es/icon/icon-zoom-in/icon-zoom-in.js +1 -1
- package/es/icon/icon-zoom-out/icon-zoom-out.js +1 -1
- package/es/icon-component/icon.js +1 -1
- package/es/icon.js +292 -292
- package/es/image/image-footer.js +1 -1
- package/es/image/image.js +2 -2
- package/es/image/image.vue.d.ts +24 -24
- package/es/image/preview-action.d.ts +24 -24
- package/es/image/preview-arrow.js +1 -1
- package/es/image/preview-group.js +2 -2
- package/es/image/preview-group.vue.d.ts +25 -25
- package/es/image/preview-toolbar.js +1 -1
- package/es/image/preview-toolbar.vue.d.ts +24 -24
- package/es/image/preview.js +1 -1
- package/es/image/preview.vue.d.ts +24 -24
- package/es/image/preview.vue_vue_type_script_lang.js +1 -1
- package/es/image/style/index.css +32 -32
- package/es/index.css +4083 -2512
- package/es/index.d.ts +8 -2
- package/es/index.js +11 -10
- package/es/index.scss +3 -1
- package/es/input/index.d.ts +9 -9
- package/es/input/input-group.js +1 -1
- package/es/input/input-password.js +1 -1
- package/es/input/input-password.vue.d.ts +3 -3
- package/es/input/input.d.ts +2 -2
- package/es/input/input.js +1 -1
- package/es/input/style/index.css +50 -50
- package/es/input-number/index.d.ts +6 -6
- package/es/input-number/input-number.d.ts +2 -2
- package/es/input-number/input-number.js +1 -1
- package/es/input-number/style/index.css +16 -16
- package/es/input-tag/index.d.ts +6 -6
- package/es/input-tag/input-tag.d.ts +2 -2
- package/es/input-tag/input-tag.js +1 -1
- package/es/input-tag/style/index.css +172 -172
- package/es/input-tag/utils.js +1 -1
- package/es/json-form/json-form-component.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/json-form/json-form-item.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/json-form/json-form.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/json-form/utils.js +3 -3
- package/es/layout/content.js +1 -1
- package/es/layout/footer.js +1 -1
- package/es/layout/header.vue.d.ts +1 -1
- package/es/layout/header.vue_vue_type_script_setup_true_lang.js +2 -2
- package/es/layout/index.d.ts +21 -21
- package/es/layout/layout.js +1 -1
- package/es/layout/sider.js +1 -1
- package/es/layout/sider.vue.d.ts +16 -16
- package/es/layout/sider.vue_vue_type_script_lang.js +1 -1
- package/es/layout/style/index.css +12 -12
- package/es/link/index.d.ts +3 -3
- package/es/link/link.vue.d.ts +1 -1
- package/es/link/link.vue_vue_type_script_setup_true_lang.js +2 -2
- package/es/link/style/index.css +23 -23
- package/es/list/index.d.ts +9 -9
- package/es/list/list-item-meta.js +1 -1
- package/es/list/list.d.ts +3 -3
- package/es/list/list.js +4 -4
- package/es/list/style/index.css +9 -9
- package/es/locale/interface.d.ts +6 -0
- package/es/locale/lang/ar-eg.js +7 -1
- package/es/locale/lang/de-de.js +7 -1
- package/es/locale/lang/en-us.js +7 -1
- package/es/locale/lang/es-es.js +7 -1
- package/es/locale/lang/fr-fr.js +7 -1
- package/es/locale/lang/id-id.js +7 -1
- package/es/locale/lang/it-it.js +7 -1
- package/es/locale/lang/ja-jp.js +7 -1
- package/es/locale/lang/km-kh.js +7 -1
- package/es/locale/lang/ko-kr.js +7 -1
- package/es/locale/lang/ms-my.js +7 -1
- package/es/locale/lang/nl-nl.js +7 -1
- package/es/locale/lang/pt-pt.js +7 -1
- package/es/locale/lang/ru-ru.js +7 -1
- package/es/locale/lang/th-th.js +7 -1
- package/es/locale/lang/vi-vn.js +7 -1
- package/es/locale/lang/zh-cn.js +7 -1
- package/es/locale/lang/zh-tw.js +7 -1
- package/es/mention/index.d.ts +9 -9
- package/es/mention/mention.d.ts +3 -3
- package/es/mention/mention.js +24 -10
- package/es/menu/base-menu.js +1 -1
- package/es/menu/indent.js +1 -1
- package/es/menu/item-group.js +1 -1
- package/es/menu/item-group.vue.d.ts +48 -48
- package/es/menu/item.js +1 -1
- package/es/menu/menu.js +1 -1
- package/es/menu/style/index.css +62 -62
- package/es/menu/sub-menu-inline.js +1 -1
- package/es/menu/sub-menu-inline.vue.d.ts +48 -48
- package/es/menu/sub-menu-pop.js +1 -1
- package/es/menu/sub-menu-pop.vue.d.ts +57 -57
- package/es/menu/sub-menu.js +1 -1
- package/es/message/index.js +1 -1
- package/es/message/message-list.d.ts +1 -1
- package/es/message/message.js +1 -1
- package/es/message/message.vue.d.ts +1 -1
- package/es/message/style/index.css +26 -26
- package/es/modal/index.d.ts +6368 -570
- package/es/modal/index.js +2 -2
- package/es/modal/modal.js +15 -4
- package/es/modal/modal.vue.d.ts +2907 -8
- package/es/modal/modal.vue_vue_type_script_lang.js +28 -5
- package/es/modal/style/index.css +28 -12
- package/es/modal/style/index.scss +23 -0
- package/es/notification/index.js +1 -1
- package/es/notification/notification.js +1 -1
- package/es/notification/notification.vue.d.ts +1 -1
- package/es/notification/style/index.css +26 -26
- package/es/page-header/index.d.ts +2 -2
- package/es/page-header/page-header.js +1 -1
- package/es/page-header/page-header.vue.d.ts +1 -1
- package/es/page-header/style/index.css +6 -6
- package/es/pagination/page-item-ellipsis.js +1 -1
- package/es/pagination/page-item-step.js +1 -1
- package/es/pagination/page-item.js +1 -1
- package/es/pagination/page-jumper.js +1 -1
- package/es/pagination/page-jumper.vue.d.ts +6 -6
- package/es/pagination/page-options.js +1 -1
- package/es/pagination/page-options.vue.d.ts +647 -469
- package/es/pagination/style/index.css +21 -21
- package/es/popconfirm/index.d.ts +33 -33
- package/es/popconfirm/popconfirm.js +1 -1
- package/es/popconfirm/popconfirm.vue.d.ts +16 -16
- package/es/popconfirm/popconfirm.vue_vue_type_script_lang.js +1 -1
- package/es/popconfirm/style/index.css +11 -11
- package/es/popover/index.d.ts +899 -21
- package/es/popover/popover.js +7 -3
- package/es/popover/popover.vue.d.ts +451 -10
- package/es/popover/popover.vue_vue_type_script_lang.js +15 -3
- package/es/popover/style/index.css +7 -7
- package/es/popover/style/index.d.ts +1 -0
- package/es/progress/circle.js +1 -1
- package/es/progress/circle.vue.d.ts +1 -1
- package/es/progress/index.d.ts +7 -7
- package/es/progress/line.js +1 -1
- package/es/progress/line.vue.d.ts +1 -1
- package/es/progress/line.vue_vue_type_script_lang.js +1 -1
- package/es/progress/progress.js +1 -1
- package/es/progress/progress.vue.d.ts +3 -3
- package/es/progress/steps.js +1 -1
- package/es/progress/style/index.css +32 -32
- package/es/qr-code/index.d.ts +294 -0
- package/es/qr-code/index.js +10 -0
- package/es/qr-code/qr-code-status.js +5 -0
- package/es/qr-code/qr-code-status.vue.d.ts +8 -0
- package/es/qr-code/qr-code-status.vue_vue_type_script_setup_true_lang.js +30 -0
- package/es/qr-code/qr-code.js +5 -0
- package/es/qr-code/qr-code.vue.d.ts +167 -0
- package/es/qr-code/qr-code.vue_vue_type_script_setup_true_lang.js +313 -0
- package/es/qr-code/style/css.js +2 -0
- package/es/qr-code/style/index.css +106 -0
- package/es/qr-code/style/index.d.ts +2 -0
- package/es/qr-code/style/index.js +2 -0
- package/es/qr-code/style/index.scss +111 -0
- package/es/qr-code/style/token.scss +36 -0
- package/es/qr-code/types.d.ts +19 -0
- package/es/radio/index.d.ts +5 -5
- package/es/radio/radio.d.ts +2 -2
- package/es/radio/style/index.css +33 -33
- package/es/rate/index.d.ts +3 -3
- package/es/rate/rate.d.ts +1 -1
- package/es/rate/style/index.css +3 -3
- package/es/resize-box/index.d.ts +6 -6
- package/es/resize-box/resize-box.js +1 -1
- package/es/resize-box/resize-box.vue.d.ts +2 -2
- package/es/resize-box/resize-box.vue_vue_type_script_lang.js +1 -1
- package/es/resize-box/style/index.css +2 -2
- package/es/result/result.js +1 -1
- package/es/result/style/index.css +2 -2
- package/es/scrollbar/index.d.ts +6 -3
- package/es/scrollbar/scrollbar.js +2 -1
- package/es/scrollbar/scrollbar.vue.d.ts +2 -1
- package/es/scrollbar/scrollbar.vue_vue_type_script_lang.js +52 -2
- package/es/scrollbar/style/index.css +13 -13
- package/es/sd-vue.js +13 -12
- package/es/secret/secret.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/secret/style/index.css +4 -4
- package/es/select/context.d.ts +1 -4
- package/es/select/hooks/use-options.d.ts +1 -4
- package/es/select/hooks/use-options.js +2 -23
- package/es/select/hooks/use-select.d.ts +1 -3
- package/es/select/hooks/use-select.js +2 -7
- package/es/select/index.d.ts +647 -474
- package/es/select/index.js +5 -13
- package/es/select/interface.d.ts +1 -1
- package/es/select/select-dropdown.js +3 -2
- package/es/select/select-dropdown.vue.d.ts +56 -54
- package/es/select/select-dropdown.vue_vue_type_script_lang.js +2 -3
- package/es/select/select.d.ts +260 -18
- package/es/select/select.js +44 -23
- package/es/select/style/index.css +14 -14
- package/es/select/utils.d.ts +1 -1
- package/es/select/utils.js +1 -1
- package/es/skeleton/line.js +1 -1
- package/es/skeleton/shape.js +1 -1
- package/es/skeleton/skeleton.js +1 -1
- package/es/skeleton/style/index.css +4 -4
- package/es/slider/index.d.ts +67 -67
- package/es/slider/slider-button.js +1 -1
- package/es/slider/slider-button.vue.d.ts +25 -25
- package/es/slider/slider-dots.js +1 -1
- package/es/slider/slider-input.js +1 -1
- package/es/slider/slider-input.vue.d.ts +7 -7
- package/es/slider/slider-marks.js +1 -1
- package/es/slider/slider-ticks.js +1 -1
- package/es/slider/slider.js +1 -1
- package/es/slider/slider.vue.d.ts +33 -33
- package/es/slider/style/index.css +18 -18
- package/es/space/index.d.ts +9 -9
- package/es/space/space.d.ts +2 -2
- package/es/spin/index.d.ts +1 -0
- package/es/spin/style/index.css +9 -9
- package/es/split/split.js +1 -1
- package/es/split/split.vue_vue_type_script_lang.js +1 -1
- package/es/split/style/index.css +2 -2
- package/es/statistic/countdown.js +1 -1
- package/es/statistic/countdown.vue.d.ts +1 -1
- package/es/statistic/countdown.vue_vue_type_script_lang.js +5 -5
- package/es/statistic/index.d.ts +1 -1
- package/es/statistic/statistic.js +1 -1
- package/es/statistic/statistic.vue_vue_type_script_lang.js +2 -2
- package/es/statistic/style/index.css +4 -4
- package/es/steps/index.d.ts +4 -4
- package/es/steps/step.js +1 -1
- package/es/steps/step.vue.d.ts +1 -1
- package/es/steps/steps.js +1 -1
- package/es/steps/steps.vue.d.ts +1 -1
- package/es/steps/style/index.css +79 -79
- package/es/style/color/colors.scss +1 -1
- package/es/style/theme/global.scss +8 -8
- package/es/style/theme/index.scss +4 -12
- package/es/style/theme/z-index.js +1 -2
- package/es/switch/style/index.css +30 -30
- package/es/switch/switch.js +1 -1
- package/es/switch/switch.vue_vue_type_script_lang.js +1 -1
- package/es/table/index.d.ts +14 -14
- package/es/table/style/index.css +65 -65
- package/es/table/table-operation-td.d.ts +7 -7
- package/es/table/table-operation-td.js +1 -1
- package/es/table/table-operation-th.js +1 -1
- package/es/table/table-td.d.ts +1 -1
- package/es/table/table-td.js +1 -1
- package/es/table/table-th.d.ts +1 -1
- package/es/table/table-th.js +2 -2
- package/es/table/table.d.ts +5 -5
- package/es/table/table.js +12 -14
- package/es/table/utils.js +1 -1
- package/es/tabs/index.d.ts +9 -9
- package/es/tabs/style/index.css +56 -56
- package/es/tabs/tab-pane.js +1 -1
- package/es/tabs/tab-pane.vue_vue_type_script_lang.js +1 -1
- package/es/tabs/tabs-nav-ink.js +1 -1
- package/es/tabs/tabs-nav.d.ts +1 -1
- package/es/tabs/tabs-tab.js +1 -1
- package/es/tabs/tabs-tab.vue.d.ts +1 -1
- package/es/tabs/tabs.d.ts +3 -3
- package/es/tag/index.d.ts +66 -29688
- package/es/tag/interface.d.ts +2 -0
- package/es/tag/style/index.css +134 -134
- package/es/tag/style/index.scss +33 -13
- package/es/tag/tag.js +2 -64
- package/es/tag/tag.vue.d.ts +53 -11936
- package/es/tag/tag.vue_vue_type_script_setup_true_lang.js +368 -0
- package/es/tag-group/tag-group.vue_vue_type_script_setup_true_lang.js +4 -4
- package/es/textarea/index.d.ts +8 -8
- package/es/textarea/style/index.css +28 -28
- package/es/textarea/textarea.js +1 -1
- package/es/textarea/textarea.vue.d.ts +3 -3
- package/es/textarea/textarea.vue_vue_type_script_lang.js +1 -1
- package/es/time-picker/hooks/use-time-list.js +1 -1
- package/es/time-picker/index.d.ts +56 -56
- package/es/time-picker/panel.js +1 -1
- package/es/time-picker/panel.vue.d.ts +6 -6
- package/es/time-picker/range-panel.d.ts +6 -6
- package/es/time-picker/range-panel.js +1 -1
- package/es/time-picker/style/index.css +11 -11
- package/es/time-picker/time-column.js +1 -1
- package/es/time-picker/time-picker.js +2 -2
- package/es/time-picker/time-picker.vue.d.ts +27 -27
- package/es/timeline/item.js +1 -1
- package/es/timeline/item.vue_vue_type_script_lang.js +1 -1
- package/es/timeline/style/index.css +11 -11
- package/es/tooltip/index.d.ts +24 -24
- package/es/tooltip/style/index.css +3 -3
- package/es/tooltip/tooltip.js +1 -1
- package/es/tooltip/tooltip.vue.d.ts +11 -11
- package/es/tooltip/tooltip.vue_vue_type_script_lang.js +1 -1
- package/es/tour/index.d.ts +664 -0
- package/es/tour/index.js +10 -0
- package/es/tour/style/css.js +1 -0
- package/es/tour/style/index.css +226 -0
- package/es/tour/style/index.d.ts +1 -0
- package/es/tour/style/index.js +1 -0
- package/es/tour/style/index.scss +218 -0
- package/es/tour/style/token.scss +27 -0
- package/es/tour/tour.js +5 -0
- package/es/tour/tour.vue.d.ts +411 -0
- package/es/tour/tour.vue_vue_type_script_setup_true_lang.js +1219 -0
- package/es/tour/types.d.ts +143 -0
- package/es/transfer/index.d.ts +51 -45
- package/es/transfer/style/index.css +20 -20
- package/es/transfer/transfer-view.js +2 -3
- package/es/transfer/transfer-view.vue.d.ts +18 -15
- package/es/transfer/transfer-view.vue_vue_type_script_lang.js +1 -1
- package/es/transfer/transfer.js +1 -1
- package/es/transfer/transfer.vue.d.ts +25 -22
- package/es/tree/base-node.js +1 -1
- package/es/tree/base-node.vue.d.ts +2 -2
- package/es/tree/expand-transition.js +1 -1
- package/es/tree/node.js +1 -1
- package/es/tree/style/index.css +25 -25
- package/es/tree/transition-node-list.js +1 -1
- package/es/tree/transition-node-list.vue.d.ts +2 -2
- package/es/tree/tree.js +1 -1
- package/es/tree/tree.vue.d.ts +12 -9
- package/es/tree/tree.vue_vue_type_script_lang.js +2 -2
- package/es/tree/utils/tree-data.js +1 -1
- package/es/tree-select/hooks/use-selected-state.js +1 -1
- package/es/tree-select/panel.js +4 -7
- package/es/tree-select/style/index.css +5 -5
- package/es/tree-select/tree-select.js +2 -2
- package/es/tree-select/tree-select.vue.d.ts +21 -21
- package/es/tree-select/tree-select.vue_vue_type_script_lang.js +1 -1
- package/es/trigger/index.d.ts +9 -9
- package/es/trigger/style/index.css +5 -5
- package/es/trigger/trigger.d.ts +3 -3
- package/es/trigger/trigger.js +1 -1
- package/es/trigger/utils.js +1 -1
- package/es/typography/base.d.ts +4 -4
- package/es/typography/base.js +1 -1
- package/es/typography/edit-content.js +1 -1
- package/es/typography/edit-content.vue.d.ts +28 -28
- package/es/typography/operations.js +1 -1
- package/es/typography/operations.vue.d.ts +24 -24
- package/es/typography/style/index.css +22 -22
- package/es/typography/typography.js +1 -1
- package/es/upload/index.d.ts +6 -6
- package/es/upload/style/index.css +51 -51
- package/es/upload/upload-button.d.ts +1 -1
- package/es/upload/upload.d.ts +2 -2
- package/es/upload/upload.js +2 -2
- package/es/verification-code/index.d.ts +3 -3
- package/es/verification-code/verification-code.d.ts +1 -1
- package/es/watermark/hooks/use-mutation-observer.js +1 -1
- package/es/watermark/watermark.js +1 -1
- package/json/vetur-attributes.json +125 -107
- package/json/vetur-tags.json +39 -36
- package/json/web-types.json +181 -162
- package/package.json +19 -15
- package/es/calendar/calendar.d.ts +0 -104
- package/es/calendar/calendar.js +0 -207
- package/es/calendar/header.d.ts +0 -104
- package/es/calendar/header.js +0 -131
- package/es/calendar/hooks/useCellClassName.d.ts +0 -19
- package/es/calendar/hooks/useCellClassName.js +0 -43
- package/es/calendar/month.d.ts +0 -83
- package/es/calendar/month.js +0 -149
- package/es/calendar/week.d.ts +0 -61
- package/es/calendar/week.js +0 -45
- package/es/calendar/year.d.ts +0 -69
- package/es/calendar/year.js +0 -101
- package/es/select/optgroup.js +0 -10
- package/es/select/optgroup.vue.d.ts +0 -13
- package/es/select/optgroup.vue_vue_type_script_lang.js +0 -23
- package/es/select/option.js +0 -51
- package/es/select/option.vue.d.ts +0 -299
- package/es/select/option.vue_vue_type_script_lang.js +0 -149
- package/es/tag/tag.vue_vue_type_script_lang.js +0 -264
package/json/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@sdata/web-vue",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.19.0",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -824,69 +824,10 @@
|
|
|
824
824
|
]
|
|
825
825
|
},
|
|
826
826
|
{
|
|
827
|
-
"name": "sd-
|
|
828
|
-
"attributes": [
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
"description": "Value",
|
|
832
|
-
"value": {
|
|
833
|
-
"type": "date",
|
|
834
|
-
"kind": "expression"
|
|
835
|
-
}
|
|
836
|
-
},
|
|
837
|
-
{
|
|
838
|
-
"name": "default-value",
|
|
839
|
-
"description": "Default value (uncontrolled state)",
|
|
840
|
-
"value": {
|
|
841
|
-
"type": "date",
|
|
842
|
-
"kind": "expression"
|
|
843
|
-
}
|
|
844
|
-
},
|
|
845
|
-
{
|
|
846
|
-
"name": "mode",
|
|
847
|
-
"description": "Mode",
|
|
848
|
-
"value": {
|
|
849
|
-
"type": "string",
|
|
850
|
-
"kind": "expression"
|
|
851
|
-
}
|
|
852
|
-
},
|
|
853
|
-
{
|
|
854
|
-
"name": "default-mode",
|
|
855
|
-
"description": "Default Mode",
|
|
856
|
-
"value": {
|
|
857
|
-
"type": "string",
|
|
858
|
-
"kind": "expression"
|
|
859
|
-
}
|
|
860
|
-
},
|
|
861
|
-
{
|
|
862
|
-
"name": "modes",
|
|
863
|
-
"description": "Displayed mode",
|
|
864
|
-
"value": {
|
|
865
|
-
"type": "('month' | 'year')[]",
|
|
866
|
-
"kind": "expression"
|
|
867
|
-
}
|
|
868
|
-
}
|
|
869
|
-
],
|
|
870
|
-
"events": [
|
|
871
|
-
{
|
|
872
|
-
"name": "change",
|
|
873
|
-
"description": "Emitted when the button is clicked"
|
|
874
|
-
},
|
|
875
|
-
{
|
|
876
|
-
"name": "panel-change",
|
|
877
|
-
"description": "Emitted when the button is clicked"
|
|
878
|
-
}
|
|
879
|
-
],
|
|
880
|
-
"slots": [
|
|
881
|
-
{
|
|
882
|
-
"name": "header",
|
|
883
|
-
"description": "Custom header content"
|
|
884
|
-
},
|
|
885
|
-
{
|
|
886
|
-
"name": "default",
|
|
887
|
-
"description": "Custom cell content"
|
|
888
|
-
}
|
|
889
|
-
]
|
|
827
|
+
"name": "sd-components",
|
|
828
|
+
"attributes": [],
|
|
829
|
+
"events": [],
|
|
830
|
+
"slots": []
|
|
890
831
|
},
|
|
891
832
|
{
|
|
892
833
|
"name": "sd-card",
|
|
@@ -1150,13 +1091,13 @@
|
|
|
1150
1091
|
"slots": []
|
|
1151
1092
|
},
|
|
1152
1093
|
{
|
|
1153
|
-
"name": "
|
|
1094
|
+
"name": "sd-cascader-panel",
|
|
1154
1095
|
"attributes": [],
|
|
1155
1096
|
"events": [],
|
|
1156
1097
|
"slots": []
|
|
1157
1098
|
},
|
|
1158
1099
|
{
|
|
1159
|
-
"name": "
|
|
1100
|
+
"name": "sd-cascader",
|
|
1160
1101
|
"attributes": [],
|
|
1161
1102
|
"events": [],
|
|
1162
1103
|
"slots": []
|
|
@@ -1796,7 +1737,7 @@
|
|
|
1796
1737
|
]
|
|
1797
1738
|
},
|
|
1798
1739
|
{
|
|
1799
|
-
"name": "
|
|
1740
|
+
"name": "sd-copy",
|
|
1800
1741
|
"attributes": [],
|
|
1801
1742
|
"events": [
|
|
1802
1743
|
{
|
|
@@ -1807,7 +1748,7 @@
|
|
|
1807
1748
|
"slots": []
|
|
1808
1749
|
},
|
|
1809
1750
|
{
|
|
1810
|
-
"name": "
|
|
1751
|
+
"name": "sd-cropper",
|
|
1811
1752
|
"attributes": [
|
|
1812
1753
|
{
|
|
1813
1754
|
"name": "src",
|
|
@@ -2324,6 +2265,14 @@
|
|
|
2324
2265
|
"kind": "expression"
|
|
2325
2266
|
}
|
|
2326
2267
|
},
|
|
2268
|
+
{
|
|
2269
|
+
"name": "title-ellipsis-tooltip",
|
|
2270
|
+
"description": "Tooltip behavior when the title is ellipsized. Uses the component tooltip by default, or falls back to the native browser title when set to false.",
|
|
2271
|
+
"value": {
|
|
2272
|
+
"type": "boolean | EllipsisTooltipProps",
|
|
2273
|
+
"kind": "expression"
|
|
2274
|
+
}
|
|
2275
|
+
},
|
|
2327
2276
|
{
|
|
2328
2277
|
"name": "mask",
|
|
2329
2278
|
"description": "Whether to show the mask",
|
|
@@ -4588,7 +4537,7 @@
|
|
|
4588
4537
|
"slots": []
|
|
4589
4538
|
},
|
|
4590
4539
|
{
|
|
4591
|
-
"name": "
|
|
4540
|
+
"name": "sd-json-form",
|
|
4592
4541
|
"attributes": [],
|
|
4593
4542
|
"events": [],
|
|
4594
4543
|
"slots": []
|
|
@@ -4616,7 +4565,7 @@
|
|
|
4616
4565
|
]
|
|
4617
4566
|
},
|
|
4618
4567
|
{
|
|
4619
|
-
"name": "
|
|
4568
|
+
"name": "sd-header",
|
|
4620
4569
|
"attributes": [
|
|
4621
4570
|
{
|
|
4622
4571
|
"name": "title",
|
|
@@ -5018,7 +4967,7 @@
|
|
|
5018
4967
|
]
|
|
5019
4968
|
},
|
|
5020
4969
|
{
|
|
5021
|
-
"name": "
|
|
4970
|
+
"name": "sd-link",
|
|
5022
4971
|
"attributes": [
|
|
5023
4972
|
{
|
|
5024
4973
|
"name": "href",
|
|
@@ -6185,6 +6134,138 @@
|
|
|
6185
6134
|
"events": [],
|
|
6186
6135
|
"slots": []
|
|
6187
6136
|
},
|
|
6137
|
+
{
|
|
6138
|
+
"name": "sd-qr-code",
|
|
6139
|
+
"attributes": [
|
|
6140
|
+
{
|
|
6141
|
+
"name": "value",
|
|
6142
|
+
"description": "Text encoded in the QR code",
|
|
6143
|
+
"value": {
|
|
6144
|
+
"type": "QrCodeValue",
|
|
6145
|
+
"kind": "expression"
|
|
6146
|
+
}
|
|
6147
|
+
},
|
|
6148
|
+
{
|
|
6149
|
+
"name": "type",
|
|
6150
|
+
"description": "Render type",
|
|
6151
|
+
"value": {
|
|
6152
|
+
"type": "QrCodeType",
|
|
6153
|
+
"kind": "expression"
|
|
6154
|
+
}
|
|
6155
|
+
},
|
|
6156
|
+
{
|
|
6157
|
+
"name": "icon",
|
|
6158
|
+
"description": "Image source rendered at the center of QR code",
|
|
6159
|
+
"value": {
|
|
6160
|
+
"type": "string",
|
|
6161
|
+
"kind": "expression"
|
|
6162
|
+
}
|
|
6163
|
+
},
|
|
6164
|
+
{
|
|
6165
|
+
"name": "icon-alt",
|
|
6166
|
+
"description": "Image alt text",
|
|
6167
|
+
"value": {
|
|
6168
|
+
"type": "string",
|
|
6169
|
+
"kind": "expression"
|
|
6170
|
+
}
|
|
6171
|
+
},
|
|
6172
|
+
{
|
|
6173
|
+
"name": "size",
|
|
6174
|
+
"description": "QR code size",
|
|
6175
|
+
"value": {
|
|
6176
|
+
"type": "number",
|
|
6177
|
+
"kind": "expression"
|
|
6178
|
+
}
|
|
6179
|
+
},
|
|
6180
|
+
{
|
|
6181
|
+
"name": "icon-size",
|
|
6182
|
+
"description": "Center image size",
|
|
6183
|
+
"value": {
|
|
6184
|
+
"type": "QrCodeIconSize",
|
|
6185
|
+
"kind": "expression"
|
|
6186
|
+
}
|
|
6187
|
+
},
|
|
6188
|
+
{
|
|
6189
|
+
"name": "color",
|
|
6190
|
+
"description": "Foreground color of QR code",
|
|
6191
|
+
"value": {
|
|
6192
|
+
"type": "string",
|
|
6193
|
+
"kind": "expression"
|
|
6194
|
+
}
|
|
6195
|
+
},
|
|
6196
|
+
{
|
|
6197
|
+
"name": "bg-color",
|
|
6198
|
+
"description": "Background color of QR code",
|
|
6199
|
+
"value": {
|
|
6200
|
+
"type": "string",
|
|
6201
|
+
"kind": "expression"
|
|
6202
|
+
}
|
|
6203
|
+
},
|
|
6204
|
+
{
|
|
6205
|
+
"name": "bordered",
|
|
6206
|
+
"description": "Whether to show border",
|
|
6207
|
+
"value": {
|
|
6208
|
+
"type": "boolean",
|
|
6209
|
+
"kind": "expression"
|
|
6210
|
+
}
|
|
6211
|
+
},
|
|
6212
|
+
{
|
|
6213
|
+
"name": "error-level",
|
|
6214
|
+
"description": "Error correction level",
|
|
6215
|
+
"value": {
|
|
6216
|
+
"type": "QrCodeErrorLevel",
|
|
6217
|
+
"kind": "expression"
|
|
6218
|
+
}
|
|
6219
|
+
},
|
|
6220
|
+
{
|
|
6221
|
+
"name": "boost-level",
|
|
6222
|
+
"description": "Whether to enable boost-level optimization",
|
|
6223
|
+
"value": {
|
|
6224
|
+
"type": "boolean",
|
|
6225
|
+
"kind": "expression"
|
|
6226
|
+
}
|
|
6227
|
+
},
|
|
6228
|
+
{
|
|
6229
|
+
"name": "margin-size",
|
|
6230
|
+
"description": "Margin size in module units",
|
|
6231
|
+
"value": {
|
|
6232
|
+
"type": "number",
|
|
6233
|
+
"kind": "expression"
|
|
6234
|
+
}
|
|
6235
|
+
},
|
|
6236
|
+
{
|
|
6237
|
+
"name": "status",
|
|
6238
|
+
"description": "QR code status",
|
|
6239
|
+
"value": {
|
|
6240
|
+
"type": "QrCodeStatusType",
|
|
6241
|
+
"kind": "expression"
|
|
6242
|
+
}
|
|
6243
|
+
},
|
|
6244
|
+
{
|
|
6245
|
+
"name": "status-render",
|
|
6246
|
+
"description": "Custom status renderer",
|
|
6247
|
+
"value": {
|
|
6248
|
+
"type": "(info: QrCodeStatusRenderInfo) => VNodeChild",
|
|
6249
|
+
"kind": "expression"
|
|
6250
|
+
}
|
|
6251
|
+
},
|
|
6252
|
+
{
|
|
6253
|
+
"name": "spin-props",
|
|
6254
|
+
"description": "Spin props for loading status",
|
|
6255
|
+
"value": {
|
|
6256
|
+
"type": "SpinProps",
|
|
6257
|
+
"kind": "expression"
|
|
6258
|
+
}
|
|
6259
|
+
}
|
|
6260
|
+
],
|
|
6261
|
+
"events": [
|
|
6262
|
+
{
|
|
6263
|
+
"name": "refresh",
|
|
6264
|
+
"description": "Triggered when refresh action is clicked"
|
|
6265
|
+
}
|
|
6266
|
+
],
|
|
6267
|
+
"slots": []
|
|
6268
|
+
},
|
|
6188
6269
|
{
|
|
6189
6270
|
"name": "sd-radio",
|
|
6190
6271
|
"attributes": [
|
|
@@ -6618,7 +6699,7 @@
|
|
|
6618
6699
|
"slots": []
|
|
6619
6700
|
},
|
|
6620
6701
|
{
|
|
6621
|
-
"name": "
|
|
6702
|
+
"name": "sd-secret",
|
|
6622
6703
|
"attributes": [
|
|
6623
6704
|
{
|
|
6624
6705
|
"name": "text",
|
|
@@ -6648,81 +6729,6 @@
|
|
|
6648
6729
|
"events": [],
|
|
6649
6730
|
"slots": []
|
|
6650
6731
|
},
|
|
6651
|
-
{
|
|
6652
|
-
"name": "sd-optgroup",
|
|
6653
|
-
"attributes": [
|
|
6654
|
-
{
|
|
6655
|
-
"name": "label",
|
|
6656
|
-
"description": "Title of option group",
|
|
6657
|
-
"value": {
|
|
6658
|
-
"type": "string",
|
|
6659
|
-
"kind": "expression"
|
|
6660
|
-
}
|
|
6661
|
-
}
|
|
6662
|
-
],
|
|
6663
|
-
"events": [],
|
|
6664
|
-
"slots": [
|
|
6665
|
-
{
|
|
6666
|
-
"name": "label",
|
|
6667
|
-
"description": "Title of option group"
|
|
6668
|
-
}
|
|
6669
|
-
]
|
|
6670
|
-
},
|
|
6671
|
-
{
|
|
6672
|
-
"name": "sd-option",
|
|
6673
|
-
"attributes": [
|
|
6674
|
-
{
|
|
6675
|
-
"name": "value",
|
|
6676
|
-
"description": "Option value (if not filled, it will be obtained from the content)",
|
|
6677
|
-
"value": {
|
|
6678
|
-
"type": "string|number|boolean|object",
|
|
6679
|
-
"kind": "expression"
|
|
6680
|
-
}
|
|
6681
|
-
},
|
|
6682
|
-
{
|
|
6683
|
-
"name": "label",
|
|
6684
|
-
"description": "Option label (if not filled, it will be obtained from the content)",
|
|
6685
|
-
"value": {
|
|
6686
|
-
"type": "string",
|
|
6687
|
-
"kind": "expression"
|
|
6688
|
-
}
|
|
6689
|
-
},
|
|
6690
|
-
{
|
|
6691
|
-
"name": "disabled",
|
|
6692
|
-
"description": "Whether to disable",
|
|
6693
|
-
"value": {
|
|
6694
|
-
"type": "boolean",
|
|
6695
|
-
"kind": "expression"
|
|
6696
|
-
}
|
|
6697
|
-
},
|
|
6698
|
-
{
|
|
6699
|
-
"name": "tag-props",
|
|
6700
|
-
"description": "Displayed tag attributes",
|
|
6701
|
-
"value": {
|
|
6702
|
-
"type": "TagProps",
|
|
6703
|
-
"kind": "expression"
|
|
6704
|
-
}
|
|
6705
|
-
},
|
|
6706
|
-
{
|
|
6707
|
-
"name": "extra",
|
|
6708
|
-
"description": "Extra data",
|
|
6709
|
-
"value": {
|
|
6710
|
-
"type": "object",
|
|
6711
|
-
"kind": "expression"
|
|
6712
|
-
}
|
|
6713
|
-
},
|
|
6714
|
-
{
|
|
6715
|
-
"name": "index",
|
|
6716
|
-
"description": "index for manually specifying option",
|
|
6717
|
-
"value": {
|
|
6718
|
-
"type": "number",
|
|
6719
|
-
"kind": "expression"
|
|
6720
|
-
}
|
|
6721
|
-
}
|
|
6722
|
-
],
|
|
6723
|
-
"events": [],
|
|
6724
|
-
"slots": []
|
|
6725
|
-
},
|
|
6726
6732
|
{
|
|
6727
6733
|
"name": "sd-select",
|
|
6728
6734
|
"attributes": [],
|
|
@@ -8450,7 +8456,7 @@
|
|
|
8450
8456
|
]
|
|
8451
8457
|
},
|
|
8452
8458
|
{
|
|
8453
|
-
"name": "
|
|
8459
|
+
"name": "sd-tag-group",
|
|
8454
8460
|
"attributes": [
|
|
8455
8461
|
{
|
|
8456
8462
|
"name": "max-count",
|
|
@@ -8487,7 +8493,7 @@
|
|
|
8487
8493
|
"name": "color",
|
|
8488
8494
|
"description": "Label color",
|
|
8489
8495
|
"value": {
|
|
8490
|
-
"type": "
|
|
8496
|
+
"type": "string",
|
|
8491
8497
|
"kind": "expression"
|
|
8492
8498
|
}
|
|
8493
8499
|
},
|
|
@@ -8583,7 +8589,7 @@
|
|
|
8583
8589
|
"name": "ellipsis-line-clamp",
|
|
8584
8590
|
"description": "Maximum number of displayed lines for ellipsis content",
|
|
8585
8591
|
"value": {
|
|
8586
|
-
"type": "number
|
|
8592
|
+
"type": "number|string",
|
|
8587
8593
|
"kind": "expression"
|
|
8588
8594
|
}
|
|
8589
8595
|
},
|
|
@@ -8591,7 +8597,7 @@
|
|
|
8591
8597
|
"name": "ellipsis-expand-trigger",
|
|
8592
8598
|
"description": "Trigger mode for ellipsis expansion",
|
|
8593
8599
|
"value": {
|
|
8594
|
-
"type": "'click'",
|
|
8600
|
+
"type": "String as () => 'click'",
|
|
8595
8601
|
"kind": "expression"
|
|
8596
8602
|
}
|
|
8597
8603
|
},
|
|
@@ -8610,6 +8616,22 @@
|
|
|
8610
8616
|
"type": "boolean",
|
|
8611
8617
|
"kind": "expression"
|
|
8612
8618
|
}
|
|
8619
|
+
},
|
|
8620
|
+
{
|
|
8621
|
+
"name": "text-color",
|
|
8622
|
+
"description": "Text color for custom color tags, only effective when using a custom color",
|
|
8623
|
+
"value": {
|
|
8624
|
+
"type": "string",
|
|
8625
|
+
"kind": "expression"
|
|
8626
|
+
}
|
|
8627
|
+
},
|
|
8628
|
+
{
|
|
8629
|
+
"name": "background-alpha",
|
|
8630
|
+
"description": "Background opacity for custom color tags, only effective when using a custom color, default 0.8",
|
|
8631
|
+
"value": {
|
|
8632
|
+
"type": "number",
|
|
8633
|
+
"kind": "expression"
|
|
8634
|
+
}
|
|
8613
8635
|
}
|
|
8614
8636
|
],
|
|
8615
8637
|
"events": [
|
|
@@ -8622,16 +8644,7 @@
|
|
|
8622
8644
|
"description": "Emitted when the user check (emit only in the checkable mode)"
|
|
8623
8645
|
}
|
|
8624
8646
|
],
|
|
8625
|
-
"slots": [
|
|
8626
|
-
{
|
|
8627
|
-
"name": "icon",
|
|
8628
|
-
"description": "Icon"
|
|
8629
|
-
},
|
|
8630
|
-
{
|
|
8631
|
-
"name": "close-icon",
|
|
8632
|
-
"description": "Close button icon"
|
|
8633
|
-
}
|
|
8634
|
-
]
|
|
8647
|
+
"slots": []
|
|
8635
8648
|
},
|
|
8636
8649
|
{
|
|
8637
8650
|
"name": "sd-textarea",
|
|
@@ -8758,7 +8771,7 @@
|
|
|
8758
8771
|
"slots": []
|
|
8759
8772
|
},
|
|
8760
8773
|
{
|
|
8761
|
-
"name": "
|
|
8774
|
+
"name": "sd-theme-provider",
|
|
8762
8775
|
"attributes": [],
|
|
8763
8776
|
"events": [],
|
|
8764
8777
|
"slots": []
|
|
@@ -9213,6 +9226,12 @@
|
|
|
9213
9226
|
}
|
|
9214
9227
|
]
|
|
9215
9228
|
},
|
|
9229
|
+
{
|
|
9230
|
+
"name": "sd-tour",
|
|
9231
|
+
"attributes": [],
|
|
9232
|
+
"events": [],
|
|
9233
|
+
"slots": []
|
|
9234
|
+
},
|
|
9216
9235
|
{
|
|
9217
9236
|
"name": "sd-transfer",
|
|
9218
9237
|
"attributes": [
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sdata/web-vue",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "SD Design Vue: A Vue.js 3 UI Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sd",
|
|
7
7
|
"vue"
|
|
8
8
|
],
|
|
9
|
-
"homepage": "https://sd.
|
|
9
|
+
"homepage": "https://sd-design.js.org",
|
|
10
10
|
"license": "AGPL-3.0-only",
|
|
11
11
|
"author": "SData FE Team",
|
|
12
12
|
"repository": {
|
|
@@ -54,20 +54,23 @@
|
|
|
54
54
|
"@arco-design/color": "^0.4.0",
|
|
55
55
|
"b-tween": "^0.3.3",
|
|
56
56
|
"b-validate": "^1.5.3",
|
|
57
|
+
"chroma-js": "^3.2.0",
|
|
57
58
|
"compute-scroll-into-view": "^3.1.1",
|
|
58
59
|
"copy-to-clipboard": "^4.0.2",
|
|
59
60
|
"cropperjs": "^2.1.1",
|
|
60
|
-
"dayjs": "^1.11.
|
|
61
|
-
"es-toolkit": "^1.
|
|
61
|
+
"dayjs": "^1.11.21",
|
|
62
|
+
"es-toolkit": "^1.47.0",
|
|
63
|
+
"motion-v": "^2.2.1",
|
|
62
64
|
"number-precision": "^1.6.0",
|
|
63
65
|
"overlayscrollbars": "^2.16.0",
|
|
66
|
+
"qrcode": "^1.5.4",
|
|
64
67
|
"resize-observer-polyfill": "^1.5.1",
|
|
65
68
|
"scroll-into-view-if-needed": "^3.1.0",
|
|
66
|
-
"vue": "^3.5.
|
|
67
|
-
"vue-virtual-scroller": "^3.0.
|
|
69
|
+
"vue": "^3.5.35",
|
|
70
|
+
"vue-virtual-scroller": "^3.0.4"
|
|
68
71
|
},
|
|
69
72
|
"devDependencies": {
|
|
70
|
-
"@babel/types": "^7.29.
|
|
73
|
+
"@babel/types": "^7.29.7",
|
|
71
74
|
"@semantic-release/changelog": "^6.0.3",
|
|
72
75
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
73
76
|
"@semantic-release/exec": "^7.1.0",
|
|
@@ -75,7 +78,8 @@
|
|
|
75
78
|
"@semantic-release/github": "^12.0.8",
|
|
76
79
|
"@semantic-release/release-notes-generator": "^14.1.1",
|
|
77
80
|
"@types/clean-css": "^4.2.11",
|
|
78
|
-
"@
|
|
81
|
+
"@types/qrcode": "^1.5.6",
|
|
82
|
+
"@vitejs/plugin-vue": "^6.0.7",
|
|
79
83
|
"@vitejs/plugin-vue-jsx": "^5.1.5",
|
|
80
84
|
"@vue/test-utils": "^2.4.10",
|
|
81
85
|
"@vueuse/core": "^14.3.0",
|
|
@@ -84,19 +88,19 @@
|
|
|
84
88
|
"glob": "^13.0.6",
|
|
85
89
|
"jest-serializer-vue": "^3.1.0",
|
|
86
90
|
"jsdom": "^29.1.1",
|
|
87
|
-
"sass": "^1.
|
|
91
|
+
"sass": "^1.100.0",
|
|
88
92
|
"semantic-release": "^25.0.3",
|
|
89
93
|
"svgo": "^4.0.1",
|
|
90
|
-
"type-fest": "^5.
|
|
94
|
+
"type-fest": "^5.7.0",
|
|
91
95
|
"typescript": "^6.0.3",
|
|
92
|
-
"vite": "^8.0.
|
|
93
|
-
"vite-plus": "^0.1.
|
|
94
|
-
"vitest": "^4.1.
|
|
96
|
+
"vite": "^8.0.16",
|
|
97
|
+
"vite-plus": "^0.1.24",
|
|
98
|
+
"vitest": "^4.1.8",
|
|
95
99
|
"vue-docgen-api": "4.79.2",
|
|
96
|
-
"vue-tsc": "^3.
|
|
100
|
+
"vue-tsc": "^3.3.3"
|
|
97
101
|
},
|
|
98
102
|
"peerDependencies": {
|
|
99
|
-
"vue": "^3.5.
|
|
103
|
+
"vue": "^3.5.35"
|
|
100
104
|
},
|
|
101
105
|
"vetur": {
|
|
102
106
|
"tags": "json/vetur-tags.json",
|
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
-
modelValue: {
|
|
4
|
-
type: DateConstructor;
|
|
5
|
-
default: undefined;
|
|
6
|
-
};
|
|
7
|
-
defaultValue: {
|
|
8
|
-
type: DateConstructor;
|
|
9
|
-
};
|
|
10
|
-
mode: {
|
|
11
|
-
type: PropType<"month" | "year">;
|
|
12
|
-
};
|
|
13
|
-
defaultMode: {
|
|
14
|
-
type: PropType<"month" | "year">;
|
|
15
|
-
default: string;
|
|
16
|
-
};
|
|
17
|
-
modes: {
|
|
18
|
-
type: PropType<("month" | "year")[]>;
|
|
19
|
-
default: () => string[];
|
|
20
|
-
};
|
|
21
|
-
allowSelect: {
|
|
22
|
-
type: BooleanConstructor;
|
|
23
|
-
default: boolean;
|
|
24
|
-
};
|
|
25
|
-
panel: {
|
|
26
|
-
type: BooleanConstructor;
|
|
27
|
-
default: boolean;
|
|
28
|
-
};
|
|
29
|
-
panelWidth: {
|
|
30
|
-
type: NumberConstructor;
|
|
31
|
-
};
|
|
32
|
-
panelTodayBtn: {
|
|
33
|
-
type: BooleanConstructor;
|
|
34
|
-
default: boolean;
|
|
35
|
-
};
|
|
36
|
-
dayStartOfWeek: {
|
|
37
|
-
type: PropType<0 | 1>;
|
|
38
|
-
default: number;
|
|
39
|
-
};
|
|
40
|
-
isWeek: {
|
|
41
|
-
type: BooleanConstructor;
|
|
42
|
-
default: boolean;
|
|
43
|
-
};
|
|
44
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
45
|
-
'update:modelValue': (_date: Date) => true;
|
|
46
|
-
change: (_date: Date) => true;
|
|
47
|
-
panelChange: (_date: Date) => true;
|
|
48
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
49
|
-
modelValue: {
|
|
50
|
-
type: DateConstructor;
|
|
51
|
-
default: undefined;
|
|
52
|
-
};
|
|
53
|
-
defaultValue: {
|
|
54
|
-
type: DateConstructor;
|
|
55
|
-
};
|
|
56
|
-
mode: {
|
|
57
|
-
type: PropType<"month" | "year">;
|
|
58
|
-
};
|
|
59
|
-
defaultMode: {
|
|
60
|
-
type: PropType<"month" | "year">;
|
|
61
|
-
default: string;
|
|
62
|
-
};
|
|
63
|
-
modes: {
|
|
64
|
-
type: PropType<("month" | "year")[]>;
|
|
65
|
-
default: () => string[];
|
|
66
|
-
};
|
|
67
|
-
allowSelect: {
|
|
68
|
-
type: BooleanConstructor;
|
|
69
|
-
default: boolean;
|
|
70
|
-
};
|
|
71
|
-
panel: {
|
|
72
|
-
type: BooleanConstructor;
|
|
73
|
-
default: boolean;
|
|
74
|
-
};
|
|
75
|
-
panelWidth: {
|
|
76
|
-
type: NumberConstructor;
|
|
77
|
-
};
|
|
78
|
-
panelTodayBtn: {
|
|
79
|
-
type: BooleanConstructor;
|
|
80
|
-
default: boolean;
|
|
81
|
-
};
|
|
82
|
-
dayStartOfWeek: {
|
|
83
|
-
type: PropType<0 | 1>;
|
|
84
|
-
default: number;
|
|
85
|
-
};
|
|
86
|
-
isWeek: {
|
|
87
|
-
type: BooleanConstructor;
|
|
88
|
-
default: boolean;
|
|
89
|
-
};
|
|
90
|
-
}>> & Readonly<{
|
|
91
|
-
onChange?: ((_date: Date) => any) | undefined;
|
|
92
|
-
"onUpdate:modelValue"?: ((_date: Date) => any) | undefined;
|
|
93
|
-
onPanelChange?: ((_date: Date) => any) | undefined;
|
|
94
|
-
}>, {
|
|
95
|
-
modelValue: Date;
|
|
96
|
-
isWeek: boolean;
|
|
97
|
-
dayStartOfWeek: 0 | 1;
|
|
98
|
-
panel: boolean;
|
|
99
|
-
modes: ("month" | "year")[];
|
|
100
|
-
defaultMode: "month" | "year";
|
|
101
|
-
allowSelect: boolean;
|
|
102
|
-
panelTodayBtn: boolean;
|
|
103
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
104
|
-
export default _default;
|