Skip to content

Commit 8dd586e

Browse files
committed
chore: wip
1 parent 6f6df7f commit 8dd586e

31 files changed

+5287
-570
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.github/art/logo-dark.svg

Lines changed: 11 additions & 0 deletions
Loading

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
node_modules
22
.DS_Store
3-
*/dist/cli/*
3+
!*/dist/cli/*
44
*/dist/components/*
55
*/dist/elements/*
66
dist-ssr

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.4.0
1+
18.8.0

.stacks/auto-imports.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by Stacks via 'unplugin-auto-import'
1+
// Generated by 'unplugin-auto-import'
22
export {}
33
declare global {
44
const EffectScope: typeof import('vue')['EffectScope']
@@ -24,6 +24,7 @@ declare global {
2424
const customRef: typeof import('vue')['customRef']
2525
const debouncedRef: typeof import('@vueuse/core')['debouncedRef']
2626
const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch']
27+
const defaultLanguage: typeof import('../config/library')['defaultLanguage']
2728
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
2829
const defineComponent: typeof import('vue')['defineComponent']
2930
const docs: typeof import('../config/docs')['default']
@@ -174,6 +175,7 @@ declare global {
174175
const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
175176
const useGamepad: typeof import('@vueuse/core')['useGamepad']
176177
const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
178+
const useI18n: typeof import('vue-i18n')['useI18n']
177179
const useIdle: typeof import('@vueuse/core')['useIdle']
178180
const useImage: typeof import('@vueuse/core')['useImage']
179181
const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll']
@@ -303,6 +305,7 @@ declare module '@vue/runtime-core' {
303305
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
304306
readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
305307
readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
308+
readonly defaultLanguage: UnwrapRef<typeof import('../config/library')['defaultLanguage']>
306309
readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
307310
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
308311
readonly docs: UnwrapRef<typeof import('../config/docs')['default']>
@@ -453,6 +456,7 @@ declare module '@vue/runtime-core' {
453456
readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
454457
readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
455458
readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
459+
readonly useI18n: UnwrapRef<typeof import('vue-i18n')['useI18n']>
456460
readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
457461
readonly useImage: UnwrapRef<typeof import('@vueuse/core')['useImage']>
458462
readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>

.stacks/components.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by Stacks via unplugin-vue-components
1+
// generated by unplugin-vue-components
22
// We suggest you to commit this file into source control
33
// Read more: https://github.com/vuejs/core/pull/3399
44
import '@vue/runtime-core'
@@ -7,8 +7,9 @@ export {}
77

88
declare module '@vue/runtime-core' {
99
export interface GlobalComponents {
10-
Demo: typeof import('./../components/Demo.vue')['default']
1110
Counter: typeof import('./../components/Counter.vue')['default']
11+
Demo: typeof import('./../components/Demo.vue')['default']
1212
HelloWorld: typeof import('./../components/HelloWorld.vue')['default']
13+
Logo: typeof import('./../components/Logo.vue')['default']
1314
}
1415
}

0 commit comments

Comments
 (0)