@spark-ui/use-combined-state 0.6.3 → 5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.0.1](https://github.com/adevinta/spark/compare/v5.0.0...v5.0.1) (2024-07-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @spark-ui/use-combined-state
|
|
9
|
+
|
|
10
|
+
# 5.0.0 (2024-07-18)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- doc ([5506203](https://github.com/adevinta/spark/commit/55062039dc67c3532be42a4661540052094163d9))
|
|
15
|
+
- force new release to all packages ([d7f5136](https://github.com/adevinta/spark/commit/d7f513698cf48dd9c102fafaeb336096818c6b2b))
|
|
16
|
+
- **use-combined-state:** doc ([9ea6c28](https://github.com/adevinta/spark/commit/9ea6c2820c4578daafb394c8242207b5465129a8))
|
|
17
|
+
- **use-combined-state:** fix deps ([d75ad40](https://github.com/adevinta/spark/commit/d75ad40e6f5af205678abe4405d36290e434831d))
|
|
18
|
+
- **use-combined-state:** meta-tags ([b604c1c](https://github.com/adevinta/spark/commit/b604c1c364def026d8962f3ab7e5cffc5c1df199))
|
|
19
|
+
- **use-combined-state:** missed var observed in hook ([b3fc647](https://github.com/adevinta/spark/commit/b3fc647c5ff679d00f0ce71bd5d4d73fbfc1a2dd))
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
- add peerDeps field ([18e758d](https://github.com/adevinta/spark/commit/18e758d4796389711040fed1c9b738270c505abf))
|
|
24
|
+
- set all inner deps as latest ([dbc135e](https://github.com/adevinta/spark/commit/dbc135e41ddba29451fc2e0a036f189b94604d07))
|
|
25
|
+
- **switch:** customisable icons for switch, controlled mode ([543568e](https://github.com/adevinta/spark/commit/543568e5c5eedc9a6e2ea6a0ef669c73f4b1ce12))
|
|
26
|
+
- update all dependencies to use caret versions in every packages ([35e329c](https://github.com/adevinta/spark/commit/35e329c39bdc661f477d22e770d82e72d7f93a75))
|
|
27
|
+
- **use-combined-state:** add onChange handler argument ([f546bf7](https://github.com/adevinta/spark/commit/f546bf7625664accb37f1f43e98202d1d39fca15))
|
|
28
|
+
- **use-combined-state:** add types ([9f0acf5](https://github.com/adevinta/spark/commit/9f0acf58606537e930787b7884dea5c26452b3e9))
|
|
29
|
+
- **use-combined-state:** doc ([5032720](https://github.com/adevinta/spark/commit/5032720ff7b50a173cfd8914ff10b093125131ec))
|
|
30
|
+
- **use-combined-state:** new hook ([bfdd736](https://github.com/adevinta/spark/commit/bfdd736ab7fb38d042180e3043dfc9af7e9f8b28))
|
|
31
|
+
- **use-combined-state:** remove unnecessary state management when controlled state mode ([95f45ba](https://github.com/adevinta/spark/commit/95f45ba467cebaef2c8d6ad42081aed0720e3fe7))
|
|
32
|
+
|
|
6
33
|
## [0.6.3](https://github.com/adevinta/spark/compare/@spark-ui/use-combined-state@0.6.2...@spark-ui/use-combined-state@0.6.3) (2024-04-29)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @spark-ui/use-combined-state
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spark-ui/use-combined-state",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "combine controlled-uncontrolled component state by stateful-stateless inner state management",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"build": "vite build"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@spark-ui/use-mounted-state": "^0.
|
|
21
|
+
"@spark-ui/use-mounted-state": "^5.0.1",
|
|
22
22
|
"@types/lodash.isequal": "4.5.8",
|
|
23
23
|
"lodash.isequal": "4.5.0"
|
|
24
24
|
},
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
},
|
|
41
41
|
"homepage": "https://sparkui.vercel.app",
|
|
42
42
|
"license": "MIT",
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "ef1617cbbab5bd7cbc2e715bfcd06850e6d409fa"
|
|
44
44
|
}
|