Skip to content

Commit ee4f96e

Browse files
committed
chore: components changes
1 parent d7f972c commit ee4f96e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+51
-159
lines changed

storage/framework/core/components/popover/components.d.ts

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -7,36 +7,9 @@ export {}
77
/* prettier-ignore */
88
declare module 'vue' {
99
export interface GlobalComponents {
10-
'Carbon:cafe': typeof import('~icons/carbon/cafe')['default']
11-
'Carbon:logoTwitter': typeof import('~icons/carbon/logo-twitter')['default']
12-
CheckIcon: typeof import('./src/components/icons/CheckIcon.vue')['default']
13-
CloseIcon: typeof import('./src/components/icons/CloseIcon.vue')['default']
14-
CopyIcon: typeof import('./src/components/icons/CopyIcon.vue')['default']
15-
ErrorIcon: typeof import('./src/components/icons/ErrorIcon.vue')['default']
16-
Example: typeof import('./src/components/Example.vue')['default']
17-
Expand: typeof import('./src/components/Expand.vue')['default']
18-
Footer: typeof import('./src/components/Footer.vue')['default']
19-
HeadlessToast: typeof import('./src/components/HeadlessToast.vue')['default']
20-
HeadlessToastWithProps: typeof import('./src/components/HeadlessToastWithProps.vue')['default']
21-
Hero: typeof import('./src/components/Hero.vue')['default']
22-
InfoIcon: typeof import('./src/components/icons/InfoIcon.vue')['default']
23-
Installation: typeof import('./src/components/Installation.vue')['default']
24-
Loader: typeof import('./src/components/icons/Loader.vue')['default']
25-
'Mdi:heart': typeof import('~icons/mdi/heart')['default']
26-
Others: typeof import('./src/components/Others.vue')['default']
27-
Position: typeof import('./src/components/Position.vue')['default']
2810
RouterLink: typeof import('vue-router')['RouterLink']
2911
RouterView: typeof import('vue-router')['RouterView']
3012
Starport: typeof import('vue-starport')['Starport']
3113
StarportCarrier: typeof import('vue-starport')['StarportCarrier']
32-
Styles: typeof import('./src/components/Styles.vue')['default']
33-
Styling: typeof import('./src/components/Styling.vue')['default']
34-
SuccessIcon: typeof import('./src/components/icons/SuccessIcon.vue')['default']
35-
Theming: typeof import('./src/components/Theming.vue')['default']
36-
Toast: typeof import('./src/components/Toast.vue')['default']
37-
Toaster: typeof import('./src/components/Toaster.vue')['default']
38-
Types: typeof import('./src/components/Types.vue')['default']
39-
Usage: typeof import('./src/components/Usage.vue')['default']
40-
WarningIcon: typeof import('./src/components/icons/WarningIcon.vue')['default']
4114
}
4215
}

storage/framework/core/components/popover/src/App.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<script lang="ts" setup>
2-
import Footer from './components/Footer.vue'
3-
import Hero from './components/Hero.vue'
4-
import Installation from './components/Installation.vue'
5-
import Styling from './components/Styling.vue'
2+
import Footer from './Footer.vue'
3+
import Hero from './Hero.vue'
4+
import Installation from './Installation.vue'
5+
import Styling from './Styling.vue'
66
import { useSEOHeader } from './composables/useSEOHeader'
77
88
useSEOHeader()

