diff --git a/CHANGELOG.md b/CHANGELOG.md index 95f5d22..ee96d25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ +## [1.0.22](https://github.com/justdlabs/inertia.ts/compare/1.0.21...1.0.22) (2024-09-16) + +## [1.0.21](https://github.com/justdlabs/inertia.ts/compare/1.0.20...1.0.21) (2024-09-16) + + +### Bug Fixes + +* fix touch target not being installed ([172d58e](https://github.com/justdlabs/inertia.ts/commit/172d58e58b0bc1c103bd9f3ae4a87bbb774e6dc7)) + ## [1.0.20](https://github.com/justdlabs/inertia.ts/compare/1.0.19...1.0.20) (2024-09-16) diff --git a/composer.json b/composer.json index 2444b98..4eea7b2 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "justd/laravel", - "version": "1.0.20", + "version": "1.0.22", "type": "project", "description": "The skeleton application for the Laravel framework.", "keywords": [ diff --git a/package-lock.json b/package-lock.json index 4a83989..8e96a74 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "inertia.ts", - "version": "1.0.20", + "version": "1.0.22", "lockfileVersion": 3, "requires": true, "packages": { "": { - "version": "1.0.20", + "version": "1.0.22", "dependencies": { "clsx": "^2.1.1", "framer-motion": "^11.3.31", diff --git a/package.json b/package.json index 8e4b033..d9a8824 100644 --- a/package.json +++ b/package.json @@ -80,5 +80,5 @@ } } }, - "version": "1.0.20" + "version": "1.0.22" } diff --git a/resources/js/components/ui/touch-target.tsx b/resources/js/components/ui/touch-target.tsx new file mode 100644 index 0000000..2c71f7f --- /dev/null +++ b/resources/js/components/ui/touch-target.tsx @@ -0,0 +1,15 @@ +import * as React from 'react' + +const TouchTarget = ({ children }: { children: React.ReactNode }) => { + return ( + <> +