@window-splitter/svelte 1.1.3 → 1.1.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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-test.log +25 -0
- package/package.json +24 -24
- package/.turbo/turbo-lint.log +0 -18
- package/LICENSE +0 -7
package/.turbo/turbo-build.log
CHANGED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
|
|
2
|
+
> @window-splitter/svelte@1.1.3 test /Users/andrew/Documents/window-splitter/packages/svelte
|
|
3
|
+
> CI=true vitest
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
[1m[46m RUN [49m[22m [36mv3.1.2 [39m[90m/Users/andrew/Documents/window-splitter/packages/svelte[39m
|
|
7
|
+
|
|
8
|
+
[90mstdout[2m | src/SvelteWindowSplitter.test.svelte.ts[2m > [22m[2mimperative panel API[2m > [22m[2mpanel
|
|
9
|
+
[22m[39mCOLLAPSE PASSIVE true
|
|
10
|
+
[90mstdout[2m | src/SvelteWindowSplitter.test.svelte.ts[2m > [22m[2mimperative panel API[2m > [22m[2mpanel
|
|
11
|
+
[22m[39mCOLLAPSE PASSIVE false
|
|
12
|
+
[32m✓[39m [30m[43m chromium [49m[39m src/SvelteWindowSplitter.test.svelte.ts [2m([22m[2m10 tests[22m[2m)[22m[33m 27273[2mms[22m[39m
|
|
13
|
+
[33m[2m✓[22m[39m horizontal layout [33m 3719[2mms[22m[39m
|
|
14
|
+
[33m[2m✓[22m[39m vertical layout [33m 1306[2mms[22m[39m
|
|
15
|
+
[33m[2m✓[22m[39m Autosave[2m > [22mlocalStorage [33m 1315[2mms[22m[39m
|
|
16
|
+
[33m[2m✓[22m[39m Autosave[2m > [22mcallback [33m 4701[2mms[22m[39m
|
|
17
|
+
[33m[2m✓[22m[39m Autosave[2m > [22mcookie [33m 1316[2mms[22m[39m
|
|
18
|
+
[33m[2m✓[22m[39m imperative panel API[2m > [22mpanel [33m 11188[2mms[22m[39m
|
|
19
|
+
[33m[2m✓[22m[39m Keyboard interactions with collapsed panels [33m 3129[2mms[22m[39m
|
|
20
|
+
|
|
21
|
+
[2m Test Files [22m [1m[32m1 passed[39m[22m[90m (1)[39m
|
|
22
|
+
[2m Tests [22m [1m[32m10 passed[39m[22m[90m (10)[39m
|
|
23
|
+
[2m Start at [22m 12:24:07
|
|
24
|
+
[2m Duration [22m 28.12s[2m (transform 0ms, setup 45ms, collect 146ms, tests 27.27s, environment 0ms, prepare 10ms)[22m
|
|
25
|
+
|
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": "1.1.
|
|
5
|
+
"version": "1.1.4",
|
|
6
6
|
"description": "A WAI-ARIA compliant window splitter for Svelte.",
|
|
7
7
|
"repository": {
|
|
8
8
|
"url": "https://github.com/hipstersmoothie/window-splitter",
|
|
@@ -18,9 +18,19 @@
|
|
|
18
18
|
"publishConfig": {
|
|
19
19
|
"access": "public"
|
|
20
20
|
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "svelte-package",
|
|
23
|
+
"test": "CI=true vitest",
|
|
24
|
+
"dev": "svelte-package -w",
|
|
25
|
+
"lint": "eslint .",
|
|
26
|
+
"stats": "rsbuild --mode production build",
|
|
27
|
+
"storybook": "storybook dev -p 6006",
|
|
28
|
+
"build-storybook": "storybook build",
|
|
29
|
+
"clean": "rm -rf dist .turbo"
|
|
30
|
+
},
|
|
21
31
|
"license": "MIT",
|
|
22
32
|
"devDependencies": {
|
|
23
|
-
"@internal/eslint-config": "1.1.
|
|
33
|
+
"@internal/eslint-config": "1.1.4",
|
|
24
34
|
"@rsbuild/core": "^1.3.12",
|
|
25
35
|
"@rsdoctor/rspack-plugin": "^1.0.2",
|
|
26
36
|
"@storybook/addon-svelte-csf": "^5.0.0-next.0",
|
|
@@ -28,30 +38,30 @@
|
|
|
28
38
|
"@storybook/svelte-vite": "^8.6.12",
|
|
29
39
|
"@sveltejs/package": "^2.3.11",
|
|
30
40
|
"@sveltejs/vite-plugin-svelte": "^5.0.3",
|
|
31
|
-
"@testing-library/jest-dom": "
|
|
41
|
+
"@testing-library/jest-dom": "catalog:",
|
|
32
42
|
"@testing-library/svelte": "^5.2.7",
|
|
33
43
|
"@types/node": "^20.14.10",
|
|
34
|
-
"@vitest/browser": "
|
|
35
|
-
"@vitest/coverage-istanbul": "
|
|
36
|
-
"@vitest/coverage-v8": "
|
|
37
|
-
"eslint": "
|
|
44
|
+
"@vitest/browser": "catalog:",
|
|
45
|
+
"@vitest/coverage-istanbul": "catalog:",
|
|
46
|
+
"@vitest/coverage-v8": "catalog:",
|
|
47
|
+
"eslint": "catalog:",
|
|
38
48
|
"eslint-plugin-svelte": "^2.35.1",
|
|
39
49
|
"framer-motion": "^11.3.28",
|
|
40
50
|
"jsdom": "^24.1.1",
|
|
41
|
-
"playwright": "
|
|
51
|
+
"playwright": "catalog:",
|
|
42
52
|
"storybook": "^8.6.12",
|
|
43
53
|
"svelte": "^5.28.2",
|
|
44
54
|
"tiny-cookie": "^2.5.1",
|
|
45
|
-
"typescript": "
|
|
55
|
+
"typescript": "catalog:",
|
|
46
56
|
"vite": "^6.3.3",
|
|
47
|
-
"vitest": "
|
|
57
|
+
"vitest": "catalog:"
|
|
48
58
|
},
|
|
49
59
|
"peerDependencies": {
|
|
50
60
|
"svelte": ">=5.x"
|
|
51
61
|
},
|
|
52
62
|
"dependencies": {
|
|
53
|
-
"@window-splitter/interface": "1.1.
|
|
54
|
-
"@window-splitter/state": "1.1.
|
|
63
|
+
"@window-splitter/interface": "1.1.4",
|
|
64
|
+
"@window-splitter/state": "1.1.4"
|
|
55
65
|
},
|
|
56
66
|
"type": "module",
|
|
57
67
|
"exports": {
|
|
@@ -68,15 +78,5 @@
|
|
|
68
78
|
"resizable",
|
|
69
79
|
"window"
|
|
70
80
|
],
|
|
71
|
-
"gitHead": "
|
|
72
|
-
|
|
73
|
-
"build": "svelte-package",
|
|
74
|
-
"test": "CI=true vitest",
|
|
75
|
-
"dev": "svelte-package -w",
|
|
76
|
-
"lint": "eslint .",
|
|
77
|
-
"stats": "rsbuild --mode production build",
|
|
78
|
-
"storybook": "storybook dev -p 6006",
|
|
79
|
-
"build-storybook": "storybook build",
|
|
80
|
-
"clean": "rm -rf dist .turbo"
|
|
81
|
-
}
|
|
82
|
-
}
|
|
81
|
+
"gitHead": "df18ce3b7488d52f8d91ae7000f5dcaec65f6bdd"
|
|
82
|
+
}
|
package/.turbo/turbo-lint.log
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
> @window-splitter/svelte@1.1.0 lint /Users/alisowski/Documents/react-window-splitter/packages/svelte
|
|
4
|
-
> eslint .
|
|
5
|
-
|
|
6
|
-
=============
|
|
7
|
-
|
|
8
|
-
WARNING: You are currently running a version of TypeScript which is not officially supported by @typescript-eslint/typescript-estree.
|
|
9
|
-
|
|
10
|
-
You may find that it works just fine, or you may not.
|
|
11
|
-
|
|
12
|
-
SUPPORTED TYPESCRIPT VERSIONS: >=4.7.4 <5.6.0
|
|
13
|
-
|
|
14
|
-
YOUR TYPESCRIPT VERSION: 5.8.3
|
|
15
|
-
|
|
16
|
-
Please only submit bug reports when using the officially supported version.
|
|
17
|
-
|
|
18
|
-
=============
|
package/LICENSE
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
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.
|