@ctx-core/scroll 17.1.0 → 17.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/CHANGELOG.md +28 -0
- package/package.json +7 -7
- package/src/sticky_scroll_active__.d.ts +1 -1
- package/COMMIT_EDITMSG +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @ctx-core/scroll
|
|
2
2
|
|
|
3
|
+
## 17.1.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- update dependencies
|
|
8
|
+
|
|
9
|
+
## 17.1.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @ctx-core/nanostores@2.0.0
|
|
15
|
+
|
|
16
|
+
## 17.1.2
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- tsx: ^3.8.2 -> ^3.9.0
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @ctx-core/nanostores@1.4.11
|
|
23
|
+
- @ctx-core/object@22.2.7
|
|
24
|
+
|
|
25
|
+
## 17.1.1
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- @ctx-core/nanostores: ^1.4.1 -> ^1.4.2
|
|
30
|
+
|
|
3
31
|
## 17.1.0
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ctx-core/scroll",
|
|
3
|
-
"version": "17.1.
|
|
3
|
+
"version": "17.1.4",
|
|
4
4
|
"description": "ctx-core scroll",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -24,16 +24,16 @@
|
|
|
24
24
|
"./package.json": "./package.json"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@ctx-core/nanostores": "^
|
|
28
|
-
"@ctx-core/object": "^22.2.
|
|
27
|
+
"@ctx-core/nanostores": "^2.0.0",
|
|
28
|
+
"@ctx-core/object": "^22.2.7"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"c8": "^7.
|
|
31
|
+
"c8": "^7.12.0",
|
|
32
32
|
"check-dts": "^0.6.7",
|
|
33
33
|
"tslib": "^2.4.0",
|
|
34
|
-
"
|
|
34
|
+
"tsx": "^3.9.0",
|
|
35
35
|
"typescript": "next",
|
|
36
|
-
"uvu": "^0.5.
|
|
36
|
+
"uvu": "^0.5.6"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"clean": ":",
|
|
46
46
|
"exec": "$@",
|
|
47
47
|
"test": "pnpm test-unit && check-dts",
|
|
48
|
-
"test-unit": "
|
|
48
|
+
"test-unit": "tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
|
|
49
49
|
"test-unit-coverage": "c8 pnpm test-unit"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { WritableAtom_ } from '@ctx-core/nanostores'
|
|
1
|
+
import { type WritableAtom_ } from '@ctx-core/nanostores'
|
|
2
2
|
import { B, Ctx } from '@ctx-core/object'
|
|
3
3
|
export declare const sticky_scroll_active__:B<sticky_scroll_active__T>
|
|
4
4
|
export type sticky_scroll_active_T = Record<string, boolean>
|
package/COMMIT_EDITMSG
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|