@rimelight/ui 0.0.8 → 0.0.9
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/package.json +1 -1
- package/src/env.d.ts +6 -0
- package/src/integrations/ui.ts +15 -1
- package/src/nuxt.ts +125 -125
package/package.json
CHANGED
package/src/env.d.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
/// <reference types="astro/client" />
|
|
2
2
|
|
|
3
|
+
declare module "virtual:nuxt-ui-plugins" {
|
|
4
|
+
import type { Plugin } from "vue"
|
|
5
|
+
const plugin: Plugin
|
|
6
|
+
export default plugin
|
|
7
|
+
}
|
|
8
|
+
|
|
3
9
|
declare module "virtual:rimelight-ui" {
|
|
4
10
|
import type { DefaultUIConfig } from "../themes"
|
|
5
11
|
|
package/src/integrations/ui.ts
CHANGED
|
@@ -3,7 +3,7 @@ import vue from "@astrojs/vue"
|
|
|
3
3
|
import uiPlugin from "@nuxt/ui/vite"
|
|
4
4
|
import defu from "defu"
|
|
5
5
|
import Icons from "unplugin-icons/vite"
|
|
6
|
-
import tailwindcss from
|
|
6
|
+
import tailwindcss from "@tailwindcss/vite"
|
|
7
7
|
import { defaultUIConfig } from "../themes"
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -58,6 +58,20 @@ export function ui(options: UIOptions = {}): AstroIntegration[] {
|
|
|
58
58
|
|
|
59
59
|
updateConfig({
|
|
60
60
|
vite: {
|
|
61
|
+
optimizeDeps: {
|
|
62
|
+
exclude: [
|
|
63
|
+
"@rimelight/ui",
|
|
64
|
+
"@rimelight/ui/vue-plugin",
|
|
65
|
+
"@rimelight/ui/integrations/vue-entrypoint",
|
|
66
|
+
"@nuxt/ui"
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
ssr: {
|
|
70
|
+
noExternal: ["@rimelight/ui", "@nuxt/ui"],
|
|
71
|
+
optimizeDeps: {
|
|
72
|
+
exclude: ["@rimelight/ui/vue-plugin", "@rimelight/ui/integrations/vue-entrypoint"]
|
|
73
|
+
}
|
|
74
|
+
},
|
|
61
75
|
plugins: [
|
|
62
76
|
uiPlugin({
|
|
63
77
|
router: false,
|
package/src/nuxt.ts
CHANGED
|
@@ -1,125 +1,125 @@
|
|
|
1
|
-
// Components
|
|
2
|
-
export { default as Accordion } from "@nuxt/ui/components/Accordion.vue"
|
|
3
|
-
export { default as Alert } from "@nuxt/ui/components/Alert.vue"
|
|
4
|
-
export { default as App } from "@nuxt/ui/components/App.vue"
|
|
5
|
-
export { default as AuthForm } from "@nuxt/ui/components/AuthForm.vue"
|
|
6
|
-
export { default as Avatar } from "@nuxt/ui/components/Avatar.vue"
|
|
7
|
-
export { default as AvatarGroup } from "@nuxt/ui/components/AvatarGroup.vue"
|
|
8
|
-
export { default as Badge } from "@nuxt/ui/components/Badge.vue"
|
|
9
|
-
export { default as Banner } from "@nuxt/ui/components/Banner.vue"
|
|
10
|
-
export { default as BlogPost } from "@nuxt/ui/components/BlogPost.vue"
|
|
11
|
-
export { default as BlogPosts } from "@nuxt/ui/components/BlogPosts.vue"
|
|
12
|
-
export { default as Breadcrumb } from "@nuxt/ui/components/Breadcrumb.vue"
|
|
13
|
-
export { default as Button } from "@nuxt/ui/components/Button.vue"
|
|
14
|
-
export { default as Calendar } from "@nuxt/ui/components/Calendar.vue"
|
|
15
|
-
export { default as Card } from "@nuxt/ui/components/Card.vue"
|
|
16
|
-
export { default as Carousel } from "@nuxt/ui/components/Carousel.vue"
|
|
17
|
-
export { default as ChangelogVersion } from "@nuxt/ui/components/ChangelogVersion.vue"
|
|
18
|
-
export { default as ChangelogVersions } from "@nuxt/ui/components/ChangelogVersions.vue"
|
|
19
|
-
export { default as ChatMessage } from "@nuxt/ui/components/ChatMessage.vue"
|
|
20
|
-
export { default as ChatMessages } from "@nuxt/ui/components/ChatMessages.vue"
|
|
21
|
-
export { default as ChatPalette } from "@nuxt/ui/components/ChatPalette.vue"
|
|
22
|
-
export { default as ChatPrompt } from "@nuxt/ui/components/ChatPrompt.vue"
|
|
23
|
-
export { default as ChatPromptSubmit } from "@nuxt/ui/components/ChatPromptSubmit.vue"
|
|
24
|
-
export { default as ChatReasoning } from "@nuxt/ui/components/ChatReasoning.vue"
|
|
25
|
-
export { default as ChatShimmer } from "@nuxt/ui/components/ChatShimmer.vue"
|
|
26
|
-
export { default as ChatTool } from "@nuxt/ui/components/ChatTool.vue"
|
|
27
|
-
export { default as Checkbox } from "@nuxt/ui/components/Checkbox.vue"
|
|
28
|
-
export { default as CheckboxGroup } from "@nuxt/ui/components/CheckboxGroup.vue"
|
|
29
|
-
export { default as Chip } from "@nuxt/ui/components/Chip.vue"
|
|
30
|
-
export { default as Collapsible } from "@nuxt/ui/components/Collapsible.vue"
|
|
31
|
-
export { default as ColorPicker } from "@nuxt/ui/components/ColorPicker.vue"
|
|
32
|
-
export { default as CommandPalette } from "@nuxt/ui/components/CommandPalette.vue"
|
|
33
|
-
export { default as Container } from "@nuxt/ui/components/Container.vue"
|
|
34
|
-
export { default as ContextMenu } from "@nuxt/ui/components/ContextMenu.vue"
|
|
35
|
-
export { default as DashboardGroup } from "@nuxt/ui/components/DashboardGroup.vue"
|
|
36
|
-
export { default as DashboardNavbar } from "@nuxt/ui/components/DashboardNavbar.vue"
|
|
37
|
-
export { default as DashboardPanel } from "@nuxt/ui/components/DashboardPanel.vue"
|
|
38
|
-
export { default as DashboardResizeHandle } from "@nuxt/ui/components/DashboardResizeHandle.vue"
|
|
39
|
-
export { default as DashboardSearch } from "@nuxt/ui/components/DashboardSearch.vue"
|
|
40
|
-
export { default as DashboardSearchButton } from "@nuxt/ui/components/DashboardSearchButton.vue"
|
|
41
|
-
export { default as DashboardSidebar } from "@nuxt/ui/components/DashboardSidebar.vue"
|
|
42
|
-
export { default as DashboardSidebarCollapse } from "@nuxt/ui/components/DashboardSidebarCollapse.vue"
|
|
43
|
-
export { default as DashboardSidebarToggle } from "@nuxt/ui/components/DashboardSidebarToggle.vue"
|
|
44
|
-
export { default as DashboardToolbar } from "@nuxt/ui/components/DashboardToolbar.vue"
|
|
45
|
-
export { default as Drawer } from "@nuxt/ui/components/Drawer.vue"
|
|
46
|
-
export { default as DropdownMenu } from "@nuxt/ui/components/DropdownMenu.vue"
|
|
47
|
-
export { default as Editor } from "@nuxt/ui/components/Editor.vue"
|
|
48
|
-
export { default as EditorDragHandle } from "@nuxt/ui/components/EditorDragHandle.vue"
|
|
49
|
-
export { default as EditorEmojiMenu } from "@nuxt/ui/components/EditorEmojiMenu.vue"
|
|
50
|
-
export { default as EditorMentionMenu } from "@nuxt/ui/components/EditorMentionMenu.vue"
|
|
51
|
-
export { default as EditorSuggestionMenu } from "@nuxt/ui/components/EditorSuggestionMenu.vue"
|
|
52
|
-
export { default as EditorToolbar } from "@nuxt/ui/components/EditorToolbar.vue"
|
|
53
|
-
export { default as Empty } from "@nuxt/ui/components/Empty.vue"
|
|
54
|
-
export { default as Error } from "@nuxt/ui/components/Error.vue"
|
|
55
|
-
export { default as FieldGroup } from "@nuxt/ui/components/FieldGroup.vue"
|
|
56
|
-
export { default as FileUpload } from "@nuxt/ui/components/FileUpload.vue"
|
|
57
|
-
export { default as Footer } from "@nuxt/ui/components/Footer.vue"
|
|
58
|
-
export { default as FooterColumns } from "@nuxt/ui/components/FooterColumns.vue"
|
|
59
|
-
export { default as Form } from "@nuxt/ui/components/Form.vue"
|
|
60
|
-
export { default as FormField } from "@nuxt/ui/components/FormField.vue"
|
|
61
|
-
export { default as Header } from "@nuxt/ui/components/Header.vue"
|
|
62
|
-
export { default as Icon } from "@nuxt/ui/components/Icon.vue"
|
|
63
|
-
export { default as Input } from "@nuxt/ui/components/Input.vue"
|
|
64
|
-
export { default as InputDate } from "@nuxt/ui/components/InputDate.vue"
|
|
65
|
-
export { default as InputMenu } from "@nuxt/ui/components/InputMenu.vue"
|
|
66
|
-
export { default as InputNumber } from "@nuxt/ui/components/InputNumber.vue"
|
|
67
|
-
export { default as InputTags } from "@nuxt/ui/components/InputTags.vue"
|
|
68
|
-
export { default as InputTime } from "@nuxt/ui/components/InputTime.vue"
|
|
69
|
-
export { default as Kbd } from "@nuxt/ui/components/Kbd.vue"
|
|
70
|
-
export { default as Link } from "@nuxt/ui/components/Link.vue"
|
|
71
|
-
export { default as Main } from "@nuxt/ui/components/Main.vue"
|
|
72
|
-
export { default as Marquee } from "@nuxt/ui/components/Marquee.vue"
|
|
73
|
-
export { default as Modal } from "@nuxt/ui/components/Modal.vue"
|
|
74
|
-
export { default as NavigationMenu } from "@nuxt/ui/components/NavigationMenu.vue"
|
|
75
|
-
export { default as Page } from "@nuxt/ui/components/Page.vue"
|
|
76
|
-
export { default as PageAnchors } from "@nuxt/ui/components/PageAnchors.vue"
|
|
77
|
-
export { default as PageAside } from "@nuxt/ui/components/PageAside.vue"
|
|
78
|
-
export { default as PageBody } from "@nuxt/ui/components/PageBody.vue"
|
|
79
|
-
export { default as PageCard } from "@nuxt/ui/components/PageCard.vue"
|
|
80
|
-
export { default as PageColumns } from "@nuxt/ui/components/PageColumns.vue"
|
|
81
|
-
export { default as PageCTA } from "@nuxt/ui/components/PageCTA.vue"
|
|
82
|
-
export { default as PageFeature } from "@nuxt/ui/components/PageFeature.vue"
|
|
83
|
-
export { default as PageGrid } from "@nuxt/ui/components/PageGrid.vue"
|
|
84
|
-
export { default as PageHeader } from "@nuxt/ui/components/PageHeader.vue"
|
|
85
|
-
export { default as PageHero } from "@nuxt/ui/components/PageHero.vue"
|
|
86
|
-
export { default as PageLinks } from "@nuxt/ui/components/PageLinks.vue"
|
|
87
|
-
export { default as PageList } from "@nuxt/ui/components/PageList.vue"
|
|
88
|
-
export { default as PageLogos } from "@nuxt/ui/components/PageLogos.vue"
|
|
89
|
-
export { default as PageSection } from "@nuxt/ui/components/PageSection.vue"
|
|
90
|
-
export { default as Pagination } from "@nuxt/ui/components/Pagination.vue"
|
|
91
|
-
export { default as PinInput } from "@nuxt/ui/components/PinInput.vue"
|
|
92
|
-
export { default as Popover } from "@nuxt/ui/components/Popover.vue"
|
|
93
|
-
export { default as PricingPlan } from "@nuxt/ui/components/PricingPlan.vue"
|
|
94
|
-
export { default as PricingPlans } from "@nuxt/ui/components/PricingPlans.vue"
|
|
95
|
-
export { default as PricingTable } from "@nuxt/ui/components/PricingTable.vue"
|
|
96
|
-
export { default as Progress } from "@nuxt/ui/components/Progress.vue"
|
|
97
|
-
export { default as RadioGroup } from "@nuxt/ui/components/RadioGroup.vue"
|
|
98
|
-
export { default as ScrollArea } from "@nuxt/ui/components/ScrollArea.vue"
|
|
99
|
-
export { default as Select } from "@nuxt/ui/components/Select.vue"
|
|
100
|
-
export { default as SelectMenu } from "@nuxt/ui/components/SelectMenu.vue"
|
|
101
|
-
export { default as Separator } from "@nuxt/ui/components/Separator.vue"
|
|
102
|
-
export { default as Sidebar } from "@nuxt/ui/components/Sidebar.vue"
|
|
103
|
-
export { default as Skeleton } from "@nuxt/ui/components/Skeleton.vue"
|
|
104
|
-
export { default as Slideover } from "@nuxt/ui/components/Slideover.vue"
|
|
105
|
-
export { default as Slider } from "@nuxt/ui/components/Slider.vue"
|
|
106
|
-
export { default as Stepper } from "@nuxt/ui/components/Stepper.vue"
|
|
107
|
-
export { default as Switch } from "@nuxt/ui/components/Switch.vue"
|
|
108
|
-
export { default as Table } from "@nuxt/ui/components/Table.vue"
|
|
109
|
-
export { default as Tabs } from "@nuxt/ui/components/Tabs.vue"
|
|
110
|
-
export { default as Textarea } from "@nuxt/ui/components/Textarea.vue"
|
|
111
|
-
export { default as Timeline } from "@nuxt/ui/components/Timeline.vue"
|
|
112
|
-
export { default as Toast } from "@nuxt/ui/components/Toast.vue"
|
|
113
|
-
export { default as Toaster } from "@nuxt/ui/components/Toaster.vue"
|
|
114
|
-
export { default as Tooltip } from "@nuxt/ui/components/Tooltip.vue"
|
|
115
|
-
export { default as Tree } from "@nuxt/ui/components/Tree.vue"
|
|
116
|
-
export { default as User } from "@nuxt/ui/components/User.vue"
|
|
117
|
-
export { default as ColorModeAvatar } from "@nuxt/ui/components/color-mode/ColorModeAvatar.vue"
|
|
118
|
-
export { default as ColorModeButton } from "@nuxt/ui/components/color-mode/ColorModeButton.vue"
|
|
119
|
-
export { default as ColorModeImage } from "@nuxt/ui/components/color-mode/ColorModeImage.vue"
|
|
120
|
-
export { default as ColorModeSelect } from "@nuxt/ui/components/color-mode/ColorModeSelect.vue"
|
|
121
|
-
export { default as ColorModeSwitch } from "@nuxt/ui/components/color-mode/ColorModeSwitch.vue"
|
|
122
|
-
export { default as LocaleSelect } from "@nuxt/ui/components/locale/LocaleSelect.vue"
|
|
123
|
-
|
|
124
|
-
// Explicitly allowed composables
|
|
125
|
-
export * from "@nuxt/ui/composables/defineShortcuts"
|
|
1
|
+
// Components
|
|
2
|
+
export { default as Accordion } from "@nuxt/ui/components/Accordion.vue"
|
|
3
|
+
export { default as Alert } from "@nuxt/ui/components/Alert.vue"
|
|
4
|
+
export { default as App } from "@nuxt/ui/components/App.vue"
|
|
5
|
+
export { default as AuthForm } from "@nuxt/ui/components/AuthForm.vue"
|
|
6
|
+
export { default as Avatar } from "@nuxt/ui/components/Avatar.vue"
|
|
7
|
+
export { default as AvatarGroup } from "@nuxt/ui/components/AvatarGroup.vue"
|
|
8
|
+
export { default as Badge } from "@nuxt/ui/components/Badge.vue"
|
|
9
|
+
export { default as Banner } from "@nuxt/ui/components/Banner.vue"
|
|
10
|
+
export { default as BlogPost } from "@nuxt/ui/components/BlogPost.vue"
|
|
11
|
+
export { default as BlogPosts } from "@nuxt/ui/components/BlogPosts.vue"
|
|
12
|
+
export { default as Breadcrumb } from "@nuxt/ui/components/Breadcrumb.vue"
|
|
13
|
+
export { default as Button } from "@nuxt/ui/components/Button.vue"
|
|
14
|
+
export { default as Calendar } from "@nuxt/ui/components/Calendar.vue"
|
|
15
|
+
export { default as Card } from "@nuxt/ui/components/Card.vue"
|
|
16
|
+
export { default as Carousel } from "@nuxt/ui/components/Carousel.vue"
|
|
17
|
+
export { default as ChangelogVersion } from "@nuxt/ui/components/ChangelogVersion.vue"
|
|
18
|
+
export { default as ChangelogVersions } from "@nuxt/ui/components/ChangelogVersions.vue"
|
|
19
|
+
export { default as ChatMessage } from "@nuxt/ui/components/ChatMessage.vue"
|
|
20
|
+
export { default as ChatMessages } from "@nuxt/ui/components/ChatMessages.vue"
|
|
21
|
+
export { default as ChatPalette } from "@nuxt/ui/components/ChatPalette.vue"
|
|
22
|
+
export { default as ChatPrompt } from "@nuxt/ui/components/ChatPrompt.vue"
|
|
23
|
+
export { default as ChatPromptSubmit } from "@nuxt/ui/components/ChatPromptSubmit.vue"
|
|
24
|
+
export { default as ChatReasoning } from "@nuxt/ui/components/ChatReasoning.vue"
|
|
25
|
+
export { default as ChatShimmer } from "@nuxt/ui/components/ChatShimmer.vue"
|
|
26
|
+
export { default as ChatTool } from "@nuxt/ui/components/ChatTool.vue"
|
|
27
|
+
export { default as Checkbox } from "@nuxt/ui/components/Checkbox.vue"
|
|
28
|
+
export { default as CheckboxGroup } from "@nuxt/ui/components/CheckboxGroup.vue"
|
|
29
|
+
export { default as Chip } from "@nuxt/ui/components/Chip.vue"
|
|
30
|
+
export { default as Collapsible } from "@nuxt/ui/components/Collapsible.vue"
|
|
31
|
+
export { default as ColorPicker } from "@nuxt/ui/components/ColorPicker.vue"
|
|
32
|
+
export { default as CommandPalette } from "@nuxt/ui/components/CommandPalette.vue"
|
|
33
|
+
export { default as Container } from "@nuxt/ui/components/Container.vue"
|
|
34
|
+
export { default as ContextMenu } from "@nuxt/ui/components/ContextMenu.vue"
|
|
35
|
+
export { default as DashboardGroup } from "@nuxt/ui/components/DashboardGroup.vue"
|
|
36
|
+
export { default as DashboardNavbar } from "@nuxt/ui/components/DashboardNavbar.vue"
|
|
37
|
+
export { default as DashboardPanel } from "@nuxt/ui/components/DashboardPanel.vue"
|
|
38
|
+
export { default as DashboardResizeHandle } from "@nuxt/ui/components/DashboardResizeHandle.vue"
|
|
39
|
+
export { default as DashboardSearch } from "@nuxt/ui/components/DashboardSearch.vue"
|
|
40
|
+
export { default as DashboardSearchButton } from "@nuxt/ui/components/DashboardSearchButton.vue"
|
|
41
|
+
export { default as DashboardSidebar } from "@nuxt/ui/components/DashboardSidebar.vue"
|
|
42
|
+
export { default as DashboardSidebarCollapse } from "@nuxt/ui/components/DashboardSidebarCollapse.vue"
|
|
43
|
+
export { default as DashboardSidebarToggle } from "@nuxt/ui/components/DashboardSidebarToggle.vue"
|
|
44
|
+
export { default as DashboardToolbar } from "@nuxt/ui/components/DashboardToolbar.vue"
|
|
45
|
+
export { default as Drawer } from "@nuxt/ui/components/Drawer.vue"
|
|
46
|
+
export { default as DropdownMenu } from "@nuxt/ui/components/DropdownMenu.vue"
|
|
47
|
+
export { default as Editor } from "@nuxt/ui/components/Editor.vue"
|
|
48
|
+
export { default as EditorDragHandle } from "@nuxt/ui/components/EditorDragHandle.vue"
|
|
49
|
+
export { default as EditorEmojiMenu } from "@nuxt/ui/components/EditorEmojiMenu.vue"
|
|
50
|
+
export { default as EditorMentionMenu } from "@nuxt/ui/components/EditorMentionMenu.vue"
|
|
51
|
+
export { default as EditorSuggestionMenu } from "@nuxt/ui/components/EditorSuggestionMenu.vue"
|
|
52
|
+
export { default as EditorToolbar } from "@nuxt/ui/components/EditorToolbar.vue"
|
|
53
|
+
export { default as Empty } from "@nuxt/ui/components/Empty.vue"
|
|
54
|
+
export { default as Error } from "@nuxt/ui/components/Error.vue"
|
|
55
|
+
export { default as FieldGroup } from "@nuxt/ui/components/FieldGroup.vue"
|
|
56
|
+
export { default as FileUpload } from "@nuxt/ui/components/FileUpload.vue"
|
|
57
|
+
export { default as Footer } from "@nuxt/ui/components/Footer.vue"
|
|
58
|
+
export { default as FooterColumns } from "@nuxt/ui/components/FooterColumns.vue"
|
|
59
|
+
export { default as Form } from "@nuxt/ui/components/Form.vue"
|
|
60
|
+
export { default as FormField } from "@nuxt/ui/components/FormField.vue"
|
|
61
|
+
export { default as Header } from "@nuxt/ui/components/Header.vue"
|
|
62
|
+
export { default as Icon } from "@nuxt/ui/components/Icon.vue"
|
|
63
|
+
export { default as Input } from "@nuxt/ui/components/Input.vue"
|
|
64
|
+
export { default as InputDate } from "@nuxt/ui/components/InputDate.vue"
|
|
65
|
+
export { default as InputMenu } from "@nuxt/ui/components/InputMenu.vue"
|
|
66
|
+
export { default as InputNumber } from "@nuxt/ui/components/InputNumber.vue"
|
|
67
|
+
export { default as InputTags } from "@nuxt/ui/components/InputTags.vue"
|
|
68
|
+
export { default as InputTime } from "@nuxt/ui/components/InputTime.vue"
|
|
69
|
+
export { default as Kbd } from "@nuxt/ui/components/Kbd.vue"
|
|
70
|
+
export { default as Link } from "@nuxt/ui/components/Link.vue"
|
|
71
|
+
export { default as Main } from "@nuxt/ui/components/Main.vue"
|
|
72
|
+
export { default as Marquee } from "@nuxt/ui/components/Marquee.vue"
|
|
73
|
+
export { default as Modal } from "@nuxt/ui/components/Modal.vue"
|
|
74
|
+
export { default as NavigationMenu } from "@nuxt/ui/components/NavigationMenu.vue"
|
|
75
|
+
export { default as Page } from "@nuxt/ui/components/Page.vue"
|
|
76
|
+
export { default as PageAnchors } from "@nuxt/ui/components/PageAnchors.vue"
|
|
77
|
+
export { default as PageAside } from "@nuxt/ui/components/PageAside.vue"
|
|
78
|
+
export { default as PageBody } from "@nuxt/ui/components/PageBody.vue"
|
|
79
|
+
export { default as PageCard } from "@nuxt/ui/components/PageCard.vue"
|
|
80
|
+
export { default as PageColumns } from "@nuxt/ui/components/PageColumns.vue"
|
|
81
|
+
export { default as PageCTA } from "@nuxt/ui/components/PageCTA.vue"
|
|
82
|
+
export { default as PageFeature } from "@nuxt/ui/components/PageFeature.vue"
|
|
83
|
+
export { default as PageGrid } from "@nuxt/ui/components/PageGrid.vue"
|
|
84
|
+
export { default as PageHeader } from "@nuxt/ui/components/PageHeader.vue"
|
|
85
|
+
export { default as PageHero } from "@nuxt/ui/components/PageHero.vue"
|
|
86
|
+
export { default as PageLinks } from "@nuxt/ui/components/PageLinks.vue"
|
|
87
|
+
export { default as PageList } from "@nuxt/ui/components/PageList.vue"
|
|
88
|
+
export { default as PageLogos } from "@nuxt/ui/components/PageLogos.vue"
|
|
89
|
+
export { default as PageSection } from "@nuxt/ui/components/PageSection.vue"
|
|
90
|
+
export { default as Pagination } from "@nuxt/ui/components/Pagination.vue"
|
|
91
|
+
export { default as PinInput } from "@nuxt/ui/components/PinInput.vue"
|
|
92
|
+
export { default as Popover } from "@nuxt/ui/components/Popover.vue"
|
|
93
|
+
export { default as PricingPlan } from "@nuxt/ui/components/PricingPlan.vue"
|
|
94
|
+
export { default as PricingPlans } from "@nuxt/ui/components/PricingPlans.vue"
|
|
95
|
+
export { default as PricingTable } from "@nuxt/ui/components/PricingTable.vue"
|
|
96
|
+
export { default as Progress } from "@nuxt/ui/components/Progress.vue"
|
|
97
|
+
export { default as RadioGroup } from "@nuxt/ui/components/RadioGroup.vue"
|
|
98
|
+
export { default as ScrollArea } from "@nuxt/ui/components/ScrollArea.vue"
|
|
99
|
+
export { default as Select } from "@nuxt/ui/components/Select.vue"
|
|
100
|
+
export { default as SelectMenu } from "@nuxt/ui/components/SelectMenu.vue"
|
|
101
|
+
export { default as Separator } from "@nuxt/ui/components/Separator.vue"
|
|
102
|
+
export { default as Sidebar } from "@nuxt/ui/components/Sidebar.vue"
|
|
103
|
+
export { default as Skeleton } from "@nuxt/ui/components/Skeleton.vue"
|
|
104
|
+
export { default as Slideover } from "@nuxt/ui/components/Slideover.vue"
|
|
105
|
+
export { default as Slider } from "@nuxt/ui/components/Slider.vue"
|
|
106
|
+
export { default as Stepper } from "@nuxt/ui/components/Stepper.vue"
|
|
107
|
+
export { default as Switch } from "@nuxt/ui/components/Switch.vue"
|
|
108
|
+
export { default as Table } from "@nuxt/ui/components/Table.vue"
|
|
109
|
+
export { default as Tabs } from "@nuxt/ui/components/Tabs.vue"
|
|
110
|
+
export { default as Textarea } from "@nuxt/ui/components/Textarea.vue"
|
|
111
|
+
export { default as Timeline } from "@nuxt/ui/components/Timeline.vue"
|
|
112
|
+
export { default as Toast } from "@nuxt/ui/components/Toast.vue"
|
|
113
|
+
export { default as Toaster } from "@nuxt/ui/components/Toaster.vue"
|
|
114
|
+
export { default as Tooltip } from "@nuxt/ui/components/Tooltip.vue"
|
|
115
|
+
export { default as Tree } from "@nuxt/ui/components/Tree.vue"
|
|
116
|
+
export { default as User } from "@nuxt/ui/components/User.vue"
|
|
117
|
+
export { default as ColorModeAvatar } from "@nuxt/ui/components/color-mode/ColorModeAvatar.vue"
|
|
118
|
+
export { default as ColorModeButton } from "@nuxt/ui/components/color-mode/ColorModeButton.vue"
|
|
119
|
+
export { default as ColorModeImage } from "@nuxt/ui/components/color-mode/ColorModeImage.vue"
|
|
120
|
+
export { default as ColorModeSelect } from "@nuxt/ui/components/color-mode/ColorModeSelect.vue"
|
|
121
|
+
export { default as ColorModeSwitch } from "@nuxt/ui/components/color-mode/ColorModeSwitch.vue"
|
|
122
|
+
export { default as LocaleSelect } from "@nuxt/ui/components/locale/LocaleSelect.vue"
|
|
123
|
+
|
|
124
|
+
// Explicitly allowed composables
|
|
125
|
+
export * from "@nuxt/ui/composables/defineShortcuts"
|