@window-splitter/svelte 0.8.6 → 1.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +13 -0
- package/LICENSE +7 -0
- package/README.md +0 -11
- package/package.json +5 -5
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# v0.8.7 (Sun May 11 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Web Component [#59](https://github.com/hipstersmoothie/window-splitter/pull/59) ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
6
|
+
- add readme ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
7
|
+
|
|
8
|
+
#### Authors: 1
|
|
9
|
+
|
|
10
|
+
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# v0.8.5 (Sun May 04 2025)
|
|
2
15
|
|
|
3
16
|
#### 🐛 Bug Fix
|
package/LICENSE
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright 2025 Andrew Lisowski
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -40,17 +40,6 @@ npm install @window-splitter/svelte
|
|
|
40
40
|
- Customizable
|
|
41
41
|
- TypeScript support
|
|
42
42
|
|
|
43
|
-
## Server Side Rendering + Strict Mode
|
|
44
|
-
|
|
45
|
-
While not required for the simple case, for anything more complex you will
|
|
46
|
-
need to add an `id` prop to your panels and handles.
|
|
47
|
-
This is so that the component can tell all of the components apart during layout and rendering.
|
|
48
|
-
|
|
49
|
-
Features that require `id`:
|
|
50
|
-
|
|
51
|
-
- Conditional Panels
|
|
52
|
-
- Server Side Rendering
|
|
53
|
-
|
|
54
43
|
## Prior Art
|
|
55
44
|
|
|
56
45
|
This library is heavily inspired by the following libraries:
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@window-splitter/svelte",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "1.0.1",
|
|
6
6
|
"description": "A WAI-ARIA compliant window splitter for Svelte.",
|
|
7
7
|
"repository": {
|
|
8
8
|
"url": "https://github.com/hipstersmoothie/window-splitter",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@internal/eslint-config": "0.
|
|
33
|
+
"@internal/eslint-config": "1.0.1",
|
|
34
34
|
"@rsbuild/core": "^1.3.12",
|
|
35
35
|
"@rsdoctor/rspack-plugin": "^1.0.2",
|
|
36
36
|
"@storybook/addon-svelte-csf": "^5.0.0-next.0",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"svelte": ">=5.x"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@window-splitter/interface": "0.
|
|
64
|
-
"@window-splitter/state": "0.
|
|
63
|
+
"@window-splitter/interface": "1.0.1",
|
|
64
|
+
"@window-splitter/state": "1.0.1"
|
|
65
65
|
},
|
|
66
66
|
"type": "module",
|
|
67
67
|
"exports": {
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"resizable",
|
|
79
79
|
"window"
|
|
80
80
|
],
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "3894944a5c2d65d6dfab9fd68144b3fc97ed1ee2"
|
|
82
82
|
}
|