@yh-ui/components 0.1.16 → 0.1.21
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 +193 -6
- package/dist/affix/index.d.ts +202 -1
- package/dist/affix/src/affix.vue.d.ts +55 -6
- package/dist/ai-action-group/__tests__/ai-action-group.test.cjs +86 -0
- package/dist/ai-action-group/__tests__/ai-action-group.test.mjs +53 -0
- package/dist/ai-action-group/index.d.ts +110 -1
- package/dist/ai-action-group/src/ai-action-group.vue +8 -8
- package/dist/ai-action-group/src/ai-action-group.vue.d.ts +29 -4
- package/dist/ai-agent-card/__tests__/ai-agent-card.test.cjs +135 -0
- package/dist/ai-agent-card/__tests__/ai-agent-card.test.mjs +69 -0
- package/dist/ai-agent-card/index.d.ts +176 -1
- package/dist/ai-agent-card/src/ai-agent-card.vue +4 -4
- package/dist/ai-agent-card/src/ai-agent-card.vue.d.ts +50 -7
- package/dist/ai-artifacts/index.d.ts +276 -1
- package/dist/ai-artifacts/src/ai-artifacts.cjs +60 -0
- package/dist/ai-artifacts/src/ai-artifacts.css +5 -1
- package/dist/ai-artifacts/src/ai-artifacts.d.ts +99 -18
- package/dist/ai-artifacts/src/ai-artifacts.mjs +60 -0
- package/dist/ai-artifacts/src/ai-artifacts.vue +177 -28
- package/dist/ai-artifacts/src/ai-artifacts.vue.d.ts +149 -36
- package/dist/ai-attachments/__tests__/ai-attachments.ssr.test.cjs +50 -0
- package/dist/ai-attachments/__tests__/ai-attachments.ssr.test.mjs +33 -0
- package/dist/ai-attachments/__tests__/ai-attachments.test.cjs +113 -0
- package/dist/ai-attachments/__tests__/ai-attachments.test.mjs +81 -0
- package/dist/ai-attachments/index.cjs +26 -0
- package/dist/ai-attachments/index.d.ts +363 -0
- package/dist/ai-attachments/index.mjs +5 -0
- package/dist/ai-attachments/src/ai-attachments.cjs +96 -0
- package/dist/ai-attachments/src/ai-attachments.css +685 -0
- package/dist/ai-attachments/src/ai-attachments.d.ts +127 -0
- package/dist/ai-attachments/src/ai-attachments.mjs +90 -0
- package/dist/ai-attachments/src/ai-attachments.vue +1012 -0
- package/dist/ai-attachments/src/ai-attachments.vue.d.ts +218 -0
- package/dist/ai-bubble/__tests__/ai-bubble.ssr.test.cjs +8 -0
- package/dist/ai-bubble/__tests__/ai-bubble.ssr.test.mjs +8 -0
- package/dist/ai-bubble/__tests__/ai-bubble.test.cjs +442 -45
- package/dist/ai-bubble/__tests__/ai-bubble.test.mjs +288 -18
- package/dist/ai-bubble/index.d.ts +442 -1
- package/dist/ai-bubble/src/ai-bubble.cjs +130 -0
- package/dist/ai-bubble/src/ai-bubble.css +104 -0
- package/dist/ai-bubble/src/ai-bubble.d.ts +369 -30
- package/dist/ai-bubble/src/ai-bubble.mjs +172 -0
- package/dist/ai-bubble/src/ai-bubble.vue +1228 -54
- package/dist/ai-bubble/src/ai-bubble.vue.d.ts +235 -72
- package/dist/ai-bubble-list/__tests__/ai-bubble-list.ssr.test.cjs +51 -0
- package/dist/ai-bubble-list/__tests__/ai-bubble-list.ssr.test.mjs +51 -0
- package/dist/ai-bubble-list/__tests__/ai-bubble-list.test.cjs +138 -0
- package/dist/ai-bubble-list/__tests__/ai-bubble-list.test.mjs +112 -0
- package/dist/ai-bubble-list/index.cjs +26 -0
- package/dist/ai-bubble-list/index.d.ts +156 -0
- package/dist/ai-bubble-list/index.mjs +5 -0
- package/dist/ai-bubble-list/src/ai-bubble-list.cjs +57 -0
- package/dist/ai-bubble-list/src/ai-bubble-list.css +490 -0
- package/dist/ai-bubble-list/src/ai-bubble-list.d.ts +58 -0
- package/dist/ai-bubble-list/src/ai-bubble-list.mjs +51 -0
- package/dist/ai-bubble-list/src/ai-bubble-list.vue +594 -0
- package/dist/ai-bubble-list/src/ai-bubble-list.vue.d.ts +93 -0
- package/dist/ai-chat/__tests__/ai-chat.ssr.test.cjs +8 -0
- package/dist/ai-chat/__tests__/ai-chat.ssr.test.mjs +8 -0
- package/dist/ai-chat/__tests__/ai-chat.test.cjs +8 -0
- package/dist/ai-chat/__tests__/ai-chat.test.mjs +8 -0
- package/dist/ai-chat/index.d.ts +164 -1
- package/dist/ai-chat/src/ai-chat.cjs +21 -0
- package/dist/ai-chat/src/ai-chat.css +25 -0
- package/dist/ai-chat/src/ai-chat.d.ts +21 -0
- package/dist/ai-chat/src/ai-chat.mjs +21 -0
- package/dist/ai-chat/src/ai-chat.vue +93 -16
- package/dist/ai-chat/src/ai-chat.vue.d.ts +64 -7
- package/dist/ai-code-block/__tests__/ai-code-block.ssr.test.cjs +9 -0
- package/dist/ai-code-block/__tests__/ai-code-block.ssr.test.mjs +9 -0
- package/dist/ai-code-block/index.d.ts +220 -1
- package/dist/ai-code-block/src/ai-code-block.cjs +17 -1
- package/dist/ai-code-block/src/ai-code-block.css +23 -0
- package/dist/ai-code-block/src/ai-code-block.d.ts +18 -1
- package/dist/ai-code-block/src/ai-code-block.mjs +17 -1
- package/dist/ai-code-block/src/ai-code-block.vue +132 -27
- package/dist/ai-code-block/src/ai-code-block.vue.d.ts +72 -6
- package/dist/ai-code-editor/__tests__/ai-code-editor.ssr.test.cjs +46 -0
- package/dist/ai-code-editor/__tests__/ai-code-editor.ssr.test.mjs +39 -0
- package/dist/ai-code-editor/__tests__/ai-code-editor.test.cjs +90 -0
- package/dist/ai-code-editor/__tests__/ai-code-editor.test.mjs +78 -0
- package/dist/ai-code-editor/index.cjs +26 -0
- package/dist/ai-code-editor/index.d.ts +135 -0
- package/dist/ai-code-editor/index.mjs +5 -0
- package/dist/ai-code-editor/src/ai-code-editor.cjs +100 -0
- package/dist/ai-code-editor/src/ai-code-editor.css +473 -0
- package/dist/ai-code-editor/src/ai-code-editor.d.ts +104 -0
- package/dist/ai-code-editor/src/ai-code-editor.mjs +94 -0
- package/dist/ai-code-editor/src/ai-code-editor.vue +673 -0
- package/dist/ai-code-editor/src/ai-code-editor.vue.d.ts +132 -0
- package/dist/ai-code-runner/__tests__/ai-code-runner.ssr.test.cjs +28 -0
- package/dist/ai-code-runner/__tests__/ai-code-runner.ssr.test.mjs +26 -0
- package/dist/ai-code-runner/__tests__/ai-code-runner.test.cjs +69 -0
- package/dist/ai-code-runner/__tests__/ai-code-runner.test.mjs +66 -0
- package/dist/ai-code-runner/index.cjs +26 -0
- package/dist/ai-code-runner/index.d.ts +70 -0
- package/dist/ai-code-runner/index.mjs +5 -0
- package/dist/ai-code-runner/src/ai-code-runner.cjs +50 -0
- package/dist/ai-code-runner/src/ai-code-runner.css +504 -0
- package/dist/ai-code-runner/src/ai-code-runner.d.ts +55 -0
- package/dist/ai-code-runner/src/ai-code-runner.mjs +44 -0
- package/dist/ai-code-runner/src/ai-code-runner.vue +692 -0
- package/dist/ai-code-runner/src/ai-code-runner.vue.d.ts +67 -0
- package/dist/ai-code-runner/src/webcontainer.cjs +17 -0
- package/dist/ai-code-runner/src/webcontainer.d.ts +4 -0
- package/dist/ai-code-runner/src/webcontainer.mjs +9 -0
- package/dist/ai-conversations/index.d.ts +216 -1
- package/dist/ai-conversations/src/ai-conversations.cjs +29 -0
- package/dist/ai-conversations/src/ai-conversations.css +45 -7
- package/dist/ai-conversations/src/ai-conversations.d.ts +28 -0
- package/dist/ai-conversations/src/ai-conversations.mjs +29 -0
- package/dist/ai-conversations/src/ai-conversations.vue +172 -42
- package/dist/ai-conversations/src/ai-conversations.vue.d.ts +78 -3
- package/dist/ai-editor-sender/index.d.ts +417 -1
- package/dist/ai-editor-sender/src/ai-editor-sender.cjs +92 -1
- package/dist/ai-editor-sender/src/ai-editor-sender.css +96 -0
- package/dist/ai-editor-sender/src/ai-editor-sender.d.ts +144 -29
- package/dist/ai-editor-sender/src/ai-editor-sender.mjs +92 -1
- package/dist/ai-editor-sender/src/ai-editor-sender.vue +309 -3
- package/dist/ai-editor-sender/src/ai-editor-sender.vue.d.ts +221 -50
- package/dist/ai-file-card/__tests__/ai-file-card.ssr.test.cjs +45 -0
- package/dist/ai-file-card/__tests__/ai-file-card.ssr.test.mjs +29 -0
- package/dist/ai-file-card/__tests__/ai-file-card.test.cjs +160 -0
- package/dist/ai-file-card/__tests__/ai-file-card.test.mjs +109 -0
- package/dist/ai-file-card/index.cjs +26 -0
- package/dist/ai-file-card/index.d.ts +231 -0
- package/dist/ai-file-card/index.mjs +5 -0
- package/dist/ai-file-card/src/ai-file-card.cjs +76 -0
- package/dist/ai-file-card/src/ai-file-card.css +757 -0
- package/dist/ai-file-card/src/ai-file-card.d.ts +176 -0
- package/dist/ai-file-card/src/ai-file-card.mjs +70 -0
- package/dist/ai-file-card/src/ai-file-card.vue +1054 -0
- package/dist/ai-file-card/src/ai-file-card.vue.d.ts +135 -0
- package/dist/ai-mention/index.d.ts +368 -14
- package/dist/ai-mention/src/ai-mention.cjs +73 -2
- package/dist/ai-mention/src/ai-mention.css +125 -0
- package/dist/ai-mention/src/ai-mention.d.ts +105 -1
- package/dist/ai-mention/src/ai-mention.mjs +73 -2
- package/dist/ai-mention/src/ai-mention.vue +596 -10
- package/dist/ai-mention/src/ai-mention.vue.d.ts +158 -15
- package/dist/ai-mermaid/__tests__/ai-mermaid.ssr.test.cjs +43 -0
- package/dist/ai-mermaid/__tests__/ai-mermaid.ssr.test.mjs +33 -0
- package/dist/ai-mermaid/__tests__/ai-mermaid.test.cjs +113 -0
- package/dist/ai-mermaid/__tests__/ai-mermaid.test.mjs +92 -0
- package/dist/ai-mermaid/index.cjs +26 -0
- package/dist/ai-mermaid/index.d.ts +228 -0
- package/dist/ai-mermaid/index.mjs +5 -0
- package/dist/ai-mermaid/src/ai-mermaid.cjs +72 -0
- package/dist/ai-mermaid/src/ai-mermaid.css +601 -0
- package/dist/ai-mermaid/src/ai-mermaid.d.ts +113 -0
- package/dist/ai-mermaid/src/ai-mermaid.mjs +66 -0
- package/dist/ai-mermaid/src/ai-mermaid.vue +841 -0
- package/dist/ai-mermaid/src/ai-mermaid.vue.d.ts +133 -0
- package/dist/ai-prompts/index.d.ts +104 -1
- package/dist/ai-prompts/src/ai-prompts.vue.d.ts +27 -6
- package/dist/ai-provider/index.d.ts +139 -1
- package/dist/ai-provider/src/ai-provider.cjs +61 -1
- package/dist/ai-provider/src/ai-provider.d.ts +116 -6
- package/dist/ai-provider/src/ai-provider.mjs +57 -0
- package/dist/ai-provider/src/ai-provider.vue +58 -3
- package/dist/ai-provider/src/ai-provider.vue.d.ts +44 -7
- package/dist/ai-sender/__tests__/ai-sender.test.cjs +118 -2
- package/dist/ai-sender/__tests__/ai-sender.test.mjs +68 -1
- package/dist/ai-sender/index.d.ts +236 -1
- package/dist/ai-sender/src/ai-sender.cjs +5 -1
- package/dist/ai-sender/src/ai-sender.css +38 -0
- package/dist/ai-sender/src/ai-sender.d.ts +4 -0
- package/dist/ai-sender/src/ai-sender.mjs +5 -1
- package/dist/ai-sender/src/ai-sender.vue +86 -2
- package/dist/ai-sender/src/ai-sender.vue.d.ts +77 -15
- package/dist/ai-sources/__tests__/ai-sources.test.cjs +112 -5
- package/dist/ai-sources/__tests__/ai-sources.test.mjs +78 -7
- package/dist/ai-sources/index.d.ts +136 -1
- package/dist/ai-sources/src/ai-sources.css +24 -0
- package/dist/ai-sources/src/ai-sources.d.ts +3 -0
- package/dist/ai-sources/src/ai-sources.vue +88 -21
- package/dist/ai-sources/src/ai-sources.vue.d.ts +38 -5
- package/dist/ai-thinking/index.d.ts +152 -1
- package/dist/ai-thinking/src/ai-thinking.cjs +28 -0
- package/dist/ai-thinking/src/ai-thinking.d.ts +28 -0
- package/dist/ai-thinking/src/ai-thinking.mjs +28 -0
- package/dist/ai-thinking/src/ai-thinking.vue +9 -6
- package/dist/ai-thinking/src/ai-thinking.vue.d.ts +58 -2
- package/dist/ai-thought-chain/__tests__/ai-thought-chain.ssr.test.cjs +6 -1
- package/dist/ai-thought-chain/__tests__/ai-thought-chain.ssr.test.mjs +4 -1
- package/dist/ai-thought-chain/__tests__/ai-thought-chain.test.cjs +141 -1
- package/dist/ai-thought-chain/__tests__/ai-thought-chain.test.mjs +104 -1
- package/dist/ai-thought-chain/index.d.ts +286 -1
- package/dist/ai-thought-chain/src/ai-thought-chain.cjs +61 -1
- package/dist/ai-thought-chain/src/ai-thought-chain.css +106 -0
- package/dist/ai-thought-chain/src/ai-thought-chain.d.ts +68 -0
- package/dist/ai-thought-chain/src/ai-thought-chain.mjs +61 -1
- package/dist/ai-thought-chain/src/ai-thought-chain.vue +285 -20
- package/dist/ai-thought-chain/src/ai-thought-chain.vue.d.ts +95 -11
- package/dist/ai-voice-trigger/index.d.ts +155 -1
- package/dist/ai-voice-trigger/src/ai-voice-trigger.vue +2 -2
- package/dist/ai-voice-trigger/src/ai-voice-trigger.vue.d.ts +43 -4
- package/dist/ai-welcome/index.d.ts +131 -1
- package/dist/ai-welcome/src/ai-welcome.vue.d.ts +32 -3
- package/dist/alert/index.d.ts +289 -1
- package/dist/alert/src/alert.vue.d.ts +81 -10
- package/dist/autocomplete/index.d.ts +134 -1
- package/dist/autocomplete/src/autocomplete.vue.d.ts +15 -12
- package/dist/avatar/index.d.ts +9 -6
- package/dist/avatar/src/avatar.d.ts +4 -0
- package/dist/avatar/src/avatar.vue +2 -0
- package/dist/avatar/src/avatar.vue.d.ts +2 -1
- package/dist/back-top/index.d.ts +153 -1
- package/dist/back-top/src/back-top.vue.d.ts +42 -5
- package/dist/badge/index.d.ts +40 -1
- package/dist/badge/src/badge.vue.d.ts +1 -1
- package/dist/breadcrumb/index.d.ts +177 -2
- package/dist/breadcrumb/src/breadcrumb-item.vue.d.ts +1 -1
- package/dist/button/index.d.ts +33 -33
- package/dist/button/src/button.css +11 -6
- package/dist/button/src/button.vue +11 -6
- package/dist/button/src/button.vue.d.ts +6 -6
- package/dist/calendar/index.d.ts +1653 -1
- package/dist/calendar/src/calendar.vue +12 -11
- package/dist/calendar/src/calendar.vue.d.ts +241 -121
- package/dist/card/index.d.ts +44 -1
- package/dist/card/src/card.vue.d.ts +2 -2
- package/dist/carousel/__tests__/carousel.ssr.test.cjs +27 -0
- package/dist/carousel/__tests__/carousel.ssr.test.mjs +27 -0
- package/dist/carousel/__tests__/carousel.test.cjs +115 -0
- package/dist/carousel/__tests__/carousel.test.mjs +98 -0
- package/dist/carousel/index.cjs +43 -0
- package/dist/carousel/index.d.ts +456 -0
- package/dist/carousel/index.mjs +10 -0
- package/dist/carousel/src/carousel-item.cjs +10 -0
- package/dist/carousel/src/carousel-item.d.ts +9 -0
- package/dist/carousel/src/carousel-item.mjs +4 -0
- package/dist/carousel/src/carousel-item.vue +277 -0
- package/dist/{menu/src/menu-item-group.d.vue.ts → carousel/src/carousel-item.vue.d.ts} +4 -12
- package/dist/carousel/src/carousel.cjs +118 -0
- package/dist/carousel/src/carousel.css +705 -0
- package/dist/carousel/src/carousel.d.ts +137 -0
- package/dist/carousel/src/carousel.mjs +112 -0
- package/dist/carousel/src/carousel.vue +1070 -0
- package/dist/carousel/src/carousel.vue.d.ts +235 -0
- package/dist/cascader/index.d.ts +211 -2
- package/dist/cascader/src/cascader-panel.vue.d.ts +3 -3
- package/dist/cascader/src/cascader.vue.d.ts +14 -14
- package/dist/category-nav/__tests__/category-nav.ssr.test.cjs +35 -0
- package/dist/category-nav/__tests__/category-nav.ssr.test.mjs +21 -0
- package/dist/category-nav/__tests__/category-nav.test.cjs +53 -0
- package/dist/category-nav/__tests__/category-nav.test.mjs +33 -0
- package/dist/category-nav/index.cjs +26 -0
- package/dist/category-nav/index.d.ts +225 -0
- package/dist/category-nav/index.mjs +5 -0
- package/dist/category-nav/src/category-nav.cjs +66 -0
- package/dist/category-nav/src/category-nav.css +663 -0
- package/dist/category-nav/src/category-nav.d.ts +86 -0
- package/dist/category-nav/src/category-nav.mjs +60 -0
- package/dist/category-nav/src/category-nav.vue +966 -0
- package/dist/category-nav/src/category-nav.vue.d.ts +137 -0
- package/dist/checkbox/index.d.ts +44 -44
- package/dist/checkbox/src/checkbox-group.vue.d.ts +1 -1
- package/dist/checkbox/src/checkbox.vue.d.ts +2 -2
- package/dist/col/index.d.ts +338 -1
- package/dist/col/src/col.vue.d.ts +4 -4
- package/dist/color-picker/index.d.ts +84 -1
- package/dist/color-picker/src/color-picker.vue.d.ts +45 -4
- package/dist/component.d.ts +56 -1
- package/dist/config-provider/index.d.ts +2 -2
- package/dist/config-provider/src/config-provider.d.ts +2 -2
- package/dist/container/index.d.ts +103 -5
- package/dist/countdown/index.d.ts +419 -1
- package/dist/countdown/src/countdown.vue.d.ts +121 -16
- package/dist/coupon-card/__tests__/coupon-card.ssr.test.cjs +21 -0
- package/dist/coupon-card/__tests__/coupon-card.ssr.test.mjs +18 -0
- package/dist/coupon-card/__tests__/coupon-card.test.cjs +67 -0
- package/dist/coupon-card/__tests__/coupon-card.test.mjs +64 -0
- package/dist/coupon-card/index.cjs +26 -0
- package/dist/coupon-card/index.d.ts +346 -0
- package/dist/coupon-card/index.mjs +5 -0
- package/dist/coupon-card/src/coupon-card.cjs +108 -0
- package/dist/coupon-card/src/coupon-card.css +786 -0
- package/dist/coupon-card/src/coupon-card.d.ts +106 -0
- package/dist/coupon-card/src/coupon-card.mjs +102 -0
- package/dist/coupon-card/src/coupon-card.vue +963 -0
- package/dist/coupon-card/src/coupon-card.vue.d.ts +206 -0
- package/dist/date-picker/index.d.ts +606 -1
- package/dist/date-picker/src/date-picker.vue +3 -1
- package/dist/date-picker/src/date-picker.vue.d.ts +29 -27
- package/dist/date-picker/src/date-table.vue.d.ts +2 -1
- package/dist/descriptions/index.d.ts +492 -2
- package/dist/descriptions/src/description-item.vue.d.ts +5 -5
- package/dist/descriptions/src/descriptions.vue.d.ts +4 -4
- package/dist/dialog/index.d.ts +665 -2
- package/dist/dialog/src/dialog.vue +3 -2
- package/dist/dialog/src/dialog.vue.d.ts +200 -22
- package/dist/divider/index.d.ts +113 -1
- package/dist/divider/src/divider.vue.d.ts +3 -3
- package/dist/drawer/index.d.ts +391 -13
- package/dist/drawer/src/drawer.vue.d.ts +120 -10
- package/dist/dropdown/index.d.ts +627 -3
- package/dist/dropdown/src/dropdown-item.vue.d.ts +2 -2
- package/dist/dropdown/src/dropdown.vue.d.ts +135 -18
- package/dist/empty/index.d.ts +27 -1
- package/dist/env.d.ts +6 -0
- package/dist/filter-bar/__tests__/filter-bar.ssr.test.cjs +29 -0
- package/dist/filter-bar/__tests__/filter-bar.ssr.test.mjs +16 -0
- package/dist/filter-bar/__tests__/filter-bar.test.cjs +51 -0
- package/dist/filter-bar/__tests__/filter-bar.test.mjs +29 -0
- package/dist/filter-bar/index.cjs +26 -0
- package/dist/filter-bar/index.d.ts +287 -0
- package/dist/filter-bar/index.mjs +5 -0
- package/dist/filter-bar/src/filter-bar.cjs +90 -0
- package/dist/filter-bar/src/filter-bar.css +761 -0
- package/dist/filter-bar/src/filter-bar.d.ts +124 -0
- package/dist/filter-bar/src/filter-bar.mjs +81 -0
- package/dist/filter-bar/src/filter-bar.vue +1087 -0
- package/dist/filter-bar/src/filter-bar.vue.d.ts +170 -0
- package/dist/form/index.d.ts +690 -3
- package/dist/form/src/form-item.vue.d.ts +7 -7
- package/dist/form/src/form-schema.vue.d.ts +32 -26
- package/dist/form/src/form.vue.d.ts +3 -3
- package/dist/gantt-chart/__tests__/debug_ssr.test.cjs +51 -0
- package/dist/gantt-chart/__tests__/debug_ssr.test.mjs +37 -0
- package/dist/gantt-chart/__tests__/gantt-chart.ssr.test.cjs +95 -0
- package/dist/gantt-chart/__tests__/gantt-chart.ssr.test.mjs +94 -0
- package/dist/gantt-chart/__tests__/gantt-chart.test.cjs +86 -0
- package/dist/gantt-chart/__tests__/gantt-chart.test.mjs +79 -0
- package/dist/gantt-chart/index.cjs +26 -0
- package/dist/gantt-chart/index.d.ts +115 -0
- package/dist/gantt-chart/index.mjs +5 -0
- package/dist/gantt-chart/src/gantt-chart.cjs +1 -0
- package/dist/gantt-chart/src/gantt-chart.css +853 -0
- package/dist/gantt-chart/src/gantt-chart.d.ts +112 -0
- package/dist/gantt-chart/src/gantt-chart.mjs +0 -0
- package/dist/gantt-chart/src/gantt-chart.vue +1583 -0
- package/dist/gantt-chart/src/gantt-chart.vue.d.ts +51 -0
- package/dist/grid/index.d.ts +67 -2
- package/dist/grid/src/grid-item.vue.d.ts +1 -1
- package/dist/grid/src/grid.vue.d.ts +1 -1
- package/dist/icon/index.d.ts +15 -15
- package/dist/icon/src/icon.vue.d.ts +5 -5
- package/dist/icon/src/icons/index.cjs +39 -2
- package/dist/icon/src/icons/index.d.ts +7 -0
- package/dist/icon/src/icons/index.mjs +44 -1
- package/dist/image/index.d.ts +72 -21
- package/dist/image/src/image-viewer.vue.d.ts +55 -4
- package/dist/image/src/image.vue.d.ts +5 -5
- package/dist/image-magnifier/__tests__/image-magnifier.ssr.test.cjs +54 -0
- package/dist/image-magnifier/__tests__/image-magnifier.ssr.test.mjs +35 -0
- package/dist/image-magnifier/__tests__/image-magnifier.test.cjs +257 -0
- package/dist/image-magnifier/__tests__/image-magnifier.test.mjs +177 -0
- package/dist/image-magnifier/index.cjs +26 -0
- package/dist/image-magnifier/index.d.ts +468 -0
- package/dist/image-magnifier/index.mjs +5 -0
- package/dist/image-magnifier/src/image-magnifier.cjs +142 -0
- package/dist/image-magnifier/src/image-magnifier.css +754 -0
- package/dist/image-magnifier/src/image-magnifier.d.ts +146 -0
- package/dist/image-magnifier/src/image-magnifier.mjs +136 -0
- package/dist/image-magnifier/src/image-magnifier.vue +1134 -0
- package/dist/image-magnifier/src/image-magnifier.vue.d.ts +271 -0
- package/dist/index.cjs +229 -1
- package/dist/index.d.ts +19 -0
- package/dist/index.mjs +59 -1
- package/dist/infinite-scroll/index.d.ts +270 -1
- package/dist/infinite-scroll/src/infinite-scroll.vue.d.ts +71 -6
- package/dist/input/index.d.ts +51 -51
- package/dist/input/src/input.vue.d.ts +16 -16
- package/dist/input-number/index.d.ts +33 -33
- package/dist/input-number/src/input-number.vue.d.ts +9 -9
- package/dist/input-tag/index.d.ts +151 -1
- package/dist/input-tag/src/input-tag.vue.d.ts +22 -22
- package/dist/loading/index.d.ts +1 -1
- package/dist/lucky-draw/__tests__/lucky-draw.ssr.test.cjs +33 -0
- package/dist/lucky-draw/__tests__/lucky-draw.ssr.test.mjs +31 -0
- package/dist/lucky-draw/__tests__/lucky-draw.test.cjs +56 -0
- package/dist/lucky-draw/__tests__/lucky-draw.test.mjs +48 -0
- package/dist/lucky-draw/index.cjs +26 -0
- package/dist/lucky-draw/index.d.ts +209 -0
- package/dist/lucky-draw/index.mjs +5 -0
- package/dist/lucky-draw/src/lucky-draw.cjs +63 -0
- package/dist/lucky-draw/src/lucky-draw.css +683 -0
- package/dist/lucky-draw/src/lucky-draw.d.ts +69 -0
- package/dist/lucky-draw/src/lucky-draw.mjs +57 -0
- package/dist/lucky-draw/src/lucky-draw.vue +865 -0
- package/dist/lucky-draw/src/lucky-draw.vue.d.ts +123 -0
- package/dist/marquee/index.d.ts +305 -1
- package/dist/marquee/src/marquee.vue.d.ts +80 -6
- package/dist/mention/index.d.ts +75 -75
- package/dist/mention/src/mention.vue.d.ts +26 -26
- package/dist/menu/index.d.ts +890 -4
- package/dist/menu/src/menu-item.vue.d.ts +1 -1
- package/dist/menu/src/menu-recursive-item.vue +30 -11
- package/dist/menu/src/menu.cjs +1 -1
- package/dist/menu/src/menu.d.ts +3 -3
- package/dist/menu/src/menu.mjs +1 -1
- package/dist/menu/src/menu.vue +1 -1
- package/dist/menu/src/menu.vue.d.ts +179 -16
- package/dist/menu/src/sub-menu.vue +10 -3
- package/dist/menu/src/sub-menu.vue.d.ts +1 -1
- package/dist/message/index.d.ts +1 -1
- package/dist/message/src/message.vue.d.ts +2 -2
- package/dist/message-box/index.cjs +1 -1
- package/dist/message-box/index.d.ts +1 -1
- package/dist/message-box/index.mjs +1 -1
- package/dist/notification/index.d.ts +1 -1
- package/dist/notification/src/notification.vue.d.ts +2 -2
- package/dist/pagination/index.d.ts +15 -15
- package/dist/pagination/src/pagination.vue.d.ts +5 -5
- package/dist/popconfirm/index.d.ts +433 -1
- package/dist/popconfirm/src/popconfirm.cjs +1 -1
- package/dist/popconfirm/src/popconfirm.d.ts +2 -2
- package/dist/popconfirm/src/popconfirm.mjs +1 -1
- package/dist/popconfirm/src/popconfirm.vue.d.ts +125 -16
- package/dist/popover/index.d.ts +392 -1
- package/dist/popover/src/popover.cjs +1 -1
- package/dist/popover/src/popover.d.ts +2 -2
- package/dist/popover/src/popover.mjs +1 -1
- package/dist/popover/src/popover.vue.d.ts +113 -16
- package/dist/price/__tests__/price.ssr.test.cjs +20 -0
- package/dist/price/__tests__/price.ssr.test.mjs +19 -0
- package/dist/price/__tests__/price.test.cjs +45 -0
- package/dist/price/__tests__/price.test.mjs +42 -0
- package/dist/price/index.cjs +26 -0
- package/dist/price/index.d.ts +369 -0
- package/dist/price/index.mjs +5 -0
- package/dist/price/src/price.cjs +118 -0
- package/dist/price/src/price.css +601 -0
- package/dist/price/src/price.d.ts +114 -0
- package/dist/price/src/price.mjs +112 -0
- package/dist/price/src/price.vue +749 -0
- package/dist/price/src/price.vue.d.ts +223 -0
- package/dist/product-card/__tests__/product-card.ssr.test.cjs +21 -0
- package/dist/product-card/__tests__/product-card.ssr.test.mjs +18 -0
- package/dist/product-card/__tests__/product-card.test.cjs +54 -0
- package/dist/product-card/__tests__/product-card.test.mjs +53 -0
- package/dist/product-card/index.cjs +26 -0
- package/dist/product-card/index.d.ts +563 -0
- package/dist/product-card/index.mjs +5 -0
- package/dist/product-card/src/product-card.cjs +184 -0
- package/dist/product-card/src/product-card.css +856 -0
- package/dist/product-card/src/product-card.d.ts +188 -0
- package/dist/product-card/src/product-card.mjs +178 -0
- package/dist/product-card/src/product-card.vue +1097 -0
- package/dist/product-card/src/product-card.vue.d.ts +333 -0
- package/dist/progress/index.d.ts +321 -1
- package/dist/progress/src/progress.vue.d.ts +9 -9
- package/dist/radio/index.d.ts +147 -3
- package/dist/radio/src/radio-button.vue +19 -5
- package/dist/radio/src/radio-group.vue.d.ts +1 -1
- package/dist/rate/index.d.ts +313 -1
- package/dist/rate/src/rate.vue.d.ts +90 -11
- package/dist/result/index.d.ts +31 -1
- package/dist/row/index.d.ts +98 -1
- package/dist/row/src/row.d.ts +2 -2
- package/dist/row/src/row.vue.d.ts +2 -2
- package/dist/scrollbar/__tests__/scrollbar.ssr.test.cjs +49 -0
- package/dist/scrollbar/__tests__/scrollbar.ssr.test.mjs +54 -0
- package/dist/scrollbar/__tests__/scrollbar.test.cjs +43 -0
- package/dist/scrollbar/__tests__/scrollbar.test.mjs +40 -0
- package/dist/scrollbar/index.cjs +26 -0
- package/dist/scrollbar/index.d.ts +213 -0
- package/dist/scrollbar/index.mjs +5 -0
- package/dist/scrollbar/src/scrollbar.cjs +82 -0
- package/dist/scrollbar/src/scrollbar.css +521 -0
- package/dist/scrollbar/src/scrollbar.d.ts +82 -0
- package/dist/scrollbar/src/scrollbar.mjs +73 -0
- package/dist/scrollbar/src/scrollbar.vue +680 -0
- package/dist/scrollbar/src/scrollbar.vue.d.ts +115 -0
- package/dist/scrollbar/src/thumb.vue +112 -0
- package/dist/scrollbar/src/thumb.vue.d.ts +16 -0
- package/dist/scrollbar/src/util.cjs +42 -0
- package/dist/scrollbar/src/util.d.ts +27 -0
- package/dist/scrollbar/src/util.mjs +35 -0
- package/dist/select/index.d.ts +177 -2
- package/dist/select/src/select.vue.d.ts +18 -18
- package/dist/skeleton/index.d.ts +278 -2
- package/dist/skeleton/src/skeleton-item.vue +12 -1
- package/dist/skeleton/src/skeleton-item.vue.d.ts +2 -2
- package/dist/skeleton/src/skeleton.css +12 -1
- package/dist/skeleton/src/skeleton.vue +12 -1
- package/dist/skeleton/src/skeleton.vue.d.ts +1 -1
- package/dist/sku-selector/__tests__/sku-selector.ssr.test.cjs +32 -0
- package/dist/sku-selector/__tests__/sku-selector.ssr.test.mjs +19 -0
- package/dist/sku-selector/__tests__/sku-selector.test.cjs +64 -0
- package/dist/sku-selector/__tests__/sku-selector.test.mjs +53 -0
- package/dist/sku-selector/index.cjs +26 -0
- package/dist/sku-selector/index.d.ts +228 -0
- package/dist/sku-selector/index.mjs +5 -0
- package/dist/sku-selector/src/sku-selector.cjs +70 -0
- package/dist/sku-selector/src/sku-selector.css +664 -0
- package/dist/sku-selector/src/sku-selector.d.ts +96 -0
- package/dist/sku-selector/src/sku-selector.mjs +64 -0
- package/dist/sku-selector/src/sku-selector.vue +779 -0
- package/dist/sku-selector/src/sku-selector.vue.d.ts +137 -0
- package/dist/slider/index.d.ts +463 -1
- package/dist/slider/src/slider-button.vue.d.ts +4 -4
- package/dist/slider/src/slider.vue.d.ts +133 -13
- package/dist/smart-address/__tests__/smart-address.ssr.test.cjs +28 -0
- package/dist/smart-address/__tests__/smart-address.ssr.test.mjs +25 -0
- package/dist/smart-address/__tests__/smart-address.test.cjs +68 -0
- package/dist/smart-address/__tests__/smart-address.test.mjs +56 -0
- package/dist/smart-address/index.cjs +38 -0
- package/dist/smart-address/index.d.ts +331 -0
- package/dist/smart-address/index.mjs +6 -0
- package/dist/smart-address/src/smart-address.cjs +108 -0
- package/dist/smart-address/src/smart-address.css +616 -0
- package/dist/smart-address/src/smart-address.d.ts +114 -0
- package/dist/smart-address/src/smart-address.mjs +102 -0
- package/dist/smart-address/src/smart-address.vue +966 -0
- package/dist/smart-address/src/smart-address.vue.d.ts +204 -0
- package/dist/smart-address/src/use-address-parser.cjs +137 -0
- package/dist/smart-address/src/use-address-parser.d.ts +28 -0
- package/dist/smart-address/src/use-address-parser.mjs +132 -0
- package/dist/space/index.d.ts +40 -1
- package/dist/space/src/space.vue.d.ts +2 -2
- package/dist/spin/index.d.ts +162 -7
- package/dist/spin/src/spin.vue.d.ts +48 -5
- package/dist/steps/index.d.ts +606 -2
- package/dist/steps/src/step.vue.d.ts +4 -4
- package/dist/steps/src/steps.vue.d.ts +77 -8
- package/dist/submit-bar/__tests__/submit-bar.ssr.test.cjs +21 -0
- package/dist/submit-bar/__tests__/submit-bar.ssr.test.mjs +18 -0
- package/dist/submit-bar/__tests__/submit-bar.test.cjs +50 -0
- package/dist/submit-bar/__tests__/submit-bar.test.mjs +36 -0
- package/dist/submit-bar/index.cjs +26 -0
- package/dist/submit-bar/index.d.ts +297 -0
- package/dist/submit-bar/index.mjs +5 -0
- package/dist/submit-bar/src/submit-bar.cjs +94 -0
- package/dist/submit-bar/src/submit-bar.css +639 -0
- package/dist/submit-bar/src/submit-bar.d.ts +93 -0
- package/dist/submit-bar/src/submit-bar.mjs +88 -0
- package/dist/submit-bar/src/submit-bar.vue +749 -0
- package/dist/submit-bar/src/submit-bar.vue.d.ts +175 -0
- package/dist/switch/index.d.ts +372 -1
- package/dist/switch/src/switch.vue.d.ts +98 -7
- package/dist/table/index.d.ts +1248 -2
- package/dist/table/src/table-column.vue +7 -3
- package/dist/table/src/table-column.vue.d.ts +10 -20
- package/dist/table/src/table.d.ts +3 -3
- package/dist/table/src/table.vue +28 -9
- package/dist/table/src/table.vue.d.ts +346 -34
- package/dist/table/src/use-table-import.cjs +1 -1
- package/dist/table/src/use-table-import.mjs +1 -1
- package/dist/tabs/index.d.ts +583 -2
- package/dist/tabs/src/tab-pane.vue.d.ts +2 -2
- package/dist/tabs/src/tabs.vue.d.ts +98 -8
- package/dist/tag/index.d.ts +86 -1
- package/dist/tag/src/tag.vue.d.ts +8 -8
- package/dist/time-picker/index.d.ts +166 -1
- package/dist/time-picker/src/time-picker.vue.d.ts +19 -19
- package/dist/time-select/index.d.ts +112 -1
- package/dist/time-select/src/time-select.vue.d.ts +12 -12
- package/dist/tooltip/index.d.ts +467 -19
- package/dist/tooltip/src/tooltip.cjs +4 -4
- package/dist/tooltip/src/tooltip.d.ts +5 -5
- package/dist/tooltip/src/tooltip.mjs +4 -4
- package/dist/tooltip/src/tooltip.vue +2 -1
- package/dist/tooltip/src/tooltip.vue.d.ts +146 -21
- package/dist/transfer/src/transfer-panel.vue.d.ts +6 -6
- package/dist/transfer/src/transfer.vue.d.ts +10 -10
- package/dist/tree/index.d.ts +623 -2
- package/dist/tree/src/tree.vue.d.ts +176 -28
- package/dist/tree-select/index.d.ts +435 -1
- package/dist/tree-select/src/tree-select.vue.d.ts +128 -18
- package/dist/typography/index.d.ts +180 -4
- package/dist/typography/src/link.vue.d.ts +1 -1
- package/dist/typography/src/paragraph.vue.d.ts +2 -2
- package/dist/typography/src/text.vue.d.ts +4 -4
- package/dist/typography/src/title.vue.d.ts +3 -3
- package/dist/upload/index.d.ts +391 -1
- package/dist/upload/src/upload.css +0 -441
- package/dist/upload/src/upload.vue +1 -441
- package/dist/upload/src/upload.vue.d.ts +108 -11
- package/dist/waterfall/index.d.ts +57 -1
- package/dist/waterfall/src/waterfall.vue.d.ts +3 -3
- package/dist/watermark/index.d.ts +284 -1
- package/dist/watermark/src/watermark.vue.d.ts +6 -6
- package/package.json +26 -11
- package/dist/__tests__/resolver.test.cjs +0 -56
- package/dist/__tests__/resolver.test.d.ts +0 -1
- package/dist/__tests__/resolver.test.mjs +0 -52
- package/dist/__tests__/utils/ssr.cjs +0 -114
- package/dist/__tests__/utils/ssr.d.ts +0 -29
- package/dist/__tests__/utils/ssr.mjs +0 -119
- package/dist/affix/__tests__/affix.bottom.test.d.ts +0 -1
- package/dist/affix/__tests__/affix.ssr.test.d.ts +0 -1
- package/dist/affix/__tests__/affix.test.d.ts +0 -1
- package/dist/affix/src/affix.d.vue.ts +0 -66
- package/dist/ai-action-group/__tests__/ai-action-group.ssr.test.d.ts +0 -1
- package/dist/ai-action-group/__tests__/ai-action-group.test.d.ts +0 -1
- package/dist/ai-action-group/src/ai-action-group.d.vue.ts +0 -40
- package/dist/ai-agent-card/__tests__/ai-agent-card.ssr.test.d.ts +0 -1
- package/dist/ai-agent-card/__tests__/ai-agent-card.test.d.ts +0 -1
- package/dist/ai-agent-card/src/ai-agent-card.d.vue.ts +0 -62
- package/dist/ai-artifacts/__tests__/ai-artifacts.ssr.test.d.ts +0 -1
- package/dist/ai-artifacts/__tests__/ai-artifacts.test.d.ts +0 -1
- package/dist/ai-artifacts/src/ai-artifacts.d.vue.ts +0 -50
- package/dist/ai-bubble/__tests__/ai-bubble.ssr.test.d.ts +0 -1
- package/dist/ai-bubble/__tests__/ai-bubble.test.d.ts +0 -1
- package/dist/ai-bubble/src/ai-bubble.d.vue.ts +0 -110
- package/dist/ai-chat/__tests__/ai-chat.ssr.test.d.ts +0 -1
- package/dist/ai-chat/__tests__/ai-chat.test.d.ts +0 -1
- package/dist/ai-chat/src/ai-chat.d.vue.ts +0 -43
- package/dist/ai-code-block/__tests__/ai-code-block.ssr.test.d.ts +0 -1
- package/dist/ai-code-block/__tests__/ai-code-block.test.d.ts +0 -1
- package/dist/ai-code-block/src/ai-code-block.d.vue.ts +0 -63
- package/dist/ai-conversations/__tests__/ai-conversations.ssr.test.d.ts +0 -1
- package/dist/ai-conversations/__tests__/ai-conversations.test.d.ts +0 -1
- package/dist/ai-conversations/src/ai-conversations.d.vue.ts +0 -52
- package/dist/ai-editor-sender/__tests__/ai-editor-sender.ssr.test.d.ts +0 -1
- package/dist/ai-editor-sender/__tests__/ai-editor-sender.test.d.ts +0 -1
- package/dist/ai-editor-sender/src/ai-editor-sender.d.vue.ts +0 -70
- package/dist/ai-mention/__tests__/ai-mention.ssr.test.d.ts +0 -1
- package/dist/ai-mention/__tests__/ai-mention.test.d.ts +0 -1
- package/dist/ai-mention/src/ai-mention.d.vue.ts +0 -68
- package/dist/ai-prompts/__tests__/ai-prompts.ssr.test.d.ts +0 -1
- package/dist/ai-prompts/__tests__/ai-prompts.test.d.ts +0 -1
- package/dist/ai-prompts/src/ai-prompts.d.vue.ts +0 -44
- package/dist/ai-provider/__tests__/ai-provider.ssr.test.d.ts +0 -1
- package/dist/ai-provider/__tests__/ai-provider.test.d.ts +0 -1
- package/dist/ai-provider/src/ai-provider.d.vue.ts +0 -48
- package/dist/ai-sender/__tests__/ai-sender.ssr.test.d.ts +0 -1
- package/dist/ai-sender/__tests__/ai-sender.test.d.ts +0 -1
- package/dist/ai-sender/src/ai-sender.d.vue.ts +0 -74
- package/dist/ai-sources/__tests__/ai-sources.ssr.test.d.ts +0 -1
- package/dist/ai-sources/__tests__/ai-sources.test.d.ts +0 -1
- package/dist/ai-sources/src/ai-sources.d.vue.ts +0 -45
- package/dist/ai-thinking/__tests__/ai-thinking.ssr.test.d.ts +0 -1
- package/dist/ai-thinking/__tests__/ai-thinking.test.d.ts +0 -1
- package/dist/ai-thinking/src/ai-thinking.d.vue.ts +0 -33
- package/dist/ai-thought-chain/__tests__/ai-thought-chain.ssr.test.d.ts +0 -1
- package/dist/ai-thought-chain/__tests__/ai-thought-chain.test.d.ts +0 -1
- package/dist/ai-thought-chain/src/ai-thought-chain.d.vue.ts +0 -83
- package/dist/ai-voice-trigger/__tests__/ai-voice-trigger.ssr.test.d.ts +0 -1
- package/dist/ai-voice-trigger/__tests__/ai-voice-trigger.test.d.ts +0 -1
- package/dist/ai-voice-trigger/src/ai-voice-trigger.d.vue.ts +0 -49
- package/dist/ai-welcome/__tests__/ai-welcome.ssr.test.d.ts +0 -1
- package/dist/ai-welcome/__tests__/ai-welcome.test.d.ts +0 -1
- package/dist/ai-welcome/src/ai-welcome.d.vue.ts +0 -51
- package/dist/alert/__tests__/alert.ssr.test.d.ts +0 -1
- package/dist/alert/__tests__/alert.test.d.ts +0 -1
- package/dist/alert/src/alert.d.vue.ts +0 -106
- package/dist/autocomplete/__tests__/autocomplete.ssr.test.d.ts +0 -1
- package/dist/autocomplete/__tests__/autocomplete.test.d.ts +0 -1
- package/dist/autocomplete/src/autocomplete.d.vue.ts +0 -63
- package/dist/avatar/__tests__/avatar.ssr.test.d.ts +0 -1
- package/dist/avatar/__tests__/avatar.test.d.ts +0 -1
- package/dist/avatar/src/avatar.d.vue.ts +0 -21
- package/dist/back-top/__tests__/back-top.ssr.test.d.ts +0 -1
- package/dist/back-top/__tests__/back-top.test.d.ts +0 -1
- package/dist/back-top/src/back-top.d.vue.ts +0 -54
- package/dist/badge/__tests__/badge.ssr.test.d.ts +0 -1
- package/dist/badge/__tests__/badge.test.d.ts +0 -1
- package/dist/badge/src/badge.d.vue.ts +0 -22
- package/dist/breadcrumb/__tests__/breadcrumb.ssr.test.d.ts +0 -1
- package/dist/breadcrumb/__tests__/breadcrumb.test.d.ts +0 -1
- package/dist/breadcrumb/src/breadcrumb-item.d.vue.ts +0 -42
- package/dist/breadcrumb/src/breadcrumb.d.vue.ts +0 -41
- package/dist/button/__tests__/button.ssr.test.d.ts +0 -1
- package/dist/button/__tests__/button.test.d.ts +0 -1
- package/dist/button/src/button.d.vue.ts +0 -44
- package/dist/calendar/__tests__/calendar.ssr.test.d.ts +0 -1
- package/dist/calendar/__tests__/calendar.test.d.ts +0 -1
- package/dist/calendar/src/calendar.d.vue.ts +0 -551
- package/dist/card/__tests__/card.ssr.test.d.ts +0 -1
- package/dist/card/__tests__/card.test.d.ts +0 -1
- package/dist/card/src/card.d.vue.ts +0 -26
- package/dist/cascader/__tests__/cascader-panel.test.d.ts +0 -1
- package/dist/cascader/__tests__/cascader.ssr.test.d.ts +0 -1
- package/dist/cascader/__tests__/cascader.test.d.ts +0 -1
- package/dist/cascader/src/cascader-panel.d.vue.ts +0 -39
- package/dist/cascader/src/cascader.d.vue.ts +0 -63
- package/dist/checkbox/__tests__/checkbox.ssr.test.d.ts +0 -1
- package/dist/checkbox/__tests__/checkbox.test.d.ts +0 -1
- package/dist/checkbox/src/checkbox-group.d.vue.ts +0 -24
- package/dist/checkbox/src/checkbox.d.vue.ts +0 -32
- package/dist/col/__tests__/col.ssr.test.d.ts +0 -1
- package/dist/col/__tests__/col.test.d.ts +0 -1
- package/dist/col/src/col.d.vue.ts +0 -189
- package/dist/color-picker/__tests__/color-picker.ssr.test.d.ts +0 -1
- package/dist/color-picker/__tests__/color-picker.test.d.ts +0 -1
- package/dist/color-picker/src/alpha-slider.d.vue.ts +0 -10
- package/dist/color-picker/src/color-picker.d.vue.ts +0 -55
- package/dist/color-picker/src/hue-slider.d.vue.ts +0 -9
- package/dist/color-picker/src/sv-panel.d.vue.ts +0 -11
- package/dist/config-provider/__tests__/config-provider.ssr.test.d.ts +0 -1
- package/dist/config-provider/__tests__/config-provider.test.d.ts +0 -1
- package/dist/container/__tests__/container.ssr.test.d.ts +0 -1
- package/dist/container/__tests__/container.test.d.ts +0 -1
- package/dist/container/src/aside.d.vue.ts +0 -15
- package/dist/container/src/container.d.vue.ts +0 -13
- package/dist/container/src/footer.d.vue.ts +0 -15
- package/dist/container/src/header.d.vue.ts +0 -15
- package/dist/container/src/main.d.vue.ts +0 -13
- package/dist/countdown/__tests__/countdown.ssr.test.d.ts +0 -1
- package/dist/countdown/__tests__/countdown.test.d.ts +0 -1
- package/dist/countdown/src/countdown.d.vue.ts +0 -146
- package/dist/date-picker/__tests__/date-picker-extended.test.d.ts +0 -1
- package/dist/date-picker/__tests__/date-picker.ssr.test.d.ts +0 -1
- package/dist/date-picker/__tests__/date-picker.test.d.ts +0 -1
- package/dist/date-picker/src/date-picker.d.vue.ts +0 -372
- package/dist/date-picker/src/date-table.d.vue.ts +0 -37
- package/dist/date-picker/src/month-table.d.vue.ts +0 -19
- package/dist/date-picker/src/quarter-table.d.vue.ts +0 -19
- package/dist/date-picker/src/year-table.d.vue.ts +0 -19
- package/dist/descriptions/__tests__/descriptions.ssr.test.d.ts +0 -1
- package/dist/descriptions/__tests__/descriptions.test.d.ts +0 -1
- package/dist/descriptions/src/description-item.d.vue.ts +0 -99
- package/dist/descriptions/src/descriptions.d.vue.ts +0 -106
- package/dist/dialog/__tests__/dialog.functional.test.d.ts +0 -1
- package/dist/dialog/__tests__/dialog.ssr.test.d.ts +0 -1
- package/dist/dialog/__tests__/dialog.test.d.ts +0 -1
- package/dist/dialog/src/dialog.d.vue.ts +0 -217
- package/dist/divider/__tests__/divider.ssr.test.d.ts +0 -1
- package/dist/divider/__tests__/divider.test.d.ts +0 -1
- package/dist/divider/src/divider.d.vue.ts +0 -69
- package/dist/drawer/__tests__/drawer.ssr.test.d.ts +0 -1
- package/dist/drawer/__tests__/drawer.test.d.ts +0 -1
- package/dist/drawer/src/drawer.d.vue.ts +0 -141
- package/dist/dropdown/__tests__/dropdown.ssr.test.d.ts +0 -1
- package/dist/dropdown/__tests__/dropdown.test.d.ts +0 -1
- package/dist/dropdown/src/dropdown-item.d.vue.ts +0 -78
- package/dist/dropdown/src/dropdown-menu.d.vue.ts +0 -24
- package/dist/dropdown/src/dropdown.d.vue.ts +0 -158
- package/dist/empty/__tests__/empty.ssr.test.d.ts +0 -1
- package/dist/empty/__tests__/empty.test.d.ts +0 -1
- package/dist/empty/src/empty.d.vue.ts +0 -19
- package/dist/form/__tests__/form-schema.test.d.ts +0 -1
- package/dist/form/__tests__/form.ssr.test.d.ts +0 -1
- package/dist/form/__tests__/form.test.d.ts +0 -1
- package/dist/form/src/form-item.d.vue.ts +0 -144
- package/dist/form/src/form-schema.d.vue.ts +0 -116
- package/dist/form/src/form.d.vue.ts +0 -158
- package/dist/grid/__tests__/grid.ssr.test.d.ts +0 -1
- package/dist/grid/__tests__/grid.test.d.ts +0 -1
- package/dist/grid/src/grid-item.d.vue.ts +0 -17
- package/dist/grid/src/grid.d.vue.ts +0 -20
- package/dist/icon/__tests__/icon.ssr.test.d.ts +0 -1
- package/dist/icon/__tests__/icon.test.d.ts +0 -1
- package/dist/icon/src/icon.d.vue.ts +0 -87
- package/dist/image/__tests__/image-viewer.test.d.ts +0 -1
- package/dist/image/__tests__/image.ssr.test.d.ts +0 -1
- package/dist/image/__tests__/image.test.d.ts +0 -1
- package/dist/image/src/image-viewer.d.vue.ts +0 -60
- package/dist/image/src/image.d.vue.ts +0 -178
- package/dist/infinite-scroll/__tests__/infinite-scroll.ssr.test.d.ts +0 -1
- package/dist/infinite-scroll/__tests__/infinite-scroll.test.d.ts +0 -1
- package/dist/infinite-scroll/src/infinite-scroll.d.vue.ts +0 -95
- package/dist/input/__tests__/input-utils.test.d.ts +0 -1
- package/dist/input/__tests__/input.ssr.test.d.ts +0 -1
- package/dist/input/__tests__/input.test.d.ts +0 -1
- package/dist/input/src/input.d.vue.ts +0 -76
- package/dist/input-number/__tests__/input-number.hydration.test.d.ts +0 -1
- package/dist/input-number/__tests__/input-number.ssr.test.d.ts +0 -1
- package/dist/input-number/__tests__/input-number.test.d.ts +0 -1
- package/dist/input-number/src/input-number.d.vue.ts +0 -50
- package/dist/input-tag/__tests__/input-tag.ssr.test.d.ts +0 -1
- package/dist/input-tag/__tests__/input-tag.test.d.ts +0 -1
- package/dist/input-tag/src/input-tag.d.vue.ts +0 -71
- package/dist/loading/__tests__/loading.ssr.test.d.ts +0 -1
- package/dist/loading/__tests__/loading.test.d.ts +0 -1
- package/dist/marquee/__tests__/marquee.ssr.test.d.ts +0 -1
- package/dist/marquee/__tests__/marquee.test.d.ts +0 -1
- package/dist/marquee/src/marquee.d.vue.ts +0 -109
- package/dist/mention/__tests__/mention.ssr.test.d.ts +0 -1
- package/dist/mention/__tests__/mention.test.d.ts +0 -1
- package/dist/mention/src/mention.d.vue.ts +0 -84
- package/dist/menu/__tests__/menu.ssr.test.d.ts +0 -1
- package/dist/menu/__tests__/menu.test.d.ts +0 -1
- package/dist/menu/src/menu-item.d.vue.ts +0 -52
- package/dist/menu/src/menu-recursive-item.d.vue.ts +0 -6
- package/dist/menu/src/menu.d.vue.ts +0 -209
- package/dist/menu/src/sub-menu.d.vue.ts +0 -87
- package/dist/message/__tests__/message.ssr.test.d.ts +0 -1
- package/dist/message/__tests__/message.test.d.ts +0 -1
- package/dist/message/src/message.d.vue.ts +0 -32
- package/dist/message-box/__tests__/message-box.ssr.test.d.ts +0 -1
- package/dist/message-box/__tests__/message-box.test.d.ts +0 -1
- package/dist/message-box/src/message-box.d.vue.ts +0 -17
- package/dist/notification/__tests__/notification.ssr.test.d.ts +0 -1
- package/dist/notification/__tests__/notification.test.d.ts +0 -1
- package/dist/notification/src/notification.d.vue.ts +0 -30
- package/dist/pagination/__tests__/pagination.ssr.test.d.ts +0 -1
- package/dist/pagination/__tests__/pagination.test.d.ts +0 -1
- package/dist/pagination/src/pagination.d.vue.ts +0 -149
- package/dist/popconfirm/__tests__/popconfirm.ssr.test.d.ts +0 -1
- package/dist/popconfirm/__tests__/popconfirm.test.d.ts +0 -1
- package/dist/popconfirm/src/popconfirm.d.vue.ts +0 -148
- package/dist/popover/__tests__/popover.ssr.test.d.ts +0 -1
- package/dist/popover/__tests__/popover.test.d.ts +0 -1
- package/dist/popover/src/popover.d.vue.ts +0 -140
- package/dist/progress/__tests__/progress.ssr.test.d.ts +0 -1
- package/dist/progress/__tests__/progress.test.d.ts +0 -1
- package/dist/progress/src/progress.d.vue.ts +0 -199
- package/dist/radio/__tests__/radio-button.test.d.ts +0 -1
- package/dist/radio/__tests__/radio.ssr.test.d.ts +0 -1
- package/dist/radio/__tests__/radio.test.d.ts +0 -1
- package/dist/radio/src/radio-button.d.vue.ts +0 -25
- package/dist/radio/src/radio-group.d.vue.ts +0 -23
- package/dist/radio/src/radio.d.vue.ts +0 -26
- package/dist/rate/__tests__/rate.ssr.test.d.ts +0 -1
- package/dist/rate/__tests__/rate.test.d.ts +0 -1
- package/dist/rate/src/rate.d.vue.ts +0 -109
- package/dist/result/__tests__/result.ssr.test.d.ts +0 -1
- package/dist/result/__tests__/result.test.d.ts +0 -1
- package/dist/result/src/result.d.vue.ts +0 -23
- package/dist/row/__tests__/row.ssr.test.d.ts +0 -1
- package/dist/row/__tests__/row.test.d.ts +0 -1
- package/dist/row/__tests__/row_ts.test.d.ts +0 -1
- package/dist/row/src/row.d.vue.ts +0 -60
- package/dist/select/__tests__/select.perf.test.d.ts +0 -1
- package/dist/select/__tests__/select.ssr.test.d.ts +0 -1
- package/dist/select/__tests__/select.test.d.ts +0 -1
- package/dist/select/src/option.d.vue.ts +0 -15
- package/dist/select/src/select.d.vue.ts +0 -68
- package/dist/skeleton/__tests__/skeleton.ssr.test.d.ts +0 -1
- package/dist/skeleton/__tests__/skeleton.test.d.ts +0 -1
- package/dist/skeleton/src/skeleton-item.d.vue.ts +0 -83
- package/dist/skeleton/src/skeleton.d.vue.ts +0 -89
- package/dist/slider/__tests__/repro.test.d.ts +0 -1
- package/dist/slider/__tests__/slider.ssr.test.d.ts +0 -1
- package/dist/slider/__tests__/slider.test.d.ts +0 -1
- package/dist/slider/src/slider-button.d.vue.ts +0 -43
- package/dist/slider/src/slider.d.vue.ts +0 -160
- package/dist/space/__tests__/space.ssr.test.d.ts +0 -1
- package/dist/space/__tests__/space.test.d.ts +0 -1
- package/dist/space/src/space.d.vue.ts +0 -22
- package/dist/spin/__tests__/spin.ssr.test.d.ts +0 -1
- package/dist/spin/__tests__/spin.test.d.ts +0 -1
- package/dist/spin/src/spin.d.vue.ts +0 -67
- package/dist/steps/__tests__/steps.ssr.test.d.ts +0 -1
- package/dist/steps/__tests__/steps.test.d.ts +0 -1
- package/dist/steps/src/step.d.vue.ts +0 -105
- package/dist/steps/src/steps.d.vue.ts +0 -94
- package/dist/switch/__tests__/switch.ssr.test.d.ts +0 -1
- package/dist/switch/__tests__/switch.test.d.ts +0 -1
- package/dist/switch/src/switch.d.vue.ts +0 -133
- package/dist/table/__tests__/table-advance.test.d.ts +0 -1
- package/dist/table/__tests__/table-interaction.test.d.ts +0 -1
- package/dist/table/__tests__/table-utils.test.d.ts +0 -1
- package/dist/table/__tests__/table.perf.test.d.ts +0 -1
- package/dist/table/__tests__/table.ssr.test.d.ts +0 -5
- package/dist/table/__tests__/table.test.d.ts +0 -1
- package/dist/table/__tests__/use-column-drag.test.d.ts +0 -1
- package/dist/table/__tests__/use-table-export.test.d.ts +0 -1
- package/dist/table/__tests__/use-table-import.test.d.ts +0 -1
- package/dist/table/__tests__/use-table-print.test.d.ts +0 -1
- package/dist/table/__tests__/use-virtual-scroll.test.d.ts +0 -1
- package/dist/table/src/table-column.d.vue.ts +0 -81
- package/dist/table/src/table.d.vue.ts +0 -493
- package/dist/tabs/__tests__/tabs.ssr.test.d.ts +0 -1
- package/dist/tabs/__tests__/tabs.test.d.ts +0 -1
- package/dist/tabs/src/tab-pane.d.vue.ts +0 -77
- package/dist/tabs/src/tabs.d.vue.ts +0 -110
- package/dist/tag/__tests__/tag.ssr.test.d.ts +0 -1
- package/dist/tag/__tests__/tag.test.d.ts +0 -1
- package/dist/tag/src/tag.d.vue.ts +0 -42
- package/dist/time-picker/__tests__/time-picker.ssr.test.d.ts +0 -1
- package/dist/time-picker/__tests__/time-picker.test.d.ts +0 -1
- package/dist/time-picker/__tests__/time-spinner.test.d.ts +0 -1
- package/dist/time-picker/src/time-picker.d.vue.ts +0 -67
- package/dist/time-picker/src/time-spinner.d.vue.ts +0 -46
- package/dist/time-select/__tests__/time-select.ssr.test.d.ts +0 -1
- package/dist/time-select/__tests__/time-select.test.d.ts +0 -5
- package/dist/time-select/src/time-select.d.vue.ts +0 -51
- package/dist/tooltip/__tests__/tooltip.ssr.test.d.ts +0 -1
- package/dist/tooltip/__tests__/tooltip.test.d.ts +0 -1
- package/dist/tooltip/src/tooltip.d.vue.ts +0 -167
- package/dist/transfer/__tests__/transfer.ssr.test.d.ts +0 -1
- package/dist/transfer/__tests__/transfer.test.d.ts +0 -5
- package/dist/transfer/src/transfer-panel.d.vue.ts +0 -45
- package/dist/transfer/src/transfer.d.vue.ts +0 -68
- package/dist/tree/__tests__/tree.perf.test.d.ts +0 -1
- package/dist/tree/__tests__/tree.ssr.test.d.ts +0 -1
- package/dist/tree/__tests__/tree.test.d.ts +0 -1
- package/dist/tree/src/tree-node.d.vue.ts +0 -18
- package/dist/tree/src/tree.d.vue.ts +0 -228
- package/dist/tree-select/__tests__/tree-select.ssr.test.d.ts +0 -1
- package/dist/tree-select/__tests__/tree-select.test.d.ts +0 -1
- package/dist/tree-select/src/tree-select.d.vue.ts +0 -141
- package/dist/typography/__tests__/typography.ssr.test.d.ts +0 -1
- package/dist/typography/__tests__/typography.test.d.ts +0 -1
- package/dist/typography/src/link.d.vue.ts +0 -21
- package/dist/typography/src/paragraph.d.vue.ts +0 -22
- package/dist/typography/src/text.d.vue.ts +0 -29
- package/dist/typography/src/title.d.vue.ts +0 -26
- package/dist/upload/__tests__/upload.ssr.test.d.ts +0 -1
- package/dist/upload/__tests__/upload.test.d.ts +0 -1
- package/dist/upload/src/upload.d.vue.ts +0 -133
- package/dist/waterfall/__tests__/waterfall.ssr.test.d.ts +0 -1
- package/dist/waterfall/__tests__/waterfall.test.d.ts +0 -1
- package/dist/waterfall/src/waterfall.d.vue.ts +0 -56
- package/dist/watermark/__tests__/watermark.ssr.test.d.ts +0 -1
- package/dist/watermark/__tests__/watermark.test.d.ts +0 -1
- package/dist/watermark/src/watermark.d.vue.ts +0 -167
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { type DateValue, type DateRangeValue, type PanelView, type DatePickerType } from './date-picker';
|
|
2
|
-
declare var __VLS_1: {}, __VLS_7: {}, __VLS_29:
|
|
2
|
+
declare var __VLS_1: {}, __VLS_7: {}, __VLS_29: {
|
|
3
|
+
cell: import("./panel-utils").CalendarCell;
|
|
4
|
+
}, __VLS_55: {}, __VLS_57: {};
|
|
3
5
|
type __VLS_Slots = {} & {
|
|
4
6
|
'prefix-icon'?: (props: typeof __VLS_1) => any;
|
|
5
7
|
} & {
|
|
@@ -157,14 +159,14 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
157
159
|
readonly default: undefined;
|
|
158
160
|
};
|
|
159
161
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
160
|
-
change: (value: string | number | Date | [DateValue, DateValue] | null) => any;
|
|
161
162
|
clear: () => any;
|
|
162
|
-
|
|
163
|
+
confirm: (value: string | number | Date | [DateValue, DateValue] | null) => any;
|
|
163
164
|
focus: (event: FocusEvent) => any;
|
|
165
|
+
change: (value: string | number | Date | [DateValue, DateValue] | null) => any;
|
|
166
|
+
blur: (event: FocusEvent) => any;
|
|
164
167
|
"update:modelValue": (value: string | number | Date | [DateValue, DateValue] | null) => any;
|
|
165
|
-
"panel-change": (value: Date, mode: PanelView) => any;
|
|
166
168
|
"visible-change": (visible: boolean) => any;
|
|
167
|
-
|
|
169
|
+
"panel-change": (value: Date, mode: PanelView) => any;
|
|
168
170
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
169
171
|
readonly modelValue: {
|
|
170
172
|
readonly type: import("vue").PropType<DateValue | DateRangeValue>;
|
|
@@ -311,35 +313,41 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
311
313
|
readonly default: undefined;
|
|
312
314
|
};
|
|
313
315
|
}>> & Readonly<{
|
|
314
|
-
onChange?: ((value: string | number | Date | [DateValue, DateValue] | null) => any) | undefined;
|
|
315
316
|
onClear?: (() => any) | undefined;
|
|
316
|
-
|
|
317
|
+
onConfirm?: ((value: string | number | Date | [DateValue, DateValue] | null) => any) | undefined;
|
|
317
318
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
319
|
+
onChange?: ((value: string | number | Date | [DateValue, DateValue] | null) => any) | undefined;
|
|
320
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
318
321
|
"onUpdate:modelValue"?: ((value: string | number | Date | [DateValue, DateValue] | null) => any) | undefined;
|
|
319
|
-
"onPanel-change"?: ((value: Date, mode: PanelView) => any) | undefined;
|
|
320
322
|
"onVisible-change"?: ((visible: boolean) => any) | undefined;
|
|
321
|
-
|
|
323
|
+
"onPanel-change"?: ((value: Date, mode: PanelView) => any) | undefined;
|
|
322
324
|
}>, {
|
|
323
|
-
readonly teleported: boolean;
|
|
324
|
-
readonly disabled: boolean;
|
|
325
|
-
readonly themeOverrides: import("@yh-ui/theme").ComponentThemeVars;
|
|
326
|
-
readonly name: string;
|
|
327
|
-
readonly type: DatePickerType;
|
|
328
325
|
readonly size: import("./date-picker").DatePickerSize;
|
|
329
|
-
readonly
|
|
326
|
+
readonly name: string;
|
|
330
327
|
readonly id: string;
|
|
331
|
-
readonly status: import("./date-picker").DatePickerStatus;
|
|
332
328
|
readonly placeholder: string;
|
|
333
|
-
readonly
|
|
329
|
+
readonly startPlaceholder: string;
|
|
330
|
+
readonly endPlaceholder: string;
|
|
331
|
+
readonly status: import("./date-picker").DatePickerStatus;
|
|
334
332
|
readonly readonly: boolean;
|
|
333
|
+
readonly type: DatePickerType;
|
|
334
|
+
readonly disabled: boolean;
|
|
335
|
+
readonly themeOverrides: import("@yh-ui/theme").ComponentThemeVars;
|
|
336
|
+
readonly modelValue: string | number | Date | [DateValue, DateValue] | null;
|
|
335
337
|
readonly clearable: boolean;
|
|
336
338
|
readonly prefixIcon: string | import("vue").Component;
|
|
339
|
+
readonly clearIcon: string | import("vue").Component;
|
|
337
340
|
readonly validateEvent: boolean;
|
|
338
|
-
readonly
|
|
341
|
+
readonly format: string;
|
|
342
|
+
readonly popperClass: string;
|
|
343
|
+
readonly teleported: boolean;
|
|
344
|
+
readonly valueFormat: string;
|
|
345
|
+
readonly rangeSeparator: string;
|
|
339
346
|
readonly defaultValue: Date | Date[];
|
|
340
|
-
readonly
|
|
347
|
+
readonly showFooter: boolean;
|
|
348
|
+
readonly orderOnConfirm: boolean;
|
|
341
349
|
readonly disabledDate: (date: Date) => boolean;
|
|
342
|
-
readonly
|
|
350
|
+
readonly firstDayOfWeek: number;
|
|
343
351
|
readonly cellShape: "round" | "square";
|
|
344
352
|
readonly cellRender: (date: Date) => string | {
|
|
345
353
|
text: string;
|
|
@@ -350,16 +358,10 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
350
358
|
*/
|
|
351
359
|
?: string;
|
|
352
360
|
};
|
|
353
|
-
readonly startPlaceholder: string;
|
|
354
|
-
readonly endPlaceholder: string;
|
|
355
|
-
readonly valueFormat: string;
|
|
356
361
|
readonly dateFormat: string;
|
|
357
362
|
readonly timeFormat: string;
|
|
358
|
-
readonly rangeSeparator: string;
|
|
359
363
|
readonly presets: import("./date-picker").DatePickerPreset[];
|
|
360
|
-
readonly presetPosition: "top" | "
|
|
361
|
-
readonly orderOnConfirm: boolean;
|
|
362
|
-
readonly clearIcon: string | import("vue").Component;
|
|
364
|
+
readonly presetPosition: "top" | "left" | "right" | "bottom";
|
|
363
365
|
readonly panelOnly: boolean;
|
|
364
366
|
readonly defaultTime: Date | Date[];
|
|
365
367
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { CalendarCell } from './panel-utils';
|
|
1
2
|
type __VLS_Props = {
|
|
2
3
|
date: Date;
|
|
3
4
|
selectedDate?: Date | Date[] | null;
|
|
@@ -16,7 +17,7 @@ type __VLS_Props = {
|
|
|
16
17
|
};
|
|
17
18
|
};
|
|
18
19
|
declare var __VLS_1: {
|
|
19
|
-
cell:
|
|
20
|
+
cell: CalendarCell;
|
|
20
21
|
};
|
|
21
22
|
type __VLS_Slots = {} & {
|
|
22
23
|
'date-cell'?: (props: typeof __VLS_1) => any;
|
|
@@ -4,8 +4,498 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import Descriptions from './src/descriptions.vue';
|
|
6
6
|
import DescriptionsItem from './src/description-item.vue';
|
|
7
|
-
export declare const YhDescriptions:
|
|
8
|
-
|
|
7
|
+
export declare const YhDescriptions: import("@yh-ui/utils").SFCWithInstall<{
|
|
8
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
+
readonly title: StringConstructor;
|
|
10
|
+
readonly extra: StringConstructor;
|
|
11
|
+
readonly column: {
|
|
12
|
+
readonly type: NumberConstructor;
|
|
13
|
+
readonly default: 3;
|
|
14
|
+
};
|
|
15
|
+
readonly direction: {
|
|
16
|
+
readonly type: import("vue").PropType<"horizontal" | "vertical">;
|
|
17
|
+
readonly default: "horizontal";
|
|
18
|
+
};
|
|
19
|
+
readonly size: {
|
|
20
|
+
readonly type: import("vue").PropType<"large" | "default" | "small">;
|
|
21
|
+
readonly default: "default";
|
|
22
|
+
};
|
|
23
|
+
readonly border: {
|
|
24
|
+
readonly type: BooleanConstructor;
|
|
25
|
+
readonly default: false;
|
|
26
|
+
};
|
|
27
|
+
readonly colon: {
|
|
28
|
+
readonly type: BooleanConstructor;
|
|
29
|
+
readonly default: true;
|
|
30
|
+
};
|
|
31
|
+
readonly labelStyle: {
|
|
32
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
33
|
+
};
|
|
34
|
+
readonly contentStyle: {
|
|
35
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
36
|
+
};
|
|
37
|
+
readonly labelClassName: {
|
|
38
|
+
readonly type: StringConstructor;
|
|
39
|
+
readonly default: "";
|
|
40
|
+
};
|
|
41
|
+
readonly contentClassName: {
|
|
42
|
+
readonly type: StringConstructor;
|
|
43
|
+
readonly default: "";
|
|
44
|
+
};
|
|
45
|
+
readonly themeOverrides: {
|
|
46
|
+
readonly type: import("vue").PropType<import("@yh-ui/theme").ComponentThemeVars>;
|
|
47
|
+
readonly default: undefined;
|
|
48
|
+
};
|
|
49
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
50
|
+
readonly size: "large" | "default" | "small";
|
|
51
|
+
readonly colon: boolean;
|
|
52
|
+
readonly themeOverrides: import("@yh-ui/theme").ComponentThemeVars;
|
|
53
|
+
readonly direction: "vertical" | "horizontal";
|
|
54
|
+
readonly border: boolean;
|
|
55
|
+
readonly column: number;
|
|
56
|
+
readonly labelClassName: string;
|
|
57
|
+
readonly contentClassName: string;
|
|
58
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
59
|
+
P: {};
|
|
60
|
+
B: {};
|
|
61
|
+
D: {};
|
|
62
|
+
C: {};
|
|
63
|
+
M: {};
|
|
64
|
+
Defaults: {};
|
|
65
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
66
|
+
readonly title: StringConstructor;
|
|
67
|
+
readonly extra: StringConstructor;
|
|
68
|
+
readonly column: {
|
|
69
|
+
readonly type: NumberConstructor;
|
|
70
|
+
readonly default: 3;
|
|
71
|
+
};
|
|
72
|
+
readonly direction: {
|
|
73
|
+
readonly type: import("vue").PropType<"horizontal" | "vertical">;
|
|
74
|
+
readonly default: "horizontal";
|
|
75
|
+
};
|
|
76
|
+
readonly size: {
|
|
77
|
+
readonly type: import("vue").PropType<"large" | "default" | "small">;
|
|
78
|
+
readonly default: "default";
|
|
79
|
+
};
|
|
80
|
+
readonly border: {
|
|
81
|
+
readonly type: BooleanConstructor;
|
|
82
|
+
readonly default: false;
|
|
83
|
+
};
|
|
84
|
+
readonly colon: {
|
|
85
|
+
readonly type: BooleanConstructor;
|
|
86
|
+
readonly default: true;
|
|
87
|
+
};
|
|
88
|
+
readonly labelStyle: {
|
|
89
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
90
|
+
};
|
|
91
|
+
readonly contentStyle: {
|
|
92
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
93
|
+
};
|
|
94
|
+
readonly labelClassName: {
|
|
95
|
+
readonly type: StringConstructor;
|
|
96
|
+
readonly default: "";
|
|
97
|
+
};
|
|
98
|
+
readonly contentClassName: {
|
|
99
|
+
readonly type: StringConstructor;
|
|
100
|
+
readonly default: "";
|
|
101
|
+
};
|
|
102
|
+
readonly themeOverrides: {
|
|
103
|
+
readonly type: import("vue").PropType<import("@yh-ui/theme").ComponentThemeVars>;
|
|
104
|
+
readonly default: undefined;
|
|
105
|
+
};
|
|
106
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
107
|
+
readonly size: "large" | "default" | "small";
|
|
108
|
+
readonly colon: boolean;
|
|
109
|
+
readonly themeOverrides: import("@yh-ui/theme").ComponentThemeVars;
|
|
110
|
+
readonly direction: "vertical" | "horizontal";
|
|
111
|
+
readonly border: boolean;
|
|
112
|
+
readonly column: number;
|
|
113
|
+
readonly labelClassName: string;
|
|
114
|
+
readonly contentClassName: string;
|
|
115
|
+
}>;
|
|
116
|
+
__isFragment?: never;
|
|
117
|
+
__isTeleport?: never;
|
|
118
|
+
__isSuspense?: never;
|
|
119
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
120
|
+
readonly title: StringConstructor;
|
|
121
|
+
readonly extra: StringConstructor;
|
|
122
|
+
readonly column: {
|
|
123
|
+
readonly type: NumberConstructor;
|
|
124
|
+
readonly default: 3;
|
|
125
|
+
};
|
|
126
|
+
readonly direction: {
|
|
127
|
+
readonly type: import("vue").PropType<"horizontal" | "vertical">;
|
|
128
|
+
readonly default: "horizontal";
|
|
129
|
+
};
|
|
130
|
+
readonly size: {
|
|
131
|
+
readonly type: import("vue").PropType<"large" | "default" | "small">;
|
|
132
|
+
readonly default: "default";
|
|
133
|
+
};
|
|
134
|
+
readonly border: {
|
|
135
|
+
readonly type: BooleanConstructor;
|
|
136
|
+
readonly default: false;
|
|
137
|
+
};
|
|
138
|
+
readonly colon: {
|
|
139
|
+
readonly type: BooleanConstructor;
|
|
140
|
+
readonly default: true;
|
|
141
|
+
};
|
|
142
|
+
readonly labelStyle: {
|
|
143
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
144
|
+
};
|
|
145
|
+
readonly contentStyle: {
|
|
146
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
147
|
+
};
|
|
148
|
+
readonly labelClassName: {
|
|
149
|
+
readonly type: StringConstructor;
|
|
150
|
+
readonly default: "";
|
|
151
|
+
};
|
|
152
|
+
readonly contentClassName: {
|
|
153
|
+
readonly type: StringConstructor;
|
|
154
|
+
readonly default: "";
|
|
155
|
+
};
|
|
156
|
+
readonly themeOverrides: {
|
|
157
|
+
readonly type: import("vue").PropType<import("@yh-ui/theme").ComponentThemeVars>;
|
|
158
|
+
readonly default: undefined;
|
|
159
|
+
};
|
|
160
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
161
|
+
readonly size: "large" | "default" | "small";
|
|
162
|
+
readonly colon: boolean;
|
|
163
|
+
readonly themeOverrides: import("@yh-ui/theme").ComponentThemeVars;
|
|
164
|
+
readonly direction: "vertical" | "horizontal";
|
|
165
|
+
readonly border: boolean;
|
|
166
|
+
readonly column: number;
|
|
167
|
+
readonly labelClassName: string;
|
|
168
|
+
readonly contentClassName: string;
|
|
169
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
170
|
+
$slots: {
|
|
171
|
+
title?: (props: {}) => any;
|
|
172
|
+
} & {
|
|
173
|
+
extra?: (props: {}) => any;
|
|
174
|
+
};
|
|
175
|
+
})> & {
|
|
176
|
+
DescriptionsItem: {
|
|
177
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
178
|
+
readonly label: {
|
|
179
|
+
readonly type: StringConstructor;
|
|
180
|
+
readonly default: "";
|
|
181
|
+
};
|
|
182
|
+
readonly span: {
|
|
183
|
+
readonly type: NumberConstructor;
|
|
184
|
+
readonly default: 1;
|
|
185
|
+
};
|
|
186
|
+
readonly width: {
|
|
187
|
+
readonly type: import("vue").PropType<string | number>;
|
|
188
|
+
readonly default: "";
|
|
189
|
+
};
|
|
190
|
+
readonly minWidth: {
|
|
191
|
+
readonly type: import("vue").PropType<string | number>;
|
|
192
|
+
readonly default: "";
|
|
193
|
+
};
|
|
194
|
+
readonly align: {
|
|
195
|
+
readonly type: import("vue").PropType<"left" | "center" | "right">;
|
|
196
|
+
readonly default: "left";
|
|
197
|
+
};
|
|
198
|
+
readonly labelAlign: {
|
|
199
|
+
readonly type: import("vue").PropType<"left" | "center" | "right">;
|
|
200
|
+
readonly default: "left";
|
|
201
|
+
};
|
|
202
|
+
readonly className: {
|
|
203
|
+
readonly type: StringConstructor;
|
|
204
|
+
readonly default: "";
|
|
205
|
+
};
|
|
206
|
+
readonly labelClassName: {
|
|
207
|
+
readonly type: StringConstructor;
|
|
208
|
+
readonly default: "";
|
|
209
|
+
};
|
|
210
|
+
readonly labelStyle: {
|
|
211
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
212
|
+
};
|
|
213
|
+
readonly contentStyle: {
|
|
214
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
215
|
+
};
|
|
216
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
217
|
+
readonly label: string;
|
|
218
|
+
readonly span: number;
|
|
219
|
+
readonly width: string | number;
|
|
220
|
+
readonly minWidth: string | number;
|
|
221
|
+
readonly align: "center" | "left" | "right";
|
|
222
|
+
readonly labelClassName: string;
|
|
223
|
+
readonly labelAlign: "center" | "left" | "right";
|
|
224
|
+
readonly className: string;
|
|
225
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
226
|
+
P: {};
|
|
227
|
+
B: {};
|
|
228
|
+
D: {};
|
|
229
|
+
C: {};
|
|
230
|
+
M: {};
|
|
231
|
+
Defaults: {};
|
|
232
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
233
|
+
readonly label: {
|
|
234
|
+
readonly type: StringConstructor;
|
|
235
|
+
readonly default: "";
|
|
236
|
+
};
|
|
237
|
+
readonly span: {
|
|
238
|
+
readonly type: NumberConstructor;
|
|
239
|
+
readonly default: 1;
|
|
240
|
+
};
|
|
241
|
+
readonly width: {
|
|
242
|
+
readonly type: import("vue").PropType<string | number>;
|
|
243
|
+
readonly default: "";
|
|
244
|
+
};
|
|
245
|
+
readonly minWidth: {
|
|
246
|
+
readonly type: import("vue").PropType<string | number>;
|
|
247
|
+
readonly default: "";
|
|
248
|
+
};
|
|
249
|
+
readonly align: {
|
|
250
|
+
readonly type: import("vue").PropType<"left" | "center" | "right">;
|
|
251
|
+
readonly default: "left";
|
|
252
|
+
};
|
|
253
|
+
readonly labelAlign: {
|
|
254
|
+
readonly type: import("vue").PropType<"left" | "center" | "right">;
|
|
255
|
+
readonly default: "left";
|
|
256
|
+
};
|
|
257
|
+
readonly className: {
|
|
258
|
+
readonly type: StringConstructor;
|
|
259
|
+
readonly default: "";
|
|
260
|
+
};
|
|
261
|
+
readonly labelClassName: {
|
|
262
|
+
readonly type: StringConstructor;
|
|
263
|
+
readonly default: "";
|
|
264
|
+
};
|
|
265
|
+
readonly labelStyle: {
|
|
266
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
267
|
+
};
|
|
268
|
+
readonly contentStyle: {
|
|
269
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
270
|
+
};
|
|
271
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
272
|
+
readonly label: string;
|
|
273
|
+
readonly span: number;
|
|
274
|
+
readonly width: string | number;
|
|
275
|
+
readonly minWidth: string | number;
|
|
276
|
+
readonly align: "center" | "left" | "right";
|
|
277
|
+
readonly labelClassName: string;
|
|
278
|
+
readonly labelAlign: "center" | "left" | "right";
|
|
279
|
+
readonly className: string;
|
|
280
|
+
}>;
|
|
281
|
+
__isFragment?: never;
|
|
282
|
+
__isTeleport?: never;
|
|
283
|
+
__isSuspense?: never;
|
|
284
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
285
|
+
readonly label: {
|
|
286
|
+
readonly type: StringConstructor;
|
|
287
|
+
readonly default: "";
|
|
288
|
+
};
|
|
289
|
+
readonly span: {
|
|
290
|
+
readonly type: NumberConstructor;
|
|
291
|
+
readonly default: 1;
|
|
292
|
+
};
|
|
293
|
+
readonly width: {
|
|
294
|
+
readonly type: import("vue").PropType<string | number>;
|
|
295
|
+
readonly default: "";
|
|
296
|
+
};
|
|
297
|
+
readonly minWidth: {
|
|
298
|
+
readonly type: import("vue").PropType<string | number>;
|
|
299
|
+
readonly default: "";
|
|
300
|
+
};
|
|
301
|
+
readonly align: {
|
|
302
|
+
readonly type: import("vue").PropType<"left" | "center" | "right">;
|
|
303
|
+
readonly default: "left";
|
|
304
|
+
};
|
|
305
|
+
readonly labelAlign: {
|
|
306
|
+
readonly type: import("vue").PropType<"left" | "center" | "right">;
|
|
307
|
+
readonly default: "left";
|
|
308
|
+
};
|
|
309
|
+
readonly className: {
|
|
310
|
+
readonly type: StringConstructor;
|
|
311
|
+
readonly default: "";
|
|
312
|
+
};
|
|
313
|
+
readonly labelClassName: {
|
|
314
|
+
readonly type: StringConstructor;
|
|
315
|
+
readonly default: "";
|
|
316
|
+
};
|
|
317
|
+
readonly labelStyle: {
|
|
318
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
319
|
+
};
|
|
320
|
+
readonly contentStyle: {
|
|
321
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
322
|
+
};
|
|
323
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
324
|
+
readonly label: string;
|
|
325
|
+
readonly span: number;
|
|
326
|
+
readonly width: string | number;
|
|
327
|
+
readonly minWidth: string | number;
|
|
328
|
+
readonly align: "center" | "left" | "right";
|
|
329
|
+
readonly labelClassName: string;
|
|
330
|
+
readonly labelAlign: "center" | "left" | "right";
|
|
331
|
+
readonly className: string;
|
|
332
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
333
|
+
$slots: {
|
|
334
|
+
default?: (props: {}) => any;
|
|
335
|
+
};
|
|
336
|
+
});
|
|
337
|
+
};
|
|
338
|
+
export declare const YhDescriptionsItem: import("@yh-ui/utils").SFCWithInstall<{
|
|
339
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
340
|
+
readonly label: {
|
|
341
|
+
readonly type: StringConstructor;
|
|
342
|
+
readonly default: "";
|
|
343
|
+
};
|
|
344
|
+
readonly span: {
|
|
345
|
+
readonly type: NumberConstructor;
|
|
346
|
+
readonly default: 1;
|
|
347
|
+
};
|
|
348
|
+
readonly width: {
|
|
349
|
+
readonly type: import("vue").PropType<string | number>;
|
|
350
|
+
readonly default: "";
|
|
351
|
+
};
|
|
352
|
+
readonly minWidth: {
|
|
353
|
+
readonly type: import("vue").PropType<string | number>;
|
|
354
|
+
readonly default: "";
|
|
355
|
+
};
|
|
356
|
+
readonly align: {
|
|
357
|
+
readonly type: import("vue").PropType<"left" | "center" | "right">;
|
|
358
|
+
readonly default: "left";
|
|
359
|
+
};
|
|
360
|
+
readonly labelAlign: {
|
|
361
|
+
readonly type: import("vue").PropType<"left" | "center" | "right">;
|
|
362
|
+
readonly default: "left";
|
|
363
|
+
};
|
|
364
|
+
readonly className: {
|
|
365
|
+
readonly type: StringConstructor;
|
|
366
|
+
readonly default: "";
|
|
367
|
+
};
|
|
368
|
+
readonly labelClassName: {
|
|
369
|
+
readonly type: StringConstructor;
|
|
370
|
+
readonly default: "";
|
|
371
|
+
};
|
|
372
|
+
readonly labelStyle: {
|
|
373
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
374
|
+
};
|
|
375
|
+
readonly contentStyle: {
|
|
376
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
377
|
+
};
|
|
378
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
379
|
+
readonly label: string;
|
|
380
|
+
readonly span: number;
|
|
381
|
+
readonly width: string | number;
|
|
382
|
+
readonly minWidth: string | number;
|
|
383
|
+
readonly align: "center" | "left" | "right";
|
|
384
|
+
readonly labelClassName: string;
|
|
385
|
+
readonly labelAlign: "center" | "left" | "right";
|
|
386
|
+
readonly className: string;
|
|
387
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
388
|
+
P: {};
|
|
389
|
+
B: {};
|
|
390
|
+
D: {};
|
|
391
|
+
C: {};
|
|
392
|
+
M: {};
|
|
393
|
+
Defaults: {};
|
|
394
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
395
|
+
readonly label: {
|
|
396
|
+
readonly type: StringConstructor;
|
|
397
|
+
readonly default: "";
|
|
398
|
+
};
|
|
399
|
+
readonly span: {
|
|
400
|
+
readonly type: NumberConstructor;
|
|
401
|
+
readonly default: 1;
|
|
402
|
+
};
|
|
403
|
+
readonly width: {
|
|
404
|
+
readonly type: import("vue").PropType<string | number>;
|
|
405
|
+
readonly default: "";
|
|
406
|
+
};
|
|
407
|
+
readonly minWidth: {
|
|
408
|
+
readonly type: import("vue").PropType<string | number>;
|
|
409
|
+
readonly default: "";
|
|
410
|
+
};
|
|
411
|
+
readonly align: {
|
|
412
|
+
readonly type: import("vue").PropType<"left" | "center" | "right">;
|
|
413
|
+
readonly default: "left";
|
|
414
|
+
};
|
|
415
|
+
readonly labelAlign: {
|
|
416
|
+
readonly type: import("vue").PropType<"left" | "center" | "right">;
|
|
417
|
+
readonly default: "left";
|
|
418
|
+
};
|
|
419
|
+
readonly className: {
|
|
420
|
+
readonly type: StringConstructor;
|
|
421
|
+
readonly default: "";
|
|
422
|
+
};
|
|
423
|
+
readonly labelClassName: {
|
|
424
|
+
readonly type: StringConstructor;
|
|
425
|
+
readonly default: "";
|
|
426
|
+
};
|
|
427
|
+
readonly labelStyle: {
|
|
428
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
429
|
+
};
|
|
430
|
+
readonly contentStyle: {
|
|
431
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
432
|
+
};
|
|
433
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
434
|
+
readonly label: string;
|
|
435
|
+
readonly span: number;
|
|
436
|
+
readonly width: string | number;
|
|
437
|
+
readonly minWidth: string | number;
|
|
438
|
+
readonly align: "center" | "left" | "right";
|
|
439
|
+
readonly labelClassName: string;
|
|
440
|
+
readonly labelAlign: "center" | "left" | "right";
|
|
441
|
+
readonly className: string;
|
|
442
|
+
}>;
|
|
443
|
+
__isFragment?: never;
|
|
444
|
+
__isTeleport?: never;
|
|
445
|
+
__isSuspense?: never;
|
|
446
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
447
|
+
readonly label: {
|
|
448
|
+
readonly type: StringConstructor;
|
|
449
|
+
readonly default: "";
|
|
450
|
+
};
|
|
451
|
+
readonly span: {
|
|
452
|
+
readonly type: NumberConstructor;
|
|
453
|
+
readonly default: 1;
|
|
454
|
+
};
|
|
455
|
+
readonly width: {
|
|
456
|
+
readonly type: import("vue").PropType<string | number>;
|
|
457
|
+
readonly default: "";
|
|
458
|
+
};
|
|
459
|
+
readonly minWidth: {
|
|
460
|
+
readonly type: import("vue").PropType<string | number>;
|
|
461
|
+
readonly default: "";
|
|
462
|
+
};
|
|
463
|
+
readonly align: {
|
|
464
|
+
readonly type: import("vue").PropType<"left" | "center" | "right">;
|
|
465
|
+
readonly default: "left";
|
|
466
|
+
};
|
|
467
|
+
readonly labelAlign: {
|
|
468
|
+
readonly type: import("vue").PropType<"left" | "center" | "right">;
|
|
469
|
+
readonly default: "left";
|
|
470
|
+
};
|
|
471
|
+
readonly className: {
|
|
472
|
+
readonly type: StringConstructor;
|
|
473
|
+
readonly default: "";
|
|
474
|
+
};
|
|
475
|
+
readonly labelClassName: {
|
|
476
|
+
readonly type: StringConstructor;
|
|
477
|
+
readonly default: "";
|
|
478
|
+
};
|
|
479
|
+
readonly labelStyle: {
|
|
480
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
481
|
+
};
|
|
482
|
+
readonly contentStyle: {
|
|
483
|
+
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
484
|
+
};
|
|
485
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
486
|
+
readonly label: string;
|
|
487
|
+
readonly span: number;
|
|
488
|
+
readonly width: string | number;
|
|
489
|
+
readonly minWidth: string | number;
|
|
490
|
+
readonly align: "center" | "left" | "right";
|
|
491
|
+
readonly labelClassName: string;
|
|
492
|
+
readonly labelAlign: "center" | "left" | "right";
|
|
493
|
+
readonly className: string;
|
|
494
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
495
|
+
$slots: {
|
|
496
|
+
default?: (props: {}) => any;
|
|
497
|
+
};
|
|
498
|
+
})>;
|
|
9
499
|
export default YhDescriptions;
|
|
10
500
|
export * from './src/descriptions';
|
|
11
501
|
export type DescriptionsInstance = InstanceType<typeof Descriptions>;
|
|
@@ -81,14 +81,14 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
81
81
|
readonly type: import("vue").PropType<import("vue").CSSProperties>;
|
|
82
82
|
};
|
|
83
83
|
}>> & Readonly<{}>, {
|
|
84
|
-
readonly width: string | number;
|
|
85
|
-
readonly minWidth: string | number;
|
|
86
84
|
readonly label: string;
|
|
87
85
|
readonly span: number;
|
|
88
|
-
readonly
|
|
89
|
-
readonly
|
|
86
|
+
readonly width: string | number;
|
|
87
|
+
readonly minWidth: string | number;
|
|
88
|
+
readonly align: "center" | "left" | "right";
|
|
90
89
|
readonly labelClassName: string;
|
|
91
|
-
readonly labelAlign: "
|
|
90
|
+
readonly labelAlign: "center" | "left" | "right";
|
|
91
|
+
readonly className: string;
|
|
92
92
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
93
93
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
94
94
|
export default _default;
|
|
@@ -88,12 +88,12 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
88
88
|
readonly default: undefined;
|
|
89
89
|
};
|
|
90
90
|
}>> & Readonly<{}>, {
|
|
91
|
+
readonly size: "large" | "default" | "small";
|
|
92
|
+
readonly colon: boolean;
|
|
91
93
|
readonly themeOverrides: import("@yh-ui/theme").ComponentThemeVars;
|
|
92
|
-
readonly
|
|
93
|
-
readonly size: "small" | "default" | "large";
|
|
94
|
+
readonly direction: "vertical" | "horizontal";
|
|
94
95
|
readonly border: boolean;
|
|
95
|
-
readonly
|
|
96
|
-
readonly colon: boolean;
|
|
96
|
+
readonly column: number;
|
|
97
97
|
readonly labelClassName: string;
|
|
98
98
|
readonly contentClassName: string;
|
|
99
99
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|