Skip to content

Commit dbec212

Browse files
authored
Version Packages (next) (#998)
2 parents c0ca170 + 95e5844 commit dbec212

7 files changed

Lines changed: 18 additions & 4 deletions

File tree

.changeset/pre.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@
194194
"scheduled-solid2-migration",
195195
"script-loader-solid2-migration",
196196
"scroll-duplicate-copy-safety",
197+
"scroll-prevent-scroll-document-element",
197198
"scroll-solid2-migration",
198199
"selection-solid2-migration",
199200
"sensors-new-package",
@@ -206,6 +207,7 @@
206207
"spring-solid2-migration",
207208
"sse-solid2-async-reactivity",
208209
"state-machine-solid2-migration",
210+
"storage-isolated-declarations-fix",
209211
"styles-solid2-migration",
210212
"sunny-poets-brush",
211213
"sweet-olives-talk",

packages/scroll/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @solid-primitives/scroll
22

3+
## 3.0.0-next.3
4+
5+
### Patch Changes
6+
7+
- 855bc1b: `createPreventScroll` now locks scroll on `document.documentElement` instead of `<body>`. Locking `<body>` could break `position: sticky` elements, since sticky positioning is computed relative to the nearest scrolling ancestor — when that ancestor was `<body>` instead of the viewport, sticky children would unstick while scroll was prevented. Scrollbar-width, padding/margin compensation, and scroll-position restoration are all computed against `documentElement` now as well.
8+
39
## 3.0.0-next.2
410

511
### Patch Changes

packages/scroll/deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solid-primitives/scroll",
3-
"version": "3.0.0-next.2",
3+
"version": "3.0.0-next.3",
44
"description": "Reactive primitives to react to element/window scrolling, and to prevent scroll outside of a given element.",
55
"license": "MIT",
66
"exports": "./src/index.ts",

packages/scroll/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solid-primitives/scroll",
3-
"version": "3.0.0-next.2",
3+
"version": "3.0.0-next.3",
44
"description": "Reactive primitives to react to element/window scrolling, and to prevent scroll outside of a given element.",
55
"author": "David Di Biase <dave@solidjs.com>",
66
"contributors": [

packages/storage/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @solid-primitives/storage
22

3+
## 5.0.0-next.3
4+
5+
### Patch Changes
6+
7+
- 673347c: Fixed a build failure in `messageSync` and `wsSync`: their `url` parameter's default value (`globalThis.location?.href`) lacked an explicit type annotation, which `--isolatedDeclarations` (used by the package's `.d.ts` generation) requires on any parameter whose type can't be trivially inferred. No behavior or API changes — `url` is still `string | undefined`.
8+
39
## 5.0.0-next.2
410

511
### Patch Changes

packages/storage/deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solid-primitives/storage",
3-
"version": "5.0.0-next.2",
3+
"version": "5.0.0-next.3",
44
"description": "Primitive that provides reactive wrappers for storage access",
55
"license": "MIT",
66
"exports": {

packages/storage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solid-primitives/storage",
3-
"version": "5.0.0-next.2",
3+
"version": "5.0.0-next.3",
44
"description": "Primitive that provides reactive wrappers for storage access",
55
"author": "Alex Lohr <alex.lohr@logmein.com>",
66
"contributors": [

0 commit comments

Comments
 (0)