@falcondev-oss/nuxt-layers-base 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.nuxt/app.config.mjs +317 -0
- package/.nuxt/components.d.ts +332 -0
- package/.nuxt/imports.d.ts +61 -0
- package/.nuxt/manifest/meta/24fb5e89-93fb-44cb-bbff-2a13f165c1e8.json +1 -0
- package/.nuxt/nuxt-icon-client-bundle.mjs +1 -0
- package/.nuxt/nuxt-icon-server-bundle.mjs +14 -0
- package/.nuxt/nuxt.d.ts +24 -0
- package/.nuxt/nuxt.node.d.ts +14 -0
- package/.nuxt/nuxt.shared.d.ts +5 -0
- package/.nuxt/schema/nuxt.schema.d.ts +210 -0
- package/.nuxt/schema/nuxt.schema.json +263 -0
- package/.nuxt/tsconfig.app.json +217 -0
- package/.nuxt/tsconfig.json +219 -0
- package/.nuxt/tsconfig.node.json +114 -0
- package/.nuxt/tsconfig.server.json +140 -0
- package/.nuxt/tsconfig.shared.json +139 -0
- package/.nuxt/types/app.config.d.ts +331 -0
- package/.nuxt/types/build.d.ts +24 -0
- package/.nuxt/types/builder-env.d.ts +1 -0
- package/.nuxt/types/components.d.ts +337 -0
- package/.nuxt/types/imports.d.ts +906 -0
- package/.nuxt/types/layouts.d.ts +7 -0
- package/.nuxt/types/middleware.d.ts +7 -0
- package/.nuxt/types/modules.d.ts +159 -0
- package/.nuxt/types/nitro-config.d.ts +14 -0
- package/.nuxt/types/nitro-imports.d.ts +141 -0
- package/.nuxt/types/nitro-middleware.d.ts +11 -0
- package/.nuxt/types/nitro-nuxt.d.ts +61 -0
- package/.nuxt/types/nitro-routes.d.ts +17 -0
- package/.nuxt/types/nitro.d.ts +3 -0
- package/.nuxt/types/plugins.d.ts +35 -0
- package/.nuxt/types/runtime-config.d.ts +36 -0
- package/.nuxt/types/ui.d.ts +36 -0
- package/.nuxt/types/vue-shim.d.ts +0 -0
- package/.nuxt/ui/accordion.ts +20 -0
- package/.nuxt/ui/alert.ts +264 -0
- package/.nuxt/ui/auth-form.ts +20 -0
- package/.nuxt/ui/avatar-group.ts +52 -0
- package/.nuxt/ui/avatar.ts +54 -0
- package/.nuxt/ui/badge.ts +263 -0
- package/.nuxt/ui/banner.ts +108 -0
- package/.nuxt/ui/blog-post.ts +143 -0
- package/.nuxt/ui/blog-posts.ts +9 -0
- package/.nuxt/ui/breadcrumb.ts +45 -0
- package/.nuxt/ui/button.ts +378 -0
- package/.nuxt/ui/calendar.ts +315 -0
- package/.nuxt/ui/card.ts +34 -0
- package/.nuxt/ui/carousel.ts +38 -0
- package/.nuxt/ui/changelog-version.ts +45 -0
- package/.nuxt/ui/changelog-versions.ts +8 -0
- package/.nuxt/ui/chat-message.ts +136 -0
- package/.nuxt/ui/chat-messages.ts +14 -0
- package/.nuxt/ui/chat-palette.ts +8 -0
- package/.nuxt/ui/chat-prompt-submit.ts +5 -0
- package/.nuxt/ui/chat-prompt.ts +35 -0
- package/.nuxt/ui/checkbox-group.ts +207 -0
- package/.nuxt/ui/checkbox.ts +237 -0
- package/.nuxt/ui/chip.ts +96 -0
- package/.nuxt/ui/collapsible.ts +6 -0
- package/.nuxt/ui/color-picker.ts +47 -0
- package/.nuxt/ui/command-palette.ts +62 -0
- package/.nuxt/ui/container.ts +3 -0
- package/.nuxt/ui/context-menu.ts +219 -0
- package/.nuxt/ui/dashboard-group.ts +3 -0
- package/.nuxt/ui/dashboard-navbar.ts +21 -0
- package/.nuxt/ui/dashboard-panel.ts +17 -0
- package/.nuxt/ui/dashboard-resize-handle.ts +3 -0
- package/.nuxt/ui/dashboard-search-button.ts +15 -0
- package/.nuxt/ui/dashboard-search.ts +13 -0
- package/.nuxt/ui/dashboard-sidebar-collapse.ts +9 -0
- package/.nuxt/ui/dashboard-sidebar-toggle.ts +9 -0
- package/.nuxt/ui/dashboard-sidebar.ts +37 -0
- package/.nuxt/ui/dashboard-toolbar.ts +7 -0
- package/.nuxt/ui/drawer.ts +149 -0
- package/.nuxt/ui/dropdown-menu.ts +220 -0
- package/.nuxt/ui/editor-drag-handle.ts +6 -0
- package/.nuxt/ui/editor-emoji-menu.ts +35 -0
- package/.nuxt/ui/editor-mention-menu.ts +35 -0
- package/.nuxt/ui/editor-suggestion-menu.ts +35 -0
- package/.nuxt/ui/editor-toolbar.ts +21 -0
- package/.nuxt/ui/editor.ts +35 -0
- package/.nuxt/ui/empty.ts +83 -0
- package/.nuxt/ui/error.ts +9 -0
- package/.nuxt/ui/field-group.ts +16 -0
- package/.nuxt/ui/file-upload.ts +290 -0
- package/.nuxt/ui/footer-columns.ts +28 -0
- package/.nuxt/ui/footer.ts +11 -0
- package/.nuxt/ui/form-field.ts +62 -0
- package/.nuxt/ui/form.ts +3 -0
- package/.nuxt/ui/header.ts +25 -0
- package/.nuxt/ui/index.ts +109 -0
- package/.nuxt/ui/input-date.ts +337 -0
- package/.nuxt/ui/input-menu.ts +460 -0
- package/.nuxt/ui/input-number.ts +256 -0
- package/.nuxt/ui/input-tags.ts +310 -0
- package/.nuxt/ui/input-time.ts +336 -0
- package/.nuxt/ui/input.ts +289 -0
- package/.nuxt/ui/kbd.ts +195 -0
- package/.nuxt/ui/link.ts +22 -0
- package/.nuxt/ui/main.ts +3 -0
- package/.nuxt/ui/marquee.ts +66 -0
- package/.nuxt/ui/modal.ts +60 -0
- package/.nuxt/ui/navigation-menu.ts +512 -0
- package/.nuxt/ui/page-anchors.ts +30 -0
- package/.nuxt/ui/page-aside.ts +10 -0
- package/.nuxt/ui/page-body.ts +3 -0
- package/.nuxt/ui/page-card.ts +274 -0
- package/.nuxt/ui/page-columns.ts +3 -0
- package/.nuxt/ui/page-cta.ts +70 -0
- package/.nuxt/ui/page-feature.ts +34 -0
- package/.nuxt/ui/page-grid.ts +3 -0
- package/.nuxt/ui/page-header.ts +18 -0
- package/.nuxt/ui/page-hero.ts +44 -0
- package/.nuxt/ui/page-links.ts +25 -0
- package/.nuxt/ui/page-list.ts +8 -0
- package/.nuxt/ui/page-logos.ts +15 -0
- package/.nuxt/ui/page-section.ts +84 -0
- package/.nuxt/ui/page.ts +32 -0
- package/.nuxt/ui/pagination.ts +13 -0
- package/.nuxt/ui/pin-input.ts +171 -0
- package/.nuxt/ui/popover.ts +6 -0
- package/.nuxt/ui/pricing-plan.ts +101 -0
- package/.nuxt/ui/pricing-plans.ts +22 -0
- package/.nuxt/ui/pricing-table.ts +51 -0
- package/.nuxt/ui/progress.ts +297 -0
- package/.nuxt/ui/radio-group.ts +352 -0
- package/.nuxt/ui/scroll-area.ts +21 -0
- package/.nuxt/ui/select-menu.ts +361 -0
- package/.nuxt/ui/select.ts +348 -0
- package/.nuxt/ui/separator.ts +172 -0
- package/.nuxt/ui/skeleton.ts +3 -0
- package/.nuxt/ui/slideover.ts +132 -0
- package/.nuxt/ui/slider.ts +171 -0
- package/.nuxt/ui/stepper.ts +202 -0
- package/.nuxt/ui/switch.ts +132 -0
- package/.nuxt/ui/table.ts +162 -0
- package/.nuxt/ui/tabs.ts +258 -0
- package/.nuxt/ui/textarea.ts +294 -0
- package/.nuxt/ui/timeline.ts +321 -0
- package/.nuxt/ui/toast.ts +74 -0
- package/.nuxt/ui/toaster.ts +91 -0
- package/.nuxt/ui/tooltip.ts +9 -0
- package/.nuxt/ui/tree.ts +168 -0
- package/.nuxt/ui/user.ts +101 -0
- package/.nuxt/ui-image-component.ts +1 -0
- package/.nuxt/ui.css +154 -0
- package/app/app.config.ts +7 -0
- package/app/app.vue +3 -0
- package/app/assets/css/base.css +28 -0
- package/app/components/Var.vue +13 -0
- package/app/components/layout/LayoutDashboard.vue +102 -0
- package/app/components/overlay/modal/ModalActions.vue +25 -0
- package/app/components/overlay/modal/ModalConfirm.vue +25 -0
- package/app/components/overlay/modal/ModalRadioGroup.vue +37 -0
- package/app/components/u/UActions.vue +23 -0
- package/app/components/u/UCustomApp.vue +20 -0
- package/app/components/u/UField.vue +55 -0
- package/app/components/u/UImageWithFallback.vue +35 -0
- package/app/components/u/UInputDatePicker.vue +40 -0
- package/app/components/u/UInputDurationMinutes.vue +88 -0
- package/app/components/u/UTableCard.vue +16 -0
- package/app/composables/useConfirm.ts +16 -0
- package/app/composables/usePreventPageLeave.ts +31 -0
- package/app/composables/useRouteParamString.ts +22 -0
- package/app/composables/useTableColumns.tsx +68 -0
- package/app/composables/useToast.ts +40 -0
- package/app/composables/useTrpc.ts +3 -0
- package/app/error.vue +15 -0
- package/app/pages/index.vue +3 -0
- package/app/utils/form-field-translators.ts +41 -0
- package/app/utils/plugins.ts +95 -0
- package/app/utils/reactivity.ts +17 -0
- package/nuxt.config.ts +85 -0
- package/package.json +46 -0
- package/pnpm-workspace.yaml +5 -0
- package/tsconfig.json +17 -0
|
@@ -0,0 +1,512 @@
|
|
|
1
|
+
const color = [
|
|
2
|
+
"primary",
|
|
3
|
+
"secondary",
|
|
4
|
+
"success",
|
|
5
|
+
"info",
|
|
6
|
+
"warning",
|
|
7
|
+
"error",
|
|
8
|
+
"neutral"
|
|
9
|
+
] as const
|
|
10
|
+
|
|
11
|
+
const highlightColor = [
|
|
12
|
+
"primary",
|
|
13
|
+
"secondary",
|
|
14
|
+
"success",
|
|
15
|
+
"info",
|
|
16
|
+
"warning",
|
|
17
|
+
"error",
|
|
18
|
+
"neutral"
|
|
19
|
+
] as const
|
|
20
|
+
|
|
21
|
+
const variant = [
|
|
22
|
+
"pill",
|
|
23
|
+
"link"
|
|
24
|
+
] as const
|
|
25
|
+
|
|
26
|
+
const orientation = [
|
|
27
|
+
"horizontal",
|
|
28
|
+
"vertical"
|
|
29
|
+
] as const
|
|
30
|
+
|
|
31
|
+
const contentOrientation = [
|
|
32
|
+
"horizontal",
|
|
33
|
+
"vertical"
|
|
34
|
+
] as const
|
|
35
|
+
|
|
36
|
+
export default {
|
|
37
|
+
"slots": {
|
|
38
|
+
"root": "relative flex gap-1.5 [&>div]:min-w-0",
|
|
39
|
+
"list": "isolate min-w-0",
|
|
40
|
+
"label": "w-full flex items-center gap-1.5 font-semibold text-xs/5 text-highlighted px-2.5 py-1.5",
|
|
41
|
+
"item": "min-w-0",
|
|
42
|
+
"link": "group relative w-full flex items-center gap-1.5 font-medium text-sm before:absolute before:z-[-1] before:rounded-md focus:outline-none focus-visible:outline-none dark:focus-visible:outline-none focus-visible:before:ring-inset focus-visible:before:ring-2",
|
|
43
|
+
"linkLeadingIcon": "shrink-0 size-5",
|
|
44
|
+
"linkLeadingAvatar": "shrink-0",
|
|
45
|
+
"linkLeadingAvatarSize": "2xs",
|
|
46
|
+
"linkTrailing": "group ms-auto inline-flex gap-1.5 items-center",
|
|
47
|
+
"linkTrailingBadge": "shrink-0",
|
|
48
|
+
"linkTrailingBadgeSize": "sm",
|
|
49
|
+
"linkTrailingIcon": "size-5 transform shrink-0 group-data-[state=open]:rotate-180 transition-transform duration-200",
|
|
50
|
+
"linkLabel": "truncate",
|
|
51
|
+
"linkLabelExternalIcon": "inline-block size-3 align-top text-dimmed",
|
|
52
|
+
"childList": "isolate",
|
|
53
|
+
"childLabel": "text-xs text-highlighted",
|
|
54
|
+
"childItem": "",
|
|
55
|
+
"childLink": "group relative size-full flex items-start text-start text-sm before:absolute before:z-[-1] before:rounded-md focus:outline-none focus-visible:outline-none dark:focus-visible:outline-none focus-visible:before:ring-inset focus-visible:before:ring-2",
|
|
56
|
+
"childLinkWrapper": "min-w-0",
|
|
57
|
+
"childLinkIcon": "size-5 shrink-0",
|
|
58
|
+
"childLinkLabel": "truncate",
|
|
59
|
+
"childLinkLabelExternalIcon": "inline-block size-3 align-top text-dimmed",
|
|
60
|
+
"childLinkDescription": "text-muted",
|
|
61
|
+
"separator": "px-2 h-px bg-border",
|
|
62
|
+
"viewportWrapper": "absolute top-full left-0 flex w-full",
|
|
63
|
+
"viewport": "relative overflow-hidden bg-default shadow-lg rounded-md ring ring-default h-(--reka-navigation-menu-viewport-height) w-full transition-[width,height,left] duration-200 origin-[top_center] data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] z-[1]",
|
|
64
|
+
"content": "",
|
|
65
|
+
"indicator": "absolute data-[state=visible]:animate-[fade-in_100ms_ease-out] data-[state=hidden]:animate-[fade-out_100ms_ease-in] data-[state=hidden]:opacity-0 bottom-0 z-[2] w-(--reka-navigation-menu-indicator-size) translate-x-(--reka-navigation-menu-indicator-position) flex h-2.5 items-end justify-center overflow-hidden transition-[translate,width] duration-200",
|
|
66
|
+
"arrow": "relative top-[50%] size-2.5 rotate-45 border border-default bg-default z-[1] rounded-xs"
|
|
67
|
+
},
|
|
68
|
+
"variants": {
|
|
69
|
+
"color": {
|
|
70
|
+
"primary": {
|
|
71
|
+
"link": "focus-visible:before:ring-primary",
|
|
72
|
+
"childLink": "focus-visible:before:ring-primary"
|
|
73
|
+
},
|
|
74
|
+
"secondary": {
|
|
75
|
+
"link": "focus-visible:before:ring-secondary",
|
|
76
|
+
"childLink": "focus-visible:before:ring-secondary"
|
|
77
|
+
},
|
|
78
|
+
"success": {
|
|
79
|
+
"link": "focus-visible:before:ring-success",
|
|
80
|
+
"childLink": "focus-visible:before:ring-success"
|
|
81
|
+
},
|
|
82
|
+
"info": {
|
|
83
|
+
"link": "focus-visible:before:ring-info",
|
|
84
|
+
"childLink": "focus-visible:before:ring-info"
|
|
85
|
+
},
|
|
86
|
+
"warning": {
|
|
87
|
+
"link": "focus-visible:before:ring-warning",
|
|
88
|
+
"childLink": "focus-visible:before:ring-warning"
|
|
89
|
+
},
|
|
90
|
+
"error": {
|
|
91
|
+
"link": "focus-visible:before:ring-error",
|
|
92
|
+
"childLink": "focus-visible:before:ring-error"
|
|
93
|
+
},
|
|
94
|
+
"neutral": {
|
|
95
|
+
"link": "focus-visible:before:ring-inverted",
|
|
96
|
+
"childLink": "focus-visible:before:ring-inverted"
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"highlightColor": {
|
|
100
|
+
"primary": "",
|
|
101
|
+
"secondary": "",
|
|
102
|
+
"success": "",
|
|
103
|
+
"info": "",
|
|
104
|
+
"warning": "",
|
|
105
|
+
"error": "",
|
|
106
|
+
"neutral": ""
|
|
107
|
+
},
|
|
108
|
+
"variant": {
|
|
109
|
+
"pill": "",
|
|
110
|
+
"link": ""
|
|
111
|
+
},
|
|
112
|
+
"orientation": {
|
|
113
|
+
"horizontal": {
|
|
114
|
+
"root": "items-center justify-between",
|
|
115
|
+
"list": "flex items-center",
|
|
116
|
+
"item": "py-2",
|
|
117
|
+
"link": "px-2.5 py-1.5 before:inset-x-px before:inset-y-0",
|
|
118
|
+
"childList": "grid p-2",
|
|
119
|
+
"childLink": "px-3 py-2 gap-2 before:inset-x-px before:inset-y-0",
|
|
120
|
+
"childLinkLabel": "font-medium",
|
|
121
|
+
"content": "absolute top-0 left-0 w-full max-h-[70vh] overflow-y-auto"
|
|
122
|
+
},
|
|
123
|
+
"vertical": {
|
|
124
|
+
"root": "flex-col",
|
|
125
|
+
"link": "flex-row px-2.5 py-1.5 before:inset-y-px before:inset-x-0",
|
|
126
|
+
"childLabel": "px-1.5 py-0.5",
|
|
127
|
+
"childLink": "p-1.5 gap-1.5 before:inset-y-px before:inset-x-0"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"contentOrientation": {
|
|
131
|
+
"horizontal": {
|
|
132
|
+
"viewportWrapper": "justify-center",
|
|
133
|
+
"content": "data-[motion=from-start]:animate-[enter-from-left_200ms_ease] data-[motion=from-end]:animate-[enter-from-right_200ms_ease] data-[motion=to-start]:animate-[exit-to-left_200ms_ease] data-[motion=to-end]:animate-[exit-to-right_200ms_ease]"
|
|
134
|
+
},
|
|
135
|
+
"vertical": {
|
|
136
|
+
"viewport": "sm:w-(--reka-navigation-menu-viewport-width) left-(--reka-navigation-menu-viewport-left)"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"active": {
|
|
140
|
+
"true": {
|
|
141
|
+
"childLink": "before:bg-elevated text-highlighted",
|
|
142
|
+
"childLinkIcon": "text-default"
|
|
143
|
+
},
|
|
144
|
+
"false": {
|
|
145
|
+
"link": "text-muted",
|
|
146
|
+
"linkLeadingIcon": "text-dimmed",
|
|
147
|
+
"childLink": [
|
|
148
|
+
"hover:before:bg-elevated/50 text-default hover:text-highlighted",
|
|
149
|
+
"transition-colors before:transition-colors"
|
|
150
|
+
],
|
|
151
|
+
"childLinkIcon": [
|
|
152
|
+
"text-dimmed group-hover:text-default",
|
|
153
|
+
"transition-colors"
|
|
154
|
+
]
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"disabled": {
|
|
158
|
+
"true": {
|
|
159
|
+
"link": "cursor-not-allowed opacity-75"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"highlight": {
|
|
163
|
+
"true": ""
|
|
164
|
+
},
|
|
165
|
+
"level": {
|
|
166
|
+
"true": ""
|
|
167
|
+
},
|
|
168
|
+
"collapsed": {
|
|
169
|
+
"true": ""
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"compoundVariants": [
|
|
173
|
+
{
|
|
174
|
+
"orientation": "horizontal" as typeof orientation[number],
|
|
175
|
+
"contentOrientation": "horizontal" as typeof contentOrientation[number],
|
|
176
|
+
"class": {
|
|
177
|
+
"childList": "grid-cols-2 gap-2"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"orientation": "horizontal" as typeof orientation[number],
|
|
182
|
+
"contentOrientation": "vertical" as typeof contentOrientation[number],
|
|
183
|
+
"class": {
|
|
184
|
+
"childList": "gap-1",
|
|
185
|
+
"content": "w-60"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"orientation": "vertical" as typeof orientation[number],
|
|
190
|
+
"collapsed": false,
|
|
191
|
+
"class": {
|
|
192
|
+
"childList": "ms-5 border-s border-default",
|
|
193
|
+
"childItem": "ps-1.5 -ms-px",
|
|
194
|
+
"content": "data-[state=open]:animate-[collapsible-down_200ms_ease-out] data-[state=closed]:animate-[collapsible-up_200ms_ease-out] overflow-hidden"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"orientation": "vertical" as typeof orientation[number],
|
|
199
|
+
"collapsed": true,
|
|
200
|
+
"class": {
|
|
201
|
+
"link": "px-1.5",
|
|
202
|
+
"linkLabel": "hidden",
|
|
203
|
+
"linkTrailing": "hidden",
|
|
204
|
+
"content": "shadow-sm rounded-sm min-h-6 p-1"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"orientation": "horizontal" as typeof orientation[number],
|
|
209
|
+
"highlight": true,
|
|
210
|
+
"class": {
|
|
211
|
+
"link": [
|
|
212
|
+
"after:absolute after:-bottom-2 after:inset-x-2.5 after:block after:h-px after:rounded-full",
|
|
213
|
+
"after:transition-colors"
|
|
214
|
+
]
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"orientation": "vertical" as typeof orientation[number],
|
|
219
|
+
"highlight": true,
|
|
220
|
+
"level": true,
|
|
221
|
+
"class": {
|
|
222
|
+
"link": [
|
|
223
|
+
"after:absolute after:-start-1.5 after:inset-y-0.5 after:block after:w-px after:rounded-full",
|
|
224
|
+
"after:transition-colors"
|
|
225
|
+
]
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"disabled": false,
|
|
230
|
+
"active": false,
|
|
231
|
+
"variant": "pill" as typeof variant[number],
|
|
232
|
+
"class": {
|
|
233
|
+
"link": [
|
|
234
|
+
"hover:text-highlighted hover:before:bg-elevated/50",
|
|
235
|
+
"transition-colors before:transition-colors"
|
|
236
|
+
],
|
|
237
|
+
"linkLeadingIcon": [
|
|
238
|
+
"group-hover:text-default",
|
|
239
|
+
"transition-colors"
|
|
240
|
+
]
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"disabled": false,
|
|
245
|
+
"active": false,
|
|
246
|
+
"variant": "pill" as typeof variant[number],
|
|
247
|
+
"orientation": "horizontal" as typeof orientation[number],
|
|
248
|
+
"class": {
|
|
249
|
+
"link": "data-[state=open]:text-highlighted",
|
|
250
|
+
"linkLeadingIcon": "group-data-[state=open]:text-default"
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"disabled": false,
|
|
255
|
+
"variant": "pill" as typeof variant[number],
|
|
256
|
+
"highlight": true,
|
|
257
|
+
"orientation": "horizontal" as typeof orientation[number],
|
|
258
|
+
"class": {
|
|
259
|
+
"link": "data-[state=open]:before:bg-elevated/50"
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"disabled": false,
|
|
264
|
+
"variant": "pill" as typeof variant[number],
|
|
265
|
+
"highlight": false,
|
|
266
|
+
"active": false,
|
|
267
|
+
"orientation": "horizontal" as typeof orientation[number],
|
|
268
|
+
"class": {
|
|
269
|
+
"link": "data-[state=open]:before:bg-elevated/50"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"color": "primary" as typeof color[number],
|
|
274
|
+
"variant": "pill" as typeof variant[number],
|
|
275
|
+
"active": true,
|
|
276
|
+
"class": {
|
|
277
|
+
"link": "text-primary",
|
|
278
|
+
"linkLeadingIcon": "text-primary group-data-[state=open]:text-primary"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"color": "secondary" as typeof color[number],
|
|
283
|
+
"variant": "pill" as typeof variant[number],
|
|
284
|
+
"active": true,
|
|
285
|
+
"class": {
|
|
286
|
+
"link": "text-secondary",
|
|
287
|
+
"linkLeadingIcon": "text-secondary group-data-[state=open]:text-secondary"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"color": "success" as typeof color[number],
|
|
292
|
+
"variant": "pill" as typeof variant[number],
|
|
293
|
+
"active": true,
|
|
294
|
+
"class": {
|
|
295
|
+
"link": "text-success",
|
|
296
|
+
"linkLeadingIcon": "text-success group-data-[state=open]:text-success"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"color": "info" as typeof color[number],
|
|
301
|
+
"variant": "pill" as typeof variant[number],
|
|
302
|
+
"active": true,
|
|
303
|
+
"class": {
|
|
304
|
+
"link": "text-info",
|
|
305
|
+
"linkLeadingIcon": "text-info group-data-[state=open]:text-info"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"color": "warning" as typeof color[number],
|
|
310
|
+
"variant": "pill" as typeof variant[number],
|
|
311
|
+
"active": true,
|
|
312
|
+
"class": {
|
|
313
|
+
"link": "text-warning",
|
|
314
|
+
"linkLeadingIcon": "text-warning group-data-[state=open]:text-warning"
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"color": "error" as typeof color[number],
|
|
319
|
+
"variant": "pill" as typeof variant[number],
|
|
320
|
+
"active": true,
|
|
321
|
+
"class": {
|
|
322
|
+
"link": "text-error",
|
|
323
|
+
"linkLeadingIcon": "text-error group-data-[state=open]:text-error"
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"color": "neutral" as typeof color[number],
|
|
328
|
+
"variant": "pill" as typeof variant[number],
|
|
329
|
+
"active": true,
|
|
330
|
+
"class": {
|
|
331
|
+
"link": "text-highlighted",
|
|
332
|
+
"linkLeadingIcon": "text-highlighted group-data-[state=open]:text-highlighted"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"variant": "pill" as typeof variant[number],
|
|
337
|
+
"active": true,
|
|
338
|
+
"highlight": false,
|
|
339
|
+
"class": {
|
|
340
|
+
"link": "before:bg-elevated"
|
|
341
|
+
}
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"variant": "pill" as typeof variant[number],
|
|
345
|
+
"active": true,
|
|
346
|
+
"highlight": true,
|
|
347
|
+
"disabled": false,
|
|
348
|
+
"class": {
|
|
349
|
+
"link": [
|
|
350
|
+
"hover:before:bg-elevated/50",
|
|
351
|
+
"before:transition-colors"
|
|
352
|
+
]
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"disabled": false,
|
|
357
|
+
"active": false,
|
|
358
|
+
"variant": "link" as typeof variant[number],
|
|
359
|
+
"class": {
|
|
360
|
+
"link": [
|
|
361
|
+
"hover:text-highlighted",
|
|
362
|
+
"transition-colors"
|
|
363
|
+
],
|
|
364
|
+
"linkLeadingIcon": [
|
|
365
|
+
"group-hover:text-default",
|
|
366
|
+
"transition-colors"
|
|
367
|
+
]
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"disabled": false,
|
|
372
|
+
"active": false,
|
|
373
|
+
"variant": "link" as typeof variant[number],
|
|
374
|
+
"orientation": "horizontal" as typeof orientation[number],
|
|
375
|
+
"class": {
|
|
376
|
+
"link": "data-[state=open]:text-highlighted",
|
|
377
|
+
"linkLeadingIcon": "group-data-[state=open]:text-default"
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"color": "primary" as typeof color[number],
|
|
382
|
+
"variant": "link" as typeof variant[number],
|
|
383
|
+
"active": true,
|
|
384
|
+
"class": {
|
|
385
|
+
"link": "text-primary",
|
|
386
|
+
"linkLeadingIcon": "text-primary group-data-[state=open]:text-primary"
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"color": "secondary" as typeof color[number],
|
|
391
|
+
"variant": "link" as typeof variant[number],
|
|
392
|
+
"active": true,
|
|
393
|
+
"class": {
|
|
394
|
+
"link": "text-secondary",
|
|
395
|
+
"linkLeadingIcon": "text-secondary group-data-[state=open]:text-secondary"
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"color": "success" as typeof color[number],
|
|
400
|
+
"variant": "link" as typeof variant[number],
|
|
401
|
+
"active": true,
|
|
402
|
+
"class": {
|
|
403
|
+
"link": "text-success",
|
|
404
|
+
"linkLeadingIcon": "text-success group-data-[state=open]:text-success"
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"color": "info" as typeof color[number],
|
|
409
|
+
"variant": "link" as typeof variant[number],
|
|
410
|
+
"active": true,
|
|
411
|
+
"class": {
|
|
412
|
+
"link": "text-info",
|
|
413
|
+
"linkLeadingIcon": "text-info group-data-[state=open]:text-info"
|
|
414
|
+
}
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"color": "warning" as typeof color[number],
|
|
418
|
+
"variant": "link" as typeof variant[number],
|
|
419
|
+
"active": true,
|
|
420
|
+
"class": {
|
|
421
|
+
"link": "text-warning",
|
|
422
|
+
"linkLeadingIcon": "text-warning group-data-[state=open]:text-warning"
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"color": "error" as typeof color[number],
|
|
427
|
+
"variant": "link" as typeof variant[number],
|
|
428
|
+
"active": true,
|
|
429
|
+
"class": {
|
|
430
|
+
"link": "text-error",
|
|
431
|
+
"linkLeadingIcon": "text-error group-data-[state=open]:text-error"
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"color": "neutral" as typeof color[number],
|
|
436
|
+
"variant": "link" as typeof variant[number],
|
|
437
|
+
"active": true,
|
|
438
|
+
"class": {
|
|
439
|
+
"link": "text-highlighted",
|
|
440
|
+
"linkLeadingIcon": "text-highlighted group-data-[state=open]:text-highlighted"
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"highlightColor": "primary" as typeof highlightColor[number],
|
|
445
|
+
"highlight": true,
|
|
446
|
+
"level": true,
|
|
447
|
+
"active": true,
|
|
448
|
+
"class": {
|
|
449
|
+
"link": "after:bg-primary"
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"highlightColor": "secondary" as typeof highlightColor[number],
|
|
454
|
+
"highlight": true,
|
|
455
|
+
"level": true,
|
|
456
|
+
"active": true,
|
|
457
|
+
"class": {
|
|
458
|
+
"link": "after:bg-secondary"
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"highlightColor": "success" as typeof highlightColor[number],
|
|
463
|
+
"highlight": true,
|
|
464
|
+
"level": true,
|
|
465
|
+
"active": true,
|
|
466
|
+
"class": {
|
|
467
|
+
"link": "after:bg-success"
|
|
468
|
+
}
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"highlightColor": "info" as typeof highlightColor[number],
|
|
472
|
+
"highlight": true,
|
|
473
|
+
"level": true,
|
|
474
|
+
"active": true,
|
|
475
|
+
"class": {
|
|
476
|
+
"link": "after:bg-info"
|
|
477
|
+
}
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"highlightColor": "warning" as typeof highlightColor[number],
|
|
481
|
+
"highlight": true,
|
|
482
|
+
"level": true,
|
|
483
|
+
"active": true,
|
|
484
|
+
"class": {
|
|
485
|
+
"link": "after:bg-warning"
|
|
486
|
+
}
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"highlightColor": "error" as typeof highlightColor[number],
|
|
490
|
+
"highlight": true,
|
|
491
|
+
"level": true,
|
|
492
|
+
"active": true,
|
|
493
|
+
"class": {
|
|
494
|
+
"link": "after:bg-error"
|
|
495
|
+
}
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"highlightColor": "neutral" as typeof highlightColor[number],
|
|
499
|
+
"highlight": true,
|
|
500
|
+
"level": true,
|
|
501
|
+
"active": true,
|
|
502
|
+
"class": {
|
|
503
|
+
"link": "after:bg-inverted"
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
],
|
|
507
|
+
"defaultVariants": {
|
|
508
|
+
"color": "primary" as typeof color[number],
|
|
509
|
+
"highlightColor": "primary" as typeof highlightColor[number],
|
|
510
|
+
"variant": "pill" as typeof variant[number]
|
|
511
|
+
}
|
|
512
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"slots": {
|
|
3
|
+
"root": "",
|
|
4
|
+
"list": "",
|
|
5
|
+
"item": "relative",
|
|
6
|
+
"link": "group text-sm flex items-center gap-1.5 py-1 focus-visible:outline-primary",
|
|
7
|
+
"linkLeading": "rounded-md p-1 inline-flex ring-inset ring",
|
|
8
|
+
"linkLeadingIcon": "size-4 shrink-0",
|
|
9
|
+
"linkLabel": "truncate",
|
|
10
|
+
"linkLabelExternalIcon": "size-3 absolute top-0 text-dimmed"
|
|
11
|
+
},
|
|
12
|
+
"variants": {
|
|
13
|
+
"active": {
|
|
14
|
+
"true": {
|
|
15
|
+
"link": "text-primary font-semibold",
|
|
16
|
+
"linkLeading": "bg-primary ring-primary text-inverted"
|
|
17
|
+
},
|
|
18
|
+
"false": {
|
|
19
|
+
"link": [
|
|
20
|
+
"text-muted hover:text-default font-medium",
|
|
21
|
+
"transition-colors"
|
|
22
|
+
],
|
|
23
|
+
"linkLeading": [
|
|
24
|
+
"bg-elevated/50 ring-accented text-dimmed group-hover:bg-primary group-hover:ring-primary group-hover:text-inverted",
|
|
25
|
+
"transition"
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"slots": {
|
|
3
|
+
"root": "hidden overflow-y-auto lg:block lg:max-h-[calc(100vh-var(--ui-header-height))] lg:sticky lg:top-(--ui-header-height) py-8 lg:ps-4 lg:-ms-4 lg:pe-6.5",
|
|
4
|
+
"container": "relative",
|
|
5
|
+
"top": "sticky -top-8 -mt-8 pointer-events-none z-[1]",
|
|
6
|
+
"topHeader": "h-8 bg-default -mx-4 px-4",
|
|
7
|
+
"topBody": "bg-default relative pointer-events-auto flex flex-col -mx-4 px-4",
|
|
8
|
+
"topFooter": "h-8 bg-gradient-to-b from-default -mx-4 px-4"
|
|
9
|
+
}
|
|
10
|
+
}
|