@zag-js/toast 0.75.0 → 0.77.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/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +8 -8
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CommonProperties, Direction, PropTypes, DirectionProperty,
|
|
1
|
+
import { CommonProperties, Direction, RequiredBy, PropTypes, DirectionProperty, NormalizeProps } from '@zag-js/types';
|
|
2
2
|
import * as _zag_js_core from '@zag-js/core';
|
|
3
3
|
import { Machine, StateMachine } from '@zag-js/core';
|
|
4
4
|
import * as _zag_js_anatomy from '@zag-js/anatomy';
|
|
@@ -302,4 +302,4 @@ declare const group: {
|
|
|
302
302
|
machine: typeof groupMachine;
|
|
303
303
|
};
|
|
304
304
|
|
|
305
|
-
export { type ActionOptions, type MachineApi as Api, type GenericOptions, type GroupMachineApi as GroupApi, type GroupMachineContext, type GroupProps, type GroupService, type GroupState, type MachineContext, type Options, type Placement, type PromiseOptions, type Service, type Status, type StatusChangeDetails, type Type, anatomy, connect, createToastMachine as createMachine, group };
|
|
305
|
+
export { type ActionOptions, type MachineApi as Api, type GenericOptions, type GroupMachineApi as GroupApi, type UserDefinedGroupContext as GroupMachineContext, type GroupProps, type GroupService, type GroupState, type MachineContext, type Options, type Placement, type PromiseOptions, type Service, type Status, type StatusChangeDetails, type Type, anatomy, connect, createToastMachine as createMachine, group };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CommonProperties, Direction, PropTypes, DirectionProperty,
|
|
1
|
+
import { CommonProperties, Direction, RequiredBy, PropTypes, DirectionProperty, NormalizeProps } from '@zag-js/types';
|
|
2
2
|
import * as _zag_js_core from '@zag-js/core';
|
|
3
3
|
import { Machine, StateMachine } from '@zag-js/core';
|
|
4
4
|
import * as _zag_js_anatomy from '@zag-js/anatomy';
|
|
@@ -302,4 +302,4 @@ declare const group: {
|
|
|
302
302
|
machine: typeof groupMachine;
|
|
303
303
|
};
|
|
304
304
|
|
|
305
|
-
export { type ActionOptions, type MachineApi as Api, type GenericOptions, type GroupMachineApi as GroupApi, type GroupMachineContext, type GroupProps, type GroupService, type GroupState, type MachineContext, type Options, type Placement, type PromiseOptions, type Service, type Status, type StatusChangeDetails, type Type, anatomy, connect, createToastMachine as createMachine, group };
|
|
305
|
+
export { type ActionOptions, type MachineApi as Api, type GenericOptions, type GroupMachineApi as GroupApi, type UserDefinedGroupContext as GroupMachineContext, type GroupProps, type GroupService, type GroupState, type MachineContext, type Options, type Placement, type PromiseOptions, type Service, type Status, type StatusChangeDetails, type Type, anatomy, connect, createToastMachine as createMachine, group };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/toast",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.77.0",
|
|
4
4
|
"description": "Core logic for the toast widget implemented as a state machine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"js",
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
"url": "https://github.com/chakra-ui/zag/issues"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@zag-js/anatomy": "0.
|
|
30
|
-
"@zag-js/core": "0.
|
|
31
|
-
"@zag-js/dom-query": "0.
|
|
32
|
-
"@zag-js/dismissable": "0.
|
|
33
|
-
"@zag-js/dom-event": "0.
|
|
34
|
-
"@zag-js/utils": "0.
|
|
35
|
-
"@zag-js/types": "0.
|
|
29
|
+
"@zag-js/anatomy": "0.77.0",
|
|
30
|
+
"@zag-js/core": "0.77.0",
|
|
31
|
+
"@zag-js/dom-query": "0.77.0",
|
|
32
|
+
"@zag-js/dismissable": "0.77.0",
|
|
33
|
+
"@zag-js/dom-event": "0.77.0",
|
|
34
|
+
"@zag-js/utils": "0.77.0",
|
|
35
|
+
"@zag-js/types": "0.77.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"clean-package": "2.2.0"
|