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

Commit 5294676

Browse files
Merge branch 'develop' into creset-tests
2 parents 7684c34 + 2d3f1d3 commit 5294676

File tree

22 files changed

+61
-8
lines changed

22 files changed

+61
-8
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ jobs:
5757
- run: yarn build
5858
- run: yarn publish-ci
5959
env:
60-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
60+
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6161

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ packages/*/node_modules
3434
lerna-debug.log
3535
.now
3636
config/.env
37-
packages/nuxt-chakra/.github
37+
packages/chakra-ui-nuxt/.github
3838
packages/chakra-ui-docs/static/sw.js

packages/chakra-ui-core/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Change Log
22

3+
## 0.6.5
4+
5+
### Patch Changes
6+
7+
- fix style props for @chakra-ui/vue
8+
9+
## 0.6.4
10+
11+
### Patch Changes
12+
13+
- improvements to style props
14+
15+
## 0.6.3
16+
17+
### Patch Changes
18+
19+
- fix: includes missing style props for border-radius and flex-grow style declarations"
20+
321
## 0.6.2
422

523
### Patch Changes

packages/chakra-ui-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/vue",
3-
"version": "0.6.2",
3+
"version": "0.6.5",
44
"description": "Build Accessible and Responsive Vue.js websites and applications with speed ⚡️",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",

packages/chakra-ui-core/src/CFlex/CFlex.stories.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,19 @@ storiesOf('UI | Flex', module)
2222
</CFlex>
2323
`
2424
}))
25+
.add('Flex grow', () => ({
26+
components: { CFlex, CBox, CText },
27+
template: `
28+
<CFlex w="600px" align="center">
29+
<CBox flex-grow="2" w="10" mr="3" h="10" bg="blue.100">1</CBox>
30+
<CBox rounded-top="lg" w="10" mr="3" h="10" bg="blue.100">1</CBox>
31+
<CBox rounded-right="lg" w="10" mr="3" h="10" bg="blue.100">2</CBox>
32+
<CBox rounded-bottom="lg" w="10" mr="3" h="10" bg="blue.100">3</CBox>
33+
<CBox rounded-right="lg" w="10" mr="3" h="10" bg="blue.100">4</CBox>
34+
<CBox border-top-right-radius="lg" w="10" mr="3" h="10" bg="blue.100">5</CBox>
35+
<CBox border-top-left-radius="lg" w="10" mr="3" h="10" bg="blue.100">6</CBox>
36+
<CBox border-bottom-right-radius="lg" w="10" mr="3" h="10" bg="blue.100">7</CBox>
37+
<CBox border-bottom-left-radius="lg" w="10" h="10" bg="blue.100">8</CBox>
38+
</CFlex>
39+
`
40+
}))

packages/chakra-ui-core/src/config/props/props.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ const baseProps = {
6363
borderLeft: SNA,
6464
borderRight: SNA,
6565
borderTop: SNA,
66+
borderTopLeftRadius: SNA,
67+
borderTopRightRadius: SNA,
68+
borderBottomRightRadius: SNA,
69+
borderBottomLeftRadius: SNA,
6670
borderBottom: SNA,
6771
shadow: SNA,
6872
backgroundColor: SNA,
@@ -158,7 +162,8 @@ const baseProps = {
158162
opacity: SNA,
159163
letterSpacing: SNA,
160164
flexShrink: SNA,
161-
boxShadow: SNA
165+
boxShadow: SNA,
166+
flexGrow: SNA
162167
}
163168

164169
export default baseProps

packages/nuxt-chakra/CHANGELOG.md renamed to packages/chakra-ui-nuxt/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Change Log
22

3+
## 0.0.13
4+
5+
### Patch Changes
6+
7+
- fix style props for @chakra-ui/vue
8+
- Updated dependencies [undefined]
9+
- @chakra-ui/vue@0.6.5
10+
11+
## 0.0.12
12+
13+
### Patch Changes
14+
15+
- improve component style props
16+
317
## 0.0.10
418

519
### Patch Changes
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)