@chenzy-design/svelte 0.3.1 → 0.4.1
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/dist/_floating/use-floating.d.ts +6 -0
- package/dist/_floating/use-floating.d.ts.map +1 -1
- package/dist/_floating/use-floating.js +38 -0
- package/dist/ai-chat-dialogue/AIChatDialogue.svelte +243 -0
- package/dist/ai-chat-dialogue/AIChatDialogue.svelte.d.ts +60 -0
- package/dist/ai-chat-dialogue/AIChatDialogue.svelte.d.ts.map +1 -0
- package/dist/ai-chat-dialogue/ContentItemRenderer.svelte +318 -0
- package/dist/ai-chat-dialogue/ContentItemRenderer.svelte.d.ts +18 -0
- package/dist/ai-chat-dialogue/ContentItemRenderer.svelte.d.ts.map +1 -0
- package/dist/ai-chat-dialogue/DialogueBox.svelte +403 -0
- package/dist/ai-chat-dialogue/DialogueBox.svelte.d.ts +50 -0
- package/dist/ai-chat-dialogue/DialogueBox.svelte.d.ts.map +1 -0
- package/dist/ai-chat-dialogue/index.d.ts +8 -0
- package/dist/ai-chat-dialogue/index.d.ts.map +1 -0
- package/dist/ai-chat-dialogue/index.js +6 -0
- package/dist/ai-chat-dialogue/meta.d.ts +174 -0
- package/dist/ai-chat-dialogue/meta.d.ts.map +1 -0
- package/dist/ai-chat-dialogue/meta.js +66 -0
- package/dist/ai-chat-dialogue/render-config.d.ts +57 -0
- package/dist/ai-chat-dialogue/render-config.d.ts.map +1 -0
- package/dist/ai-chat-input/AIChatInput.svelte +1196 -0
- package/dist/ai-chat-input/AIChatInput.svelte.d.ts +146 -0
- package/dist/ai-chat-input/AIChatInput.svelte.d.ts.map +1 -0
- package/dist/ai-chat-input/AIChatInputConfigureButton.svelte +94 -0
- package/dist/ai-chat-input/AIChatInputConfigureButton.svelte.d.ts +17 -0
- package/dist/ai-chat-input/AIChatInputConfigureButton.svelte.d.ts.map +1 -0
- package/dist/ai-chat-input/AIChatInputConfigureItem.svelte +40 -0
- package/dist/ai-chat-input/AIChatInputConfigureItem.svelte.d.ts +16 -0
- package/dist/ai-chat-input/AIChatInputConfigureItem.svelte.d.ts.map +1 -0
- package/dist/ai-chat-input/AIChatInputConfigureMcp.svelte +94 -0
- package/dist/ai-chat-input/AIChatInputConfigureMcp.svelte.d.ts +18 -0
- package/dist/ai-chat-input/AIChatInputConfigureMcp.svelte.d.ts.map +1 -0
- package/dist/ai-chat-input/AIChatInputConfigureRadioButton.svelte +52 -0
- package/dist/ai-chat-input/AIChatInputConfigureRadioButton.svelte.d.ts +17 -0
- package/dist/ai-chat-input/AIChatInputConfigureRadioButton.svelte.d.ts.map +1 -0
- package/dist/ai-chat-input/AIChatInputConfigureSelect.svelte +50 -0
- package/dist/ai-chat-input/AIChatInputConfigureSelect.svelte.d.ts +16 -0
- package/dist/ai-chat-input/AIChatInputConfigureSelect.svelte.d.ts.map +1 -0
- package/dist/ai-chat-input/InputSlotNode.svelte +50 -0
- package/dist/ai-chat-input/InputSlotNode.svelte.d.ts +5 -0
- package/dist/ai-chat-input/InputSlotNode.svelte.d.ts.map +1 -0
- package/dist/ai-chat-input/SelectSlotNode.svelte +54 -0
- package/dist/ai-chat-input/SelectSlotNode.svelte.d.ts +5 -0
- package/dist/ai-chat-input/SelectSlotNode.svelte.d.ts.map +1 -0
- package/dist/ai-chat-input/SkillSlotNode.svelte +82 -0
- package/dist/ai-chat-input/SkillSlotNode.svelte.d.ts +5 -0
- package/dist/ai-chat-input/SkillSlotNode.svelte.d.ts.map +1 -0
- package/dist/ai-chat-input/configure-context.d.ts +12 -0
- package/dist/ai-chat-input/configure-context.d.ts.map +1 -0
- package/dist/ai-chat-input/configure-context.js +14 -0
- package/dist/ai-chat-input/index.d.ts +9 -0
- package/dist/ai-chat-input/index.d.ts.map +1 -0
- package/dist/ai-chat-input/index.js +9 -0
- package/dist/ai-chat-input/input-slot-extension.d.ts +18 -0
- package/dist/ai-chat-input/input-slot-extension.d.ts.map +1 -0
- package/dist/ai-chat-input/input-slot-extension.js +55 -0
- package/dist/ai-chat-input/input-slot-plugins.d.ts +34 -0
- package/dist/ai-chat-input/input-slot-plugins.d.ts.map +1 -0
- package/dist/ai-chat-input/input-slot-plugins.js +478 -0
- package/dist/ai-chat-input/meta.d.ts +284 -0
- package/dist/ai-chat-input/meta.d.ts.map +1 -0
- package/dist/ai-chat-input/meta.js +106 -0
- package/dist/ai-chat-input/select-slot-extension.d.ts +16 -0
- package/dist/ai-chat-input/select-slot-extension.d.ts.map +1 -0
- package/dist/ai-chat-input/select-slot-extension.js +35 -0
- package/dist/ai-chat-input/skill-slot-extension.d.ts +22 -0
- package/dist/ai-chat-input/skill-slot-extension.d.ts.map +1 -0
- package/dist/ai-chat-input/skill-slot-extension.js +46 -0
- package/dist/anchor/Anchor.svelte +393 -242
- package/dist/anchor/Anchor.svelte.d.ts +40 -17
- package/dist/anchor/Anchor.svelte.d.ts.map +1 -1
- package/dist/anchor/AnchorLink.svelte +226 -0
- package/dist/anchor/AnchorLink.svelte.d.ts +19 -0
- package/dist/anchor/AnchorLink.svelte.d.ts.map +1 -0
- package/dist/anchor/context.d.ts +43 -0
- package/dist/anchor/context.d.ts.map +1 -0
- package/dist/anchor/context.js +26 -0
- package/dist/anchor/index.d.ts +11 -2
- package/dist/anchor/index.d.ts.map +1 -1
- package/dist/anchor/index.js +10 -1
- package/dist/anchor/meta.d.ts +92 -43
- package/dist/anchor/meta.d.ts.map +1 -1
- package/dist/anchor/meta.js +124 -38
- package/dist/anchor/types.d.ts +32 -5
- package/dist/anchor/types.d.ts.map +1 -1
- package/dist/audio-player/AudioPlayer.svelte +614 -0
- package/dist/audio-player/AudioPlayer.svelte.d.ts +21 -0
- package/dist/audio-player/AudioPlayer.svelte.d.ts.map +1 -0
- package/dist/audio-player/AudioSlider.svelte +162 -0
- package/dist/audio-player/AudioSlider.svelte.d.ts +20 -0
- package/dist/audio-player/AudioSlider.svelte.d.ts.map +1 -0
- package/dist/audio-player/index.d.ts +3 -0
- package/dist/audio-player/index.d.ts.map +1 -0
- package/dist/audio-player/index.js +2 -0
- package/dist/audio-player/meta.d.ts +74 -0
- package/dist/audio-player/meta.d.ts.map +1 -0
- package/dist/audio-player/meta.js +96 -0
- package/dist/autocomplete/AutoComplete.svelte +307 -411
- package/dist/autocomplete/AutoComplete.svelte.d.ts +52 -47
- package/dist/autocomplete/AutoComplete.svelte.d.ts.map +1 -1
- package/dist/autocomplete/meta.d.ts +150 -34
- package/dist/autocomplete/meta.d.ts.map +1 -1
- package/dist/autocomplete/meta.js +43 -21
- package/dist/avatar/Avatar.svelte +784 -211
- package/dist/avatar/Avatar.svelte.d.ts +28 -23
- package/dist/avatar/Avatar.svelte.d.ts.map +1 -1
- package/dist/avatar/AvatarGroup.svelte +151 -70
- package/dist/avatar/AvatarGroup.svelte.d.ts +16 -17
- package/dist/avatar/AvatarGroup.svelte.d.ts.map +1 -1
- package/dist/avatar/TopSlotSvg.svelte +62 -0
- package/dist/avatar/TopSlotSvg.svelte.d.ts +8 -0
- package/dist/avatar/TopSlotSvg.svelte.d.ts.map +1 -0
- package/dist/avatar/context.d.ts +28 -1
- package/dist/avatar/context.d.ts.map +1 -1
- package/dist/avatar/index.d.ts +2 -1
- package/dist/avatar/index.d.ts.map +1 -1
- package/dist/avatar/meta.d.ts +124 -36
- package/dist/avatar/meta.d.ts.map +1 -1
- package/dist/avatar/meta.js +117 -24
- package/dist/back-top/BackTop.svelte +81 -231
- package/dist/back-top/BackTop.svelte.d.ts +10 -33
- package/dist/back-top/BackTop.svelte.d.ts.map +1 -1
- package/dist/back-top/meta.d.ts +23 -72
- package/dist/back-top/meta.d.ts.map +1 -1
- package/dist/back-top/meta.js +19 -79
- package/dist/badge/Badge.svelte +187 -249
- package/dist/badge/Badge.svelte.d.ts +23 -14
- package/dist/badge/Badge.svelte.d.ts.map +1 -1
- package/dist/badge/meta.d.ts +52 -44
- package/dist/badge/meta.d.ts.map +1 -1
- package/dist/badge/meta.js +35 -33
- package/dist/banner/Banner.svelte +189 -274
- package/dist/banner/Banner.svelte.d.ts +20 -23
- package/dist/banner/Banner.svelte.d.ts.map +1 -1
- package/dist/banner/index.d.ts +2 -1
- package/dist/banner/index.d.ts.map +1 -1
- package/dist/banner/meta.d.ts +41 -87
- package/dist/banner/meta.d.ts.map +1 -1
- package/dist/banner/meta.js +59 -79
- package/dist/breadcrumb/Breadcrumb.svelte +240 -118
- package/dist/breadcrumb/Breadcrumb.svelte.d.ts +35 -19
- package/dist/breadcrumb/Breadcrumb.svelte.d.ts.map +1 -1
- package/dist/breadcrumb/Item.svelte +5 -5
- package/dist/breadcrumb/meta.d.ts +26 -19
- package/dist/breadcrumb/meta.d.ts.map +1 -1
- package/dist/breadcrumb/meta.js +51 -16
- package/dist/breadcrumb/types.d.ts +11 -1
- package/dist/breadcrumb/types.d.ts.map +1 -1
- package/dist/button/BaseButton.svelte +479 -0
- package/dist/button/BaseButton.svelte.d.ts +29 -0
- package/dist/button/BaseButton.svelte.d.ts.map +1 -0
- package/dist/button/Button.svelte +166 -296
- package/dist/button/Button.svelte.d.ts +12 -7
- package/dist/button/Button.svelte.d.ts.map +1 -1
- package/dist/button/ButtonGroup.svelte +66 -20
- package/dist/button/ButtonGroup.svelte.d.ts.map +1 -1
- package/dist/button/SplitButtonGroup.svelte +64 -101
- package/dist/button/SplitButtonGroup.svelte.d.ts +1 -21
- package/dist/button/SplitButtonGroup.svelte.d.ts.map +1 -1
- package/dist/button/meta.d.ts +28 -68
- package/dist/button/meta.d.ts.map +1 -1
- package/dist/button/meta.js +33 -24
- package/dist/calendar/Calendar.svelte +928 -1172
- package/dist/calendar/Calendar.svelte.d.ts +34 -104
- package/dist/calendar/Calendar.svelte.d.ts.map +1 -1
- package/dist/calendar/meta.d.ts +78 -168
- package/dist/calendar/meta.d.ts.map +1 -1
- package/dist/calendar/meta.js +123 -78
- package/dist/card/Card.svelte +171 -233
- package/dist/card/Card.svelte.d.ts +30 -24
- package/dist/card/Card.svelte.d.ts.map +1 -1
- package/dist/card/CardGroup.svelte +74 -0
- package/dist/card/CardGroup.svelte.d.ts +20 -0
- package/dist/card/CardGroup.svelte.d.ts.map +1 -0
- package/dist/card/CardMeta.svelte +38 -28
- package/dist/card/CardMeta.svelte.d.ts +5 -0
- package/dist/card/CardMeta.svelte.d.ts.map +1 -1
- package/dist/card/index.d.ts +3 -1
- package/dist/card/index.d.ts.map +1 -1
- package/dist/card/index.js +7 -2
- package/dist/card/meta.d.ts +177 -75
- package/dist/card/meta.d.ts.map +1 -1
- package/dist/card/meta.js +102 -45
- package/dist/carousel/Carousel.svelte +569 -569
- package/dist/carousel/Carousel.svelte.d.ts +37 -29
- package/dist/carousel/Carousel.svelte.d.ts.map +1 -1
- package/dist/carousel/meta.d.ts +73 -65
- package/dist/carousel/meta.d.ts.map +1 -1
- package/dist/carousel/meta.js +85 -43
- package/dist/cascader/Cascader.svelte +725 -391
- package/dist/cascader/Cascader.svelte.d.ts +48 -24
- package/dist/cascader/Cascader.svelte.d.ts.map +1 -1
- package/dist/cascader/meta.d.ts +281 -32
- package/dist/cascader/meta.d.ts.map +1 -1
- package/dist/cascader/meta.js +85 -12
- package/dist/chat/Chat.svelte +483 -0
- package/dist/chat/Chat.svelte.d.ts +76 -0
- package/dist/chat/Chat.svelte.d.ts.map +1 -0
- package/dist/chat/ChatBox.svelte +207 -0
- package/dist/chat/ChatBox.svelte.d.ts +26 -0
- package/dist/chat/ChatBox.svelte.d.ts.map +1 -0
- package/dist/chat/ChatBoxAction.svelte +190 -0
- package/dist/chat/ChatBoxAction.svelte.d.ts +18 -0
- package/dist/chat/ChatBoxAction.svelte.d.ts.map +1 -0
- package/dist/chat/ChatBoxAvatar.svelte +40 -0
- package/dist/chat/ChatBoxAvatar.svelte.d.ts +13 -0
- package/dist/chat/ChatBoxAvatar.svelte.d.ts.map +1 -0
- package/dist/chat/ChatBoxContent.svelte +238 -0
- package/dist/chat/ChatBoxContent.svelte.d.ts +17 -0
- package/dist/chat/ChatBoxContent.svelte.d.ts.map +1 -0
- package/dist/chat/ChatBoxTitle.svelte +40 -0
- package/dist/chat/ChatBoxTitle.svelte.d.ts +13 -0
- package/dist/chat/ChatBoxTitle.svelte.d.ts.map +1 -0
- package/dist/chat/ChatCode.svelte +139 -0
- package/dist/chat/ChatCode.svelte.d.ts +9 -0
- package/dist/chat/ChatCode.svelte.d.ts.map +1 -0
- package/dist/chat/Hint.svelte +82 -0
- package/dist/chat/Hint.svelte.d.ts +13 -0
- package/dist/chat/Hint.svelte.d.ts.map +1 -0
- package/dist/chat/InputBox.svelte +365 -0
- package/dist/chat/InputBox.svelte.d.ts +30 -0
- package/dist/chat/InputBox.svelte.d.ts.map +1 -0
- package/dist/chat/index.d.ts +7 -0
- package/dist/chat/index.d.ts.map +1 -0
- package/dist/chat/index.js +5 -0
- package/dist/chat/meta.d.ts +297 -0
- package/dist/chat/meta.d.ts.map +1 -0
- package/dist/chat/meta.js +230 -0
- package/dist/chat/types.d.ts +94 -0
- package/dist/chat/types.d.ts.map +1 -0
- package/dist/chat/types.js +1 -0
- package/dist/checkbox/Checkbox.svelte +339 -148
- package/dist/checkbox/Checkbox.svelte.d.ts +27 -8
- package/dist/checkbox/Checkbox.svelte.d.ts.map +1 -1
- package/dist/checkbox/CheckboxGroup.svelte +52 -20
- package/dist/checkbox/CheckboxGroup.svelte.d.ts +7 -4
- package/dist/checkbox/CheckboxGroup.svelte.d.ts.map +1 -1
- package/dist/checkbox/context.d.ts +17 -7
- package/dist/checkbox/context.d.ts.map +1 -1
- package/dist/checkbox/index.d.ts +1 -1
- package/dist/checkbox/index.d.ts.map +1 -1
- package/dist/checkbox/meta.d.ts +49 -22
- package/dist/checkbox/meta.d.ts.map +1 -1
- package/dist/checkbox/meta.js +15 -13
- package/dist/code-highlight/CodeHighlight.svelte +298 -0
- package/dist/code-highlight/CodeHighlight.svelte.d.ts +18 -0
- package/dist/code-highlight/CodeHighlight.svelte.d.ts.map +1 -0
- package/dist/code-highlight/index.d.ts +4 -0
- package/dist/code-highlight/index.d.ts.map +1 -0
- package/dist/code-highlight/index.js +3 -0
- package/dist/code-highlight/meta.d.ts +61 -0
- package/dist/code-highlight/meta.d.ts.map +1 -0
- package/dist/code-highlight/meta.js +51 -0
- package/dist/code-highlight/prism-modules.d.ts +15 -0
- package/dist/collapse/Collapse.svelte +134 -324
- package/dist/collapse/Collapse.svelte.d.ts +24 -38
- package/dist/collapse/Collapse.svelte.d.ts.map +1 -1
- package/dist/collapse/CollapsePanel.svelte +143 -73
- package/dist/collapse/CollapsePanel.svelte.d.ts +16 -7
- package/dist/collapse/CollapsePanel.svelte.d.ts.map +1 -1
- package/dist/collapse/context.d.ts +18 -32
- package/dist/collapse/context.d.ts.map +1 -1
- package/dist/collapse/index.d.ts +1 -2
- package/dist/collapse/index.d.ts.map +1 -1
- package/dist/collapse/meta.d.ts +71 -54
- package/dist/collapse/meta.d.ts.map +1 -1
- package/dist/collapse/meta.js +55 -52
- package/dist/collapsible/Collapsible.svelte +224 -0
- package/dist/collapsible/Collapsible.svelte.d.ts +35 -0
- package/dist/collapsible/Collapsible.svelte.d.ts.map +1 -0
- package/dist/collapsible/index.d.ts +3 -0
- package/dist/collapsible/index.d.ts.map +1 -0
- package/dist/collapsible/index.js +2 -0
- package/dist/collapsible/meta.d.ts +115 -0
- package/dist/collapsible/meta.d.ts.map +1 -0
- package/dist/collapsible/meta.js +89 -0
- package/dist/color-picker/ColorPicker.svelte +395 -839
- package/dist/color-picker/ColorPicker.svelte.d.ts +29 -39
- package/dist/color-picker/ColorPicker.svelte.d.ts.map +1 -1
- package/dist/color-picker/index.d.ts +1 -0
- package/dist/color-picker/index.d.ts.map +1 -1
- package/dist/color-picker/index.js +1 -0
- package/dist/color-picker/meta.d.ts +43 -90
- package/dist/color-picker/meta.d.ts.map +1 -1
- package/dist/color-picker/meta.js +49 -37
- package/dist/components.d.ts +1773 -422
- package/dist/components.json +17159 -9219
- package/dist/config-provider/ConfigProvider.svelte +186 -151
- package/dist/config-provider/ConfigProvider.svelte.d.ts +12 -44
- package/dist/config-provider/ConfigProvider.svelte.d.ts.map +1 -1
- package/dist/config-provider/context.d.ts +21 -13
- package/dist/config-provider/context.d.ts.map +1 -1
- package/dist/config-provider/index.d.ts +9 -7
- package/dist/config-provider/index.d.ts.map +1 -1
- package/dist/config-provider/index.js +21 -7
- package/dist/config-provider/meta.d.ts +30 -75
- package/dist/config-provider/meta.d.ts.map +1 -1
- package/dist/config-provider/meta.js +30 -73
- package/dist/cropper/Cropper.svelte +536 -0
- package/dist/cropper/Cropper.svelte.d.ts +47 -0
- package/dist/cropper/Cropper.svelte.d.ts.map +1 -0
- package/dist/cropper/index.d.ts +4 -0
- package/dist/cropper/index.d.ts.map +1 -0
- package/dist/cropper/index.js +2 -0
- package/dist/cropper/meta.d.ts +136 -0
- package/dist/cropper/meta.d.ts.map +1 -0
- package/dist/cropper/meta.js +97 -0
- package/dist/date-picker/DatePicker.svelte +1646 -360
- package/dist/date-picker/DatePicker.svelte.d.ts +90 -37
- package/dist/date-picker/DatePicker.svelte.d.ts.map +1 -1
- package/dist/date-picker/index.d.ts +0 -2
- package/dist/date-picker/index.d.ts.map +1 -1
- package/dist/date-picker/index.js +0 -2
- package/dist/date-picker/meta.d.ts +309 -26
- package/dist/date-picker/meta.d.ts.map +1 -1
- package/dist/date-picker/meta.js +89 -14
- package/dist/descriptions/Descriptions.svelte +213 -223
- package/dist/descriptions/Descriptions.svelte.d.ts +16 -25
- package/dist/descriptions/Descriptions.svelte.d.ts.map +1 -1
- package/dist/descriptions/DescriptionsItem.svelte +58 -28
- package/dist/descriptions/DescriptionsItem.svelte.d.ts +12 -4
- package/dist/descriptions/DescriptionsItem.svelte.d.ts.map +1 -1
- package/dist/descriptions/context.d.ts +9 -5
- package/dist/descriptions/context.d.ts.map +1 -1
- package/dist/descriptions/index.d.ts +2 -2
- package/dist/descriptions/index.d.ts.map +1 -1
- package/dist/descriptions/meta.d.ts +51 -49
- package/dist/descriptions/meta.d.ts.map +1 -1
- package/dist/descriptions/meta.js +41 -20
- package/dist/descriptions/types.d.ts +13 -3
- package/dist/descriptions/types.d.ts.map +1 -1
- package/dist/divider/Divider.svelte +86 -94
- package/dist/divider/Divider.svelte.d.ts +2 -2
- package/dist/divider/Divider.svelte.d.ts.map +1 -1
- package/dist/divider/meta.d.ts +19 -25
- package/dist/divider/meta.d.ts.map +1 -1
- package/dist/divider/meta.js +29 -11
- package/dist/drag-move/DragMove.svelte +106 -0
- package/dist/drag-move/DragMove.svelte.d.ts +30 -0
- package/dist/drag-move/DragMove.svelte.d.ts.map +1 -0
- package/dist/drag-move/index.d.ts +4 -0
- package/dist/drag-move/index.d.ts.map +1 -0
- package/dist/drag-move/index.js +3 -0
- package/dist/drag-move/meta.d.ts +102 -0
- package/dist/drag-move/meta.d.ts.map +1 -0
- package/dist/drag-move/meta.js +77 -0
- package/dist/dropdown/Dropdown.svelte +426 -344
- package/dist/dropdown/Dropdown.svelte.d.ts +55 -58
- package/dist/dropdown/Dropdown.svelte.d.ts.map +1 -1
- package/dist/dropdown/DropdownDivider.svelte +20 -8
- package/dist/dropdown/DropdownDivider.svelte.d.ts +7 -16
- package/dist/dropdown/DropdownDivider.svelte.d.ts.map +1 -1
- package/dist/dropdown/DropdownItem.svelte +163 -91
- package/dist/dropdown/DropdownItem.svelte.d.ts +25 -11
- package/dist/dropdown/DropdownItem.svelte.d.ts.map +1 -1
- package/dist/dropdown/DropdownMenu.svelte +21 -9
- package/dist/dropdown/DropdownMenu.svelte.d.ts +6 -1
- package/dist/dropdown/DropdownMenu.svelte.d.ts.map +1 -1
- package/dist/dropdown/DropdownTitle.svelte +38 -20
- package/dist/dropdown/DropdownTitle.svelte.d.ts +6 -1
- package/dist/dropdown/DropdownTitle.svelte.d.ts.map +1 -1
- package/dist/dropdown/context.d.ts +18 -6
- package/dist/dropdown/context.d.ts.map +1 -1
- package/dist/dropdown/index.d.ts +3 -6
- package/dist/dropdown/index.d.ts.map +1 -1
- package/dist/dropdown/index.js +3 -6
- package/dist/dropdown/meta.d.ts +183 -63
- package/dist/dropdown/meta.d.ts.map +1 -1
- package/dist/dropdown/meta.js +122 -73
- package/dist/dropdown/types.d.ts +39 -42
- package/dist/dropdown/types.d.ts.map +1 -1
- package/dist/dropdown/types.js +1 -12
- package/dist/empty/Empty.svelte +136 -249
- package/dist/empty/Empty.svelte.d.ts +23 -9
- package/dist/empty/Empty.svelte.d.ts.map +1 -1
- package/dist/empty/meta.d.ts +29 -18
- package/dist/empty/meta.d.ts.map +1 -1
- package/dist/empty/meta.js +21 -26
- package/dist/feedback/Feedback.svelte +330 -0
- package/dist/feedback/Feedback.svelte.d.ts +46 -0
- package/dist/feedback/Feedback.svelte.d.ts.map +1 -0
- package/dist/feedback/index.d.ts +4 -0
- package/dist/feedback/index.d.ts.map +1 -0
- package/dist/feedback/index.js +2 -0
- package/dist/feedback/meta.d.ts +105 -0
- package/dist/feedback/meta.d.ts.map +1 -0
- package/dist/feedback/meta.js +65 -0
- package/dist/float-button/FloatButton.svelte +161 -0
- package/dist/float-button/FloatButton.svelte.d.ts +5 -0
- package/dist/float-button/FloatButton.svelte.d.ts.map +1 -0
- package/dist/float-button/FloatButtonGroup.svelte +90 -0
- package/dist/float-button/FloatButtonGroup.svelte.d.ts +5 -0
- package/dist/float-button/FloatButtonGroup.svelte.d.ts.map +1 -0
- package/dist/float-button/index.d.ts +5 -0
- package/dist/float-button/index.d.ts.map +1 -0
- package/dist/float-button/index.js +3 -0
- package/dist/float-button/meta.d.ts +136 -0
- package/dist/float-button/meta.d.ts.map +1 -0
- package/dist/float-button/meta.js +104 -0
- package/dist/float-button/types.d.ts +59 -0
- package/dist/float-button/types.d.ts.map +1 -0
- package/dist/float-button/types.js +1 -0
- package/dist/form/Field.svelte +315 -192
- package/dist/form/Field.svelte.d.ts +70 -2
- package/dist/form/Field.svelte.d.ts.map +1 -1
- package/dist/form/FieldArray.svelte +115 -21
- package/dist/form/FieldArray.svelte.d.ts +21 -3
- package/dist/form/FieldArray.svelte.d.ts.map +1 -1
- package/dist/form/Form.svelte +260 -52
- package/dist/form/Form.svelte.d.ts +84 -12
- package/dist/form/Form.svelte.d.ts.map +1 -1
- package/dist/form/FormAutoComplete.svelte +52 -0
- package/dist/form/FormAutoComplete.svelte.d.ts +17 -0
- package/dist/form/FormAutoComplete.svelte.d.ts.map +1 -0
- package/dist/form/FormCascader.svelte +25 -55
- package/dist/form/FormCascader.svelte.d.ts +2 -13
- package/dist/form/FormCascader.svelte.d.ts.map +1 -1
- package/dist/form/FormCheckbox.svelte +24 -56
- package/dist/form/FormCheckbox.svelte.d.ts +2 -14
- package/dist/form/FormCheckbox.svelte.d.ts.map +1 -1
- package/dist/form/FormCheckboxGroup.svelte +48 -0
- package/dist/form/FormCheckboxGroup.svelte.d.ts +15 -0
- package/dist/form/FormCheckboxGroup.svelte.d.ts.map +1 -0
- package/dist/form/FormDatePicker.svelte +24 -53
- package/dist/form/FormDatePicker.svelte.d.ts +2 -13
- package/dist/form/FormDatePicker.svelte.d.ts.map +1 -1
- package/dist/form/FormErrorMessage.svelte +75 -29
- package/dist/form/FormErrorMessage.svelte.d.ts +17 -4
- package/dist/form/FormErrorMessage.svelte.d.ts.map +1 -1
- package/dist/form/FormInput.svelte +31 -70
- package/dist/form/FormInput.svelte.d.ts +7 -19
- package/dist/form/FormInput.svelte.d.ts.map +1 -1
- package/dist/form/FormInputGroup.svelte +146 -0
- package/dist/form/FormInputGroup.svelte.d.ts +32 -0
- package/dist/form/FormInputGroup.svelte.d.ts.map +1 -0
- package/dist/form/FormInputNumber.svelte +74 -0
- package/dist/form/FormInputNumber.svelte.d.ts +20 -0
- package/dist/form/FormInputNumber.svelte.d.ts.map +1 -0
- package/dist/form/FormLabel.svelte +133 -24
- package/dist/form/FormLabel.svelte.d.ts +17 -4
- package/dist/form/FormLabel.svelte.d.ts.map +1 -1
- package/dist/form/FormPinCode.svelte +52 -0
- package/dist/form/FormPinCode.svelte.d.ts +16 -0
- package/dist/form/FormPinCode.svelte.d.ts.map +1 -0
- package/dist/form/FormRadio.svelte +23 -55
- package/dist/form/FormRadio.svelte.d.ts +2 -14
- package/dist/form/FormRadio.svelte.d.ts.map +1 -1
- package/dist/form/FormRadioGroup.svelte +54 -0
- package/dist/form/FormRadioGroup.svelte.d.ts +16 -0
- package/dist/form/FormRadioGroup.svelte.d.ts.map +1 -0
- package/dist/form/FormRating.svelte +24 -58
- package/dist/form/FormRating.svelte.d.ts +2 -14
- package/dist/form/FormRating.svelte.d.ts.map +1 -1
- package/dist/form/FormSection.svelte +35 -25
- package/dist/form/FormSection.svelte.d.ts +3 -1
- package/dist/form/FormSection.svelte.d.ts.map +1 -1
- package/dist/form/FormSelect.svelte +44 -68
- package/dist/form/FormSelect.svelte.d.ts +5 -16
- package/dist/form/FormSelect.svelte.d.ts.map +1 -1
- package/dist/form/FormSlider.svelte +33 -65
- package/dist/form/FormSlider.svelte.d.ts +2 -14
- package/dist/form/FormSlider.svelte.d.ts.map +1 -1
- package/dist/form/FormSlot.svelte +61 -20
- package/dist/form/FormSlot.svelte.d.ts +16 -2
- package/dist/form/FormSlot.svelte.d.ts.map +1 -1
- package/dist/form/FormSwitch.svelte +27 -59
- package/dist/form/FormSwitch.svelte.d.ts +4 -15
- package/dist/form/FormSwitch.svelte.d.ts.map +1 -1
- package/dist/form/FormTagInput.svelte +24 -53
- package/dist/form/FormTagInput.svelte.d.ts +2 -13
- package/dist/form/FormTagInput.svelte.d.ts.map +1 -1
- package/dist/form/FormTextArea.svelte +66 -0
- package/dist/form/FormTextArea.svelte.d.ts +18 -0
- package/dist/form/FormTextArea.svelte.d.ts.map +1 -0
- package/dist/form/FormTimePicker.svelte +51 -0
- package/dist/form/FormTimePicker.svelte.d.ts +15 -0
- package/dist/form/FormTimePicker.svelte.d.ts.map +1 -0
- package/dist/form/FormTreeSelect.svelte +26 -57
- package/dist/form/FormTreeSelect.svelte.d.ts +3 -14
- package/dist/form/FormTreeSelect.svelte.d.ts.map +1 -1
- package/dist/form/FormUpload.svelte +22 -63
- package/dist/form/FormUpload.svelte.d.ts +3 -15
- package/dist/form/FormUpload.svelte.d.ts.map +1 -1
- package/dist/form/GroupHookPanel.svelte +21 -0
- package/dist/form/GroupHookPanel.svelte.d.ts +19 -0
- package/dist/form/GroupHookPanel.svelte.d.ts.map +1 -0
- package/dist/form/context.d.ts +0 -3
- package/dist/form/context.d.ts.map +1 -1
- package/dist/form/field-props.d.ts +84 -0
- package/dist/form/field-props.d.ts.map +1 -0
- package/dist/form/field-props.js +58 -0
- package/dist/form/hooks.d.ts +53 -0
- package/dist/form/hooks.d.ts.map +1 -0
- package/dist/form/hooks.js +36 -0
- package/dist/form/index.d.ts +57 -4
- package/dist/form/index.d.ts.map +1 -1
- package/dist/form/index.js +60 -3
- package/dist/form/input-group-context.d.ts +7 -0
- package/dist/form/input-group-context.d.ts.map +1 -0
- package/dist/form/input-group-context.js +17 -0
- package/dist/form/meta.d.ts +213 -16
- package/dist/form/meta.d.ts.map +1 -1
- package/dist/form/meta.js +103 -15
- package/dist/grid/Col.svelte +1482 -78
- package/dist/grid/Col.svelte.d.ts +3 -5
- package/dist/grid/Col.svelte.d.ts.map +1 -1
- package/dist/grid/Row.svelte +151 -69
- package/dist/grid/Row.svelte.d.ts +9 -7
- package/dist/grid/Row.svelte.d.ts.map +1 -1
- package/dist/grid/meta.d.ts +37 -28
- package/dist/grid/meta.d.ts.map +1 -1
- package/dist/grid/meta.js +31 -25
- package/dist/highlight/Highlight.svelte +46 -66
- package/dist/highlight/Highlight.svelte.d.ts +9 -22
- package/dist/highlight/Highlight.svelte.d.ts.map +1 -1
- package/dist/highlight/meta.d.ts +12 -51
- package/dist/highlight/meta.d.ts.map +1 -1
- package/dist/highlight/meta.js +16 -46
- package/dist/hotkeys/HotKeys.svelte +152 -0
- package/dist/hotkeys/HotKeys.svelte.d.ts +28 -0
- package/dist/hotkeys/HotKeys.svelte.d.ts.map +1 -0
- package/dist/hotkeys/index.d.ts +12 -0
- package/dist/hotkeys/index.d.ts.map +1 -0
- package/dist/hotkeys/index.js +8 -0
- package/dist/hotkeys/meta.d.ts +103 -0
- package/dist/hotkeys/meta.d.ts.map +1 -0
- package/dist/hotkeys/meta.js +65 -0
- package/dist/icon/index.d.ts +1 -1
- package/dist/icon/index.d.ts.map +1 -1
- package/dist/icon/index.js +1 -1
- package/dist/icon/meta.d.ts +20 -28
- package/dist/icon/meta.d.ts.map +1 -1
- package/dist/icon/meta.js +20 -20
- package/dist/iconbutton/IconButton.svelte +89 -0
- package/dist/iconbutton/IconButton.svelte.d.ts +53 -0
- package/dist/iconbutton/IconButton.svelte.d.ts.map +1 -0
- package/dist/iconbutton/index.d.ts +3 -0
- package/dist/iconbutton/index.d.ts.map +1 -0
- package/dist/iconbutton/index.js +2 -0
- package/dist/iconbutton/meta.d.ts +150 -0
- package/dist/iconbutton/meta.d.ts.map +1 -0
- package/dist/iconbutton/meta.js +53 -0
- package/dist/illustrations/IllustrationConstruction.svelte +25 -0
- package/dist/illustrations/IllustrationConstruction.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationConstruction.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationConstructionDark.svelte +25 -0
- package/dist/illustrations/IllustrationConstructionDark.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationConstructionDark.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationFailure.svelte +25 -0
- package/dist/illustrations/IllustrationFailure.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationFailure.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationFailureDark.svelte +25 -0
- package/dist/illustrations/IllustrationFailureDark.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationFailureDark.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationIdle.svelte +25 -0
- package/dist/illustrations/IllustrationIdle.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationIdle.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationIdleDark.svelte +25 -0
- package/dist/illustrations/IllustrationIdleDark.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationIdleDark.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationNoAccess.svelte +25 -0
- package/dist/illustrations/IllustrationNoAccess.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationNoAccess.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationNoAccessDark.svelte +25 -0
- package/dist/illustrations/IllustrationNoAccessDark.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationNoAccessDark.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationNoContent.svelte +25 -0
- package/dist/illustrations/IllustrationNoContent.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationNoContent.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationNoContentDark.svelte +25 -0
- package/dist/illustrations/IllustrationNoContentDark.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationNoContentDark.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationNoResult.svelte +25 -0
- package/dist/illustrations/IllustrationNoResult.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationNoResult.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationNoResultDark.svelte +25 -0
- package/dist/illustrations/IllustrationNoResultDark.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationNoResultDark.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationNotFound.svelte +25 -0
- package/dist/illustrations/IllustrationNotFound.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationNotFound.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationNotFoundDark.svelte +25 -0
- package/dist/illustrations/IllustrationNotFoundDark.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationNotFoundDark.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationSuccess.svelte +25 -0
- package/dist/illustrations/IllustrationSuccess.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationSuccess.svelte.d.ts.map +1 -0
- package/dist/illustrations/IllustrationSuccessDark.svelte +25 -0
- package/dist/illustrations/IllustrationSuccessDark.svelte.d.ts +8 -0
- package/dist/illustrations/IllustrationSuccessDark.svelte.d.ts.map +1 -0
- package/dist/illustrations/index.d.ts +22 -0
- package/dist/illustrations/index.d.ts.map +1 -0
- package/dist/illustrations/index.js +21 -0
- package/dist/image/Image.svelte +260 -283
- package/dist/image/Image.svelte.d.ts +20 -21
- package/dist/image/Image.svelte.d.ts.map +1 -1
- package/dist/image/ImagePreview.svelte +201 -297
- package/dist/image/ImagePreview.svelte.d.ts +7 -10
- package/dist/image/ImagePreview.svelte.d.ts.map +1 -1
- package/dist/image/PreviewFooter.svelte +400 -0
- package/dist/image/PreviewFooter.svelte.d.ts +62 -0
- package/dist/image/PreviewFooter.svelte.d.ts.map +1 -0
- package/dist/image/PreviewHeader.svelte +93 -0
- package/dist/image/PreviewHeader.svelte.d.ts +16 -0
- package/dist/image/PreviewHeader.svelte.d.ts.map +1 -0
- package/dist/image/PreviewImage.svelte +296 -0
- package/dist/image/PreviewImage.svelte.d.ts +26 -0
- package/dist/image/PreviewImage.svelte.d.ts.map +1 -0
- package/dist/image/PreviewInner.svelte +554 -0
- package/dist/image/PreviewInner.svelte.d.ts +58 -0
- package/dist/image/PreviewInner.svelte.d.ts.map +1 -0
- package/dist/image/download.d.ts +8 -0
- package/dist/image/download.d.ts.map +1 -0
- package/dist/image/download.js +29 -0
- package/dist/image/index.d.ts +6 -7
- package/dist/image/index.d.ts.map +1 -1
- package/dist/image/index.js +5 -5
- package/dist/image/meta.d.ts +231 -88
- package/dist/image/meta.d.ts.map +1 -1
- package/dist/image/meta.js +93 -83
- package/dist/image/previewContext.d.ts +29 -0
- package/dist/image/previewContext.d.ts.map +1 -0
- package/dist/image/previewContext.js +8 -0
- package/dist/image/previewGeometry.d.ts +70 -0
- package/dist/image/previewGeometry.d.ts.map +1 -0
- package/dist/image/previewGeometry.js +184 -0
- package/dist/image/types.d.ts +66 -0
- package/dist/image/types.d.ts.map +1 -0
- package/dist/image/types.js +1 -0
- package/dist/index.d.ts +48 -26
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +40 -22
- package/dist/input/Input.svelte +537 -320
- package/dist/input/Input.svelte.d.ts +69 -21
- package/dist/input/Input.svelte.d.ts.map +1 -1
- package/dist/input/InputGroup.svelte +188 -0
- package/dist/input/InputGroup.svelte.d.ts +35 -0
- package/dist/input/InputGroup.svelte.d.ts.map +1 -0
- package/dist/input/TextArea.svelte +788 -0
- package/dist/input/TextArea.svelte.d.ts +104 -0
- package/dist/input/TextArea.svelte.d.ts.map +1 -0
- package/dist/input/context.d.ts +13 -0
- package/dist/input/context.d.ts.map +1 -0
- package/dist/input/context.js +5 -0
- package/dist/input/index.d.ts +4 -1
- package/dist/input/index.d.ts.map +1 -1
- package/dist/input/index.js +5 -1
- package/dist/input/meta.d.ts +802 -22
- package/dist/input/meta.d.ts.map +1 -1
- package/dist/input/meta.js +196 -17
- package/dist/input-number/InputNumber.svelte +446 -427
- package/dist/input-number/InputNumber.svelte.d.ts +73 -45
- package/dist/input-number/InputNumber.svelte.d.ts.map +1 -1
- package/dist/input-number/meta.d.ts +140 -48
- package/dist/input-number/meta.d.ts.map +1 -1
- package/dist/input-number/meta.js +39 -22
- package/dist/json-viewer/JsonViewer.svelte +528 -0
- package/dist/json-viewer/JsonViewer.svelte.d.ts +43 -0
- package/dist/json-viewer/JsonViewer.svelte.d.ts.map +1 -0
- package/dist/json-viewer/index.d.ts +4 -0
- package/dist/json-viewer/index.d.ts.map +1 -0
- package/dist/json-viewer/index.js +2 -0
- package/dist/json-viewer/meta.d.ts +129 -0
- package/dist/{lottie-icon → json-viewer}/meta.d.ts.map +1 -1
- package/dist/json-viewer/meta.js +130 -0
- package/dist/json-viewer/semi-json-viewer-core.d.ts +94 -0
- package/dist/layout/Content.svelte +8 -25
- package/dist/layout/Content.svelte.d.ts +1 -3
- package/dist/layout/Content.svelte.d.ts.map +1 -1
- package/dist/layout/Footer.svelte +7 -40
- package/dist/layout/Footer.svelte.d.ts +1 -4
- package/dist/layout/Footer.svelte.d.ts.map +1 -1
- package/dist/layout/Header.svelte +7 -37
- package/dist/layout/Header.svelte.d.ts +1 -4
- package/dist/layout/Header.svelte.d.ts.map +1 -1
- package/dist/layout/Layout.svelte +30 -17
- package/dist/layout/Layout.svelte.d.ts +3 -1
- package/dist/layout/Layout.svelte.d.ts.map +1 -1
- package/dist/layout/Sider.svelte +71 -186
- package/dist/layout/Sider.svelte.d.ts +15 -19
- package/dist/layout/Sider.svelte.d.ts.map +1 -1
- package/dist/layout/meta.d.ts +28 -91
- package/dist/layout/meta.d.ts.map +1 -1
- package/dist/layout/meta.js +38 -56
- package/dist/list/List.svelte +158 -825
- package/dist/list/List.svelte.d.ts +32 -70
- package/dist/list/List.svelte.d.ts.map +1 -1
- package/dist/list/ListItem.svelte +129 -131
- package/dist/list/ListItem.svelte.d.ts +21 -12
- package/dist/list/ListItem.svelte.d.ts.map +1 -1
- package/dist/list/context.d.ts +32 -23
- package/dist/list/context.d.ts.map +1 -1
- package/dist/list/index.d.ts +3 -8
- package/dist/list/index.d.ts.map +1 -1
- package/dist/list/index.js +4 -8
- package/dist/list/meta.d.ts +110 -98
- package/dist/list/meta.d.ts.map +1 -1
- package/dist/list/meta.js +76 -58
- package/dist/lottie/Lottie.svelte +138 -0
- package/dist/lottie/Lottie.svelte.d.ts +32 -0
- package/dist/lottie/Lottie.svelte.d.ts.map +1 -0
- package/dist/lottie/index.d.ts +3 -0
- package/dist/lottie/index.d.ts.map +1 -0
- package/dist/lottie/index.js +2 -0
- package/dist/lottie/meta.d.ts +76 -0
- package/dist/lottie/meta.d.ts.map +1 -0
- package/dist/lottie/meta.js +81 -0
- package/dist/markdown-render/HastNode.svelte +66 -0
- package/dist/markdown-render/HastNode.svelte.d.ts +11 -0
- package/dist/markdown-render/HastNode.svelte.d.ts.map +1 -0
- package/dist/markdown-render/MarkdownRender.svelte +152 -0
- package/dist/markdown-render/MarkdownRender.svelte.d.ts +26 -0
- package/dist/markdown-render/MarkdownRender.svelte.d.ts.map +1 -0
- package/dist/markdown-render/components/MdCode.svelte +20 -0
- package/dist/markdown-render/components/MdCode.svelte.d.ts +9 -0
- package/dist/markdown-render/components/MdCode.svelte.d.ts.map +1 -0
- package/dist/markdown-render/components/MdHeading.svelte +29 -0
- package/dist/markdown-render/components/MdHeading.svelte.d.ts +11 -0
- package/dist/markdown-render/components/MdHeading.svelte.d.ts.map +1 -0
- package/dist/markdown-render/components/MdImage.svelte +28 -0
- package/dist/markdown-render/components/MdImage.svelte.d.ts +9 -0
- package/dist/markdown-render/components/MdImage.svelte.d.ts.map +1 -0
- package/dist/markdown-render/components/MdLink.svelte +33 -0
- package/dist/markdown-render/components/MdLink.svelte.d.ts +10 -0
- package/dist/markdown-render/components/MdLink.svelte.d.ts.map +1 -0
- package/dist/markdown-render/components/MdParagraph.svelte +19 -0
- package/dist/markdown-render/components/MdParagraph.svelte.d.ts +9 -0
- package/dist/markdown-render/components/MdParagraph.svelte.d.ts.map +1 -0
- package/dist/markdown-render/components/MdPre.svelte +48 -0
- package/dist/markdown-render/components/MdPre.svelte.d.ts +9 -0
- package/dist/markdown-render/components/MdPre.svelte.d.ts.map +1 -0
- package/dist/markdown-render/components/MdTable.svelte +53 -0
- package/dist/markdown-render/components/MdTable.svelte.d.ts +9 -0
- package/dist/markdown-render/components/MdTable.svelte.d.ts.map +1 -0
- package/dist/markdown-render/components/index.d.ts +26 -0
- package/dist/markdown-render/components/index.d.ts.map +1 -0
- package/dist/markdown-render/components/index.js +27 -0
- package/dist/markdown-render/index.d.ts +4 -0
- package/dist/markdown-render/index.d.ts.map +1 -0
- package/dist/markdown-render/index.js +2 -0
- package/dist/markdown-render/meta.d.ts +81 -0
- package/dist/markdown-render/meta.d.ts.map +1 -0
- package/dist/markdown-render/meta.js +105 -0
- package/dist/markdown-render/props.d.ts +15 -0
- package/dist/markdown-render/props.d.ts.map +1 -0
- package/dist/markdown-render/props.js +51 -0
- package/dist/modal/ConfirmModal.svelte +105 -86
- package/dist/modal/ConfirmModal.svelte.d.ts +7 -4
- package/dist/modal/ConfirmModal.svelte.d.ts.map +1 -1
- package/dist/modal/Modal.svelte +459 -343
- package/dist/modal/Modal.svelte.d.ts +71 -41
- package/dist/modal/Modal.svelte.d.ts.map +1 -1
- package/dist/modal/ModalContextHolder.svelte +22 -0
- package/dist/modal/ModalContextHolder.svelte.d.ts +8 -0
- package/dist/modal/ModalContextHolder.svelte.d.ts.map +1 -0
- package/dist/modal/command.svelte.d.ts +7 -1
- package/dist/modal/command.svelte.d.ts.map +1 -1
- package/dist/modal/command.svelte.js +1 -1
- package/dist/modal/index.d.ts +7 -1
- package/dist/modal/index.d.ts.map +1 -1
- package/dist/modal/index.js +8 -2
- package/dist/modal/meta.d.ts +149 -103
- package/dist/modal/meta.d.ts.map +1 -1
- package/dist/modal/meta.js +95 -109
- package/dist/modal/use-modal.svelte.d.ts +33 -0
- package/dist/modal/use-modal.svelte.d.ts.map +1 -0
- package/dist/modal/use-modal.svelte.js +44 -0
- package/dist/nav/Nav.svelte +329 -146
- package/dist/nav/Nav.svelte.d.ts +43 -30
- package/dist/nav/Nav.svelte.d.ts.map +1 -1
- package/dist/nav/NavCollapseButton.svelte +74 -0
- package/dist/nav/NavCollapseButton.svelte.d.ts +12 -0
- package/dist/nav/NavCollapseButton.svelte.d.ts.map +1 -0
- package/dist/nav/NavFooter.svelte +42 -47
- package/dist/nav/NavFooter.svelte.d.ts +6 -2
- package/dist/nav/NavFooter.svelte.d.ts.map +1 -1
- package/dist/nav/NavHeader.svelte +61 -12
- package/dist/nav/NavHeader.svelte.d.ts +8 -2
- package/dist/nav/NavHeader.svelte.d.ts.map +1 -1
- package/dist/nav/NavItem.svelte +21 -17
- package/dist/nav/NavItem.svelte.d.ts +12 -10
- package/dist/nav/NavItem.svelte.d.ts.map +1 -1
- package/dist/nav/NavItemRender.svelte +420 -0
- package/dist/nav/NavItemRender.svelte.d.ts +12 -0
- package/dist/nav/NavItemRender.svelte.d.ts.map +1 -0
- package/dist/nav/NavPopupNode.svelte +119 -0
- package/dist/nav/NavPopupNode.svelte.d.ts +8 -0
- package/dist/nav/NavPopupNode.svelte.d.ts.map +1 -0
- package/dist/nav/NavSub.svelte +44 -6
- package/dist/nav/NavSub.svelte.d.ts +20 -4
- package/dist/nav/NavSub.svelte.d.ts.map +1 -1
- package/dist/nav/NavSubPopup.svelte +90 -0
- package/dist/nav/NavSubPopup.svelte.d.ts +14 -0
- package/dist/nav/NavSubPopup.svelte.d.ts.map +1 -0
- package/dist/nav/context.d.ts +57 -8
- package/dist/nav/context.d.ts.map +1 -1
- package/dist/nav/context.js +6 -2
- package/dist/nav/index.d.ts +1 -1
- package/dist/nav/index.d.ts.map +1 -1
- package/dist/nav/meta.d.ts +131 -52
- package/dist/nav/meta.d.ts.map +1 -1
- package/dist/nav/meta.js +70 -29
- package/dist/nav/types.d.ts +89 -22
- package/dist/nav/types.d.ts.map +1 -1
- package/dist/nav/types.js +47 -26
- package/dist/notification/NotificationContainer.svelte +131 -119
- package/dist/notification/NotificationContainer.svelte.d.ts.map +1 -1
- package/dist/notification/NotificationHolder.svelte +18 -0
- package/dist/notification/NotificationHolder.svelte.d.ts +8 -0
- package/dist/notification/NotificationHolder.svelte.d.ts.map +1 -0
- package/dist/notification/NotificationItem.svelte +235 -289
- package/dist/notification/NotificationItem.svelte.d.ts +1 -5
- package/dist/notification/NotificationItem.svelte.d.ts.map +1 -1
- package/dist/notification/index.d.ts +3 -2
- package/dist/notification/index.d.ts.map +1 -1
- package/dist/notification/index.js +2 -1
- package/dist/notification/meta.d.ts +73 -50
- package/dist/notification/meta.d.ts.map +1 -1
- package/dist/notification/meta.js +85 -74
- package/dist/notification/store.d.ts +59 -44
- package/dist/notification/store.d.ts.map +1 -1
- package/dist/notification/store.js +68 -74
- package/dist/overflow-list/OverflowList.svelte +366 -470
- package/dist/overflow-list/OverflowList.svelte.d.ts +37 -40
- package/dist/overflow-list/OverflowList.svelte.d.ts.map +1 -1
- package/dist/overflow-list/meta.d.ts +71 -71
- package/dist/overflow-list/meta.d.ts.map +1 -1
- package/dist/overflow-list/meta.js +63 -78
- package/dist/pagination/Pagination.svelte +454 -251
- package/dist/pagination/Pagination.svelte.d.ts +38 -39
- package/dist/pagination/Pagination.svelte.d.ts.map +1 -1
- package/dist/pagination/meta.d.ts +75 -83
- package/dist/pagination/meta.d.ts.map +1 -1
- package/dist/pagination/meta.js +78 -57
- package/dist/pincode/PinCode.svelte +348 -0
- package/dist/pincode/PinCode.svelte.d.ts +47 -0
- package/dist/pincode/PinCode.svelte.d.ts.map +1 -0
- package/dist/pincode/index.d.ts +3 -0
- package/dist/pincode/index.d.ts.map +1 -0
- package/dist/pincode/index.js +2 -0
- package/dist/pincode/meta.d.ts +147 -0
- package/dist/pincode/meta.d.ts.map +1 -0
- package/dist/pincode/meta.js +91 -0
- package/dist/popconfirm/Popconfirm.svelte +313 -599
- package/dist/popconfirm/Popconfirm.svelte.d.ts +65 -68
- package/dist/popconfirm/Popconfirm.svelte.d.ts.map +1 -1
- package/dist/popconfirm/meta.d.ts +85 -161
- package/dist/popconfirm/meta.d.ts.map +1 -1
- package/dist/popconfirm/meta.js +68 -185
- package/dist/popover/Popover.svelte +342 -564
- package/dist/popover/Popover.svelte.d.ts +82 -52
- package/dist/popover/Popover.svelte.d.ts.map +1 -1
- package/dist/popover/meta.d.ts +102 -74
- package/dist/popover/meta.d.ts.map +1 -1
- package/dist/popover/meta.js +103 -62
- package/dist/progress/Progress.svelte +248 -309
- package/dist/progress/Progress.svelte.d.ts +19 -27
- package/dist/progress/Progress.svelte.d.ts.map +1 -1
- package/dist/progress/index.d.ts +1 -1
- package/dist/progress/index.d.ts.map +1 -1
- package/dist/progress/meta.d.ts +70 -62
- package/dist/progress/meta.d.ts.map +1 -1
- package/dist/progress/meta.js +68 -77
- package/dist/radio/Radio.svelte +451 -239
- package/dist/radio/Radio.svelte.d.ts +13 -7
- package/dist/radio/Radio.svelte.d.ts.map +1 -1
- package/dist/radio/RadioGroup.svelte +152 -121
- package/dist/radio/RadioGroup.svelte.d.ts +27 -6
- package/dist/radio/RadioGroup.svelte.d.ts.map +1 -1
- package/dist/radio/context.d.ts +23 -18
- package/dist/radio/context.d.ts.map +1 -1
- package/dist/radio/index.d.ts +1 -1
- package/dist/radio/index.d.ts.map +1 -1
- package/dist/radio/meta.d.ts +62 -23
- package/dist/radio/meta.d.ts.map +1 -1
- package/dist/radio/meta.js +60 -17
- package/dist/rating/Rating.svelte +358 -275
- package/dist/rating/Rating.svelte.d.ts +25 -18
- package/dist/rating/Rating.svelte.d.ts.map +1 -1
- package/dist/rating/meta.d.ts +73 -40
- package/dist/rating/meta.d.ts.map +1 -1
- package/dist/rating/meta.js +55 -28
- package/dist/resizable/Resizable.svelte +354 -0
- package/dist/resizable/Resizable.svelte.d.ts +61 -0
- package/dist/resizable/Resizable.svelte.d.ts.map +1 -0
- package/dist/resizable/ResizeGroup.svelte +308 -0
- package/dist/resizable/ResizeGroup.svelte.d.ts +13 -0
- package/dist/resizable/ResizeGroup.svelte.d.ts.map +1 -0
- package/dist/resizable/ResizeHandler.svelte +87 -0
- package/dist/resizable/ResizeHandler.svelte.d.ts +13 -0
- package/dist/resizable/ResizeHandler.svelte.d.ts.map +1 -0
- package/dist/resizable/ResizeItem.svelte +103 -0
- package/dist/resizable/ResizeItem.svelte.d.ts +20 -0
- package/dist/resizable/ResizeItem.svelte.d.ts.map +1 -0
- package/dist/resizable/context.d.ts +39 -0
- package/dist/resizable/context.d.ts.map +1 -0
- package/dist/resizable/context.js +1 -0
- package/dist/resizable/index.d.ts +8 -0
- package/dist/resizable/index.d.ts.map +1 -0
- package/dist/resizable/index.js +7 -0
- package/dist/resizable/meta.d.ts +243 -0
- package/dist/resizable/meta.d.ts.map +1 -0
- package/dist/resizable/meta.js +90 -0
- package/dist/resize-observer/ResizeObserver.svelte +12 -0
- package/dist/resize-observer/ResizeObserver.svelte.d.ts +7 -0
- package/dist/resize-observer/ResizeObserver.svelte.d.ts.map +1 -1
- package/dist/resize-observer/meta.d.ts +5 -0
- package/dist/resize-observer/meta.d.ts.map +1 -1
- package/dist/resize-observer/meta.js +6 -0
- package/dist/scroll-list/ScrollItem.svelte +612 -0
- package/dist/scroll-list/ScrollItem.svelte.d.ts +29 -0
- package/dist/scroll-list/ScrollItem.svelte.d.ts.map +1 -0
- package/dist/scroll-list/ScrollList.svelte +78 -227
- package/dist/scroll-list/ScrollList.svelte.d.ts +12 -41
- package/dist/scroll-list/ScrollList.svelte.d.ts.map +1 -1
- package/dist/scroll-list/index.d.ts +2 -2
- package/dist/scroll-list/index.d.ts.map +1 -1
- package/dist/scroll-list/index.js +1 -0
- package/dist/scroll-list/meta.d.ts +96 -101
- package/dist/scroll-list/meta.d.ts.map +1 -1
- package/dist/scroll-list/meta.js +84 -65
- package/dist/scroll-list/types.d.ts +2 -16
- package/dist/scroll-list/types.d.ts.map +1 -1
- package/dist/select/Select.svelte +683 -232
- package/dist/select/Select.svelte.d.ts +170 -37
- package/dist/select/Select.svelte.d.ts.map +1 -1
- package/dist/select/meta.d.ts +186 -40
- package/dist/select/meta.d.ts.map +1 -1
- package/dist/select/meta.js +54 -20
- package/dist/side-sheet/SideSheet.svelte +541 -500
- package/dist/side-sheet/SideSheet.svelte.d.ts +36 -49
- package/dist/side-sheet/SideSheet.svelte.d.ts.map +1 -1
- package/dist/side-sheet/meta.d.ts +77 -112
- package/dist/side-sheet/meta.d.ts.map +1 -1
- package/dist/side-sheet/meta.js +71 -71
- package/dist/sidebar/SideBar.svelte +168 -0
- package/dist/sidebar/SideBar.svelte.d.ts +28 -0
- package/dist/sidebar/SideBar.svelte.d.ts.map +1 -0
- package/dist/sidebar/SideBarAnnotation.svelte +453 -0
- package/dist/sidebar/SideBarAnnotation.svelte.d.ts +47 -0
- package/dist/sidebar/SideBarAnnotation.svelte.d.ts.map +1 -0
- package/dist/sidebar/SideBarCodeContent.svelte +201 -0
- package/dist/sidebar/SideBarCodeContent.svelte.d.ts +42 -0
- package/dist/sidebar/SideBarCodeContent.svelte.d.ts.map +1 -0
- package/dist/sidebar/SideBarContainer.svelte +478 -0
- package/dist/sidebar/SideBarContainer.svelte.d.ts +38 -0
- package/dist/sidebar/SideBarContainer.svelte.d.ts.map +1 -0
- package/dist/sidebar/SideBarFileContent.svelte +192 -0
- package/dist/sidebar/SideBarFileContent.svelte.d.ts +40 -0
- package/dist/sidebar/SideBarFileContent.svelte.d.ts.map +1 -0
- package/dist/sidebar/SideBarFileItem.svelte +311 -0
- package/dist/sidebar/SideBarFileItem.svelte.d.ts +21 -0
- package/dist/sidebar/SideBarFileItem.svelte.d.ts.map +1 -0
- package/dist/sidebar/SideBarImageUploadNode.svelte +103 -0
- package/dist/sidebar/SideBarImageUploadNode.svelte.d.ts +5 -0
- package/dist/sidebar/SideBarImageUploadNode.svelte.d.ts.map +1 -0
- package/dist/sidebar/SideBarMcpConfigure.svelte +544 -0
- package/dist/sidebar/SideBarMcpConfigure.svelte.d.ts +60 -0
- package/dist/sidebar/SideBarMcpConfigure.svelte.d.ts.map +1 -0
- package/dist/sidebar/SideBarOptions.svelte +137 -0
- package/dist/sidebar/SideBarOptions.svelte.d.ts +10 -0
- package/dist/sidebar/SideBarOptions.svelte.d.ts.map +1 -0
- package/dist/sidebar/file-extensions.d.ts +37 -0
- package/dist/sidebar/file-extensions.d.ts.map +1 -0
- package/dist/sidebar/file-extensions.js +45 -0
- package/dist/sidebar/index.d.ts +14 -0
- package/dist/sidebar/index.d.ts.map +1 -0
- package/dist/sidebar/index.js +9 -0
- package/dist/sidebar/meta.d.ts +373 -0
- package/dist/sidebar/meta.d.ts.map +1 -0
- package/dist/sidebar/meta.js +219 -0
- package/dist/sidebar/types.d.ts +70 -0
- package/dist/sidebar/types.d.ts.map +1 -0
- package/dist/sidebar/types.js +1 -0
- package/dist/skeleton/Skeleton.svelte +129 -97
- package/dist/skeleton/Skeleton.svelte.d.ts +7 -2
- package/dist/skeleton/Skeleton.svelte.d.ts.map +1 -1
- package/dist/skeleton/SkeletonAvatar.svelte +25 -68
- package/dist/skeleton/SkeletonAvatar.svelte.d.ts +6 -2
- package/dist/skeleton/SkeletonAvatar.svelte.d.ts.map +1 -1
- package/dist/skeleton/SkeletonButton.svelte +6 -77
- package/dist/skeleton/SkeletonButton.svelte.d.ts +0 -4
- package/dist/skeleton/SkeletonButton.svelte.d.ts.map +1 -1
- package/dist/skeleton/SkeletonImage.svelte +6 -87
- package/dist/skeleton/SkeletonImage.svelte.d.ts +0 -3
- package/dist/skeleton/SkeletonImage.svelte.d.ts.map +1 -1
- package/dist/skeleton/SkeletonParagraph.svelte +10 -87
- package/dist/skeleton/SkeletonParagraph.svelte.d.ts +1 -1
- package/dist/skeleton/SkeletonParagraph.svelte.d.ts.map +1 -1
- package/dist/skeleton/SkeletonTitle.svelte +6 -61
- package/dist/skeleton/SkeletonTitle.svelte.d.ts +0 -2
- package/dist/skeleton/SkeletonTitle.svelte.d.ts.map +1 -1
- package/dist/skeleton/index.d.ts +1 -1
- package/dist/skeleton/index.d.ts.map +1 -1
- package/dist/skeleton/meta.d.ts +99 -23
- package/dist/skeleton/meta.d.ts.map +1 -1
- package/dist/skeleton/meta.js +70 -28
- package/dist/slider/Slider.svelte +418 -419
- package/dist/slider/Slider.svelte.d.ts +45 -54
- package/dist/slider/Slider.svelte.d.ts.map +1 -1
- package/dist/slider/meta.d.ts +49 -87
- package/dist/slider/meta.d.ts.map +1 -1
- package/dist/slider/meta.js +50 -26
- package/dist/space/Space.svelte +97 -49
- package/dist/space/Space.svelte.d.ts +17 -4
- package/dist/space/Space.svelte.d.ts.map +1 -1
- package/dist/space/meta.d.ts +30 -17
- package/dist/space/meta.d.ts.map +1 -1
- package/dist/space/meta.js +29 -12
- package/dist/spin/Spin.svelte +160 -195
- package/dist/spin/Spin.svelte.d.ts +8 -12
- package/dist/spin/Spin.svelte.d.ts.map +1 -1
- package/dist/spin/meta.d.ts +36 -53
- package/dist/spin/meta.d.ts.map +1 -1
- package/dist/spin/meta.js +27 -47
- package/dist/steps/Step.svelte +236 -0
- package/dist/steps/Step.svelte.d.ts +5 -0
- package/dist/steps/Step.svelte.d.ts.map +1 -0
- package/dist/steps/Steps.svelte +521 -274
- package/dist/steps/Steps.svelte.d.ts +14 -22
- package/dist/steps/Steps.svelte.d.ts.map +1 -1
- package/dist/steps/context.d.ts +41 -0
- package/dist/steps/context.d.ts.map +1 -0
- package/dist/steps/context.js +8 -0
- package/dist/steps/index.d.ts +8 -2
- package/dist/steps/index.d.ts.map +1 -1
- package/dist/steps/index.js +5 -1
- package/dist/steps/meta.d.ts +67 -42
- package/dist/steps/meta.d.ts.map +1 -1
- package/dist/steps/meta.js +169 -25
- package/dist/steps/types.d.ts +30 -7
- package/dist/steps/types.d.ts.map +1 -1
- package/dist/switch/Switch.svelte +224 -205
- package/dist/switch/Switch.svelte.d.ts +22 -43
- package/dist/switch/Switch.svelte.d.ts.map +1 -1
- package/dist/switch/meta.d.ts +44 -51
- package/dist/switch/meta.d.ts.map +1 -1
- package/dist/switch/meta.js +68 -27
- package/dist/table/Table.svelte +1065 -600
- package/dist/table/Table.svelte.d.ts +95 -1
- package/dist/table/Table.svelte.d.ts.map +1 -1
- package/dist/table/meta.d.ts +221 -2
- package/dist/table/meta.d.ts.map +1 -1
- package/dist/table/meta.js +119 -18
- package/dist/table/types.d.ts +36 -6
- package/dist/table/types.d.ts.map +1 -1
- package/dist/tabs/TabPane.svelte +4 -1
- package/dist/tabs/TabPane.svelte.d.ts +2 -0
- package/dist/tabs/TabPane.svelte.d.ts.map +1 -1
- package/dist/tabs/Tabs.svelte +453 -280
- package/dist/tabs/Tabs.svelte.d.ts +41 -32
- package/dist/tabs/Tabs.svelte.d.ts.map +1 -1
- package/dist/tabs/context.d.ts +3 -0
- package/dist/tabs/context.d.ts.map +1 -1
- package/dist/tabs/meta.d.ts +43 -47
- package/dist/tabs/meta.d.ts.map +1 -1
- package/dist/tabs/meta.js +76 -47
- package/dist/tabs/types.d.ts +3 -0
- package/dist/tabs/types.d.ts.map +1 -1
- package/dist/tag/SplitTagGroup.svelte +62 -0
- package/dist/tag/SplitTagGroup.svelte.d.ts +15 -0
- package/dist/tag/SplitTagGroup.svelte.d.ts.map +1 -0
- package/dist/tag/Tag.svelte +394 -261
- package/dist/tag/Tag.svelte.d.ts +40 -23
- package/dist/tag/Tag.svelte.d.ts.map +1 -1
- package/dist/tag/TagGroup.svelte +208 -0
- package/dist/tag/TagGroup.svelte.d.ts +56 -0
- package/dist/tag/TagGroup.svelte.d.ts.map +1 -0
- package/dist/tag/index.d.ts +2 -0
- package/dist/tag/index.d.ts.map +1 -1
- package/dist/tag/index.js +4 -0
- package/dist/tag/meta.d.ts +157 -51
- package/dist/tag/meta.d.ts.map +1 -1
- package/dist/tag/meta.js +82 -45
- package/dist/tag-input/TagInput.svelte +575 -261
- package/dist/tag-input/TagInput.svelte.d.ts +52 -17
- package/dist/tag-input/TagInput.svelte.d.ts.map +1 -1
- package/dist/tag-input/meta.d.ts +132 -20
- package/dist/tag-input/meta.d.ts.map +1 -1
- package/dist/tag-input/meta.js +49 -21
- package/dist/tag-input/split.d.ts +8 -0
- package/dist/tag-input/split.d.ts.map +1 -0
- package/dist/tag-input/split.js +22 -0
- package/dist/time-picker/TimePicker.svelte +504 -722
- package/dist/time-picker/TimePicker.svelte.d.ts +67 -47
- package/dist/time-picker/TimePicker.svelte.d.ts.map +1 -1
- package/dist/time-picker/meta.d.ts +201 -19
- package/dist/time-picker/meta.d.ts.map +1 -1
- package/dist/time-picker/meta.js +73 -16
- package/dist/timeline/Timeline.svelte +212 -548
- package/dist/timeline/Timeline.svelte.d.ts +9 -22
- package/dist/timeline/Timeline.svelte.d.ts.map +1 -1
- package/dist/timeline/TimelineItem.svelte +101 -143
- package/dist/timeline/TimelineItem.svelte.d.ts +20 -20
- package/dist/timeline/TimelineItem.svelte.d.ts.map +1 -1
- package/dist/timeline/context.d.ts +8 -12
- package/dist/timeline/context.d.ts.map +1 -1
- package/dist/timeline/index.d.ts +2 -2
- package/dist/timeline/index.d.ts.map +1 -1
- package/dist/timeline/meta.d.ts +59 -95
- package/dist/timeline/meta.d.ts.map +1 -1
- package/dist/timeline/meta.js +81 -86
- package/dist/timeline/types.d.ts +16 -5
- package/dist/timeline/types.d.ts.map +1 -1
- package/dist/toast/ToastContainer.svelte +111 -125
- package/dist/toast/ToastContainer.svelte.d.ts +3 -0
- package/dist/toast/ToastContainer.svelte.d.ts.map +1 -1
- package/dist/toast/ToastHolder.svelte +18 -0
- package/dist/toast/ToastHolder.svelte.d.ts +8 -0
- package/dist/toast/ToastHolder.svelte.d.ts.map +1 -0
- package/dist/toast/ToastItem.svelte +209 -191
- package/dist/toast/ToastItem.svelte.d.ts +7 -0
- package/dist/toast/ToastItem.svelte.d.ts.map +1 -1
- package/dist/toast/index.d.ts +3 -2
- package/dist/toast/index.d.ts.map +1 -1
- package/dist/toast/index.js +2 -1
- package/dist/toast/meta.d.ts +84 -53
- package/dist/toast/meta.d.ts.map +1 -1
- package/dist/toast/meta.js +69 -62
- package/dist/toast/store.d.ts +79 -51
- package/dist/toast/store.d.ts.map +1 -1
- package/dist/toast/store.js +179 -116
- package/dist/tooltip/Tooltip.svelte +533 -203
- package/dist/tooltip/Tooltip.svelte.d.ts +90 -20
- package/dist/tooltip/Tooltip.svelte.d.ts.map +1 -1
- package/dist/tooltip/index.d.ts +1 -0
- package/dist/tooltip/index.d.ts.map +1 -1
- package/dist/tooltip/index.js +1 -0
- package/dist/tooltip/meta.d.ts +131 -34
- package/dist/tooltip/meta.d.ts.map +1 -1
- package/dist/tooltip/meta.js +92 -28
- package/dist/tooltip/placement.d.ts +21 -1
- package/dist/tooltip/placement.d.ts.map +1 -1
- package/dist/tooltip/placement.js +57 -1
- package/dist/transfer/Transfer.svelte +686 -1100
- package/dist/transfer/Transfer.svelte.d.ts +68 -73
- package/dist/transfer/Transfer.svelte.d.ts.map +1 -1
- package/dist/transfer/meta.d.ts +44 -65
- package/dist/transfer/meta.d.ts.map +1 -1
- package/dist/transfer/meta.js +76 -31
- package/dist/transfer/types.d.ts +5 -0
- package/dist/transfer/types.d.ts.map +1 -1
- package/dist/tree/Tree.svelte +973 -422
- package/dist/tree/Tree.svelte.d.ts +291 -72
- package/dist/tree/Tree.svelte.d.ts.map +1 -1
- package/dist/tree/meta.d.ts +246 -79
- package/dist/tree/meta.d.ts.map +1 -1
- package/dist/tree/meta.js +238 -58
- package/dist/tree-select/TreeSelect.svelte +591 -240
- package/dist/tree-select/TreeSelect.svelte.d.ts +88 -54
- package/dist/tree-select/TreeSelect.svelte.d.ts.map +1 -1
- package/dist/tree-select/meta.d.ts +344 -57
- package/dist/tree-select/meta.d.ts.map +1 -1
- package/dist/tree-select/meta.js +80 -26
- package/dist/tree-select/types.d.ts +2 -0
- package/dist/tree-select/types.d.ts.map +1 -1
- package/dist/typography/Numeral.svelte +117 -0
- package/dist/typography/Numeral.svelte.d.ts +35 -0
- package/dist/typography/Numeral.svelte.d.ts.map +1 -0
- package/dist/typography/Paragraph.svelte +20 -34
- package/dist/typography/Paragraph.svelte.d.ts +8 -13
- package/dist/typography/Paragraph.svelte.d.ts.map +1 -1
- package/dist/typography/Text.svelte +22 -33
- package/dist/typography/Text.svelte.d.ts +11 -13
- package/dist/typography/Text.svelte.d.ts.map +1 -1
- package/dist/typography/Title.svelte +23 -28
- package/dist/typography/Title.svelte.d.ts +10 -11
- package/dist/typography/Title.svelte.d.ts.map +1 -1
- package/dist/typography/TypographyBase.svelte +534 -479
- package/dist/typography/TypographyBase.svelte.d.ts +44 -29
- package/dist/typography/TypographyBase.svelte.d.ts.map +1 -1
- package/dist/typography/index.d.ts +3 -3
- package/dist/typography/index.d.ts.map +1 -1
- package/dist/typography/index.js +3 -3
- package/dist/typography/meta.d.ts +190 -185
- package/dist/typography/meta.d.ts.map +1 -1
- package/dist/typography/meta.js +112 -85
- package/dist/upload/FileCard.svelte +634 -0
- package/dist/upload/FileCard.svelte.d.ts +40 -0
- package/dist/upload/FileCard.svelte.d.ts.map +1 -0
- package/dist/upload/Upload.svelte +1112 -650
- package/dist/upload/Upload.svelte.d.ts +118 -66
- package/dist/upload/Upload.svelte.d.ts.map +1 -1
- package/dist/upload/index.d.ts +2 -1
- package/dist/upload/index.d.ts.map +1 -1
- package/dist/upload/index.js +1 -0
- package/dist/upload/meta.d.ts +231 -72
- package/dist/upload/meta.d.ts.map +1 -1
- package/dist/upload/meta.js +84 -42
- package/dist/upload/types.d.ts +137 -3
- package/dist/upload/types.d.ts.map +1 -1
- package/dist/user-guide/UserGuide.svelte +655 -0
- package/dist/user-guide/UserGuide.svelte.d.ts +75 -0
- package/dist/user-guide/UserGuide.svelte.d.ts.map +1 -0
- package/dist/user-guide/index.d.ts +4 -0
- package/dist/user-guide/index.d.ts.map +1 -0
- package/dist/user-guide/index.js +2 -0
- package/dist/user-guide/meta.d.ts +162 -0
- package/dist/user-guide/meta.d.ts.map +1 -0
- package/dist/user-guide/meta.js +60 -0
- package/dist/video-player/ErrorSvg.svelte +15 -0
- package/dist/video-player/ErrorSvg.svelte.d.ts +19 -0
- package/dist/video-player/ErrorSvg.svelte.d.ts.map +1 -0
- package/dist/video-player/VideoPlayer.svelte +769 -0
- package/dist/video-player/VideoPlayer.svelte.d.ts +43 -0
- package/dist/video-player/VideoPlayer.svelte.d.ts.map +1 -0
- package/dist/video-player/VideoProgress.svelte +267 -0
- package/dist/video-player/VideoProgress.svelte.d.ts +18 -0
- package/dist/video-player/VideoProgress.svelte.d.ts.map +1 -0
- package/dist/video-player/index.d.ts +4 -0
- package/dist/video-player/index.d.ts.map +1 -0
- package/dist/video-player/index.js +2 -0
- package/dist/video-player/meta.d.ts +200 -0
- package/dist/video-player/meta.d.ts.map +1 -0
- package/dist/video-player/meta.js +159 -0
- package/package.json +29 -4
- package/dist/collapse/types.d.ts +0 -6
- package/dist/collapse/types.d.ts.map +0 -1
- package/dist/date-picker/RangePicker.svelte +0 -775
- package/dist/date-picker/RangePicker.svelte.d.ts +0 -38
- package/dist/date-picker/RangePicker.svelte.d.ts.map +0 -1
- package/dist/date-picker/range-meta.d.ts +0 -100
- package/dist/date-picker/range-meta.d.ts.map +0 -1
- package/dist/date-picker/range-meta.js +0 -43
- package/dist/drawer/Drawer.svelte +0 -554
- package/dist/drawer/Drawer.svelte.d.ts +0 -54
- package/dist/drawer/Drawer.svelte.d.ts.map +0 -1
- package/dist/drawer/index.d.ts +0 -3
- package/dist/drawer/index.d.ts.map +0 -1
- package/dist/drawer/index.js +0 -2
- package/dist/drawer/meta.d.ts +0 -147
- package/dist/drawer/meta.d.ts.map +0 -1
- package/dist/drawer/meta.js +0 -126
- package/dist/dropdown/DropdownItemNode.svelte +0 -355
- package/dist/dropdown/DropdownItemNode.svelte.d.ts +0 -14
- package/dist/dropdown/DropdownItemNode.svelte.d.ts.map +0 -1
- package/dist/dropdown/DropdownSubMenu.svelte +0 -212
- package/dist/dropdown/DropdownSubMenu.svelte.d.ts +0 -15
- package/dist/dropdown/DropdownSubMenu.svelte.d.ts.map +0 -1
- package/dist/grid/use-breakpoint.svelte.d.ts +0 -13
- package/dist/grid/use-breakpoint.svelte.d.ts.map +0 -1
- package/dist/grid/use-breakpoint.svelte.js +0 -41
- package/dist/icon/Icon.svelte +0 -156
- package/dist/icon/Icon.svelte.d.ts +0 -23
- package/dist/icon/Icon.svelte.d.ts.map +0 -1
- package/dist/image/ImagePreviewGroup.svelte +0 -93
- package/dist/image/ImagePreviewGroup.svelte.d.ts +0 -14
- package/dist/image/ImagePreviewGroup.svelte.d.ts.map +0 -1
- package/dist/image/context.d.ts +0 -16
- package/dist/image/context.d.ts.map +0 -1
- package/dist/image/context.js +0 -8
- package/dist/list/ListMeta.svelte +0 -73
- package/dist/list/ListMeta.svelte.d.ts +0 -14
- package/dist/list/ListMeta.svelte.d.ts.map +0 -1
- package/dist/lottie-icon/LottieIcon.svelte +0 -330
- package/dist/lottie-icon/LottieIcon.svelte.d.ts +0 -44
- package/dist/lottie-icon/LottieIcon.svelte.d.ts.map +0 -1
- package/dist/lottie-icon/index.d.ts +0 -4
- package/dist/lottie-icon/index.d.ts.map +0 -1
- package/dist/lottie-icon/index.js +0 -2
- package/dist/lottie-icon/meta.d.ts +0 -147
- package/dist/lottie-icon/meta.js +0 -161
- package/dist/menu/Menu.svelte +0 -843
- package/dist/menu/Menu.svelte.d.ts +0 -95
- package/dist/menu/Menu.svelte.d.ts.map +0 -1
- package/dist/menu/MenuPopupNode.svelte +0 -525
- package/dist/menu/MenuPopupNode.svelte.d.ts +0 -52
- package/dist/menu/MenuPopupNode.svelte.d.ts.map +0 -1
- package/dist/menu/index.d.ts +0 -5
- package/dist/menu/index.d.ts.map +0 -1
- package/dist/menu/index.js +0 -3
- package/dist/menu/meta.d.ts +0 -147
- package/dist/menu/meta.d.ts.map +0 -1
- package/dist/menu/meta.js +0 -141
- package/dist/menu/types.d.ts +0 -88
- package/dist/menu/types.d.ts.map +0 -1
- package/dist/menu/types.js +0 -34
- package/dist/scroll-list/ScrollColumn.svelte +0 -592
- package/dist/scroll-list/ScrollColumn.svelte.d.ts +0 -34
- package/dist/scroll-list/ScrollColumn.svelte.d.ts.map +0 -1
- package/dist/skeleton/context.d.ts +0 -10
- package/dist/skeleton/context.d.ts.map +0 -1
- package/dist/skeleton/context.js +0 -1
- package/dist/textarea/TextArea.svelte +0 -420
- package/dist/textarea/TextArea.svelte.d.ts +0 -69
- package/dist/textarea/TextArea.svelte.d.ts.map +0 -1
- package/dist/textarea/index.d.ts +0 -3
- package/dist/textarea/index.d.ts.map +0 -1
- package/dist/textarea/index.js +0 -2
- package/dist/textarea/meta.d.ts +0 -170
- package/dist/textarea/meta.d.ts.map +0 -1
- package/dist/textarea/meta.js +0 -104
- package/dist/toast/live-region.d.ts +0 -21
- package/dist/toast/live-region.d.ts.map +0 -1
- package/dist/toast/live-region.js +0 -57
- package/dist/typography/Link.svelte +0 -120
- package/dist/typography/Link.svelte.d.ts +0 -35
- package/dist/typography/Link.svelte.d.ts.map +0 -1
- /package/dist/{collapse/types.js → ai-chat-dialogue/render-config.js} +0 -0
package/dist/input/meta.d.ts
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Machine-readable component metadata for AI/docs consumption.
|
|
3
3
|
* See specs/00-foundation/ai-friendly.spec.md.
|
|
4
|
+
* 严格对齐 Semi Design(semi-ui/input):props / DOM / token 全部镜像 Semi。
|
|
4
5
|
*/
|
|
5
6
|
export declare const meta: {
|
|
6
7
|
readonly name: "Input";
|
|
7
8
|
readonly category: "input";
|
|
8
|
-
readonly
|
|
9
|
+
readonly semiEquivalent: "Input";
|
|
10
|
+
readonly description: "单行文本录入框,支持前后缀、前后置标签、清除、密码显隐与 IME。严格对齐 Semi。配套 TextArea(多行)与 InputGroup(组合),对齐 Semi 同页三组件(Input / TextArea / InputGroup 均为顶层导出)。";
|
|
11
|
+
readonly exports: readonly ["Input", "TextArea", "InputGroup"];
|
|
9
12
|
readonly props: readonly [{
|
|
10
13
|
readonly name: "value";
|
|
11
14
|
readonly type: "string";
|
|
@@ -19,7 +22,7 @@ export declare const meta: {
|
|
|
19
22
|
}, {
|
|
20
23
|
readonly name: "size";
|
|
21
24
|
readonly type: "'small'|'default'|'large'";
|
|
22
|
-
readonly default: "default";
|
|
25
|
+
readonly default: "'default'";
|
|
23
26
|
}, {
|
|
24
27
|
readonly name: "disabled";
|
|
25
28
|
readonly type: "boolean";
|
|
@@ -33,33 +36,115 @@ export declare const meta: {
|
|
|
33
36
|
readonly type: "string";
|
|
34
37
|
readonly default: "undefined";
|
|
35
38
|
}, {
|
|
36
|
-
readonly name: "
|
|
37
|
-
readonly type: "boolean";
|
|
38
|
-
readonly default: "false";
|
|
39
|
-
}, {
|
|
40
|
-
readonly name: "showCount";
|
|
39
|
+
readonly name: "showClear";
|
|
41
40
|
readonly type: "boolean";
|
|
42
41
|
readonly default: "false";
|
|
42
|
+
readonly desc: "有内容且 hover/focus 时展示清除按钮(对齐 Semi showClear)";
|
|
43
43
|
}, {
|
|
44
44
|
readonly name: "maxLength";
|
|
45
45
|
readonly type: "number";
|
|
46
46
|
readonly default: "undefined";
|
|
47
|
+
readonly desc: "原生 maxlength(getValueLength 存在时不下发,改由 JS 按可见长度截断)";
|
|
47
48
|
}, {
|
|
48
|
-
readonly name: "
|
|
49
|
-
readonly type: "
|
|
50
|
-
readonly default: "
|
|
49
|
+
readonly name: "minLength";
|
|
50
|
+
readonly type: "number";
|
|
51
|
+
readonly default: "undefined";
|
|
52
|
+
readonly desc: "最小长度,下发原生 minlength 触发校验(getValueLength 存在时按可见长度换算,对齐 Semi)";
|
|
53
|
+
}, {
|
|
54
|
+
readonly name: "validateStatus";
|
|
55
|
+
readonly type: "'default'|'warning'|'error'|'success'";
|
|
56
|
+
readonly default: "'default'";
|
|
57
|
+
readonly desc: "校验状态,仅影响展示样式(对齐 Semi validateStatus;success 合法但无特殊样式)";
|
|
58
|
+
}, {
|
|
59
|
+
readonly name: "mode";
|
|
60
|
+
readonly type: "'password'";
|
|
61
|
+
readonly default: "undefined";
|
|
62
|
+
readonly desc: "输入框模式,password 启用密码显隐按钮(对齐 Semi mode)";
|
|
51
63
|
}, {
|
|
52
64
|
readonly name: "type";
|
|
53
|
-
readonly type: "
|
|
54
|
-
readonly default: "text";
|
|
65
|
+
readonly type: "string";
|
|
66
|
+
readonly default: "'text'";
|
|
67
|
+
readonly desc: "原生 input type,透传(对齐 Semi type,可为 number/email/search 等)";
|
|
55
68
|
}, {
|
|
56
69
|
readonly name: "prefix";
|
|
57
|
-
readonly type: "Snippet";
|
|
70
|
+
readonly type: "Snippet | string";
|
|
58
71
|
readonly default: "undefined";
|
|
72
|
+
readonly desc: "前缀标签(输入框内左侧);字符串直接渲染,Snippet 自定义(对齐 Semi)";
|
|
59
73
|
}, {
|
|
60
74
|
readonly name: "suffix";
|
|
75
|
+
readonly type: "Snippet | string";
|
|
76
|
+
readonly default: "undefined";
|
|
77
|
+
readonly desc: "后缀标签(输入框内右侧);字符串直接渲染,Snippet 自定义(对齐 Semi)";
|
|
78
|
+
}, {
|
|
79
|
+
readonly name: "insetLabel";
|
|
80
|
+
readonly type: "Snippet | string";
|
|
81
|
+
readonly default: "undefined";
|
|
82
|
+
readonly desc: "内嵌标签(与 prefix 同槽,对齐 Semi insetLabel)";
|
|
83
|
+
}, {
|
|
84
|
+
readonly name: "insetLabelId";
|
|
85
|
+
readonly type: "string";
|
|
86
|
+
readonly default: "undefined";
|
|
87
|
+
readonly desc: "内嵌标签容器 id(对齐 Semi insetLabelId)";
|
|
88
|
+
}, {
|
|
89
|
+
readonly name: "clearIcon";
|
|
61
90
|
readonly type: "Snippet";
|
|
62
91
|
readonly default: "undefined";
|
|
92
|
+
readonly desc: "自定义清除图标(showClear 有值时替换默认图标,对齐 Semi)";
|
|
93
|
+
}, {
|
|
94
|
+
readonly name: "addonBefore";
|
|
95
|
+
readonly type: "Snippet | string";
|
|
96
|
+
readonly default: "undefined";
|
|
97
|
+
readonly desc: "前置标签(如 \"https://\")";
|
|
98
|
+
}, {
|
|
99
|
+
readonly name: "addonAfter";
|
|
100
|
+
readonly type: "Snippet | string";
|
|
101
|
+
readonly default: "undefined";
|
|
102
|
+
readonly desc: "后置标签(如 \".com\")";
|
|
103
|
+
}, {
|
|
104
|
+
readonly name: "borderless";
|
|
105
|
+
readonly type: "boolean";
|
|
106
|
+
readonly default: "false";
|
|
107
|
+
readonly desc: "无边框模式(对齐 Semi borderless)";
|
|
108
|
+
}, {
|
|
109
|
+
readonly name: "getValueLength";
|
|
110
|
+
readonly type: "(value: string) => number";
|
|
111
|
+
readonly default: "undefined";
|
|
112
|
+
readonly desc: "自定义字符计数函数,替代默认长度(存在时接管 maxLength 校验)";
|
|
113
|
+
}, {
|
|
114
|
+
readonly name: "hideSuffix";
|
|
115
|
+
readonly type: "boolean";
|
|
116
|
+
readonly default: "false";
|
|
117
|
+
readonly desc: "清除按钮与后缀并存时隐藏后缀(对齐 Semi hideSuffix)";
|
|
118
|
+
}, {
|
|
119
|
+
readonly name: "style";
|
|
120
|
+
readonly type: "string";
|
|
121
|
+
readonly default: "undefined";
|
|
122
|
+
readonly desc: "根容器内联样式(对齐 Semi style)";
|
|
123
|
+
}, {
|
|
124
|
+
readonly name: "class";
|
|
125
|
+
readonly type: "string";
|
|
126
|
+
readonly default: "undefined";
|
|
127
|
+
readonly desc: "根容器自定义类名(对齐 Semi className)";
|
|
128
|
+
}, {
|
|
129
|
+
readonly name: "inputStyle";
|
|
130
|
+
readonly type: "string";
|
|
131
|
+
readonly default: "undefined";
|
|
132
|
+
readonly desc: "input 元素内联样式(对齐 Semi inputStyle)";
|
|
133
|
+
}, {
|
|
134
|
+
readonly name: "preventScroll";
|
|
135
|
+
readonly type: "boolean";
|
|
136
|
+
readonly default: "false";
|
|
137
|
+
readonly desc: "调用 focus() 时传入 { preventScroll }(对齐 Semi)";
|
|
138
|
+
}, {
|
|
139
|
+
readonly name: "autoFocus";
|
|
140
|
+
readonly type: "boolean";
|
|
141
|
+
readonly default: "false";
|
|
142
|
+
readonly desc: "组件挂载时自动聚焦(对齐 Semi)";
|
|
143
|
+
}, {
|
|
144
|
+
readonly name: "composition";
|
|
145
|
+
readonly type: "boolean";
|
|
146
|
+
readonly default: "false";
|
|
147
|
+
readonly desc: "输入法模式:开启后 IME 未确认期间不触发 onChange,确认后触发一次(对齐 Semi)";
|
|
63
148
|
}, {
|
|
64
149
|
readonly name: "name";
|
|
65
150
|
readonly type: "string";
|
|
@@ -73,46 +158,741 @@ export declare const meta: {
|
|
|
73
158
|
readonly name: "ariaLabel";
|
|
74
159
|
readonly type: "string";
|
|
75
160
|
readonly default: "undefined";
|
|
161
|
+
}, {
|
|
162
|
+
readonly name: "ariaLabelledby";
|
|
163
|
+
readonly type: "string";
|
|
164
|
+
readonly default: "undefined";
|
|
165
|
+
readonly desc: "对齐 Semi aria-labelledby";
|
|
76
166
|
}, {
|
|
77
167
|
readonly name: "ariaDescribedby";
|
|
78
168
|
readonly type: "string";
|
|
79
169
|
readonly default: "undefined";
|
|
80
|
-
readonly desc: "
|
|
170
|
+
readonly desc: "关联说明/错误文本";
|
|
171
|
+
}, {
|
|
172
|
+
readonly name: "ariaErrormessage";
|
|
173
|
+
readonly type: "string";
|
|
174
|
+
readonly default: "undefined";
|
|
175
|
+
readonly desc: "对齐 Semi aria-errormessage";
|
|
176
|
+
}, {
|
|
177
|
+
readonly name: "ariaRequired";
|
|
178
|
+
readonly type: "boolean";
|
|
179
|
+
readonly default: "undefined";
|
|
180
|
+
readonly desc: "必填语义(Form.Field required 透传):输出 aria-required";
|
|
81
181
|
}, {
|
|
82
182
|
readonly name: "onChange";
|
|
83
|
-
readonly type: "(
|
|
183
|
+
readonly type: "(value: string, e: Event) => void";
|
|
84
184
|
readonly default: "undefined";
|
|
185
|
+
readonly desc: "内容变化(对齐 Semi:第二参为原生事件)";
|
|
85
186
|
}, {
|
|
86
187
|
readonly name: "onInput";
|
|
87
|
-
readonly type: "(
|
|
188
|
+
readonly type: "(value: string, e: Event) => void";
|
|
88
189
|
readonly default: "undefined";
|
|
89
190
|
}, {
|
|
90
191
|
readonly name: "onClear";
|
|
91
|
-
readonly type: "() => void";
|
|
192
|
+
readonly type: "(e: MouseEvent) => void";
|
|
92
193
|
readonly default: "undefined";
|
|
194
|
+
readonly desc: "点击清除按钮(对齐 Semi:透传鼠标事件)";
|
|
93
195
|
}, {
|
|
94
196
|
readonly name: "onEnterPress";
|
|
95
197
|
readonly type: "(e: KeyboardEvent) => void";
|
|
96
198
|
readonly default: "undefined";
|
|
97
|
-
readonly desc: "回车按下(
|
|
199
|
+
readonly desc: "回车按下(composition 中不触发)";
|
|
200
|
+
}, {
|
|
201
|
+
readonly name: "onFocus";
|
|
202
|
+
readonly type: "(e: FocusEvent) => void";
|
|
203
|
+
readonly default: "undefined";
|
|
204
|
+
}, {
|
|
205
|
+
readonly name: "onBlur";
|
|
206
|
+
readonly type: "(e: FocusEvent) => void";
|
|
207
|
+
readonly default: "undefined";
|
|
208
|
+
}, {
|
|
209
|
+
readonly name: "onKeyDown";
|
|
210
|
+
readonly type: "(e: KeyboardEvent) => void";
|
|
211
|
+
readonly default: "undefined";
|
|
212
|
+
readonly desc: "透传原生 keydown(对齐 Semi)";
|
|
98
213
|
}, {
|
|
99
|
-
readonly name: "
|
|
214
|
+
readonly name: "onKeyUp";
|
|
100
215
|
readonly type: "(e: KeyboardEvent) => void";
|
|
101
216
|
readonly default: "undefined";
|
|
102
|
-
|
|
217
|
+
}, {
|
|
218
|
+
readonly name: "onKeyPress";
|
|
219
|
+
readonly type: "(e: KeyboardEvent) => void";
|
|
220
|
+
readonly default: "undefined";
|
|
221
|
+
}, {
|
|
222
|
+
readonly name: "onCompositionStart";
|
|
223
|
+
readonly type: "(e: CompositionEvent) => void";
|
|
224
|
+
readonly default: "undefined";
|
|
225
|
+
}, {
|
|
226
|
+
readonly name: "onCompositionEnd";
|
|
227
|
+
readonly type: "(e: CompositionEvent) => void";
|
|
228
|
+
readonly default: "undefined";
|
|
229
|
+
}, {
|
|
230
|
+
readonly name: "onCompositionUpdate";
|
|
231
|
+
readonly type: "(e: CompositionEvent) => void";
|
|
232
|
+
readonly default: "undefined";
|
|
233
|
+
}];
|
|
234
|
+
readonly methods: readonly [{
|
|
235
|
+
readonly name: "focus()";
|
|
236
|
+
readonly desc: "命令式聚焦输入框(尊重 preventScroll,对齐 Semi)";
|
|
237
|
+
}, {
|
|
238
|
+
readonly name: "blur()";
|
|
239
|
+
readonly desc: "命令式移除焦点(对齐 Semi)";
|
|
240
|
+
}];
|
|
241
|
+
readonly a11y: {
|
|
242
|
+
readonly role: "textbox";
|
|
243
|
+
readonly notes: readonly ["原生 input", "error 时 aria-invalid", "密码切换按钮 role=button + tabindex + aria-label(对齐 Semi,无 aria-pressed)", "清除按钮为无 aria-label / role 的 div(对齐 Semi)"];
|
|
244
|
+
};
|
|
245
|
+
readonly tokens: readonly ["--cd-color-input-*", "--cd-height-input-*", "--cd-radius-input-wrapper", "--cd-spacing-input-*"];
|
|
246
|
+
readonly subComponents: readonly [{
|
|
247
|
+
readonly name: "TextArea";
|
|
248
|
+
readonly semiEquivalent: "TextArea";
|
|
249
|
+
readonly usage: "<TextArea autosize maxCount={100} showClear />";
|
|
250
|
+
readonly desc: "多行文本录入框,支持计数(maxCount/getValueLength)、清除、校验态、IME、autosize 自适应高度、行号、resize 全值域。严格对齐 Semi。";
|
|
251
|
+
readonly capabilities: readonly ["multiline", "autosize", "char-count", "clearable", "validation-status", "line-number"];
|
|
252
|
+
readonly props: readonly [{
|
|
253
|
+
readonly name: "value";
|
|
254
|
+
readonly type: "string";
|
|
255
|
+
readonly default: "undefined";
|
|
256
|
+
readonly desc: "受控值;提供则为受控";
|
|
257
|
+
}, {
|
|
258
|
+
readonly name: "defaultValue";
|
|
259
|
+
readonly type: "string";
|
|
260
|
+
readonly default: "''";
|
|
261
|
+
readonly desc: "非受控初始值";
|
|
262
|
+
}, {
|
|
263
|
+
readonly name: "size";
|
|
264
|
+
readonly type: "'small'|'default'|'large'";
|
|
265
|
+
readonly default: "'default'";
|
|
266
|
+
}, {
|
|
267
|
+
readonly name: "disabled";
|
|
268
|
+
readonly type: "boolean";
|
|
269
|
+
readonly default: "false";
|
|
270
|
+
}, {
|
|
271
|
+
readonly name: "readonly";
|
|
272
|
+
readonly type: "boolean";
|
|
273
|
+
readonly default: "false";
|
|
274
|
+
}, {
|
|
275
|
+
readonly name: "placeholder";
|
|
276
|
+
readonly type: "string";
|
|
277
|
+
readonly default: "undefined";
|
|
278
|
+
}, {
|
|
279
|
+
readonly name: "showCount";
|
|
280
|
+
readonly type: "boolean";
|
|
281
|
+
readonly default: "false";
|
|
282
|
+
readonly desc: "显示字数统计(对齐 Semi showCounter;maxCount 存在时亦显示)";
|
|
283
|
+
}, {
|
|
284
|
+
readonly name: "maxLength";
|
|
285
|
+
readonly type: "number";
|
|
286
|
+
readonly default: "undefined";
|
|
287
|
+
readonly desc: "原生硬性长度限制(截断输入)";
|
|
288
|
+
}, {
|
|
289
|
+
readonly name: "maxCount";
|
|
290
|
+
readonly type: "number";
|
|
291
|
+
readonly default: "undefined";
|
|
292
|
+
readonly desc: "计数上限(计数展示与超限提示,不截断,对齐 Semi)";
|
|
293
|
+
}, {
|
|
294
|
+
readonly name: "showClear";
|
|
295
|
+
readonly type: "boolean";
|
|
296
|
+
readonly default: "false";
|
|
297
|
+
readonly desc: "有内容且 hover/focus 时展示清除按钮(对齐 Semi)";
|
|
298
|
+
}, {
|
|
299
|
+
readonly name: "autoFocus";
|
|
300
|
+
readonly type: "boolean";
|
|
301
|
+
readonly default: "false";
|
|
302
|
+
readonly desc: "挂载后自动聚焦";
|
|
303
|
+
}, {
|
|
304
|
+
readonly name: "validateStatus";
|
|
305
|
+
readonly type: "'default'|'warning'|'error'|'success'";
|
|
306
|
+
readonly default: "'default'";
|
|
307
|
+
readonly desc: "校验态(对齐 Semi validateStatus)";
|
|
308
|
+
}, {
|
|
309
|
+
readonly name: "rows";
|
|
310
|
+
readonly type: "number";
|
|
311
|
+
readonly default: "4";
|
|
312
|
+
readonly desc: "默认行数(对齐 Semi)";
|
|
313
|
+
}, {
|
|
314
|
+
readonly name: "cols";
|
|
315
|
+
readonly type: "number";
|
|
316
|
+
readonly default: "undefined";
|
|
317
|
+
readonly desc: "默认列数(对齐 Semi cols)";
|
|
318
|
+
}, {
|
|
319
|
+
readonly name: "autosize";
|
|
320
|
+
readonly type: "boolean | { minRows?: number; maxRows?: number }";
|
|
321
|
+
readonly default: "false";
|
|
322
|
+
readonly desc: "随内容自适应高度(对齐 Semi)";
|
|
323
|
+
}, {
|
|
324
|
+
readonly name: "resize";
|
|
325
|
+
readonly type: "'none'|'both'|'horizontal'|'vertical'|'block'|'inline'";
|
|
326
|
+
readonly default: "undefined";
|
|
327
|
+
readonly desc: "拖拽调整方向(对齐 Semi resize 全值域);autosize 时忽略;仅显式传入生效";
|
|
328
|
+
}, {
|
|
329
|
+
readonly name: "borderless";
|
|
330
|
+
readonly type: "boolean";
|
|
331
|
+
readonly default: "false";
|
|
332
|
+
readonly desc: "无边框模式(对齐 Semi borderless)";
|
|
333
|
+
}, {
|
|
334
|
+
readonly name: "showLineNumber";
|
|
335
|
+
readonly type: "boolean";
|
|
336
|
+
readonly default: "false";
|
|
337
|
+
readonly desc: "展示行号(对齐 Semi showLineNumber)";
|
|
338
|
+
}, {
|
|
339
|
+
readonly name: "lineNumberStart";
|
|
340
|
+
readonly type: "number";
|
|
341
|
+
readonly default: "1";
|
|
342
|
+
readonly desc: "行号起始值(对齐 Semi lineNumberStart)";
|
|
343
|
+
}, {
|
|
344
|
+
readonly name: "lineNumberClassName";
|
|
345
|
+
readonly type: "string";
|
|
346
|
+
readonly default: "undefined";
|
|
347
|
+
readonly desc: "行号区自定义类名(对齐 Semi)";
|
|
348
|
+
}, {
|
|
349
|
+
readonly name: "lineNumberStyle";
|
|
350
|
+
readonly type: "string";
|
|
351
|
+
readonly default: "undefined";
|
|
352
|
+
readonly desc: "行号区自定义样式(对齐 Semi)";
|
|
353
|
+
}, {
|
|
354
|
+
readonly name: "textareaStyle";
|
|
355
|
+
readonly type: "string";
|
|
356
|
+
readonly default: "undefined";
|
|
357
|
+
readonly desc: "textarea 元素样式,可设高度等(对齐 Semi textareaStyle)";
|
|
358
|
+
}, {
|
|
359
|
+
readonly name: "getValueLength";
|
|
360
|
+
readonly type: "(value: string) => number";
|
|
361
|
+
readonly default: "undefined";
|
|
362
|
+
readonly desc: "自定义字符计数函数(对齐 Semi getValueLength)";
|
|
363
|
+
}, {
|
|
364
|
+
readonly name: "disabledEnterStartNewLine";
|
|
365
|
+
readonly type: "boolean";
|
|
366
|
+
readonly default: "false";
|
|
367
|
+
readonly desc: "禁用 Enter 换行(Shift+Enter 才换行,对齐 Semi,Chat 场景用)";
|
|
368
|
+
}, {
|
|
369
|
+
readonly name: "composition";
|
|
370
|
+
readonly type: "boolean";
|
|
371
|
+
readonly default: "false";
|
|
372
|
+
readonly desc: "输入法模式:开启后 IME 未确认期间不触发 onChange,确认后触发一次(对齐 Semi)";
|
|
373
|
+
}, {
|
|
374
|
+
readonly name: "name";
|
|
375
|
+
readonly type: "string";
|
|
376
|
+
readonly default: "undefined";
|
|
377
|
+
}, {
|
|
378
|
+
readonly name: "id";
|
|
379
|
+
readonly type: "string";
|
|
380
|
+
readonly default: "undefined";
|
|
381
|
+
}, {
|
|
382
|
+
readonly name: "class";
|
|
383
|
+
readonly type: "string";
|
|
384
|
+
readonly default: "''";
|
|
385
|
+
readonly desc: "根容器自定义类名(对齐 Semi className)";
|
|
386
|
+
}, {
|
|
387
|
+
readonly name: "style";
|
|
388
|
+
readonly type: "string";
|
|
389
|
+
readonly default: "undefined";
|
|
390
|
+
readonly desc: "根容器内联样式(对齐 Semi style)";
|
|
391
|
+
}, {
|
|
392
|
+
readonly name: "ariaLabel";
|
|
393
|
+
readonly type: "string";
|
|
394
|
+
readonly default: "undefined";
|
|
395
|
+
}, {
|
|
396
|
+
readonly name: "ariaLabelledby";
|
|
397
|
+
readonly type: "string";
|
|
398
|
+
readonly default: "undefined";
|
|
399
|
+
}, {
|
|
400
|
+
readonly name: "ariaDescribedby";
|
|
401
|
+
readonly type: "string";
|
|
402
|
+
readonly default: "undefined";
|
|
403
|
+
}, {
|
|
404
|
+
readonly name: "ariaErrormessage";
|
|
405
|
+
readonly type: "string";
|
|
406
|
+
readonly default: "undefined";
|
|
407
|
+
}, {
|
|
408
|
+
readonly name: "ariaRequired";
|
|
409
|
+
readonly type: "boolean";
|
|
410
|
+
readonly default: "undefined";
|
|
411
|
+
}, {
|
|
412
|
+
readonly name: "onChange";
|
|
413
|
+
readonly type: "(value: string, e: Event) => void";
|
|
414
|
+
readonly default: "undefined";
|
|
415
|
+
readonly desc: "内容变化(对齐 Semi:第二参为原生事件)";
|
|
416
|
+
}, {
|
|
417
|
+
readonly name: "onInput";
|
|
418
|
+
readonly type: "(value: string, e: Event) => void";
|
|
419
|
+
readonly default: "undefined";
|
|
420
|
+
}, {
|
|
421
|
+
readonly name: "onClear";
|
|
422
|
+
readonly type: "(e: MouseEvent) => void";
|
|
423
|
+
readonly default: "undefined";
|
|
424
|
+
readonly desc: "点击清除按钮(对齐 Semi:透传鼠标事件)";
|
|
425
|
+
}, {
|
|
426
|
+
readonly name: "onFocus";
|
|
427
|
+
readonly type: "(e: FocusEvent) => void";
|
|
428
|
+
readonly default: "undefined";
|
|
429
|
+
readonly desc: "获得焦点";
|
|
430
|
+
}, {
|
|
431
|
+
readonly name: "onBlur";
|
|
432
|
+
readonly type: "(e: FocusEvent) => void";
|
|
433
|
+
readonly default: "undefined";
|
|
434
|
+
readonly desc: "失去焦点";
|
|
435
|
+
}, {
|
|
436
|
+
readonly name: "onEnterPress";
|
|
437
|
+
readonly type: "(e: KeyboardEvent) => void";
|
|
438
|
+
readonly default: "undefined";
|
|
439
|
+
readonly desc: "按下 Enter(透传原生事件,对齐 Semi;composition 中不触发)";
|
|
440
|
+
}, {
|
|
441
|
+
readonly name: "onPressEnter";
|
|
442
|
+
readonly type: "(e: KeyboardEvent) => void";
|
|
443
|
+
readonly default: "undefined";
|
|
444
|
+
readonly desc: "onEnterPress 别名(对齐 Semi onPressEnter)";
|
|
445
|
+
}, {
|
|
446
|
+
readonly name: "onResize";
|
|
447
|
+
readonly type: "(p: { height: number; width?: number }) => void";
|
|
448
|
+
readonly default: "undefined";
|
|
449
|
+
readonly desc: "autosize 高度变化,或 resize 拖拽(含 width,对齐 Semi)";
|
|
450
|
+
}, {
|
|
451
|
+
readonly name: "onKeyDown";
|
|
452
|
+
readonly type: "(e: KeyboardEvent) => void";
|
|
453
|
+
readonly default: "undefined";
|
|
454
|
+
readonly desc: "透传原生 keydown(对齐 Semi)";
|
|
455
|
+
}, {
|
|
456
|
+
readonly name: "onKeyUp";
|
|
457
|
+
readonly type: "(e: KeyboardEvent) => void";
|
|
458
|
+
readonly default: "undefined";
|
|
459
|
+
}, {
|
|
460
|
+
readonly name: "onKeyPress";
|
|
461
|
+
readonly type: "(e: KeyboardEvent) => void";
|
|
462
|
+
readonly default: "undefined";
|
|
463
|
+
}, {
|
|
464
|
+
readonly name: "onCompositionStart";
|
|
465
|
+
readonly type: "(e: CompositionEvent) => void";
|
|
466
|
+
readonly default: "undefined";
|
|
467
|
+
readonly desc: "IME 开始";
|
|
468
|
+
}, {
|
|
469
|
+
readonly name: "onCompositionEnd";
|
|
470
|
+
readonly type: "(e: CompositionEvent) => void";
|
|
471
|
+
readonly default: "undefined";
|
|
472
|
+
readonly desc: "IME 结束";
|
|
473
|
+
}, {
|
|
474
|
+
readonly name: "onCompositionUpdate";
|
|
475
|
+
readonly type: "(e: CompositionEvent) => void";
|
|
476
|
+
readonly default: "undefined";
|
|
477
|
+
}];
|
|
478
|
+
readonly methods: readonly [{
|
|
479
|
+
readonly name: "focus()";
|
|
480
|
+
readonly desc: "命令式聚焦(对齐 Semi)";
|
|
481
|
+
}, {
|
|
482
|
+
readonly name: "blur()";
|
|
483
|
+
readonly desc: "命令式失焦(对齐 Semi)";
|
|
484
|
+
}];
|
|
485
|
+
readonly slots: readonly [{
|
|
486
|
+
readonly name: "count";
|
|
487
|
+
readonly scope: "{ count, maxCount, overLimit }";
|
|
488
|
+
readonly desc: "自定义计数器渲染(覆盖内建,本库超集扩展)";
|
|
489
|
+
}, {
|
|
490
|
+
readonly name: "clearIcon";
|
|
491
|
+
readonly desc: "自定义清除图标";
|
|
492
|
+
}];
|
|
493
|
+
readonly a11y: {
|
|
494
|
+
readonly role: "textbox";
|
|
495
|
+
readonly notes: readonly ["原生 textarea", "error 时 aria-invalid", "IME composition 安全", "超限经 aria-live=polite 播报", "清除按钮为无 aria-label / role 的 div(对齐 Semi)"];
|
|
496
|
+
};
|
|
497
|
+
readonly i18nKeys: readonly ["Textarea.countFormat", "Textarea.countOnly", "Textarea.overLimitAnnounce"];
|
|
498
|
+
readonly tokens: readonly ["--cd-color-input-*", "--cd-color-textarea-*", "--cd-spacing-textarea-*", "--cd-radius-input-wrapper"];
|
|
499
|
+
}, {
|
|
500
|
+
readonly name: "InputGroup";
|
|
501
|
+
readonly semiEquivalent: "InputGroup";
|
|
502
|
+
readonly usage: "<InputGroup><Input /><Select /></InputGroup>";
|
|
503
|
+
readonly desc: "输入组合容器:将多个输入类控件(Input/Select/DatePicker 等)拼接为一体(相邻圆角合并 + 分隔线),统一 size/disabled 经 context 回退透传(控件显式 prop 优先),可选组 label。";
|
|
504
|
+
readonly props: readonly [{
|
|
505
|
+
readonly name: "size";
|
|
506
|
+
readonly type: "'small'|'default'|'large'";
|
|
507
|
+
readonly default: "undefined";
|
|
508
|
+
readonly desc: "整组尺寸,回退透传子控件(子控件显式 size 优先)";
|
|
509
|
+
}, {
|
|
510
|
+
readonly name: "disabled";
|
|
511
|
+
readonly type: "boolean";
|
|
512
|
+
readonly default: "undefined";
|
|
513
|
+
readonly desc: "整组禁用,回退透传子控件(子控件显式 disabled 优先)";
|
|
514
|
+
}, {
|
|
515
|
+
readonly name: "label";
|
|
516
|
+
readonly type: "{ text?: string; name?: string; required?: boolean; width?: number|string }";
|
|
517
|
+
readonly default: "undefined";
|
|
518
|
+
readonly desc: "整组标签(对齐 Semi LabelProps 子集)";
|
|
519
|
+
}, {
|
|
520
|
+
readonly name: "labelPosition";
|
|
521
|
+
readonly type: "'top'|'left'";
|
|
522
|
+
readonly default: "'top'";
|
|
523
|
+
readonly desc: "标签位置";
|
|
524
|
+
}, {
|
|
525
|
+
readonly name: "onFocus";
|
|
526
|
+
readonly type: "(e: FocusEvent) => void";
|
|
527
|
+
readonly default: "undefined";
|
|
528
|
+
readonly desc: "组级聚焦(子控件 focusin 冒泡)";
|
|
529
|
+
}, {
|
|
530
|
+
readonly name: "onBlur";
|
|
531
|
+
readonly type: "(e: FocusEvent) => void";
|
|
532
|
+
readonly default: "undefined";
|
|
533
|
+
readonly desc: "组级失焦(子控件 focusout 冒泡)";
|
|
534
|
+
}, {
|
|
535
|
+
readonly name: "class";
|
|
536
|
+
readonly type: "string";
|
|
537
|
+
readonly default: "undefined";
|
|
538
|
+
readonly desc: "根节点自定义类名";
|
|
539
|
+
}, {
|
|
540
|
+
readonly name: "style";
|
|
541
|
+
readonly type: "string";
|
|
542
|
+
readonly default: "undefined";
|
|
543
|
+
readonly desc: "根节点自定义内联样式";
|
|
544
|
+
}, {
|
|
545
|
+
readonly name: "children";
|
|
546
|
+
readonly type: "Snippet";
|
|
547
|
+
readonly default: "undefined";
|
|
548
|
+
readonly desc: "子输入控件";
|
|
549
|
+
}];
|
|
550
|
+
readonly events: readonly [{
|
|
551
|
+
readonly name: "onFocus";
|
|
552
|
+
readonly desc: "组内控件获得焦点";
|
|
553
|
+
}, {
|
|
554
|
+
readonly name: "onBlur";
|
|
555
|
+
readonly desc: "组内控件失去焦点";
|
|
556
|
+
}];
|
|
557
|
+
readonly slots: readonly [{
|
|
558
|
+
readonly name: "children";
|
|
559
|
+
readonly desc: "子输入控件(Input/Select/DatePicker 等)";
|
|
560
|
+
}];
|
|
561
|
+
readonly a11y: {
|
|
562
|
+
readonly role: "group";
|
|
563
|
+
readonly notes: readonly ["单层 span role=group(对齐 Semi)", "有 label 时 label[for] 关联 group[id]", "各子控件保留自身 a11y"];
|
|
564
|
+
};
|
|
565
|
+
readonly tokens: readonly ["--cd-color-input-group-border-default", "--cd-width-input-group-pseudo-border", "--cd-radius-input-wrapper"];
|
|
566
|
+
}];
|
|
567
|
+
};
|
|
568
|
+
/**
|
|
569
|
+
* InputGroup meta(保留具名导出供 InputGroup demo/文档局部引用)。
|
|
570
|
+
* 严格对齐 Semi:不带 category,故不作为独立组件进侧边栏——信息以 Input.subComponents 为准。
|
|
571
|
+
*/
|
|
572
|
+
export declare const inputGroupMeta: {
|
|
573
|
+
readonly name: "InputGroup";
|
|
574
|
+
readonly relatedTo: "Input";
|
|
575
|
+
readonly semiEquivalent: "InputGroup";
|
|
576
|
+
readonly description: "输入组合容器:将多个输入类控件(Input/Select/DatePicker 等)拼接为一体(相邻圆角合并 + 分隔线),统一 size/disabled 经 context 回退透传(控件显式 prop 优先),可选组 label。";
|
|
577
|
+
readonly props: readonly [{
|
|
578
|
+
readonly name: "size";
|
|
579
|
+
readonly type: "'small'|'default'|'large'";
|
|
580
|
+
readonly default: "undefined";
|
|
581
|
+
readonly desc: "整组尺寸,回退透传子控件(子控件显式 size 优先)";
|
|
582
|
+
}, {
|
|
583
|
+
readonly name: "disabled";
|
|
584
|
+
readonly type: "boolean";
|
|
585
|
+
readonly default: "undefined";
|
|
586
|
+
readonly desc: "整组禁用,回退透传子控件(子控件显式 disabled 优先)";
|
|
587
|
+
}, {
|
|
588
|
+
readonly name: "label";
|
|
589
|
+
readonly type: "{ text?: string; name?: string; required?: boolean; width?: number|string }";
|
|
590
|
+
readonly default: "undefined";
|
|
591
|
+
readonly desc: "整组标签(对齐 Semi LabelProps 子集)";
|
|
592
|
+
}, {
|
|
593
|
+
readonly name: "labelPosition";
|
|
594
|
+
readonly type: "'top'|'left'";
|
|
595
|
+
readonly default: "'top'";
|
|
596
|
+
readonly desc: "标签位置";
|
|
597
|
+
}, {
|
|
598
|
+
readonly name: "onFocus";
|
|
599
|
+
readonly type: "(e: FocusEvent) => void";
|
|
600
|
+
readonly default: "undefined";
|
|
601
|
+
readonly desc: "组级聚焦(子控件 focusin 冒泡)";
|
|
602
|
+
}, {
|
|
603
|
+
readonly name: "onBlur";
|
|
604
|
+
readonly type: "(e: FocusEvent) => void";
|
|
605
|
+
readonly default: "undefined";
|
|
606
|
+
readonly desc: "组级失焦(子控件 focusout 冒泡)";
|
|
607
|
+
}, {
|
|
608
|
+
readonly name: "class";
|
|
609
|
+
readonly type: "string";
|
|
610
|
+
readonly default: "undefined";
|
|
611
|
+
readonly desc: "根节点自定义类名";
|
|
612
|
+
}, {
|
|
613
|
+
readonly name: "style";
|
|
614
|
+
readonly type: "string";
|
|
615
|
+
readonly default: "undefined";
|
|
616
|
+
readonly desc: "根节点自定义内联样式";
|
|
617
|
+
}, {
|
|
618
|
+
readonly name: "children";
|
|
619
|
+
readonly type: "Snippet";
|
|
620
|
+
readonly default: "undefined";
|
|
621
|
+
readonly desc: "子输入控件";
|
|
622
|
+
}];
|
|
623
|
+
readonly events: readonly [{
|
|
624
|
+
readonly name: "onFocus";
|
|
625
|
+
readonly desc: "组内控件获得焦点";
|
|
626
|
+
}, {
|
|
627
|
+
readonly name: "onBlur";
|
|
628
|
+
readonly desc: "组内控件失去焦点";
|
|
629
|
+
}];
|
|
630
|
+
readonly slots: readonly [{
|
|
631
|
+
readonly name: "children";
|
|
632
|
+
readonly desc: "子输入控件(Input/Select/DatePicker 等)";
|
|
633
|
+
}];
|
|
634
|
+
readonly a11y: {
|
|
635
|
+
readonly role: "group";
|
|
636
|
+
readonly notes: readonly ["单层 span role=group(对齐 Semi)", "有 label 时 label[for] 关联 group[id]", "各子控件保留自身 a11y"];
|
|
637
|
+
};
|
|
638
|
+
readonly tokens: readonly ["--cd-color-input-group-border-default", "--cd-width-input-group-pseudo-border", "--cd-radius-input-wrapper"];
|
|
639
|
+
};
|
|
640
|
+
/**
|
|
641
|
+
* TextArea meta(保留具名导出供 TextArea demo/文档局部引用与测试)。
|
|
642
|
+
* 严格对齐 Semi:不带 category,故不作为独立组件进侧边栏——信息复用 Input.subComponents[0]。
|
|
643
|
+
*/
|
|
644
|
+
export declare const textareaMeta: {
|
|
645
|
+
readonly name: "TextArea";
|
|
646
|
+
readonly semiEquivalent: "TextArea";
|
|
647
|
+
readonly usage: "<TextArea autosize maxCount={100} showClear />";
|
|
648
|
+
readonly desc: "多行文本录入框,支持计数(maxCount/getValueLength)、清除、校验态、IME、autosize 自适应高度、行号、resize 全值域。严格对齐 Semi。";
|
|
649
|
+
readonly capabilities: readonly ["multiline", "autosize", "char-count", "clearable", "validation-status", "line-number"];
|
|
650
|
+
readonly props: readonly [{
|
|
651
|
+
readonly name: "value";
|
|
652
|
+
readonly type: "string";
|
|
653
|
+
readonly default: "undefined";
|
|
654
|
+
readonly desc: "受控值;提供则为受控";
|
|
655
|
+
}, {
|
|
656
|
+
readonly name: "defaultValue";
|
|
657
|
+
readonly type: "string";
|
|
658
|
+
readonly default: "''";
|
|
659
|
+
readonly desc: "非受控初始值";
|
|
660
|
+
}, {
|
|
661
|
+
readonly name: "size";
|
|
662
|
+
readonly type: "'small'|'default'|'large'";
|
|
663
|
+
readonly default: "'default'";
|
|
664
|
+
}, {
|
|
665
|
+
readonly name: "disabled";
|
|
666
|
+
readonly type: "boolean";
|
|
667
|
+
readonly default: "false";
|
|
668
|
+
}, {
|
|
669
|
+
readonly name: "readonly";
|
|
670
|
+
readonly type: "boolean";
|
|
671
|
+
readonly default: "false";
|
|
672
|
+
}, {
|
|
673
|
+
readonly name: "placeholder";
|
|
674
|
+
readonly type: "string";
|
|
675
|
+
readonly default: "undefined";
|
|
676
|
+
}, {
|
|
677
|
+
readonly name: "showCount";
|
|
678
|
+
readonly type: "boolean";
|
|
679
|
+
readonly default: "false";
|
|
680
|
+
readonly desc: "显示字数统计(对齐 Semi showCounter;maxCount 存在时亦显示)";
|
|
681
|
+
}, {
|
|
682
|
+
readonly name: "maxLength";
|
|
683
|
+
readonly type: "number";
|
|
684
|
+
readonly default: "undefined";
|
|
685
|
+
readonly desc: "原生硬性长度限制(截断输入)";
|
|
686
|
+
}, {
|
|
687
|
+
readonly name: "maxCount";
|
|
688
|
+
readonly type: "number";
|
|
689
|
+
readonly default: "undefined";
|
|
690
|
+
readonly desc: "计数上限(计数展示与超限提示,不截断,对齐 Semi)";
|
|
691
|
+
}, {
|
|
692
|
+
readonly name: "showClear";
|
|
693
|
+
readonly type: "boolean";
|
|
694
|
+
readonly default: "false";
|
|
695
|
+
readonly desc: "有内容且 hover/focus 时展示清除按钮(对齐 Semi)";
|
|
696
|
+
}, {
|
|
697
|
+
readonly name: "autoFocus";
|
|
698
|
+
readonly type: "boolean";
|
|
699
|
+
readonly default: "false";
|
|
700
|
+
readonly desc: "挂载后自动聚焦";
|
|
701
|
+
}, {
|
|
702
|
+
readonly name: "validateStatus";
|
|
703
|
+
readonly type: "'default'|'warning'|'error'|'success'";
|
|
704
|
+
readonly default: "'default'";
|
|
705
|
+
readonly desc: "校验态(对齐 Semi validateStatus)";
|
|
706
|
+
}, {
|
|
707
|
+
readonly name: "rows";
|
|
708
|
+
readonly type: "number";
|
|
709
|
+
readonly default: "4";
|
|
710
|
+
readonly desc: "默认行数(对齐 Semi)";
|
|
711
|
+
}, {
|
|
712
|
+
readonly name: "cols";
|
|
713
|
+
readonly type: "number";
|
|
714
|
+
readonly default: "undefined";
|
|
715
|
+
readonly desc: "默认列数(对齐 Semi cols)";
|
|
716
|
+
}, {
|
|
717
|
+
readonly name: "autosize";
|
|
718
|
+
readonly type: "boolean | { minRows?: number; maxRows?: number }";
|
|
719
|
+
readonly default: "false";
|
|
720
|
+
readonly desc: "随内容自适应高度(对齐 Semi)";
|
|
721
|
+
}, {
|
|
722
|
+
readonly name: "resize";
|
|
723
|
+
readonly type: "'none'|'both'|'horizontal'|'vertical'|'block'|'inline'";
|
|
724
|
+
readonly default: "undefined";
|
|
725
|
+
readonly desc: "拖拽调整方向(对齐 Semi resize 全值域);autosize 时忽略;仅显式传入生效";
|
|
726
|
+
}, {
|
|
727
|
+
readonly name: "borderless";
|
|
728
|
+
readonly type: "boolean";
|
|
729
|
+
readonly default: "false";
|
|
730
|
+
readonly desc: "无边框模式(对齐 Semi borderless)";
|
|
731
|
+
}, {
|
|
732
|
+
readonly name: "showLineNumber";
|
|
733
|
+
readonly type: "boolean";
|
|
734
|
+
readonly default: "false";
|
|
735
|
+
readonly desc: "展示行号(对齐 Semi showLineNumber)";
|
|
736
|
+
}, {
|
|
737
|
+
readonly name: "lineNumberStart";
|
|
738
|
+
readonly type: "number";
|
|
739
|
+
readonly default: "1";
|
|
740
|
+
readonly desc: "行号起始值(对齐 Semi lineNumberStart)";
|
|
741
|
+
}, {
|
|
742
|
+
readonly name: "lineNumberClassName";
|
|
743
|
+
readonly type: "string";
|
|
744
|
+
readonly default: "undefined";
|
|
745
|
+
readonly desc: "行号区自定义类名(对齐 Semi)";
|
|
746
|
+
}, {
|
|
747
|
+
readonly name: "lineNumberStyle";
|
|
748
|
+
readonly type: "string";
|
|
749
|
+
readonly default: "undefined";
|
|
750
|
+
readonly desc: "行号区自定义样式(对齐 Semi)";
|
|
751
|
+
}, {
|
|
752
|
+
readonly name: "textareaStyle";
|
|
753
|
+
readonly type: "string";
|
|
754
|
+
readonly default: "undefined";
|
|
755
|
+
readonly desc: "textarea 元素样式,可设高度等(对齐 Semi textareaStyle)";
|
|
756
|
+
}, {
|
|
757
|
+
readonly name: "getValueLength";
|
|
758
|
+
readonly type: "(value: string) => number";
|
|
759
|
+
readonly default: "undefined";
|
|
760
|
+
readonly desc: "自定义字符计数函数(对齐 Semi getValueLength)";
|
|
761
|
+
}, {
|
|
762
|
+
readonly name: "disabledEnterStartNewLine";
|
|
763
|
+
readonly type: "boolean";
|
|
764
|
+
readonly default: "false";
|
|
765
|
+
readonly desc: "禁用 Enter 换行(Shift+Enter 才换行,对齐 Semi,Chat 场景用)";
|
|
766
|
+
}, {
|
|
767
|
+
readonly name: "composition";
|
|
768
|
+
readonly type: "boolean";
|
|
769
|
+
readonly default: "false";
|
|
770
|
+
readonly desc: "输入法模式:开启后 IME 未确认期间不触发 onChange,确认后触发一次(对齐 Semi)";
|
|
771
|
+
}, {
|
|
772
|
+
readonly name: "name";
|
|
773
|
+
readonly type: "string";
|
|
774
|
+
readonly default: "undefined";
|
|
775
|
+
}, {
|
|
776
|
+
readonly name: "id";
|
|
777
|
+
readonly type: "string";
|
|
778
|
+
readonly default: "undefined";
|
|
779
|
+
}, {
|
|
780
|
+
readonly name: "class";
|
|
781
|
+
readonly type: "string";
|
|
782
|
+
readonly default: "''";
|
|
783
|
+
readonly desc: "根容器自定义类名(对齐 Semi className)";
|
|
784
|
+
}, {
|
|
785
|
+
readonly name: "style";
|
|
786
|
+
readonly type: "string";
|
|
787
|
+
readonly default: "undefined";
|
|
788
|
+
readonly desc: "根容器内联样式(对齐 Semi style)";
|
|
789
|
+
}, {
|
|
790
|
+
readonly name: "ariaLabel";
|
|
791
|
+
readonly type: "string";
|
|
792
|
+
readonly default: "undefined";
|
|
793
|
+
}, {
|
|
794
|
+
readonly name: "ariaLabelledby";
|
|
795
|
+
readonly type: "string";
|
|
796
|
+
readonly default: "undefined";
|
|
797
|
+
}, {
|
|
798
|
+
readonly name: "ariaDescribedby";
|
|
799
|
+
readonly type: "string";
|
|
800
|
+
readonly default: "undefined";
|
|
801
|
+
}, {
|
|
802
|
+
readonly name: "ariaErrormessage";
|
|
803
|
+
readonly type: "string";
|
|
804
|
+
readonly default: "undefined";
|
|
805
|
+
}, {
|
|
806
|
+
readonly name: "ariaRequired";
|
|
807
|
+
readonly type: "boolean";
|
|
808
|
+
readonly default: "undefined";
|
|
809
|
+
}, {
|
|
810
|
+
readonly name: "onChange";
|
|
811
|
+
readonly type: "(value: string, e: Event) => void";
|
|
812
|
+
readonly default: "undefined";
|
|
813
|
+
readonly desc: "内容变化(对齐 Semi:第二参为原生事件)";
|
|
814
|
+
}, {
|
|
815
|
+
readonly name: "onInput";
|
|
816
|
+
readonly type: "(value: string, e: Event) => void";
|
|
817
|
+
readonly default: "undefined";
|
|
818
|
+
}, {
|
|
819
|
+
readonly name: "onClear";
|
|
820
|
+
readonly type: "(e: MouseEvent) => void";
|
|
821
|
+
readonly default: "undefined";
|
|
822
|
+
readonly desc: "点击清除按钮(对齐 Semi:透传鼠标事件)";
|
|
103
823
|
}, {
|
|
104
824
|
readonly name: "onFocus";
|
|
105
825
|
readonly type: "(e: FocusEvent) => void";
|
|
106
826
|
readonly default: "undefined";
|
|
827
|
+
readonly desc: "获得焦点";
|
|
107
828
|
}, {
|
|
108
829
|
readonly name: "onBlur";
|
|
109
830
|
readonly type: "(e: FocusEvent) => void";
|
|
110
831
|
readonly default: "undefined";
|
|
832
|
+
readonly desc: "失去焦点";
|
|
833
|
+
}, {
|
|
834
|
+
readonly name: "onEnterPress";
|
|
835
|
+
readonly type: "(e: KeyboardEvent) => void";
|
|
836
|
+
readonly default: "undefined";
|
|
837
|
+
readonly desc: "按下 Enter(透传原生事件,对齐 Semi;composition 中不触发)";
|
|
838
|
+
}, {
|
|
839
|
+
readonly name: "onPressEnter";
|
|
840
|
+
readonly type: "(e: KeyboardEvent) => void";
|
|
841
|
+
readonly default: "undefined";
|
|
842
|
+
readonly desc: "onEnterPress 别名(对齐 Semi onPressEnter)";
|
|
843
|
+
}, {
|
|
844
|
+
readonly name: "onResize";
|
|
845
|
+
readonly type: "(p: { height: number; width?: number }) => void";
|
|
846
|
+
readonly default: "undefined";
|
|
847
|
+
readonly desc: "autosize 高度变化,或 resize 拖拽(含 width,对齐 Semi)";
|
|
848
|
+
}, {
|
|
849
|
+
readonly name: "onKeyDown";
|
|
850
|
+
readonly type: "(e: KeyboardEvent) => void";
|
|
851
|
+
readonly default: "undefined";
|
|
852
|
+
readonly desc: "透传原生 keydown(对齐 Semi)";
|
|
853
|
+
}, {
|
|
854
|
+
readonly name: "onKeyUp";
|
|
855
|
+
readonly type: "(e: KeyboardEvent) => void";
|
|
856
|
+
readonly default: "undefined";
|
|
857
|
+
}, {
|
|
858
|
+
readonly name: "onKeyPress";
|
|
859
|
+
readonly type: "(e: KeyboardEvent) => void";
|
|
860
|
+
readonly default: "undefined";
|
|
861
|
+
}, {
|
|
862
|
+
readonly name: "onCompositionStart";
|
|
863
|
+
readonly type: "(e: CompositionEvent) => void";
|
|
864
|
+
readonly default: "undefined";
|
|
865
|
+
readonly desc: "IME 开始";
|
|
866
|
+
}, {
|
|
867
|
+
readonly name: "onCompositionEnd";
|
|
868
|
+
readonly type: "(e: CompositionEvent) => void";
|
|
869
|
+
readonly default: "undefined";
|
|
870
|
+
readonly desc: "IME 结束";
|
|
871
|
+
}, {
|
|
872
|
+
readonly name: "onCompositionUpdate";
|
|
873
|
+
readonly type: "(e: CompositionEvent) => void";
|
|
874
|
+
readonly default: "undefined";
|
|
875
|
+
}];
|
|
876
|
+
readonly methods: readonly [{
|
|
877
|
+
readonly name: "focus()";
|
|
878
|
+
readonly desc: "命令式聚焦(对齐 Semi)";
|
|
879
|
+
}, {
|
|
880
|
+
readonly name: "blur()";
|
|
881
|
+
readonly desc: "命令式失焦(对齐 Semi)";
|
|
882
|
+
}];
|
|
883
|
+
readonly slots: readonly [{
|
|
884
|
+
readonly name: "count";
|
|
885
|
+
readonly scope: "{ count, maxCount, overLimit }";
|
|
886
|
+
readonly desc: "自定义计数器渲染(覆盖内建,本库超集扩展)";
|
|
887
|
+
}, {
|
|
888
|
+
readonly name: "clearIcon";
|
|
889
|
+
readonly desc: "自定义清除图标";
|
|
111
890
|
}];
|
|
112
891
|
readonly a11y: {
|
|
113
892
|
readonly role: "textbox";
|
|
114
|
-
readonly notes: readonly ["原生
|
|
893
|
+
readonly notes: readonly ["原生 textarea", "error 时 aria-invalid", "IME composition 安全", "超限经 aria-live=polite 播报", "清除按钮为无 aria-label / role 的 div(对齐 Semi)"];
|
|
115
894
|
};
|
|
116
|
-
readonly
|
|
895
|
+
readonly i18nKeys: readonly ["Textarea.countFormat", "Textarea.countOnly", "Textarea.overLimitAnnounce"];
|
|
896
|
+
readonly tokens: readonly ["--cd-color-input-*", "--cd-color-textarea-*", "--cd-spacing-textarea-*", "--cd-radius-input-wrapper"];
|
|
117
897
|
};
|
|
118
898
|
//# sourceMappingURL=meta.d.ts.map
|