Skip to content

Commit

Permalink
chore(release): 1.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
adarshpastakia committed Oct 14, 2024
1 parent e353b99 commit e0712d7
Show file tree
Hide file tree
Showing 22 changed files with 101 additions and 35 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0-beta.1 (2024-10-14)

### Bug Fixes

- **DropdownTool:** caret icon ([78c8d9f](https://github.com/adarshpastakia/react-fabric/commit/78c8d9f9393a3b7c1594992e900683355a3eedb6))
- **Table:** add checkable rows ([691c57e](https://github.com/adarshpastakia/react-fabric/commit/691c57e188aac4e1b0b8ebd91b985f84e558e5b2))
- **Table:** add column resize ([452fc4c](https://github.com/adarshpastakia/react-fabric/commit/452fc4c40c70939e315356e3ce0dd642d13cc144))
- **Table:** add loading indicator and empty message ([e353b99](https://github.com/adarshpastakia/react-fabric/commit/e353b99f2b4576a21ca97ca2a06b517a8a2d749d))
- **Table:** added sorting on header click ([e00c693](https://github.com/adarshpastakia/react-fabric/commit/e00c693ad07e6b2e01f960e9ccdbf7dbb858b6cf))
- **Table:** hideable columns action ([e638f5f](https://github.com/adarshpastakia/react-fabric/commit/e638f5f0858ce9b8beab2d9a708e40f32fda8974))
- **Table:** replace Dropdown with DropdownTool ([7c96eb2](https://github.com/adarshpastakia/react-fabric/commit/7c96eb28ffe600f58b772df0c050fbbca350a199))
- **Table:** row click handler ([912c0ac](https://github.com/adarshpastakia/react-fabric/commit/912c0ac62056eb0360213561cfd9b5d1e9df111d))
- **Table:** usability update ([747aac6](https://github.com/adarshpastakia/react-fabric/commit/747aac60a63464dd79d807dba9e883ba5fc93877))

# 1.0.0-beta.0 (2024-10-11)

**Note:** Version bump only for package react-fabric
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"npmClient": "yarn",
"version": "1.0.0-beta.0"
"version": "1.0.0-beta.1"
}
4 changes: 4 additions & 0 deletions packages/chart/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0-beta.1 (2024-10-14)

**Note:** Version bump only for package @react-fabric/chart

# 1.0.0-beta.0 (2024-10-11)

**Note:** Version bump only for package @react-fabric/chart
6 changes: 3 additions & 3 deletions packages/chart/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-fabric/chart",
"version": "1.0.0-beta.0",
"version": "1.0.0-beta.1",
"description": "RUF: Charting package",
"author": "Adarsh Pastakia <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -33,8 +33,8 @@
"watch": "npm-run-all -p watch:rollup watch:dts"
},
"dependencies": {
"@react-fabric/core": "^1.0.0-beta.0",
"@react-fabric/utilities": "^1.0.0-beta.0",
"@react-fabric/core": "^1.0.0-beta.1",
"@react-fabric/utilities": "^1.0.0-beta.1",
"classnames": "^2.5.1",
"color": "^4.2.3",
"date-fns": "^4.0.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0-beta.1 (2024-10-14)

### Bug Fixes

- **DropdownTool:** caret icon ([78c8d9f](https://github.com/adarshpastakia/react-ui-framework/commit/78c8d9f9393a3b7c1594992e900683355a3eedb6))
- **Table:** add loading indicator and empty message ([e353b99](https://github.com/adarshpastakia/react-ui-framework/commit/e353b99f2b4576a21ca97ca2a06b517a8a2d749d))

# 1.0.0-beta.0 (2024-10-11)

**Note:** Version bump only for package @react-fabric/core
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-fabric/core",
"version": "1.0.0-beta.0",
"version": "1.0.0-beta.1",
"description": "RUF: Core package",
"author": "Adarsh Pastakia <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -36,7 +36,7 @@
},
"dependencies": {
"@floating-ui/react": "^0.26.24",
"@react-fabric/utilities": "^1.0.0-beta.0",
"@react-fabric/utilities": "^1.0.0-beta.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
Expand Down
13 changes: 13 additions & 0 deletions packages/data/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0-beta.1 (2024-10-14)

### Bug Fixes

- **Table:** add checkable rows ([691c57e](https://github.com/adarshpastakia/react-ui-framework/commit/691c57e188aac4e1b0b8ebd91b985f84e558e5b2))
- **Table:** add column resize ([452fc4c](https://github.com/adarshpastakia/react-ui-framework/commit/452fc4c40c70939e315356e3ce0dd642d13cc144))
- **Table:** add loading indicator and empty message ([e353b99](https://github.com/adarshpastakia/react-ui-framework/commit/e353b99f2b4576a21ca97ca2a06b517a8a2d749d))
- **Table:** added sorting on header click ([e00c693](https://github.com/adarshpastakia/react-ui-framework/commit/e00c693ad07e6b2e01f960e9ccdbf7dbb858b6cf))
- **Table:** hideable columns action ([e638f5f](https://github.com/adarshpastakia/react-ui-framework/commit/e638f5f0858ce9b8beab2d9a708e40f32fda8974))
- **Table:** replace Dropdown with DropdownTool ([7c96eb2](https://github.com/adarshpastakia/react-ui-framework/commit/7c96eb28ffe600f58b772df0c050fbbca350a199))
- **Table:** row click handler ([912c0ac](https://github.com/adarshpastakia/react-ui-framework/commit/912c0ac62056eb0360213561cfd9b5d1e9df111d))
- **Table:** usability update ([747aac6](https://github.com/adarshpastakia/react-ui-framework/commit/747aac60a63464dd79d807dba9e883ba5fc93877))

# 1.0.0-beta.0 (2024-10-11)

**Note:** Version bump only for package @react-fabric/data
8 changes: 4 additions & 4 deletions packages/data/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-fabric/data",
"version": "1.0.0-beta.0",
"version": "1.0.0-beta.1",
"description": "RUF: Data package",
"author": "Adarsh Pastakia <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -33,9 +33,9 @@
"watch": "npm-run-all -p watch:rollup watch:dts"
},
"dependencies": {
"@react-fabric/core": "^1.0.0-beta.0",
"@react-fabric/form": "^1.0.0-beta.0",
"@react-fabric/utilities": "^1.0.0-beta.0",
"@react-fabric/core": "^1.0.0-beta.1",
"@react-fabric/form": "^1.0.0-beta.1",
"@react-fabric/utilities": "^1.0.0-beta.1",
"@tanstack/react-virtual": "^3.8.6",
"classnames": "^2.5.1",
"color": "^4.2.3",
Expand Down
4 changes: 4 additions & 0 deletions packages/date/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0-beta.1 (2024-10-14)

**Note:** Version bump only for package @react-fabric/date

# 1.0.0-beta.0 (2024-10-11)

**Note:** Version bump only for package @react-fabric/date
8 changes: 4 additions & 4 deletions packages/date/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-fabric/date",
"version": "1.0.0-beta.0",
"version": "1.0.0-beta.1",
"description": "RUF: Date package",
"author": "Adarsh Pastakia <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -34,9 +34,9 @@
},
"dependencies": {
"@floating-ui/react": "^0.26.24",
"@react-fabric/core": "^1.0.0-beta.0",
"@react-fabric/form": "^1.0.0-beta.0",
"@react-fabric/utilities": "^1.0.0-beta.0",
"@react-fabric/core": "^1.0.0-beta.1",
"@react-fabric/form": "^1.0.0-beta.1",
"@react-fabric/utilities": "^1.0.0-beta.1",
"classnames": "^2.5.1",
"date-fns": "^4.0.0",
"resize-observer-polyfill": "^1.5.1"
Expand Down
4 changes: 4 additions & 0 deletions packages/form/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0-beta.1 (2024-10-14)

**Note:** Version bump only for package @react-fabric/form

# 1.0.0-beta.0 (2024-10-11)

**Note:** Version bump only for package @react-fabric/form
6 changes: 3 additions & 3 deletions packages/form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-fabric/form",
"version": "1.0.0-beta.0",
"version": "1.0.0-beta.1",
"description": "RUF: Form package",
"author": "Adarsh Pastakia <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -39,8 +39,8 @@
"@dnd-kit/utilities": "^3.2.2",
"@floating-ui/react": "0.26.24",
"@hookform/resolvers": "^3.9.0",
"@react-fabric/core": "^1.0.0-beta.0",
"@react-fabric/utilities": "^1.0.0-beta.0",
"@react-fabric/core": "^1.0.0-beta.1",
"@react-fabric/utilities": "^1.0.0-beta.1",
"classnames": "^2.5.1",
"color": "^4.2.3",
"react-color": "^2.19.3",
Expand Down
4 changes: 4 additions & 0 deletions packages/lexical/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0-beta.1 (2024-10-14)

**Note:** Version bump only for package @react-fabric/lexical

# 1.0.0-beta.0 (2024-10-11)

**Note:** Version bump only for package @react-fabric/lexical
8 changes: 4 additions & 4 deletions packages/lexical/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-fabric/lexical",
"version": "1.0.0-beta.0",
"version": "1.0.0-beta.1",
"description": "RUF: Lexical editor",
"author": "Adarsh Pastakia <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -35,9 +35,9 @@
"dependencies": {
"@lexical/headless": "^0.17.1",
"@lexical/react": "^0.17.1",
"@react-fabric/core": "^1.0.0-beta.0",
"@react-fabric/form": "^1.0.0-beta.0",
"@react-fabric/utilities": "^1.0.0-beta.0",
"@react-fabric/core": "^1.0.0-beta.1",
"@react-fabric/form": "^1.0.0-beta.1",
"@react-fabric/utilities": "^1.0.0-beta.1",
"classnames": "^2.5.1",
"lexical": "^0.17.1"
},
Expand Down
4 changes: 4 additions & 0 deletions packages/media/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0-beta.1 (2024-10-14)

**Note:** Version bump only for package @react-fabric/media

# 1.0.0-beta.0 (2024-10-11)

**Note:** Version bump only for package @react-fabric/media
8 changes: 4 additions & 4 deletions packages/media/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-fabric/media",
"version": "1.0.0-beta.0",
"version": "1.0.0-beta.1",
"description": "RUF: Media package",
"author": "Adarsh Pastakia <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -33,9 +33,9 @@
"watch": "npm-run-all -p watch:rollup watch:dts"
},
"dependencies": {
"@react-fabric/core": "^1.0.0-beta.0",
"@react-fabric/form": "^1.0.0-beta.0",
"@react-fabric/utilities": "^1.0.0-beta.0",
"@react-fabric/core": "^1.0.0-beta.1",
"@react-fabric/form": "^1.0.0-beta.1",
"@react-fabric/utilities": "^1.0.0-beta.1",
"classnames": "^2.5.1",
"color": "^4.2.3",
"wavesurfer.js": "^7.8.6"
Expand Down
4 changes: 4 additions & 0 deletions packages/monaco/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0-beta.1 (2024-10-14)

**Note:** Version bump only for package @react-fabric/monaco

# 1.0.0-beta.0 (2024-10-11)

**Note:** Version bump only for package @react-fabric/monaco
6 changes: 3 additions & 3 deletions packages/monaco/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-fabric/monaco",
"version": "1.0.0-beta.0",
"version": "1.0.0-beta.1",
"description": "RUF: Monaco editor",
"author": "Adarsh Pastakia <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -33,8 +33,8 @@
"watch": "npm-run-all -p watch:rollup watch:dts"
},
"dependencies": {
"@react-fabric/core": "^1.0.0-beta.0",
"@react-fabric/utilities": "^1.0.0-beta.0",
"@react-fabric/core": "^1.0.0-beta.1",
"@react-fabric/utilities": "^1.0.0-beta.1",
"classnames": "^2.5.1",
"react-monaco-editor": "^0.56.2"
},
Expand Down
4 changes: 4 additions & 0 deletions packages/searchbar/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0-beta.1 (2024-10-14)

**Note:** Version bump only for package @react-fabric/searchbar

# 1.0.0-beta.0 (2024-10-11)

**Note:** Version bump only for package @react-fabric/searchbar
12 changes: 6 additions & 6 deletions packages/searchbar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-fabric/searchbar",
"version": "1.0.0-beta.0",
"version": "1.0.0-beta.1",
"description": "RUF: Searchbar with filters package",
"author": "Adarsh Pastakia <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -34,11 +34,11 @@
},
"dependencies": {
"@floating-ui/react": "0.26.24",
"@react-fabric/core": "^1.0.0-beta.0",
"@react-fabric/date": "^1.0.0-beta.0",
"@react-fabric/form": "^1.0.0-beta.0",
"@react-fabric/monaco": "^1.0.0-beta.0",
"@react-fabric/utilities": "^1.0.0-beta.0",
"@react-fabric/core": "^1.0.0-beta.1",
"@react-fabric/date": "^1.0.0-beta.1",
"@react-fabric/form": "^1.0.0-beta.1",
"@react-fabric/monaco": "^1.0.0-beta.1",
"@react-fabric/utilities": "^1.0.0-beta.1",
"classnames": "^2.5.1",
"react-hook-form": "^7.52.1"
},
Expand Down
4 changes: 4 additions & 0 deletions packages/utilities/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0-beta.1 (2024-10-14)

**Note:** Version bump only for package @react-fabric/utilities

# 1.0.0-beta.0 (2024-10-11)

**Note:** Version bump only for package @react-fabric/utilities
2 changes: 1 addition & 1 deletion packages/utilities/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-fabric/utilities",
"version": "1.0.0-beta.0",
"version": "1.0.0-beta.1",
"description": "RUF: Utility package",
"author": "Adarsh Pastakia <[email protected]>",
"license": "MIT",
Expand Down

0 comments on commit e0712d7

Please sign in to comment.