Skip to content

Commit bd80bf4

Browse files
committed
update
1 parent 9e6184d commit bd80bf4

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

apps/bplan-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@
3737
"vite-plugin-pwa": "^0.21.1"
3838
},
3939
"engines": {
40-
"node": "22 >="
40+
"node": ">= 22"
4141
}
4242
}

apps/bplan-client/src/components/real-button/UseGlobalTouch.story.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
import {createUniqueId} from 'solid-js'
1+
import {createUniqueId, JSX} from 'solid-js'
22
import {Meta, StoryObj} from 'storybook-solidjs'
33
import {
44
ELEMENT_IDENTIFIER_GLOBAL_TOUCH,
55
useGlobalDown,
66
useGlobalTouchEmitter,
77
} from './use-global-touch'
88

9-
const UseGlobalTouch = (props) => {
9+
export interface UseGlobalTouchProps extends JSX.HTMLAttributes<HTMLButtonElement> {}
10+
11+
const UseGlobalTouch = (props: UseGlobalTouchProps) => {
1012
const id = createUniqueId()
1113
const isDown = useGlobalDown(id)
1214

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
"vue-router": "^4.5.0"
111111
},
112112
"engines": {
113-
"node": ">= 16",
113+
"node": ">= 22",
114114
"pnpm": ">= 6.17"
115115
},
116116
"pnpm": {

0 commit comments

Comments
 (0)