Skip to content

Commit 731ba5c

Browse files
committed
Merge remote-tracking branch 'origin/master'
* origin/master: chore(release): publish [no ci] chore(release): packages publish [no ci]
2 parents 01b35da + 5e65bd6 commit 731ba5c

File tree

11 files changed

+67
-11
lines changed

11 files changed

+67
-11
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## [1.8.0](https://github.com/abelflopes/react-ck/compare/v1.7.0...v1.8.0) (2024-01-25)
2+
3+
4+
### Features
5+
6+
* add auto headers for data table ([684aa2c](https://github.com/abelflopes/react-ck/commit/684aa2c2d64bc6451f586f864c883c746ae9f25c))
7+
* add table scrollable variation ([c948956](https://github.com/abelflopes/react-ck/commit/c948956bb3605529433473781305d4ded67087e8))
8+
9+
10+
### Bug Fixes
11+
12+
* improve types support ([33bff05](https://github.com/abelflopes/react-ck/commit/33bff05b66c56c91df40593a575f0bd25638dc99))
13+
* set spinner default color as primary ([7ec88f6](https://github.com/abelflopes/react-ck/commit/7ec88f62d05c54f8861628ae39bbcfef663e31cb))
14+
* use span element for chip ([a300094](https://github.com/abelflopes/react-ck/commit/a30009430874f56c6149af6a4945bf6bf34e742d))
15+
116
## [1.7.0](https://github.com/abelflopes/react-ck/compare/v1.6.1...v1.7.0) (2024-01-24)
217

318

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@abelflopes/react-ck",
33
"private": true,
4-
"version": "1.7.0",
4+
"version": "1.8.0",
55
"author": "Abel Lopes (@abelflopes)",
66
"description": "Monorepo PoC/Template with independent versioning for the whole project and its packages",
77
"homepage": "https://github.com/abelflopes/react-ck",

packages/components/chip/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.2.4](https://github.com/abelflopes/react-ck/compare/@react-ck/chip@1.2.3...@react-ck/chip@1.2.4) (2024-01-25)
7+
8+
9+
### Bug Fixes
10+
11+
* use span element for chip ([a300094](https://github.com/abelflopes/react-ck/commit/a30009430874f56c6149af6a4945bf6bf34e742d))
12+
13+
14+
615
## [1.2.3](https://github.com/abelflopes/react-ck/compare/@react-ck/chip@1.2.2...@react-ck/chip@1.2.3) (2024-01-24)
716

817

packages/components/chip/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@react-ck/chip",
33
"private": false,
4-
"version": "1.2.3",
4+
"version": "1.2.4",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"files": [

packages/components/data-table/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.2.0](https://github.com/abelflopes/react-ck/compare/@react-ck/data-table@1.1.8...@react-ck/data-table@1.2.0) (2024-01-25)
7+
8+
9+
### Features
10+
11+
* add auto headers for data table ([684aa2c](https://github.com/abelflopes/react-ck/commit/684aa2c2d64bc6451f586f864c883c746ae9f25c))
12+
13+
14+
### Bug Fixes
15+
16+
* improve types support ([33bff05](https://github.com/abelflopes/react-ck/commit/33bff05b66c56c91df40593a575f0bd25638dc99))
17+
18+
19+
620
## [1.1.8](https://github.com/abelflopes/react-ck/compare/@react-ck/data-table@1.1.7...@react-ck/data-table@1.1.8) (2024-01-24)
721

822
**Note:** Version bump only for package @react-ck/data-table

packages/components/data-table/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@react-ck/data-table",
33
"private": false,
4-
"version": "1.1.8",
4+
"version": "1.2.0",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"files": [
@@ -31,7 +31,7 @@
3131
"react": "^18.2.0"
3232
},
3333
"dependencies": {
34-
"@react-ck/table": "^1.2.1",
34+
"@react-ck/table": "^1.3.0",
3535
"change-case": "^5.4.2"
3636
}
3737
}

packages/components/spinner/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.1.3](https://github.com/abelflopes/react-ck/compare/@react-ck/spinner@1.1.2...@react-ck/spinner@1.1.3) (2024-01-25)
7+
8+
9+
### Bug Fixes
10+
11+
* set spinner default color as primary ([7ec88f6](https://github.com/abelflopes/react-ck/commit/7ec88f62d05c54f8861628ae39bbcfef663e31cb))
12+
13+
14+
615
## [1.1.2](https://github.com/abelflopes/react-ck/compare/@react-ck/spinner@1.1.1...@react-ck/spinner@1.1.2) (2024-01-24)
716

817
**Note:** Version bump only for package @react-ck/spinner

packages/components/spinner/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@react-ck/spinner",
33
"private": false,
4-
"version": "1.1.2",
4+
"version": "1.1.3",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"files": [

packages/components/table/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.3.0](https://github.com/abelflopes/react-ck/compare/@react-ck/table@1.2.1...@react-ck/table@1.3.0) (2024-01-25)
7+
8+
9+
### Features
10+
11+
* add table scrollable variation ([c948956](https://github.com/abelflopes/react-ck/commit/c948956bb3605529433473781305d4ded67087e8))
12+
13+
14+
615
## [1.2.1](https://github.com/abelflopes/react-ck/compare/@react-ck/table@1.2.0...@react-ck/table@1.2.1) (2024-01-24)
716

817
**Note:** Version bump only for package @react-ck/table

0 commit comments

Comments
 (0)