@sdata/web-vue 1.19.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
|
@@ -24,7 +24,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
24
24
|
};
|
|
25
25
|
}>, {
|
|
26
26
|
classNames: import("vue").ComputedRef<{
|
|
27
|
-
[x: string]: boolean | "
|
|
27
|
+
[x: string]: boolean | "space-around" | "space-between" | "stretch" | "center" | "end" | "start";
|
|
28
28
|
}>;
|
|
29
29
|
styles: import("vue").ComputedRef<{
|
|
30
30
|
marginTop?: string;
|
|
@@ -53,9 +53,9 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
53
53
|
default: boolean;
|
|
54
54
|
};
|
|
55
55
|
}>> & Readonly<{}>, {
|
|
56
|
-
div: boolean;
|
|
57
56
|
wrap: boolean;
|
|
58
|
-
justify: "
|
|
57
|
+
justify: "space-around" | "space-between" | "center" | "end" | "start";
|
|
58
|
+
div: boolean;
|
|
59
59
|
gutter: number | ResponsiveValue | [number | ResponsiveValue, number | ResponsiveValue];
|
|
60
|
-
align: "
|
|
60
|
+
align: "stretch" | "center" | "end" | "start";
|
|
61
61
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
package/es/grid/grid.js
CHANGED
|
@@ -8,6 +8,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8
8
|
style: normalizeStyle(_ctx.style)
|
|
9
9
|
}, [renderSlot(_ctx.$slots, "default")], 6);
|
|
10
10
|
}
|
|
11
|
-
var grid_default =
|
|
11
|
+
var grid_default = /*#__PURE__*/ _plugin_vue_export_helper_default(grid_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
12
12
|
//#endregion
|
|
13
13
|
export { grid_default as default };
|
package/es/grid/index.d.ts
CHANGED
|
@@ -138,7 +138,7 @@ declare const Grid: {
|
|
|
138
138
|
};
|
|
139
139
|
}>, {
|
|
140
140
|
classNames: import("vue").ComputedRef<{
|
|
141
|
-
[x: string]: boolean | "
|
|
141
|
+
[x: string]: boolean | "space-around" | "space-between" | "stretch" | "center" | "end" | "start";
|
|
142
142
|
}>;
|
|
143
143
|
styles: import("vue").ComputedRef<{
|
|
144
144
|
marginTop?: string;
|
|
@@ -167,11 +167,11 @@ declare const Grid: {
|
|
|
167
167
|
default: boolean;
|
|
168
168
|
};
|
|
169
169
|
}>> & Readonly<{}>, {
|
|
170
|
-
div: boolean;
|
|
171
170
|
wrap: boolean;
|
|
172
|
-
justify: "
|
|
171
|
+
justify: "space-around" | "space-between" | "center" | "end" | "start";
|
|
172
|
+
div: boolean;
|
|
173
173
|
gutter: number | import("./interface").ResponsiveValue | [number | import("./interface").ResponsiveValue, number | import("./interface").ResponsiveValue];
|
|
174
|
-
align: "
|
|
174
|
+
align: "stretch" | "center" | "end" | "start";
|
|
175
175
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
176
176
|
Col: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
177
177
|
span: {
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M7 22h34M14 5v8m20-8v8M8 41h32a1 1 0 0 0 1-1V10a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v30a1 1 0 0 0 1 1Z" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_calendar_default =
|
|
15
|
+
var icon_calendar_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_calendar_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_calendar_default as default };
|
|
@@ -16,6 +16,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16
16
|
d: "M24.938 34.829a1.2 1.2 0 0 1-1.875 0L9.56 17.949c-.628-.785-.069-1.949.937-1.949h27.007c1.006 0 1.565 1.164.937 1.95z"
|
|
17
17
|
}, null, -1)])], 16);
|
|
18
18
|
}
|
|
19
|
-
var icon_caret_down_default =
|
|
19
|
+
var icon_caret_down_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_caret_down_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
20
20
|
//#endregion
|
|
21
21
|
export { icon_caret_down_default as default };
|
|
@@ -16,6 +16,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16
16
|
d: "M13.171 24.937a1.2 1.2 0 0 1 0-1.874L30.051 9.56c.785-.629 1.949-.07 1.949.937v27.006c0 1.006-1.164 1.566-1.95.937z"
|
|
17
17
|
}, null, -1)])], 16);
|
|
18
18
|
}
|
|
19
|
-
var icon_caret_left_default =
|
|
19
|
+
var icon_caret_left_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_caret_left_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
20
20
|
//#endregion
|
|
21
21
|
export { icon_caret_left_default as default };
|
|
@@ -16,6 +16,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16
16
|
d: "M34.829 23.063c.6.48.6 1.394 0 1.874L17.949 38.44c-.785.629-1.949.07-1.949-.937V10.497c0-1.007 1.164-1.566 1.95-.937z"
|
|
17
17
|
}, null, -1)])], 16);
|
|
18
18
|
}
|
|
19
|
-
var icon_caret_right_default =
|
|
19
|
+
var icon_caret_right_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_caret_right_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
20
20
|
//#endregion
|
|
21
21
|
export { icon_caret_right_default as default };
|
|
@@ -16,6 +16,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16
16
|
d: "M23.063 13.171a1.2 1.2 0 0 1 1.875 0l13.503 16.88c.628.785.069 1.949-.937 1.949H10.497c-1.006 0-1.565-1.164-.937-1.95z"
|
|
17
17
|
}, null, -1)])], 16);
|
|
18
18
|
}
|
|
19
|
-
var icon_caret_up_default =
|
|
19
|
+
var icon_caret_up_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_caret_up_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
20
20
|
//#endregion
|
|
21
21
|
export { icon_caret_up_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M41.678 11.05 19.05 33.678 6.322 20.95" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_check_default =
|
|
15
|
+
var icon_check_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_check_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_check_default as default };
|
|
@@ -18,6 +18,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18
18
|
"clip-rule": "evenodd"
|
|
19
19
|
}, null, -1)])], 16);
|
|
20
20
|
}
|
|
21
|
-
var icon_check_circle_fill_default =
|
|
21
|
+
var icon_check_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_check_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
22
22
|
//#endregion
|
|
23
23
|
export { icon_check_circle_fill_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 14v10h9.5m8.5 0c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_clock_circle_default =
|
|
15
|
+
var icon_clock_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_clock_circle_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_clock_circle_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M9.857 9.858 24 24m0 0 14.142 14.142M24 24 38.142 9.858M24 24 9.857 38.142" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_close_default =
|
|
15
|
+
var icon_close_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_close_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_close_default as default };
|
|
@@ -18,6 +18,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18
18
|
"clip-rule": "evenodd"
|
|
19
19
|
}, null, -1)])], 16);
|
|
20
20
|
}
|
|
21
|
-
var icon_close_circle_fill_default =
|
|
21
|
+
var icon_close_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_close_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
22
22
|
//#endregion
|
|
23
23
|
export { icon_close_circle_fill_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M20 6h18a2 2 0 0 1 2 2v22M8 16v24c0 1.105.891 2 1.996 2h20.007A1.99 1.99 0 0 0 32 40.008V15.997A1.997 1.997 0 0 0 30 14H10a2 2 0 0 0-2 2Z" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_copy_default =
|
|
15
|
+
var icon_copy_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_copy_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_copy_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M5 11h5.5m0 0v29a1 1 0 0 0 1 1h25a1 1 0 0 0 1-1V11m-27 0H16m21.5 0H43m-5.5 0H32m-16 0V7h16v4m-16 0h16M20 18v15m8-15v15" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_delete_default =
|
|
15
|
+
var icon_delete_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_delete_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_delete_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M36.857 9.9 22.715 24.042l14.142 14.142M25.544 9.9 11.402 24.042l14.142 14.142" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_double_left_default =
|
|
15
|
+
var icon_double_left_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_double_left_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_double_left_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m11.143 38.1 14.142-14.142L11.143 9.816M22.456 38.1l14.142-14.142L22.456 9.816" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_double_right_default =
|
|
15
|
+
var icon_double_right_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_double_right_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_double_right_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M39.6 17.443 24.043 33 8.487 17.443" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_down_default =
|
|
15
|
+
var icon_down_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_down_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_down_default as default };
|
|
@@ -16,6 +16,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16
16
|
d: "M40 17v2h-2v-2zM25 17v2h-2v-2zM10 17v2H8v-2zM40 29v2h-2v-2zM25 29v2h-2v-2zM10 29v2H8v-2z"
|
|
17
17
|
}, null, -1), createElementVNode("path", { d: "M40 17v2h-2v-2zM25 17v2h-2v-2zM10 17v2H8v-2zM40 29v2h-2v-2zM25 29v2h-2v-2zM10 29v2H8v-2z" }, null, -1)])], 16);
|
|
18
18
|
}
|
|
19
|
-
var icon_drag_dot_default =
|
|
19
|
+
var icon_drag_dot_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_drag_dot_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
20
20
|
//#endregion
|
|
21
21
|
export { icon_drag_dot_default as default };
|
|
@@ -16,6 +16,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16
16
|
d: "M17 8h2v2h-2zM17 23h2v2h-2zM17 38h2v2h-2zM29 8h2v2h-2zM29 23h2v2h-2zM29 38h2v2h-2z"
|
|
17
17
|
}, null, -1), createElementVNode("path", { d: "M17 8h2v2h-2zM17 23h2v2h-2zM17 38h2v2h-2zM29 8h2v2h-2zM29 23h2v2h-2zM29 38h2v2h-2z" }, null, -1)])], 16);
|
|
18
18
|
}
|
|
19
|
-
var icon_drag_dot_vertical_default =
|
|
19
|
+
var icon_drag_dot_vertical_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_drag_dot_vertical_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
20
20
|
//#endregion
|
|
21
21
|
export { icon_drag_dot_vertical_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m30.48 19.038 5.733-5.734a1 1 0 0 0 0-1.414l-5.586-5.586a1 1 0 0 0-1.414 0l-5.734 5.734m7 7L15.763 33.754a1 1 0 0 1-.59.286l-6.048.708a1 1 0 0 1-1.113-1.069l.477-6.31a1 1 0 0 1 .29-.631l14.7-14.7m7 7-7-7M6 42h36" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_edit_default =
|
|
15
|
+
var icon_edit_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_edit_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_edit_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 5v6m7 1 4-4m-18 4-4-4m28.5 22H28s-1 3-4 3-4-3-4-3H6.5M40 41H8a2 2 0 0 1-2-2v-8.46a2 2 0 0 1 .272-1.007l6.15-10.54A2 2 0 0 1 14.148 18H33.85a2 2 0 0 1 1.728.992l6.149 10.541A2 2 0 0 1 42 30.541V39a2 2 0 0 1-2 2Z" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_empty_default =
|
|
15
|
+
var icon_empty_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_empty_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_empty_default as default };
|
|
@@ -25,6 +25,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25
25
|
}, null, -1)
|
|
26
26
|
])], 16);
|
|
27
27
|
}
|
|
28
|
-
var icon_exclamation_default =
|
|
28
|
+
var icon_exclamation_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_exclamation_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
29
29
|
//#endregion
|
|
30
30
|
export { icon_exclamation_default as default };
|
|
@@ -18,6 +18,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18
18
|
"clip-rule": "evenodd"
|
|
19
19
|
}, null, -1)])], 16);
|
|
20
20
|
}
|
|
21
|
-
var icon_exclamation_circle_fill_default =
|
|
21
|
+
var icon_exclamation_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_exclamation_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
22
22
|
//#endregion
|
|
23
23
|
export { icon_exclamation_circle_fill_default as default };
|
|
@@ -15,6 +15,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15
15
|
"clip-rule": "evenodd"
|
|
16
16
|
}, null, -1), createElementVNode("path", { d: "M29 24a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z" }, null, -1)])], 16);
|
|
17
17
|
}
|
|
18
|
-
var icon_eye_default =
|
|
18
|
+
var icon_eye_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_eye_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
19
19
|
//#endregion
|
|
20
20
|
export { icon_eye_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M14 14.5c-2.69 2-5.415 5.33-8 9.5q8.06 13 18 13 4.987 0 9.5-3.271M17.464 12.5C19 11 21.749 11 24 11q9.94 0 18 13-2.649 4.272-5.5 7.14" }, null, -1), createElementVNode("path", { d: "M29 24a5 5 0 1 1-10 0 5 5 0 0 1 10 0ZM6.852 7.103l34.294 34.294" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_eye_invisible_default =
|
|
15
|
+
var icon_eye_invisible_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_eye_invisible_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_eye_invisible_default as default };
|
|
@@ -18,6 +18,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18
18
|
"clip-rule": "evenodd"
|
|
19
19
|
}, null, -1)])], 16);
|
|
20
20
|
}
|
|
21
|
-
var icon_face_frown_fill_default =
|
|
21
|
+
var icon_face_frown_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_face_frown_fill_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
22
22
|
//#endregion
|
|
23
23
|
export { icon_face_frown_fill_default as default };
|
|
@@ -18,6 +18,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18
18
|
"clip-rule": "evenodd"
|
|
19
19
|
}, null, -1)])], 16);
|
|
20
20
|
}
|
|
21
|
-
var icon_face_meh_fill_default =
|
|
21
|
+
var icon_face_meh_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_face_meh_fill_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
22
22
|
//#endregion
|
|
23
23
|
export { icon_face_meh_fill_default as default };
|
|
@@ -18,6 +18,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18
18
|
"clip-rule": "evenodd"
|
|
19
19
|
}, null, -1)])], 16);
|
|
20
20
|
}
|
|
21
|
-
var icon_face_smile_fill_default =
|
|
21
|
+
var icon_face_smile_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_face_smile_fill_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
22
22
|
//#endregion
|
|
23
23
|
export { icon_face_smile_fill_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M16 21h16m-16 8h10m11 13H11a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h21l7 7v27a2 2 0 0 1-2 2Z" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_file_default =
|
|
15
|
+
var icon_file_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_file_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_file_default as default };
|
|
@@ -20,6 +20,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20
20
|
createElementVNode("path", { d: "M25 30a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm0 0-.951-12.363a.5.5 0 0 1 .58-.532L30 18" }, null, -1)
|
|
21
21
|
])], 16);
|
|
22
22
|
}
|
|
23
|
-
var icon_file_audio_default =
|
|
23
|
+
var icon_file_audio_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_file_audio_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
24
24
|
//#endregion
|
|
25
25
|
export { icon_file_audio_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m26 33 5-6v6zm0 0-3-4-4 4zm11 9H11a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h21l7 7v27a2 2 0 0 1-2 2ZM17 19h1v1h-1z" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_file_image_default =
|
|
15
|
+
var icon_file_image_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_file_image_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_file_image_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M11 42h26a2 2 0 0 0 2-2V13.828a2 2 0 0 0-.586-1.414l-5.828-5.828A2 2 0 0 0 31.172 6H11a2 2 0 0 0-2 2v32a2 2 0 0 0 2 2Z" }, null, -1), createElementVNode("path", { d: "M22.305 21.028c.874 1.939 3.506 6.265 4.903 8.055 1.747 2.237 3.494 2.685 4.368 2.237.873-.447 1.21-4.548-7.425-2.685-7.523 1.623-7.424 3.58-6.988 4.476.728 1.193 2.522 2.627 5.678-6.266C25.699 18.79 24.489 17 23.277 17c-1.408 0-2.538.805-.972 4.028Z" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_file_pdf_default =
|
|
15
|
+
var icon_file_pdf_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_file_pdf_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_file_pdf_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M37 42H11a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h21l7 7v27a2 2 0 0 1-2 2Z" }, null, -1), createElementVNode("path", { d: "M22 27.796v-6l5 3z" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_file_video_default =
|
|
15
|
+
var icon_file_video_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_file_video_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_file_video_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M30 42V22.549a1 1 0 0 1 .463-.844l10.074-6.41A1 1 0 0 0 41 14.45V8a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v6.451a1 1 0 0 0 .463.844l10.074 6.41a1 1 0 0 1 .463.844V37" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_filter_default =
|
|
15
|
+
var icon_filter_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_filter_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_filter_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M42 17V9a1 1 0 0 0-1-1h-8M6 17V9a1 1 0 0 1 1-1h8m27 23v8a1 1 0 0 1-1 1h-8M6 31v8a1 1 0 0 0 1 1h8" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_fullscreen_default =
|
|
15
|
+
var icon_fullscreen_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_fullscreen_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_fullscreen_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createStaticVNode("<path d=\"M41 26V9a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v30a2 2 0 0 0 2 2h17\"></path><path d=\"m24 33 9-8.5V27s-2 1-3.5 2.5C27.841 31.159 27 33 27 33zm0 0-3.5-4.5L17 33z\"></path><path fill=\"currentColor\" stroke=\"none\" d=\"M20.5 28.5 17 33h7zM33 24.5 24 33h3s.841-1.841 2.5-3.5C31 28 33 27 33 27z\"></path><path fill=\"currentColor\" fill-rule=\"evenodd\" stroke=\"none\" d=\"M46 38a8 8 0 1 1-16 0 8 8 0 0 1 16 0m-4.95-4.782 1.74 1.74-3.045 3.046 3.046 3.046-1.74 1.74-3.047-3.045-3.046 3.046-1.74-1.74 3.046-3.047-3.046-3.046 1.74-1.74 3.046 3.046z\" clip-rule=\"evenodd\"></path><path d=\"M17 15h-2v2h2z\"></path>", 5)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_image_close_default =
|
|
15
|
+
var icon_image_close_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_image_close_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_image_close_default as default };
|
|
@@ -25,6 +25,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25
25
|
}, null, -1)
|
|
26
26
|
])], 16);
|
|
27
27
|
}
|
|
28
|
-
var icon_info_default =
|
|
28
|
+
var icon_info_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_info_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
29
29
|
//#endregion
|
|
30
30
|
export { icon_info_default as default };
|
|
@@ -18,6 +18,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18
18
|
"clip-rule": "evenodd"
|
|
19
19
|
}, null, -1)])], 16);
|
|
20
20
|
}
|
|
21
|
-
var icon_info_circle_fill_default =
|
|
21
|
+
var icon_info_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_info_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
22
22
|
//#endregion
|
|
23
23
|
export { icon_info_circle_fill_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M32 8.4 16.444 23.956 32 39.513" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_left_default =
|
|
15
|
+
var icon_left_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_left_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_left_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m14.1 25.414-4.95 4.95a6 6 0 0 0 8.486 8.485l8.485-8.485a6 6 0 0 0 0-8.485m7.779.707 4.95-4.95a6 6 0 1 0-8.486-8.485l-8.485 8.485a6 6 0 0 0 0 8.485" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_link_default =
|
|
15
|
+
var icon_link_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_link_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_link_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M42 24c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_loading_default =
|
|
15
|
+
var icon_loading_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_loading_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_loading_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M42 11H6M42 24H22M42 37H6M13.66 26.912l-4.82-3.118 4.82-3.118z" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_menu_fold_default =
|
|
15
|
+
var icon_menu_fold_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_menu_fold_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_menu_fold_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M6 11h36M22 24h20M6 37h36M8 20.882 12.819 24 8 27.118z" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_menu_unfold_default =
|
|
15
|
+
var icon_menu_unfold_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_menu_unfold_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_menu_unfold_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M5 24h38" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_minus_default =
|
|
15
|
+
var icon_minus_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_minus_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_minus_default as default };
|
|
@@ -16,6 +16,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16
16
|
d: "M38 25v-2h2v2zM23 25v-2h2v2zM8 25v-2h2v2z"
|
|
17
17
|
}, null, -1), createElementVNode("path", { d: "M38 25v-2h2v2zM23 25v-2h2v2zM8 25v-2h2v2z" }, null, -1)])], 16);
|
|
18
18
|
}
|
|
19
|
-
var icon_more_default =
|
|
19
|
+
var icon_more_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_more_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
20
20
|
//#endregion
|
|
21
21
|
export { icon_more_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M29.506 6.502 18.493 41.498" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_oblique_line_default =
|
|
15
|
+
var icon_oblique_line_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_oblique_line_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_oblique_line_default as default };
|
|
@@ -20,6 +20,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20
20
|
createElementVNode("path", { d: "M24 17h1v1h-1zM24 30h1v1h-1z" }, null, -1)
|
|
21
21
|
])], 16);
|
|
22
22
|
}
|
|
23
|
-
var icon_original_size_default =
|
|
23
|
+
var icon_original_size_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_original_size_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
24
24
|
//#endregion
|
|
25
25
|
export { icon_original_size_default as default };
|
|
@@ -16,6 +16,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16
16
|
d: "M14 12h4v24h-4zM30 12h4v24h-4z"
|
|
17
17
|
}, null, -1)])], 16);
|
|
18
18
|
}
|
|
19
|
-
var icon_pause_default =
|
|
19
|
+
var icon_pause_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_pause_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
20
20
|
//#endregion
|
|
21
21
|
export { icon_pause_default as default };
|
|
@@ -16,6 +16,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16
16
|
d: "M17.533 10.974a1 1 0 0 0-1.537.844v24.356a1 1 0 0 0 1.537.844L36.67 24.84a1 1 0 0 0 0-1.688z"
|
|
17
17
|
}, null, -1)])], 16);
|
|
18
18
|
}
|
|
19
|
-
var icon_play_arrow_fill_default =
|
|
19
|
+
var icon_play_arrow_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_play_arrow_fill_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
20
20
|
//#endregion
|
|
21
21
|
export { icon_play_arrow_fill_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M5 24h38M24 5v38" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_plus_default =
|
|
15
|
+
var icon_plus_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_plus_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_plus_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M42 24c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z" }, null, -1), createElementVNode("path", { d: "M24.006 31v4.008m0-6.008L24 28c0-3 3-4 4.78-6.402C30.558 19.195 28.288 15 23.987 15c-4.014 0-5.382 2.548-5.388 4.514v.465" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_question_circle_default =
|
|
15
|
+
var icon_question_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_question_circle_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_question_circle_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m16 39.513 15.556-15.557L16 8.4" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_right_default =
|
|
15
|
+
var icon_right_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_right_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_right_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M10 22a1 1 0 0 1 1-1h20a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1zM23 11h11a6 6 0 0 1 6 6v6M22.5 12.893 19.587 11 22.5 9.107z" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_rotate_left_default =
|
|
15
|
+
var icon_rotate_left_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_rotate_left_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_rotate_left_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M38 22a1 1 0 0 0-1-1H17a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h20a1 1 0 0 0 1-1zM25 11H14a6 6 0 0 0-6 6v6M25.5 12.893 28.413 11 25.5 9.107z" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_rotate_right_default =
|
|
15
|
+
var icon_rotate_right_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_rotate_right_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_rotate_right_default as default };
|
|
@@ -12,6 +12,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12
12
|
style: _ctx.innerStyle
|
|
13
13
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M33.072 33.071c6.248-6.248 6.248-16.379 0-22.627-6.249-6.249-16.38-6.249-22.628 0s-6.248 16.379 0 22.627 16.38 6.248 22.628 0Zm0 0 8.485 8.485" }, null, -1)])], 16);
|
|
14
14
|
}
|
|
15
|
-
var icon_search_default =
|
|
15
|
+
var icon_search_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_search_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
17
17
|
export { icon_search_default as default };
|
|
@@ -16,6 +16,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16
16
|
d: "M22.683 5.415c.568-1.043 2.065-1.043 2.634 0l5.507 10.098a1.5 1.5 0 0 0 1.04.756l11.306 2.117c1.168.219 1.63 1.642.814 2.505l-7.902 8.359a1.5 1.5 0 0 0-.397 1.223l1.48 11.407c.153 1.177-1.058 2.057-2.131 1.548l-10.391-4.933a1.5 1.5 0 0 0-1.287 0l-10.39 4.933c-1.073.51-2.284-.37-2.131-1.548l1.48-11.407a1.5 1.5 0 0 0-.398-1.223L4.015 20.89c-.816-.863-.353-2.286.814-2.505l11.306-2.117a1.5 1.5 0 0 0 1.04-.756z"
|
|
17
17
|
}, null, -1)])], 16);
|
|
18
18
|
}
|
|
19
|
-
var icon_star_fill_default =
|
|
19
|
+
var icon_star_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_star_fill_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
20
20
|
//#endregion
|
|
21
21
|
export { icon_star_fill_default as default };
|