@ctx-core/window 15.0.112 → 15.0.115

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,28 @@
1
1
  # @ctx-core/window
2
2
 
3
+ ## 15.0.115
4
+
5
+ ### Patch Changes
6
+
7
+ - @ctx-core/dom: ^14.1.57 -> ^14.1.58
8
+
9
+ ## 15.0.114
10
+
11
+ ### Patch Changes
12
+
13
+ - @ctx-core/function: ^21.18.0 -> ^21.19.0
14
+ - Updated dependencies
15
+ - @ctx-core/dom@14.1.57
16
+ - @ctx-core/nanostores@6.0.1
17
+ - @ctx-core/object@28.0.4
18
+
19
+ ## 15.0.113
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+ - @ctx-core/nanostores@6.0.0
25
+
3
26
  ## 15.0.112
4
27
 
5
28
  ### Patch Changes
package/COMMIT_EDITMSG CHANGED
@@ -1,3 +1,2 @@
1
1
 
2
2
 
3
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/window",
3
- "version": "15.0.112",
3
+ "version": "15.0.115",
4
4
  "description": "ctx-core window",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -24,13 +24,13 @@
24
24
  "./package.json": "./package.json"
25
25
  },
26
26
  "dependencies": {
27
- "@ctx-core/dom": "^14.1.56",
28
- "@ctx-core/function": "^21.18.0",
29
- "@ctx-core/nanostores": "^5.2.9",
30
- "@ctx-core/object": "^28.0.3"
27
+ "@ctx-core/dom": "^14.1.58",
28
+ "@ctx-core/function": "^21.19.0",
29
+ "@ctx-core/nanostores": "^6.0.1",
30
+ "@ctx-core/object": "^28.0.4"
31
31
  },
32
32
  "devDependencies": {
33
- "c8": "^8.0.0",
33
+ "c8": "^8.0.1",
34
34
  "check-dts": "^0.7.2",
35
35
  "tsx": "^3.12.7",
36
36
  "typescript": "next",
@@ -1,4 +1,4 @@
1
- import { nullish__check_ } from '@ctx-core/function'
1
+ import { nullish__none_ } from '@ctx-core/function'
2
2
  import { val__be_computed_pair_ } from '@ctx-core/nanostores'
3
3
  import { window_location_ } from '../window_location/index.js'
4
4
  /** @typedef {import('@ctx-core/object').Ctx}Ctx */
@@ -7,7 +7,7 @@ export const [
7
7
  hostname$_,
8
8
  hostname_,
9
9
  ] = val__be_computed_pair_('hostname$_', ctx=>
10
- nullish__check_([window_location_(ctx)], window_location=>
10
+ nullish__none_([window_location_(ctx)], window_location=>
11
11
  window_location.hostname))
12
12
  export {
13
13
  hostname$_ as hostname__,
@@ -1,4 +1,4 @@
1
- import { nullish__check_ } from '@ctx-core/function'
1
+ import { nullish__none_ } from '@ctx-core/function'
2
2
  import { val__be_computed_pair_ } from '@ctx-core/nanostores'
3
3
  import { window_location_ } from '../window_location/index.js'
4
4
  /** @typedef {import('@ctx-core/object').Ctx}Ctx */
@@ -7,7 +7,7 @@ export const [
7
7
  pathname$_,
8
8
  pathname_,
9
9
  ] = val__be_computed_pair_('pathname$_', ctx=>
10
- nullish__check_([window_location_(ctx)], window_location=>
10
+ nullish__none_([window_location_(ctx)], window_location=>
11
11
  window_location.pathname))
12
12
  export {
13
13
  pathname$_ as pathname__,