@tempots/dom 37.0.2 → 37.0.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/package.json +3 -3
- package/renderable/text.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tempots/dom",
|
|
3
|
-
"version": "37.0.
|
|
3
|
+
"version": "37.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./index.cjs",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "Apache-2.0",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@tempots/core": "^3.0.
|
|
19
|
-
"@tempots/render": "^0.0.
|
|
18
|
+
"@tempots/core": "^3.0.1",
|
|
19
|
+
"@tempots/render": "^0.0.5"
|
|
20
20
|
},
|
|
21
21
|
"description": "Fully-typed frontend framework alternative to React and Angular",
|
|
22
22
|
"keywords": [
|
package/renderable/text.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export declare const _staticText: (text: Primitive) => Renderable;
|
|
|
7
7
|
/**
|
|
8
8
|
* @internal
|
|
9
9
|
*/
|
|
10
|
-
export declare const _signalText: (signal: Signal<
|
|
10
|
+
export declare const _signalText: <T extends Primitive>(signal: Signal<T>) => Renderable;
|
|
11
11
|
/**
|
|
12
12
|
* Creates a renderable text node.
|
|
13
13
|
*
|
|
@@ -15,4 +15,4 @@ export declare const _signalText: (signal: Signal<Primitive>) => Renderable;
|
|
|
15
15
|
* @returns A renderable text node.
|
|
16
16
|
* @public
|
|
17
17
|
*/
|
|
18
|
-
export declare const TextNode: (value: Value<
|
|
18
|
+
export declare const TextNode: <T extends Primitive>(value: Value<T>) => Renderable;
|