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

Commit d21efa1

Browse files
Merge branch 'develop' into build/vscode-extensions-update
2 parents b7b34b0 + c1acbdc commit d21efa1

File tree

184 files changed

+8680
-4983
lines changed

Some content is hidden

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

184 files changed

+8680
-4983
lines changed

.codesandbox/ci.json renamed to ._codesandbox/ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
"packages/vue-composables"
3333
],
3434
"sandboxes": ["chakra-ui-vue-v1-jcidb"],
35-
"node": "14"
35+
"node": "16"
3636
}

.changeset/sixty-rockets-sniff.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
"@chakra-ui/vue-anatomy": minor
3+
"@chakra-ui/c-accordion": minor
4+
"@chakra-ui/c-alert": minor
5+
"@chakra-ui/c-breadcrumb": minor
6+
"@chakra-ui/c-button": minor
7+
"@chakra-ui/c-close-button": minor
8+
"@chakra-ui/c-code": minor
9+
"@chakra-ui/c-color-mode": minor
10+
"@chakra-ui/c-flex": minor
11+
"@chakra-ui/c-focus-lock": minor
12+
"@chakra-ui/c-form-control": minor
13+
"@chakra-ui/c-icon": minor
14+
"@chakra-ui/c-input": minor
15+
"@chakra-ui/c-modal": minor
16+
"@chakra-ui/c-motion": minor
17+
"@chakra-ui/c-popper": minor
18+
"@chakra-ui/c-portal": minor
19+
"@chakra-ui/c-reset": minor
20+
"@chakra-ui/c-scroll-lock": minor
21+
"@chakra-ui/c-spinner": minor
22+
"@chakra-ui/c-theme-provider": minor
23+
"@chakra-ui/c-visually-hidden": minor
24+
"@chakra-ui/vue-next": minor
25+
"@chakra-ui/vue-layout": minor
26+
"@chakra-ui/nuxt-next": minor
27+
"@chakra-ui/vue-styled": minor
28+
"@chakra-ui/vue-system": minor
29+
"@chakra-ui/vue-test-utils": minor
30+
"@chakra-ui/vue-theme": minor
31+
"@chakra-ui/vue-theme-tools": minor
32+
"@chakra-ui/vue-utils": minor
33+
"@chakra-ui/vue-a11y": minor
34+
"@chakra-ui/vue-composables": minor
35+
"@chakra-ui/vue-auto-import": minor
36+
"@chakra-ui/vue-docs": minor
37+
---
38+
39+
Created accordion component and migrated to Zag.js

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
allow:
8+
- dependency-name: "@chakra-ui/utils"
9+
- dependency-name: "@chakra-ui/styled-system"
10+
target-branch: "develop"
11+
commit-message:
12+
# Prefix all commit messages with "npm"
13+
prefix: "chakra-ui:core"

.github/workflows/auto-merge.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Auto-merge Dependabot
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
auto-merge:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: ahmadnassri/action-dependabot-auto-merge@v2
12+
with:
13+
target: minor
14+
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
node-version: [14]
20+
node-version: [16]
2121
steps:
2222
- name: Get Yarn cache path
2323
id: yarn-cache
@@ -63,10 +63,10 @@ jobs:
6363
- name: Checkout
6464
uses: actions/checkout@master
6565

66-
- name: Setup Node.js 14.x
66+
- name: Setup Node.js 16.x
6767
uses: actions/setup-node@master
6868
with:
69-
node-version: 14.x
69+
node-version: 16.x
7070

7171
- name: Load Yarn cache
7272
uses: actions/cache@v2

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
# so that Changesets can generate changelogs with the correct commits
2727
fetch-depth: 0
2828

29-
- name: Use Node.js 14.x
29+
- name: Use Node.js 16.x
3030
uses: actions/setup-node@master
3131
with:
32-
node-version: 14
32+
node-version: 16
3333

3434
- name: Load Yarn cache
3535
uses: actions/cache@v2

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,3 +109,4 @@ website/.vite-ssg-temp
109109
# Cypress screenshots generated
110110
cypress/screenshots
111111
# playground/build/components.json
112+
.idea/*
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
to: packages/<%=h.changeCase.paramCase(name)%>/src/index.ts
2+
to: packages/<%=h.changeCase.paramCase(name)%>/src/index.tsx
33
---
44

55
export * from './<%=h.changeCase.paramCase(name)%>'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
to: packages/<%=h.changeCase.paramCase(name)%>/index.ts
2+
to: packages/<%=h.changeCase.paramCase(name)%>/index.tsx
33
---
44

55
export * from './src'

_templates/generator/module/src.ts.ejs.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
to: packages/<%=h.changeCase.paramCase(name)%>/src/index.ts
2+
to: packages/<%=h.changeCase.paramCase(name)%>/src/index.tsx
33
---
44
const <%= h.changeCase.pascalCase(name) %> = () => {
55
return {}

0 commit comments

Comments
 (0)