@zag-js/clipboard 0.79.3 → 0.81.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 +6 -6
package/dist/index.d.mts
CHANGED
|
@@ -76,8 +76,8 @@ declare function connect<T extends PropTypes>(state: State, send: Send, normaliz
|
|
|
76
76
|
|
|
77
77
|
declare function machine(userContext: UserDefinedContext): _zag_js_core.Machine<MachineContext, MachineState, _zag_js_core.StateMachine.AnyEventObject>;
|
|
78
78
|
|
|
79
|
-
declare const props: ("
|
|
80
|
-
declare const contextProps: <Props extends UserDefinedContext>(props: Props) => [UserDefinedContext, Omit<Props, "
|
|
79
|
+
declare const props: ("id" | "value" | "getRootNode" | "timeout" | "ids" | "onStatusChange")[];
|
|
80
|
+
declare const contextProps: <Props extends UserDefinedContext>(props: Props) => [UserDefinedContext, Omit<Props, "id" | "value" | "getRootNode" | "timeout" | "ids" | "onStatusChange">];
|
|
81
81
|
declare const indicatorProps: "copied"[];
|
|
82
82
|
declare const splitIndicatorProps: <Props extends IndicatorProps>(props: Props) => [IndicatorProps, Omit<Props, "copied">];
|
|
83
83
|
|
package/dist/index.d.ts
CHANGED
|
@@ -76,8 +76,8 @@ declare function connect<T extends PropTypes>(state: State, send: Send, normaliz
|
|
|
76
76
|
|
|
77
77
|
declare function machine(userContext: UserDefinedContext): _zag_js_core.Machine<MachineContext, MachineState, _zag_js_core.StateMachine.AnyEventObject>;
|
|
78
78
|
|
|
79
|
-
declare const props: ("
|
|
80
|
-
declare const contextProps: <Props extends UserDefinedContext>(props: Props) => [UserDefinedContext, Omit<Props, "
|
|
79
|
+
declare const props: ("id" | "value" | "getRootNode" | "timeout" | "ids" | "onStatusChange")[];
|
|
80
|
+
declare const contextProps: <Props extends UserDefinedContext>(props: Props) => [UserDefinedContext, Omit<Props, "id" | "value" | "getRootNode" | "timeout" | "ids" | "onStatusChange">];
|
|
81
81
|
declare const indicatorProps: "copied"[];
|
|
82
82
|
declare const splitIndicatorProps: <Props extends IndicatorProps>(props: Props) => [IndicatorProps, Omit<Props, "copied">];
|
|
83
83
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/clipboard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.81.0",
|
|
4
4
|
"description": "Core logic for the clipboard widget implemented as a state machine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"js",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"url": "https://github.com/chakra-ui/zag/issues"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@zag-js/anatomy": "0.
|
|
31
|
-
"@zag-js/core": "0.
|
|
32
|
-
"@zag-js/dom-query": "0.
|
|
33
|
-
"@zag-js/utils": "0.
|
|
34
|
-
"@zag-js/types": "0.
|
|
30
|
+
"@zag-js/anatomy": "0.81.0",
|
|
31
|
+
"@zag-js/core": "0.81.0",
|
|
32
|
+
"@zag-js/dom-query": "0.81.0",
|
|
33
|
+
"@zag-js/utils": "0.81.0",
|
|
34
|
+
"@zag-js/types": "0.81.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"clean-package": "2.2.0"
|