@geometra/core 1.40.0 → 1.42.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.
- package/dist/layout-bounds.d.ts +1 -1
- package/dist/layout-bounds.js +1 -1
- package/package.json +2 -2
package/dist/layout-bounds.d.ts
CHANGED
|
@@ -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
|
/**
|
package/dist/layout-bounds.js
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "1.42.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.
|
|
42
|
+
"textura": "^1.42.0"
|
|
43
43
|
},
|
|
44
44
|
"optionalDependencies": {
|
|
45
45
|
"@napi-rs/canvas": "^0.1.65"
|