this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Risky bump of use-long-press and to 1s delay

+11 -13
+7 -11
package-lock.json
··· 33 33 "toastify-js": "~1.12.0", 34 34 "uid": "~2.0.2", 35 35 "use-debounce": "~9.0.3", 36 - "use-long-press": "~2.0.3", 36 + "use-long-press": "~3.0.4", 37 37 "use-resize-observer": "~9.1.0", 38 38 "valtio": "1.9.0" 39 39 }, ··· 6730 6730 } 6731 6731 }, 6732 6732 "node_modules/use-long-press": { 6733 - "version": "2.0.3", 6734 - "resolved": "https://registry.npmjs.org/use-long-press/-/use-long-press-2.0.3.tgz", 6735 - "integrity": "sha512-n3cfv90Y1ldNt+hhXzxnxuLZmgLOOC/+qfLGoeEBgOxmnokPPt39MPF3KmvKriq5VMoJ7uQdVjHejCdHBt9anw==", 6736 - "engines": { 6737 - "node": ">=10", 6738 - "npm": ">=5" 6739 - }, 6733 + "version": "3.0.4", 6734 + "resolved": "https://registry.npmjs.org/use-long-press/-/use-long-press-3.0.4.tgz", 6735 + "integrity": "sha512-+/qkbuRjsrzi30aSIE6lrq0+7TSGKUg6drbk/jSNqJqeWWRIjj5/XQoA9YzQC+IVVwkmcknK8MLi/HtAfNFvPA==", 6740 6736 "peerDependencies": { 6741 6737 "react": "^16.8.0 || ^17.0.0 || ^18.0.0" 6742 6738 } ··· 11861 11857 "requires": {} 11862 11858 }, 11863 11859 "use-long-press": { 11864 - "version": "2.0.3", 11865 - "resolved": "https://registry.npmjs.org/use-long-press/-/use-long-press-2.0.3.tgz", 11866 - "integrity": "sha512-n3cfv90Y1ldNt+hhXzxnxuLZmgLOOC/+qfLGoeEBgOxmnokPPt39MPF3KmvKriq5VMoJ7uQdVjHejCdHBt9anw==", 11860 + "version": "3.0.4", 11861 + "resolved": "https://registry.npmjs.org/use-long-press/-/use-long-press-3.0.4.tgz", 11862 + "integrity": "sha512-+/qkbuRjsrzi30aSIE6lrq0+7TSGKUg6drbk/jSNqJqeWWRIjj5/XQoA9YzQC+IVVwkmcknK8MLi/HtAfNFvPA==", 11867 11863 "requires": {} 11868 11864 }, 11869 11865 "use-resize-observer": {
+1 -1
package.json
··· 35 35 "toastify-js": "~1.12.0", 36 36 "uid": "~2.0.2", 37 37 "use-debounce": "~9.0.3", 38 - "use-long-press": "~2.0.3", 38 + "use-long-press": "~3.0.4", 39 39 "use-resize-observer": "~9.1.0", 40 40 "valtio": "1.9.0" 41 41 },
+1
src/components/menu.jsx
··· 33 33 states.showAccounts = true; 34 34 }, 35 35 { 36 + threshold: 1000, 36 37 detect: 'touch', 37 38 cancelOnMovement: true, 38 39 },
+2 -1
src/components/status.jsx
··· 673 673 setIsContextMenuOpen(true); 674 674 }, 675 675 { 676 - threshold: 500, 676 + threshold: 1000, 677 677 captureEvent: true, 678 678 detect: 'touch', 679 679 cancelOnMovement: true, ··· 1836 1836 setShowPeek(true); 1837 1837 }, 1838 1838 { 1839 + threshold: 1000, 1839 1840 captureEvent: true, 1840 1841 detect: 'touch', 1841 1842 cancelOnMovement: true,