@zag-js/tooltip 0.0.0-dev-20220704095222 → 0.0.0-dev-20220704111810

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.
@@ -1,4 +1,4 @@
1
- import { MachineContext as Ctx } from "./tooltip.types";
1
+ import type { MachineContext as Ctx } from "./tooltip.types";
2
2
  export declare const dom: {
3
3
  getDoc: (ctx: Ctx) => Document;
4
4
  getWin: (ctx: Ctx) => Window & typeof globalThis;
@@ -1,2 +1,2 @@
1
- import { UserDefinedContext, MachineContext, MachineState } from "./tooltip.types";
1
+ import type { UserDefinedContext, MachineContext, MachineState } from "./tooltip.types";
2
2
  export declare function machine(ctx?: UserDefinedContext): import("@zag-js/core").Machine<MachineContext, MachineState, import("@zag-js/core").StateMachine.AnyEventObject>;
@@ -1,6 +1,6 @@
1
1
  import type { StateMachine as S } from "@zag-js/core";
2
- import { Placement, PositioningOptions } from "@zag-js/popper";
3
- import { RootProperties } from "@zag-js/types";
2
+ import type { Placement, PositioningOptions } from "@zag-js/popper";
3
+ import type { RootProperties } from "@zag-js/types";
4
4
  declare type ElementIds = Partial<{
5
5
  trigger: string;
6
6
  content: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zag-js/tooltip",
3
- "version": "0.0.0-dev-20220704095222",
3
+ "version": "0.0.0-dev-20220704111810",
4
4
  "description": "Core logic for the tooltip widget implemented as a state machine",
5
5
  "keywords": [
6
6
  "js",
@@ -29,10 +29,10 @@
29
29
  "url": "https://github.com/chakra-ui/zag/issues"
30
30
  },
31
31
  "dependencies": {
32
- "@zag-js/core": "0.0.0-dev-20220704095222",
33
- "@zag-js/dom-utils": "0.0.0-dev-20220704095222",
34
- "@zag-js/popper": "0.0.0-dev-20220704095222",
35
- "@zag-js/types": "0.0.0-dev-20220704095222"
32
+ "@zag-js/core": "0.0.0-dev-20220704111810",
33
+ "@zag-js/dom-utils": "0.0.0-dev-20220704111810",
34
+ "@zag-js/popper": "0.0.0-dev-20220704111810",
35
+ "@zag-js/types": "0.0.0-dev-20220704111810"
36
36
  },
37
37
  "scripts": {
38
38
  "build:fast": "zag build",