@zag-js/toast 0.10.2 → 0.10.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/dist/index.d.ts CHANGED
@@ -1,18 +1,13 @@
1
- import { Toaster } from './toast.types.js';
2
- export { GroupMachineContext, MachineContext, MachineState, Placement, Service, ToastOptions, Type } from './toast.types.js';
3
- import { groupConnect } from './toast-group.connect.js';
4
- import { groupMachine } from './toast-group.machine.js';
5
- export { createToastMachine as createMachine } from './toast.machine.js';
6
- export { anatomy } from './toast.anatomy.js';
7
- export { connect } from './toast.connect.js';
8
- import '@zag-js/core';
9
- import '@zag-js/types';
10
- import '@zag-js/anatomy';
11
-
12
- declare const group: {
1
+ import { Toaster } from './toast.types';
2
+ import { groupConnect } from "./toast-group.connect";
3
+ import { groupMachine } from "./toast-group.machine";
4
+ import { createToastMachine as createMachine } from "./toast.machine";
5
+ export { anatomy } from "./toast.anatomy";
6
+ export { connect } from "./toast.connect";
7
+ export type { GroupMachineContext, MachineContext, MachineState, Placement, Service, ToastOptions, Type, } from "./toast.types";
8
+ export { createMachine };
9
+ export declare const group: {
13
10
  connect: typeof groupConnect;
14
11
  machine: typeof groupMachine;
15
12
  };
16
- declare function api(): Toaster | undefined;
17
-
18
- export { api, group };
13
+ export declare function api(): Toaster | undefined;