@geometra/core 1.40.0 → 1.41.0

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.
@@ -34,7 +34,7 @@ export declare function scrollSafeChildOffsets(absX: number, absY: number, scrol
34
34
  * numbers and bigint never coerce).
35
35
  *
36
36
  * @param value — Typically `AppOptions.width` / `height`; accepts `unknown` so corrupt runtime options
37
- * cannot slip through widened casts.
37
+ * cannot slip through widened casts. JSON `null` is non-number and yields `undefined` (unconstrained), same as omission.
38
38
  */
39
39
  export declare function finiteRootExtent(value: unknown): number | undefined;
40
40
  /**
@@ -45,7 +45,7 @@ export function scrollSafeChildOffsets(absX, absY, scrollX, scrollY) {
45
45
  * numbers and bigint never coerce).
46
46
  *
47
47
  * @param value — Typically `AppOptions.width` / `height`; accepts `unknown` so corrupt runtime options
48
- * cannot slip through widened casts.
48
+ * cannot slip through widened casts. JSON `null` is non-number and yields `undefined` (unconstrained), same as omission.
49
49
  */
50
50
  export function finiteRootExtent(value) {
51
51
  if (typeof value !== 'number' || !Number.isFinite(value))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geometra/core",
3
- "version": "1.40.0",
3
+ "version": "1.41.0",
4
4
  "description": "DOM-free UI framework core: components, signals, reconciler",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -39,7 +39,7 @@
39
39
  "check": "tsc --noEmit"
40
40
  },
41
41
  "dependencies": {
42
- "textura": "^1.40.0"
42
+ "textura": "^1.41.0"
43
43
  },
44
44
  "optionalDependencies": {
45
45
  "@napi-rs/canvas": "^0.1.65"