daisy-ui-kit 0.5.2 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Home/AlternatingFeatureSections.vue +5 -10
- package/components/Home/Footer.vue +3 -9
- package/components/Home/GradientFeatureSections.vue +9 -18
- package/components/Home/Header.vue +4 -13
- package/components/MobileSidebar.vue +1 -4
- package/components/SidebarMenuSection.vue +1 -3
- package/components/theme/Picker.vue +1 -2
- package/index.ts +96 -96
- package/package.json +31 -28
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import { HeartIcon, SparklesIcon } from '@heroicons/vue/outline'
|
|
3
|
-
import IconArrowUp from '~icons/heroicons-solid/arrow-up'
|
|
4
|
-
import IconArrowDown from '~icons/heroicons-solid/arrow-down'
|
|
5
|
-
import IconInfo from '~icons/feather/info'
|
|
6
|
-
|
|
7
2
|
const isChecked = ref(true)
|
|
8
3
|
const name = ref('')
|
|
9
4
|
const quest = ref('')
|
|
@@ -21,7 +16,7 @@ const favoriteColor = ref('')
|
|
|
21
16
|
<div class="max-w-xl px-4 mx-auto sm:px-6 lg:py-16 lg:max-w-none lg:mx-0 lg:px-0">
|
|
22
17
|
<div>
|
|
23
18
|
<Flex items-center justify-center class="w-12 h-12 rounded-md bg-gradient-secondary-b">
|
|
24
|
-
<
|
|
19
|
+
<Icon name="heroicons/heart" class="w-6 h-6 text-secondary-content" aria-hidden="true" />
|
|
25
20
|
</Flex>
|
|
26
21
|
|
|
27
22
|
<Text block size="3xl" extrabold class="mt-6 tracking-tight">
|
|
@@ -81,7 +76,7 @@ const favoriteColor = ref('')
|
|
|
81
76
|
justify-center
|
|
82
77
|
class="w-12 h-12 rounded-md bg-gradient-secondary-b text-secondary-content"
|
|
83
78
|
>
|
|
84
|
-
<
|
|
79
|
+
<Icon name="heroicons/sparkles" class="w-6 h-6" aria-hidden="true" />
|
|
85
80
|
</Flex>
|
|
86
81
|
<Text block size="3xl" extrabold class="mt-6 tracking-tight text-base-content/90">
|
|
87
82
|
Beautiful Components
|
|
@@ -165,7 +160,7 @@ const favoriteColor = ref('')
|
|
|
165
160
|
<LabelText>What is your name?</LabelText>
|
|
166
161
|
<LabelTextAlt>
|
|
167
162
|
<Tooltip primary left tip="Just answer correctly!">
|
|
168
|
-
<Button tabindex="-1" xs ghost><
|
|
163
|
+
<Button tabindex="-1" xs ghost><Icon name="feather/info" /></Button>
|
|
169
164
|
</Tooltip>
|
|
170
165
|
</LabelTextAlt>
|
|
171
166
|
</Label>
|
|
@@ -182,7 +177,7 @@ const favoriteColor = ref('')
|
|
|
182
177
|
<LabelText>What is your quest?</LabelText>
|
|
183
178
|
<LabelTextAlt>
|
|
184
179
|
<Tooltip secondary left tip="Where do you want to go, today?">
|
|
185
|
-
<Button tabindex="-1" xs ghost><
|
|
180
|
+
<Button tabindex="-1" xs ghost><Icon name="feather/info" /></Button>
|
|
186
181
|
</Tooltip>
|
|
187
182
|
</LabelTextAlt>
|
|
188
183
|
</Label>
|
|
@@ -199,7 +194,7 @@ const favoriteColor = ref('')
|
|
|
199
194
|
<LabelText>What is your favorite color?</LabelText>
|
|
200
195
|
<LabelTextAlt>
|
|
201
196
|
<Tooltip accent left tip="Blue or Yellow?">
|
|
202
|
-
<Button tabindex="-1" xs ghost><
|
|
197
|
+
<Button tabindex="-1" xs ghost><Icon name="feather/info" /></Button>
|
|
203
198
|
</Tooltip>
|
|
204
199
|
</LabelTextAlt>
|
|
205
200
|
</Label>
|
|
@@ -1,10 +1,4 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import IconFacebook from '~icons/ion/logo-facebook'
|
|
3
|
-
import IconDribbble from '~icons/ph/dribbble-logo-fill'
|
|
4
|
-
import IconInstagram from '~icons/ri/instagram-fill'
|
|
5
|
-
import IconTwitter from '~icons/fe/twitter'
|
|
6
|
-
import IconGithub from '~icons/fe/github'
|
|
7
|
-
|
|
8
2
|
const footerNavigation = {
|
|
9
3
|
solutions: [
|
|
10
4
|
{ name: 'Install', to: 'install' },
|
|
@@ -32,8 +26,8 @@ const footerNavigation = {
|
|
|
32
26
|
const social = [
|
|
33
27
|
// { name: 'Facebook', to: '#', icon: IconFacebook },
|
|
34
28
|
// { name: 'Instagram', to: '#', icon: IconInstagram },
|
|
35
|
-
{ name: 'Twitter', to: '#', icon:
|
|
36
|
-
{ name: 'GitHub', to: '#', icon:
|
|
29
|
+
{ name: 'Twitter', to: '#', icon: 'fe/twitter' },
|
|
30
|
+
{ name: 'GitHub', to: '#', icon: 'fe/github' },
|
|
37
31
|
// { name: 'Dribbble', to: '#', icon: IconDribbble },
|
|
38
32
|
]
|
|
39
33
|
</script>
|
|
@@ -123,7 +117,7 @@ const social = [
|
|
|
123
117
|
class="text-gray-400 hover:text-gray-500"
|
|
124
118
|
>
|
|
125
119
|
<span class="sr-only">{{ item.name }}</span>
|
|
126
|
-
<
|
|
120
|
+
<Icon :name="item.icon" class="w-6 h-6" aria-hidden="true" />
|
|
127
121
|
</NuxtLink>
|
|
128
122
|
</Flex>
|
|
129
123
|
</Flex>
|
|
@@ -1,61 +1,52 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import IconAdjustments from '~icons/heroicons-outline/adjustments'
|
|
3
|
-
import IconTemplate from '~icons/heroicons-outline/template'
|
|
4
|
-
import IconPencilAlt from '~icons/heroicons-outline/pencil-alt'
|
|
5
|
-
import IconTabs from '~icons/ph/tabs-bold'
|
|
6
|
-
import IconCollection from '~icons/heroicons-outline/collection'
|
|
7
|
-
import IconHeart from '~icons/heroicons-outline/heart'
|
|
8
|
-
import IconMoon from '~icons/heroicons-outline/moon'
|
|
9
|
-
import IconStar from '~icons/heroicons-outline/star'
|
|
10
|
-
|
|
11
2
|
const features = [
|
|
12
3
|
{
|
|
13
4
|
name: 'Beyond the Dark Side',
|
|
14
5
|
description:
|
|
15
6
|
'Don\'t clutter your app with "dark:" prefixes. Build Smart with CSS variables.',
|
|
16
|
-
icon:
|
|
7
|
+
icon: 'heroicons-outline/moon',
|
|
17
8
|
},
|
|
18
9
|
{
|
|
19
10
|
name: 'Theme Builder',
|
|
20
11
|
description:
|
|
21
12
|
'Fine tune the perfect color palette for your app.',
|
|
22
|
-
icon:
|
|
13
|
+
icon: 'heroicons-outline/adjustments',
|
|
23
14
|
},
|
|
24
15
|
{
|
|
25
16
|
name: 'Beautiful Inputs',
|
|
26
17
|
description:
|
|
27
18
|
'Create beautiful forms with TextInput, TextArea, Checkbox, Toggle, Radio, Range, Select and more!',
|
|
28
|
-
icon:
|
|
19
|
+
icon: 'heroicons-outline/pencil-alt',
|
|
29
20
|
},
|
|
30
21
|
{
|
|
31
22
|
name: 'Keep Tabs on Delightful',
|
|
32
23
|
description:
|
|
33
24
|
'The TabsManager component lets you stay in control and create the perfect, custom tabs layout.',
|
|
34
|
-
icon:
|
|
25
|
+
icon: 'ph/tabs-bold',
|
|
35
26
|
},
|
|
36
27
|
{
|
|
37
28
|
name: 'Lay It All Out',
|
|
38
29
|
description:
|
|
39
30
|
'Use the ButtonGroup, InputGroup, Drawer, Flex, Footer, Stack and more to create the perfect layout.',
|
|
40
|
-
icon:
|
|
31
|
+
icon: 'heroicons-outline/template',
|
|
41
32
|
},
|
|
42
33
|
{
|
|
43
34
|
name: 'Think Outside the Box',
|
|
44
35
|
description:
|
|
45
36
|
'Build with all kinds of shapes using Mask. Your site can be more than a grid of rectangles.',
|
|
46
|
-
icon:
|
|
37
|
+
icon: 'heroicons-outline/star',
|
|
47
38
|
},
|
|
48
39
|
{
|
|
49
40
|
name: 'Interactive Makes Interesting',
|
|
50
41
|
description:
|
|
51
42
|
'Create Dropdowns, Modals, Tooltips, and Tabs, all without writing a single line of JavaScript.',
|
|
52
|
-
icon:
|
|
43
|
+
icon: 'heroicons-outline/collection',
|
|
53
44
|
},
|
|
54
45
|
{
|
|
55
46
|
name: 'What\s on the Menu',
|
|
56
47
|
description:
|
|
57
48
|
'DaisyUI comes with gorgeous menu styles. They cleanly integrate with router links.',
|
|
58
|
-
icon:
|
|
49
|
+
icon: 'heroicons-outline/heart',
|
|
59
50
|
},
|
|
60
51
|
]
|
|
61
52
|
</script>
|
|
@@ -79,7 +70,7 @@ const features = [
|
|
|
79
70
|
>
|
|
80
71
|
<div v-for="feature in features" :key="feature.name">
|
|
81
72
|
<Flex items-center justify-center class="w-12 h-12 rounded-md bg-base-100/20">
|
|
82
|
-
<
|
|
73
|
+
<Icon :name="feature.icon" class="w-6 h-6" aria-hidden="true" />
|
|
83
74
|
</Flex>
|
|
84
75
|
<div class="mt-6">
|
|
85
76
|
<Text is="h3" block lg medium>
|
|
@@ -5,15 +5,6 @@ import {
|
|
|
5
5
|
PopoverGroup,
|
|
6
6
|
PopoverPanel,
|
|
7
7
|
} from '@headlessui/vue'
|
|
8
|
-
import {
|
|
9
|
-
AnnotationIcon,
|
|
10
|
-
ChatAlt2Icon,
|
|
11
|
-
InboxIcon,
|
|
12
|
-
MenuIcon,
|
|
13
|
-
QuestionMarkCircleIcon,
|
|
14
|
-
XIcon,
|
|
15
|
-
} from '@heroicons/vue/outline'
|
|
16
|
-
import { ChevronDownIcon } from '@heroicons/vue/solid'
|
|
17
8
|
|
|
18
9
|
const user = useState('user')
|
|
19
10
|
|
|
@@ -23,25 +14,25 @@ const links = [
|
|
|
23
14
|
description:
|
|
24
15
|
'Get a better understanding of where your traffic is coming from.',
|
|
25
16
|
href: '#',
|
|
26
|
-
icon:
|
|
17
|
+
icon: 'heroicons-outline/inbox',
|
|
27
18
|
},
|
|
28
19
|
{
|
|
29
20
|
name: 'Messaging',
|
|
30
21
|
description: 'Speak directly to your customers in a more meaningful way.',
|
|
31
22
|
href: '#',
|
|
32
|
-
icon:
|
|
23
|
+
icon: 'heroicons-outline/annotation',
|
|
33
24
|
},
|
|
34
25
|
{
|
|
35
26
|
name: 'Live Chat',
|
|
36
27
|
description: 'Your customers\' data will be safe and secure.',
|
|
37
28
|
href: '#',
|
|
38
|
-
icon:
|
|
29
|
+
icon: 'heroicons-outline/chat-alt-2',
|
|
39
30
|
},
|
|
40
31
|
{
|
|
41
32
|
name: 'Knowledge Base',
|
|
42
33
|
description: 'Connect with third-party tools that you\'re already using.',
|
|
43
34
|
href: '#',
|
|
44
|
-
icon:
|
|
35
|
+
icon: 'heroicons-outline/question-mark-circle',
|
|
45
36
|
},
|
|
46
37
|
]
|
|
47
38
|
</script>
|
|
@@ -5,9 +5,6 @@ import {
|
|
|
5
5
|
TransitionChild,
|
|
6
6
|
TransitionRoot,
|
|
7
7
|
} from '@headlessui/vue'
|
|
8
|
-
import {
|
|
9
|
-
XIcon,
|
|
10
|
-
} from '@heroicons/vue/outline'
|
|
11
8
|
|
|
12
9
|
defineProps(['navigation', 'show'])
|
|
13
10
|
defineEmits(['update:show'])
|
|
@@ -53,7 +50,7 @@ defineEmits(['update:show'])
|
|
|
53
50
|
@click="$emit('update:show', false)"
|
|
54
51
|
>
|
|
55
52
|
<span class="sr-only">Close sidebar</span>
|
|
56
|
-
<
|
|
53
|
+
<Icon name="heroicons/x-mark" class="w-6 h-6 text-base-content" aria-hidden="true" />
|
|
57
54
|
</button>
|
|
58
55
|
</div>
|
|
59
56
|
</TransitionChild>
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import FileTextIcon from '~icons/feather/file-text'
|
|
3
|
-
|
|
4
2
|
interface Link {
|
|
5
3
|
label: string
|
|
6
4
|
to: string
|
|
@@ -26,7 +24,7 @@ defineProps<{
|
|
|
26
24
|
>
|
|
27
25
|
<NuxtLink :to="link.to" exact-active-class="active">
|
|
28
26
|
{{ link.label }}
|
|
29
|
-
<
|
|
27
|
+
<Icon v-if="link.pendingDocs" name="feather/file-text" class="ml-2" />
|
|
30
28
|
</NuxtLink>
|
|
31
29
|
</MenuItem>
|
|
32
30
|
</Menu>
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
import { onClickOutside } from '@vueuse/core'
|
|
3
3
|
import { defaultThemes } from './theme-utils'
|
|
4
4
|
import { usePopper } from '~~/composables/use-popper'
|
|
5
|
-
import SunIcon from '~icons/feather/sun'
|
|
6
5
|
|
|
7
6
|
const { theme } = useTheme()
|
|
8
7
|
|
|
@@ -20,7 +19,7 @@ onClickOutside(container, () => popper.hide())
|
|
|
20
19
|
<template>
|
|
21
20
|
<div ref="container">
|
|
22
21
|
<Button ref="theButton" primary sm class="md:btn-ghost" @click="popper.toggle">
|
|
23
|
-
<
|
|
22
|
+
<Icon name="feather/sun" class="text-base" />
|
|
24
23
|
</Button>
|
|
25
24
|
|
|
26
25
|
<div ref="thePopup">
|
package/index.ts
CHANGED
|
@@ -1,96 +1,96 @@
|
|
|
1
|
-
export { default as
|
|
2
|
-
export { default as
|
|
3
|
-
export { default as
|
|
4
|
-
export { default as
|
|
5
|
-
export { default as
|
|
6
|
-
export { default as
|
|
7
|
-
export { default as
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as
|
|
13
|
-
export { default as
|
|
14
|
-
export { default as
|
|
15
|
-
export { default as
|
|
16
|
-
export { default as
|
|
17
|
-
// export { default as
|
|
18
|
-
export { default as
|
|
19
|
-
export { default as
|
|
20
|
-
export { default as
|
|
21
|
-
export { default as
|
|
22
|
-
export { default as
|
|
23
|
-
export { default as
|
|
24
|
-
export { default as
|
|
25
|
-
export { default as
|
|
26
|
-
export { default as
|
|
27
|
-
export { default as
|
|
28
|
-
export { default as
|
|
29
|
-
export { default as
|
|
30
|
-
export { default as
|
|
31
|
-
export { default as
|
|
32
|
-
export { default as
|
|
33
|
-
export { default as
|
|
34
|
-
export { default as
|
|
35
|
-
export { default as
|
|
36
|
-
export { default as
|
|
37
|
-
export { default as
|
|
38
|
-
export { default as
|
|
39
|
-
export { default as
|
|
40
|
-
export { default as
|
|
41
|
-
export { default as
|
|
42
|
-
export { default as
|
|
43
|
-
export { default as
|
|
44
|
-
export { default as
|
|
45
|
-
export { default as
|
|
46
|
-
export { default as
|
|
47
|
-
export { default as
|
|
48
|
-
export { default as
|
|
49
|
-
export { default as
|
|
50
|
-
export { default as
|
|
51
|
-
export { default as
|
|
52
|
-
export { default as
|
|
53
|
-
export { default as
|
|
54
|
-
export { default as
|
|
55
|
-
export { default as
|
|
56
|
-
export { default as
|
|
57
|
-
export { default as
|
|
58
|
-
export { default as
|
|
59
|
-
export { default as
|
|
60
|
-
export { default as
|
|
61
|
-
export { default as
|
|
62
|
-
export { default as
|
|
63
|
-
export { default as
|
|
64
|
-
export { default as
|
|
65
|
-
export { default as
|
|
66
|
-
export { default as
|
|
67
|
-
export { default as
|
|
68
|
-
export { default as
|
|
69
|
-
export { default as
|
|
70
|
-
export { default as
|
|
71
|
-
export { default as
|
|
72
|
-
export { default as
|
|
73
|
-
export { default as
|
|
74
|
-
export { default as
|
|
75
|
-
export { default as
|
|
76
|
-
export { default as
|
|
77
|
-
export { default as
|
|
78
|
-
export { default as
|
|
79
|
-
export { default as
|
|
80
|
-
export { default as
|
|
81
|
-
export { default as
|
|
82
|
-
export { default as
|
|
83
|
-
export { default as
|
|
84
|
-
export { default as
|
|
85
|
-
export { default as
|
|
86
|
-
export { default as
|
|
87
|
-
export { default as
|
|
88
|
-
export { default as
|
|
89
|
-
export { default as
|
|
90
|
-
export { default as
|
|
91
|
-
export { default as
|
|
92
|
-
export { default as
|
|
93
|
-
export { default as
|
|
94
|
-
export { default as
|
|
95
|
-
export { default as
|
|
96
|
-
export { default as
|
|
1
|
+
export { default as DaisyAlert } from './components/Alert.vue'
|
|
2
|
+
export { default as DaisyArtboard } from './components/Artboard.vue'
|
|
3
|
+
export { default as DaisyAvatar } from './components/Avatar.vue'
|
|
4
|
+
export { default as DaisyAvatarGroup } from './components/AvatarGroup.vue'
|
|
5
|
+
export { default as DaisyBadge } from './components/Badge.vue'
|
|
6
|
+
export { default as DaisyBottomNav } from './components/BottomNav.vue'
|
|
7
|
+
export { default as DaisyBreadcrumbs } from './components/Breadcrumbs.vue'
|
|
8
|
+
export { default as DaisyButton } from './components/Button.vue'
|
|
9
|
+
export { default as DaisyButtonGroup } from './components/ButtonGroup.vue'
|
|
10
|
+
export { default as DaisyCard } from './components/Card.vue'
|
|
11
|
+
export { default as DaisyCardActions } from './components/CardActions.vue'
|
|
12
|
+
export { default as DaisyCardBody } from './components/CardBody.vue'
|
|
13
|
+
export { default as DaisyCardTitle } from './components/CardTitle.vue'
|
|
14
|
+
export { default as DaisyCarousel } from './components/Carousel.vue'
|
|
15
|
+
export { default as DaisyCarouselItem } from './components/CarouselItem.vue'
|
|
16
|
+
export { default as DaisyCheckbox } from './components/Checkbox.vue'
|
|
17
|
+
// export { default as DaisyCode } from './components/Code.vue'
|
|
18
|
+
export { default as DaisyCodePreview } from './components/CodePreview.vue'
|
|
19
|
+
export { default as DaisyCodeWrapper } from './components/CodeWrapper.vue'
|
|
20
|
+
export { default as DaisyCollapse } from './components/Collapse.vue'
|
|
21
|
+
export { default as DaisyCollapseContent } from './components/CollapseContent.vue'
|
|
22
|
+
export { default as DaisyCollapseTitle } from './components/CollapseTitle.vue'
|
|
23
|
+
export { default as DaisyCountdown } from './components/Countdown.vue'
|
|
24
|
+
export { default as DaisyCountdownTimers } from './components/CountdownTimers.vue'
|
|
25
|
+
export { default as DaisyCounter } from './components/Counter.vue'
|
|
26
|
+
export { default as DaisyCrumb } from './components/Crumb.vue'
|
|
27
|
+
export { default as DaisyDemoElement } from './components/DemoElement.vue'
|
|
28
|
+
export { default as DaisyDemoExample } from './components/DemoExample.vue'
|
|
29
|
+
export { default as DaisyDivider } from './components/Divider.vue'
|
|
30
|
+
export { default as DaisyDrawer } from './components/Drawer.vue'
|
|
31
|
+
export { default as DaisyDrawerLayout } from './components/DrawerLayout.vue'
|
|
32
|
+
export { default as DaisyDrawerLayoutContent } from './components/DrawerLayoutContent.vue'
|
|
33
|
+
export { default as DaisyDropdown } from './components/Dropdown.vue'
|
|
34
|
+
export { default as DaisyDropdownContent } from './components/DropdownContent.vue'
|
|
35
|
+
export { default as DaisyFlex } from './components/Flex.vue'
|
|
36
|
+
export { default as DaisyFlexItem } from './components/FlexItem.vue'
|
|
37
|
+
export { default as DaisyFooter } from './components/Footer.vue'
|
|
38
|
+
export { default as DaisyFooterTitle } from './components/FooterTitle.vue'
|
|
39
|
+
export { default as DaisyFormControl } from './components/FormControl.vue'
|
|
40
|
+
export { default as DaisyHero } from './components/Hero.vue'
|
|
41
|
+
export { default as DaisyHeroContent } from './components/HeroContent.vue'
|
|
42
|
+
export { default as DaisyHeroOverlay } from './components/HeroOverlay.vue'
|
|
43
|
+
export { default as DaisyIndicator } from './components/Indicator.vue'
|
|
44
|
+
export { default as DaisyIndicatorItem } from './components/IndicatorItem.vue'
|
|
45
|
+
export { default as DaisyInputGroup } from './components/InputGroup.vue'
|
|
46
|
+
export { default as DaisyKbd } from './components/Kbd.vue'
|
|
47
|
+
export { default as DaisyLabel } from './components/Label.vue'
|
|
48
|
+
export { default as DaisyLabelText } from './components/LabelText.vue'
|
|
49
|
+
export { default as DaisyLabelTextAlt } from './components/LabelTextAlt.vue'
|
|
50
|
+
export { default as DaisyLink } from './components/Link.vue'
|
|
51
|
+
export { default as DaisyMask } from './components/Mask.vue'
|
|
52
|
+
export { default as DaisyMenu } from './components/Menu.vue'
|
|
53
|
+
export { default as DaisyMenuItem } from './components/MenuItem.vue'
|
|
54
|
+
export { default as DaisyMenuTitle } from './components/MenuTitle.vue'
|
|
55
|
+
export { default as DaisyMockupCode } from './components/MockupCode.vue'
|
|
56
|
+
export { default as DaisyModal } from './components/Modal.vue'
|
|
57
|
+
export { default as DaisyModalAction } from './components/ModalAction.vue'
|
|
58
|
+
export { default as DaisyModalBox } from './components/ModalBox.vue'
|
|
59
|
+
export { default as DaisyModalWrapper } from './components/ModalWrapper.vue'
|
|
60
|
+
export { default as DaisyNavbar } from './components/Navbar.vue'
|
|
61
|
+
export { default as DaisyNavbarCenter } from './components/NavbarCenter.vue'
|
|
62
|
+
export { default as DaisyNavbarEnd } from './components/NavbarEnd.vue'
|
|
63
|
+
export { default as DaisyNavbarStart } from './components/NavbarStart.vue'
|
|
64
|
+
export { default as DaisyNavButton } from './components/NavButton.vue'
|
|
65
|
+
export { default as DaisyPhone } from './components/Phone.vue'
|
|
66
|
+
export { default as DaisyProgress } from './components/Progress.vue'
|
|
67
|
+
export { default as DaisyProse } from './components/Prose.vue'
|
|
68
|
+
export { default as DaisyRadialProgress } from './components/RadialProgress.vue'
|
|
69
|
+
export { default as DaisyRadio } from './components/Radio.vue'
|
|
70
|
+
export { default as DaisyRadioGroup } from './components/RadioGroup.vue'
|
|
71
|
+
export { default as DaisyRange } from './components/Range.vue'
|
|
72
|
+
export { default as DaisyRangeMeasure } from './components/RangeMeasure.vue'
|
|
73
|
+
export { default as DaisyRating } from './components/Rating.vue'
|
|
74
|
+
export { default as DaisySelect } from './components/Select.vue'
|
|
75
|
+
export { default as DaisyStack } from './components/Stack.vue'
|
|
76
|
+
export { default as DaisyStat } from './components/Stat.vue'
|
|
77
|
+
export { default as DaisyStatActions } from './components/StatActions.vue'
|
|
78
|
+
export { default as DaisyStatDesc } from './components/StatDesc.vue'
|
|
79
|
+
export { default as DaisyStatFigure } from './components/StatFigure.vue'
|
|
80
|
+
export { default as DaisyStats } from './components/Stats.vue'
|
|
81
|
+
export { default as DaisyStatTitle } from './components/StatTitle.vue'
|
|
82
|
+
export { default as DaisyStatValue } from './components/StatValue.vue'
|
|
83
|
+
export { default as DaisyStep } from './components/Step.vue'
|
|
84
|
+
export { default as DaisySteps } from './components/Steps.vue'
|
|
85
|
+
export { default as DaisySwap } from './components/Swap.vue'
|
|
86
|
+
export { default as DaisyTab } from './components/Tab.vue'
|
|
87
|
+
export { default as DaisyTabContent } from './components/TabContent.vue'
|
|
88
|
+
export { default as DaisyTabs } from './components/Tabs.vue'
|
|
89
|
+
export { default as DaisyTabsManager } from './components/TabsManager.vue'
|
|
90
|
+
export { default as DaisyText } from './components/Text.vue'
|
|
91
|
+
export { default as DaisyTextArea } from './components/TextArea.vue'
|
|
92
|
+
export { default as DaisyTextInput } from './components/TextInput.vue'
|
|
93
|
+
export { default as DaisyToast } from './components/Toast.vue'
|
|
94
|
+
export { default as DaisyToggle } from './components/Toggle.vue'
|
|
95
|
+
export { default as DaisyTooltip } from './components/Tooltip.vue'
|
|
96
|
+
export { default as DaisyWindow } from './components/Window.vue'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "daisy-ui-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "nuxi build",
|
|
@@ -19,39 +19,42 @@
|
|
|
19
19
|
"nuxt.js"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@vueuse/core": "^9.
|
|
23
|
-
"prismjs": "^1.
|
|
22
|
+
"@vueuse/core": "^9.5.0",
|
|
23
|
+
"prismjs": "^1.29.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"daisyui": "^2.13.5"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@antfu/eslint-config": "^0.
|
|
30
|
-
"@headlessui/vue": "^1.
|
|
31
|
-
"@heroicons/vue": "^
|
|
32
|
-
"@iconify/json": "^2.1.
|
|
33
|
-
"@
|
|
34
|
-
"@
|
|
35
|
-
"@
|
|
29
|
+
"@antfu/eslint-config": "^0.31.0",
|
|
30
|
+
"@headlessui/vue": "^1.7.4",
|
|
31
|
+
"@heroicons/vue": "^2.0.13",
|
|
32
|
+
"@iconify/json": "^2.1.140",
|
|
33
|
+
"@nuxt/kit": "npm:@nuxt/kit-edge@^3.0.1-rc.0-27810184.d991a55",
|
|
34
|
+
"@nuxtjs/color-mode": "^3.1.8",
|
|
35
|
+
"@nuxtjs/tailwindcss": "^6.1.3",
|
|
36
|
+
"@pinia/nuxt": "^0.4.4",
|
|
37
|
+
"@popperjs/core": "^2.11.6",
|
|
36
38
|
"@rovit/popper": "^3.9.0",
|
|
37
|
-
"@tailwindcss/aspect-ratio": "^0.4.
|
|
38
|
-
"@tailwindcss/forms": "^0.5.
|
|
39
|
-
"@tailwindcss/line-clamp": "^0.4.
|
|
40
|
-
"@tailwindcss/typography": "^0.5.
|
|
41
|
-
"@vueuse/nuxt": "^9.
|
|
42
|
-
"autoprefixer": "^10.4.
|
|
43
|
-
"cookie": "^0.
|
|
44
|
-
"daisyui": "^2.
|
|
45
|
-
"eslint": "^8.
|
|
46
|
-
"feathers-pinia": "^0.
|
|
39
|
+
"@tailwindcss/aspect-ratio": "^0.4.2",
|
|
40
|
+
"@tailwindcss/forms": "^0.5.3",
|
|
41
|
+
"@tailwindcss/line-clamp": "^0.4.2",
|
|
42
|
+
"@tailwindcss/typography": "^0.5.8",
|
|
43
|
+
"@vueuse/nuxt": "^9.5.0",
|
|
44
|
+
"autoprefixer": "^10.4.13",
|
|
45
|
+
"cookie": "^0.5.0",
|
|
46
|
+
"daisyui": "^2.41.0",
|
|
47
|
+
"eslint": "^8.27.0",
|
|
48
|
+
"feathers-pinia": "^0.36.5",
|
|
47
49
|
"mobile-detect": "^1.4.5",
|
|
48
|
-
"nuxt": "^3.0.0
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
50
|
+
"nuxt": "^3.0.0",
|
|
51
|
+
"nuxt-icon": "^0.1.7",
|
|
52
|
+
"ohmyfetch": "^0.4.21",
|
|
53
|
+
"pinia": "^2.0.24",
|
|
54
|
+
"postcss": "^8.4.19",
|
|
55
|
+
"tailwindcss": "^3.2.4",
|
|
56
|
+
"typescript": "^4.9.3",
|
|
57
|
+
"unplugin-icons": "^0.14.13",
|
|
58
|
+
"vue": "^3.2.45"
|
|
56
59
|
}
|
|
57
60
|
}
|