selectic 3.0.0 → 3.0.4
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/README.md +2 -0
- package/dist/selectic.common.js +177 -90
- package/dist/selectic.esm.js +178 -91
- package/doc/breakingChanges.md +55 -0
- package/doc/events.md +68 -17
- package/doc/main.md +7 -0
- package/doc/params.md +5 -2
- package/package.json +6 -5
- package/src/Filter.tsx +21 -8
- package/src/List.tsx +2 -1
- package/src/Store.tsx +136 -57
- package/src/index.tsx +69 -11
- package/test/Store/Store_creation.spec.js +93 -0
- package/test/Store/clearCache.spec.js +20 -0
- package/test/Store/commit.spec.js +188 -1
- package/test/helper.js +3 -0
- package/types/Store.d.ts +13 -1
- package/types/index.d.ts +13 -3
package/README.md
CHANGED
|
@@ -81,6 +81,8 @@ There are very few dependencies and code stays very small (~90kB).
|
|
|
81
81
|
|
|
82
82
|
[Read the documentation](./doc/main.md) to know how to configure Selectic and all its possibilities.
|
|
83
83
|
|
|
84
|
+
For users which are used to previous Selectic versions, they can read the [migration strategy guide](./doc/breakingChanges.md).
|
|
85
|
+
|
|
84
86
|
It uses [VTYX](https://github.com/Intersec/vtyx) for strong typing.
|
|
85
87
|
|
|
86
88
|
## Tests
|