@iyulab/components 0.3.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +67 -0
- package/README.md +42 -236
- package/dist/_virtual/_@oxc-project_runtime@0.122.0/helpers/decorate.js +9 -0
- package/dist/_virtual/_@oxc-project_runtime@0.122.0/helpers/decorateMetadata.js +6 -0
- package/dist/_virtual/_glob-assets_raw/bell-fill.svg.d37c41d9.js +4 -0
- package/dist/_virtual/_glob-assets_raw/check-circle-fill.svg.51c33a2a.js +4 -0
- package/dist/_virtual/_glob-assets_raw/check-lg.svg.371c5e78.js +4 -0
- package/dist/_virtual/_glob-assets_raw/chevron-down.svg.0ccd06ea.js +4 -0
- package/dist/_virtual/_glob-assets_raw/chevron-left.svg.b4601050.js +4 -0
- package/dist/_virtual/_glob-assets_raw/chevron-right.svg.0711bb67.js +4 -0
- package/dist/_virtual/_glob-assets_raw/chevron-up.svg.ed917211.js +4 -0
- package/dist/_virtual/_glob-assets_raw/dark.css.e8ac080d.js +4 -0
- package/dist/_virtual/_glob-assets_raw/dash-lg.svg.b40b8b3a.js +4 -0
- package/dist/_virtual/_glob-assets_raw/exclamation-circle-fill.svg.dc8c523e.js +4 -0
- package/dist/_virtual/_glob-assets_raw/exclamation-triangle-fill.svg.7949d2c7.js +4 -0
- package/dist/_virtual/_glob-assets_raw/eye-slash.svg.240afafa.js +4 -0
- package/dist/_virtual/_glob-assets_raw/eye.svg.2e5e9c4c.js +4 -0
- package/dist/_virtual/_glob-assets_raw/info-circle-fill.svg.6580071d.js +4 -0
- package/dist/_virtual/_glob-assets_raw/light.css.637cb2f8.js +4 -0
- package/dist/_virtual/_glob-assets_raw/plus-lg.svg.294e9073.js +4 -0
- package/dist/_virtual/_glob-assets_raw/search.svg.0ba2012d.js +4 -0
- package/dist/_virtual/_glob-assets_raw/star-fill.svg.f24b5a2d.js +4 -0
- package/dist/_virtual/_glob-assets_raw/star.svg.4af61468.js +4 -0
- package/dist/_virtual/_glob-assets_raw/three-dots-vertical.svg.9fee78c5.js +4 -0
- package/dist/_virtual/_glob-assets_raw/three-dots.svg.6a7a5b23.js +4 -0
- package/dist/_virtual/_glob-assets_raw/x-lg.svg.f34b882c.js +4 -0
- package/dist/components/UDataElement.d.ts +44 -0
- package/dist/components/UDataElement.js +101 -0
- package/dist/components/UDataElement.styles.js +95 -0
- package/dist/components/UElement.d.ts +54 -0
- package/dist/components/UElement.js +83 -0
- package/dist/components/UElement.styles.js +67 -0
- package/dist/components/UFloatingElement.d.ts +125 -0
- package/dist/components/UFloatingElement.js +238 -0
- package/dist/components/UFloatingElement.styles.d.ts +9 -0
- package/dist/components/UFloatingElement.styles.js +46 -0
- package/dist/components/UFormControlElement.d.ts +57 -0
- package/dist/components/UFormControlElement.js +68 -0
- package/dist/components/UFormControlElement.styles.js +14 -0
- package/dist/components/UOverlayElement.d.ts +66 -0
- package/dist/components/UOverlayElement.js +123 -0
- package/dist/components/UOverlayElement.styles.d.ts +1 -0
- package/dist/components/UOverlayElement.styles.js +35 -0
- package/dist/components/alert/UAlert.d.ts +58 -3
- package/dist/components/alert/UAlert.js +115 -4
- package/dist/components/alert/UAlert.styles.js +73 -48
- package/dist/components/avatar/UAvatar.d.ts +27 -0
- package/dist/components/avatar/UAvatar.js +42 -0
- package/dist/components/avatar/UAvatar.styles.d.ts +1 -0
- package/dist/components/avatar/UAvatar.styles.js +45 -0
- package/dist/components/badge/UBadge.d.ts +28 -0
- package/dist/components/badge/UBadge.js +40 -0
- package/dist/components/badge/UBadge.styles.d.ts +1 -0
- package/dist/components/badge/UBadge.styles.js +113 -0
- package/dist/components/breadcrumb/UBreadcrumb.d.ts +24 -0
- package/dist/components/breadcrumb/UBreadcrumb.js +65 -0
- package/dist/components/breadcrumb/UBreadcrumb.styles.d.ts +1 -0
- package/dist/components/breadcrumb/UBreadcrumb.styles.js +37 -0
- package/dist/components/breadcrumb-item/UBreadcrumbItem.d.ts +30 -0
- package/dist/components/breadcrumb-item/UBreadcrumbItem.js +52 -0
- package/dist/components/breadcrumb-item/UBreadcrumbItem.styles.d.ts +1 -0
- package/dist/components/breadcrumb-item/UBreadcrumbItem.styles.js +41 -0
- package/dist/components/button/UButton.d.ts +46 -3
- package/dist/components/button/UButton.js +104 -4
- package/dist/components/button/UButton.styles.js +121 -48
- package/dist/components/button-group/UButtonGroup.d.ts +28 -0
- package/dist/components/button-group/UButtonGroup.js +93 -0
- package/dist/components/button-group/UButtonGroup.styles.d.ts +1 -0
- package/dist/components/button-group/UButtonGroup.styles.js +34 -0
- package/dist/components/card/UCard.d.ts +30 -3
- package/dist/components/card/UCard.js +61 -4
- package/dist/components/card/UCard.styles.js +13 -12
- package/dist/components/carousel/UCarousel.d.ts +65 -3
- package/dist/components/carousel/UCarousel.js +219 -2
- package/dist/components/carousel/UCarousel.styles.js +32 -33
- package/dist/components/checkbox/UCheckbox.d.ts +39 -0
- package/dist/components/checkbox/UCheckbox.js +88 -0
- package/dist/components/checkbox/UCheckbox.styles.d.ts +1 -0
- package/dist/components/checkbox/UCheckbox.styles.js +211 -0
- package/dist/components/chip/UChip.d.ts +43 -0
- package/dist/components/chip/UChip.js +103 -0
- package/dist/components/chip/UChip.styles.d.ts +1 -0
- package/dist/components/chip/UChip.styles.js +31 -0
- package/dist/components/dialog/UDialog.d.ts +29 -2
- package/dist/components/dialog/UDialog.js +66 -4
- package/dist/components/dialog/UDialog.styles.js +90 -39
- package/dist/components/divider/UDivider.d.ts +27 -2
- package/dist/components/divider/UDivider.js +45 -4
- package/dist/components/divider/UDivider.styles.js +80 -10
- package/dist/components/drawer/UDrawer.d.ts +25 -3
- package/dist/components/drawer/UDrawer.js +54 -4
- package/dist/components/drawer/UDrawer.styles.js +67 -60
- package/dist/components/field/UField.d.ts +31 -0
- package/dist/components/field/UField.js +64 -0
- package/dist/components/field/UField.styles.d.ts +1 -0
- package/dist/components/field/UField.styles.js +47 -0
- package/dist/components/form/UForm.d.ts +38 -2
- package/dist/components/form/UForm.js +105 -4
- package/dist/components/form/UForm.styles.js +5 -5
- package/dist/components/icon/UIcon.d.ts +23 -4
- package/dist/components/icon/UIcon.js +55 -4
- package/dist/components/icon/UIcon.styles.js +5 -5
- package/dist/components/icon-button/UIconButton.d.ts +48 -0
- package/dist/components/icon-button/UIconButton.js +88 -0
- package/dist/components/icon-button/UIconButton.styles.d.ts +1 -0
- package/dist/components/icon-button/UIconButton.styles.js +24 -0
- package/dist/components/input/UInput.d.ts +95 -3
- package/dist/components/input/UInput.js +258 -2
- package/dist/components/input/UInput.styles.js +120 -86
- package/dist/components/menu/UMenu.d.ts +41 -3
- package/dist/components/menu/UMenu.js +178 -4
- package/dist/components/menu/UMenu.styles.js +16 -30
- package/dist/components/menu-item/UMenuItem.d.ts +48 -2
- package/dist/components/menu-item/UMenuItem.js +159 -2
- package/dist/components/menu-item/UMenuItem.styles.js +120 -34
- package/dist/components/option/UOption.d.ts +42 -0
- package/dist/components/option/UOption.js +64 -0
- package/dist/components/option/UOption.styles.d.ts +1 -0
- package/dist/components/option/UOption.styles.js +132 -0
- package/dist/components/panel/UPanel.d.ts +22 -0
- package/dist/components/panel/UPanel.js +36 -0
- package/dist/components/panel/UPanel.styles.d.ts +1 -0
- package/dist/components/panel/UPanel.styles.js +14 -0
- package/dist/components/popover/UPopover.d.ts +69 -0
- package/dist/components/popover/UPopover.js +235 -0
- package/dist/components/popover/UPopover.styles.d.ts +1 -0
- package/dist/components/popover/UPopover.styles.js +9 -0
- package/dist/components/progress-bar/UProgressBar.d.ts +46 -2
- package/dist/components/progress-bar/UProgressBar.js +94 -2
- package/dist/components/progress-bar/UProgressBar.styles.js +110 -36
- package/dist/components/progress-ring/UProgressRing.d.ts +46 -3
- package/dist/components/progress-ring/UProgressRing.js +152 -2
- package/dist/components/progress-ring/UProgressRing.styles.js +88 -25
- package/dist/components/radio/URadio.d.ts +41 -0
- package/dist/components/radio/URadio.js +151 -0
- package/dist/components/radio/URadio.styles.d.ts +1 -0
- package/dist/components/radio/URadio.styles.js +111 -0
- package/dist/components/rating/URating.d.ts +48 -0
- package/dist/components/rating/URating.js +196 -0
- package/dist/components/rating/URating.styles.d.ts +1 -0
- package/dist/components/rating/URating.styles.js +55 -0
- package/dist/components/select/USelect.d.ts +70 -0
- package/dist/components/select/USelect.js +315 -0
- package/dist/components/select/USelect.styles.d.ts +1 -0
- package/dist/components/select/USelect.styles.js +200 -0
- package/dist/components/skeleton/USkeleton.d.ts +27 -3
- package/dist/components/skeleton/USkeleton.js +37 -4
- package/dist/components/skeleton/USkeleton.styles.js +15 -18
- package/dist/components/slider/USlider.d.ts +88 -0
- package/dist/components/slider/USlider.js +286 -0
- package/dist/components/slider/USlider.styles.d.ts +1 -0
- package/dist/components/slider/USlider.styles.js +125 -0
- package/dist/components/spinner/USpinner.d.ts +23 -2
- package/dist/components/spinner/USpinner.js +37 -3
- package/dist/components/spinner/USpinner.styles.js +34 -13
- package/dist/components/split-panel/USplitPanel.d.ts +49 -2
- package/dist/components/split-panel/USplitPanel.js +239 -3
- package/dist/components/split-panel/USplitPanel.styles.js +47 -15
- package/dist/components/switch/USwitch.d.ts +43 -0
- package/dist/components/switch/USwitch.js +80 -0
- package/dist/components/switch/USwitch.styles.d.ts +1 -0
- package/dist/components/switch/USwitch.styles.js +191 -0
- package/dist/components/tab/UTab.d.ts +31 -0
- package/dist/components/tab/UTab.js +68 -0
- package/dist/components/tab/UTab.styles.d.ts +1 -0
- package/dist/components/tab/UTab.styles.js +46 -0
- package/dist/components/tab-panel/UTabPanel.d.ts +45 -0
- package/dist/components/tab-panel/UTabPanel.js +150 -0
- package/dist/components/tab-panel/UTabPanel.styles.d.ts +1 -0
- package/dist/components/tab-panel/UTabPanel.styles.js +201 -0
- package/dist/components/tag/UTag.d.ts +26 -3
- package/dist/components/tag/UTag.js +41 -4
- package/dist/components/tag/UTag.styles.js +206 -60
- package/dist/components/textarea/UTextarea.d.ts +65 -0
- package/dist/components/textarea/UTextarea.js +145 -0
- package/dist/components/textarea/UTextarea.styles.d.ts +1 -0
- package/dist/components/textarea/UTextarea.styles.js +157 -0
- package/dist/components/tooltip/UTooltip.d.ts +28 -2
- package/dist/components/tooltip/UTooltip.js +104 -4
- package/dist/components/tooltip/UTooltip.styles.js +10 -12
- package/dist/components/tree/UTree.d.ts +62 -2
- package/dist/components/tree/UTree.js +308 -3
- package/dist/components/tree/UTree.styles.js +13 -19
- package/dist/components/tree-item/UTreeItem.d.ts +61 -2
- package/dist/components/tree-item/UTreeItem.js +191 -2
- package/dist/components/tree-item/UTreeItem.styles.js +96 -37
- package/dist/events/CheckEvent.d.ts +7 -0
- package/dist/events/CollapseEvent.d.ts +7 -0
- package/dist/events/ExpandEvent.d.ts +7 -0
- package/dist/events/HideEvent.d.ts +7 -0
- package/dist/events/NavigateEvent.d.ts +7 -0
- package/dist/events/PickEvent.d.ts +18 -0
- package/dist/events/RemoveEvent.d.ts +7 -0
- package/dist/events/ShiftEvent.d.ts +16 -0
- package/dist/events/ShowEvent.d.ts +7 -0
- package/dist/index.d.ts +41 -8
- package/dist/index.js +56 -46
- package/dist/react/UAlert.d.ts +13 -0
- package/dist/{react-components → react}/UAlert.js +5 -2
- package/dist/react/UAvatar.d.ts +9 -0
- package/dist/react/UAvatar.js +10 -0
- package/dist/react/UBadge.d.ts +9 -0
- package/dist/react/UBadge.js +10 -0
- package/dist/react/UBreadcrumb.d.ts +9 -0
- package/dist/react/UBreadcrumb.js +10 -0
- package/dist/react/UBreadcrumbItem.d.ts +11 -0
- package/dist/react/UBreadcrumbItem.js +12 -0
- package/dist/{react-components → react}/UButton.d.ts +3 -2
- package/dist/{react-components → react}/UButton.js +2 -2
- package/dist/react/UButtonGroup.d.ts +9 -0
- package/dist/react/UButtonGroup.js +10 -0
- package/dist/{react-components → react}/UCard.d.ts +3 -2
- package/dist/{react-components → react}/UCard.js +2 -2
- package/dist/{react-components → react}/UCarousel.d.ts +3 -2
- package/dist/{react-components → react}/UCarousel.js +2 -2
- package/dist/react/UCheckbox.d.ts +9 -0
- package/dist/react/UCheckbox.js +10 -0
- package/dist/react/UChip.d.ts +13 -0
- package/dist/react/UChip.js +13 -0
- package/dist/{react-components → react}/UDialog.d.ts +3 -2
- package/dist/{react-components → react}/UDialog.js +2 -2
- package/dist/{react-components → react}/UDivider.d.ts +3 -2
- package/dist/{react-components → react}/UDivider.js +2 -2
- package/dist/{react-components → react}/UDrawer.d.ts +3 -2
- package/dist/{react-components → react}/UDrawer.js +2 -2
- package/dist/react/UField.d.ts +9 -0
- package/dist/react/UField.js +10 -0
- package/dist/react/UForm.d.ts +10 -0
- package/dist/{react-components → react}/UForm.js +4 -2
- package/dist/{react-components → react}/UIcon.d.ts +3 -2
- package/dist/{react-components → react}/UIcon.js +2 -2
- package/dist/react/UIconButton.d.ts +9 -0
- package/dist/react/UIconButton.js +10 -0
- package/dist/react/UInput.d.ts +11 -0
- package/dist/{react-components → react}/UInput.js +5 -2
- package/dist/react/UMenu.d.ts +10 -0
- package/dist/{react-components → react}/UMenu.js +4 -2
- package/dist/react/UMenuItem.d.ts +11 -0
- package/dist/{react-components → react}/UMenuItem.js +4 -2
- package/dist/react/UOption.d.ts +9 -0
- package/dist/react/UOption.js +10 -0
- package/dist/react/UPanel.d.ts +9 -0
- package/dist/react/UPanel.js +10 -0
- package/dist/react/UPopover.d.ts +11 -0
- package/dist/react/UPopover.js +13 -0
- package/dist/react/UProgressBar.d.ts +9 -0
- package/dist/{react-components → react}/UProgressBar.js +2 -2
- package/dist/react/UProgressRing.d.ts +9 -0
- package/dist/{react-components → react}/UProgressRing.js +2 -2
- package/dist/react/URadio.d.ts +10 -0
- package/dist/react/URadio.js +12 -0
- package/dist/react/URating.d.ts +10 -0
- package/dist/react/URating.js +12 -0
- package/dist/react/USelect.d.ts +10 -0
- package/dist/react/USelect.js +12 -0
- package/dist/{react-components → react}/USkeleton.d.ts +3 -2
- package/dist/{react-components → react}/USkeleton.js +2 -2
- package/dist/react/USlider.d.ts +10 -0
- package/dist/react/USlider.js +12 -0
- package/dist/{react-components → react}/USpinner.d.ts +3 -2
- package/dist/{react-components → react}/USpinner.js +2 -2
- package/dist/react/USplitPanel.d.ts +13 -0
- package/dist/{react-components → react}/USplitPanel.js +6 -2
- package/dist/react/USwitch.d.ts +10 -0
- package/dist/react/USwitch.js +12 -0
- package/dist/react/UTab.d.ts +11 -0
- package/dist/react/UTab.js +12 -0
- package/dist/react/UTabPanel.d.ts +9 -0
- package/dist/react/UTabPanel.js +10 -0
- package/dist/{react-components → react}/UTag.d.ts +3 -2
- package/dist/{react-components → react}/UTag.js +2 -2
- package/dist/react/UTextarea.d.ts +11 -0
- package/dist/react/UTextarea.js +13 -0
- package/dist/react/UTooltip.d.ts +11 -0
- package/dist/{react-components → react}/UTooltip.js +5 -2
- package/dist/react/UTree.d.ts +10 -0
- package/dist/{react-components → react}/UTree.js +4 -2
- package/dist/react/UTreeItem.d.ts +17 -0
- package/dist/{react-components → react}/UTreeItem.js +7 -2
- package/dist/{react-components → react}/index.d.ts +40 -27
- package/dist/{react-components → react}/index.js +40 -20
- package/dist/{assets/styles → styles}/dark.css +68 -3
- package/dist/{assets/styles → styles}/light.css +68 -3
- package/dist/utilities/BrowserStorage.d.ts +2 -1
- package/dist/utilities/BrowserStorage.js +69 -86
- package/dist/utilities/Dialog.d.ts +83 -0
- package/dist/utilities/Dialog.js +141 -0
- package/dist/utilities/OverlayManager.d.ts +37 -0
- package/dist/utilities/OverlayManager.js +68 -0
- package/dist/utilities/Theme.js +134 -141
- package/dist/utilities/Toast.d.ts +45 -0
- package/dist/utilities/Toast.js +114 -0
- package/dist/utilities/converters.d.ts +44 -1
- package/dist/utilities/converters.js +112 -14
- package/dist/utilities/elements.d.ts +23 -0
- package/dist/utilities/elements.js +67 -16
- package/dist/utilities/icons.d.ts +67 -0
- package/dist/utilities/icons.js +200 -0
- package/dist/utilities/sanitizers.d.ts +35 -0
- package/dist/utilities/sanitizers.js +75 -0
- package/package.json +24 -21
- package/plugins/vite-plugin-glob-resolve.d.ts +12 -0
- package/plugins/vite-plugin-glob-resolve.js +66 -0
- package/plugins/vite-plugin-react-wrapper.d.ts +12 -0
- package/plugins/vite-plugin-react-wrapper.js +206 -0
- package/skills/iyulab-components/SKILL.md +138 -0
- package/skills/iyulab-components/references/components/alert.md +74 -0
- package/skills/iyulab-components/references/components/avatar.md +41 -0
- package/skills/iyulab-components/references/components/badge.md +38 -0
- package/skills/iyulab-components/references/components/breadcrumb.md +75 -0
- package/skills/iyulab-components/references/components/button-group.md +38 -0
- package/skills/iyulab-components/references/components/button.md +56 -0
- package/skills/iyulab-components/references/components/card.md +53 -0
- package/skills/iyulab-components/references/components/carousel.md +63 -0
- package/skills/iyulab-components/references/components/checkbox.md +70 -0
- package/skills/iyulab-components/references/components/chip.md +64 -0
- package/skills/iyulab-components/references/components/dialog.md +71 -0
- package/skills/iyulab-components/references/components/divider.md +56 -0
- package/skills/iyulab-components/references/components/drawer.md +63 -0
- package/skills/iyulab-components/references/components/field.md +42 -0
- package/skills/iyulab-components/references/components/form.md +68 -0
- package/skills/iyulab-components/references/components/icon-button.md +56 -0
- package/skills/iyulab-components/references/components/icon.md +49 -0
- package/skills/iyulab-components/references/components/input.md +95 -0
- package/skills/iyulab-components/references/components/menu.md +106 -0
- package/skills/iyulab-components/references/components/option.md +70 -0
- package/skills/iyulab-components/references/components/panel.md +38 -0
- package/skills/iyulab-components/references/components/popover.md +62 -0
- package/skills/iyulab-components/references/components/progress-bar.md +61 -0
- package/skills/iyulab-components/references/components/progress-ring.md +58 -0
- package/skills/iyulab-components/references/components/radio.md +67 -0
- package/skills/iyulab-components/references/components/rating.md +74 -0
- package/skills/iyulab-components/references/components/select.md +86 -0
- package/skills/iyulab-components/references/components/skeleton.md +46 -0
- package/skills/iyulab-components/references/components/slider.md +89 -0
- package/skills/iyulab-components/references/components/spinner.md +47 -0
- package/skills/iyulab-components/references/components/split-panel.md +65 -0
- package/skills/iyulab-components/references/components/switch.md +81 -0
- package/skills/iyulab-components/references/components/tab-panel.md +93 -0
- package/skills/iyulab-components/references/components/tag.md +55 -0
- package/skills/iyulab-components/references/components/textarea.md +67 -0
- package/skills/iyulab-components/references/components/tooltip.md +58 -0
- package/skills/iyulab-components/references/components/tree.md +128 -0
- package/skills/iyulab-components/references/extensions/data.md +60 -0
- package/skills/iyulab-components/references/extensions/element.md +57 -0
- package/skills/iyulab-components/references/extensions/floating.md +60 -0
- package/skills/iyulab-components/references/extensions/form-control.md +79 -0
- package/skills/iyulab-components/references/extensions/overlay.md +76 -0
- package/skills/iyulab-components/references/usage.md +216 -0
- package/skills/iyulab-components/references/utilities/browser-storage.md +54 -0
- package/skills/iyulab-components/references/utilities/converters.md +42 -0
- package/skills/iyulab-components/references/utilities/dialog.md +75 -0
- package/skills/iyulab-components/references/utilities/elements.md +55 -0
- package/skills/iyulab-components/references/utilities/icons.md +53 -0
- package/skills/iyulab-components/references/utilities/overlay-manager.md +34 -0
- package/skills/iyulab-components/references/utilities/sanitizers.md +32 -0
- package/skills/iyulab-components/references/utilities/theme.md +45 -0
- package/skills/iyulab-components/references/utilities/toast.md +58 -0
- package/dist/assets/icons/arrow-down.svg.js +0 -3
- package/dist/assets/icons/arrow-repeat.svg.js +0 -3
- package/dist/assets/icons/arrow-up.svg.js +0 -3
- package/dist/assets/icons/ban.svg.js +0 -3
- package/dist/assets/icons/bell-fill.svg.js +0 -3
- package/dist/assets/icons/box-arrow-up-right.svg.js +0 -3
- package/dist/assets/icons/check-circle-fill.svg.js +0 -3
- package/dist/assets/icons/check-lg.svg.js +0 -3
- package/dist/assets/icons/chevron-down.svg.js +0 -3
- package/dist/assets/icons/chevron-left.svg.js +0 -3
- package/dist/assets/icons/chevron-right.svg.js +0 -3
- package/dist/assets/icons/chevron-up.svg.js +0 -3
- package/dist/assets/icons/copy.svg.js +0 -3
- package/dist/assets/icons/dash-lg.svg.js +0 -3
- package/dist/assets/icons/exclamation-circle-fill.svg.js +0 -3
- package/dist/assets/icons/exclamation-triangle-fill.svg.js +0 -3
- package/dist/assets/icons/eye-slash.svg.js +0 -3
- package/dist/assets/icons/eye.svg.js +0 -3
- package/dist/assets/icons/file-earmark.svg.js +0 -3
- package/dist/assets/icons/flag.svg.js +0 -3
- package/dist/assets/icons/globe.svg.js +0 -3
- package/dist/assets/icons/hand-thumbs-down-fill.svg.js +0 -3
- package/dist/assets/icons/hand-thumbs-down.svg.js +0 -3
- package/dist/assets/icons/hand-thumbs-up-fill.svg.js +0 -3
- package/dist/assets/icons/hand-thumbs-up.svg.js +0 -3
- package/dist/assets/icons/info-circle-fill.svg.js +0 -3
- package/dist/assets/icons/lightbulb-fill.svg.js +0 -3
- package/dist/assets/icons/lightbulb-off.svg.js +0 -3
- package/dist/assets/icons/lightbulb.svg.js +0 -3
- package/dist/assets/icons/mic-fill.svg.js +0 -3
- package/dist/assets/icons/mic-mute-fill.svg.js +0 -3
- package/dist/assets/icons/paperclip.svg.js +0 -3
- package/dist/assets/icons/pencil-square.svg.js +0 -3
- package/dist/assets/icons/plus-lg.svg.js +0 -3
- package/dist/assets/icons/search.svg.js +0 -3
- package/dist/assets/icons/share.svg.js +0 -3
- package/dist/assets/icons/stop-circle.svg.js +0 -3
- package/dist/assets/icons/tools.svg.js +0 -3
- package/dist/assets/icons/x-lg.svg.js +0 -3
- package/dist/assets/styles/dark.css.js +0 -3
- package/dist/assets/styles/light.css.js +0 -3
- package/dist/components/BaseElement.d.ts +0 -33
- package/dist/components/BaseElement.js +0 -59
- package/dist/components/BaseElement.styles.js +0 -28
- package/dist/components/FloatingElement.d.ts +0 -104
- package/dist/components/FloatingElement.js +0 -195
- package/dist/components/FloatingElement.styles.js +0 -23
- package/dist/components/ModalElement.d.ts +0 -70
- package/dist/components/ModalElement.js +0 -144
- package/dist/components/ModalElement.styles.js +0 -29
- package/dist/components/alert/UAlert.component.d.ts +0 -40
- package/dist/components/alert/UAlert.component.js +0 -146
- package/dist/components/button/UButton.component.d.ts +0 -23
- package/dist/components/button/UButton.component.js +0 -72
- package/dist/components/card/UCard.component.d.ts +0 -21
- package/dist/components/card/UCard.component.js +0 -66
- package/dist/components/carousel/UCarousel.component.d.ts +0 -67
- package/dist/components/carousel/UCarousel.component.js +0 -243
- package/dist/components/dialog/UDialog.component.d.ts +0 -17
- package/dist/components/dialog/UDialog.component.js +0 -70
- package/dist/components/divider/UDivider.component.d.ts +0 -10
- package/dist/components/divider/UDivider.component.js +0 -30
- package/dist/components/drawer/UDrawer.component.d.ts +0 -18
- package/dist/components/drawer/UDrawer.component.js +0 -64
- package/dist/components/form/UForm.component.d.ts +0 -24
- package/dist/components/form/UForm.component.js +0 -76
- package/dist/components/icon/UIcon.component.d.ts +0 -29
- package/dist/components/icon/UIcon.component.js +0 -57
- package/dist/components/input/UInput.component.d.ts +0 -92
- package/dist/components/input/UInput.component.js +0 -267
- package/dist/components/menu/UMenu.component.d.ts +0 -67
- package/dist/components/menu/UMenu.component.js +0 -338
- package/dist/components/menu-item/UMenuItem.component.d.ts +0 -25
- package/dist/components/menu-item/UMenuItem.component.js +0 -111
- package/dist/components/progress-bar/UProgressBar.component.d.ts +0 -27
- package/dist/components/progress-bar/UProgressBar.component.js +0 -99
- package/dist/components/progress-ring/UProgressRing.component.d.ts +0 -33
- package/dist/components/progress-ring/UProgressRing.component.js +0 -114
- package/dist/components/skeleton/USkeleton.component.d.ts +0 -22
- package/dist/components/skeleton/USkeleton.component.js +0 -58
- package/dist/components/spinner/USpinner.component.d.ts +0 -9
- package/dist/components/spinner/USpinner.component.js +0 -22
- package/dist/components/split-panel/USplitPanel.component.d.ts +0 -44
- package/dist/components/split-panel/USplitPanel.component.js +0 -185
- package/dist/components/tag/UTag.component.d.ts +0 -23
- package/dist/components/tag/UTag.component.js +0 -72
- package/dist/components/tooltip/UTooltip.component.d.ts +0 -27
- package/dist/components/tooltip/UTooltip.component.js +0 -88
- package/dist/components/tree/UTree.component.d.ts +0 -37
- package/dist/components/tree/UTree.component.js +0 -120
- package/dist/components/tree-item/UTreeItem.component.d.ts +0 -41
- package/dist/components/tree-item/UTreeItem.component.js +0 -161
- package/dist/events/UChangeEvent.d.ts +0 -6
- package/dist/events/UHideEvent.d.ts +0 -6
- package/dist/events/UInputEvent.d.ts +0 -6
- package/dist/events/UResizeEvent.d.ts +0 -6
- package/dist/events/USelectEvent.d.ts +0 -6
- package/dist/events/UShowEvent.d.ts +0 -6
- package/dist/react-components/UAlert.d.ts +0 -8
- package/dist/react-components/UForm.d.ts +0 -8
- package/dist/react-components/UInput.d.ts +0 -8
- package/dist/react-components/UMenu.d.ts +0 -8
- package/dist/react-components/UMenuItem.d.ts +0 -8
- package/dist/react-components/UProgressBar.d.ts +0 -8
- package/dist/react-components/UProgressRing.d.ts +0 -8
- package/dist/react-components/USplitPanel.d.ts +0 -8
- package/dist/react-components/UTooltip.d.ts +0 -8
- package/dist/react-components/UTree.d.ts +0 -8
- package/dist/react-components/UTreeItem.d.ts +0 -8
- package/dist/utilities/IconRegistry.d.ts +0 -40
- package/dist/utilities/IconRegistry.js +0 -119
- package/dist/utilities/Notifier.d.ts +0 -31
- package/dist/utilities/Notifier.js +0 -79
- package/dist/utilities/decorators.d.ts +0 -28
- /package/dist/components/{BaseElement.styles.d.ts → UDataElement.styles.d.ts} +0 -0
- /package/dist/components/{FloatingElement.styles.d.ts → UElement.styles.d.ts} +0 -0
- /package/dist/components/{ModalElement.styles.d.ts → UFormControlElement.styles.d.ts} +0 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# u-input
|
|
2
|
+
|
|
3
|
+
```ts
|
|
4
|
+
import '@iyulab/components/dist/components/input/UInput.js';
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
**Tag:** `u-input`
|
|
8
|
+
|
|
9
|
+
Text input field with prefix/suffix slots and label. Add `u-option` children for combobox (autocomplete) mode. Form-associated.
|
|
10
|
+
|
|
11
|
+
```html
|
|
12
|
+
<u-input name="search" type="search" placeholder="Search..." clearable></u-input>
|
|
13
|
+
|
|
14
|
+
<!-- With icon prefix -->
|
|
15
|
+
<u-input name="email" type="email" label="Email" required>
|
|
16
|
+
<u-icon slot="prefix" lib="tabler" name="mail"></u-icon>
|
|
17
|
+
</u-input>
|
|
18
|
+
|
|
19
|
+
<!-- Combobox mode -->
|
|
20
|
+
<u-input name="country" placeholder="Select country">
|
|
21
|
+
<u-option value="us">United States</u-option>
|
|
22
|
+
<u-option value="kr">South Korea</u-option>
|
|
23
|
+
</u-input>
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Slots
|
|
29
|
+
|
|
30
|
+
| Name | Description |
|
|
31
|
+
|------|-------------|
|
|
32
|
+
| `prefix` | Leading content (icon, text) |
|
|
33
|
+
| *(default)* | `u-option` elements for combobox mode |
|
|
34
|
+
| `suffix` | Trailing content |
|
|
35
|
+
|
|
36
|
+
## Properties
|
|
37
|
+
|
|
38
|
+
| Property | Type | Default | Reflect | Description |
|
|
39
|
+
|----------|------|---------|---------|-------------|
|
|
40
|
+
| `variant` | `'outlined'\|'filled'\|'underlined'\|'borderless'` | `'outlined'` | ✓ | Visual style |
|
|
41
|
+
| `type` | `'text'\|'password'\|'email'\|'tel'\|'url'\|'search'\|'number'\|'date'\|'time'`… | `'text'` | — | Input type |
|
|
42
|
+
| `placeholder` | `string` | — | — | Placeholder text |
|
|
43
|
+
| `clearable` | `boolean` | `false` | ✓ | Show clear button |
|
|
44
|
+
| `minlength` | `number` | — | — | Minimum character count |
|
|
45
|
+
| `maxlength` | `number` | — | — | Maximum character count |
|
|
46
|
+
| `min` | `string` | — | — | Minimum value (number/date) |
|
|
47
|
+
| `max` | `string` | — | — | Maximum value |
|
|
48
|
+
| `step` | `number` | — | — | Step increment |
|
|
49
|
+
| `pattern` | `string` | — | — | Regex validation pattern |
|
|
50
|
+
| `autofocus` | `boolean` | `false` | — | Auto-focus on render |
|
|
51
|
+
| `autocomplete` | `AutoFill` | — | — | Browser autocomplete |
|
|
52
|
+
| `spellcheck` | `boolean` | `false` | — | Spellcheck |
|
|
53
|
+
| `disabled` | `boolean` | `false` | ✓ | Disabled |
|
|
54
|
+
| `readonly` | `boolean` | `false` | ✓ | Read-only |
|
|
55
|
+
| `required` | `boolean` | `false` | ✓ | Required |
|
|
56
|
+
| `invalid` | `boolean` | `false` | ✓ | Validation failed |
|
|
57
|
+
| `name` | `string` | — | — | Form field name |
|
|
58
|
+
| `value` | `string` | — | — | Current value |
|
|
59
|
+
| `label` | `string` | — | — | Field label |
|
|
60
|
+
| `description` | `string` | — | — | Helper text |
|
|
61
|
+
| `validationMessage` | `string` | — | — | Custom validation message |
|
|
62
|
+
|
|
63
|
+
## Events
|
|
64
|
+
|
|
65
|
+
| Event | Description |
|
|
66
|
+
|-------|-------------|
|
|
67
|
+
| `input` | Fires on every keystroke |
|
|
68
|
+
| `change` | Fires when value is committed |
|
|
69
|
+
|
|
70
|
+
## Methods
|
|
71
|
+
|
|
72
|
+
| Method | Description |
|
|
73
|
+
|--------|-------------|
|
|
74
|
+
| `validate()` | Validate; sets `invalid` |
|
|
75
|
+
| `reset()` | Clear value and validation state |
|
|
76
|
+
| `focus(options?)` | Focus the input |
|
|
77
|
+
| `blur()` | Blur the input |
|
|
78
|
+
|
|
79
|
+
## CSS Parts
|
|
80
|
+
|
|
81
|
+
| Part | Description |
|
|
82
|
+
|------|-------------|
|
|
83
|
+
| `field` | Outer field wrapper |
|
|
84
|
+
| `container` | Input area wrapper |
|
|
85
|
+
| `input` | Native `<input>` element |
|
|
86
|
+
| `popover` | Combobox dropdown |
|
|
87
|
+
|
|
88
|
+
## CSS Custom Properties
|
|
89
|
+
|
|
90
|
+
| Property | Description |
|
|
91
|
+
|----------|-------------|
|
|
92
|
+
| `--input-popover-min-width` | Combobox popover min-width |
|
|
93
|
+
| `--input-popover-max-width` | Combobox popover max-width |
|
|
94
|
+
| `--input-popover-min-height` | Combobox popover min-height |
|
|
95
|
+
| `--input-popover-max-height` | Combobox popover max-height |
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# u-menu / u-menu-item
|
|
2
|
+
|
|
3
|
+
```ts
|
|
4
|
+
import '@iyulab/components/dist/components/menu/UMenu.js';
|
|
5
|
+
import '@iyulab/components/dist/components/menu-item/UMenuItem.js';
|
|
6
|
+
```
|
|
7
|
+
|
|
8
|
+
**Tags:** `u-menu`, `u-menu-item`
|
|
9
|
+
|
|
10
|
+
Keyboard-navigable menu. Supports single/multiple selection, highlight or checkmark indicator, and nested sub-menus.
|
|
11
|
+
|
|
12
|
+
```html
|
|
13
|
+
<u-menu selection="single" indicator="check">
|
|
14
|
+
<u-menu-item value="home">Home</u-menu-item>
|
|
15
|
+
<u-menu-item value="about">About</u-menu-item>
|
|
16
|
+
<u-divider></u-divider>
|
|
17
|
+
<u-menu-item value="settings">
|
|
18
|
+
<u-icon slot="prefix" lib="tabler" name="settings"></u-icon>
|
|
19
|
+
Settings
|
|
20
|
+
<!-- Nested sub-menu -->
|
|
21
|
+
<u-menu slot="children">
|
|
22
|
+
<u-menu-item value="profile">Profile</u-menu-item>
|
|
23
|
+
<u-menu-item value="security">Security</u-menu-item>
|
|
24
|
+
</u-menu>
|
|
25
|
+
</u-menu-item>
|
|
26
|
+
</u-menu>
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## u-menu
|
|
32
|
+
|
|
33
|
+
### Slots
|
|
34
|
+
|
|
35
|
+
| Name | Description |
|
|
36
|
+
|------|-------------|
|
|
37
|
+
| *(default)* | `u-menu-item` or `u-divider` elements |
|
|
38
|
+
|
|
39
|
+
### Properties
|
|
40
|
+
|
|
41
|
+
| Property | Type | Default | Reflect | Description |
|
|
42
|
+
|----------|------|---------|---------|-------------|
|
|
43
|
+
| `selection` | `'none'\|'single'\|'multiple'` | `'none'` | ✓ | Selection mode |
|
|
44
|
+
| `indicator` | `'highlight'\|'check'` | `'highlight'` | ✓ | Selected item indicator style |
|
|
45
|
+
| `align` | `'left'\|'center'\|'right'` | `'left'` | ✓ | Item text alignment |
|
|
46
|
+
| `loop` | `boolean` | `false` | ✓ | Keyboard navigation wraps around |
|
|
47
|
+
| `inline` | `boolean` | `false` | ✓ | Horizontal layout |
|
|
48
|
+
| `borderless` | `boolean` | `false` | ✓ | Remove border |
|
|
49
|
+
|
|
50
|
+
### Events
|
|
51
|
+
|
|
52
|
+
| Event | Description |
|
|
53
|
+
|-------|-------------|
|
|
54
|
+
| `change` | Fires when selection changes |
|
|
55
|
+
|
|
56
|
+
### Getters
|
|
57
|
+
|
|
58
|
+
| Getter | Type | Description |
|
|
59
|
+
|--------|------|-------------|
|
|
60
|
+
| `items` | `readonly UMenuItem[]` | All direct menu items |
|
|
61
|
+
| `selectedItems` | `UMenuItem[]` | Currently selected items |
|
|
62
|
+
|
|
63
|
+
### CSS Custom Properties
|
|
64
|
+
|
|
65
|
+
| Property | Description |
|
|
66
|
+
|----------|-------------|
|
|
67
|
+
| `--menu-indent-size` | Indentation per nesting level |
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## u-menu-item
|
|
72
|
+
|
|
73
|
+
### Slots
|
|
74
|
+
|
|
75
|
+
| Name | Description |
|
|
76
|
+
|------|-------------|
|
|
77
|
+
| `prefix` | Leading content |
|
|
78
|
+
| *(default)* | Item label |
|
|
79
|
+
| `suffix` | Trailing content |
|
|
80
|
+
| `children` | Nested `u-menu` for sub-menu |
|
|
81
|
+
|
|
82
|
+
### Properties
|
|
83
|
+
|
|
84
|
+
| Property | Type | Default | Reflect | Description |
|
|
85
|
+
|----------|------|---------|---------|-------------|
|
|
86
|
+
| `value` | `string` | `''` | — | Unique identifier |
|
|
87
|
+
| `disabled` | `boolean` | `false` | ✓ | Disable the item |
|
|
88
|
+
| `selected` | `boolean` | `false` | ✓ | Selected state |
|
|
89
|
+
| `expanded` | `boolean` | `false` | ✓ | Sub-menu expanded |
|
|
90
|
+
| `indicator` | `'highlight'\|'check'` | `'highlight'` | ✓ | Selection indicator |
|
|
91
|
+
| `align` | `'left'\|'center'\|'right'` | `'left'` | ✓ | Text alignment |
|
|
92
|
+
|
|
93
|
+
### Events
|
|
94
|
+
|
|
95
|
+
| Event | Description |
|
|
96
|
+
|-------|-------------|
|
|
97
|
+
| `pick` | Fires when item (with no children) is selected |
|
|
98
|
+
|
|
99
|
+
### CSS Parts
|
|
100
|
+
|
|
101
|
+
| Part | Description |
|
|
102
|
+
|------|-------------|
|
|
103
|
+
| `header` | Item header row |
|
|
104
|
+
| `content` | Label content area |
|
|
105
|
+
| `submenu` | Inline sub-menu wrapper |
|
|
106
|
+
| `popover` | Popover sub-menu wrapper |
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# u-option
|
|
2
|
+
|
|
3
|
+
```ts
|
|
4
|
+
import '@iyulab/components/dist/components/option/UOption.js';
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
**Tag:** `u-option`
|
|
8
|
+
|
|
9
|
+
Selectable option item. Used inside `u-select`, `u-radio`, and `u-input` (combobox mode).
|
|
10
|
+
|
|
11
|
+
```html
|
|
12
|
+
<!-- Inside u-select -->
|
|
13
|
+
<u-select name="color">
|
|
14
|
+
<u-option value="red">Red</u-option>
|
|
15
|
+
<u-option value="blue" selected>Blue</u-option>
|
|
16
|
+
<u-option value="green" disabled>Green</u-option>
|
|
17
|
+
</u-select>
|
|
18
|
+
|
|
19
|
+
<!-- With prefix icon -->
|
|
20
|
+
<u-option value="admin">
|
|
21
|
+
<u-icon slot="prefix" lib="tabler" name="shield"></u-icon>
|
|
22
|
+
Admin
|
|
23
|
+
</u-option>
|
|
24
|
+
|
|
25
|
+
<!-- With marker -->
|
|
26
|
+
<u-option value="check" marker="check">With checkmark</u-option>
|
|
27
|
+
<u-option value="radio" marker="radio">Radio style</u-option>
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## Slots
|
|
33
|
+
|
|
34
|
+
| Name | Description |
|
|
35
|
+
|------|-------------|
|
|
36
|
+
| `prefix` | Leading content |
|
|
37
|
+
| *(default)* | Option label |
|
|
38
|
+
| `suffix` | Trailing content |
|
|
39
|
+
|
|
40
|
+
## Properties
|
|
41
|
+
|
|
42
|
+
| Property | Type | Default | Reflect | Description |
|
|
43
|
+
|----------|------|---------|---------|-------------|
|
|
44
|
+
| `value` | `string` | `''` | — | Submitted value |
|
|
45
|
+
| `disabled` | `boolean` | `false` | ✓ | Disable the option |
|
|
46
|
+
| `selected` | `boolean` | `false` | ✓ | Selected state |
|
|
47
|
+
| `marker` | `'radio'\|'check'` | — | ✓ | Show leading marker icon |
|
|
48
|
+
|
|
49
|
+
## Methods
|
|
50
|
+
|
|
51
|
+
| Method | Returns | Description |
|
|
52
|
+
|--------|---------|-------------|
|
|
53
|
+
| `getText()` | `string` | Returns the visible text content of the option |
|
|
54
|
+
|
|
55
|
+
## CSS Parts
|
|
56
|
+
|
|
57
|
+
| Part | Description |
|
|
58
|
+
|------|-------------|
|
|
59
|
+
| `content` | Main content wrapper |
|
|
60
|
+
|
|
61
|
+
## CSS Custom Properties
|
|
62
|
+
|
|
63
|
+
| Property | Description |
|
|
64
|
+
|----------|-------------|
|
|
65
|
+
| `--option-color-interactive` | Text color on hover |
|
|
66
|
+
| `--option-background-color-interactive` | Background on hover |
|
|
67
|
+
| `--option-color-active` | Text color when selected |
|
|
68
|
+
| `--option-background-color-active` | Background when selected |
|
|
69
|
+
| `--option-color-active-interactive` | Text color when selected + hovered |
|
|
70
|
+
| `--option-background-color-active-interactive` | Background when selected + hovered |
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# u-panel
|
|
2
|
+
|
|
3
|
+
```ts
|
|
4
|
+
import '@iyulab/components/dist/components/panel/UPanel.js';
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
**Tag:** `u-panel`
|
|
8
|
+
|
|
9
|
+
General-purpose content panel. Matches a tab or tree node when using `value`. Supports optional collapsing.
|
|
10
|
+
|
|
11
|
+
```html
|
|
12
|
+
<!-- Standalone collapsible panel -->
|
|
13
|
+
<u-panel collapsible>Content inside panel</u-panel>
|
|
14
|
+
|
|
15
|
+
<!-- Inside u-tab-panel (matched by value) -->
|
|
16
|
+
<u-tab-panel>
|
|
17
|
+
<u-tab value="tab1">Tab 1</u-tab>
|
|
18
|
+
<u-tab value="tab2">Tab 2</u-tab>
|
|
19
|
+
<u-panel value="tab1">Content for Tab 1</u-panel>
|
|
20
|
+
<u-panel value="tab2">Content for Tab 2</u-panel>
|
|
21
|
+
</u-tab-panel>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Slots
|
|
27
|
+
|
|
28
|
+
| Name | Description |
|
|
29
|
+
|------|-------------|
|
|
30
|
+
| *(default)* | Panel content |
|
|
31
|
+
|
|
32
|
+
## Properties
|
|
33
|
+
|
|
34
|
+
| Property | Type | Default | Reflect | Description |
|
|
35
|
+
|----------|------|---------|---------|-------------|
|
|
36
|
+
| `value` | `string` | `''` | ✓ | Identifier used for tab/tree matching |
|
|
37
|
+
| `disabled` | `boolean` | `false` | ✓ | Disable the panel |
|
|
38
|
+
| `collapsible` | `boolean` | `false` | ✓ | Allow the panel to collapse |
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# u-popover
|
|
2
|
+
|
|
3
|
+
```ts
|
|
4
|
+
import '@iyulab/components/dist/components/popover/UPopover.js';
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
**Tag:** `u-popover`
|
|
8
|
+
|
|
9
|
+
Anchored floating panel attached to a `for` target element. Trigger and dismiss behavior are fully configurable.
|
|
10
|
+
|
|
11
|
+
```html
|
|
12
|
+
<u-button id="btn">Open Popover</u-button>
|
|
13
|
+
|
|
14
|
+
<u-popover for="#btn" placement="bottom" trigger="click">
|
|
15
|
+
<div style="padding: 1rem;">Popover content</div>
|
|
16
|
+
</u-popover>
|
|
17
|
+
|
|
18
|
+
<!-- Hover tooltip-like -->
|
|
19
|
+
<u-popover for="#btn" trigger="hover" placement="top" shift arrow>
|
|
20
|
+
Quick info
|
|
21
|
+
</u-popover>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Slots
|
|
27
|
+
|
|
28
|
+
| Name | Description |
|
|
29
|
+
|------|-------------|
|
|
30
|
+
| *(default)* | Popover content |
|
|
31
|
+
|
|
32
|
+
## Properties
|
|
33
|
+
|
|
34
|
+
Inherits all `UFloatingElement` properties (see [floating.md](../extensions/floating.md)), plus:
|
|
35
|
+
|
|
36
|
+
| Property | Type | Default | Reflect | Description |
|
|
37
|
+
|----------|------|---------|---------|-------------|
|
|
38
|
+
| `for` | `string` | — | ✓ | CSS selector of the anchor element |
|
|
39
|
+
| `open` | `boolean` | `false` | ✓ | Visibility state |
|
|
40
|
+
| `disabled` | `boolean` | `false` | ✓ | Disable opening |
|
|
41
|
+
| `placement` | `Placement` | — | — | Preferred placement (`top`, `bottom`, `left`, `right`, `*-start`, `*-end`) |
|
|
42
|
+
| `offset` | `OffsetOptions` | `0` | — | Distance from anchor |
|
|
43
|
+
| `shift` | `boolean` | `false` | — | Auto-shift to stay in viewport |
|
|
44
|
+
| `arrow` | `boolean` | `false` | — | Show arrow pointing to anchor |
|
|
45
|
+
| `showDelay` | `number` | `0` | — | Open delay in ms |
|
|
46
|
+
| `hideDelay` | `number` | `0` | — | Close delay in ms |
|
|
47
|
+
| `trigger` | `'click'\|'contextmenu'\|'hover'\|'focus'\|'manual'` | `'click'` | ✓ | Open trigger |
|
|
48
|
+
| `dismiss` | `string[]` | `['click','escape','scroll','resize']` | ✓ | Close triggers |
|
|
49
|
+
| `autofocus` | `boolean` | `false` | ✓ | Focus first focusable element on open |
|
|
50
|
+
|
|
51
|
+
## Events
|
|
52
|
+
|
|
53
|
+
| Event | Cancelable | Description |
|
|
54
|
+
|-------|------------|-------------|
|
|
55
|
+
| `show` | ✓ | Before popover opens |
|
|
56
|
+
| `hide` | ✓ | Before popover closes |
|
|
57
|
+
|
|
58
|
+
## Methods
|
|
59
|
+
|
|
60
|
+
| Method | Description |
|
|
61
|
+
|--------|-------------|
|
|
62
|
+
| `focusTo(index)` | Move focus to nth focusable element inside popover |
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# u-progress-bar
|
|
2
|
+
|
|
3
|
+
```ts
|
|
4
|
+
import '@iyulab/components/dist/components/progress-bar/UProgressBar.js';
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
**Tag:** `u-progress-bar`
|
|
8
|
+
|
|
9
|
+
Linear progress indicator. Supports buffer, segments, striped effect, and indeterminate state.
|
|
10
|
+
|
|
11
|
+
```html
|
|
12
|
+
<u-progress-bar value="60"></u-progress-bar>
|
|
13
|
+
|
|
14
|
+
<u-progress-bar value="40" buffer="70" status="info"></u-progress-bar>
|
|
15
|
+
|
|
16
|
+
<u-progress-bar value="30" striped rounded indeterminate></u-progress-bar>
|
|
17
|
+
|
|
18
|
+
<!-- Segmented -->
|
|
19
|
+
<u-progress-bar value="75" segments="5" status="success"></u-progress-bar>
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Slots
|
|
25
|
+
|
|
26
|
+
| Name | Description |
|
|
27
|
+
|------|-------------|
|
|
28
|
+
| *(default)* | Content overlaid on top of the bar |
|
|
29
|
+
|
|
30
|
+
## Properties
|
|
31
|
+
|
|
32
|
+
| Property | Type | Default | Description |
|
|
33
|
+
|----------|------|---------|-------------|
|
|
34
|
+
| `value` | `number` | `0` | Current progress value |
|
|
35
|
+
| `min` | `number` | `0` | Minimum value |
|
|
36
|
+
| `max` | `number` | `100` | Maximum value |
|
|
37
|
+
| `buffer` | `number` | — | Buffer level (secondary fill) |
|
|
38
|
+
| `indeterminate` | `boolean` | `false` | Animated indeterminate state |
|
|
39
|
+
| `striped` | `boolean` | `false` | Striped fill pattern |
|
|
40
|
+
| `rounded` | `boolean` | `false` | Rounded bar ends |
|
|
41
|
+
| `status` | `'default'\|'success'\|'warning'\|'error'\|'info'` | `'default'` | Color preset |
|
|
42
|
+
| `segments` | `number` | `0` | Split into N segments |
|
|
43
|
+
| `segmentGap` | `number` | `3` | Gap between segments in px |
|
|
44
|
+
|
|
45
|
+
## CSS Parts
|
|
46
|
+
|
|
47
|
+
| Part | Description |
|
|
48
|
+
|------|-------------|
|
|
49
|
+
| `buffer` | Buffer fill track |
|
|
50
|
+
| `indicator` | Progress fill |
|
|
51
|
+
| `segments` | Segment dividers overlay |
|
|
52
|
+
| `content` | Default slot wrapper |
|
|
53
|
+
|
|
54
|
+
## CSS Custom Properties
|
|
55
|
+
|
|
56
|
+
| Property | Description |
|
|
57
|
+
|----------|-------------|
|
|
58
|
+
| `--progress-bar-height` | Bar height |
|
|
59
|
+
| `--progress-bar-color` | Fill color |
|
|
60
|
+
| `--progress-bar-track-color` | Track (background) color |
|
|
61
|
+
| `--progress-bar-buffer-color` | Buffer fill color |
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# u-progress-ring
|
|
2
|
+
|
|
3
|
+
```ts
|
|
4
|
+
import '@iyulab/components/dist/components/progress-ring/UProgressRing.js';
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
**Tag:** `u-progress-ring`
|
|
8
|
+
|
|
9
|
+
Circular progress indicator. Supports buffer, segments, and indeterminate state.
|
|
10
|
+
|
|
11
|
+
```html
|
|
12
|
+
<u-progress-ring value="75"></u-progress-ring>
|
|
13
|
+
|
|
14
|
+
<u-progress-ring value="50" status="success" rounded>
|
|
15
|
+
50%
|
|
16
|
+
</u-progress-ring>
|
|
17
|
+
|
|
18
|
+
<u-progress-ring indeterminate></u-progress-ring>
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## Slots
|
|
24
|
+
|
|
25
|
+
| Name | Description |
|
|
26
|
+
|------|-------------|
|
|
27
|
+
| *(default)* | Content rendered in the center of the ring |
|
|
28
|
+
|
|
29
|
+
## Properties
|
|
30
|
+
|
|
31
|
+
| Property | Type | Default | Description |
|
|
32
|
+
|----------|------|---------|-------------|
|
|
33
|
+
| `value` | `number` | `0` | Current progress value |
|
|
34
|
+
| `min` | `number` | `0` | Minimum value |
|
|
35
|
+
| `max` | `number` | `100` | Maximum value |
|
|
36
|
+
| `buffer` | `number` | — | Buffer level |
|
|
37
|
+
| `indeterminate` | `boolean` | `false` | Animated indeterminate state |
|
|
38
|
+
| `rounded` | `boolean` | `false` | Round stroke line caps |
|
|
39
|
+
| `status` | `'default'\|'success'\|'warning'\|'error'\|'info'` | `'default'` | Color preset |
|
|
40
|
+
| `segments` | `number` | `0` | Split into N arc segments |
|
|
41
|
+
| `segmentGap` | `number` | `2` | Gap between segments (path length units) |
|
|
42
|
+
|
|
43
|
+
## CSS Parts
|
|
44
|
+
|
|
45
|
+
| Part | Description |
|
|
46
|
+
|------|-------------|
|
|
47
|
+
| `svg` | Root SVG element |
|
|
48
|
+
| `content` | Center slot wrapper |
|
|
49
|
+
|
|
50
|
+
## CSS Custom Properties
|
|
51
|
+
|
|
52
|
+
| Property | Description |
|
|
53
|
+
|----------|-------------|
|
|
54
|
+
| `--progress-ring-size` | Outer diameter |
|
|
55
|
+
| `--progress-ring-color` | Arc fill color |
|
|
56
|
+
| `--progress-ring-track-width` | Stroke width |
|
|
57
|
+
| `--progress-ring-track-color` | Track (background arc) color |
|
|
58
|
+
| `--progress-ring-buffer-color` | Buffer arc color |
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# u-radio
|
|
2
|
+
|
|
3
|
+
```ts
|
|
4
|
+
import '@iyulab/components/dist/components/radio/URadio.js';
|
|
5
|
+
import '@iyulab/components/dist/components/option/UOption.js';
|
|
6
|
+
```
|
|
7
|
+
|
|
8
|
+
**Tag:** `u-radio`
|
|
9
|
+
|
|
10
|
+
Radio group built from `u-option` children. Form-associated.
|
|
11
|
+
|
|
12
|
+
```html
|
|
13
|
+
<u-radio name="size" value="md">
|
|
14
|
+
<u-option value="sm">Small</u-option>
|
|
15
|
+
<u-option value="md">Medium</u-option>
|
|
16
|
+
<u-option value="lg">Large</u-option>
|
|
17
|
+
</u-radio>
|
|
18
|
+
|
|
19
|
+
<!-- Button style, horizontal -->
|
|
20
|
+
<u-radio name="plan" type="button" orientation="horizontal" variant="outlined">
|
|
21
|
+
<u-option value="free">Free</u-option>
|
|
22
|
+
<u-option value="pro">Pro</u-option>
|
|
23
|
+
<u-option value="enterprise">Enterprise</u-option>
|
|
24
|
+
</u-radio>
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## Slots
|
|
30
|
+
|
|
31
|
+
| Name | Description |
|
|
32
|
+
|------|-------------|
|
|
33
|
+
| *(default)* | `u-option` elements |
|
|
34
|
+
|
|
35
|
+
## Properties
|
|
36
|
+
|
|
37
|
+
| Property | Type | Default | Reflect | Description |
|
|
38
|
+
|----------|------|---------|---------|-------------|
|
|
39
|
+
| `value` | `string` | — | — | Currently selected value |
|
|
40
|
+
| `type` | `'default'\|'button'` | `'default'` | ✓ | `button` renders options as toggle buttons |
|
|
41
|
+
| `variant` | `'filled'\|'outlined'` | `'filled'` | ✓ | Visual style |
|
|
42
|
+
| `orientation` | `'vertical'\|'horizontal'` | `'vertical'` | ✓ | Layout direction |
|
|
43
|
+
| `disabled` | `boolean` | `false` | ✓ | Disable all options |
|
|
44
|
+
| `readonly` | `boolean` | `false` | ✓ | Read-only |
|
|
45
|
+
| `required` | `boolean` | `false` | ✓ | Required |
|
|
46
|
+
| `invalid` | `boolean` | `false` | ✓ | Validation failed |
|
|
47
|
+
| `name` | `string` | — | — | Form field name |
|
|
48
|
+
|
|
49
|
+
## Events
|
|
50
|
+
|
|
51
|
+
| Event | Description |
|
|
52
|
+
|-------|-------------|
|
|
53
|
+
| `change` | Fires when selection changes |
|
|
54
|
+
|
|
55
|
+
## Methods
|
|
56
|
+
|
|
57
|
+
| Method | Description |
|
|
58
|
+
|--------|-------------|
|
|
59
|
+
| `validate()` | Validate; sets `invalid` |
|
|
60
|
+
| `reset()` | Reset selection |
|
|
61
|
+
|
|
62
|
+
## CSS Parts
|
|
63
|
+
|
|
64
|
+
| Part | Description |
|
|
65
|
+
|------|-------------|
|
|
66
|
+
| `field` | Outer field wrapper |
|
|
67
|
+
| `container` | Options container |
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# u-rating
|
|
2
|
+
|
|
3
|
+
```ts
|
|
4
|
+
import '@iyulab/components/dist/components/rating/URating.js';
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
**Tag:** `u-rating`
|
|
8
|
+
|
|
9
|
+
Star/custom-symbol rating input. Supports fractional precision and custom symbols via slots. Form-associated.
|
|
10
|
+
|
|
11
|
+
```html
|
|
12
|
+
<u-rating name="score" value="3"></u-rating>
|
|
13
|
+
|
|
14
|
+
<!-- Half-star precision -->
|
|
15
|
+
<u-rating name="score" value="3.5" precision="0.5" max="5"></u-rating>
|
|
16
|
+
|
|
17
|
+
<!-- Custom symbols -->
|
|
18
|
+
<u-rating name="priority" max="3">
|
|
19
|
+
<u-icon slot="symbol" lib="tabler" name="heart:filled"></u-icon>
|
|
20
|
+
<u-icon slot="symbol-off" lib="tabler" name="heart"></u-icon>
|
|
21
|
+
</u-rating>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Slots
|
|
27
|
+
|
|
28
|
+
| Name | Description |
|
|
29
|
+
|------|-------------|
|
|
30
|
+
| `symbol` | Active (filled) symbol |
|
|
31
|
+
| `symbol-off` | Inactive (empty) symbol |
|
|
32
|
+
|
|
33
|
+
## Properties
|
|
34
|
+
|
|
35
|
+
| Property | Type | Default | Description |
|
|
36
|
+
|----------|------|---------|-------------|
|
|
37
|
+
| `value` | `number` | — | Current rating value |
|
|
38
|
+
| `min` | `number` | `0` | Minimum value |
|
|
39
|
+
| `max` | `number` | `5` | Maximum value (= number of symbols) |
|
|
40
|
+
| `precision` | `number` | `1` | Step size (e.g. `0.5` for half stars) |
|
|
41
|
+
| `disabled` | `boolean` | `false` | Disable interaction |
|
|
42
|
+
| `readonly` | `boolean` | `false` | Read-only |
|
|
43
|
+
| `required` | `boolean` | `false` | Required |
|
|
44
|
+
| `invalid` | `boolean` | `false` | Validation failed |
|
|
45
|
+
| `name` | `string` | — | Form field name |
|
|
46
|
+
|
|
47
|
+
## Events
|
|
48
|
+
|
|
49
|
+
| Event | Description |
|
|
50
|
+
|-------|-------------|
|
|
51
|
+
| `change` | Fires when value changes |
|
|
52
|
+
|
|
53
|
+
## Methods
|
|
54
|
+
|
|
55
|
+
| Method | Description |
|
|
56
|
+
|--------|-------------|
|
|
57
|
+
| `validate()` | Validate; sets `invalid` |
|
|
58
|
+
| `reset()` | Reset value |
|
|
59
|
+
|
|
60
|
+
## CSS Parts
|
|
61
|
+
|
|
62
|
+
| Part | Description |
|
|
63
|
+
|------|-------------|
|
|
64
|
+
| `field` | Outer wrapper |
|
|
65
|
+
| `container` | Symbols container |
|
|
66
|
+
| `symbol` | Individual symbol wrapper |
|
|
67
|
+
| `symbol-fg` | Filled portion overlay |
|
|
68
|
+
|
|
69
|
+
## CSS Custom Properties
|
|
70
|
+
|
|
71
|
+
| Property | Description |
|
|
72
|
+
|----------|-------------|
|
|
73
|
+
| `--rating-symbol-color` | Active symbol color |
|
|
74
|
+
| `--rating-symbol-off-color` | Inactive symbol color |
|