@jamsrui/clipboard 0.0.17 → 0.0.19
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/use-clipboard.d.mts +3 -5
- package/package.json +5 -5
package/dist/use-clipboard.d.mts
CHANGED
|
@@ -17,7 +17,6 @@ declare const useClipboard: (props: useClipboard.Props) => {
|
|
|
17
17
|
title?: string | undefined | undefined;
|
|
18
18
|
ref?: react.Ref<HTMLLabelElement> | undefined;
|
|
19
19
|
key?: react.Key | null | undefined;
|
|
20
|
-
htmlFor?: string | undefined | undefined;
|
|
21
20
|
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
22
21
|
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
23
22
|
accessKey?: string | undefined | undefined;
|
|
@@ -58,7 +57,7 @@ declare const useClipboard: (props: useClipboard.Props) => {
|
|
|
58
57
|
results?: number | undefined | undefined;
|
|
59
58
|
security?: string | undefined | undefined;
|
|
60
59
|
unselectable?: "on" | "off" | undefined | undefined;
|
|
61
|
-
popover?: "" | "auto" | "manual" | undefined | undefined;
|
|
60
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined | undefined;
|
|
62
61
|
popoverTargetAction?: "toggle" | "show" | "hide" | undefined | undefined;
|
|
63
62
|
popoverTarget?: string | undefined | undefined;
|
|
64
63
|
inert?: boolean | undefined | undefined;
|
|
@@ -141,7 +140,7 @@ declare const useClipboard: (props: useClipboard.Props) => {
|
|
|
141
140
|
onBlurCapture?: react.FocusEventHandler<HTMLLabelElement> | undefined;
|
|
142
141
|
onChange?: react.FormEventHandler<HTMLLabelElement> | undefined;
|
|
143
142
|
onChangeCapture?: react.FormEventHandler<HTMLLabelElement> | undefined;
|
|
144
|
-
onBeforeInput?: react.
|
|
143
|
+
onBeforeInput?: react.InputEventHandler<HTMLLabelElement> | undefined;
|
|
145
144
|
onBeforeInputCapture?: react.FormEventHandler<HTMLLabelElement> | undefined;
|
|
146
145
|
onInput?: react.FormEventHandler<HTMLLabelElement> | undefined;
|
|
147
146
|
onInputCapture?: react.FormEventHandler<HTMLLabelElement> | undefined;
|
|
@@ -191,8 +190,6 @@ declare const useClipboard: (props: useClipboard.Props) => {
|
|
|
191
190
|
onProgressCapture?: react.ReactEventHandler<HTMLLabelElement> | undefined;
|
|
192
191
|
onRateChange?: react.ReactEventHandler<HTMLLabelElement> | undefined;
|
|
193
192
|
onRateChangeCapture?: react.ReactEventHandler<HTMLLabelElement> | undefined;
|
|
194
|
-
onResize?: react.ReactEventHandler<HTMLLabelElement> | undefined;
|
|
195
|
-
onResizeCapture?: react.ReactEventHandler<HTMLLabelElement> | undefined;
|
|
196
193
|
onSeeked?: react.ReactEventHandler<HTMLLabelElement> | undefined;
|
|
197
194
|
onSeekedCapture?: react.ReactEventHandler<HTMLLabelElement> | undefined;
|
|
198
195
|
onSeeking?: react.ReactEventHandler<HTMLLabelElement> | undefined;
|
|
@@ -292,6 +289,7 @@ declare const useClipboard: (props: useClipboard.Props) => {
|
|
|
292
289
|
onTransitionRunCapture?: react.TransitionEventHandler<HTMLLabelElement> | undefined;
|
|
293
290
|
onTransitionStart?: react.TransitionEventHandler<HTMLLabelElement> | undefined;
|
|
294
291
|
onTransitionStartCapture?: react.TransitionEventHandler<HTMLLabelElement> | undefined;
|
|
292
|
+
htmlFor?: string | undefined | undefined;
|
|
295
293
|
render?: React.ReactElement;
|
|
296
294
|
};
|
|
297
295
|
getButtonProps: PropGetter<ClipboardButton.Props>;
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jamsrui/clipboard",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"react": ">=19"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@jamsrui/hooks": "^0.0.
|
|
9
|
-
"@jamsrui/core": "^0.0.
|
|
10
|
-
"@jamsrui/
|
|
11
|
-
"@jamsrui/
|
|
8
|
+
"@jamsrui/hooks": "^0.0.19",
|
|
9
|
+
"@jamsrui/core": "^0.0.15",
|
|
10
|
+
"@jamsrui/utils": "^0.0.19",
|
|
11
|
+
"@jamsrui/icons": "^0.0.15"
|
|
12
12
|
},
|
|
13
13
|
"exports": {
|
|
14
14
|
".": {
|