Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit b840a5e

Browse files
committed
chore: track playground generated files
1 parent 73d993d commit b840a5e

File tree

4 files changed

+78
-1
lines changed

4 files changed

+78
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
node_modules
22
dist
3-
playground/src/.generated/*
3+
# playground/src/.generated/*
44
.vercel
55
yarn-error.log

playground/src/.generated/imports.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import Component_1 from "../components/Home.vue";
2+
import Component_2 from '@chakra-ui/c-alert/examples/base-alert.vue'
3+
import Component_3 from '@chakra-ui/c-box/examples/base-box.vue'
4+
import Component_4 from '@chakra-ui/c-box/examples/box-with-chakra-directive.vue'
5+
import Component_5 from '@chakra-ui/c-button/examples/base-button.vue'
6+
import Component_6 from "../components/Home.vue";
7+
8+
export default {
9+
"../components/Home.vue": Component_6,
10+
"@chakra-ui/c-alert/examples/base-alert.vue": Component_2,
11+
"@chakra-ui/c-box/examples/base-box.vue": Component_3,
12+
"@chakra-ui/c-box/examples/box-with-chakra-directive.vue": Component_4,
13+
"@chakra-ui/c-button/examples/base-button.vue": Component_5
14+
}

playground/src/.generated/resolver.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* Package components resolver only used in development mode */
2+
export default {
3+
'@chakra-ui/c-accordion': '/Users/jonathanbakebwa/Github/chakra-ui-vue-next/packages/c-accordion/src/index.ts',
4+
'@chakra-ui/c-alert': '/Users/jonathanbakebwa/Github/chakra-ui-vue-next/packages/c-alert/src/index.ts',
5+
'@chakra-ui/c-box': '/Users/jonathanbakebwa/Github/chakra-ui-vue-next/packages/c-box/src/index.ts',
6+
'@chakra-ui/c-button': '/Users/jonathanbakebwa/Github/chakra-ui-vue-next/packages/c-button/src/index.ts',
7+
'@chakra-ui/c-theme-provider': '/Users/jonathanbakebwa/Github/chakra-ui-vue-next/packages/c-theme-provider/src/index.ts',
8+
'@chakra-ui/styled-system': '/Users/jonathanbakebwa/Github/chakra-ui-vue-next/packages/styled-system/src/index.ts',
9+
'@chakra-ui/system': '/Users/jonathanbakebwa/Github/chakra-ui-vue-next/packages/system/src/index.ts',
10+
'@chakra-ui/theme': '/Users/jonathanbakebwa/Github/chakra-ui-vue-next/packages/theme/src/index.ts',
11+
'@chakra-ui/theme-tools': '/Users/jonathanbakebwa/Github/chakra-ui-vue-next/packages/theme-tools/src/index.ts',
12+
'@chakra-ui/utils': '/Users/jonathanbakebwa/Github/chakra-ui-vue-next/packages/utils/src/index.ts'
13+
}

playground/src/.generated/routes.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
[
2+
{
3+
"name": "Home",
4+
"path": "/",
5+
"component": "../components/Home.vue"
6+
},
7+
{
8+
"name": "Alert",
9+
"path": "/c-alert",
10+
"children": [
11+
{
12+
"name": "Base alert",
13+
"path": "/c-alert/base-alert",
14+
"component": "@chakra-ui/c-alert/examples/base-alert.vue"
15+
}
16+
]
17+
},
18+
{
19+
"name": "Box",
20+
"path": "/c-box",
21+
"children": [
22+
{
23+
"name": "Base box",
24+
"path": "/c-box/base-box",
25+
"component": "@chakra-ui/c-box/examples/base-box.vue"
26+
},
27+
{
28+
"name": "Box with chakra directive",
29+
"path": "/c-box/box-with-chakra-directive",
30+
"component": "@chakra-ui/c-box/examples/box-with-chakra-directive.vue"
31+
}
32+
]
33+
},
34+
{
35+
"name": "Button",
36+
"path": "/c-button",
37+
"children": [
38+
{
39+
"name": "Base button",
40+
"path": "/c-button/base-button",
41+
"component": "@chakra-ui/c-button/examples/base-button.vue"
42+
}
43+
]
44+
},
45+
{
46+
"name": "NotFound",
47+
"path": "/*",
48+
"component": "../components/Home.vue"
49+
}
50+
]

0 commit comments

Comments
 (0)