@rimelight/ui 0.0.36 → 0.0.38
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/LICENSE +21 -21
- package/README.md +6 -4
- package/package.json +30 -45
- package/src/components/3d-hover/3d-hover.theme.ts +13 -0
- package/src/components/3d-hover/RLA3dHover.astro +21 -0
- package/src/components/accordion/RLAAccordion.astro +97 -0
- package/src/components/accordion/accordion.theme.ts +39 -0
- package/src/components/app/RLAApp.astro +21 -0
- package/src/components/app/app.theme.ts +13 -0
- package/src/components/aspect-ratio/RLAAspectRatio.astro +27 -0
- package/src/components/aspect-ratio/aspect-ratio.theme.ts +13 -0
- package/src/components/audio/RLAAudio.astro +26 -0
- package/src/components/audio/audio.theme.ts +13 -0
- package/src/components/avatar/RLAAvatar.astro +136 -0
- package/src/components/avatar/avatar.theme.ts +84 -0
- package/src/components/avatar/avatar.ts +76 -0
- package/src/components/avatar-group/RLAAvatarGroup.astro +23 -0
- package/src/components/avatar-group/avatar-group.theme.ts +12 -0
- package/src/components/badge/RLABadge.astro +36 -0
- package/src/components/badge/RLVBadge.vue +40 -0
- package/src/components/badge/badge.theme.ts +171 -0
- package/src/components/badge/badge.ts +33 -0
- package/src/components/banner/RLABanner.astro +136 -0
- package/src/components/banner/banner.theme.ts +49 -0
- package/src/components/breadcrumb/RLABreadcrumb.astro +62 -0
- package/src/components/breadcrumb/breadcrumb.theme.ts +17 -0
- package/src/components/browser-mockup/RLABrowserMockup.astro +21 -0
- package/src/components/browser-mockup/browser-mockup.theme.ts +13 -0
- package/src/components/button/RLAButton.astro +177 -0
- package/src/components/button/RLVButton.vue +108 -0
- package/src/components/button/button.theme.ts +226 -0
- package/src/components/button/button.ts +74 -0
- package/src/components/calendar/RLACalendar.astro +21 -0
- package/src/components/calendar/calendar.theme.ts +13 -0
- package/src/components/callout/RLACallout.astro +113 -0
- package/src/components/callout/callout.theme.ts +107 -0
- package/src/components/callout/callout.ts +37 -0
- package/src/components/card/RLACard.astro +77 -0
- package/src/components/card/RLVCard.vue +85 -0
- package/src/components/card/card.theme.ts +50 -0
- package/src/components/carousel/RLACarousel.astro +285 -0
- package/src/components/carousel/carousel.theme.ts +34 -0
- package/src/components/chart/RLAChart.astro +225 -0
- package/src/components/chart/chart.theme.ts +22 -0
- package/src/components/chart/chart.ts +39 -0
- package/src/components/chat/RLAChat.astro +21 -0
- package/src/components/chat/chat.theme.ts +13 -0
- package/src/components/chat-message/RLAChatMessage.astro +21 -0
- package/src/components/chat-message/chat-message.theme.ts +13 -0
- package/src/components/chat-messages/RLAChatMessages.astro +21 -0
- package/src/components/chat-messages/chat-messages.theme.ts +13 -0
- package/src/components/chat-palette/RLAChatPalette.astro +21 -0
- package/src/components/chat-palette/chat-palette.theme.ts +13 -0
- package/src/components/chat-prompt/RLAChatPrompt.astro +21 -0
- package/src/components/chat-prompt/chat-prompt.theme.ts +13 -0
- package/src/components/chat-prompt-submit/RLAChatPromptSubmit.astro +21 -0
- package/src/components/chat-prompt-submit/chat-prompt-submit.theme.ts +13 -0
- package/src/components/chat-reasoning/RLAChatReasoning.astro +21 -0
- package/src/components/chat-reasoning/chat-reasoning.theme.ts +13 -0
- package/src/components/chat-shimmer/RLAChatShimmer.astro +21 -0
- package/src/components/chat-shimmer/chat-shimmer.theme.ts +13 -0
- package/src/components/chat-tool/RLAChatTool.astro +21 -0
- package/src/components/chat-tool/chat-tool.theme.ts +13 -0
- package/src/components/checkbox/RLACheckbox.astro +53 -0
- package/src/components/checkbox/checkbox.theme.ts +49 -0
- package/src/components/checkbox/checkbox.ts +41 -0
- package/src/components/chip/RLAChip.astro +57 -0
- package/src/components/chip/chip.theme.ts +76 -0
- package/src/components/chip/chip.ts +17 -0
- package/src/components/collapsible/RLACollapsible.astro +40 -0
- package/src/components/collapsible/collapsible.theme.ts +22 -0
- package/src/components/collapsible/collapsible.ts +32 -0
- package/src/components/color-area/RLAColorArea.astro +432 -0
- package/src/components/color-area/color-area.theme.ts +33 -0
- package/src/components/color-area/color-area.ts +19 -0
- package/src/components/color-field/RLAColorField.astro +300 -0
- package/src/components/color-field/color-field.theme.ts +32 -0
- package/src/components/color-field/color-field.ts +21 -0
- package/src/components/color-picker/RLAColorPicker.astro +21 -0
- package/src/components/color-picker/color-picker.theme.ts +13 -0
- package/src/components/color-slider/RLAColorSlider.astro +413 -0
- package/src/components/color-slider/color-slider.theme.ts +34 -0
- package/src/components/color-slider/color-slider.ts +20 -0
- package/src/components/command-palette/RLACommandPalette.astro +21 -0
- package/src/components/command-palette/command-palette.theme.ts +13 -0
- package/src/components/compare/RLACompare.astro +21 -0
- package/src/components/compare/compare.theme.ts +13 -0
- package/src/components/confirm/RLAConfirm.astro +122 -0
- package/src/components/confirm/confirm.theme.ts +48 -0
- package/src/components/container/RLAContainer.astro +21 -0
- package/src/components/container/container.theme.ts +13 -0
- package/src/components/context-menu/RLAContextMenu.astro +21 -0
- package/src/components/context-menu/context-menu.theme.ts +13 -0
- package/src/components/copy-markdown/RLACopyMarkdown.astro +78 -0
- package/src/components/dashboard-group/RLADashboardGroup.astro +21 -0
- package/src/components/dashboard-group/dashboard-group.theme.ts +13 -0
- package/src/components/dashboard-navbar/RLADashboardNavbar.astro +21 -0
- package/src/components/dashboard-navbar/dashboard-navbar.theme.ts +13 -0
- package/src/components/dashboard-panel/RLADashboardPanel.astro +21 -0
- package/src/components/dashboard-panel/dashboard-panel.theme.ts +13 -0
- package/src/components/dashboard-resize-handle/RLADashboardResizeHandle.astro +21 -0
- package/src/components/dashboard-resize-handle/dashboard-resize-handle.theme.ts +13 -0
- package/src/components/dashboard-search/RLADashboardSearch.astro +21 -0
- package/src/components/dashboard-search/dashboard-search.theme.ts +13 -0
- package/src/components/dashboard-search-button/RLADashboardSearchButton.astro +21 -0
- package/src/components/dashboard-search-button/dashboard-search-button.theme.ts +13 -0
- package/src/components/dashboard-sidebar/RLADashboardSidebar.astro +21 -0
- package/src/components/dashboard-sidebar/dashboard-sidebar.theme.ts +13 -0
- package/src/components/dashboard-sidebar-collapse/RLADashboardSidebarCollapse.astro +21 -0
- package/src/components/dashboard-sidebar-collapse/dashboard-sidebar-collapse.theme.ts +13 -0
- package/src/components/dashboard-sidebar-toggle/RLADashboardSidebarToggle.astro +21 -0
- package/src/components/dashboard-sidebar-toggle/dashboard-sidebar-toggle.theme.ts +13 -0
- package/src/components/dashboard-toolbar/RLADashboardToolbar.astro +21 -0
- package/src/components/dashboard-toolbar/dashboard-toolbar.theme.ts +13 -0
- package/src/components/dock/RLADock.astro +21 -0
- package/src/components/dock/dock.theme.ts +13 -0
- package/src/components/drawer/RLADrawer.astro +126 -0
- package/src/components/drawer/drawer.theme.ts +61 -0
- package/src/components/dropdown-menu/RLADropdownMenu.astro +108 -0
- package/src/components/dropdown-menu/dropdown-menu.theme.ts +29 -0
- package/src/components/dropdown-menu/dropdown-menu.ts +43 -0
- package/src/components/editor/PageEditor.vue +459 -0
- package/src/components/editor/PageMention.vue +87 -0
- package/src/components/editor/PagePropertiesEditor.vue +358 -0
- package/src/components/editor/PagePropertiesRenderer.vue +285 -0
- package/src/components/editor/PageRenderer.vue +155 -0
- package/src/components/editor/PageSurround.vue +130 -0
- package/src/components/editor/PageVersionSelector.vue +371 -0
- package/src/components/editor/RLAEditor.astro +21 -0
- package/src/components/editor/blocks/AddBlockModal.vue +196 -0
- package/src/components/editor/blocks/Block.vue +141 -0
- package/src/components/editor/blocks/BlockEditRenderer.vue +26 -0
- package/src/components/editor/blocks/BlockEditor.vue +141 -0
- package/src/components/editor/blocks/BlockViewRenderer.vue +65 -0
- package/src/components/editor/blocks/TextRenderer.vue +31 -0
- package/src/components/editor/blocks/editor/CalloutBlockEditor.vue +53 -0
- package/src/components/editor/blocks/editor/ImageBlockEditor.vue +55 -0
- package/src/components/editor/blocks/editor/ParagraphBlockEditor.vue +31 -0
- package/src/components/editor/blocks/editor/SectionBlockEditor.vue +65 -0
- package/src/components/editor/blocks/nodes/LinkNode.vue +28 -0
- package/src/components/editor/blocks/nodes/TextNode.vue +22 -0
- package/src/components/editor/blocks/renderer/CalloutBlockRenderer.vue +66 -0
- package/src/components/editor/blocks/renderer/ImageBlockRenderer.vue +20 -0
- package/src/components/editor/blocks/renderer/ParagraphBlockRenderer.vue +21 -0
- package/src/components/editor/blocks/renderer/SectionBlockRenderer.vue +55 -0
- package/src/components/editor/composables/injectionKeys.ts +3 -0
- package/src/components/editor/composables/useBlockEditor.ts +261 -0
- package/src/components/editor/composables/usePageEditor.ts +97 -0
- package/src/components/editor/editor.theme.ts +13 -0
- package/src/components/editor/modals/CreatePageModal.vue +160 -0
- package/src/components/editor/modals/DeletePageModal.vue +116 -0
- package/src/components/editor/modals/PageTreeModal.vue +275 -0
- package/src/components/editor/types/blocks.ts +100 -0
- package/src/components/editor/types/pages.ts +89 -0
- package/src/components/editor/types/schemas.ts +36 -0
- package/src/components/editor/utils/blocks.ts +42 -0
- package/src/components/editor/utils/editorHelpers.ts +24 -0
- package/src/components/editor/utils/page.ts +219 -0
- package/src/components/editor/utils/richTextHelpers.ts +35 -0
- package/src/components/editor/views/PageEditView.vue +195 -0
- package/src/components/editor/views/PageLiveView.vue +90 -0
- package/src/components/editor/views/PageReviewView.vue +308 -0
- package/src/components/empty/RLAEmpty.astro +21 -0
- package/src/components/empty/empty.theme.ts +13 -0
- package/src/components/error/RLAError.astro +21 -0
- package/src/components/error/error.theme.ts +13 -0
- package/src/components/field-group/RLAFieldGroup.astro +36 -0
- package/src/components/field-group/field-group.theme.ts +24 -0
- package/src/components/fieldset/RLAFieldset.astro +21 -0
- package/src/components/fieldset/fieldset.theme.ts +13 -0
- package/src/components/file-upload/RLAFileUpload.astro +147 -0
- package/src/components/file-upload/file-upload.theme.ts +24 -0
- package/src/components/file-upload/file-upload.ts +40 -0
- package/src/components/floating-action/RLAFloatingAction.astro +21 -0
- package/src/components/floating-action/floating-action.theme.ts +13 -0
- package/src/components/footer/RLAFooter.astro +38 -0
- package/src/components/footer/footer.theme.ts +30 -0
- package/src/components/form/RLAForm.astro +21 -0
- package/src/components/form/form.theme.ts +13 -0
- package/src/components/form-field/RLAFormField.astro +45 -0
- package/src/components/form-field/RLVFormField.vue +59 -0
- package/src/components/form-field/form-field.theme.ts +24 -0
- package/src/components/gallery/RLAGallery.astro +21 -0
- package/src/components/gallery/gallery.theme.ts +13 -0
- package/src/components/gamepad/RLAGamepad.astro +226 -0
- package/src/components/grid/RLAGrid.astro +29 -0
- package/src/components/grid/grid.theme.ts +38 -0
- package/src/components/head/RLAHead.astro +528 -0
- package/src/components/head/head.theme.ts +13 -0
- package/src/components/header/RLAHeader.astro +65 -0
- package/src/components/header/header.theme.ts +46 -0
- package/src/components/hover-card/RLAHoverCard.astro +35 -0
- package/src/components/hover-card/hover-card.theme.ts +29 -0
- package/src/components/icon/RLAIcon.astro +36 -0
- package/src/components/icon/RLSIcon.tsx +28 -0
- package/src/components/icon/RLVIcon.vue +31 -0
- package/src/components/icon/icon.theme.ts +23 -0
- package/src/components/icon/resolver.ts +37 -0
- package/src/components/image/RLAImage.astro +273 -0
- package/src/components/image/image.theme.ts +33 -0
- package/src/components/input/RLAInput.astro +65 -0
- package/src/components/input/RLVInput.vue +95 -0
- package/src/components/input/input.theme.ts +48 -0
- package/src/components/input/input.ts +69 -0
- package/src/components/input-date/RLAInputDate.astro +21 -0
- package/src/components/input-date/input-date.theme.ts +13 -0
- package/src/components/input-menu/RLAInputMenu.astro +166 -0
- package/src/components/input-menu/input-menu.theme.ts +35 -0
- package/src/components/input-menu/input-menu.ts +44 -0
- package/src/components/input-number/RLAInputNumber.astro +21 -0
- package/src/components/input-number/input-number.theme.ts +13 -0
- package/src/components/input-pin/RLAInputPin.astro +23 -0
- package/src/components/input-pin/input-pin.theme.ts +14 -0
- package/src/components/input-pin/input-pin.ts +11 -0
- package/src/components/input-rating/RLAInputRating.astro +265 -0
- package/src/components/input-rating/input-rating.theme.ts +84 -0
- package/src/components/input-rating/input-rating.ts +106 -0
- package/src/components/input-tags/RLAInputTags.astro +21 -0
- package/src/components/input-tags/input-tags.theme.ts +13 -0
- package/src/components/input-time/RLAInputTime.astro +21 -0
- package/src/components/input-time/input-time.theme.ts +13 -0
- package/src/components/kbd/RLAKbd.astro +32 -0
- package/src/components/kbd/kbd.theme.ts +97 -0
- package/src/components/keyboard/RLAKeyboard.astro +350 -0
- package/src/components/knob/RLAKnob.astro +21 -0
- package/src/components/knob/knob.theme.ts +13 -0
- package/src/components/label/RLALabel.astro +27 -0
- package/src/components/label/label.theme.ts +22 -0
- package/src/components/layout-grid/RLALayoutGrid.astro +393 -0
- package/src/components/layout-grid/layout-grid.theme.ts +16 -0
- package/src/components/link/RLALink.astro +93 -0
- package/src/components/link/RLSLink.tsx +108 -0
- package/src/components/link/RLVLink.vue +85 -0
- package/src/components/link/helpers.ts +47 -0
- package/src/components/link/link.theme.ts +40 -0
- package/src/components/link/link.ts +99 -0
- package/src/components/link-group/RLALinkGroup.astro +96 -0
- package/src/components/link-group/link-group.theme.ts +28 -0
- package/src/components/link-group/link-group.ts +50 -0
- package/src/components/listbox/RLAListbox.astro +21 -0
- package/src/components/listbox/listbox.theme.ts +13 -0
- package/src/components/locale-selector/RLALocaleSelector.astro +142 -0
- package/src/components/locale-selector/locale-selector.theme.ts +49 -0
- package/src/components/locale-selector/locale-selector.ts +59 -0
- package/src/components/logo/RLALogo.astro +116 -0
- package/src/components/logo/logo.theme.ts +13 -0
- package/src/components/main/RLAMain.astro +37 -0
- package/src/components/main/main.theme.ts +13 -0
- package/src/components/marquee/RLAMarquee.astro +43 -0
- package/src/components/marquee/marquee.theme.ts +29 -0
- package/src/components/meter/RLAMeter.astro +21 -0
- package/src/components/meter/meter.theme.ts +13 -0
- package/src/components/modal/RLAModal.astro +183 -0
- package/src/components/modal/RLVModal.vue +97 -0
- package/src/components/modal/modal.theme.ts +49 -0
- package/src/components/modal/modal.ts +43 -0
- package/src/components/navigation-menu/RLANavigationMenu.astro +380 -0
- package/src/components/navigation-menu/navigation-menu.theme.ts +44 -0
- package/src/components/navigation-menu/navigation-menu.ts +59 -0
- package/src/components/package-managers/RLAPackageManagers.astro +81 -0
- package/src/components/page/RLAPage.astro +21 -0
- package/src/components/page/page.theme.ts +13 -0
- package/src/components/page-aside/RLAPageAside.astro +21 -0
- package/src/components/page-aside/page-aside.theme.ts +13 -0
- package/src/components/page-body/RLAPageBody.astro +21 -0
- package/src/components/page-body/page-body.theme.ts +13 -0
- package/src/components/page-header/RLAPageHeader.astro +21 -0
- package/src/components/page-header/page-header.theme.ts +13 -0
- package/src/components/page-section/RLAPageSection.astro +158 -0
- package/src/components/page-section/page-section.theme.ts +189 -0
- package/src/components/page-section/page-section.ts +71 -0
- package/src/components/pagination/RLAPagination.astro +97 -0
- package/src/components/pagination/pagination.theme.ts +28 -0
- package/src/components/password/RLAPassword.astro +21 -0
- package/src/components/password/password.theme.ts +13 -0
- package/src/components/phone-mockup/RLAPhoneMockup.astro +21 -0
- package/src/components/phone-mockup/phone-mockup.theme.ts +13 -0
- package/src/components/placeholder/RLAPlaceholder.astro +43 -0
- package/src/components/placeholder/placeholder.theme.ts +15 -0
- package/src/components/popover/RLAPopover.astro +130 -0
- package/src/components/popover/popover.theme.ts +27 -0
- package/src/components/post/RLAPost.astro +72 -0
- package/src/components/post/post.theme.ts +53 -0
- package/src/components/pricing-plan/RLAPricingPlan.astro +21 -0
- package/src/components/pricing-plan/pricing-plan.theme.ts +13 -0
- package/src/components/pricing-table/RLAPricingTable.astro +21 -0
- package/src/components/pricing-table/pricing-table.theme.ts +13 -0
- package/src/components/progress/RLAProgress.astro +51 -0
- package/src/components/progress/progress.theme.ts +37 -0
- package/src/components/progress/progress.ts +33 -0
- package/src/components/prose/RLAProse.astro +21 -0
- package/src/components/prose/prose.theme.ts +13 -0
- package/src/components/qr-code/RLAQrCode.astro +21 -0
- package/src/components/qr-code/qr-code.theme.ts +13 -0
- package/src/components/quote/RLAQuote.astro +15 -0
- package/src/components/quote/quote.theme.ts +13 -0
- package/src/components/radio-group/RLARadioGroup.astro +21 -0
- package/src/components/radio-group/radio-group.theme.ts +13 -0
- package/src/components/rating/RLARating.astro +21 -0
- package/src/components/rating/rating.theme.ts +13 -0
- package/src/components/scroll-area/RLAScrollArea.astro +158 -0
- package/src/components/scroll-area/scroll-area.theme.ts +26 -0
- package/src/components/scroll-to-top/RLAScrollToTop.astro +189 -0
- package/src/components/scroll-to-top/RLVScrollToTop.vue +148 -0
- package/src/components/scroll-to-top/scroll-to-top.theme.ts +51 -0
- package/src/components/scroll-to-top/scroll-to-top.ts +37 -0
- package/src/components/search/RLASearch.astro +281 -0
- package/src/components/search/search.theme.ts +64 -0
- package/src/components/select/RLASelect.astro +150 -0
- package/src/components/select/RLVSelect.vue +73 -0
- package/src/components/select/select.theme.ts +29 -0
- package/src/components/select/select.ts +44 -0
- package/src/components/separator/RLASeparator.astro +83 -0
- package/src/components/separator/separator.theme.ts +147 -0
- package/src/components/share/RLAShare.astro +60 -0
- package/src/components/shortcuts/RLAShortcuts.astro +430 -0
- package/src/components/sidebar/RLASidebar.astro +162 -0
- package/src/components/sidebar/sidebar.theme.ts +48 -0
- package/src/components/sidebar/sidebar.ts +53 -0
- package/src/components/skeleton/RLASkeleton.astro +22 -0
- package/src/components/skeleton/skeleton.theme.ts +21 -0
- package/src/components/slideover/RLASlideover.astro +221 -0
- package/src/components/slideover/slideover.theme.ts +59 -0
- package/src/components/slideover/slideover.ts +35 -0
- package/src/components/slider/RLASlider.astro +58 -0
- package/src/components/slider/slider.theme.ts +35 -0
- package/src/components/slider/slider.ts +41 -0
- package/src/components/speed-dial/RLASpeedDial.astro +21 -0
- package/src/components/speed-dial/speed-dial.theme.ts +13 -0
- package/src/components/spinner/RLASpinner.astro +27 -0
- package/src/components/spinner/spinner.theme.ts +33 -0
- package/src/components/spinner/spinner.ts +25 -0
- package/src/components/splitter/RLASplitter.astro +238 -0
- package/src/components/splitter/splitter.theme.ts +23 -0
- package/src/components/spoiler/RLASpoiler.astro +21 -0
- package/src/components/spoiler/spoiler.theme.ts +13 -0
- package/src/components/stepper/RLAStepper.astro +21 -0
- package/src/components/stepper/stepper.theme.ts +13 -0
- package/src/components/steps/RLASteps.astro +116 -0
- package/src/components/steps/steps.theme.ts +13 -0
- package/src/components/sticky-surface/RLAStickySurface.astro +38 -0
- package/src/components/sticky-surface/sticky-surface.theme.ts +12 -0
- package/src/components/surround/RLASurround.astro +40 -0
- package/src/components/switch/RLASwitch.astro +51 -0
- package/src/components/switch/switch.theme.ts +66 -0
- package/src/components/switch/switch.ts +41 -0
- package/src/components/table/RLATable.astro +63 -0
- package/src/components/table/table.theme.ts +36 -0
- package/src/components/table/table.ts +35 -0
- package/src/components/table-of-contents/RLATableOfContents.astro +157 -0
- package/src/components/table-of-contents/table-of-contents.theme.ts +67 -0
- package/src/components/table-of-contents/table-of-contents.ts +44 -0
- package/src/components/tabs/RLATabs.astro +157 -0
- package/src/components/tabs/tabs.theme.ts +52 -0
- package/src/components/tabs/tabs.ts +44 -0
- package/src/components/textarea/RLATextarea.astro +43 -0
- package/src/components/textarea/RLVTextarea.vue +52 -0
- package/src/components/textarea/textarea.theme.ts +27 -0
- package/src/components/textarea/textarea.ts +52 -0
- package/src/components/theme-selector/RLAThemeSelector.astro +106 -0
- package/src/components/theme-selector/theme-selector.theme.ts +15 -0
- package/src/components/timeline/RLATimeline.astro +21 -0
- package/src/components/timeline/timeline.theme.ts +18 -0
- package/src/components/toast/RLAToast.astro +120 -0
- package/src/components/toast/toast.theme.ts +37 -0
- package/src/components/toast/toast.ts +40 -0
- package/src/components/tooltip/RLATooltip.astro +33 -0
- package/src/components/tooltip/tooltip.theme.ts +28 -0
- package/src/components/tour/RLATour.astro +21 -0
- package/src/components/tour/tour.theme.ts +13 -0
- package/src/components/tree/RLATree.astro +21 -0
- package/src/components/tree/tree.theme.ts +13 -0
- package/src/components/user/RLAUser.astro +21 -0
- package/src/components/user/user.theme.ts +13 -0
- package/src/components/video/RLAVideo.astro +205 -0
- package/src/components/video/video.theme.ts +17 -0
- package/src/components/watermark/RLAWatermark.astro +21 -0
- package/src/components/watermark/watermark.theme.ts +13 -0
- package/src/components/window-mockup/RLAWindowMockup.astro +21 -0
- package/src/components/window-mockup/window-mockup.theme.ts +13 -0
- package/src/config/color.config.ts +300 -0
- package/src/config/ui.config.ts +89 -0
- package/src/env.d.ts +23 -25
- package/src/icons/defaults.ts +41 -0
- package/src/presets/index.ts +98 -59
- package/src/themes.ts +26 -0
- package/src/types/component.ts +28 -0
- package/src/ui.ts +159 -0
- package/src/utils/defineTheme.ts +1 -7
- package/src/utils/merge.ts +62 -0
- package/src/utils/resolveClasses.ts +22 -4
- package/src/utils/resolveTheme.ts +13 -0
- package/src/utils/scroll.ts +41 -0
- package/src/utils/shortcuts.ts +57 -57
- package/src/utils/toast.ts +36 -0
- package/src/utils/useUi.ts +27 -13
- package/src/components/HttpObservatory.astro +0 -103
- package/src/components/LighthouseScores.astro +0 -204
- package/src/components/astro/RLA3dHover.astro +0 -23
- package/src/components/astro/RLAAccordion.astro +0 -94
- package/src/components/astro/RLAApp.astro +0 -23
- package/src/components/astro/RLAAspectRatio.astro +0 -27
- package/src/components/astro/RLAAudio.astro +0 -23
- package/src/components/astro/RLAAvatar.astro +0 -135
- package/src/components/astro/RLAAvatarGroup.astro +0 -23
- package/src/components/astro/RLABadge.astro +0 -36
- package/src/components/astro/RLABanner.astro +0 -138
- package/src/components/astro/RLABreadcrumb.astro +0 -61
- package/src/components/astro/RLABrowserMockup.astro +0 -23
- package/src/components/astro/RLAButton.astro +0 -145
- package/src/components/astro/RLACalendar.astro +0 -23
- package/src/components/astro/RLACallout.astro +0 -112
- package/src/components/astro/RLACard.astro +0 -79
- package/src/components/astro/RLACarousel.astro +0 -104
- package/src/components/astro/RLAChart.astro +0 -227
- package/src/components/astro/RLAChat.astro +0 -23
- package/src/components/astro/RLAChatMessage.astro +0 -23
- package/src/components/astro/RLAChatMessages.astro +0 -23
- package/src/components/astro/RLAChatPalette.astro +0 -23
- package/src/components/astro/RLAChatPrompt.astro +0 -23
- package/src/components/astro/RLAChatPromptSubmit.astro +0 -23
- package/src/components/astro/RLAChatReasoning.astro +0 -23
- package/src/components/astro/RLAChatShimmer.astro +0 -23
- package/src/components/astro/RLAChatTool.astro +0 -23
- package/src/components/astro/RLACheckbox.astro +0 -53
- package/src/components/astro/RLAChip.astro +0 -57
- package/src/components/astro/RLACollapsible.astro +0 -41
- package/src/components/astro/RLAColorArea.astro +0 -432
- package/src/components/astro/RLAColorField.astro +0 -300
- package/src/components/astro/RLAColorPicker.astro +0 -23
- package/src/components/astro/RLAColorSlider.astro +0 -413
- package/src/components/astro/RLACommandPalette.astro +0 -23
- package/src/components/astro/RLACompare.astro +0 -23
- package/src/components/astro/RLAConfirm.astro +0 -119
- package/src/components/astro/RLAContainer.astro +0 -23
- package/src/components/astro/RLAContextMenu.astro +0 -23
- package/src/components/astro/RLACopyMarkdown.astro +0 -78
- package/src/components/astro/RLADashboardGroup.astro +0 -23
- package/src/components/astro/RLADashboardNavbar.astro +0 -23
- package/src/components/astro/RLADashboardPanel.astro +0 -23
- package/src/components/astro/RLADashboardResizeHandle.astro +0 -23
- package/src/components/astro/RLADashboardSearch.astro +0 -23
- package/src/components/astro/RLADashboardSearchButton.astro +0 -23
- package/src/components/astro/RLADashboardSidebar.astro +0 -23
- package/src/components/astro/RLADashboardSidebarCollapse.astro +0 -23
- package/src/components/astro/RLADashboardSidebarToggle.astro +0 -23
- package/src/components/astro/RLADashboardToolbar.astro +0 -23
- package/src/components/astro/RLADock.astro +0 -23
- package/src/components/astro/RLADocsGamepad.astro +0 -178
- package/src/components/astro/RLADocsKeyboard.astro +0 -319
- package/src/components/astro/RLADrawer.astro +0 -125
- package/src/components/astro/RLADropdownMenu.astro +0 -109
- package/src/components/astro/RLAEditor.astro +0 -23
- package/src/components/astro/RLAEmpty.astro +0 -23
- package/src/components/astro/RLAError.astro +0 -23
- package/src/components/astro/RLAFieldGroup.astro +0 -38
- package/src/components/astro/RLAFieldset.astro +0 -23
- package/src/components/astro/RLAFileUpload.astro +0 -148
- package/src/components/astro/RLAFloatingAction.astro +0 -23
- package/src/components/astro/RLAFooter.astro +0 -40
- package/src/components/astro/RLAForm.astro +0 -23
- package/src/components/astro/RLAFormField.astro +0 -47
- package/src/components/astro/RLAGallery.astro +0 -23
- package/src/components/astro/RLAGrid.astro +0 -31
- package/src/components/astro/RLAHead.astro +0 -528
- package/src/components/astro/RLAHeader.astro +0 -67
- package/src/components/astro/RLAHoverCard.astro +0 -35
- package/src/components/astro/RLAIcon.astro +0 -31
- package/src/components/astro/RLAImage.astro +0 -274
- package/src/components/astro/RLAInput.astro +0 -67
- package/src/components/astro/RLAInputDate.astro +0 -23
- package/src/components/astro/RLAInputMenu.astro +0 -167
- package/src/components/astro/RLAInputNumber.astro +0 -23
- package/src/components/astro/RLAInputTags.astro +0 -23
- package/src/components/astro/RLAInputTime.astro +0 -23
- package/src/components/astro/RLAKbd.astro +0 -32
- package/src/components/astro/RLAKnob.astro +0 -23
- package/src/components/astro/RLALabel.astro +0 -27
- package/src/components/astro/RLALayoutGrid.astro +0 -395
- package/src/components/astro/RLALink.astro +0 -44
- package/src/components/astro/RLALinkGroup.astro +0 -100
- package/src/components/astro/RLAListbox.astro +0 -23
- package/src/components/astro/RLALocaleSelector.astro +0 -130
- package/src/components/astro/RLALogo.astro +0 -117
- package/src/components/astro/RLAMain.astro +0 -39
- package/src/components/astro/RLAMarquee.astro +0 -43
- package/src/components/astro/RLAMeter.astro +0 -23
- package/src/components/astro/RLAModal.astro +0 -129
- package/src/components/astro/RLANavigationMenu.astro +0 -381
- package/src/components/astro/RLAPackageManagers.astro +0 -81
- package/src/components/astro/RLAPage.astro +0 -23
- package/src/components/astro/RLAPageAside.astro +0 -23
- package/src/components/astro/RLAPageBody.astro +0 -23
- package/src/components/astro/RLAPageHeader.astro +0 -23
- package/src/components/astro/RLAPageSection.astro +0 -157
- package/src/components/astro/RLAPagination.astro +0 -96
- package/src/components/astro/RLAPassword.astro +0 -23
- package/src/components/astro/RLAPhoneMockup.astro +0 -23
- package/src/components/astro/RLAPinInput.astro +0 -23
- package/src/components/astro/RLAPlaceholder.astro +0 -45
- package/src/components/astro/RLAPopover.astro +0 -36
- package/src/components/astro/RLAPost.astro +0 -74
- package/src/components/astro/RLAPricingPlan.astro +0 -23
- package/src/components/astro/RLAPricingTable.astro +0 -23
- package/src/components/astro/RLAProgress.astro +0 -51
- package/src/components/astro/RLAProse.astro +0 -23
- package/src/components/astro/RLAQrCode.astro +0 -23
- package/src/components/astro/RLAQuote.astro +0 -15
- package/src/components/astro/RLARadioGroup.astro +0 -23
- package/src/components/astro/RLARating.astro +0 -23
- package/src/components/astro/RLAScrollArea.astro +0 -160
- package/src/components/astro/RLAScrollToTop.astro +0 -200
- package/src/components/astro/RLASearch.astro +0 -282
- package/src/components/astro/RLASelect.astro +0 -146
- package/src/components/astro/RLASeparator.astro +0 -83
- package/src/components/astro/RLAShare.astro +0 -60
- package/src/components/astro/RLAShortcuts.astro +0 -429
- package/src/components/astro/RLASidebar.astro +0 -158
- package/src/components/astro/RLASkeleton.astro +0 -24
- package/src/components/astro/RLASlideover.astro +0 -171
- package/src/components/astro/RLASlider.astro +0 -58
- package/src/components/astro/RLASpeedDial.astro +0 -23
- package/src/components/astro/RLASpinner.astro +0 -27
- package/src/components/astro/RLASplitter.astro +0 -242
- package/src/components/astro/RLASpoiler.astro +0 -23
- package/src/components/astro/RLAStepper.astro +0 -23
- package/src/components/astro/RLASteps.astro +0 -118
- package/src/components/astro/RLAStickySurface.astro +0 -38
- package/src/components/astro/RLASurround.astro +0 -39
- package/src/components/astro/RLASwitch.astro +0 -51
- package/src/components/astro/RLATable.astro +0 -63
- package/src/components/astro/RLATableOfContents.astro +0 -109
- package/src/components/astro/RLATabs.astro +0 -147
- package/src/components/astro/RLATextarea.astro +0 -45
- package/src/components/astro/RLAThemeSelector.astro +0 -106
- package/src/components/astro/RLATimeline.astro +0 -23
- package/src/components/astro/RLAToast.astro +0 -121
- package/src/components/astro/RLATooltip.astro +0 -35
- package/src/components/astro/RLATour.astro +0 -23
- package/src/components/astro/RLATree.astro +0 -23
- package/src/components/astro/RLAUser.astro +0 -23
- package/src/components/astro/RLAVideo.astro +0 -201
- package/src/components/astro/RLAWatermark.astro +0 -23
- package/src/components/astro/RLAWindowMockup.astro +0 -23
- package/src/components/vue/RLVBanner.vue +0 -230
- package/src/components/vue/RLVButton.vue +0 -105
- package/src/components/vue/RLVCheckbox.vue +0 -70
- package/src/components/vue/RLVFooter.vue +0 -38
- package/src/components/vue/RLVForm.vue +0 -44
- package/src/components/vue/RLVFormField.vue +0 -58
- package/src/components/vue/RLVHeader.vue +0 -122
- package/src/components/vue/RLVIcon.vue +0 -27
- package/src/components/vue/RLVInput.vue +0 -94
- package/src/components/vue/RLVLogo.vue +0 -90
- package/src/components/vue/RLVPlaceholder.vue +0 -50
- package/src/components/vue/RLVPost.vue +0 -69
- package/src/components/vue/RLVPosts.vue +0 -21
- package/src/components/vue/RLVProgress.vue +0 -60
- package/src/components/vue/RLVScrollToTop.vue +0 -145
- package/src/components/vue/RLVSection.vue +0 -151
- package/src/components/vue/RLVToast.vue +0 -81
- package/src/components/vue/RLVToaster.vue +0 -29
- package/src/composables/index.ts +0 -4
- package/src/composables/useHeaderStore.ts +0 -14
- package/src/composables/useScrollToTop.ts +0 -62
- package/src/composables/useShortcuts.ts +0 -11
- package/src/composables/useToast.ts +0 -43
- package/src/config/index.ts +0 -2
- package/src/config/security.ts +0 -227
- package/src/docs/components/ApiChangelog.astro +0 -147
- package/src/docs/components/ApiEmits.astro +0 -46
- package/src/docs/components/ApiProps.astro +0 -47
- package/src/docs/components/ApiSlots.astro +0 -50
- package/src/docs/components/ApiTheme.astro +0 -100
- package/src/docs/extractAll.ts +0 -94
- package/src/docs/extractors/extractAstro.ts +0 -69
- package/src/docs/extractors/extractTheme.ts +0 -56
- package/src/docs/extractors/extractVue.ts +0 -435
- package/src/docs/types.ts +0 -40
- package/src/docs/utils.ts +0 -44
- package/src/integrations/index.ts +0 -3
- package/src/integrations/sri.ts +0 -92
- package/src/integrations/ui.ts +0 -215
- package/src/middleware/index.ts +0 -1
- package/src/middleware/security.ts +0 -210
- package/src/presets/defaults.ts +0 -297
- package/src/styles/index.css +0 -158
- package/src/themes/3d-hover.theme.ts +0 -13
- package/src/themes/accordion.theme.ts +0 -39
- package/src/themes/app.theme.ts +0 -13
- package/src/themes/aspect-ratio.theme.ts +0 -13
- package/src/themes/audio.theme.ts +0 -13
- package/src/themes/avatar-group.theme.ts +0 -12
- package/src/themes/avatar.theme.ts +0 -84
- package/src/themes/badge.theme.ts +0 -168
- package/src/themes/banner.theme.ts +0 -49
- package/src/themes/breadcrumb.theme.ts +0 -17
- package/src/themes/browser-mockup.theme.ts +0 -13
- package/src/themes/button.theme.ts +0 -223
- package/src/themes/calendar.theme.ts +0 -13
- package/src/themes/callout.theme.ts +0 -104
- package/src/themes/card.theme.ts +0 -50
- package/src/themes/carousel.theme.ts +0 -34
- package/src/themes/chart.theme.ts +0 -22
- package/src/themes/chat-message.theme.ts +0 -13
- package/src/themes/chat-messages.theme.ts +0 -13
- package/src/themes/chat-palette.theme.ts +0 -13
- package/src/themes/chat-prompt-submit.theme.ts +0 -13
- package/src/themes/chat-prompt.theme.ts +0 -13
- package/src/themes/chat-reasoning.theme.ts +0 -13
- package/src/themes/chat-shimmer.theme.ts +0 -13
- package/src/themes/chat-tool.theme.ts +0 -13
- package/src/themes/chat.theme.ts +0 -13
- package/src/themes/checkbox.theme.ts +0 -49
- package/src/themes/chip.theme.ts +0 -73
- package/src/themes/collapsible.theme.ts +0 -22
- package/src/themes/color-area.theme.ts +0 -33
- package/src/themes/color-field.theme.ts +0 -32
- package/src/themes/color-picker.theme.ts +0 -13
- package/src/themes/color-slider.theme.ts +0 -34
- package/src/themes/command-palette.theme.ts +0 -13
- package/src/themes/compare.theme.ts +0 -13
- package/src/themes/confirm.theme.ts +0 -48
- package/src/themes/container.theme.ts +0 -13
- package/src/themes/context-menu.theme.ts +0 -13
- package/src/themes/dashboard-group.theme.ts +0 -13
- package/src/themes/dashboard-navbar.theme.ts +0 -13
- package/src/themes/dashboard-panel.theme.ts +0 -13
- package/src/themes/dashboard-resize-handle.theme.ts +0 -13
- package/src/themes/dashboard-search-button.theme.ts +0 -13
- package/src/themes/dashboard-search.theme.ts +0 -13
- package/src/themes/dashboard-sidebar-collapse.theme.ts +0 -13
- package/src/themes/dashboard-sidebar-toggle.theme.ts +0 -13
- package/src/themes/dashboard-sidebar.theme.ts +0 -13
- package/src/themes/dashboard-toolbar.theme.ts +0 -13
- package/src/themes/dock.theme.ts +0 -13
- package/src/themes/drawer.theme.ts +0 -61
- package/src/themes/dropdown-menu.theme.ts +0 -29
- package/src/themes/editor.theme.ts +0 -13
- package/src/themes/empty.theme.ts +0 -13
- package/src/themes/error.theme.ts +0 -13
- package/src/themes/field-group.theme.ts +0 -24
- package/src/themes/fieldset.theme.ts +0 -13
- package/src/themes/file-upload.theme.ts +0 -24
- package/src/themes/floating-action.theme.ts +0 -13
- package/src/themes/footer.theme.ts +0 -30
- package/src/themes/form-field.theme.ts +0 -24
- package/src/themes/form.theme.ts +0 -13
- package/src/themes/gallery.theme.ts +0 -13
- package/src/themes/grid.theme.ts +0 -38
- package/src/themes/head.theme.ts +0 -13
- package/src/themes/header.theme.ts +0 -46
- package/src/themes/hover-card.theme.ts +0 -29
- package/src/themes/icon.theme.ts +0 -23
- package/src/themes/image.theme.ts +0 -33
- package/src/themes/index.ts +0 -18
- package/src/themes/input-date.theme.ts +0 -13
- package/src/themes/input-menu.theme.ts +0 -35
- package/src/themes/input-number.theme.ts +0 -13
- package/src/themes/input-tags.theme.ts +0 -13
- package/src/themes/input-time.theme.ts +0 -13
- package/src/themes/input.theme.ts +0 -48
- package/src/themes/kbd.theme.ts +0 -94
- package/src/themes/knob.theme.ts +0 -13
- package/src/themes/label.theme.ts +0 -22
- package/src/themes/layout-grid.theme.ts +0 -16
- package/src/themes/link-group.theme.ts +0 -28
- package/src/themes/link.theme.ts +0 -13
- package/src/themes/listbox.theme.ts +0 -13
- package/src/themes/locale-selector.theme.ts +0 -49
- package/src/themes/logo.theme.ts +0 -13
- package/src/themes/main.theme.ts +0 -13
- package/src/themes/marquee.theme.ts +0 -29
- package/src/themes/meter.theme.ts +0 -13
- package/src/themes/modal.theme.ts +0 -49
- package/src/themes/navigation-menu.theme.ts +0 -44
- package/src/themes/page-aside.theme.ts +0 -13
- package/src/themes/page-body.theme.ts +0 -13
- package/src/themes/page-header.theme.ts +0 -13
- package/src/themes/page-section.theme.ts +0 -189
- package/src/themes/page.theme.ts +0 -13
- package/src/themes/pagination.theme.ts +0 -28
- package/src/themes/password.theme.ts +0 -13
- package/src/themes/phone-mockup.theme.ts +0 -13
- package/src/themes/pin-input.theme.ts +0 -14
- package/src/themes/placeholder.theme.ts +0 -15
- package/src/themes/popover.theme.ts +0 -30
- package/src/themes/post.theme.ts +0 -53
- package/src/themes/pricing-plan.theme.ts +0 -13
- package/src/themes/pricing-table.theme.ts +0 -13
- package/src/themes/progress.theme.ts +0 -37
- package/src/themes/prose.theme.ts +0 -13
- package/src/themes/qr-code.theme.ts +0 -13
- package/src/themes/quote.theme.ts +0 -13
- package/src/themes/radio-group.theme.ts +0 -13
- package/src/themes/rating.theme.ts +0 -13
- package/src/themes/scroll-area.theme.ts +0 -26
- package/src/themes/scroll-to-top.theme.ts +0 -51
- package/src/themes/search.theme.ts +0 -64
- package/src/themes/select.theme.ts +0 -29
- package/src/themes/separator.theme.ts +0 -147
- package/src/themes/sidebar.theme.ts +0 -38
- package/src/themes/skeleton.theme.ts +0 -21
- package/src/themes/slideover.theme.ts +0 -59
- package/src/themes/slider.theme.ts +0 -35
- package/src/themes/speed-dial.theme.ts +0 -13
- package/src/themes/spinner.theme.ts +0 -33
- package/src/themes/splitter.theme.ts +0 -23
- package/src/themes/spoiler.theme.ts +0 -13
- package/src/themes/stepper.theme.ts +0 -13
- package/src/themes/steps.theme.ts +0 -13
- package/src/themes/sticky-surface.theme.ts +0 -12
- package/src/themes/switch.theme.ts +0 -66
- package/src/themes/table-of-contents.theme.ts +0 -67
- package/src/themes/table.theme.ts +0 -36
- package/src/themes/tabs.theme.ts +0 -52
- package/src/themes/textarea.theme.ts +0 -27
- package/src/themes/theme-selector.theme.ts +0 -15
- package/src/themes/timeline.theme.ts +0 -18
- package/src/themes/toast.theme.ts +0 -31
- package/src/themes/tooltip.theme.ts +0 -28
- package/src/themes/tour.theme.ts +0 -13
- package/src/themes/tree.theme.ts +0 -13
- package/src/themes/user.theme.ts +0 -13
- package/src/themes/video.theme.ts +0 -17
- package/src/themes/watermark.theme.ts +0 -13
- package/src/themes/window-mockup.theme.ts +0 -13
- package/src/types/componentVariant.ts +0 -14
- package/src/types/components/avatar.ts +0 -76
- package/src/types/components/badge.ts +0 -33
- package/src/types/components/button.ts +0 -73
- package/src/types/components/callout.ts +0 -37
- package/src/types/components/changelog.ts +0 -11
- package/src/types/components/chart.ts +0 -39
- package/src/types/components/checkbox.ts +0 -41
- package/src/types/components/chip.ts +0 -17
- package/src/types/components/collapsible.ts +0 -32
- package/src/types/components/color-area.ts +0 -19
- package/src/types/components/color-field.ts +0 -21
- package/src/types/components/color-slider.ts +0 -20
- package/src/types/components/dropdown-menu.ts +0 -43
- package/src/types/components/file-upload.ts +0 -40
- package/src/types/components/input-menu.ts +0 -44
- package/src/types/components/input-pin.ts +0 -36
- package/src/types/components/input.ts +0 -69
- package/src/types/components/link-group.ts +0 -47
- package/src/types/components/link.ts +0 -42
- package/src/types/components/locale-selector.ts +0 -33
- package/src/types/components/modal.ts +0 -39
- package/src/types/components/navigation-menu.ts +0 -59
- package/src/types/components/page-section.ts +0 -63
- package/src/types/components/pin-input.ts +0 -11
- package/src/types/components/progress.ts +0 -33
- package/src/types/components/scroll-to-top.ts +0 -37
- package/src/types/components/select.ts +0 -44
- package/src/types/components/sidebar.ts +0 -83
- package/src/types/components/slideover.ts +0 -31
- package/src/types/components/slider.ts +0 -41
- package/src/types/components/spinner.ts +0 -25
- package/src/types/components/switch.ts +0 -41
- package/src/types/components/table-of-contents.ts +0 -39
- package/src/types/components/table.ts +0 -31
- package/src/types/components/tabs.ts +0 -44
- package/src/types/components/textarea.ts +0 -52
- package/src/types/components/toast.ts +0 -40
- package/src/types/docs.ts +0 -40
- package/src/types/index.ts +0 -153
- package/src/types/theme.ts +0 -11
- package/src/utils/docs.ts +0 -365
- package/src/utils/embed.ts +0 -105
- package/src/utils/index.ts +0 -7
- /package/src/{types/components → components/3d-hover}/3d-hover.ts +0 -0
- /package/src/{types/components → components/accordion}/accordion.ts +0 -0
- /package/src/{types/components → components/app}/app.ts +0 -0
- /package/src/{types/components → components/aspect-ratio}/aspect-ratio.ts +0 -0
- /package/src/{types/components → components/audio}/audio.ts +0 -0
- /package/src/{types/components → components/avatar-group}/avatar-group.ts +0 -0
- /package/src/{types/components → components/banner}/banner.ts +0 -0
- /package/src/{types/components → components/breadcrumb}/breadcrumb.ts +0 -0
- /package/src/{types/components → components/browser-mockup}/browser-mockup.ts +0 -0
- /package/src/{types/components → components/calendar}/calendar.ts +0 -0
- /package/src/{types/components → components/card}/card.ts +0 -0
- /package/src/{types/components → components/carousel}/carousel.ts +0 -0
- /package/src/{types/components → components/chat}/chat.ts +0 -0
- /package/src/{types/components → components/chat-message}/chat-message.ts +0 -0
- /package/src/{types/components → components/chat-messages}/chat-messages.ts +0 -0
- /package/src/{types/components → components/chat-palette}/chat-palette.ts +0 -0
- /package/src/{types/components → components/chat-prompt}/chat-prompt.ts +0 -0
- /package/src/{types/components → components/chat-prompt-submit}/chat-prompt-submit.ts +0 -0
- /package/src/{types/components → components/chat-reasoning}/chat-reasoning.ts +0 -0
- /package/src/{types/components → components/chat-shimmer}/chat-shimmer.ts +0 -0
- /package/src/{types/components → components/chat-tool}/chat-tool.ts +0 -0
- /package/src/{types/components → components/color-picker}/color-picker.ts +0 -0
- /package/src/{utils → components/color-picker}/color.ts +0 -0
- /package/src/{types/components → components/command-palette}/command-palette.ts +0 -0
- /package/src/{types/components → components/compare}/compare.ts +0 -0
- /package/src/{types/components → components/confirm}/confirm.ts +0 -0
- /package/src/{types/components → components/container}/container.ts +0 -0
- /package/src/{types/components → components/context-menu}/context-menu.ts +0 -0
- /package/src/{types/components → components/dashboard-group}/dashboard-group.ts +0 -0
- /package/src/{types/components → components/dashboard-navbar}/dashboard-navbar.ts +0 -0
- /package/src/{types/components → components/dashboard-panel}/dashboard-panel.ts +0 -0
- /package/src/{types/components → components/dashboard-resize-handle}/dashboard-resize-handle.ts +0 -0
- /package/src/{types/components → components/dashboard-search}/dashboard-search.ts +0 -0
- /package/src/{types/components → components/dashboard-search-button}/dashboard-search-button.ts +0 -0
- /package/src/{types/components → components/dashboard-sidebar}/dashboard-sidebar.ts +0 -0
- /package/src/{types/components → components/dashboard-sidebar-collapse}/dashboard-sidebar-collapse.ts +0 -0
- /package/src/{types/components → components/dashboard-sidebar-toggle}/dashboard-sidebar-toggle.ts +0 -0
- /package/src/{types/components → components/dashboard-toolbar}/dashboard-toolbar.ts +0 -0
- /package/src/components/{astro → date}/RLADate.astro +0 -0
- /package/src/{types/components → components/dock}/dock.ts +0 -0
- /package/src/{types/components → components/drawer}/drawer.ts +0 -0
- /package/src/{types/components → components/editor}/editor.ts +0 -0
- /package/src/{types/components → components/empty}/empty.ts +0 -0
- /package/src/{types/components → components/error}/error.ts +0 -0
- /package/src/{types/components → components/field-group}/field-group.ts +0 -0
- /package/src/{types/components → components/fieldset}/fieldset.ts +0 -0
- /package/src/{types/components → components/floating-action}/floating-action.ts +0 -0
- /package/src/{types/components → components/footer}/footer.ts +0 -0
- /package/src/{types/components → components/form}/form.ts +0 -0
- /package/src/{types/components → components/form-field}/form-field.ts +0 -0
- /package/src/{types/components → components/gallery}/gallery.ts +0 -0
- /package/src/{types/components → components/grid}/grid.ts +0 -0
- /package/src/{types/components → components/header}/header.ts +0 -0
- /package/src/{types/components → components/hover-card}/hover-card.ts +0 -0
- /package/src/{types/components → components/icon}/icon.ts +0 -0
- /package/src/{types/components → components/image}/image.ts +0 -0
- /package/src/{types/components → components/input-date}/input-date.ts +0 -0
- /package/src/{types/components → components/input-number}/input-number.ts +0 -0
- /package/src/{types/components → components/input-tags}/input-tags.ts +0 -0
- /package/src/{types/components → components/input-time}/input-time.ts +0 -0
- /package/src/{types/components → components/kbd}/kbd.ts +0 -0
- /package/src/{types/components → components/knob}/knob.ts +0 -0
- /package/src/{types/components → components/label}/label.ts +0 -0
- /package/src/{types/components → components/layout-grid}/layout-grid.ts +0 -0
- /package/src/{types/components → components/listbox}/listbox.ts +0 -0
- /package/src/{types/components → components/logo}/logo.ts +0 -0
- /package/src/{types/components → components/main}/main.ts +0 -0
- /package/src/{types/components → components/marquee}/marquee.ts +0 -0
- /package/src/{types/components → components/meter}/meter.ts +0 -0
- /package/src/{types/components → components/page}/page.ts +0 -0
- /package/src/{types/components → components/page-aside}/page-aside.ts +0 -0
- /package/src/{types/components → components/page-body}/page-body.ts +0 -0
- /package/src/{types/components → components/page-header}/page-header.ts +0 -0
- /package/src/{types/components → components/pagination}/pagination.ts +0 -0
- /package/src/{types/components → components/password}/password.ts +0 -0
- /package/src/{types/components → components/phone-mockup}/phone-mockup.ts +0 -0
- /package/src/{types/components → components/placeholder}/placeholder.ts +0 -0
- /package/src/{types/components → components/popover}/popover.ts +0 -0
- /package/src/{types/components → components/post}/post.ts +0 -0
- /package/src/{types/components → components/pricing-plan}/pricing-plan.ts +0 -0
- /package/src/{types/components → components/pricing-table}/pricing-table.ts +0 -0
- /package/src/{types/components → components/prose}/prose.ts +0 -0
- /package/src/{types/components → components/qr-code}/qr-code.ts +0 -0
- /package/src/{types/components → components/quote}/quote.ts +0 -0
- /package/src/{types/components → components/radio-group}/radio-group.ts +0 -0
- /package/src/{types/components → components/rating}/rating.ts +0 -0
- /package/src/{types/components → components/scroll-area}/scroll-area.ts +0 -0
- /package/src/{types/components → components/search}/search.ts +0 -0
- /package/src/{types/components → components/separator}/separator.ts +0 -0
- /package/src/{types/components → components/skeleton}/skeleton.ts +0 -0
- /package/src/{types/components → components/speed-dial}/speed-dial.ts +0 -0
- /package/src/{types/components → components/splitter}/splitter.ts +0 -0
- /package/src/{types/components → components/spoiler}/spoiler.ts +0 -0
- /package/src/{types/components → components/stepper}/stepper.ts +0 -0
- /package/src/{types/components → components/steps}/steps.ts +0 -0
- /package/src/{types/components → components/sticky-surface}/sticky-surface.ts +0 -0
- /package/src/{types/components → components/theme-selector}/theme-selector.ts +0 -0
- /package/src/{types/components → components/timeline}/timeline.ts +0 -0
- /package/src/{types/components → components/tooltip}/tooltip.ts +0 -0
- /package/src/{types/components → components/tour}/tour.ts +0 -0
- /package/src/{types/components → components/tree}/tree.ts +0 -0
- /package/src/{types/components → components/user}/user.ts +0 -0
- /package/src/{types/components → components/video}/video.ts +0 -0
- /package/src/{types/components → components/watermark}/watermark.ts +0 -0
- /package/src/{types/components → components/window-mockup}/window-mockup.ts +0 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { scv } from "css-variants"
|
|
3
|
+
import { useUi } from "../../utils/useUi"
|
|
4
|
+
import { resolveClasses } from "../../utils/resolveClasses"
|
|
5
|
+
import type { BreadcrumbProps } from "./breadcrumb"
|
|
6
|
+
import { resolveTheme } from "../../utils/resolveTheme"
|
|
7
|
+
import breadcrumbThemeDefault, { createBreadcrumbTheme } from "./breadcrumb.theme"
|
|
8
|
+
const breadcrumbTheme = resolveTheme(breadcrumbThemeDefault, createBreadcrumbTheme)
|
|
9
|
+
import RLAIcon from "../icon/RLAIcon.astro"
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
const breadcrumb = scv(breadcrumbTheme)
|
|
13
|
+
|
|
14
|
+
const {
|
|
15
|
+
items,
|
|
16
|
+
separatorIcon = "chevronRight",
|
|
17
|
+
ui: uiProp,
|
|
18
|
+
class: className,
|
|
19
|
+
...rest
|
|
20
|
+
} = Astro.props as BreadcrumbProps
|
|
21
|
+
|
|
22
|
+
const classes = resolveClasses(breadcrumb, {}, useUi("breadcrumb", uiProp), className)
|
|
23
|
+
---
|
|
24
|
+
<nav class={classes.root} data-slot="breadcrumb-root" {...rest}>
|
|
25
|
+
<ol class={classes.list} data-slot="list">
|
|
26
|
+
{items ? (
|
|
27
|
+
items.map((item, idx) => (
|
|
28
|
+
<li class={classes.item} data-slot="item">
|
|
29
|
+
{item.href ? (
|
|
30
|
+
<a href={item.href} class={classes.link} data-slot="link">
|
|
31
|
+
{item.label}
|
|
32
|
+
</a>
|
|
33
|
+
) : (
|
|
34
|
+
<span class={classes.page} data-slot="page">
|
|
35
|
+
{item.label}
|
|
36
|
+
</span>
|
|
37
|
+
)}
|
|
38
|
+
{idx < items.length - 1 && (
|
|
39
|
+
<span class={classes.separator} data-slot="separator" aria-hidden="true">
|
|
40
|
+
<RLAIcon name={separatorIcon} />
|
|
41
|
+
</span>
|
|
42
|
+
)}
|
|
43
|
+
</li>
|
|
44
|
+
))
|
|
45
|
+
) : (
|
|
46
|
+
<slot />
|
|
47
|
+
)}
|
|
48
|
+
</ol>
|
|
49
|
+
</nav>
|
|
50
|
+
|
|
51
|
+
{items && (
|
|
52
|
+
<script type="application/ld+json" is:inline set:html={JSON.stringify({
|
|
53
|
+
"@context": "https://schema.org",
|
|
54
|
+
"@type": "BreadcrumbList",
|
|
55
|
+
"itemListElement": items.map((item, idx) => ({
|
|
56
|
+
"@type": "ListItem",
|
|
57
|
+
"position": idx + 1,
|
|
58
|
+
"name": item.label,
|
|
59
|
+
"item": item.href ? new URL(item.href, Astro.site || "https://starter.rimelight.com").toString() : undefined
|
|
60
|
+
}))
|
|
61
|
+
})} />
|
|
62
|
+
)}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { colorConfig } from "../../config/color.config"
|
|
2
|
+
import { defineTheme } from "../../utils/defineTheme"
|
|
3
|
+
|
|
4
|
+
export const createBreadcrumbTheme = (_colors: readonly string[] = colorConfig.colors) =>
|
|
5
|
+
defineTheme({
|
|
6
|
+
slots: ["root", "list", "item", "link", "separator", "page"],
|
|
7
|
+
base: {
|
|
8
|
+
root: "aria-label='breadcrumb'",
|
|
9
|
+
list: "flex flex-wrap items-center gap-1.5 break-words text-sm text-muted-foreground sm:gap-2.5",
|
|
10
|
+
item: "flex items-center gap-1.5",
|
|
11
|
+
link: "transition-colors hover:text-foreground cursor-pointer decoration-none text-current",
|
|
12
|
+
separator: "flex size-3.5 items-center justify-center [&_svg]:size-3.5 opacity-60",
|
|
13
|
+
page: "font-normal text-foreground"
|
|
14
|
+
}
|
|
15
|
+
})
|
|
16
|
+
|
|
17
|
+
export default createBreadcrumbTheme()
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { scv } from "css-variants"
|
|
3
|
+
import { useUi } from "../../utils/useUi"
|
|
4
|
+
import { resolveClasses } from "../../utils/resolveClasses"
|
|
5
|
+
import type { BrowserMockupProps } from "./browser-mockup"
|
|
6
|
+
import browserMockupTheme from "./browser-mockup.theme"
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
const browserMockup = scv(browserMockupTheme)
|
|
10
|
+
|
|
11
|
+
const {
|
|
12
|
+
ui: uiProp,
|
|
13
|
+
class: className,
|
|
14
|
+
...rest
|
|
15
|
+
} = Astro.props as BrowserMockupProps
|
|
16
|
+
|
|
17
|
+
const classes = resolveClasses(browserMockup, {}, useUi("browserMockup", uiProp), className);
|
|
18
|
+
---
|
|
19
|
+
<div class={classes.root} data-slot="root" {...rest}>
|
|
20
|
+
<slot />
|
|
21
|
+
</div>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { defineTheme } from "../../utils/defineTheme"
|
|
2
|
+
|
|
3
|
+
export const createBrowserMockupTheme = () =>
|
|
4
|
+
defineTheme({
|
|
5
|
+
slots: ["root"],
|
|
6
|
+
base: {
|
|
7
|
+
root: ""
|
|
8
|
+
},
|
|
9
|
+
variants: {},
|
|
10
|
+
defaultVariants: {}
|
|
11
|
+
})
|
|
12
|
+
|
|
13
|
+
export default createBrowserMockupTheme()
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { scv } from "css-variants"
|
|
3
|
+
import { useUi } from "../../utils/useUi"
|
|
4
|
+
import { resolveClasses } from "../../utils/resolveClasses"
|
|
5
|
+
import type { ButtonProps } from "./button"
|
|
6
|
+
import { resolveTheme } from "../../utils/resolveTheme"
|
|
7
|
+
import buttonThemeDefault, { createButtonTheme } from "./button.theme"
|
|
8
|
+
const buttonTheme = resolveTheme(buttonThemeDefault, createButtonTheme)
|
|
9
|
+
import RLAAvatar from "../avatar/RLAAvatar.astro"
|
|
10
|
+
import RLALink from "../link/RLALink.astro"
|
|
11
|
+
import RLAIcon from "../icon/RLAIcon.astro"
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
const button = scv(buttonTheme)
|
|
15
|
+
|
|
16
|
+
const {
|
|
17
|
+
variant = "solid",
|
|
18
|
+
color = "primary",
|
|
19
|
+
size = "md",
|
|
20
|
+
href,
|
|
21
|
+
to,
|
|
22
|
+
label,
|
|
23
|
+
leadingIcon,
|
|
24
|
+
trailingIcon,
|
|
25
|
+
avatar,
|
|
26
|
+
loading = false,
|
|
27
|
+
loadingAuto = false,
|
|
28
|
+
square = false,
|
|
29
|
+
rounded = false,
|
|
30
|
+
block = false,
|
|
31
|
+
active = false,
|
|
32
|
+
theme,
|
|
33
|
+
activeColor,
|
|
34
|
+
activeVariant,
|
|
35
|
+
ui: uiProp,
|
|
36
|
+
class: className,
|
|
37
|
+
...rest
|
|
38
|
+
} = Astro.props as ButtonProps & {
|
|
39
|
+
rounded?: boolean
|
|
40
|
+
activeColor?: string
|
|
41
|
+
activeVariant?: string
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
const isLeading = !!(leadingIcon || avatar || Astro.slots.has("leading") || loading)
|
|
45
|
+
const isTrailing = !!(trailingIcon || Astro.slots.has("trailing")) || (loading && !isLeading)
|
|
46
|
+
|
|
47
|
+
const showLeadingIcon = loading
|
|
48
|
+
? "loaderCircle"
|
|
49
|
+
: leadingIcon
|
|
50
|
+
|
|
51
|
+
const showTrailingIcon = loading
|
|
52
|
+
? "loaderCircle"
|
|
53
|
+
: trailingIcon
|
|
54
|
+
|
|
55
|
+
const leadingIconClass = loading ? "animate-spin" : ""
|
|
56
|
+
const trailingIconClass = loading ? "animate-spin" : ""
|
|
57
|
+
|
|
58
|
+
const classes = resolveClasses(button, {
|
|
59
|
+
variant: (active && activeVariant ? activeVariant : variant) as "solid",
|
|
60
|
+
color: (active && activeColor ? activeColor : color) as "neutral",
|
|
61
|
+
size,
|
|
62
|
+
block,
|
|
63
|
+
square: square || (!label && !Astro.slots.has("default")),
|
|
64
|
+
rounded,
|
|
65
|
+
leading: isLeading,
|
|
66
|
+
trailing: isTrailing,
|
|
67
|
+
loading,
|
|
68
|
+
active,
|
|
69
|
+
theme
|
|
70
|
+
}, useUi("button", uiProp), className);
|
|
71
|
+
|
|
72
|
+
const Tag = (href || to) ? RLALink : "button";
|
|
73
|
+
|
|
74
|
+
const loadingAutoProps = loadingAuto ? { 'data-loading-auto': '' } : {};
|
|
75
|
+
---
|
|
76
|
+
<Tag
|
|
77
|
+
class={classes.root}
|
|
78
|
+
data-slot="root"
|
|
79
|
+
{...(Tag === RLALink ? { href, to, noExternalIcon: true } : {})}
|
|
80
|
+
{...loadingAutoProps}
|
|
81
|
+
{...rest}
|
|
82
|
+
>
|
|
83
|
+
<slot name="leading" {...{ ui: classes }}>
|
|
84
|
+
{isLeading && (
|
|
85
|
+
<span class={classes.leadingIcon} data-slot="leading-icon">
|
|
86
|
+
{loading || leadingIcon ? (
|
|
87
|
+
<RLAIcon name={showLeadingIcon} class={leadingIconClass} />
|
|
88
|
+
) : avatar ? (
|
|
89
|
+
<RLAAvatar
|
|
90
|
+
{...(typeof avatar === 'string' ? { src: avatar } : avatar)}
|
|
91
|
+
size={classes.leadingAvatarSize as any}
|
|
92
|
+
class={classes.leadingAvatar}
|
|
93
|
+
data-slot="leading-avatar"
|
|
94
|
+
/>
|
|
95
|
+
) : null}
|
|
96
|
+
</span>
|
|
97
|
+
)}
|
|
98
|
+
</slot>
|
|
99
|
+
|
|
100
|
+
{label !== undefined && label !== null && (
|
|
101
|
+
<span class={classes.label} data-slot="label">
|
|
102
|
+
{label}
|
|
103
|
+
</span>
|
|
104
|
+
)}
|
|
105
|
+
{!label && <slot />}
|
|
106
|
+
|
|
107
|
+
<slot name="trailing" {...{ ui: classes }}>
|
|
108
|
+
{isTrailing && (
|
|
109
|
+
<span class={classes.trailingIcon} data-slot="trailing-icon">
|
|
110
|
+
<RLAIcon name={showTrailingIcon} class={trailingIconClass} />
|
|
111
|
+
</span>
|
|
112
|
+
)}
|
|
113
|
+
</slot>
|
|
114
|
+
</Tag>
|
|
115
|
+
|
|
116
|
+
{loadingAuto && (
|
|
117
|
+
<script>
|
|
118
|
+
const loaderSvg = '<svg class="animate-spin w-full h-full" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10" stroke-opacity="0.25"/><path d="M21 12a9 9 0 1 1-6.219-8.56"/></svg>';
|
|
119
|
+
|
|
120
|
+
document.querySelectorAll('button[data-loading-auto]').forEach((button) => {
|
|
121
|
+
button.addEventListener('click', async (event) => {
|
|
122
|
+
if (button.getAttribute('data-loading') === 'true') return;
|
|
123
|
+
|
|
124
|
+
// Extract onclick attribute if available
|
|
125
|
+
const onClickAttr = button.getAttribute('onclick');
|
|
126
|
+
if (onClickAttr) {
|
|
127
|
+
// Temporarily disable default onclick execution to run it through our promise tracker
|
|
128
|
+
event.preventDefault();
|
|
129
|
+
event.stopImmediatePropagation();
|
|
130
|
+
|
|
131
|
+
// Construct a function to await the promise
|
|
132
|
+
try {
|
|
133
|
+
button.setAttribute('data-loading', 'true');
|
|
134
|
+
button.setAttribute('disabled', 'true');
|
|
135
|
+
|
|
136
|
+
// To spin the icon dynamically:
|
|
137
|
+
let leadingIconSpan = button.querySelector('[data-slot="leading-icon"]');
|
|
138
|
+
let origHTML = '';
|
|
139
|
+
let isDynamicallyAdded = false;
|
|
140
|
+
|
|
141
|
+
if (!leadingIconSpan) {
|
|
142
|
+
isDynamicallyAdded = true;
|
|
143
|
+
leadingIconSpan = document.createElement('span');
|
|
144
|
+
leadingIconSpan.className = 'flex items-center justify-center shrink-0 w-4 h-4';
|
|
145
|
+
leadingIconSpan.setAttribute('data-slot', 'leading-icon');
|
|
146
|
+
leadingIconSpan.innerHTML = loaderSvg;
|
|
147
|
+
button.insertBefore(leadingIconSpan, button.firstChild);
|
|
148
|
+
} else {
|
|
149
|
+
origHTML = leadingIconSpan.innerHTML;
|
|
150
|
+
leadingIconSpan.innerHTML = loaderSvg;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
// Execute the promise
|
|
154
|
+
const promiseFn = new Function('event', `
|
|
155
|
+
const fn = () => { ${onClickAttr} };
|
|
156
|
+
return fn();
|
|
157
|
+
`);
|
|
158
|
+
await promiseFn.call(button, event);
|
|
159
|
+
|
|
160
|
+
// Restore state
|
|
161
|
+
button.removeAttribute('data-loading');
|
|
162
|
+
button.removeAttribute('disabled');
|
|
163
|
+
if (isDynamicallyAdded && leadingIconSpan) {
|
|
164
|
+
leadingIconSpan.remove();
|
|
165
|
+
} else if (leadingIconSpan) {
|
|
166
|
+
leadingIconSpan.innerHTML = origHTML;
|
|
167
|
+
}
|
|
168
|
+
} catch (err) {
|
|
169
|
+
console.error(err);
|
|
170
|
+
button.removeAttribute('data-loading');
|
|
171
|
+
button.removeAttribute('disabled');
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
});
|
|
175
|
+
});
|
|
176
|
+
</script>
|
|
177
|
+
)}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { computed, useSlots, useAttrs } from "vue"
|
|
3
|
+
import { scv } from "css-variants"
|
|
4
|
+
import { useUi } from "../../utils/useUi"
|
|
5
|
+
import { resolveClasses } from "../../utils/resolveClasses"
|
|
6
|
+
import type { ButtonProps } from "./button"
|
|
7
|
+
import { resolveTheme } from "../../utils/resolveTheme"
|
|
8
|
+
import buttonThemeDefault, { createButtonTheme } from "./button.theme"
|
|
9
|
+
const buttonTheme = resolveTheme(buttonThemeDefault, createButtonTheme)
|
|
10
|
+
import RLVIcon from "../icon/RLVIcon.vue"
|
|
11
|
+
const attrs = useAttrs()
|
|
12
|
+
const button = scv(buttonTheme)
|
|
13
|
+
|
|
14
|
+
const {
|
|
15
|
+
variant = "solid",
|
|
16
|
+
color = "primary",
|
|
17
|
+
size = "md",
|
|
18
|
+
href,
|
|
19
|
+
label,
|
|
20
|
+
leadingIcon,
|
|
21
|
+
trailingIcon,
|
|
22
|
+
loading = false,
|
|
23
|
+
square = false,
|
|
24
|
+
block = false,
|
|
25
|
+
active = false,
|
|
26
|
+
activeColor,
|
|
27
|
+
activeVariant,
|
|
28
|
+
ui: uiProp,
|
|
29
|
+
class: className
|
|
30
|
+
} = defineProps<ButtonProps>()
|
|
31
|
+
|
|
32
|
+
const slots = useSlots()
|
|
33
|
+
|
|
34
|
+
const isLeading = computed(() => !!(leadingIcon || slots.leading) || loading)
|
|
35
|
+
const isTrailing = computed(
|
|
36
|
+
() => !!(trailingIcon || slots.trailing) || (loading && !isLeading.value)
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
const showLeadingIcon = computed(() => {
|
|
40
|
+
if (loading) return "loaderCircle"
|
|
41
|
+
return leadingIcon
|
|
42
|
+
})
|
|
43
|
+
|
|
44
|
+
const showTrailingIcon = computed(() => {
|
|
45
|
+
if (loading) return "loaderCircle"
|
|
46
|
+
return trailingIcon
|
|
47
|
+
})
|
|
48
|
+
|
|
49
|
+
const leadingIconClass = computed(() => {
|
|
50
|
+
return loading && isLeading.value ? "animate-spin" : ""
|
|
51
|
+
})
|
|
52
|
+
|
|
53
|
+
const trailingIconClass = computed(() => {
|
|
54
|
+
return loading && isTrailing.value ? "animate-spin" : ""
|
|
55
|
+
})
|
|
56
|
+
|
|
57
|
+
defineSlots<{
|
|
58
|
+
default(props: { ui: Record<string, string> }): any
|
|
59
|
+
leading(props: { ui: Record<string, string> }): any
|
|
60
|
+
trailing(props: { ui: Record<string, string> }): any
|
|
61
|
+
}>()
|
|
62
|
+
|
|
63
|
+
const resolvedClasses = computed(() =>
|
|
64
|
+
resolveClasses(
|
|
65
|
+
button,
|
|
66
|
+
{
|
|
67
|
+
variant: active && activeVariant ? activeVariant : variant,
|
|
68
|
+
color: active && activeColor ? activeColor : color,
|
|
69
|
+
size,
|
|
70
|
+
block,
|
|
71
|
+
square: square || (!label && !slots.default),
|
|
72
|
+
leading: isLeading.value,
|
|
73
|
+
trailing: isTrailing.value,
|
|
74
|
+
loading,
|
|
75
|
+
active
|
|
76
|
+
},
|
|
77
|
+
useUi("button", uiProp),
|
|
78
|
+
className
|
|
79
|
+
)
|
|
80
|
+
)
|
|
81
|
+
|
|
82
|
+
const Tag = href ? "a" : "button"
|
|
83
|
+
</script>
|
|
84
|
+
|
|
85
|
+
<template>
|
|
86
|
+
<component v-bind="attrs" :is="Tag" :href="href" :class="resolvedClasses.root" data-slot="root">
|
|
87
|
+
<slot name="leading" :ui="resolvedClasses">
|
|
88
|
+
<span v-if="isLeading" :class="resolvedClasses.leadingIcon" data-slot="leading-icon">
|
|
89
|
+
<RLVIcon :name="showLeadingIcon" :class="leadingIconClass" />
|
|
90
|
+
</span>
|
|
91
|
+
</slot>
|
|
92
|
+
|
|
93
|
+
<span
|
|
94
|
+
v-if="label !== undefined && label !== null"
|
|
95
|
+
:class="resolvedClasses.label"
|
|
96
|
+
data-slot="label"
|
|
97
|
+
>
|
|
98
|
+
{{ label }}
|
|
99
|
+
</span>
|
|
100
|
+
<slot v-else />
|
|
101
|
+
|
|
102
|
+
<slot name="trailing" :ui="resolvedClasses">
|
|
103
|
+
<span v-if="isTrailing" :class="resolvedClasses.trailingIcon" data-slot="trailing-icon">
|
|
104
|
+
<RLVIcon :name="showTrailingIcon" :class="trailingIconClass" />
|
|
105
|
+
</span>
|
|
106
|
+
</slot>
|
|
107
|
+
</component>
|
|
108
|
+
</template>
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
import { colorConfig } from "../../config/color.config"
|
|
2
|
+
import { defineTheme } from "../../utils/defineTheme"
|
|
3
|
+
|
|
4
|
+
export const createButtonTheme = (colors: readonly string[] = colorConfig.colors) => {
|
|
5
|
+
const colorVariants: Record<string, { root: string }> = { neutral: { root: "" } }
|
|
6
|
+
for (const c of colors) {
|
|
7
|
+
colorVariants[c] = { root: "" }
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
return defineTheme({
|
|
11
|
+
slots: ["root", "label", "leadingIcon", "leadingAvatar", "leadingAvatarSize", "trailingIcon"],
|
|
12
|
+
base: {
|
|
13
|
+
root: [
|
|
14
|
+
"group inline-flex items-center justify-center font-medium ws-nowrap no-underline disabled:cursor-not-allowed aria-disabled:cursor-not-allowed disabled:opacity-75 aria-disabled:opacity-75",
|
|
15
|
+
"transition-colors outline-none",
|
|
16
|
+
"aria-invalid:border-error-500 aria-invalid:ring-error-500/20"
|
|
17
|
+
],
|
|
18
|
+
label: "truncate",
|
|
19
|
+
leadingIcon: "shrink-0 flex items-center justify-center",
|
|
20
|
+
leadingAvatar: "shrink-0",
|
|
21
|
+
leadingAvatarSize: "",
|
|
22
|
+
trailingIcon: "shrink-0 flex items-center justify-center"
|
|
23
|
+
},
|
|
24
|
+
variants: {
|
|
25
|
+
variant: {
|
|
26
|
+
solid: { root: "" },
|
|
27
|
+
outline: { root: "" },
|
|
28
|
+
soft: { root: "" },
|
|
29
|
+
subtle: { root: "" },
|
|
30
|
+
ghost: { root: "" },
|
|
31
|
+
link: { root: "" }
|
|
32
|
+
},
|
|
33
|
+
color: colorVariants,
|
|
34
|
+
size: {
|
|
35
|
+
xs: {
|
|
36
|
+
root: "text-xs gap-1 [&_svg]:size-4",
|
|
37
|
+
leadingIcon: "size-4",
|
|
38
|
+
leadingAvatarSize: "3xs",
|
|
39
|
+
trailingIcon: "size-4"
|
|
40
|
+
},
|
|
41
|
+
sm: {
|
|
42
|
+
root: "text-sm gap-1.5 [&_svg]:size-4",
|
|
43
|
+
leadingIcon: "size-4",
|
|
44
|
+
leadingAvatarSize: "2xs",
|
|
45
|
+
trailingIcon: "size-4"
|
|
46
|
+
},
|
|
47
|
+
md: {
|
|
48
|
+
root: "text-base gap-2 [&_svg]:size-5",
|
|
49
|
+
leadingIcon: "size-5",
|
|
50
|
+
leadingAvatarSize: "xs",
|
|
51
|
+
trailingIcon: "size-5"
|
|
52
|
+
},
|
|
53
|
+
lg: {
|
|
54
|
+
root: "text-lg gap-2.5 [&_svg]:size-5",
|
|
55
|
+
leadingIcon: "size-5",
|
|
56
|
+
leadingAvatarSize: "sm",
|
|
57
|
+
trailingIcon: "size-5"
|
|
58
|
+
},
|
|
59
|
+
xl: {
|
|
60
|
+
root: "text-2xl gap-3 [&_svg]:size-7",
|
|
61
|
+
leadingIcon: "size-7",
|
|
62
|
+
leadingAvatarSize: "lg",
|
|
63
|
+
trailingIcon: "size-7"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
block: {
|
|
67
|
+
true: { root: "w-full justify-center", trailingIcon: "ms-auto" }
|
|
68
|
+
},
|
|
69
|
+
square: {
|
|
70
|
+
true: {},
|
|
71
|
+
false: {}
|
|
72
|
+
},
|
|
73
|
+
rounded: {
|
|
74
|
+
true: { root: "rounded-full" },
|
|
75
|
+
false: { root: "rounded-md" }
|
|
76
|
+
},
|
|
77
|
+
leading: { true: {} },
|
|
78
|
+
trailing: { true: {} },
|
|
79
|
+
loading: { true: {} },
|
|
80
|
+
active: {
|
|
81
|
+
true: { root: "" },
|
|
82
|
+
false: { root: "" }
|
|
83
|
+
},
|
|
84
|
+
theme: {
|
|
85
|
+
light: { root: "rl-light" },
|
|
86
|
+
dark: { root: "rl-dark" }
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
compoundVariants: [
|
|
90
|
+
...colors.map((color) => ({
|
|
91
|
+
variant: "solid" as const,
|
|
92
|
+
color,
|
|
93
|
+
classNames: {
|
|
94
|
+
root:
|
|
95
|
+
"rl-color-" +
|
|
96
|
+
color +
|
|
97
|
+
" bg-[var(--rl-bg)] text-white hover:bg-[var(--rl-bg-hover)] active:bg-[var(--rl-bg-hover)] disabled:bg-[var(--rl-bg)] aria-disabled:bg-[var(--rl-bg)] focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-[var(--rl-ring)]"
|
|
98
|
+
}
|
|
99
|
+
})),
|
|
100
|
+
...colors.map((color) => ({
|
|
101
|
+
variant: "outline" as const,
|
|
102
|
+
color,
|
|
103
|
+
classNames: {
|
|
104
|
+
root:
|
|
105
|
+
"rl-color-" +
|
|
106
|
+
color +
|
|
107
|
+
" ring ring-inset ring-[var(--rl-border)]/50 text-[var(--rl-text)] hover:bg-[var(--rl-bg)]/10 active:bg-[var(--rl-bg)]/10 disabled:bg-transparent aria-disabled:bg-transparent focus:outline-none focus-visible:ring-2 focus-visible:ring-[var(--rl-ring)]"
|
|
108
|
+
}
|
|
109
|
+
})),
|
|
110
|
+
...colors.map((color) => ({
|
|
111
|
+
variant: "soft" as const,
|
|
112
|
+
color,
|
|
113
|
+
classNames: {
|
|
114
|
+
root:
|
|
115
|
+
"rl-color-" +
|
|
116
|
+
color +
|
|
117
|
+
" text-[var(--rl-text)] bg-[var(--rl-bg)]/10 hover:bg-[var(--rl-bg)]/15 active:bg-[var(--rl-bg)]/15 focus:outline-none focus-visible:bg-[var(--rl-bg)]/15 disabled:bg-[var(--rl-bg)]/10 aria-disabled:bg-[var(--rl-bg)]/10"
|
|
118
|
+
}
|
|
119
|
+
})),
|
|
120
|
+
...colors.map((color) => ({
|
|
121
|
+
variant: "subtle" as const,
|
|
122
|
+
color,
|
|
123
|
+
classNames: {
|
|
124
|
+
root:
|
|
125
|
+
"rl-color-" +
|
|
126
|
+
color +
|
|
127
|
+
" text-[var(--rl-text)] ring ring-inset ring-[var(--rl-border)]/25 bg-[var(--rl-bg)]/10 hover:bg-[var(--rl-bg)]/15 active:bg-[var(--rl-bg)]/15 disabled:bg-[var(--rl-bg)]/10 aria-disabled:bg-[var(--rl-bg)]/10 focus:outline-none focus-visible:ring-2 focus-visible:ring-[var(--rl-ring)]"
|
|
128
|
+
}
|
|
129
|
+
})),
|
|
130
|
+
...colors.map((color) => ({
|
|
131
|
+
variant: "ghost" as const,
|
|
132
|
+
color,
|
|
133
|
+
classNames: {
|
|
134
|
+
root:
|
|
135
|
+
"rl-color-" +
|
|
136
|
+
color +
|
|
137
|
+
" text-[var(--rl-text)] hover:bg-[var(--rl-bg)]/10 active:bg-[var(--rl-bg)]/10 focus:outline-none focus-visible:bg-[var(--rl-bg)]/10 disabled:bg-transparent aria-disabled:bg-transparent"
|
|
138
|
+
}
|
|
139
|
+
})),
|
|
140
|
+
...colors.map((color) => ({
|
|
141
|
+
variant: "link" as const,
|
|
142
|
+
color,
|
|
143
|
+
classNames: {
|
|
144
|
+
root:
|
|
145
|
+
"rl-color-" +
|
|
146
|
+
color +
|
|
147
|
+
" text-[var(--rl-text)] hover:text-[var(--rl-text)]/75 active:text-[var(--rl-text)]/75 disabled:text-[var(--rl-text)] aria-disabled:text-[var(--rl-text)] focus:outline-none focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-[var(--rl-ring)]"
|
|
148
|
+
}
|
|
149
|
+
})),
|
|
150
|
+
{
|
|
151
|
+
color: "neutral",
|
|
152
|
+
variant: "solid",
|
|
153
|
+
classNames: {
|
|
154
|
+
root: "text-inverted bg-inverted hover:bg-inverted/90 active:bg-inverted/90 disabled:bg-inverted aria-disabled:bg-inverted focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-inverted"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
color: "neutral",
|
|
159
|
+
variant: "outline",
|
|
160
|
+
classNames: {
|
|
161
|
+
root: "ring ring-inset ring-current text-default bg-transparent hover:bg-elevated active:bg-elevated disabled:bg-transparent aria-disabled:bg-transparent focus:outline-none focus-visible:ring-2 focus-visible:ring-inverted"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
color: "neutral",
|
|
166
|
+
variant: "soft",
|
|
167
|
+
classNames: {
|
|
168
|
+
root: "text-default bg-elevated hover:bg-accented/75 active:bg-accented/75 focus:outline-none focus-visible:bg-accented/75 disabled:bg-elevated aria-disabled:bg-elevated"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
color: "neutral",
|
|
173
|
+
variant: "subtle",
|
|
174
|
+
classNames: {
|
|
175
|
+
root: "ring ring-inset ring-accented text-default bg-elevated hover:bg-accented/75 active:bg-accented/75 disabled:bg-elevated aria-disabled:bg-elevated focus:outline-none focus-visible:ring-2 focus-visible:ring-inverted"
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
color: "neutral",
|
|
180
|
+
variant: "ghost",
|
|
181
|
+
classNames: {
|
|
182
|
+
root: "text-default hover:bg-hover active:bg-hover/80 focus:outline-none focus-visible:bg-hover hover:disabled:bg-transparent hover:aria-disabled:bg-transparent"
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
color: "neutral",
|
|
187
|
+
variant: "link",
|
|
188
|
+
classNames: {
|
|
189
|
+
root: "text-muted hover:text-default active:text-default disabled:text-muted aria-disabled:text-muted focus:outline-none focus-visible:ring-inset focus-visible:ring-2 focus-visible:ring-inverted"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
{ square: false, size: "xs", classNames: { root: "px-2 py-1" } },
|
|
193
|
+
{ square: true, size: "xs", classNames: { root: "p-1" } },
|
|
194
|
+
{ square: false, size: "sm", classNames: { root: "px-2.5 py-1.5" } },
|
|
195
|
+
{ square: true, size: "sm", classNames: { root: "p-1.5" } },
|
|
196
|
+
{ square: false, size: "md", classNames: { root: "px-3 py-2" } },
|
|
197
|
+
{ square: true, size: "md", classNames: { root: "p-2" } },
|
|
198
|
+
{ square: false, size: "lg", classNames: { root: "px-3.5 py-2.5" } },
|
|
199
|
+
{ square: true, size: "lg", classNames: { root: "p-2.5" } },
|
|
200
|
+
{ square: false, size: "xl", classNames: { root: "px-5 py-3.5" } },
|
|
201
|
+
{ square: true, size: "xl", classNames: { root: "p-3.5" } },
|
|
202
|
+
{
|
|
203
|
+
loading: true,
|
|
204
|
+
leading: true,
|
|
205
|
+
classNames: {
|
|
206
|
+
leadingIcon: "animate-spin"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
loading: true,
|
|
211
|
+
leading: false,
|
|
212
|
+
trailing: true,
|
|
213
|
+
classNames: {
|
|
214
|
+
trailingIcon: "animate-spin"
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
],
|
|
218
|
+
defaultVariants: {
|
|
219
|
+
variant: "solid",
|
|
220
|
+
color: "primary",
|
|
221
|
+
size: "md"
|
|
222
|
+
}
|
|
223
|
+
})
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
export default createButtonTheme()
|