@window-splitter/state 0.2.5 → 0.3.0
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/.turbo/turbo-build.log +4 -5
- package/.turbo/turbo-lint.log +9 -1
- package/.turbo/turbo-test.log +2628 -508
- package/CHANGELOG.md +27 -0
- package/coverage/coverage-final.json +1 -1
- package/coverage/coverage-summary.json +3 -0
- package/coverage/index.html +19 -19
- package/coverage/index.ts.html +872 -377
- package/dist/commonjs/index.d.ts +19 -6
- package/dist/commonjs/index.d.ts.map +1 -1
- package/dist/commonjs/index.js +105 -22
- package/dist/commonjs/index.js.map +1 -1
- package/dist/esm/index.d.ts +19 -6
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +102 -22
- package/dist/esm/index.js.map +1 -1
- package/package.json +3 -3
- package/src/__snapshots__/machine.test.ts.snap +73 -0
- package/src/index.ts +144 -27
- package/src/machine.test.ts +324 -6
- package/src/utils.test.ts +86 -0
- package/vitest.config.ts +2 -0
- package/coverage/clover.xml +0 -363
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
# v0.3.0 (Sun Aug 18 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Add `onResize` prop to Panel [#28](https://github.com/hipstersmoothie/react-window-splitter/pull/28) ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Add `onResize` prop to `Panel` ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
10
|
+
- 100 [#26](https://github.com/hipstersmoothie/react-window-splitter/pull/26) ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
11
|
+
- 100 ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
12
|
+
- add coverage for PRs [#25](https://github.com/hipstersmoothie/react-window-splitter/pull/25) ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
13
|
+
- testing ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
14
|
+
- add coverage for PRs ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
15
|
+
- Add react tests [#24](https://github.com/hipstersmoothie/react-window-splitter/pull/24) ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
16
|
+
- add docs for state machine usage ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
17
|
+
|
|
18
|
+
#### ⚠️ Pushed to `main`
|
|
19
|
+
|
|
20
|
+
- improve test coverage in state machine ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
21
|
+
|
|
22
|
+
#### Authors: 1
|
|
23
|
+
|
|
24
|
+
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
1
28
|
# v0.2.5 (Thu Aug 15 2024)
|
|
2
29
|
|
|
3
30
|
#### ⚠️ Pushed to `main`
|