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

Commit 60deb53

Browse files
Merge pull request #120 from chakra-ui/fix/docs
fix/docs
2 parents 6d29c97 + cbb800c commit 60deb53

File tree

88 files changed

+10905
-6614
lines changed

Some content is hidden

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

88 files changed

+10905
-6614
lines changed

.eslintrc.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ extends:
77
- plugin:prettier/recommended
88
- plugin:vue/essential
99
- plugin:vue/vue3-essential
10-
- '@vue/typescript'
10+
- "@vue/typescript"
1111
parser: vue-eslint-parser
1212
parserOptions:
13-
parser: '@typescript-eslint/parser'
13+
parser: "@typescript-eslint/parser"
1414
ecmaVersion: 2020
1515
sourceType: module
1616
plugins:
17-
- '@typescript-eslint'
17+
- "@typescript-eslint"
1818
rules:
19-
'@typescript-eslint/member-delimiter-style':
19+
"@typescript-eslint/member-delimiter-style":
2020
- error
2121
- multiline:
2222
delimiter: none
2323
requireLast: false
2424
singleline:
2525
delimiter: comma
2626
requireLast: false
27-
vue/no-multiple-template-root: 'off'
27+
vue/no-multiple-template-root: "off"

.size-limit.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"path": "packages/core/dist/chakra-ui-vue-next.cjs.prod.js",
4-
"limit": "85 KB",
4+
"limit": "86 KB",
55
"ignore": [
66
"vue",
77
"@emotion/css"

babel.config.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
const BABEL_ENV = process.env.BABEL_ENV
2-
const isCommonJS = BABEL_ENV !== undefined && BABEL_ENV === 'cjs'
3-
const isESM = BABEL_ENV !== undefined && BABEL_ENV === 'esm'
2+
const isCommonJS = BABEL_ENV !== undefined && BABEL_ENV === "cjs"
3+
const isESM = BABEL_ENV !== undefined && BABEL_ENV === "esm"
44

5-
const __TEST__ = process.env.NODE_ENV === 'test'
5+
const __TEST__ = process.env.NODE_ENV === "test"
66

77
const baseConfig = function (api) {
88
api.cache(true)
99

1010
const presets = [
1111
[
12-
'@babel/env',
12+
"@babel/env",
1313
{
1414
loose: true,
15-
modules: isCommonJS ? 'commonjs' : false,
15+
modules: isCommonJS ? "commonjs" : false,
1616
targets: {
1717
esmodules: isESM ? true : undefined,
1818
},
1919
},
2020
],
21-
'@babel/preset-typescript',
21+
"@babel/preset-typescript",
2222
]
23-
const plugins = ['@vue/babel-plugin-jsx']
23+
const plugins = ["@vue/babel-plugin-jsx"]
2424

2525
return {
2626
presets,
@@ -33,13 +33,13 @@ const testConfig = {
3333
test: {
3434
presets: [
3535
[
36-
'@babel/preset-env',
36+
"@babel/preset-env",
3737
{
38-
targets: { node: 'current' },
38+
targets: { node: "current" },
3939
},
4040
],
4141
],
42-
plugins: ['@vue/babel-plugin-jsx'],
42+
plugins: ["@vue/babel-plugin-jsx"],
4343
},
4444
},
4545
}

0 commit comments

Comments
 (0)