@ctx-core/scroll 17.0.2 → 17.0.5

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 CHANGED
@@ -1,5 +1,24 @@
1
1
  # @ctx-core/scroll
2
2
 
3
+ ## 17.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - update dependencies
8
+
9
+ ## 17.0.4
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+ - @ctx-core/nanostores@1.0.0
15
+
16
+ ## 17.0.3
17
+
18
+ ### Patch Changes
19
+
20
+ - fix: sticky*scroll_active_key_active*,sticky*scroll_active_key_match*: return type: boolean
21
+
3
22
  ## 17.0.2
4
23
 
5
24
  ### Patch Changes
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/scroll",
3
- "version": "17.0.2",
3
+ "version": "17.0.5",
4
4
  "description": "ctx-core scroll",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -35,7 +35,7 @@
35
35
  "test-unit-coverage": "c8 pnpm test-unit"
36
36
  },
37
37
  "dependencies": {
38
- "@ctx-core/nanostores": "^0.7.1",
38
+ "@ctx-core/nanostores": "^1.0.2",
39
39
  "@ctx-core/object": "*"
40
40
  },
41
41
  "devDependencies": {
@@ -51,4 +51,4 @@
51
51
  "cache": "~/.npm"
52
52
  },
53
53
  "sideEffects": false
54
- }
54
+ }
@@ -5,5 +5,5 @@ export type sticky_scroll_active_T = Record<string, boolean>
5
5
  export type sticky_scroll_active$_T = WritableAtom$<sticky_scroll_active_T>
6
6
  export declare function add_sticky_scroll_active(ctx:Ctx, key:string):void;
7
7
  export declare function remove_sticky_scroll_active(ctx:Ctx, key:string):void;
8
- export declare function sticky_scroll_active_key_active_(ctx:Ctx, key:string):void;
9
- export declare function sticky_scroll_active_key_match_(ctx:Ctx, key:string, active:any):void;
8
+ export declare function sticky_scroll_active_key_active_(ctx:Ctx, key:string):boolean;
9
+ export declare function sticky_scroll_active_key_match_(ctx:Ctx, key:string, active:any):boolean;
Binary file