storage/framework/core/components/popover/src/components/Hero.vue renamed to storage/framework/core/components/popover/src/Hero.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts" setup>
2-
import { Popover, PopoverButton, PopoverPanel } from '../components'
2+
import { Popover, PopoverButton, PopoverPanel } from '@headlessui/vue'
33
44
const solutions = [
55
{
@@ -294,3 +294,4 @@ const solutions = [
294294
}
295295
}
296296
</style>
297+
..

storage/framework/core/components/popover/src/components/Installation.vue renamed to storage/framework/core/components/popover/src/Installation.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts" setup>
22
import { ref } from 'vue'
3-
import { useCopyCode } from '../composables/useCopyCode'
3+
import { useCopyCode } from './composables/useCopyCode'
44
55
const code = `bun install @stacksjs/popover`
66

storage/framework/core/components/popover/src/components/Styling.vue renamed to storage/framework/core/components/popover/src/Styling.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts" setup>
22
import { ref } from 'vue'
3-
import { useCopyCode } from '../composables/useCopyCode'
3+
import { useCopyCode } from './composables/useCopyCode'
44
55
const showCheckIcon = ref(false)
66

storage/framework/core/components/popover/src/components/Usage.vue renamed to storage/framework/core/components/popover/src/Usage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts" setup>
22
import { ref } from 'vue'
3-
import { useCopyCode } from '../composables/useCopyCode'
3+
import { useCopyCode } from './composables/useCopyCode'
44
55
const code = `<!-- App.vue -->
66
<script lang="ts" setup>

storage/framework/core/components/popover/src/components/index.ts

Lines changed: 0 additions & 3 deletions
This file was deleted.

storage/framework/core/components/popover/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Plugin } from 'vue'
2-
import { Popover, PopoverButton, PopoverPanel } from './components'
2+
import { Popover, PopoverButton, PopoverPanel } from '@headlessui/vue'
33

44
const plugin: Plugin = {
55
install(app) {

storage/framework/core/components/radio-group/components.d.ts

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -7,36 +7,9 @@ export {}
77
/* prettier-ignore */
88
declare module 'vue' {
99
export interface GlobalComponents {
10-
'Carbon:cafe': typeof import('~icons/carbon/cafe')['default']
11-
'Carbon:logoTwitter': typeof import('~icons/carbon/logo-twitter')['default']
12-
CheckIcon: typeof import('./src/components/icons/CheckIcon.vue')['default']
13-
CloseIcon: typeof import('./src/components/icons/CloseIcon.vue')['default']
14-
CopyIcon: typeof import('./src/components/icons/CopyIcon.vue')['default']
15-
ErrorIcon: typeof import('./src/components/icons/ErrorIcon.vue')['default']
16-
Example: typeof import('./src/components/Example.vue')['default']
17-
Expand: typeof import('./src/components/Expand.vue')['default']
18-
Footer: typeof import('./src/components/Footer.vue')['default']
19-
HeadlessToast: typeof import('./src/components/HeadlessToast.vue')['default']
20-
HeadlessToastWithProps: typeof import('./src/components/HeadlessToastWithProps.vue')['default']
21-
Hero: typeof import('./src/components/Hero.vue')['default']
22-
InfoIcon: typeof import('./src/components/icons/InfoIcon.vue')['default']
23-
Installation: typeof import('./src/components/Installation.vue')['default']
24-
Loader: typeof import('./src/components/icons/Loader.vue')['default']
25-
'Mdi:heart': typeof import('~icons/mdi/heart')['default']
26-
Others: typeof import('./src/components/Others.vue')['default']
27-
Position: typeof import('./src/components/Position.vue')['default']
2810
RouterLink: typeof import('vue-router')['RouterLink']
2911
RouterView: typeof import('vue-router')['RouterView']
3012
Starport: typeof import('vue-starport')['Starport']
3113
StarportCarrier: typeof import('vue-starport')['StarportCarrier']
32-
Styles: typeof import('./src/components/Styles.vue')['default']
33-
Styling: typeof import('./src/components/Styling.vue')['default']
34-
SuccessIcon: typeof import('./src/components/icons/SuccessIcon.vue')['default']
35-
Theming: typeof import('./src/components/Theming.vue')['default']
36-
Toast: typeof import('./src/components/Toast.vue')['default']
37-
Toaster: typeof import('./src/components/Toaster.vue')['default']
38-
Types: typeof import('./src/components/Types.vue')['default']
39-
Usage: typeof import('./src/components/Usage.vue')['default']
40-
WarningIcon: typeof import('./src/components/icons/WarningIcon.vue')['default']
4114
}
4215
}

0 commit comments

Comments
 (0)