@tempots/ui 0.23.0-next.8 → 1.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tempots/ui",
3
- "version": "0.23.0-next.8",
3
+ "version": "1.0.0",
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/dom": "24.0.0-next.9",
44
- "@tempots/std": "0.16.0"
43
+ "@tempots/std": "0.16.1"
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;
@@ -0,0 +1,5 @@
1
+ import { Prop } from '@tempots/dom';
2
+ export declare class Ticker extends Prop<number> {
3
+ readonly tick: () => void;
4
+ }
5
+ export declare const makeTicker: (initial?: number) => Ticker;