@tempots/ui 0.23.0-next.9 → 1.0.1
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/LICENSE.txt +202 -0
- package/index.cjs +1 -1
- package/index.d.ts +1 -0
- package/index.js +465 -444
- package/package.json +2 -3
- package/renderables/inviewport.d.ts +1 -1
- package/utils/ticker.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tempots/ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./index.cjs",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -40,7 +40,6 @@
|
|
|
40
40
|
"@floating-ui/dom": "^1.6.7"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@tempots/
|
|
44
|
-
"@tempots/std": "0.16.0"
|
|
43
|
+
"@tempots/std": "0.17.0"
|
|
45
44
|
}
|
|
46
45
|
}
|
|
@@ -27,4 +27,4 @@ export declare const InViewport: (mode: InViewportMode, fn: (value: Signal<boole
|
|
|
27
27
|
* @returns The result of executing the `then` function or the `otherwise` function.
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
30
|
-
export declare const WhenInViewport: (mode: InViewportMode, then: TNode, otherwise?: TNode) => Renderable;
|
|
30
|
+
export declare const WhenInViewport: (mode: InViewportMode, then: () => TNode, otherwise?: () => TNode) => Renderable;
|