Skip to content

Commit 7fb0a38

Browse files
committed
chore(release): v0.0.5
1 parent 94840cd commit 7fb0a38

File tree

7 files changed

+28
-7
lines changed

7 files changed

+28
-7
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
# Changelog
22

33

4+
## v0.0.5
5+
6+
[compare changes](https://github.com/thinkbuff/figma/compare/v0.0.4...v0.0.5)
7+
8+
### 🚀 Features
9+
10+
- **react:** Optimize DOM and styles for `textarea` and `input` components ([94840cd](https://github.com/thinkbuff/figma/commit/94840cd), [f98a41e](https://github.com/thinkbuff/figma/commit/f98a41e))
11+
12+
### 🐛 Fixes
13+
14+
- **storybook:** Fix type error when setting summary value ([40f7c26](https://github.com/thinkbuff/figma/commit/40f7c26))
15+
16+
### 🧹 Chore
17+
18+
- Update dependencies and set packageManager to [email protected] ([42b7567](https://github.com/thinkbuff/figma/commit/42b7567))
19+
20+
### ❤️ Contributors
21+
22+
- Eleven ([@eteplus](http://github.com/eteplus))
23+
424
## v0.0.4
525

626
[compare changes](https://github.com/thinkbuff/figma/compare/v0.0.3...v0.0.4)

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.4",
2+
"version": "0.0.5",
33
"description": "Simplify plugin and widget creation for Figma and FigJam",
44
"private": true,
55
"type": "module",
@@ -8,6 +8,7 @@
88
"lint": "pnpm run -r lint",
99
"lint:fix": "pnpm run -r lint --fix",
1010
"typecheck": "pnpm run -r typecheck",
11+
"build": "pnpm --parallel run -r build",
1112
"release": "changelogen --release --no-commit --no-tag && tsx scripts/update-version.ts",
1213
"postinstall": "pnpm run -r stub",
1314
"prepare": "simple-git-hooks"
@@ -43,4 +44,4 @@
4344
"singleQuote": true,
4445
"jsxSingleQuote": false
4546
}
46-
}
47+
}

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"author": "Eleven <[email protected]>",
44
"license": "MIT",
55
"type": "module",
6-
"version": "0.0.4",
6+
"version": "0.0.5",
77
"description": "A Figma React UI components for creating plugins and widgets",
88
"scripts": {
99
"clean": "rm -rf node_modules && rm -rf dist",

packages/react/src/components/slider/slider.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const meta = {
2929
},
3030
},
3131
value: {
32-
control: 'array',
32+
control: 'object',
3333
table: {
3434
defaultValue: { summary: '[0]' },
3535
type: {

packages/theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"author": "Eleven <[email protected]>",
44
"license": "MIT",
55
"type": "module",
6-
"version": "0.0.4",
6+
"version": "0.0.5",
77
"description": "Figma theme",
88
"scripts": {
99
"clean": "rm -rf node_modules && rm -rf dist",

packages/utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"author": "Eleven <[email protected]>",
44
"license": "MIT",
55
"type": "module",
6-
"version": "0.0.4",
6+
"version": "0.0.5",
77
"description": "Utilities for Figma plugin and widget",
88
"scripts": {
99
"clean": "rm -rf node_modules && rm -rf dist",

playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "playground",
33
"private": true,
4-
"version": "0.0.4",
4+
"version": "0.0.5",
55
"type": "module",
66
"scripts": {
77
"clean": "rm -rf node_modules && rm -rf dist",

0 commit comments

Comments
 (0)