daisy-ui-kit 5.0.1 → 5.0.3
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/README.md +64 -37
- package/components.d.ts +145 -0
- package/components.js +141 -0
- package/index.d.ts +157 -0
- package/index.js +145 -0
- package/package.json +15 -9
package/README.md
CHANGED
|
@@ -1,25 +1,52 @@
|
|
|
1
|
-
#
|
|
1
|
+
# daisy-ui-kit
|
|
2
2
|
|
|
3
3
|
Vue/Nuxt components for DaisyUI 5.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
pnpm add
|
|
8
|
+
pnpm add daisy-ui-kit daisyui @vueuse/core
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
## Manual Imports
|
|
12
|
+
|
|
13
|
+
Import components directly from the package:
|
|
14
|
+
|
|
15
|
+
```vue
|
|
16
|
+
<script setup lang="ts">
|
|
17
|
+
import { Button, Badge } from 'daisy-ui-kit'
|
|
18
|
+
</script>
|
|
19
|
+
|
|
20
|
+
<template>
|
|
21
|
+
<Button primary>Click Me</Button>
|
|
22
|
+
<Badge accent>New</Badge>
|
|
23
|
+
</template>
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Nuxt Module
|
|
27
|
+
|
|
28
|
+
For Nuxt projects with auto-imports, add the module to your config:
|
|
29
|
+
|
|
11
30
|
```ts
|
|
12
31
|
// nuxt.config.ts
|
|
13
32
|
export default defineNuxtConfig({
|
|
14
|
-
modules: ['
|
|
33
|
+
modules: ['daisy-ui-kit'],
|
|
15
34
|
})
|
|
16
35
|
```
|
|
17
36
|
|
|
37
|
+
## Usage Tips
|
|
38
|
+
|
|
39
|
+
- Prefer shorthand boolean props like `lg` and `primary` over `size="lg"` and `color="primary"`, unless dynamically bound.
|
|
40
|
+
- Write prop names in kebab-case in templates.
|
|
41
|
+
- Use component props first, then TailwindCSS classes for anything not covered.
|
|
42
|
+
- Use `v-model` for two-way binding on components with `model-value` prop and `update:model-value` event.
|
|
43
|
+
- The `is` prop changes the rendered element (e.g., `<Button is="a" href="/link">`).
|
|
44
|
+
|
|
18
45
|
## Component API Reference
|
|
19
46
|
|
|
20
47
|
```
|
|
21
48
|
Accordion
|
|
22
|
-
Accordion: props(
|
|
49
|
+
Accordion: props(model-value:string|number) slots(default) events(update:model-value)
|
|
23
50
|
Collapse: props(variant:string, arrow:boolean, plus:boolean, open:boolean, close:boolean, toggle:boolean, value:any) slots(default)
|
|
24
51
|
CollapseTitle: slots(default)
|
|
25
52
|
CollapseContent: slots(default)
|
|
@@ -28,7 +55,7 @@ Alert
|
|
|
28
55
|
Alert: props(outline:boolean, dash:boolean, soft:boolean, type:string, info:boolean, success:boolean, warning:boolean, error:boolean, orientation:string, vertical:boolean, horizontal:boolean) slots(default)
|
|
29
56
|
|
|
30
57
|
Avatar
|
|
31
|
-
Avatar: props(presence:string, online:boolean, offline:boolean,
|
|
58
|
+
Avatar: props(presence:string, online:boolean, offline:boolean, background-color:string, mask-classes:string, shape:string, squircle:boolean, heart:boolean, hexagon:boolean, hexagon-2:boolean, decagon:boolean, pentagon:boolean, diamond:boolean, square:boolean, circle:boolean, star:boolean, star-2:boolean, triangle:boolean, triangle-2:boolean, triangle-3:boolean, triangle-4:boolean, half-1:boolean, half-2:boolean) slots(default)
|
|
32
59
|
AvatarGroup: props(orientation:string, horizontal:boolean, vertical:boolean) slots(default)
|
|
33
60
|
|
|
34
61
|
Badge
|
|
@@ -39,21 +66,21 @@ Breadcrumbs
|
|
|
39
66
|
Crumb: slots(default)
|
|
40
67
|
|
|
41
68
|
Button
|
|
42
|
-
Button: props(is:string, type:string, join:boolean, ghost:boolean, link:boolean, glass:boolean, outline:boolean, dash:boolean, soft:boolean, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean, active:boolean, disabled:boolean,
|
|
69
|
+
Button: props(is:string, type:string, join:boolean, ghost:boolean, link:boolean, glass:boolean, outline:boolean, dash:boolean, soft:boolean, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean, active:boolean, disabled:boolean, no-animation:boolean, shape:string, circle:boolean, square:boolean, wide:boolean, block:boolean, size:string, xl:boolean, lg:boolean, md:boolean, sm:boolean, xs:boolean) slots(default)
|
|
43
70
|
|
|
44
71
|
Calendar
|
|
45
|
-
Calendar: props(
|
|
46
|
-
CalendarInput: props(
|
|
47
|
-
CalendarSkeleton: props(
|
|
72
|
+
Calendar: props(model-value:Date|string|null, options:CalendarOptions, aria-label:string, format:string, format-strict:boolean, to-string:function, parse:function, default-date:Date, set-default-date:boolean, first-day:number, min-date:Date, max-date:Date, disable-weekends:boolean, disable-day-fn:function, year-range:number|[number,number], show-week-number:boolean, pick-whole-week:boolean, is-rtl:boolean, i18n:object, year-suffix:string, show-month-after-year:boolean, show-days-in-next-and-previous-months:boolean, enable-selection-days-in-next-and-previous-months:boolean, number-of-months:number, events:array, auto-default:boolean) slots(default) events(update:model-value, update:input-value)
|
|
73
|
+
CalendarInput: props(model-value:Date|string|number|null, options:CalendarOptions, bound:boolean, position:string, reposition:boolean, auto-default:boolean, placeholder:string, disabled:boolean, validator:boolean, join:boolean, color:string, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean, ghost:boolean, size:string, xl:boolean, lg:boolean, md:boolean, sm:boolean, xs:boolean) events(update:model-value, update:input-value)
|
|
74
|
+
CalendarSkeleton: props(number-of-months:number, date:Date, first-day:number)
|
|
48
75
|
|
|
49
76
|
Card
|
|
50
|
-
Card: props(is:string|object|function, border:boolean, dash:boolean, side:boolean,
|
|
77
|
+
Card: props(is:string|object|function, border:boolean, dash:boolean, side:boolean, image-full:boolean, size:string, xl:boolean, lg:boolean, md:boolean, sm:boolean, xs:boolean) slots(default)
|
|
51
78
|
CardBody: props(is:string) slots(default)
|
|
52
79
|
CardTitle: props(is:string) slots(default)
|
|
53
80
|
CardActions: props(is:string) slots(default)
|
|
54
81
|
|
|
55
82
|
Carousel
|
|
56
|
-
Carousel: props(
|
|
83
|
+
Carousel: props(snap-to:string, center:boolean, end:boolean, orientation:string, vertical:boolean, horizontal:boolean) slots(default)
|
|
57
84
|
CarouselItem: slots(default)
|
|
58
85
|
|
|
59
86
|
Chat
|
|
@@ -64,7 +91,7 @@ Chat
|
|
|
64
91
|
ChatFooter: slots(default)
|
|
65
92
|
|
|
66
93
|
Checkbox
|
|
67
|
-
Checkbox: props(
|
|
94
|
+
Checkbox: props(model-value:any, theme-controller:boolean, color:string, primary:boolean, secondary:boolean, accent:boolean, success:boolean, warning:boolean, info:boolean, error:boolean, size:string, lg:boolean, md:boolean, sm:boolean, xs:boolean) events(update:model-value)
|
|
68
95
|
|
|
69
96
|
Countdown
|
|
70
97
|
Countdown: props(is:string|Component) slots(default)
|
|
@@ -106,11 +133,11 @@ FileInput
|
|
|
106
133
|
FileInput: props(join:boolean, color:string, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean, ghost:boolean, disabled:boolean, size:string, xl:boolean, lg:boolean, md:boolean, sm:boolean, xs:boolean) events(files)
|
|
107
134
|
|
|
108
135
|
Filter
|
|
109
|
-
Filter: props(is:string, name:string, items:array,
|
|
136
|
+
Filter: props(is:string, name:string, items:array, model-value:any, reset-label:string, position:string, start:boolean, end:boolean, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, size:string, xl:boolean, lg:boolean, md:boolean, sm:boolean, xs:boolean) slots(default) events(update:model-value)
|
|
110
137
|
|
|
111
138
|
Flex
|
|
112
|
-
Flex: props(is:string|object, join:boolean, flex:boolean,
|
|
113
|
-
FlexItem: props(is:any, join:boolean, flex:boolean,
|
|
139
|
+
Flex: props(is:string|object, join:boolean, flex:boolean, flex-1:boolean, flex-auto:boolean, flex-initial:boolean, none:boolean, direction:string, row:boolean, col:boolean, reverse:boolean, wrap:boolean, nowrap:boolean, wrap-reverse:boolean, grow:boolean, justify:string, justify-start:boolean, justify-end:boolean, justify-center:boolean, justify-between:boolean, justify-around:boolean, justify-evenly:boolean, items:string, items-start:boolean, items-end:boolean, items-center:boolean, items-baseline:boolean, items-stretch:boolean) slots(default)
|
|
140
|
+
FlexItem: props(is:any, join:boolean, flex:boolean, flex-1:boolean, flex-auto:boolean, flex-initial:boolean, none:boolean, grow:boolean, direction:string, row:boolean, col:boolean, reverse:boolean, wrap:boolean, nowrap:boolean, wrap-reverse:boolean) slots(default)
|
|
114
141
|
|
|
115
142
|
Footer
|
|
116
143
|
Footer: props(center:boolean, is:string, orientation:string, horizontal:boolean, vertical:boolean) slots(default)
|
|
@@ -132,10 +159,10 @@ HoverGallery
|
|
|
132
159
|
|
|
133
160
|
Indicator
|
|
134
161
|
Indicator: props(is:string) slots(default)
|
|
135
|
-
IndicatorItem: props(is:string, align:string, start:boolean, center:boolean, end:boolean,
|
|
162
|
+
IndicatorItem: props(is:string, align:string, start:boolean, center:boolean, end:boolean, v-align:string, top:boolean, middle:boolean, bottom:boolean) slots(default)
|
|
136
163
|
|
|
137
164
|
Input
|
|
138
|
-
Input: props(
|
|
165
|
+
Input: props(model-value:string|number|null, type:string, placeholder:string, disabled:boolean, validator:boolean, color:string, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean, join:boolean, ghost:boolean, size:string, xl:boolean, lg:boolean, md:boolean, sm:boolean, xs:boolean) slots(default) events(update:model-value)
|
|
139
166
|
|
|
140
167
|
Join
|
|
141
168
|
Join: props(vertical:boolean) slots(default)
|
|
@@ -164,7 +191,7 @@ Loading
|
|
|
164
191
|
LoadingInfinity: props(color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean, size:string, xl:boolean, lg:boolean, md:boolean, sm:boolean, xs:boolean)
|
|
165
192
|
|
|
166
193
|
Mask
|
|
167
|
-
Mask: props(shape:string, squircle:boolean, heart:boolean, hexagon:boolean,
|
|
194
|
+
Mask: props(shape:string, squircle:boolean, heart:boolean, hexagon:boolean, hexagon-2:boolean, decagon:boolean, pentagon:boolean, diamond:boolean, square:boolean, circle:boolean, star:boolean, star-2:boolean, triangle:boolean, triangle-2:boolean, triangle-3:boolean, triangle-4:boolean, half-1:boolean, half-2:boolean) slots(default)
|
|
168
195
|
|
|
169
196
|
Menu
|
|
170
197
|
Menu: props(align:string, vertical:boolean, horizontal:boolean, size:string, xl:boolean, lg:boolean, md:boolean, sm:boolean, xs:boolean) slots(default)
|
|
@@ -199,7 +226,7 @@ Navbar
|
|
|
199
226
|
NavButton: props(active:boolean, disabled:boolean) slots(default)
|
|
200
227
|
|
|
201
228
|
Pagination
|
|
202
|
-
Pagination: props(
|
|
229
|
+
Pagination: props(model-value:number, total:number, per-page:number, max-visible:number, join:boolean, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean, size:string, xl:boolean, lg:boolean, md:boolean, sm:boolean, xs:boolean) slots(default) events(update:model-value)
|
|
203
230
|
|
|
204
231
|
Progress
|
|
205
232
|
Progress: props(value:number, max:number, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, success:boolean, info:boolean, warning:boolean, error:boolean)
|
|
@@ -211,19 +238,19 @@ RadialProgress
|
|
|
211
238
|
RadialProgress: props(value:number|string, size:string, thickness:string, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean) slots(default)
|
|
212
239
|
|
|
213
240
|
Radio
|
|
214
|
-
Radio: props(
|
|
215
|
-
RadioGroup: props(
|
|
241
|
+
Radio: props(model-value:any, value:any, disabled:boolean, theme-controller:boolean, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, success:boolean, warning:boolean, info:boolean, error:boolean, size:string, xs:boolean, sm:boolean, md:boolean, lg:boolean, xl:boolean) events(update:model-value)
|
|
242
|
+
RadioGroup: props(model-value:any, name:string, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, success:boolean, warning:boolean, info:boolean, error:boolean, size:string, xs:boolean, sm:boolean, md:boolean, lg:boolean, xl:boolean) slots(default) events(update:model-value)
|
|
216
243
|
|
|
217
244
|
Range
|
|
218
|
-
Range: props(
|
|
219
|
-
RangeMeasure: props(
|
|
220
|
-
RangeMeasureTick: props(tick:number,
|
|
245
|
+
Range: props(model-value:number|string, min:number|string, max:number|string, step:number|string, disabled:boolean, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, success:boolean, warning:boolean, info:boolean, error:boolean, size:string, xs:boolean, sm:boolean, md:boolean, lg:boolean, xl:boolean) events(update:model-value)
|
|
246
|
+
RangeMeasure: props(model-value:number|string, min:number|string, max:number|string, step:number|string, numbered:boolean, as-buttons:boolean, disabled:boolean, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, success:boolean, warning:boolean, info:boolean, error:boolean, size:string, xs:boolean, sm:boolean, md:boolean, lg:boolean, xl:boolean) slots(default) events(update:model-value)
|
|
247
|
+
RangeMeasureTick: props(tick:number, model-value:number|string, numbered:boolean, as-button:boolean, is-hidden:boolean, disabled:boolean) slots(default) events(update:model-value)
|
|
221
248
|
|
|
222
249
|
Rating
|
|
223
|
-
Rating: props(
|
|
250
|
+
Rating: props(model-value:number|string, count:number|string, half:boolean, disabled:boolean, bg:string, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean, shape:string, squircle:boolean, heart:boolean, hexagon:boolean, hexagon-2:boolean, decagon:boolean, pentagon:boolean, diamond:boolean, square:boolean, circle:boolean, star:boolean, star-2:boolean, triangle:boolean, triangle-2:boolean, triangle-3:boolean, triangle-4:boolean, size:string, xl:boolean, lg:boolean, md:boolean, sm:boolean, xs:boolean) events(update:model-value)
|
|
224
251
|
|
|
225
252
|
Select
|
|
226
|
-
Select: props(
|
|
253
|
+
Select: props(model-value:any, options:Array, value:function, label:function, result-as-object:boolean, join:boolean, ghost:boolean, disabled:boolean, native:boolean, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean, size:string, xl:boolean, lg:boolean, md:boolean, sm:boolean, xs:boolean, validator:boolean) events(update:model-value)
|
|
227
254
|
|
|
228
255
|
Skeleton
|
|
229
256
|
Skeleton: slots(default)
|
|
@@ -250,34 +277,34 @@ Steps
|
|
|
250
277
|
StepIcon: slots(default)
|
|
251
278
|
|
|
252
279
|
Swap
|
|
253
|
-
Swap: props(
|
|
280
|
+
Swap: props(model-value:boolean|null, rotate:boolean, flip:boolean) slots(default, swap, indeterminate)
|
|
254
281
|
|
|
255
282
|
Table
|
|
256
|
-
Table: props(zebra:boolean,
|
|
283
|
+
Table: props(zebra:boolean, pin-rows:boolean, pin-cols:boolean, size:string, xs:boolean, sm:boolean, md:boolean, lg:boolean, xl:boolean) slots(default)
|
|
257
284
|
|
|
258
285
|
Tabs
|
|
259
|
-
Tabs: props(name:string,
|
|
286
|
+
Tabs: props(name:string, current-tab:string, variant:string, box:boolean, border:boolean, lift:boolean, placement:string, top:boolean, bottom:boolean, size:string, xl:boolean, lg:boolean, md:boolean, sm:boolean, xs:boolean) slots(default) events(update:current-tab)
|
|
260
287
|
Tab: props(is:any, name:string, active:boolean, disabled:boolean) slots(default)
|
|
261
288
|
TabContent: props(is:any, name:string) slots(default)
|
|
262
289
|
|
|
263
290
|
Text
|
|
264
|
-
Text: props(is:string, join:boolean, block:boolean, inline:boolean,
|
|
291
|
+
Text: props(is:string, join:boolean, block:boolean, inline:boolean, inline-block:boolean, label:boolean, color:string, neutral:boolean, primary:boolean, secondary:boolean, info:boolean, success:boolean, warning:boolean, error:boolean, neutral-content:boolean, primary-content:boolean, secondary-content:boolean, accent-content:boolean, info-content:boolean, success-content:boolean, warning-content:boolean, error-content:boolean, size:string, xl:boolean, lg:boolean, sm:boolean, xs:boolean, align:string, left:boolean, center:boolean, right:boolean, justify:boolean, case:string, uppercase:boolean, lowercase:boolean, capitalize:boolean, normal-case:boolean, font:string, sans:boolean, serif:boolean, mono:boolean, weight:string, thin:boolean, extralight:boolean, light:boolean, normal:boolean, medium:boolean, semibold:boolean, bold:boolean, extrabold:boolean, black:boolean) slots(default)
|
|
265
292
|
|
|
266
293
|
TextArea
|
|
267
|
-
TextArea: props(
|
|
294
|
+
TextArea: props(model-value:string, placeholder:string, type:string, rows:number, auto-expand:boolean, ghost:boolean, disabled:boolean, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean, size:string, xl:boolean, lg:boolean, md:boolean, sm:boolean, xs:boolean, validator:boolean) events(update:model-value)
|
|
268
295
|
|
|
269
296
|
TextRotate
|
|
270
297
|
TextRotate: props(is:string|Component, center:boolean, duration:number) slots(default)
|
|
271
298
|
|
|
272
299
|
ThemeController
|
|
273
|
-
ThemeController: props(themes:DaisyThemeInput[],
|
|
300
|
+
ThemeController: props(themes:DaisyThemeInput[], default-theme:string, storage:Function) slots(default)
|
|
274
301
|
ThemeTile: props(theme:string, size:string, xs:boolean, sm:boolean, md:boolean, lg:boolean, xl:boolean)
|
|
275
302
|
|
|
276
303
|
ThemeProvider
|
|
277
|
-
ThemeProvider: props(
|
|
304
|
+
ThemeProvider: props(data-theme:string, css-vars:string, snoop:boolean) slots(default)
|
|
278
305
|
|
|
279
306
|
Timeline
|
|
280
|
-
Timeline: props(vertical:boolean, horizontal:boolean, compact:boolean,
|
|
307
|
+
Timeline: props(vertical:boolean, horizontal:boolean, compact:boolean, snap-icon:boolean, class:string) slots(default)
|
|
281
308
|
TimelineItem: props(hr:boolean, class:string) slots(start, middle, end, hr-top, hr-bottom)
|
|
282
309
|
TimelineStart: props(box:boolean, class:string) slots(default)
|
|
283
310
|
TimelineMiddle: props(class:string) slots(default)
|
|
@@ -285,13 +312,13 @@ Timeline
|
|
|
285
312
|
TimelineLine: props(color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean)
|
|
286
313
|
|
|
287
314
|
Toast
|
|
288
|
-
Toast: props(
|
|
315
|
+
Toast: props(h-align:string, start:boolean, center:boolean, end:boolean, v-align:string, top:boolean, middle:boolean, bottom:boolean, name:string, defaults:Partial<ToastSettings>, limit:number) slots(default)
|
|
289
316
|
|
|
290
317
|
Toggle
|
|
291
|
-
Toggle: props(
|
|
318
|
+
Toggle: props(model-value:any, disabled:boolean, validator:boolean, theme-controller:boolean, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, success:boolean, info:boolean, warning:boolean, error:boolean, size:string, xs:boolean, sm:boolean, md:boolean, lg:boolean, xl:boolean) events(update:model-value)
|
|
292
319
|
|
|
293
320
|
Tooltip
|
|
294
|
-
Tooltip: props(tip:string|number, open:boolean, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean, position:string, top:boolean, right:boolean, bottom:boolean, left:boolean,
|
|
321
|
+
Tooltip: props(tip:string|number, open:boolean, color:string, neutral:boolean, primary:boolean, secondary:boolean, accent:boolean, info:boolean, success:boolean, warning:boolean, error:boolean, position:string, top:boolean, right:boolean, bottom:boolean, left:boolean, delay-enter:number, delay-leave:number) slots(default)
|
|
295
322
|
TooltipTarget: slots(default)
|
|
296
323
|
TooltipContent: slots(default)
|
|
297
324
|
|
package/components.d.ts
ADDED
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import type { DefineComponent } from 'vue'
|
|
2
|
+
|
|
3
|
+
type Component = DefineComponent<object, object, unknown>
|
|
4
|
+
|
|
5
|
+
export declare const Accordion: Component
|
|
6
|
+
export declare const Alert: Component
|
|
7
|
+
export declare const Avatar: Component
|
|
8
|
+
export declare const AvatarGroup: Component
|
|
9
|
+
export declare const Badge: Component
|
|
10
|
+
export declare const Breadcrumbs: Component
|
|
11
|
+
export declare const Button: Component
|
|
12
|
+
export declare const Calendar: Component
|
|
13
|
+
export declare const CalendarInput: Component
|
|
14
|
+
export declare const CalendarSkeleton: Component
|
|
15
|
+
export declare const Card: Component
|
|
16
|
+
export declare const CardActions: Component
|
|
17
|
+
export declare const CardBody: Component
|
|
18
|
+
export declare const CardTitle: Component
|
|
19
|
+
export declare const Carousel: Component
|
|
20
|
+
export declare const CarouselItem: Component
|
|
21
|
+
export declare const Chat: Component
|
|
22
|
+
export declare const ChatBubble: Component
|
|
23
|
+
export declare const ChatFooter: Component
|
|
24
|
+
export declare const ChatHeader: Component
|
|
25
|
+
export declare const ChatImage: Component
|
|
26
|
+
export declare const Checkbox: Component
|
|
27
|
+
export declare const Collapse: Component
|
|
28
|
+
export declare const CollapseContent: Component
|
|
29
|
+
export declare const CollapseTitle: Component
|
|
30
|
+
export declare const Countdown: Component
|
|
31
|
+
export declare const CountdownTimers: Component
|
|
32
|
+
export declare const Counter: Component
|
|
33
|
+
export declare const Crumb: Component
|
|
34
|
+
export declare const DaisyLink: Component
|
|
35
|
+
export declare const Diff: Component
|
|
36
|
+
export declare const Divider: Component
|
|
37
|
+
export declare const Dock: Component
|
|
38
|
+
export declare const DockItem: Component
|
|
39
|
+
export declare const DockLabel: Component
|
|
40
|
+
export declare const Drawer: Component
|
|
41
|
+
export declare const DrawerContent: Component
|
|
42
|
+
export declare const DrawerSide: Component
|
|
43
|
+
export declare const Dropdown: Component
|
|
44
|
+
export declare const DropdownButton: Component
|
|
45
|
+
export declare const DropdownContent: Component
|
|
46
|
+
export declare const DropdownTarget: Component
|
|
47
|
+
export declare const Fab: Component
|
|
48
|
+
export declare const FabClose: Component
|
|
49
|
+
export declare const FabMainAction: Component
|
|
50
|
+
export declare const FabTrigger: Component
|
|
51
|
+
export declare const Fieldset: Component
|
|
52
|
+
export declare const FileInput: Component
|
|
53
|
+
export declare const Filter: Component
|
|
54
|
+
export declare const Flex: Component
|
|
55
|
+
export declare const FlexItem: Component
|
|
56
|
+
export declare const Footer: Component
|
|
57
|
+
export declare const FooterTitle: Component
|
|
58
|
+
export declare const FormControl: Component
|
|
59
|
+
export declare const Hero: Component
|
|
60
|
+
export declare const HeroContent: Component
|
|
61
|
+
export declare const HeroOverlay: Component
|
|
62
|
+
export declare const Hover3D: Component
|
|
63
|
+
export declare const HoverGallery: Component
|
|
64
|
+
export declare const Indicator: Component
|
|
65
|
+
export declare const IndicatorItem: Component
|
|
66
|
+
export declare const Input: Component
|
|
67
|
+
export declare const Join: Component
|
|
68
|
+
export declare const Kbd: Component
|
|
69
|
+
export declare const Label: Component
|
|
70
|
+
export declare const List: Component
|
|
71
|
+
export declare const ListColGrow: Component
|
|
72
|
+
export declare const ListColWrap: Component
|
|
73
|
+
export declare const ListRow: Component
|
|
74
|
+
export declare const LoadingBall: Component
|
|
75
|
+
export declare const LoadingBars: Component
|
|
76
|
+
export declare const LoadingDots: Component
|
|
77
|
+
export declare const LoadingInfinity: Component
|
|
78
|
+
export declare const LoadingRing: Component
|
|
79
|
+
export declare const LoadingSpinner: Component
|
|
80
|
+
export declare const Mask: Component
|
|
81
|
+
export declare const Menu: Component
|
|
82
|
+
export declare const MenuExpand: Component
|
|
83
|
+
export declare const MenuExpandToggle: Component
|
|
84
|
+
export declare const MenuItem: Component
|
|
85
|
+
export declare const MenuTitle: Component
|
|
86
|
+
export declare const MockupBrowser: Component
|
|
87
|
+
export declare const MockupBrowserToolbar: Component
|
|
88
|
+
export declare const MockupCode: Component
|
|
89
|
+
export declare const MockupPhone: Component
|
|
90
|
+
export declare const MockupWindow: Component
|
|
91
|
+
export declare const Modal: Component
|
|
92
|
+
export declare const ModalAction: Component
|
|
93
|
+
export declare const ModalBox: Component
|
|
94
|
+
export declare const NavButton: Component
|
|
95
|
+
export declare const Navbar: Component
|
|
96
|
+
export declare const NavbarCenter: Component
|
|
97
|
+
export declare const NavbarEnd: Component
|
|
98
|
+
export declare const NavbarStart: Component
|
|
99
|
+
export declare const Progress: Component
|
|
100
|
+
export declare const Prose: Component
|
|
101
|
+
export declare const RadialProgress: Component
|
|
102
|
+
export declare const Radio: Component
|
|
103
|
+
export declare const RadioGroup: Component
|
|
104
|
+
export declare const Range: Component
|
|
105
|
+
export declare const RangeMeasure: Component
|
|
106
|
+
export declare const RangeMeasureTick: Component
|
|
107
|
+
export declare const Rating: Component
|
|
108
|
+
export declare const Select: Component
|
|
109
|
+
export declare const Skeleton: Component
|
|
110
|
+
export declare const SkeletonText: Component
|
|
111
|
+
export declare const Stack: Component
|
|
112
|
+
export declare const Stat: Component
|
|
113
|
+
export declare const StatActions: Component
|
|
114
|
+
export declare const StatDesc: Component
|
|
115
|
+
export declare const StatFigure: Component
|
|
116
|
+
export declare const StatTitle: Component
|
|
117
|
+
export declare const StatValue: Component
|
|
118
|
+
export declare const Stats: Component
|
|
119
|
+
export declare const Status: Component
|
|
120
|
+
export declare const Step: Component
|
|
121
|
+
export declare const StepIcon: Component
|
|
122
|
+
export declare const Steps: Component
|
|
123
|
+
export declare const Swap: Component
|
|
124
|
+
export declare const Tab: Component
|
|
125
|
+
export declare const TabContent: Component
|
|
126
|
+
export declare const Table: Component
|
|
127
|
+
export declare const Tabs: Component
|
|
128
|
+
export declare const Text: Component
|
|
129
|
+
export declare const TextArea: Component
|
|
130
|
+
export declare const TextRotate: Component
|
|
131
|
+
export declare const ThemeController: Component
|
|
132
|
+
export declare const ThemeProvider: Component
|
|
133
|
+
export declare const ThemeTile: Component
|
|
134
|
+
export declare const Timeline: Component
|
|
135
|
+
export declare const TimelineEnd: Component
|
|
136
|
+
export declare const TimelineItem: Component
|
|
137
|
+
export declare const TimelineLine: Component
|
|
138
|
+
export declare const TimelineMiddle: Component
|
|
139
|
+
export declare const TimelineStart: Component
|
|
140
|
+
export declare const Toast: Component
|
|
141
|
+
export declare const Toggle: Component
|
|
142
|
+
export declare const Tooltip: Component
|
|
143
|
+
export declare const TooltipContent: Component
|
|
144
|
+
export declare const TooltipTarget: Component
|
|
145
|
+
export declare const ValidatorHint: Component
|
package/components.js
ADDED
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
export { default as Accordion } from './app/components/Accordion.vue'
|
|
2
|
+
export { default as Alert } from './app/components/Alert.vue'
|
|
3
|
+
export { default as Avatar } from './app/components/Avatar.vue'
|
|
4
|
+
export { default as AvatarGroup } from './app/components/AvatarGroup.vue'
|
|
5
|
+
export { default as Badge } from './app/components/Badge.vue'
|
|
6
|
+
export { default as Breadcrumbs } from './app/components/Breadcrumbs.vue'
|
|
7
|
+
export { default as Button } from './app/components/Button.vue'
|
|
8
|
+
export { default as Calendar } from './app/components/Calendar.vue'
|
|
9
|
+
export { default as CalendarInput } from './app/components/CalendarInput.vue'
|
|
10
|
+
export { default as CalendarSkeleton } from './app/components/CalendarSkeleton.vue'
|
|
11
|
+
export { default as Card } from './app/components/Card.vue'
|
|
12
|
+
export { default as CardActions } from './app/components/CardActions.vue'
|
|
13
|
+
export { default as CardBody } from './app/components/CardBody.vue'
|
|
14
|
+
export { default as CardTitle } from './app/components/CardTitle.vue'
|
|
15
|
+
export { default as Carousel } from './app/components/Carousel.vue'
|
|
16
|
+
export { default as CarouselItem } from './app/components/CarouselItem.vue'
|
|
17
|
+
export { default as Chat } from './app/components/Chat.vue'
|
|
18
|
+
export { default as ChatBubble } from './app/components/ChatBubble.vue'
|
|
19
|
+
export { default as ChatFooter } from './app/components/ChatFooter.vue'
|
|
20
|
+
export { default as ChatHeader } from './app/components/ChatHeader.vue'
|
|
21
|
+
export { default as ChatImage } from './app/components/ChatImage.vue'
|
|
22
|
+
export { default as Checkbox } from './app/components/Checkbox.vue'
|
|
23
|
+
export { default as Collapse } from './app/components/Collapse.vue'
|
|
24
|
+
export { default as CollapseContent } from './app/components/CollapseContent.vue'
|
|
25
|
+
export { default as CollapseTitle } from './app/components/CollapseTitle.vue'
|
|
26
|
+
export { default as Countdown } from './app/components/Countdown.vue'
|
|
27
|
+
export { default as CountdownTimers } from './app/components/CountdownTimers.vue'
|
|
28
|
+
export { default as Counter } from './app/components/Counter.vue'
|
|
29
|
+
export { default as Crumb } from './app/components/Crumb.vue'
|
|
30
|
+
export { default as DaisyLink } from './app/components/DaisyLink.vue'
|
|
31
|
+
export { default as Diff } from './app/components/Diff.vue'
|
|
32
|
+
export { default as Divider } from './app/components/Divider.vue'
|
|
33
|
+
export { default as Dock } from './app/components/Dock.vue'
|
|
34
|
+
export { default as DockItem } from './app/components/DockItem.vue'
|
|
35
|
+
export { default as DockLabel } from './app/components/DockLabel.vue'
|
|
36
|
+
export { default as Drawer } from './app/components/Drawer.vue'
|
|
37
|
+
export { default as DrawerContent } from './app/components/DrawerContent.vue'
|
|
38
|
+
export { default as DrawerSide } from './app/components/DrawerSide.vue'
|
|
39
|
+
export { default as Dropdown } from './app/components/Dropdown.vue'
|
|
40
|
+
export { default as DropdownButton } from './app/components/DropdownButton.vue'
|
|
41
|
+
export { default as DropdownContent } from './app/components/DropdownContent.vue'
|
|
42
|
+
export { default as DropdownTarget } from './app/components/DropdownTarget.vue'
|
|
43
|
+
export { default as Fab } from './app/components/Fab.vue'
|
|
44
|
+
export { default as FabClose } from './app/components/FabClose.vue'
|
|
45
|
+
export { default as FabMainAction } from './app/components/FabMainAction.vue'
|
|
46
|
+
export { default as FabTrigger } from './app/components/FabTrigger.vue'
|
|
47
|
+
export { default as Fieldset } from './app/components/Fieldset.vue'
|
|
48
|
+
export { default as FileInput } from './app/components/FileInput.vue'
|
|
49
|
+
export { default as Filter } from './app/components/Filter.vue'
|
|
50
|
+
export { default as Flex } from './app/components/Flex.vue'
|
|
51
|
+
export { default as FlexItem } from './app/components/FlexItem.vue'
|
|
52
|
+
export { default as Footer } from './app/components/Footer.vue'
|
|
53
|
+
export { default as FooterTitle } from './app/components/FooterTitle.vue'
|
|
54
|
+
export { default as FormControl } from './app/components/FormControl.vue'
|
|
55
|
+
export { default as Hero } from './app/components/Hero.vue'
|
|
56
|
+
export { default as HeroContent } from './app/components/HeroContent.vue'
|
|
57
|
+
export { default as HeroOverlay } from './app/components/HeroOverlay.vue'
|
|
58
|
+
export { default as Hover3D } from './app/components/Hover3D.vue'
|
|
59
|
+
export { default as HoverGallery } from './app/components/HoverGallery.vue'
|
|
60
|
+
export { default as Indicator } from './app/components/Indicator.vue'
|
|
61
|
+
export { default as IndicatorItem } from './app/components/IndicatorItem.vue'
|
|
62
|
+
export { default as Input } from './app/components/Input.vue'
|
|
63
|
+
export { default as Join } from './app/components/Join.vue'
|
|
64
|
+
export { default as Kbd } from './app/components/Kbd.vue'
|
|
65
|
+
export { default as Label } from './app/components/Label.vue'
|
|
66
|
+
export { default as List } from './app/components/List.vue'
|
|
67
|
+
export { default as ListColGrow } from './app/components/ListColGrow.vue'
|
|
68
|
+
export { default as ListColWrap } from './app/components/ListColWrap.vue'
|
|
69
|
+
export { default as ListRow } from './app/components/ListRow.vue'
|
|
70
|
+
export { default as LoadingBall } from './app/components/LoadingBall.vue'
|
|
71
|
+
export { default as LoadingBars } from './app/components/LoadingBars.vue'
|
|
72
|
+
export { default as LoadingDots } from './app/components/LoadingDots.vue'
|
|
73
|
+
export { default as LoadingInfinity } from './app/components/LoadingInfinity.vue'
|
|
74
|
+
export { default as LoadingRing } from './app/components/LoadingRing.vue'
|
|
75
|
+
export { default as LoadingSpinner } from './app/components/LoadingSpinner.vue'
|
|
76
|
+
export { default as Mask } from './app/components/Mask.vue'
|
|
77
|
+
export { default as Menu } from './app/components/Menu.vue'
|
|
78
|
+
export { default as MenuExpand } from './app/components/MenuExpand.vue'
|
|
79
|
+
export { default as MenuExpandToggle } from './app/components/MenuExpandToggle.vue'
|
|
80
|
+
export { default as MenuItem } from './app/components/MenuItem.vue'
|
|
81
|
+
export { default as MenuTitle } from './app/components/MenuTitle.vue'
|
|
82
|
+
export { default as MockupBrowser } from './app/components/MockupBrowser.vue'
|
|
83
|
+
export { default as MockupBrowserToolbar } from './app/components/MockupBrowserToolbar.vue'
|
|
84
|
+
export { default as MockupCode } from './app/components/MockupCode.vue'
|
|
85
|
+
export { default as MockupPhone } from './app/components/MockupPhone.vue'
|
|
86
|
+
export { default as MockupWindow } from './app/components/MockupWindow.vue'
|
|
87
|
+
export { default as Modal } from './app/components/Modal.vue'
|
|
88
|
+
export { default as ModalAction } from './app/components/ModalAction.vue'
|
|
89
|
+
export { default as ModalBox } from './app/components/ModalBox.vue'
|
|
90
|
+
export { default as Navbar } from './app/components/Navbar.vue'
|
|
91
|
+
export { default as NavbarCenter } from './app/components/NavbarCenter.vue'
|
|
92
|
+
export { default as NavbarEnd } from './app/components/NavbarEnd.vue'
|
|
93
|
+
export { default as NavbarStart } from './app/components/NavbarStart.vue'
|
|
94
|
+
export { default as NavButton } from './app/components/NavButton.vue'
|
|
95
|
+
export { default as Progress } from './app/components/Progress.vue'
|
|
96
|
+
export { default as Prose } from './app/components/Prose.vue'
|
|
97
|
+
export { default as RadialProgress } from './app/components/RadialProgress.vue'
|
|
98
|
+
export { default as Radio } from './app/components/Radio.vue'
|
|
99
|
+
export { default as RadioGroup } from './app/components/RadioGroup.vue'
|
|
100
|
+
export { default as Range } from './app/components/Range.vue'
|
|
101
|
+
export { default as RangeMeasure } from './app/components/RangeMeasure.vue'
|
|
102
|
+
export { default as RangeMeasureTick } from './app/components/RangeMeasureTick.vue'
|
|
103
|
+
export { default as Rating } from './app/components/Rating.vue'
|
|
104
|
+
export { default as Select } from './app/components/Select.vue'
|
|
105
|
+
export { default as Skeleton } from './app/components/Skeleton.vue'
|
|
106
|
+
export { default as SkeletonText } from './app/components/SkeletonText.vue'
|
|
107
|
+
export { default as Stack } from './app/components/Stack.vue'
|
|
108
|
+
export { default as Stat } from './app/components/Stat.vue'
|
|
109
|
+
export { default as StatActions } from './app/components/StatActions.vue'
|
|
110
|
+
export { default as StatDesc } from './app/components/StatDesc.vue'
|
|
111
|
+
export { default as StatFigure } from './app/components/StatFigure.vue'
|
|
112
|
+
export { default as Stats } from './app/components/Stats.vue'
|
|
113
|
+
export { default as StatTitle } from './app/components/StatTitle.vue'
|
|
114
|
+
export { default as Status } from './app/components/Status.vue'
|
|
115
|
+
export { default as StatValue } from './app/components/StatValue.vue'
|
|
116
|
+
export { default as Step } from './app/components/Step.vue'
|
|
117
|
+
export { default as StepIcon } from './app/components/StepIcon.vue'
|
|
118
|
+
export { default as Steps } from './app/components/Steps.vue'
|
|
119
|
+
export { default as Swap } from './app/components/Swap.vue'
|
|
120
|
+
export { default as Tab } from './app/components/Tab.vue'
|
|
121
|
+
export { default as TabContent } from './app/components/TabContent.vue'
|
|
122
|
+
export { default as Table } from './app/components/Table.vue'
|
|
123
|
+
export { default as Tabs } from './app/components/Tabs.vue'
|
|
124
|
+
export { default as Text } from './app/components/Text.vue'
|
|
125
|
+
export { default as TextArea } from './app/components/TextArea.vue'
|
|
126
|
+
export { default as TextRotate } from './app/components/TextRotate.vue'
|
|
127
|
+
export { default as ThemeController } from './app/components/ThemeController.vue'
|
|
128
|
+
export { default as ThemeProvider } from './app/components/ThemeProvider.vue'
|
|
129
|
+
export { default as ThemeTile } from './app/components/ThemeTile.vue'
|
|
130
|
+
export { default as Timeline } from './app/components/Timeline.vue'
|
|
131
|
+
export { default as TimelineEnd } from './app/components/TimelineEnd.vue'
|
|
132
|
+
export { default as TimelineItem } from './app/components/TimelineItem.vue'
|
|
133
|
+
export { default as TimelineLine } from './app/components/TimelineLine.vue'
|
|
134
|
+
export { default as TimelineMiddle } from './app/components/TimelineMiddle.vue'
|
|
135
|
+
export { default as TimelineStart } from './app/components/TimelineStart.vue'
|
|
136
|
+
export { default as Toast } from './app/components/Toast.vue'
|
|
137
|
+
export { default as Toggle } from './app/components/Toggle.vue'
|
|
138
|
+
export { default as Tooltip } from './app/components/Tooltip.vue'
|
|
139
|
+
export { default as TooltipContent } from './app/components/TooltipContent.vue'
|
|
140
|
+
export { default as TooltipTarget } from './app/components/TooltipTarget.vue'
|
|
141
|
+
export { default as ValidatorHint } from './app/components/ValidatorHint.vue'
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
import type { NuxtModule } from '@nuxt/schema'
|
|
2
|
+
import type { DefineComponent } from 'vue'
|
|
3
|
+
|
|
4
|
+
export interface ModuleOptions {
|
|
5
|
+
/**
|
|
6
|
+
* Prefix for all DaisyUI Kit components
|
|
7
|
+
* @default ''
|
|
8
|
+
*/
|
|
9
|
+
prefix?: string
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare const module: NuxtModule<ModuleOptions>
|
|
13
|
+
export default module
|
|
14
|
+
|
|
15
|
+
type Component = DefineComponent<object, object, unknown>
|
|
16
|
+
|
|
17
|
+
export declare const Accordion: Component
|
|
18
|
+
export declare const Alert: Component
|
|
19
|
+
export declare const Avatar: Component
|
|
20
|
+
export declare const AvatarGroup: Component
|
|
21
|
+
export declare const Badge: Component
|
|
22
|
+
export declare const Breadcrumbs: Component
|
|
23
|
+
export declare const Button: Component
|
|
24
|
+
export declare const Calendar: Component
|
|
25
|
+
export declare const CalendarInput: Component
|
|
26
|
+
export declare const CalendarSkeleton: Component
|
|
27
|
+
export declare const Card: Component
|
|
28
|
+
export declare const CardActions: Component
|
|
29
|
+
export declare const CardBody: Component
|
|
30
|
+
export declare const CardTitle: Component
|
|
31
|
+
export declare const Carousel: Component
|
|
32
|
+
export declare const CarouselItem: Component
|
|
33
|
+
export declare const Chat: Component
|
|
34
|
+
export declare const ChatBubble: Component
|
|
35
|
+
export declare const ChatFooter: Component
|
|
36
|
+
export declare const ChatHeader: Component
|
|
37
|
+
export declare const ChatImage: Component
|
|
38
|
+
export declare const Checkbox: Component
|
|
39
|
+
export declare const Collapse: Component
|
|
40
|
+
export declare const CollapseContent: Component
|
|
41
|
+
export declare const CollapseTitle: Component
|
|
42
|
+
export declare const Countdown: Component
|
|
43
|
+
export declare const CountdownTimers: Component
|
|
44
|
+
export declare const Counter: Component
|
|
45
|
+
export declare const Crumb: Component
|
|
46
|
+
export declare const DaisyLink: Component
|
|
47
|
+
export declare const Diff: Component
|
|
48
|
+
export declare const Divider: Component
|
|
49
|
+
export declare const Dock: Component
|
|
50
|
+
export declare const DockItem: Component
|
|
51
|
+
export declare const DockLabel: Component
|
|
52
|
+
export declare const Drawer: Component
|
|
53
|
+
export declare const DrawerContent: Component
|
|
54
|
+
export declare const DrawerSide: Component
|
|
55
|
+
export declare const Dropdown: Component
|
|
56
|
+
export declare const DropdownButton: Component
|
|
57
|
+
export declare const DropdownContent: Component
|
|
58
|
+
export declare const DropdownTarget: Component
|
|
59
|
+
export declare const Fab: Component
|
|
60
|
+
export declare const FabClose: Component
|
|
61
|
+
export declare const FabMainAction: Component
|
|
62
|
+
export declare const FabTrigger: Component
|
|
63
|
+
export declare const Fieldset: Component
|
|
64
|
+
export declare const FileInput: Component
|
|
65
|
+
export declare const Filter: Component
|
|
66
|
+
export declare const Flex: Component
|
|
67
|
+
export declare const FlexItem: Component
|
|
68
|
+
export declare const Footer: Component
|
|
69
|
+
export declare const FooterTitle: Component
|
|
70
|
+
export declare const FormControl: Component
|
|
71
|
+
export declare const Hero: Component
|
|
72
|
+
export declare const HeroContent: Component
|
|
73
|
+
export declare const HeroOverlay: Component
|
|
74
|
+
export declare const Hover3D: Component
|
|
75
|
+
export declare const HoverGallery: Component
|
|
76
|
+
export declare const Indicator: Component
|
|
77
|
+
export declare const IndicatorItem: Component
|
|
78
|
+
export declare const Input: Component
|
|
79
|
+
export declare const Join: Component
|
|
80
|
+
export declare const Kbd: Component
|
|
81
|
+
export declare const Label: Component
|
|
82
|
+
export declare const List: Component
|
|
83
|
+
export declare const ListColGrow: Component
|
|
84
|
+
export declare const ListColWrap: Component
|
|
85
|
+
export declare const ListRow: Component
|
|
86
|
+
export declare const LoadingBall: Component
|
|
87
|
+
export declare const LoadingBars: Component
|
|
88
|
+
export declare const LoadingDots: Component
|
|
89
|
+
export declare const LoadingInfinity: Component
|
|
90
|
+
export declare const LoadingRing: Component
|
|
91
|
+
export declare const LoadingSpinner: Component
|
|
92
|
+
export declare const Mask: Component
|
|
93
|
+
export declare const Menu: Component
|
|
94
|
+
export declare const MenuExpand: Component
|
|
95
|
+
export declare const MenuExpandToggle: Component
|
|
96
|
+
export declare const MenuItem: Component
|
|
97
|
+
export declare const MenuTitle: Component
|
|
98
|
+
export declare const MockupBrowser: Component
|
|
99
|
+
export declare const MockupBrowserToolbar: Component
|
|
100
|
+
export declare const MockupCode: Component
|
|
101
|
+
export declare const MockupPhone: Component
|
|
102
|
+
export declare const MockupWindow: Component
|
|
103
|
+
export declare const Modal: Component
|
|
104
|
+
export declare const ModalAction: Component
|
|
105
|
+
export declare const ModalBox: Component
|
|
106
|
+
export declare const NavButton: Component
|
|
107
|
+
export declare const Navbar: Component
|
|
108
|
+
export declare const NavbarCenter: Component
|
|
109
|
+
export declare const NavbarEnd: Component
|
|
110
|
+
export declare const NavbarStart: Component
|
|
111
|
+
export declare const Progress: Component
|
|
112
|
+
export declare const Prose: Component
|
|
113
|
+
export declare const RadialProgress: Component
|
|
114
|
+
export declare const Radio: Component
|
|
115
|
+
export declare const RadioGroup: Component
|
|
116
|
+
export declare const Range: Component
|
|
117
|
+
export declare const RangeMeasure: Component
|
|
118
|
+
export declare const RangeMeasureTick: Component
|
|
119
|
+
export declare const Rating: Component
|
|
120
|
+
export declare const Select: Component
|
|
121
|
+
export declare const Skeleton: Component
|
|
122
|
+
export declare const SkeletonText: Component
|
|
123
|
+
export declare const Stack: Component
|
|
124
|
+
export declare const Stat: Component
|
|
125
|
+
export declare const StatActions: Component
|
|
126
|
+
export declare const StatDesc: Component
|
|
127
|
+
export declare const StatFigure: Component
|
|
128
|
+
export declare const StatTitle: Component
|
|
129
|
+
export declare const StatValue: Component
|
|
130
|
+
export declare const Stats: Component
|
|
131
|
+
export declare const Status: Component
|
|
132
|
+
export declare const Step: Component
|
|
133
|
+
export declare const StepIcon: Component
|
|
134
|
+
export declare const Steps: Component
|
|
135
|
+
export declare const Swap: Component
|
|
136
|
+
export declare const Tab: Component
|
|
137
|
+
export declare const TabContent: Component
|
|
138
|
+
export declare const Table: Component
|
|
139
|
+
export declare const Tabs: Component
|
|
140
|
+
export declare const Text: Component
|
|
141
|
+
export declare const TextArea: Component
|
|
142
|
+
export declare const TextRotate: Component
|
|
143
|
+
export declare const ThemeController: Component
|
|
144
|
+
export declare const ThemeProvider: Component
|
|
145
|
+
export declare const ThemeTile: Component
|
|
146
|
+
export declare const Timeline: Component
|
|
147
|
+
export declare const TimelineEnd: Component
|
|
148
|
+
export declare const TimelineItem: Component
|
|
149
|
+
export declare const TimelineLine: Component
|
|
150
|
+
export declare const TimelineMiddle: Component
|
|
151
|
+
export declare const TimelineStart: Component
|
|
152
|
+
export declare const Toast: Component
|
|
153
|
+
export declare const Toggle: Component
|
|
154
|
+
export declare const Tooltip: Component
|
|
155
|
+
export declare const TooltipContent: Component
|
|
156
|
+
export declare const TooltipTarget: Component
|
|
157
|
+
export declare const ValidatorHint: Component
|
package/index.js
ADDED
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
// Re-export all components as named exports
|
|
2
|
+
export { default as Accordion } from './app/components/Accordion.vue'
|
|
3
|
+
|
|
4
|
+
export { default as Alert } from './app/components/Alert.vue'
|
|
5
|
+
export { default as Avatar } from './app/components/Avatar.vue'
|
|
6
|
+
export { default as AvatarGroup } from './app/components/AvatarGroup.vue'
|
|
7
|
+
export { default as Badge } from './app/components/Badge.vue'
|
|
8
|
+
export { default as Breadcrumbs } from './app/components/Breadcrumbs.vue'
|
|
9
|
+
export { default as Button } from './app/components/Button.vue'
|
|
10
|
+
export { default as Calendar } from './app/components/Calendar.vue'
|
|
11
|
+
export { default as CalendarInput } from './app/components/CalendarInput.vue'
|
|
12
|
+
export { default as CalendarSkeleton } from './app/components/CalendarSkeleton.vue'
|
|
13
|
+
export { default as Card } from './app/components/Card.vue'
|
|
14
|
+
export { default as CardActions } from './app/components/CardActions.vue'
|
|
15
|
+
export { default as CardBody } from './app/components/CardBody.vue'
|
|
16
|
+
export { default as CardTitle } from './app/components/CardTitle.vue'
|
|
17
|
+
export { default as Carousel } from './app/components/Carousel.vue'
|
|
18
|
+
export { default as CarouselItem } from './app/components/CarouselItem.vue'
|
|
19
|
+
export { default as Chat } from './app/components/Chat.vue'
|
|
20
|
+
export { default as ChatBubble } from './app/components/ChatBubble.vue'
|
|
21
|
+
export { default as ChatFooter } from './app/components/ChatFooter.vue'
|
|
22
|
+
export { default as ChatHeader } from './app/components/ChatHeader.vue'
|
|
23
|
+
export { default as ChatImage } from './app/components/ChatImage.vue'
|
|
24
|
+
export { default as Checkbox } from './app/components/Checkbox.vue'
|
|
25
|
+
export { default as Collapse } from './app/components/Collapse.vue'
|
|
26
|
+
export { default as CollapseContent } from './app/components/CollapseContent.vue'
|
|
27
|
+
export { default as CollapseTitle } from './app/components/CollapseTitle.vue'
|
|
28
|
+
export { default as Countdown } from './app/components/Countdown.vue'
|
|
29
|
+
export { default as CountdownTimers } from './app/components/CountdownTimers.vue'
|
|
30
|
+
export { default as Counter } from './app/components/Counter.vue'
|
|
31
|
+
export { default as Crumb } from './app/components/Crumb.vue'
|
|
32
|
+
export { default as DaisyLink } from './app/components/DaisyLink.vue'
|
|
33
|
+
export { default as Diff } from './app/components/Diff.vue'
|
|
34
|
+
export { default as Divider } from './app/components/Divider.vue'
|
|
35
|
+
export { default as Dock } from './app/components/Dock.vue'
|
|
36
|
+
export { default as DockItem } from './app/components/DockItem.vue'
|
|
37
|
+
export { default as DockLabel } from './app/components/DockLabel.vue'
|
|
38
|
+
export { default as Drawer } from './app/components/Drawer.vue'
|
|
39
|
+
export { default as DrawerContent } from './app/components/DrawerContent.vue'
|
|
40
|
+
export { default as DrawerSide } from './app/components/DrawerSide.vue'
|
|
41
|
+
export { default as Dropdown } from './app/components/Dropdown.vue'
|
|
42
|
+
export { default as DropdownButton } from './app/components/DropdownButton.vue'
|
|
43
|
+
export { default as DropdownContent } from './app/components/DropdownContent.vue'
|
|
44
|
+
export { default as DropdownTarget } from './app/components/DropdownTarget.vue'
|
|
45
|
+
export { default as Fab } from './app/components/Fab.vue'
|
|
46
|
+
export { default as FabClose } from './app/components/FabClose.vue'
|
|
47
|
+
export { default as FabMainAction } from './app/components/FabMainAction.vue'
|
|
48
|
+
export { default as FabTrigger } from './app/components/FabTrigger.vue'
|
|
49
|
+
export { default as Fieldset } from './app/components/Fieldset.vue'
|
|
50
|
+
export { default as FileInput } from './app/components/FileInput.vue'
|
|
51
|
+
export { default as Filter } from './app/components/Filter.vue'
|
|
52
|
+
export { default as Flex } from './app/components/Flex.vue'
|
|
53
|
+
export { default as FlexItem } from './app/components/FlexItem.vue'
|
|
54
|
+
export { default as Footer } from './app/components/Footer.vue'
|
|
55
|
+
export { default as FooterTitle } from './app/components/FooterTitle.vue'
|
|
56
|
+
export { default as FormControl } from './app/components/FormControl.vue'
|
|
57
|
+
export { default as Hero } from './app/components/Hero.vue'
|
|
58
|
+
export { default as HeroContent } from './app/components/HeroContent.vue'
|
|
59
|
+
export { default as HeroOverlay } from './app/components/HeroOverlay.vue'
|
|
60
|
+
export { default as Hover3D } from './app/components/Hover3D.vue'
|
|
61
|
+
export { default as HoverGallery } from './app/components/HoverGallery.vue'
|
|
62
|
+
export { default as Indicator } from './app/components/Indicator.vue'
|
|
63
|
+
export { default as IndicatorItem } from './app/components/IndicatorItem.vue'
|
|
64
|
+
export { default as Input } from './app/components/Input.vue'
|
|
65
|
+
export { default as Join } from './app/components/Join.vue'
|
|
66
|
+
export { default as Kbd } from './app/components/Kbd.vue'
|
|
67
|
+
export { default as Label } from './app/components/Label.vue'
|
|
68
|
+
export { default as List } from './app/components/List.vue'
|
|
69
|
+
export { default as ListColGrow } from './app/components/ListColGrow.vue'
|
|
70
|
+
export { default as ListColWrap } from './app/components/ListColWrap.vue'
|
|
71
|
+
export { default as ListRow } from './app/components/ListRow.vue'
|
|
72
|
+
export { default as LoadingBall } from './app/components/LoadingBall.vue'
|
|
73
|
+
export { default as LoadingBars } from './app/components/LoadingBars.vue'
|
|
74
|
+
export { default as LoadingDots } from './app/components/LoadingDots.vue'
|
|
75
|
+
export { default as LoadingInfinity } from './app/components/LoadingInfinity.vue'
|
|
76
|
+
export { default as LoadingRing } from './app/components/LoadingRing.vue'
|
|
77
|
+
export { default as LoadingSpinner } from './app/components/LoadingSpinner.vue'
|
|
78
|
+
export { default as Mask } from './app/components/Mask.vue'
|
|
79
|
+
export { default as Menu } from './app/components/Menu.vue'
|
|
80
|
+
export { default as MenuExpand } from './app/components/MenuExpand.vue'
|
|
81
|
+
export { default as MenuExpandToggle } from './app/components/MenuExpandToggle.vue'
|
|
82
|
+
export { default as MenuItem } from './app/components/MenuItem.vue'
|
|
83
|
+
export { default as MenuTitle } from './app/components/MenuTitle.vue'
|
|
84
|
+
export { default as MockupBrowser } from './app/components/MockupBrowser.vue'
|
|
85
|
+
export { default as MockupBrowserToolbar } from './app/components/MockupBrowserToolbar.vue'
|
|
86
|
+
export { default as MockupCode } from './app/components/MockupCode.vue'
|
|
87
|
+
export { default as MockupPhone } from './app/components/MockupPhone.vue'
|
|
88
|
+
export { default as MockupWindow } from './app/components/MockupWindow.vue'
|
|
89
|
+
export { default as Modal } from './app/components/Modal.vue'
|
|
90
|
+
export { default as ModalAction } from './app/components/ModalAction.vue'
|
|
91
|
+
export { default as ModalBox } from './app/components/ModalBox.vue'
|
|
92
|
+
export { default as Navbar } from './app/components/Navbar.vue'
|
|
93
|
+
export { default as NavbarCenter } from './app/components/NavbarCenter.vue'
|
|
94
|
+
export { default as NavbarEnd } from './app/components/NavbarEnd.vue'
|
|
95
|
+
export { default as NavbarStart } from './app/components/NavbarStart.vue'
|
|
96
|
+
export { default as NavButton } from './app/components/NavButton.vue'
|
|
97
|
+
export { default as Progress } from './app/components/Progress.vue'
|
|
98
|
+
export { default as Prose } from './app/components/Prose.vue'
|
|
99
|
+
export { default as RadialProgress } from './app/components/RadialProgress.vue'
|
|
100
|
+
export { default as Radio } from './app/components/Radio.vue'
|
|
101
|
+
export { default as RadioGroup } from './app/components/RadioGroup.vue'
|
|
102
|
+
export { default as Range } from './app/components/Range.vue'
|
|
103
|
+
export { default as RangeMeasure } from './app/components/RangeMeasure.vue'
|
|
104
|
+
export { default as RangeMeasureTick } from './app/components/RangeMeasureTick.vue'
|
|
105
|
+
export { default as Rating } from './app/components/Rating.vue'
|
|
106
|
+
export { default as Select } from './app/components/Select.vue'
|
|
107
|
+
export { default as Skeleton } from './app/components/Skeleton.vue'
|
|
108
|
+
export { default as SkeletonText } from './app/components/SkeletonText.vue'
|
|
109
|
+
export { default as Stack } from './app/components/Stack.vue'
|
|
110
|
+
export { default as Stat } from './app/components/Stat.vue'
|
|
111
|
+
export { default as StatActions } from './app/components/StatActions.vue'
|
|
112
|
+
export { default as StatDesc } from './app/components/StatDesc.vue'
|
|
113
|
+
export { default as StatFigure } from './app/components/StatFigure.vue'
|
|
114
|
+
export { default as Stats } from './app/components/Stats.vue'
|
|
115
|
+
export { default as StatTitle } from './app/components/StatTitle.vue'
|
|
116
|
+
export { default as Status } from './app/components/Status.vue'
|
|
117
|
+
export { default as StatValue } from './app/components/StatValue.vue'
|
|
118
|
+
export { default as Step } from './app/components/Step.vue'
|
|
119
|
+
export { default as StepIcon } from './app/components/StepIcon.vue'
|
|
120
|
+
export { default as Steps } from './app/components/Steps.vue'
|
|
121
|
+
export { default as Swap } from './app/components/Swap.vue'
|
|
122
|
+
export { default as Tab } from './app/components/Tab.vue'
|
|
123
|
+
export { default as TabContent } from './app/components/TabContent.vue'
|
|
124
|
+
export { default as Table } from './app/components/Table.vue'
|
|
125
|
+
export { default as Tabs } from './app/components/Tabs.vue'
|
|
126
|
+
export { default as Text } from './app/components/Text.vue'
|
|
127
|
+
export { default as TextArea } from './app/components/TextArea.vue'
|
|
128
|
+
export { default as TextRotate } from './app/components/TextRotate.vue'
|
|
129
|
+
export { default as ThemeController } from './app/components/ThemeController.vue'
|
|
130
|
+
export { default as ThemeProvider } from './app/components/ThemeProvider.vue'
|
|
131
|
+
export { default as ThemeTile } from './app/components/ThemeTile.vue'
|
|
132
|
+
export { default as Timeline } from './app/components/Timeline.vue'
|
|
133
|
+
export { default as TimelineEnd } from './app/components/TimelineEnd.vue'
|
|
134
|
+
export { default as TimelineItem } from './app/components/TimelineItem.vue'
|
|
135
|
+
export { default as TimelineLine } from './app/components/TimelineLine.vue'
|
|
136
|
+
export { default as TimelineMiddle } from './app/components/TimelineMiddle.vue'
|
|
137
|
+
export { default as TimelineStart } from './app/components/TimelineStart.vue'
|
|
138
|
+
export { default as Toast } from './app/components/Toast.vue'
|
|
139
|
+
export { default as Toggle } from './app/components/Toggle.vue'
|
|
140
|
+
export { default as Tooltip } from './app/components/Tooltip.vue'
|
|
141
|
+
export { default as TooltipContent } from './app/components/TooltipContent.vue'
|
|
142
|
+
export { default as TooltipTarget } from './app/components/TooltipTarget.vue'
|
|
143
|
+
export { default as ValidatorHint } from './app/components/ValidatorHint.vue'
|
|
144
|
+
// Re-export the Nuxt module as default
|
|
145
|
+
export { default } from './nuxt.js'
|
package/package.json
CHANGED
|
@@ -4,33 +4,39 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "5.0.
|
|
7
|
+
"version": "5.0.3",
|
|
8
8
|
"packageManager": "pnpm@10.10.0",
|
|
9
9
|
"author": "feathers.dev",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
|
-
"types": "./
|
|
13
|
-
"import": "./
|
|
14
|
-
"require": "./nuxt.js"
|
|
12
|
+
"types": "./index.d.ts",
|
|
13
|
+
"import": "./index.js"
|
|
15
14
|
},
|
|
16
15
|
"./nuxt": {
|
|
17
16
|
"types": "./nuxt.d.ts",
|
|
18
|
-
"import": "./nuxt.js"
|
|
19
|
-
|
|
17
|
+
"import": "./nuxt.js"
|
|
18
|
+
},
|
|
19
|
+
"./components": {
|
|
20
|
+
"types": "./components.d.ts",
|
|
21
|
+
"import": "./components.js"
|
|
20
22
|
},
|
|
21
23
|
"./components/*": "./app/components/*",
|
|
22
24
|
"./composables/*": "./app/composables/*",
|
|
23
25
|
"./utils/*": "./app/utils/*"
|
|
24
26
|
},
|
|
25
|
-
"main": "./
|
|
26
|
-
"module": "./
|
|
27
|
-
"types": "./
|
|
27
|
+
"main": "./index.js",
|
|
28
|
+
"module": "./index.js",
|
|
29
|
+
"types": "./index.d.ts",
|
|
28
30
|
"files": [
|
|
29
31
|
"app/components/*.vue",
|
|
30
32
|
"app/composables/*",
|
|
31
33
|
"app/utils/*",
|
|
34
|
+
"index.js",
|
|
35
|
+
"index.d.ts",
|
|
32
36
|
"nuxt.js",
|
|
33
37
|
"nuxt.d.ts",
|
|
38
|
+
"components.js",
|
|
39
|
+
"components.d.ts",
|
|
34
40
|
"README.md"
|
|
35
41
|
],
|
|
36
42
|
"scripts": {
|