@aiquants/swipe-overlay 0.1.0 → 1.0.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 +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -35,7 +35,7 @@ type SwipeDismissHookResult = {
|
|
|
35
35
|
* Manages swipe-to-dismiss interactions on the mobile overlay panel.
|
|
36
36
|
* モバイルオーバーレイパネルのスワイプクローズ操作を管理。
|
|
37
37
|
*/
|
|
38
|
-
declare const useSwipeToDismissOverlay: ({ isOpen, onClose, isCloseBlocked, skipWhenTextSelected
|
|
38
|
+
declare const useSwipeToDismissOverlay: ({ isOpen, onClose, isCloseBlocked, skipWhenTextSelected }: {
|
|
39
39
|
isOpen: boolean;
|
|
40
40
|
onClose: () => void;
|
|
41
41
|
isCloseBlocked: () => boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ type SwipeDismissHookResult = {
|
|
|
35
35
|
* Manages swipe-to-dismiss interactions on the mobile overlay panel.
|
|
36
36
|
* モバイルオーバーレイパネルのスワイプクローズ操作を管理。
|
|
37
37
|
*/
|
|
38
|
-
declare const useSwipeToDismissOverlay: ({ isOpen, onClose, isCloseBlocked, skipWhenTextSelected
|
|
38
|
+
declare const useSwipeToDismissOverlay: ({ isOpen, onClose, isCloseBlocked, skipWhenTextSelected }: {
|
|
39
39
|
isOpen: boolean;
|
|
40
40
|
onClose: () => void;
|
|
41
41
|
isCloseBlocked: () => boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiquants/swipe-overlay",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "React hooks and context for swipe-to-dismiss overlay interactions",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"react-dom": ">=16.8.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@biomejs/biome": "^2.3.
|
|
63
|
+
"@biomejs/biome": "^2.3.8",
|
|
64
64
|
"@types/react": "^18.3.27",
|
|
65
65
|
"@types/react-dom": "^18.3.7",
|
|
66
66
|
"react": "^18.3.1",
|