@zag-js/toast 0.2.6 → 0.2.7

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,1045 +1,13 @@
1
- import * as _zag_js_core from '@zag-js/core';
2
- import { Machine, StateMachine } from '@zag-js/core';
3
- import { RootProperties, CommonProperties, Direction, DirectionProperty, Context, RequiredBy, PropTypes, NormalizeProps } from '@zag-js/types';
4
-
5
- type Type = "success" | "error" | "loading" | "info" | "custom";
6
- type Placement = "top-start" | "top" | "top-end" | "bottom-start" | "bottom" | "bottom-end";
7
- type SharedContext = {
8
- /**
9
- * Whether to pause toast when the user leaves the browser tab
10
- */
11
- pauseOnPageIdle?: boolean;
12
- /**
13
- * Whether to pause the toast when interacted with
14
- */
15
- pauseOnInteraction?: boolean;
16
- };
17
- type ToastOptions = {
18
- /**
19
- * The unique id of the toast
20
- */
21
- id: string;
22
- /**
23
- * The type of the toast
24
- */
25
- type: Type;
26
- /**
27
- * The placement of the toast
28
- */
29
- placement: Placement;
30
- /**
31
- * The message of the toast
32
- */
33
- title?: string;
34
- /**
35
- * The description of the toast
36
- */
37
- description?: string;
38
- /**
39
- * The duration the toast will be visible
40
- */
41
- duration: number;
42
- /**
43
- * Custom function to render the toast element.
44
- */
45
- render?: (options: RenderOptions) => any;
46
- /**
47
- * The duration for the toast to kept alive before it is removed.
48
- * Useful for exit transitions.
49
- */
50
- removeDelay?: number;
51
- /**
52
- * Function called when the toast has been closed and removed
53
- */
54
- onClose?: VoidFunction;
55
- /**
56
- * Function called when the toast is leaving
57
- */
58
- onClosing?: VoidFunction;
59
- /**
60
- * Function called when the toast is shown
61
- */
62
- onOpen?: VoidFunction;
63
- /**
64
- * Function called when the toast is updated
65
- */
66
- onUpdate?: VoidFunction;
67
- };
68
- type Options = Partial<ToastOptions>;
69
- type RenderOptions = Omit<ToastOptions, "render"> & {
70
- dismiss(): void;
71
- };
72
- type MachineContext = SharedContext & RootProperties & CommonProperties & Omit<ToastOptions, "removeDelay"> & {
73
- /**
74
- * The duration for the toast to kept alive before it is removed.
75
- * Useful for exit transitions.
76
- */
77
- removeDelay: number;
78
- /**
79
- * The document's text/writing direction.
80
- */
81
- dir?: Direction;
82
- /**
83
- * The time the toast was created
84
- */
85
- createdAt: number;
86
- /**
87
- * The time left before the toast is removed
88
- */
89
- remaining: number;
90
- };
91
- type MachineState = {
92
- value: "active" | "active:temp" | "dismissing" | "inactive" | "persist";
93
- tags: "visible" | "paused" | "updating";
94
- };
95
- type State = StateMachine.State<MachineContext, MachineState>;
96
- type Send = StateMachine.Send;
97
- type Service = Machine<MachineContext, MachineState>;
98
- type GroupPublicContext = SharedContext & DirectionProperty & CommonProperties & {
99
- /**
100
- * The gutter or spacing between toasts
101
- */
102
- gutter: string;
103
- /**
104
- * The z-index applied to each toast group
105
- */
106
- zIndex: number;
107
- /**
108
- * The maximum number of toasts that can be shown at once
109
- */
110
- max: number;
111
- /**
112
- * The offset from the safe environment edge of the viewport
113
- */
114
- offsets: string | Record<"left" | "right" | "bottom" | "top", string>;
115
- };
116
- type UserDefinedGroupContext = RequiredBy<GroupPublicContext, "id">;
117
- type GroupComputedContext = Readonly<{
118
- /**
119
- * @computed
120
- * The total number of toasts in the group
121
- */
122
- readonly count: number;
123
- }>;
124
- type GroupPrivateContext = Context<{}>;
125
- type GroupMachineContext = GroupPublicContext & GroupComputedContext & GroupPrivateContext;
126
- type GroupState = StateMachine.State<GroupMachineContext>;
127
- type GroupSend = (event: StateMachine.Event<StateMachine.AnyEventObject>) => void;
128
- type MaybeFunction<Value, Args> = Value | ((arg: Args) => Value);
129
- type PromiseOptions<Value> = {
130
- loading: ToastOptions;
131
- success: MaybeFunction<ToastOptions, Value>;
132
- error: MaybeFunction<ToastOptions, Error>;
133
- };
134
- type GroupProps = {
135
- placement: Placement;
136
- label?: string;
137
- };
138
- type Toaster = {
139
- count: number;
140
- isVisible(id: string): boolean;
141
- upsert(options: ToastOptions): string | undefined;
142
- create(options: ToastOptions): string | undefined;
143
- success(options: ToastOptions): string | undefined;
144
- error(options: ToastOptions): string | undefined;
145
- loading(options: ToastOptions): string | undefined;
146
- dismiss(id?: string | undefined): void;
147
- remove(id?: string | undefined): void;
148
- promise<T>(promise: Promise<T>, options: PromiseOptions<T>, shared?: ToastOptions): Promise<T>;
149
- };
150
-
151
- declare function groupConnect<T extends PropTypes>(state: GroupState, send: GroupSend, normalize: NormalizeProps<T>): {
152
- count: number;
153
- toasts: Service[];
154
- toastsByPlacement: Partial<Record<Placement, Service[]>>;
155
- isVisible(id: string): boolean;
156
- create(options: Options): string | undefined;
157
- upsert(options: Options): string | undefined;
158
- dismiss(id?: string): void;
159
- remove(id?: string): void;
160
- dismissByPlacement(placement: Placement): void;
161
- update(id: string, options: Options): string | undefined;
162
- loading(options: Options): string | undefined;
163
- success(options: Options): string | undefined;
164
- error(options: Options): string | undefined;
165
- promise<T_1>(promise: Promise<T_1>, options: PromiseOptions<T_1>, shared?: Options): Promise<T_1>;
166
- pause(id?: string): void;
167
- resume(id?: string): void;
168
- getGroupProps(options: GroupProps): T["element"];
169
- createPortal(): HTMLElement;
170
- subscribe(fn: (toasts: GroupMachineContext["toasts"]) => void): () => void;
171
- };
172
-
173
- declare function groupMachine(userContext: UserDefinedGroupContext): _zag_js_core.Machine<GroupMachineContext, _zag_js_core.StateMachine.StateSchema, _zag_js_core.StateMachine.AnyEventObject>;
174
-
175
- declare function createToastMachine(options?: Options): _zag_js_core.Machine<MachineContext, MachineState, _zag_js_core.StateMachine.AnyEventObject>;
176
-
177
- declare const anatomy: Omit<{
178
- parts: <U extends string>(...parts: U[]) => Omit<{
179
- parts: any;
180
- extendWith: <V extends string>(...parts: V[]) => Omit<{
181
- parts: any;
182
- extendWith: <V_1 extends string>(...parts: V_1[]) => Omit<{
183
- parts: any;
184
- extendWith: <V_2 extends string>(...parts: V_2[]) => Omit<{
185
- parts: any;
186
- extendWith: <V_3 extends string>(...parts: V_3[]) => Omit<{
187
- parts: any;
188
- extendWith: <V_4 extends string>(...parts: V_4[]) => Omit<{
189
- parts: any;
190
- extendWith: <V_5 extends string>(...parts: V_5[]) => Omit<{
191
- parts: any;
192
- extendWith: <V_6 extends string>(...parts: V_6[]) => Omit<{
193
- parts: any;
194
- extendWith: <V_7 extends string>(...parts: V_7[]) => Omit<{
195
- parts: any;
196
- extendWith: <V_8 extends string>(...parts: V_8[]) => Omit<{
197
- parts: any;
198
- extendWith: <V_9 extends string>(...parts: V_9[]) => Omit<any, "parts">;
199
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7 | V_8, {
200
- selector: string;
201
- attrs: Record<"data-scope" | "data-part", string>;
202
- }>;
203
- }, "parts">;
204
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7, {
205
- selector: string;
206
- attrs: Record<"data-scope" | "data-part", string>;
207
- }>;
208
- }, "parts">;
209
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6, {
210
- selector: string;
211
- attrs: Record<"data-scope" | "data-part", string>;
212
- }>;
213
- }, "parts">;
214
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5, {
215
- selector: string;
216
- attrs: Record<"data-scope" | "data-part", string>;
217
- }>;
218
- }, "parts">;
219
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4, {
220
- selector: string;
221
- attrs: Record<"data-scope" | "data-part", string>;
222
- }>;
223
- }, "parts">;
224
- build: () => Record<U | V | V_1 | V_2 | V_3, {
225
- selector: string;
226
- attrs: Record<"data-scope" | "data-part", string>;
227
- }>;
228
- }, "parts">;
229
- build: () => Record<U | V | V_1 | V_2, {
230
- selector: string;
231
- attrs: Record<"data-scope" | "data-part", string>;
232
- }>;
233
- }, "parts">;
234
- build: () => Record<U | V | V_1, {
235
- selector: string;
236
- attrs: Record<"data-scope" | "data-part", string>;
237
- }>;
238
- }, "parts">;
239
- build: () => Record<U | V, {
240
- selector: string;
241
- attrs: Record<"data-scope" | "data-part", string>;
242
- }>;
243
- }, "parts">;
244
- build: () => Record<U, {
245
- selector: string;
246
- attrs: Record<"data-scope" | "data-part", string>;
247
- }>;
248
- }, "parts">;
249
- extendWith: <V_10 extends string>(...parts: V_10[]) => Omit<{
250
- parts: <U extends string>(...parts: U[]) => Omit<{
251
- parts: any;
252
- extendWith: <V extends string>(...parts: V[]) => Omit<{
253
- parts: any;
254
- extendWith: <V_1 extends string>(...parts: V_1[]) => Omit<{
255
- parts: any;
256
- extendWith: <V_2 extends string>(...parts: V_2[]) => Omit<{
257
- parts: any;
258
- extendWith: <V_3 extends string>(...parts: V_3[]) => Omit<{
259
- parts: any;
260
- extendWith: <V_4 extends string>(...parts: V_4[]) => Omit<{
261
- parts: any;
262
- extendWith: <V_5 extends string>(...parts: V_5[]) => Omit<{
263
- parts: any;
264
- extendWith: <V_6 extends string>(...parts: V_6[]) => Omit<{
265
- parts: any;
266
- extendWith: <V_7 extends string>(...parts: V_7[]) => Omit<{
267
- parts: any;
268
- extendWith: <V_8 extends string>(...parts: V_8[]) => Omit<{
269
- parts: any;
270
- extendWith: <V_9 extends string>(...parts: V_9[]) => Omit<any, "parts">;
271
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7 | V_8, {
272
- selector: string;
273
- attrs: Record<"data-scope" | "data-part", string>;
274
- }>;
275
- }, "parts">;
276
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7, {
277
- selector: string;
278
- attrs: Record<"data-scope" | "data-part", string>;
279
- }>;
280
- }, "parts">;
281
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6, {
282
- selector: string;
283
- attrs: Record<"data-scope" | "data-part", string>;
284
- }>;
285
- }, "parts">;
286
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5, {
287
- selector: string;
288
- attrs: Record<"data-scope" | "data-part", string>;
289
- }>;
290
- }, "parts">;
291
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4, {
292
- selector: string;
293
- attrs: Record<"data-scope" | "data-part", string>;
294
- }>;
295
- }, "parts">;
296
- build: () => Record<U | V | V_1 | V_2 | V_3, {
297
- selector: string;
298
- attrs: Record<"data-scope" | "data-part", string>;
299
- }>;
300
- }, "parts">;
301
- build: () => Record<U | V | V_1 | V_2, {
302
- selector: string;
303
- attrs: Record<"data-scope" | "data-part", string>;
304
- }>;
305
- }, "parts">;
306
- build: () => Record<U | V | V_1, {
307
- selector: string;
308
- attrs: Record<"data-scope" | "data-part", string>;
309
- }>;
310
- }, "parts">;
311
- build: () => Record<U | V, {
312
- selector: string;
313
- attrs: Record<"data-scope" | "data-part", string>;
314
- }>;
315
- }, "parts">;
316
- build: () => Record<U, {
317
- selector: string;
318
- attrs: Record<"data-scope" | "data-part", string>;
319
- }>;
320
- }, "parts">;
321
- extendWith: <V_11 extends string>(...parts: V_11[]) => Omit<{
322
- parts: <U extends string>(...parts: U[]) => Omit<{
323
- parts: any;
324
- extendWith: <V extends string>(...parts: V[]) => Omit<{
325
- parts: any;
326
- extendWith: <V_1 extends string>(...parts: V_1[]) => Omit<{
327
- parts: any;
328
- extendWith: <V_2 extends string>(...parts: V_2[]) => Omit<{
329
- parts: any;
330
- extendWith: <V_3 extends string>(...parts: V_3[]) => Omit<{
331
- parts: any;
332
- extendWith: <V_4 extends string>(...parts: V_4[]) => Omit<{
333
- parts: any;
334
- extendWith: <V_5 extends string>(...parts: V_5[]) => Omit<{
335
- parts: any;
336
- extendWith: <V_6 extends string>(...parts: V_6[]) => Omit<{
337
- parts: any;
338
- extendWith: <V_7 extends string>(...parts: V_7[]) => Omit<{
339
- parts: any;
340
- extendWith: <V_8 extends string>(...parts: V_8[]) => Omit<{
341
- parts: any;
342
- extendWith: <V_9 extends string>(...parts: V_9[]) => Omit<any, "parts">;
343
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7 | V_8, {
344
- selector: string;
345
- attrs: Record<"data-scope" | "data-part", string>;
346
- }>;
347
- }, "parts">;
348
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7, {
349
- selector: string;
350
- attrs: Record<"data-scope" | "data-part", string>;
351
- }>;
352
- }, "parts">;
353
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6, {
354
- selector: string;
355
- attrs: Record<"data-scope" | "data-part", string>;
356
- }>;
357
- }, "parts">;
358
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5, {
359
- selector: string;
360
- attrs: Record<"data-scope" | "data-part", string>;
361
- }>;
362
- }, "parts">;
363
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4, {
364
- selector: string;
365
- attrs: Record<"data-scope" | "data-part", string>;
366
- }>;
367
- }, "parts">;
368
- build: () => Record<U | V | V_1 | V_2 | V_3, {
369
- selector: string;
370
- attrs: Record<"data-scope" | "data-part", string>;
371
- }>;
372
- }, "parts">;
373
- build: () => Record<U | V | V_1 | V_2, {
374
- selector: string;
375
- attrs: Record<"data-scope" | "data-part", string>;
376
- }>;
377
- }, "parts">;
378
- build: () => Record<U | V | V_1, {
379
- selector: string;
380
- attrs: Record<"data-scope" | "data-part", string>;
381
- }>;
382
- }, "parts">;
383
- build: () => Record<U | V, {
384
- selector: string;
385
- attrs: Record<"data-scope" | "data-part", string>;
386
- }>;
387
- }, "parts">;
388
- build: () => Record<U, {
389
- selector: string;
390
- attrs: Record<"data-scope" | "data-part", string>;
391
- }>;
392
- }, "parts">;
393
- extendWith: <V_12 extends string>(...parts: V_12[]) => Omit<{
394
- parts: <U extends string>(...parts: U[]) => Omit<{
395
- parts: any;
396
- extendWith: <V extends string>(...parts: V[]) => Omit<{
397
- parts: any;
398
- extendWith: <V_1 extends string>(...parts: V_1[]) => Omit<{
399
- parts: any;
400
- extendWith: <V_2 extends string>(...parts: V_2[]) => Omit<{
401
- parts: any;
402
- extendWith: <V_3 extends string>(...parts: V_3[]) => Omit<{
403
- parts: any;
404
- extendWith: <V_4 extends string>(...parts: V_4[]) => Omit<{
405
- parts: any;
406
- extendWith: <V_5 extends string>(...parts: V_5[]) => Omit<{
407
- parts: any;
408
- extendWith: <V_6 extends string>(...parts: V_6[]) => Omit<{
409
- parts: any;
410
- extendWith: <V_7 extends string>(...parts: V_7[]) => Omit<{
411
- parts: any;
412
- extendWith: <V_8 extends string>(...parts: V_8[]) => Omit<{
413
- parts: any;
414
- extendWith: <V_9 extends string>(...parts: V_9[]) => Omit<any, "parts">;
415
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7 | V_8, {
416
- selector: string;
417
- attrs: Record<"data-scope" | "data-part", string>;
418
- }>;
419
- }, "parts">;
420
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7, {
421
- selector: string;
422
- attrs: Record<"data-scope" | "data-part", string>;
423
- }>;
424
- }, "parts">;
425
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6, {
426
- selector: string;
427
- attrs: Record<"data-scope" | "data-part", string>;
428
- }>;
429
- }, "parts">;
430
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5, {
431
- selector: string;
432
- attrs: Record<"data-scope" | "data-part", string>;
433
- }>;
434
- }, "parts">;
435
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4, {
436
- selector: string;
437
- attrs: Record<"data-scope" | "data-part", string>;
438
- }>;
439
- }, "parts">;
440
- build: () => Record<U | V | V_1 | V_2 | V_3, {
441
- selector: string;
442
- attrs: Record<"data-scope" | "data-part", string>;
443
- }>;
444
- }, "parts">;
445
- build: () => Record<U | V | V_1 | V_2, {
446
- selector: string;
447
- attrs: Record<"data-scope" | "data-part", string>;
448
- }>;
449
- }, "parts">;
450
- build: () => Record<U | V | V_1, {
451
- selector: string;
452
- attrs: Record<"data-scope" | "data-part", string>;
453
- }>;
454
- }, "parts">;
455
- build: () => Record<U | V, {
456
- selector: string;
457
- attrs: Record<"data-scope" | "data-part", string>;
458
- }>;
459
- }, "parts">;
460
- build: () => Record<U, {
461
- selector: string;
462
- attrs: Record<"data-scope" | "data-part", string>;
463
- }>;
464
- }, "parts">;
465
- extendWith: <V_13 extends string>(...parts: V_13[]) => Omit<{
466
- parts: <U extends string>(...parts: U[]) => Omit<{
467
- parts: any;
468
- extendWith: <V extends string>(...parts: V[]) => Omit<{
469
- parts: any;
470
- extendWith: <V_1 extends string>(...parts: V_1[]) => Omit<{
471
- parts: any;
472
- extendWith: <V_2 extends string>(...parts: V_2[]) => Omit<{
473
- parts: any;
474
- extendWith: <V_3 extends string>(...parts: V_3[]) => Omit<{
475
- parts: any;
476
- extendWith: <V_4 extends string>(...parts: V_4[]) => Omit<{
477
- parts: any;
478
- extendWith: <V_5 extends string>(...parts: V_5[]) => Omit<{
479
- parts: any;
480
- extendWith: <V_6 extends string>(...parts: V_6[]) => Omit<{
481
- parts: any;
482
- extendWith: <V_7 extends string>(...parts: V_7[]) => Omit<{
483
- parts: any;
484
- extendWith: <V_8 extends string>(...parts: V_8[]) => Omit<{
485
- parts: any;
486
- extendWith: <V_9 extends string>(...parts: V_9[]) => Omit<any, "parts">;
487
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7 | V_8, {
488
- selector: string;
489
- attrs: Record<"data-scope" | "data-part", string>;
490
- }>;
491
- }, "parts">;
492
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7, {
493
- selector: string;
494
- attrs: Record<"data-scope" | "data-part", string>;
495
- }>;
496
- }, "parts">;
497
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6, {
498
- selector: string;
499
- attrs: Record<"data-scope" | "data-part", string>;
500
- }>;
501
- }, "parts">;
502
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5, {
503
- selector: string;
504
- attrs: Record<"data-scope" | "data-part", string>;
505
- }>;
506
- }, "parts">;
507
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4, {
508
- selector: string;
509
- attrs: Record<"data-scope" | "data-part", string>;
510
- }>;
511
- }, "parts">;
512
- build: () => Record<U | V | V_1 | V_2 | V_3, {
513
- selector: string;
514
- attrs: Record<"data-scope" | "data-part", string>;
515
- }>;
516
- }, "parts">;
517
- build: () => Record<U | V | V_1 | V_2, {
518
- selector: string;
519
- attrs: Record<"data-scope" | "data-part", string>;
520
- }>;
521
- }, "parts">;
522
- build: () => Record<U | V | V_1, {
523
- selector: string;
524
- attrs: Record<"data-scope" | "data-part", string>;
525
- }>;
526
- }, "parts">;
527
- build: () => Record<U | V, {
528
- selector: string;
529
- attrs: Record<"data-scope" | "data-part", string>;
530
- }>;
531
- }, "parts">;
532
- build: () => Record<U, {
533
- selector: string;
534
- attrs: Record<"data-scope" | "data-part", string>;
535
- }>;
536
- }, "parts">;
537
- extendWith: <V_14 extends string>(...parts: V_14[]) => Omit<{
538
- parts: <U extends string>(...parts: U[]) => Omit<{
539
- parts: any;
540
- extendWith: <V extends string>(...parts: V[]) => Omit<{
541
- parts: any;
542
- extendWith: <V_1 extends string>(...parts: V_1[]) => Omit<{
543
- parts: any;
544
- extendWith: <V_2 extends string>(...parts: V_2[]) => Omit<{
545
- parts: any;
546
- extendWith: <V_3 extends string>(...parts: V_3[]) => Omit<{
547
- parts: any;
548
- extendWith: <V_4 extends string>(...parts: V_4[]) => Omit<{
549
- parts: any;
550
- extendWith: <V_5 extends string>(...parts: V_5[]) => Omit<{
551
- parts: any;
552
- extendWith: <V_6 extends string>(...parts: V_6[]) => Omit<{
553
- parts: any;
554
- extendWith: <V_7 extends string>(...parts: V_7[]) => Omit<{
555
- parts: any;
556
- extendWith: <V_8 extends string>(...parts: V_8[]) => Omit<{
557
- parts: any;
558
- extendWith: <V_9 extends string>(...parts: V_9[]) => Omit<any, "parts">;
559
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7 | V_8, {
560
- selector: string;
561
- attrs: Record<"data-scope" | "data-part", string>;
562
- }>;
563
- }, "parts">;
564
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7, {
565
- selector: string;
566
- attrs: Record<"data-scope" | "data-part", string>;
567
- }>;
568
- }, "parts">;
569
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6, {
570
- selector: string;
571
- attrs: Record<"data-scope" | "data-part", string>;
572
- }>;
573
- }, "parts">;
574
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5, {
575
- selector: string;
576
- attrs: Record<"data-scope" | "data-part", string>;
577
- }>;
578
- }, "parts">;
579
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4, {
580
- selector: string;
581
- attrs: Record<"data-scope" | "data-part", string>;
582
- }>;
583
- }, "parts">;
584
- build: () => Record<U | V | V_1 | V_2 | V_3, {
585
- selector: string;
586
- attrs: Record<"data-scope" | "data-part", string>;
587
- }>;
588
- }, "parts">;
589
- build: () => Record<U | V | V_1 | V_2, {
590
- selector: string;
591
- attrs: Record<"data-scope" | "data-part", string>;
592
- }>;
593
- }, "parts">;
594
- build: () => Record<U | V | V_1, {
595
- selector: string;
596
- attrs: Record<"data-scope" | "data-part", string>;
597
- }>;
598
- }, "parts">;
599
- build: () => Record<U | V, {
600
- selector: string;
601
- attrs: Record<"data-scope" | "data-part", string>;
602
- }>;
603
- }, "parts">;
604
- build: () => Record<U, {
605
- selector: string;
606
- attrs: Record<"data-scope" | "data-part", string>;
607
- }>;
608
- }, "parts">;
609
- extendWith: <V_15 extends string>(...parts: V_15[]) => Omit<{
610
- parts: <U extends string>(...parts: U[]) => Omit<{
611
- parts: any;
612
- extendWith: <V extends string>(...parts: V[]) => Omit<{
613
- parts: any;
614
- extendWith: <V_1 extends string>(...parts: V_1[]) => Omit<{
615
- parts: any;
616
- extendWith: <V_2 extends string>(...parts: V_2[]) => Omit<{
617
- parts: any;
618
- extendWith: <V_3 extends string>(...parts: V_3[]) => Omit<{
619
- parts: any;
620
- extendWith: <V_4 extends string>(...parts: V_4[]) => Omit<{
621
- parts: any;
622
- extendWith: <V_5 extends string>(...parts: V_5[]) => Omit<{
623
- parts: any;
624
- extendWith: <V_6 extends string>(...parts: V_6[]) => Omit<{
625
- parts: any;
626
- extendWith: <V_7 extends string>(...parts: V_7[]) => Omit<{
627
- parts: any;
628
- extendWith: <V_8 extends string>(...parts: V_8[]) => Omit<{
629
- parts: any;
630
- extendWith: <V_9 extends string>(...parts: V_9[]) => Omit<any, "parts">;
631
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7 | V_8, {
632
- selector: string;
633
- attrs: Record<"data-scope" | "data-part", string>;
634
- }>;
635
- }, "parts">;
636
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7, {
637
- selector: string;
638
- attrs: Record<"data-scope" | "data-part", string>;
639
- }>;
640
- }, "parts">;
641
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6, {
642
- selector: string;
643
- attrs: Record<"data-scope" | "data-part", string>;
644
- }>;
645
- }, "parts">;
646
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5, {
647
- selector: string;
648
- attrs: Record<"data-scope" | "data-part", string>;
649
- }>;
650
- }, "parts">;
651
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4, {
652
- selector: string;
653
- attrs: Record<"data-scope" | "data-part", string>;
654
- }>;
655
- }, "parts">;
656
- build: () => Record<U | V | V_1 | V_2 | V_3, {
657
- selector: string;
658
- attrs: Record<"data-scope" | "data-part", string>;
659
- }>;
660
- }, "parts">;
661
- build: () => Record<U | V | V_1 | V_2, {
662
- selector: string;
663
- attrs: Record<"data-scope" | "data-part", string>;
664
- }>;
665
- }, "parts">;
666
- build: () => Record<U | V | V_1, {
667
- selector: string;
668
- attrs: Record<"data-scope" | "data-part", string>;
669
- }>;
670
- }, "parts">;
671
- build: () => Record<U | V, {
672
- selector: string;
673
- attrs: Record<"data-scope" | "data-part", string>;
674
- }>;
675
- }, "parts">;
676
- build: () => Record<U, {
677
- selector: string;
678
- attrs: Record<"data-scope" | "data-part", string>;
679
- }>;
680
- }, "parts">;
681
- extendWith: <V_16 extends string>(...parts: V_16[]) => Omit<{
682
- parts: <U extends string>(...parts: U[]) => Omit<{
683
- parts: any;
684
- extendWith: <V extends string>(...parts: V[]) => Omit<{
685
- parts: any;
686
- extendWith: <V_1 extends string>(...parts: V_1[]) => Omit<{
687
- parts: any;
688
- extendWith: <V_2 extends string>(...parts: V_2[]) => Omit<{
689
- parts: any;
690
- extendWith: <V_3 extends string>(...parts: V_3[]) => Omit<{
691
- parts: any;
692
- extendWith: <V_4 extends string>(...parts: V_4[]) => Omit<{
693
- parts: any;
694
- extendWith: <V_5 extends string>(...parts: V_5[]) => Omit<{
695
- parts: any;
696
- extendWith: <V_6 extends string>(...parts: V_6[]) => Omit<{
697
- parts: any;
698
- extendWith: <V_7 extends string>(...parts: V_7[]) => Omit<{
699
- parts: any;
700
- extendWith: <V_8 extends string>(...parts: V_8[]) => Omit<{
701
- parts: any;
702
- extendWith: <V_9 extends string>(...parts: V_9[]) => Omit<any, "parts">;
703
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7 | V_8, {
704
- selector: string;
705
- attrs: Record<"data-scope" | "data-part", string>;
706
- }>;
707
- }, "parts">;
708
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7, {
709
- selector: string;
710
- attrs: Record<"data-scope" | "data-part", string>;
711
- }>;
712
- }, "parts">;
713
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6, {
714
- selector: string;
715
- attrs: Record<"data-scope" | "data-part", string>;
716
- }>;
717
- }, "parts">;
718
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5, {
719
- selector: string;
720
- attrs: Record<"data-scope" | "data-part", string>;
721
- }>;
722
- }, "parts">;
723
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4, {
724
- selector: string;
725
- attrs: Record<"data-scope" | "data-part", string>;
726
- }>;
727
- }, "parts">;
728
- build: () => Record<U | V | V_1 | V_2 | V_3, {
729
- selector: string;
730
- attrs: Record<"data-scope" | "data-part", string>;
731
- }>;
732
- }, "parts">;
733
- build: () => Record<U | V | V_1 | V_2, {
734
- selector: string;
735
- attrs: Record<"data-scope" | "data-part", string>;
736
- }>;
737
- }, "parts">;
738
- build: () => Record<U | V | V_1, {
739
- selector: string;
740
- attrs: Record<"data-scope" | "data-part", string>;
741
- }>;
742
- }, "parts">;
743
- build: () => Record<U | V, {
744
- selector: string;
745
- attrs: Record<"data-scope" | "data-part", string>;
746
- }>;
747
- }, "parts">;
748
- build: () => Record<U, {
749
- selector: string;
750
- attrs: Record<"data-scope" | "data-part", string>;
751
- }>;
752
- }, "parts">;
753
- extendWith: <V_17 extends string>(...parts: V_17[]) => Omit<{
754
- parts: <U extends string>(...parts: U[]) => Omit<{
755
- parts: any;
756
- extendWith: <V extends string>(...parts: V[]) => Omit<{
757
- parts: any;
758
- extendWith: <V_1 extends string>(...parts: V_1[]) => Omit<{
759
- parts: any;
760
- extendWith: <V_2 extends string>(...parts: V_2[]) => Omit<{
761
- parts: any;
762
- extendWith: <V_3 extends string>(...parts: V_3[]) => Omit<{
763
- parts: any;
764
- extendWith: <V_4 extends string>(...parts: V_4[]) => Omit<{
765
- parts: any;
766
- extendWith: <V_5 extends string>(...parts: V_5[]) => Omit<{
767
- parts: any;
768
- extendWith: <V_6 extends string>(...parts: V_6[]) => Omit<{
769
- parts: any;
770
- extendWith: <V_7 extends string>(...parts: V_7[]) => Omit<{
771
- parts: any;
772
- extendWith: <V_8 extends string>(...parts: V_8[]) => Omit<{
773
- parts: any;
774
- extendWith: <V_9 extends string>(...parts: V_9[]) => Omit<any, "parts">;
775
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7 | V_8, {
776
- selector: string;
777
- attrs: Record<"data-scope" | "data-part", string>;
778
- }>;
779
- }, "parts">;
780
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7, {
781
- selector: string;
782
- attrs: Record<"data-scope" | "data-part", string>;
783
- }>;
784
- }, "parts">;
785
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6, {
786
- selector: string;
787
- attrs: Record<"data-scope" | "data-part", string>;
788
- }>;
789
- }, "parts">;
790
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5, {
791
- selector: string;
792
- attrs: Record<"data-scope" | "data-part", string>;
793
- }>;
794
- }, "parts">;
795
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4, {
796
- selector: string;
797
- attrs: Record<"data-scope" | "data-part", string>;
798
- }>;
799
- }, "parts">;
800
- build: () => Record<U | V | V_1 | V_2 | V_3, {
801
- selector: string;
802
- attrs: Record<"data-scope" | "data-part", string>;
803
- }>;
804
- }, "parts">;
805
- build: () => Record<U | V | V_1 | V_2, {
806
- selector: string;
807
- attrs: Record<"data-scope" | "data-part", string>;
808
- }>;
809
- }, "parts">;
810
- build: () => Record<U | V | V_1, {
811
- selector: string;
812
- attrs: Record<"data-scope" | "data-part", string>;
813
- }>;
814
- }, "parts">;
815
- build: () => Record<U | V, {
816
- selector: string;
817
- attrs: Record<"data-scope" | "data-part", string>;
818
- }>;
819
- }, "parts">;
820
- build: () => Record<U, {
821
- selector: string;
822
- attrs: Record<"data-scope" | "data-part", string>;
823
- }>;
824
- }, "parts">;
825
- extendWith: <V_18 extends string>(...parts: V_18[]) => Omit<{
826
- parts: <U extends string>(...parts: U[]) => Omit<{
827
- parts: any;
828
- extendWith: <V extends string>(...parts: V[]) => Omit<{
829
- parts: any;
830
- extendWith: <V_1 extends string>(...parts: V_1[]) => Omit<{
831
- parts: any;
832
- extendWith: <V_2 extends string>(...parts: V_2[]) => Omit<{
833
- parts: any;
834
- extendWith: <V_3 extends string>(...parts: V_3[]) => Omit<{
835
- parts: any;
836
- extendWith: <V_4 extends string>(...parts: V_4[]) => Omit<{
837
- parts: any;
838
- extendWith: <V_5 extends string>(...parts: V_5[]) => Omit<{
839
- parts: any;
840
- extendWith: <V_6 extends string>(...parts: V_6[]) => Omit<{
841
- parts: any;
842
- extendWith: <V_7 extends string>(...parts: V_7[]) => Omit<{
843
- parts: any;
844
- extendWith: <V_8 extends string>(...parts: V_8[]) => Omit<{
845
- parts: any;
846
- extendWith: <V_9 extends string>(...parts: V_9[]) => Omit<any, "parts">;
847
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7 | V_8, {
848
- selector: string;
849
- attrs: Record<"data-scope" | "data-part", string>;
850
- }>;
851
- }, "parts">;
852
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7, {
853
- selector: string;
854
- attrs: Record<"data-scope" | "data-part", string>;
855
- }>;
856
- }, "parts">;
857
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6, {
858
- selector: string;
859
- attrs: Record<"data-scope" | "data-part", string>;
860
- }>;
861
- }, "parts">;
862
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5, {
863
- selector: string;
864
- attrs: Record<"data-scope" | "data-part", string>;
865
- }>;
866
- }, "parts">;
867
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4, {
868
- selector: string;
869
- attrs: Record<"data-scope" | "data-part", string>;
870
- }>;
871
- }, "parts">;
872
- build: () => Record<U | V | V_1 | V_2 | V_3, {
873
- selector: string;
874
- attrs: Record<"data-scope" | "data-part", string>;
875
- }>;
876
- }, "parts">;
877
- build: () => Record<U | V | V_1 | V_2, {
878
- selector: string;
879
- attrs: Record<"data-scope" | "data-part", string>;
880
- }>;
881
- }, "parts">;
882
- build: () => Record<U | V | V_1, {
883
- selector: string;
884
- attrs: Record<"data-scope" | "data-part", string>;
885
- }>;
886
- }, "parts">;
887
- build: () => Record<U | V, {
888
- selector: string;
889
- attrs: Record<"data-scope" | "data-part", string>;
890
- }>;
891
- }, "parts">;
892
- build: () => Record<U, {
893
- selector: string;
894
- attrs: Record<"data-scope" | "data-part", string>;
895
- }>;
896
- }, "parts">;
897
- extendWith: <V_19 extends string>(...parts: V_19[]) => Omit<{
898
- parts: <U extends string>(...parts: U[]) => Omit<{
899
- parts: any;
900
- extendWith: <V extends string>(...parts: V[]) => Omit<{
901
- parts: any;
902
- extendWith: <V_1 extends string>(...parts: V_1[]) => Omit<{
903
- parts: any;
904
- extendWith: <V_2 extends string>(...parts: V_2[]) => Omit<{
905
- parts: any;
906
- extendWith: <V_3 extends string>(...parts: V_3[]) => Omit<{
907
- parts: any;
908
- extendWith: <V_4 extends string>(...parts: V_4[]) => Omit<{
909
- parts: any;
910
- extendWith: <V_5 extends string>(...parts: V_5[]) => Omit<{
911
- parts: any;
912
- extendWith: <V_6 extends string>(...parts: V_6[]) => Omit<{
913
- parts: any;
914
- extendWith: <V_7 extends string>(...parts: V_7[]) => Omit<{
915
- parts: any;
916
- extendWith: <V_8 extends string>(...parts: V_8[]) => Omit<{
917
- parts: any;
918
- extendWith: <V_9 extends string>(...parts: V_9[]) => Omit<any, "parts">;
919
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7 | V_8, {
920
- selector: string;
921
- attrs: Record<"data-scope" | "data-part", string>;
922
- }>;
923
- }, "parts">;
924
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6 | V_7, {
925
- selector: string;
926
- attrs: Record<"data-scope" | "data-part", string>;
927
- }>;
928
- }, "parts">;
929
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5 | V_6, {
930
- selector: string;
931
- attrs: Record<"data-scope" | "data-part", string>;
932
- }>;
933
- }, "parts">;
934
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4 | V_5, {
935
- selector: string;
936
- attrs: Record<"data-scope" | "data-part", string>;
937
- }>;
938
- }, "parts">;
939
- build: () => Record<U | V | V_1 | V_2 | V_3 | V_4, {
940
- selector: string;
941
- attrs: Record<"data-scope" | "data-part", string>;
942
- }>;
943
- }, "parts">;
944
- build: () => Record<U | V | V_1 | V_2 | V_3, {
945
- selector: string;
946
- attrs: Record<"data-scope" | "data-part", string>;
947
- }>;
948
- }, "parts">;
949
- build: () => Record<U | V | V_1 | V_2, {
950
- selector: string;
951
- attrs: Record<"data-scope" | "data-part", string>;
952
- }>;
953
- }, "parts">;
954
- build: () => Record<U | V | V_1, {
955
- selector: string;
956
- attrs: Record<"data-scope" | "data-part", string>;
957
- }>;
958
- }, "parts">;
959
- build: () => Record<U | V, {
960
- selector: string;
961
- attrs: Record<"data-scope" | "data-part", string>;
962
- }>;
963
- }, "parts">;
964
- build: () => Record<U, {
965
- selector: string;
966
- attrs: Record<"data-scope" | "data-part", string>;
967
- }>;
968
- }, "parts">;
969
- extendWith: <V_20 extends string>(...parts: V_20[]) => Omit<any, "parts">;
970
- build: () => Record<"group" | "root" | "title" | "description" | "closeTrigger" | V_10 | V_11 | V_12 | V_13 | V_14 | V_15 | V_16 | V_17 | V_18 | V_19, {
971
- selector: string;
972
- attrs: Record<"data-scope" | "data-part", string>;
973
- }>;
974
- }, "parts">;
975
- build: () => Record<"group" | "root" | "title" | "description" | "closeTrigger" | V_10 | V_11 | V_12 | V_13 | V_14 | V_15 | V_16 | V_17 | V_18, {
976
- selector: string;
977
- attrs: Record<"data-scope" | "data-part", string>;
978
- }>;
979
- }, "parts">;
980
- build: () => Record<"group" | "root" | "title" | "description" | "closeTrigger" | V_10 | V_11 | V_12 | V_13 | V_14 | V_15 | V_16 | V_17, {
981
- selector: string;
982
- attrs: Record<"data-scope" | "data-part", string>;
983
- }>;
984
- }, "parts">;
985
- build: () => Record<"group" | "root" | "title" | "description" | "closeTrigger" | V_10 | V_11 | V_12 | V_13 | V_14 | V_15 | V_16, {
986
- selector: string;
987
- attrs: Record<"data-scope" | "data-part", string>;
988
- }>;
989
- }, "parts">;
990
- build: () => Record<"group" | "root" | "title" | "description" | "closeTrigger" | V_10 | V_11 | V_12 | V_13 | V_14 | V_15, {
991
- selector: string;
992
- attrs: Record<"data-scope" | "data-part", string>;
993
- }>;
994
- }, "parts">;
995
- build: () => Record<"group" | "root" | "title" | "description" | "closeTrigger" | V_10 | V_11 | V_12 | V_13 | V_14, {
996
- selector: string;
997
- attrs: Record<"data-scope" | "data-part", string>;
998
- }>;
999
- }, "parts">;
1000
- build: () => Record<"group" | "root" | "title" | "description" | "closeTrigger" | V_10 | V_11 | V_12 | V_13, {
1001
- selector: string;
1002
- attrs: Record<"data-scope" | "data-part", string>;
1003
- }>;
1004
- }, "parts">;
1005
- build: () => Record<"group" | "root" | "title" | "description" | "closeTrigger" | V_10 | V_11 | V_12, {
1006
- selector: string;
1007
- attrs: Record<"data-scope" | "data-part", string>;
1008
- }>;
1009
- }, "parts">;
1010
- build: () => Record<"group" | "root" | "title" | "description" | "closeTrigger" | V_10 | V_11, {
1011
- selector: string;
1012
- attrs: Record<"data-scope" | "data-part", string>;
1013
- }>;
1014
- }, "parts">;
1015
- build: () => Record<"group" | "root" | "title" | "description" | "closeTrigger" | V_10, {
1016
- selector: string;
1017
- attrs: Record<"data-scope" | "data-part", string>;
1018
- }>;
1019
- }, "parts">;
1020
- build: () => Record<"group" | "root" | "title" | "description" | "closeTrigger", {
1021
- selector: string;
1022
- attrs: Record<"data-scope" | "data-part", string>;
1023
- }>;
1024
- }, "parts">;
1025
-
1026
- declare function connect<T extends PropTypes>(state: State, send: Send, normalize: NormalizeProps<T>): {
1027
- type: Type;
1028
- title: string | undefined;
1029
- description: string | undefined;
1030
- placement: Placement;
1031
- isVisible: boolean;
1032
- isPaused: boolean;
1033
- isRtl: boolean;
1034
- pause(): void;
1035
- resume(): void;
1036
- dismiss(): void;
1037
- rootProps: T["element"];
1038
- titleProps: T["element"];
1039
- descriptionProps: T["element"];
1040
- closeTriggerProps: T["button"];
1041
- render(): any;
1042
- };
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';
1043
11
 
1044
12
  declare const group: {
1045
13
  connect: typeof groupConnect;
@@ -1047,4 +15,4 @@ declare const group: {
1047
15
  };
1048
16
  declare function api(): Toaster | undefined;
1049
17
 
1050
- export { GroupMachineContext, MachineContext, MachineState, Placement, Service, ToastOptions, Type, anatomy, api, connect, createToastMachine as createMachine, group };
18
+ export { api, group };