From 78497e7bd5bfc8dc88a07c1aa17e97f1d5a9c0bc Mon Sep 17 00:00:00 2001 From: Akash Gautam Date: Mon, 17 Feb 2025 19:56:51 +0530 Subject: [PATCH 1/5] fix: backhandler remove old api --- .../interactions/src/index.ts | 3 +- .../interactions/src/index.web.ts | 7 ---- .../interactions/src/useBackHandler.ts | 27 +++++++++++++++ .../interactions/src/useBackHandler.web.ts | 21 ++++++++++++ .../src/useKeyboardDismisssable.ts | 34 ++----------------- 5 files changed, 52 insertions(+), 40 deletions(-) delete mode 100644 packages/react-native-aria/interactions/src/index.web.ts create mode 100644 packages/react-native-aria/interactions/src/useBackHandler.ts create mode 100644 packages/react-native-aria/interactions/src/useBackHandler.web.ts diff --git a/packages/react-native-aria/interactions/src/index.ts b/packages/react-native-aria/interactions/src/index.ts index 682cfaff51..b9a3f10de3 100644 --- a/packages/react-native-aria/interactions/src/index.ts +++ b/packages/react-native-aria/interactions/src/index.ts @@ -10,5 +10,6 @@ export { export { keyboardDismissHandlerManager, useKeyboardDismissable, - useBackHandler, } from './useKeyboardDismisssable'; + +export { useBackHandler } from './useBackHandler'; diff --git a/packages/react-native-aria/interactions/src/index.web.ts b/packages/react-native-aria/interactions/src/index.web.ts deleted file mode 100644 index e448ba1174..0000000000 --- a/packages/react-native-aria/interactions/src/index.web.ts +++ /dev/null @@ -1,7 +0,0 @@ -export { useHover } from './useHover.web'; -export { usePress } from './usePress'; -export { - keyboardDismissHandlerManager, - useKeyboardDismissable, - useBackHandler, -} from './useKeyboardDismisssable'; diff --git a/packages/react-native-aria/interactions/src/useBackHandler.ts b/packages/react-native-aria/interactions/src/useBackHandler.ts new file mode 100644 index 0000000000..c18a840a8c --- /dev/null +++ b/packages/react-native-aria/interactions/src/useBackHandler.ts @@ -0,0 +1,27 @@ +import { useEffect, useRef } from 'react'; +import { BackHandler, NativeEventSubscription } from 'react-native'; + +type IParams = { + enabled?: boolean; + callback: () => any; +}; + +export function useBackHandler({ enabled, callback }: IParams) { + const backHandlerRef = useRef(null); + + useEffect(() => { + const backHandler = () => { + callback(); + return true; + }; + if (enabled) { + backHandlerRef.current = BackHandler.addEventListener( + 'hardwareBackPress', + backHandler + ); + } else { + backHandlerRef.current?.remove(); + } + return () => backHandlerRef.current?.remove(); + }, [enabled, callback]); +} diff --git a/packages/react-native-aria/interactions/src/useBackHandler.web.ts b/packages/react-native-aria/interactions/src/useBackHandler.web.ts new file mode 100644 index 0000000000..829eac3108 --- /dev/null +++ b/packages/react-native-aria/interactions/src/useBackHandler.web.ts @@ -0,0 +1,21 @@ +import { useEffect } from 'react'; + +type IParams = { + enabled?: boolean; + callback: () => any; +}; + +export function useBackHandler({ enabled, callback }: IParams) { + useEffect(() => { + const handleEscape = (e: KeyboardEvent) => { + if (e.key === 'Escape') { + callback(); + } + }; + + document?.body?.addEventListener?.('keyup', handleEscape); + return () => { + document?.body?.removeEventListener?.('keyup', handleEscape); + }; + }, [enabled, callback]); +} diff --git a/packages/react-native-aria/interactions/src/useKeyboardDismisssable.ts b/packages/react-native-aria/interactions/src/useKeyboardDismisssable.ts index 416b4190ad..0d951c41f3 100644 --- a/packages/react-native-aria/interactions/src/useKeyboardDismisssable.ts +++ b/packages/react-native-aria/interactions/src/useKeyboardDismisssable.ts @@ -1,6 +1,5 @@ -import React from 'react'; import { useEffect } from 'react'; -import { BackHandler, Platform } from 'react-native'; +import { useBackHandler } from './useBackHandler'; type IParams = { enabled?: boolean; @@ -27,7 +26,7 @@ export const keyboardDismissHandlerManager = { * Handles attaching callback for Escape key listener on web and Back button listener on Android */ export const useKeyboardDismissable = ({ enabled, callback }: IParams) => { - React.useEffect(() => { + useEffect(() => { let cleanupFn = () => {}; if (enabled) { cleanupFn = keyboardDismissHandlerManager.push(callback); @@ -41,32 +40,3 @@ export const useKeyboardDismissable = ({ enabled, callback }: IParams) => { useBackHandler({ enabled, callback }); }; - -export function useBackHandler({ enabled, callback }: IParams) { - useEffect(() => { - if (Platform.OS === 'web') { - const handleEscape = (e: KeyboardEvent) => { - if (e.key === 'Escape') { - callback(); - } - }; - - document?.body?.addEventListener?.('keyup', handleEscape); - return () => { - document?.body?.removeEventListener?.('keyup', handleEscape); - }; - } else { - let backHandler = () => { - callback(); - return true; - }; - if (enabled) { - BackHandler.addEventListener('hardwareBackPress', backHandler); - } else { - BackHandler.removeEventListener('hardwareBackPress', backHandler); - } - return () => - BackHandler.removeEventListener('hardwareBackPress', backHandler); - } - }, [enabled, callback]); -} From c1cfd25fe393c690426de3ea71cb66d3183375e9 Mon Sep 17 00:00:00 2001 From: Akash Gautam Date: Mon, 17 Feb 2025 19:57:23 +0530 Subject: [PATCH 2/5] fix: backhandler remove old api --- .../src/useKeyboardDismisssable.ts | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/packages/unstyled/react-native-aria/src/useKeyboardDismisssable.ts b/packages/unstyled/react-native-aria/src/useKeyboardDismisssable.ts index f3cfa44402..af4d20ce7c 100644 --- a/packages/unstyled/react-native-aria/src/useKeyboardDismisssable.ts +++ b/packages/unstyled/react-native-aria/src/useKeyboardDismisssable.ts @@ -1,6 +1,5 @@ -import React from 'react'; -import { useEffect } from 'react'; -import { BackHandler } from 'react-native'; +import { useEffect, useRef } from 'react'; +import { BackHandler, NativeEventSubscription } from 'react-native'; type IParams = { enabled?: boolean; @@ -27,7 +26,7 @@ export const keyboardDismissHandlerManager = { * Handles attaching callback for Escape key listener on web and Back button listener on Android */ export const useKeyboardDismissable = ({ enabled, callback }: IParams) => { - React.useEffect(() => { + useEffect(() => { let cleanupFn = () => {}; if (enabled) { cleanupFn = keyboardDismissHandlerManager.push(callback); @@ -41,19 +40,22 @@ export const useKeyboardDismissable = ({ enabled, callback }: IParams) => { useBackHandler({ enabled, callback }); }; - export function useBackHandler({ enabled, callback }: IParams) { + const backHandlerRef = useRef(null); + useEffect(() => { - let backHandler = () => { + const backHandler = () => { callback(); return true; }; if (enabled) { - BackHandler.addEventListener('hardwareBackPress', backHandler); + backHandlerRef.current = BackHandler.addEventListener( + 'hardwareBackPress', + backHandler + ); } else { - BackHandler.removeEventListener('hardwareBackPress', backHandler); + backHandlerRef.current?.remove(); } - return () => - BackHandler.removeEventListener('hardwareBackPress', backHandler); + return () => backHandlerRef.current?.remove(); }, [enabled, callback]); } From 9917f56632ea2ee8f57069ab3f22645e6ed196b4 Mon Sep 17 00:00:00 2001 From: Akash Gautam Date: Mon, 17 Feb 2025 19:57:34 +0530 Subject: [PATCH 3/5] fix: backhandler remove old api --- .../hooks/src/use-back-handler/index.ts | 27 ++++++++++++++++ .../hooks/src/use-back-handler/index.web.ts | 21 ++++++++++++ .../src/use-keyboard-dismissable/index.ts | 32 +------------------ 3 files changed, 49 insertions(+), 31 deletions(-) create mode 100644 packages/unstyled/hooks/src/use-back-handler/index.ts create mode 100644 packages/unstyled/hooks/src/use-back-handler/index.web.ts diff --git a/packages/unstyled/hooks/src/use-back-handler/index.ts b/packages/unstyled/hooks/src/use-back-handler/index.ts new file mode 100644 index 0000000000..a674f83a4d --- /dev/null +++ b/packages/unstyled/hooks/src/use-back-handler/index.ts @@ -0,0 +1,27 @@ +import { useEffect, useRef } from 'react'; +import { BackHandler, type NativeEventSubscription } from 'react-native'; + +type IParams = { + enabled?: boolean; + callback: () => any; +}; + +export function useBackHandler({ enabled, callback }: IParams) { + const backHandlerRef = useRef(null); + + useEffect(() => { + const backHandler = () => { + callback(); + return true; + }; + if (enabled) { + backHandlerRef.current = BackHandler.addEventListener( + 'hardwareBackPress', + backHandler + ); + } else { + backHandlerRef.current?.remove(); + } + return () => backHandlerRef.current?.remove(); + }, [enabled, callback]); +} diff --git a/packages/unstyled/hooks/src/use-back-handler/index.web.ts b/packages/unstyled/hooks/src/use-back-handler/index.web.ts new file mode 100644 index 0000000000..829eac3108 --- /dev/null +++ b/packages/unstyled/hooks/src/use-back-handler/index.web.ts @@ -0,0 +1,21 @@ +import { useEffect } from 'react'; + +type IParams = { + enabled?: boolean; + callback: () => any; +}; + +export function useBackHandler({ enabled, callback }: IParams) { + useEffect(() => { + const handleEscape = (e: KeyboardEvent) => { + if (e.key === 'Escape') { + callback(); + } + }; + + document?.body?.addEventListener?.('keyup', handleEscape); + return () => { + document?.body?.removeEventListener?.('keyup', handleEscape); + }; + }, [enabled, callback]); +} diff --git a/packages/unstyled/hooks/src/use-keyboard-dismissable/index.ts b/packages/unstyled/hooks/src/use-keyboard-dismissable/index.ts index 54979c6c24..ff3ce00b77 100644 --- a/packages/unstyled/hooks/src/use-keyboard-dismissable/index.ts +++ b/packages/unstyled/hooks/src/use-keyboard-dismissable/index.ts @@ -1,6 +1,5 @@ import React from 'react'; -import { useEffect } from 'react'; -import { BackHandler, Platform } from 'react-native'; +import { useBackHandler } from '../use-back-handler'; type IParams = { enabled?: boolean; @@ -41,32 +40,3 @@ export const useKeyboardDismissable = ({ enabled, callback }: IParams) => { useBackHandler({ enabled, callback }); }; - -export function useBackHandler({ enabled, callback }: IParams) { - useEffect(() => { - if (Platform.OS === 'web') { - const handleEscape = (e: KeyboardEvent) => { - if (e.key === 'Escape') { - callback(); - } - }; - - document?.body?.addEventListener?.('keyup', handleEscape); - return () => { - document?.body?.removeEventListener?.('keyup', handleEscape); - }; - } else { - const backHandler = () => { - callback(); - return true; - }; - if (enabled) { - BackHandler.addEventListener('hardwareBackPress', backHandler); - } else { - BackHandler.removeEventListener('hardwareBackPress', backHandler); - } - return () => - BackHandler.removeEventListener('hardwareBackPress', backHandler); - } - }, [enabled, callback]); -} From 0788b5ea80e6685179a1ed2cf371841f2eb8fe31 Mon Sep 17 00:00:00 2001 From: Akash Gautam Date: Mon, 17 Feb 2025 20:32:11 +0530 Subject: [PATCH 4/5] chore: changelog update & version bump --- example/storybook-nativewind/package.json | 4 +- example/storybook/package.json | 2 +- packages/config/package.json | 48 +++++++++---------- .../react-native-aria/button/CHANGELOG.md | 7 +++ .../react-native-aria/button/package.json | 4 +- .../interactions/CHANGELOG.md | 6 +++ .../interactions/package.json | 2 +- .../react-native-aria/listbox/CHANGELOG.md | 7 +++ .../react-native-aria/listbox/package.json | 4 +- packages/react-native-aria/menu/CHANGELOG.md | 7 +++ packages/react-native-aria/menu/package.json | 4 +- packages/react-native-aria/radio/CHANGELOG.md | 7 +++ packages/react-native-aria/radio/package.json | 4 +- packages/react-native-aria/tabs/CHANGELOG.md | 7 +++ packages/react-native-aria/tabs/package.json | 4 +- .../react-native-aria/toggle/CHANGELOG.md | 7 +++ .../react-native-aria/toggle/package.json | 4 +- .../react-native-aria/tooltip/CHANGELOG.md | 7 +++ .../react-native-aria/tooltip/package.json | 4 +- packages/themed/CHANGELOG.md | 27 +++++++++++ packages/themed/package.json | 46 +++++++++--------- packages/unstyled/accordion/CHANGELOG.md | 7 +++ packages/unstyled/accordion/package.json | 4 +- packages/unstyled/actionsheet/CHANGELOG.md | 10 ++++ packages/unstyled/actionsheet/package.json | 10 ++-- packages/unstyled/alert-dialog/CHANGELOG.md | 9 ++++ packages/unstyled/alert-dialog/package.json | 8 ++-- packages/unstyled/button/CHANGELOG.md | 7 +++ packages/unstyled/button/package.json | 4 +- packages/unstyled/checkbox/CHANGELOG.md | 7 +++ packages/unstyled/checkbox/package.json | 4 +- packages/unstyled/fab/CHANGELOG.md | 7 +++ packages/unstyled/fab/package.json | 4 +- packages/unstyled/hooks/CHANGELOG.md | 6 +++ packages/unstyled/hooks/package.json | 2 +- packages/unstyled/image-viewer/CHANGELOG.md | 7 +++ packages/unstyled/image-viewer/package.json | 4 +- packages/unstyled/image/CHANGELOG.md | 7 +++ packages/unstyled/image/package.json | 4 +- packages/unstyled/input/CHANGELOG.md | 7 +++ packages/unstyled/input/package.json | 4 +- packages/unstyled/link/CHANGELOG.md | 7 +++ packages/unstyled/link/package.json | 4 +- packages/unstyled/menu/CHANGELOG.md | 10 ++++ packages/unstyled/menu/package.json | 10 ++-- packages/unstyled/modal/CHANGELOG.md | 9 ++++ packages/unstyled/modal/package.json | 8 ++-- packages/unstyled/overlay/CHANGELOG.md | 7 +++ packages/unstyled/overlay/package.json | 4 +- packages/unstyled/pin-input/CHANGELOG.md | 7 +++ packages/unstyled/pin-input/package.json | 4 +- packages/unstyled/popover/CHANGELOG.md | 9 ++++ packages/unstyled/popover/package.json | 8 ++-- packages/unstyled/pressable/CHANGELOG.md | 7 +++ packages/unstyled/pressable/package.json | 4 +- packages/unstyled/provider/CHANGELOG.md | 7 +++ packages/unstyled/provider/package.json | 4 +- packages/unstyled/radio/CHANGELOG.md | 8 ++++ packages/unstyled/radio/package.json | 6 +-- .../unstyled/react-native-aria/CHANGELOG.md | 6 +++ .../unstyled/react-native-aria/package.json | 2 +- packages/unstyled/select/CHANGELOG.md | 7 +++ packages/unstyled/select/package.json | 4 +- packages/unstyled/slider/CHANGELOG.md | 8 ++++ packages/unstyled/slider/package.json | 6 +-- packages/unstyled/switch/CHANGELOG.md | 7 +++ packages/unstyled/switch/package.json | 4 +- packages/unstyled/tabs/CHANGELOG.md | 7 +++ packages/unstyled/tabs/package.json | 4 +- packages/unstyled/toast/CHANGELOG.md | 9 ++++ packages/unstyled/toast/package.json | 8 ++-- packages/unstyled/tooltip/CHANGELOG.md | 9 ++++ packages/unstyled/tooltip/package.json | 8 ++-- packages/unstyled/transitions/CHANGELOG.md | 8 ++++ packages/unstyled/transitions/package.json | 6 +-- 75 files changed, 424 insertions(+), 136 deletions(-) diff --git a/example/storybook-nativewind/package.json b/example/storybook-nativewind/package.json index 2a668a7cf7..1da0639c81 100644 --- a/example/storybook-nativewind/package.json +++ b/example/storybook-nativewind/package.json @@ -32,7 +32,7 @@ "@gluestack-style/animation-resolver": "^1.0.4", "@gluestack-style/react": "^1.0.57", "@gluestack-ui/config": "^1.1.19", - "@gluestack-ui/themed": "^1.1.65", + "@gluestack-ui/themed": "^1.1.66", "@gluestack/design-system": "^0.5.36", "@gorhom/bottom-sheet": "^5.0.0-alpha.10", "@legendapp/motion": "^2.2.0", @@ -43,7 +43,7 @@ "@react-aria/overlays": "^3.13.0", "@react-aria/separator": "^3.3.0", "@react-aria/utils": "^3.15.0", - "@react-native-aria/button": "^0.2.7", + "@react-native-aria/button": "^0.2.8", "@react-native-aria/checkbox": "^0.2.9", "@react-native-aria/overlays": "^0.3.14", "@react-native-aria/separator": "^0.2.6", diff --git a/example/storybook/package.json b/example/storybook/package.json index 344308514c..10eb4e9dd8 100644 --- a/example/storybook/package.json +++ b/example/storybook/package.json @@ -34,7 +34,7 @@ "@react-aria/overlays": "^3.13.0", "@react-aria/separator": "^3.3.0", "@react-aria/utils": "^3.15.0", - "@react-native-aria/button": "^0.2.7", + "@react-native-aria/button": "^0.2.8", "@react-native-aria/overlays": "0.3.14", "@react-native-aria/separator": "^0.2.6", "@react-native-async-storage/async-storage": "~1.17.3", diff --git a/packages/config/package.json b/packages/config/package.json index da67ad7b80..c6c95752ad 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -38,42 +38,42 @@ "@gluestack-style/animation-resolver": "1.0.4", "@gluestack-style/legend-motion-animation-driver": "1.0.3", "@gluestack-style/react": "1.0.57", - "@gluestack-ui/accordion": "1.0.8", - "@gluestack-ui/actionsheet": "0.2.46", + "@gluestack-ui/accordion": "1.0.9", + "@gluestack-ui/actionsheet": "0.2.47", "@gluestack-ui/alert": "0.1.16", - "@gluestack-ui/alert-dialog": "0.1.32", + "@gluestack-ui/alert-dialog": "0.1.33", "@gluestack-ui/avatar": "0.1.18", - "@gluestack-ui/button": "1.0.8", - "@gluestack-ui/checkbox": "0.1.33", + "@gluestack-ui/button": "1.0.9", + "@gluestack-ui/checkbox": "0.1.34", "@gluestack-ui/divider": "0.1.10", - "@gluestack-ui/fab": "0.1.22", + "@gluestack-ui/fab": "0.1.23", "@gluestack-ui/form-control": "0.1.19", "@gluestack-ui/icon": "0.1.25", - "@gluestack-ui/image": "0.1.11", - "@gluestack-ui/input": "0.1.32", - "@gluestack-ui/link": "0.1.23", - "@gluestack-ui/menu": "0.2.37", - "@gluestack-ui/modal": "0.1.35", - "@gluestack-ui/overlay": "0.1.16", - "@gluestack-ui/popover": "0.1.43", - "@gluestack-ui/pressable": "0.1.17", + "@gluestack-ui/image": "0.1.12", + "@gluestack-ui/input": "0.1.33", + "@gluestack-ui/link": "0.1.24", + "@gluestack-ui/menu": "0.2.38", + "@gluestack-ui/modal": "0.1.36", + "@gluestack-ui/overlay": "0.1.17", + "@gluestack-ui/popover": "0.1.44", + "@gluestack-ui/pressable": "0.1.18", "@gluestack-ui/progress": "0.1.18", - "@gluestack-ui/provider": "0.1.13", - "@gluestack-ui/radio": "0.1.34", - "@gluestack-ui/select": "0.1.30", - "@gluestack-ui/slider": "0.1.26", + "@gluestack-ui/provider": "0.1.14", + "@gluestack-ui/radio": "0.1.35", + "@gluestack-ui/select": "0.1.31", + "@gluestack-ui/slider": "0.1.27", "@gluestack-ui/spinner": "0.1.15", - "@gluestack-ui/switch": "0.1.23", - "@gluestack-ui/tabs": "0.1.18", + "@gluestack-ui/switch": "0.1.24", + "@gluestack-ui/tabs": "0.1.19", "@gluestack-ui/textarea": "0.1.24", - "@gluestack-ui/themed": "1.1.65", - "@gluestack-ui/toast": "1.0.8", - "@gluestack-ui/tooltip": "0.1.38", + "@gluestack-ui/themed": "1.1.66", + "@gluestack-ui/toast": "1.0.9", + "@gluestack-ui/tooltip": "0.1.39", "@legendapp/motion": "latest" }, "peerDependencies": { "@gluestack-style/react": ">=1.0.57", - "@gluestack-ui/themed": ">=1.1.65" + "@gluestack-ui/themed": ">=1.1.66" }, "release-it": { "git": { diff --git a/packages/react-native-aria/button/CHANGELOG.md b/packages/react-native-aria/button/CHANGELOG.md index bb41a38ba9..43b4166548 100644 --- a/packages/react-native-aria/button/CHANGELOG.md +++ b/packages/react-native-aria/button/CHANGELOG.md @@ -1,5 +1,12 @@ # @react-native-aria/button +## 0.2.8 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.2.7 ### Patch Changes diff --git a/packages/react-native-aria/button/package.json b/packages/react-native-aria/button/package.json index a655825483..b0a64535fb 100644 --- a/packages/react-native-aria/button/package.json +++ b/packages/react-native-aria/button/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/button", - "version": "0.2.7", + "version": "0.2.8", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -52,7 +52,7 @@ }, "dependencies": { "@react-aria/utils": "^3.6.0", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-stately/toggle": "^3.2.1", "@react-types/checkbox": "^3.2.1" }, diff --git a/packages/react-native-aria/interactions/CHANGELOG.md b/packages/react-native-aria/interactions/CHANGELOG.md index a14249687d..4b79aaef2b 100644 --- a/packages/react-native-aria/interactions/CHANGELOG.md +++ b/packages/react-native-aria/interactions/CHANGELOG.md @@ -1,5 +1,11 @@ # @react-native-aria/interactions +## 0.3.0 + +### Minor Changes + +- Feat: backhandler api update + ## 0.2.13 ### Patch Changes diff --git a/packages/react-native-aria/interactions/package.json b/packages/react-native-aria/interactions/package.json index b899371eee..0689e9abf4 100644 --- a/packages/react-native-aria/interactions/package.json +++ b/packages/react-native-aria/interactions/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/interactions", - "version": "0.2.13", + "version": "0.3.0", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/packages/react-native-aria/listbox/CHANGELOG.md b/packages/react-native-aria/listbox/CHANGELOG.md index c2bebb5d64..d20c69f741 100644 --- a/packages/react-native-aria/listbox/CHANGELOG.md +++ b/packages/react-native-aria/listbox/CHANGELOG.md @@ -1,5 +1,12 @@ # @react-native-aria/listbox +## 0.2.7 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.2.6 ### Patch Changes diff --git a/packages/react-native-aria/listbox/package.json b/packages/react-native-aria/listbox/package.json index b95a893779..c8007fd981 100644 --- a/packages/react-native-aria/listbox/package.json +++ b/packages/react-native-aria/listbox/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/listbox", - "version": "0.2.6", + "version": "0.2.7", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -61,7 +61,7 @@ "@react-aria/listbox": "^3.2.4", "@react-aria/selection": "^3.3.2", "@react-aria/utils": "^3.6.0", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-native-aria/utils": "0.2.11", "@react-types/listbox": "^3.1.1", "@react-types/shared": "^3.4.0" diff --git a/packages/react-native-aria/menu/CHANGELOG.md b/packages/react-native-aria/menu/CHANGELOG.md index 5c67c1785c..744380aa0f 100644 --- a/packages/react-native-aria/menu/CHANGELOG.md +++ b/packages/react-native-aria/menu/CHANGELOG.md @@ -1,5 +1,12 @@ # @react-native-aria/menu +## 0.2.13 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.2.12 ### Patch Changes diff --git a/packages/react-native-aria/menu/package.json b/packages/react-native-aria/menu/package.json index ea5d11c832..c17c08ff50 100644 --- a/packages/react-native-aria/menu/package.json +++ b/packages/react-native-aria/menu/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/menu", - "version": "0.2.12", + "version": "0.2.13", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -55,7 +55,7 @@ "@react-aria/menu": "^3.1.3", "@react-aria/selection": "^3.3.1", "@react-aria/utils": "^3.6.0", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-native-aria/overlays": "^0.3.12", "@react-native-aria/utils": "0.2.11", "@react-stately/collections": "^3.3.0", diff --git a/packages/react-native-aria/radio/CHANGELOG.md b/packages/react-native-aria/radio/CHANGELOG.md index df90e9e623..b50323abda 100644 --- a/packages/react-native-aria/radio/CHANGELOG.md +++ b/packages/react-native-aria/radio/CHANGELOG.md @@ -4,6 +4,13 @@ ### Patch Changes +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + +## 0.2.11 + +### Patch Changes + - fix: typing issue for radio input checkbox ## 0.2.10 diff --git a/packages/react-native-aria/radio/package.json b/packages/react-native-aria/radio/package.json index aaf82d5382..acb4fcf8dd 100644 --- a/packages/react-native-aria/radio/package.json +++ b/packages/react-native-aria/radio/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/radio", - "version": "0.2.10", + "version": "0.2.11", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -24,7 +24,7 @@ "dependencies": { "@react-aria/radio": "^3.1.2", "@react-aria/utils": "^3.6.0", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-native-aria/utils": "0.2.11", "@react-stately/radio": "^3.2.1", "@react-types/radio": "^3.1.1" diff --git a/packages/react-native-aria/tabs/CHANGELOG.md b/packages/react-native-aria/tabs/CHANGELOG.md index 6a8e3757f3..dc56d40130 100644 --- a/packages/react-native-aria/tabs/CHANGELOG.md +++ b/packages/react-native-aria/tabs/CHANGELOG.md @@ -1,5 +1,12 @@ # @react-native-aria/tabs +## 0.2.11 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.2.10 ### Patch Changes diff --git a/packages/react-native-aria/tabs/package.json b/packages/react-native-aria/tabs/package.json index 195bc7be6c..285480d3b7 100644 --- a/packages/react-native-aria/tabs/package.json +++ b/packages/react-native-aria/tabs/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/tabs", - "version": "0.2.10", + "version": "0.2.11", "description": "This library is a part of react-native-aria.", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -58,7 +58,7 @@ "dependencies": { "@react-aria/selection": "^3.3.1", "@react-aria/tabs": "3.0.0-alpha.2", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-native-aria/utils": "0.2.11", "@react-stately/tabs": "3.0.0-alpha.1", "@react-types/tabs": "3.0.0-alpha.2" diff --git a/packages/react-native-aria/toggle/CHANGELOG.md b/packages/react-native-aria/toggle/CHANGELOG.md index a819feeaf9..befb7ed7da 100644 --- a/packages/react-native-aria/toggle/CHANGELOG.md +++ b/packages/react-native-aria/toggle/CHANGELOG.md @@ -1,5 +1,12 @@ # @react-native-aria/toggle +## 0.2.9 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.2.8 ### Patch Changes diff --git a/packages/react-native-aria/toggle/package.json b/packages/react-native-aria/toggle/package.json index ee472ba93d..0ac30327bf 100644 --- a/packages/react-native-aria/toggle/package.json +++ b/packages/react-native-aria/toggle/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/toggle", - "version": "0.2.8", + "version": "0.2.9", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -24,7 +24,7 @@ "dependencies": { "@react-aria/focus": "^3.2.3", "@react-aria/utils": "^3.6.0", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-native-aria/utils": "0.2.11", "@react-stately/toggle": "^3.2.1", "@react-types/checkbox": "^3.2.1" diff --git a/packages/react-native-aria/tooltip/CHANGELOG.md b/packages/react-native-aria/tooltip/CHANGELOG.md index 28503fa81f..840f03a8ea 100644 --- a/packages/react-native-aria/tooltip/CHANGELOG.md +++ b/packages/react-native-aria/tooltip/CHANGELOG.md @@ -1,5 +1,12 @@ # @react-native-aria/tooltip +## 0.2.7 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.2.6 ### Patch Changes diff --git a/packages/react-native-aria/tooltip/package.json b/packages/react-native-aria/tooltip/package.json index 739fc4573f..64e4d525f5 100644 --- a/packages/react-native-aria/tooltip/package.json +++ b/packages/react-native-aria/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/tooltip", - "version": "0.2.6", + "version": "0.2.7", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -53,7 +53,7 @@ "dependencies": { "@react-aria/tooltip": "3.1.0", "@react-aria/utils": "^3.6.0", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-native-aria/utils": "0.2.11", "@react-stately/tooltip": "3.0.1" }, diff --git a/packages/themed/CHANGELOG.md b/packages/themed/CHANGELOG.md index 103f921101..4722642ba7 100644 --- a/packages/themed/CHANGELOG.md +++ b/packages/themed/CHANGELOG.md @@ -1,5 +1,32 @@ # @gluestack-ui/themed +## 1.1.66 + +### Patch Changes + +- @gluestack-ui/accordion@1.0.9 +- @gluestack-ui/actionsheet@0.2.47 +- @gluestack-ui/alert-dialog@0.1.33 +- @gluestack-ui/button@1.0.9 +- @gluestack-ui/checkbox@0.1.34 +- @gluestack-ui/fab@0.1.23 +- @gluestack-ui/image@0.1.12 +- @gluestack-ui/input@0.1.33 +- @gluestack-ui/link@0.1.24 +- @gluestack-ui/menu@0.2.38 +- @gluestack-ui/modal@0.1.36 +- @gluestack-ui/overlay@0.1.17 +- @gluestack-ui/popover@0.1.44 +- @gluestack-ui/pressable@0.1.18 +- @gluestack-ui/provider@0.1.14 +- @gluestack-ui/radio@0.1.35 +- @gluestack-ui/slider@0.1.27 +- @gluestack-ui/switch@0.1.24 +- @gluestack-ui/tabs@0.1.19 +- @gluestack-ui/tooltip@0.1.39 +- @gluestack-ui/select@0.1.31 +- @gluestack-ui/toast@1.0.9 + ## 1.1.65 ### Patch Changes diff --git a/packages/themed/package.json b/packages/themed/package.json index 2eaf432a7d..c87f7ae768 100644 --- a/packages/themed/package.json +++ b/packages/themed/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/themed", - "version": "1.1.65", + "version": "1.1.66", "main": "build/index.js", "types": "build/index.d.ts", "module": "build/index", @@ -37,36 +37,36 @@ "@expo/html-elements": "latest", "@gluestack-style/animation-resolver": "1.0.4", "@gluestack-style/legend-motion-animation-driver": "1.0.3", - "@gluestack-ui/accordion": "1.0.8", - "@gluestack-ui/actionsheet": "0.2.46", + "@gluestack-ui/accordion": "1.0.9", + "@gluestack-ui/actionsheet": "0.2.47", "@gluestack-ui/alert": "0.1.16", - "@gluestack-ui/alert-dialog": "0.1.32", + "@gluestack-ui/alert-dialog": "0.1.33", "@gluestack-ui/avatar": "0.1.18", - "@gluestack-ui/button": "1.0.8", - "@gluestack-ui/checkbox": "0.1.33", + "@gluestack-ui/button": "1.0.9", + "@gluestack-ui/checkbox": "0.1.34", "@gluestack-ui/divider": "0.1.10", - "@gluestack-ui/fab": "0.1.22", + "@gluestack-ui/fab": "0.1.23", "@gluestack-ui/form-control": "0.1.19", "@gluestack-ui/icon": "0.1.25", - "@gluestack-ui/image": "0.1.11", - "@gluestack-ui/input": "0.1.32", - "@gluestack-ui/link": "0.1.23", - "@gluestack-ui/menu": "0.2.37", - "@gluestack-ui/modal": "0.1.35", - "@gluestack-ui/overlay": "0.1.16", - "@gluestack-ui/popover": "0.1.43", - "@gluestack-ui/pressable": "0.1.17", + "@gluestack-ui/image": "0.1.12", + "@gluestack-ui/input": "0.1.33", + "@gluestack-ui/link": "0.1.24", + "@gluestack-ui/menu": "0.2.38", + "@gluestack-ui/modal": "0.1.36", + "@gluestack-ui/overlay": "0.1.17", + "@gluestack-ui/popover": "0.1.44", + "@gluestack-ui/pressable": "0.1.18", "@gluestack-ui/progress": "0.1.18", - "@gluestack-ui/provider": "0.1.13", - "@gluestack-ui/radio": "0.1.34", - "@gluestack-ui/select": "0.1.30", - "@gluestack-ui/slider": "0.1.26", + "@gluestack-ui/provider": "0.1.14", + "@gluestack-ui/radio": "0.1.35", + "@gluestack-ui/select": "0.1.31", + "@gluestack-ui/slider": "0.1.27", "@gluestack-ui/spinner": "0.1.15", - "@gluestack-ui/switch": "0.1.23", - "@gluestack-ui/tabs": "0.1.18", + "@gluestack-ui/switch": "0.1.24", + "@gluestack-ui/tabs": "0.1.19", "@gluestack-ui/textarea": "0.1.24", - "@gluestack-ui/toast": "1.0.8", - "@gluestack-ui/tooltip": "0.1.38", + "@gluestack-ui/toast": "1.0.9", + "@gluestack-ui/tooltip": "0.1.39", "@legendapp/motion": "latest" }, "devDependencies": { diff --git a/packages/unstyled/accordion/CHANGELOG.md b/packages/unstyled/accordion/CHANGELOG.md index 4c1dffb139..324c2fb275 100644 --- a/packages/unstyled/accordion/CHANGELOG.md +++ b/packages/unstyled/accordion/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/accordion +## 1.0.9 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 1.0.8 ### Patch Changes diff --git a/packages/unstyled/accordion/package.json b/packages/unstyled/accordion/package.json index ec8dba1e19..c6e582066f 100644 --- a/packages/unstyled/accordion/package.json +++ b/packages/unstyled/accordion/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "1.0.8", + "version": "1.0.9", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -47,7 +47,7 @@ "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/accordion": "^0.0.2", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13" + "@react-native-aria/interactions": "0.3.0" }, "homepage": "https://github.com/gluestack/gluestack-ui/tree/main/packages/unstyled/accordion#readme", "repository": { diff --git a/packages/unstyled/actionsheet/CHANGELOG.md b/packages/unstyled/actionsheet/CHANGELOG.md index 59a6f97f48..0854799f1d 100644 --- a/packages/unstyled/actionsheet/CHANGELOG.md +++ b/packages/unstyled/actionsheet/CHANGELOG.md @@ -1,5 +1,15 @@ # @gluestack-ui/actionsheet +## 0.2.47 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + - @gluestack-ui/hooks@0.2.0 + - @gluestack-ui/overlay@0.1.17 + - @gluestack-ui/transitions@0.1.12 + ## 0.2.46 ### Patch Changes diff --git a/packages/unstyled/actionsheet/package.json b/packages/unstyled/actionsheet/package.json index 10af31ce12..525a4d2fe8 100644 --- a/packages/unstyled/actionsheet/package.json +++ b/packages/unstyled/actionsheet/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.2.46", + "version": "0.2.47", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,13 +44,13 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.1.12", - "@gluestack-ui/overlay": "^0.1.16", - "@gluestack-ui/transitions": "^0.1.11", + "@gluestack-ui/hooks": "0.2.0", + "@gluestack-ui/overlay": "^0.1.17", + "@gluestack-ui/transitions": "^0.1.12", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/dialog": "^0.0.4", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13" + "@react-native-aria/interactions": "0.3.0" }, "homepage": "https://github.com/gluestack/gluestack-ui/tree/main/packages/unstyled/actionsheet#readme", "repository": { diff --git a/packages/unstyled/alert-dialog/CHANGELOG.md b/packages/unstyled/alert-dialog/CHANGELOG.md index bed634830a..5471b3ecc8 100644 --- a/packages/unstyled/alert-dialog/CHANGELOG.md +++ b/packages/unstyled/alert-dialog/CHANGELOG.md @@ -1,5 +1,14 @@ # @gluestack-ui/alert-dialog +## 0.1.33 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + - @gluestack-ui/hooks@0.2.0 + - @gluestack-ui/overlay@0.1.17 + ## 0.1.32 ### Patch Changes diff --git a/packages/unstyled/alert-dialog/package.json b/packages/unstyled/alert-dialog/package.json index faf37ab64e..b0d6e160bd 100644 --- a/packages/unstyled/alert-dialog/package.json +++ b/packages/unstyled/alert-dialog/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.1.32", + "version": "0.1.33", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,12 +44,12 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.1.12", - "@gluestack-ui/overlay": "^0.1.16", + "@gluestack-ui/hooks": "0.2.0", + "@gluestack-ui/overlay": "^0.1.17", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/dialog": "^0.0.4", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13" + "@react-native-aria/interactions": "0.3.0" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/button/CHANGELOG.md b/packages/unstyled/button/CHANGELOG.md index ea1ff52238..258588c892 100644 --- a/packages/unstyled/button/CHANGELOG.md +++ b/packages/unstyled/button/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/button +## 1.0.9 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 1.0.8 ### Patch Changes diff --git a/packages/unstyled/button/package.json b/packages/unstyled/button/package.json index cceb9b38e6..d591651a61 100644 --- a/packages/unstyled/button/package.json +++ b/packages/unstyled/button/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/button", - "version": "1.0.8", + "version": "1.0.9", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,7 +44,7 @@ "dependencies": { "@gluestack-ui/utils": "0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13" + "@react-native-aria/interactions": "0.3.0" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/checkbox/CHANGELOG.md b/packages/unstyled/checkbox/CHANGELOG.md index 4edbefaab9..5a7489da49 100644 --- a/packages/unstyled/checkbox/CHANGELOG.md +++ b/packages/unstyled/checkbox/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/checkbox +## 0.1.34 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.1.33 ### Patch Changes diff --git a/packages/unstyled/checkbox/package.json b/packages/unstyled/checkbox/package.json index 9fae159970..1887469afb 100644 --- a/packages/unstyled/checkbox/package.json +++ b/packages/unstyled/checkbox/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/checkbox", - "version": "0.1.33", + "version": "0.1.34", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -48,7 +48,7 @@ "@react-aria/visually-hidden": "^3.8.6", "@react-native-aria/checkbox": "^0.2.9", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-native-aria/utils": "0.2.11", "@react-stately/checkbox": "^3.4.2" }, diff --git a/packages/unstyled/fab/CHANGELOG.md b/packages/unstyled/fab/CHANGELOG.md index e4de3b0302..526164b235 100644 --- a/packages/unstyled/fab/CHANGELOG.md +++ b/packages/unstyled/fab/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/fab +## 0.1.23 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.1.22 ### Patch Changes diff --git a/packages/unstyled/fab/package.json b/packages/unstyled/fab/package.json index 2e95ec6cf4..38465dd453 100644 --- a/packages/unstyled/fab/package.json +++ b/packages/unstyled/fab/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.1.22", + "version": "0.1.23", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -46,7 +46,7 @@ "dependencies": { "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13" + "@react-native-aria/interactions": "0.3.0" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/hooks/CHANGELOG.md b/packages/unstyled/hooks/CHANGELOG.md index 73f55613c0..86b2973296 100644 --- a/packages/unstyled/hooks/CHANGELOG.md +++ b/packages/unstyled/hooks/CHANGELOG.md @@ -1,5 +1,11 @@ # @gluestack-ui/hooks +## 0.2.0 + +### Minor Changes + +- Feat: backhandler api update + ## 0.1.12 ### Patch Changes diff --git a/packages/unstyled/hooks/package.json b/packages/unstyled/hooks/package.json index 2ec8d67fe4..746e28be12 100644 --- a/packages/unstyled/hooks/package.json +++ b/packages/unstyled/hooks/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/hooks", "description": "Provides hooks used in gluestack-ui", - "version": "0.1.12", + "version": "0.2.0", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", diff --git a/packages/unstyled/image-viewer/CHANGELOG.md b/packages/unstyled/image-viewer/CHANGELOG.md index 9376145a1b..10570a10d1 100644 --- a/packages/unstyled/image-viewer/CHANGELOG.md +++ b/packages/unstyled/image-viewer/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/image-viewer +## 0.0.11 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.0.10 ### Patch Changes diff --git a/packages/unstyled/image-viewer/package.json b/packages/unstyled/image-viewer/package.json index e4380880bf..4e296d073b 100644 --- a/packages/unstyled/image-viewer/package.json +++ b/packages/unstyled/image-viewer/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/image-viewer", - "version": "0.0.10", + "version": "0.0.11", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -47,7 +47,7 @@ "react-native-gesture-handler": "^2.21.2", "react-native-reanimated": "^3.16.6", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@gluestack-ui/utils": "^0.1.14" }, "peerDependencies": { diff --git a/packages/unstyled/image/CHANGELOG.md b/packages/unstyled/image/CHANGELOG.md index 18e828932a..9945166c68 100644 --- a/packages/unstyled/image/CHANGELOG.md +++ b/packages/unstyled/image/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/button +## 0.1.12 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.1.11 ### Patch Changes diff --git a/packages/unstyled/image/package.json b/packages/unstyled/image/package.json index ed118b9acc..a62c48be83 100644 --- a/packages/unstyled/image/package.json +++ b/packages/unstyled/image/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/image", - "version": "0.1.11", + "version": "0.1.12", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -46,7 +46,7 @@ "dependencies": { "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13" + "@react-native-aria/interactions": "0.3.0" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/input/CHANGELOG.md b/packages/unstyled/input/CHANGELOG.md index fe029bcccb..60ded68d79 100644 --- a/packages/unstyled/input/CHANGELOG.md +++ b/packages/unstyled/input/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/input +## 0.1.33 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.1.32 ### Patch Changes diff --git a/packages/unstyled/input/package.json b/packages/unstyled/input/package.json index 3731b6a0bc..1c6773fee5 100644 --- a/packages/unstyled/input/package.json +++ b/packages/unstyled/input/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/input", "description": "A universal headless input component for React Native, Next.js & React", - "version": "0.1.32", + "version": "0.1.33", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -33,7 +33,7 @@ "@gluestack-ui/form-control": "^0.1.19", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13" + "@react-native-aria/interactions": "0.3.0" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/link/CHANGELOG.md b/packages/unstyled/link/CHANGELOG.md index f47e5e4b17..d3544044ab 100644 --- a/packages/unstyled/link/CHANGELOG.md +++ b/packages/unstyled/link/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/link +## 0.1.24 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.1.23 ### Patch Changes diff --git a/packages/unstyled/link/package.json b/packages/unstyled/link/package.json index 00b734a870..ec7699a219 100644 --- a/packages/unstyled/link/package.json +++ b/packages/unstyled/link/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/link", - "version": "0.1.23", + "version": "0.1.24", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -46,7 +46,7 @@ "dependencies": { "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13" + "@react-native-aria/interactions": "0.3.0" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/menu/CHANGELOG.md b/packages/unstyled/menu/CHANGELOG.md index d4aebec713..70b0b603e2 100644 --- a/packages/unstyled/menu/CHANGELOG.md +++ b/packages/unstyled/menu/CHANGELOG.md @@ -1,5 +1,15 @@ # @gluestack-ui/menu +## 0.2.38 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + - @gluestack-ui/hooks@0.2.0 + - @react-native-aria/menu@0.2.13 + - @gluestack-ui/overlay@0.1.17 + ## 0.2.37 ### Patch Changes diff --git a/packages/unstyled/menu/package.json b/packages/unstyled/menu/package.json index 063307b0c2..e4dde59f6c 100644 --- a/packages/unstyled/menu/package.json +++ b/packages/unstyled/menu/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.2.37", + "version": "0.2.38", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,14 +44,14 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.1.12", - "@gluestack-ui/overlay": "^0.1.16", + "@gluestack-ui/hooks": "0.2.0", + "@gluestack-ui/overlay": "^0.1.17", "@gluestack-ui/utils": "^0.1.14", "@react-aria/menu": "^3.14.1", "@react-aria/overlays": "^3.19.0", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13", - "@react-native-aria/menu": "0.2.12", + "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/menu": "0.2.13", "@react-native-aria/overlays": "^0.3.12", "@react-stately/utils": "^3.6.0", "react-stately": "^3.21.0" diff --git a/packages/unstyled/modal/CHANGELOG.md b/packages/unstyled/modal/CHANGELOG.md index 1cb11ba986..a3b5f6ee31 100644 --- a/packages/unstyled/modal/CHANGELOG.md +++ b/packages/unstyled/modal/CHANGELOG.md @@ -1,5 +1,14 @@ # @gluestack-ui/modal +## 0.1.36 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + - @gluestack-ui/hooks@0.2.0 + - @gluestack-ui/overlay@0.1.17 + ## 0.1.35 ### Patch Changes diff --git a/packages/unstyled/modal/package.json b/packages/unstyled/modal/package.json index bddffc7c03..266d84056c 100644 --- a/packages/unstyled/modal/package.json +++ b/packages/unstyled/modal/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.1.35", + "version": "0.1.36", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,12 +44,12 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.1.12", - "@gluestack-ui/overlay": "^0.1.16", + "@gluestack-ui/hooks": "0.2.0", + "@gluestack-ui/overlay": "^0.1.17", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/dialog": "^0.0.4", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-native-aria/overlays": "^0.3.12" }, "peerDependencies": { diff --git a/packages/unstyled/overlay/CHANGELOG.md b/packages/unstyled/overlay/CHANGELOG.md index 885be72865..df5ec45df9 100644 --- a/packages/unstyled/overlay/CHANGELOG.md +++ b/packages/unstyled/overlay/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/overlay +## 0.1.17 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.1.16 ### Patch Changes diff --git a/packages/unstyled/overlay/package.json b/packages/unstyled/overlay/package.json index 3873a1d66e..6deb780d0f 100644 --- a/packages/unstyled/overlay/package.json +++ b/packages/unstyled/overlay/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/overlay", "description": "A universal headless overlay component for React Native, Next.js & React", - "version": "0.1.16", + "version": "0.1.17", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -31,7 +31,7 @@ }, "dependencies": { "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-native-aria/overlays": "^0.3.12" }, "peerDependencies": { diff --git a/packages/unstyled/pin-input/CHANGELOG.md b/packages/unstyled/pin-input/CHANGELOG.md index d58b191b0e..79fcc2cdb5 100644 --- a/packages/unstyled/pin-input/CHANGELOG.md +++ b/packages/unstyled/pin-input/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/pin-input +## 0.0.9 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.0.8 ### Patch Changes diff --git a/packages/unstyled/pin-input/package.json b/packages/unstyled/pin-input/package.json index 71bb2c814a..7fb4368ef2 100644 --- a/packages/unstyled/pin-input/package.json +++ b/packages/unstyled/pin-input/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/pin-input", "description": "A universal headless pin-input component for React Native, Next.js & React", - "version": "0.0.8", + "version": "0.0.9", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -33,7 +33,7 @@ "@gluestack-ui/form-control": "^0.1.19", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13" + "@react-native-aria/interactions": "0.3.0" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/popover/CHANGELOG.md b/packages/unstyled/popover/CHANGELOG.md index 7d0c78e37d..de7e71a7c6 100644 --- a/packages/unstyled/popover/CHANGELOG.md +++ b/packages/unstyled/popover/CHANGELOG.md @@ -1,5 +1,14 @@ # @gluestack-ui/popover +## 0.1.44 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + - @gluestack-ui/hooks@0.2.0 + - @gluestack-ui/overlay@0.1.17 + ## 0.1.43 ### Patch Changes diff --git a/packages/unstyled/popover/package.json b/packages/unstyled/popover/package.json index f600f5aee8..e3489ce959 100644 --- a/packages/unstyled/popover/package.json +++ b/packages/unstyled/popover/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/popover", - "version": "0.1.43", + "version": "0.1.44", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,12 +44,12 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.1.12", - "@gluestack-ui/overlay": "0.1.16", + "@gluestack-ui/hooks": "0.2.0", + "@gluestack-ui/overlay": "0.1.17", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/dialog": "^0.0.4", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-native-aria/overlays": "0.3.14" }, "peerDependencies": { diff --git a/packages/unstyled/pressable/CHANGELOG.md b/packages/unstyled/pressable/CHANGELOG.md index b71af59f75..5140b4705b 100644 --- a/packages/unstyled/pressable/CHANGELOG.md +++ b/packages/unstyled/pressable/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/pressable +## 0.1.18 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.1.17 ### Patch Changes diff --git a/packages/unstyled/pressable/package.json b/packages/unstyled/pressable/package.json index 923bed0337..e30c48e113 100644 --- a/packages/unstyled/pressable/package.json +++ b/packages/unstyled/pressable/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/pressable", - "version": "0.1.17", + "version": "0.1.18", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -46,7 +46,7 @@ "dependencies": { "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13" + "@react-native-aria/interactions": "0.3.0" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/provider/CHANGELOG.md b/packages/unstyled/provider/CHANGELOG.md index db6d4cc0a5..b4495386f9 100644 --- a/packages/unstyled/provider/CHANGELOG.md +++ b/packages/unstyled/provider/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/provider +## 0.1.14 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.1.13 ### Patch Changes diff --git a/packages/unstyled/provider/package.json b/packages/unstyled/provider/package.json index d8c03bf684..63d72c16da 100644 --- a/packages/unstyled/provider/package.json +++ b/packages/unstyled/provider/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.1.13", + "version": "0.1.14", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -43,7 +43,7 @@ "tsconfig": "*" }, "dependencies": { - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "tsconfig": "7", "typescript": "^5.6.3" }, diff --git a/packages/unstyled/radio/CHANGELOG.md b/packages/unstyled/radio/CHANGELOG.md index a25e573345..c07a33acbd 100644 --- a/packages/unstyled/radio/CHANGELOG.md +++ b/packages/unstyled/radio/CHANGELOG.md @@ -1,5 +1,13 @@ # @gluestack-ui/radio +## 0.1.35 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + - @react-native-aria/radio@0.2.11 + ## 0.1.34 ### Patch Changes diff --git a/packages/unstyled/radio/package.json b/packages/unstyled/radio/package.json index ce81394116..a9aa18677a 100644 --- a/packages/unstyled/radio/package.json +++ b/packages/unstyled/radio/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/radio", - "version": "0.1.34", + "version": "0.1.35", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -48,8 +48,8 @@ "@gluestack-ui/utils": "^0.1.14", "@react-aria/visually-hidden": "^3.7.0", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13", - "@react-native-aria/radio": "^0.2.10", + "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/radio": "^0.2.11", "@react-stately/radio": "^3.8.1" }, "peerDependencies": { diff --git a/packages/unstyled/react-native-aria/CHANGELOG.md b/packages/unstyled/react-native-aria/CHANGELOG.md index 7c18edcd15..4ad5db8774 100644 --- a/packages/unstyled/react-native-aria/CHANGELOG.md +++ b/packages/unstyled/react-native-aria/CHANGELOG.md @@ -1,5 +1,11 @@ # @gluestack-ui/react-native-aria +## 0.2.0 + +### Minor Changes + +- Feat: backhandler api update + ## 0.1.6 ### Patch Changes diff --git a/packages/unstyled/react-native-aria/package.json b/packages/unstyled/react-native-aria/package.json index 269b631273..94872d429d 100644 --- a/packages/unstyled/react-native-aria/package.json +++ b/packages/unstyled/react-native-aria/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/react-native-aria", - "version": "0.1.6", + "version": "0.2.0", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", diff --git a/packages/unstyled/select/CHANGELOG.md b/packages/unstyled/select/CHANGELOG.md index 02dd96ddf9..f5763519d0 100644 --- a/packages/unstyled/select/CHANGELOG.md +++ b/packages/unstyled/select/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/select +## 0.1.31 + +### Patch Changes + +- Updated dependencies + - @gluestack-ui/hooks@0.2.0 + ## 0.1.30 ### Patch Changes diff --git a/packages/unstyled/select/package.json b/packages/unstyled/select/package.json index 406cac8ff1..fdcdbeab01 100644 --- a/packages/unstyled/select/package.json +++ b/packages/unstyled/select/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.1.30", + "version": "0.1.31", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -45,7 +45,7 @@ }, "dependencies": { "@gluestack-ui/form-control": "^0.1.19", - "@gluestack-ui/hooks": "0.1.12", + "@gluestack-ui/hooks": "0.2.0", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9" }, diff --git a/packages/unstyled/slider/CHANGELOG.md b/packages/unstyled/slider/CHANGELOG.md index ecd2d1a261..e479b887f6 100644 --- a/packages/unstyled/slider/CHANGELOG.md +++ b/packages/unstyled/slider/CHANGELOG.md @@ -1,5 +1,13 @@ # @gluestack-ui/slider +## 0.1.27 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + - @gluestack-ui/hooks@0.2.0 + ## 0.1.26 ### Patch Changes diff --git a/packages/unstyled/slider/package.json b/packages/unstyled/slider/package.json index 7fda6a01fe..68391a2c61 100644 --- a/packages/unstyled/slider/package.json +++ b/packages/unstyled/slider/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/slider", "description": "A universal headless slider component for React Native, Next.js & React", - "version": "0.1.26", + "version": "0.1.27", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -31,10 +31,10 @@ }, "dependencies": { "@gluestack-ui/form-control": "^0.1.19", - "@gluestack-ui/hooks": "0.1.12", + "@gluestack-ui/hooks": "0.2.0", "@gluestack-ui/utils": "^0.1.14", "@react-aria/visually-hidden": "^3.8.1", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-native-aria/slider": "^0.2.11", "@react-stately/slider": "^3.2.4" }, diff --git a/packages/unstyled/switch/CHANGELOG.md b/packages/unstyled/switch/CHANGELOG.md index d5e6ef2724..ab76e334ec 100644 --- a/packages/unstyled/switch/CHANGELOG.md +++ b/packages/unstyled/switch/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/switch +## 0.1.24 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.1.23 ### Patch Changes diff --git a/packages/unstyled/switch/package.json b/packages/unstyled/switch/package.json index 6b3b755c4e..1b2c02b0aa 100644 --- a/packages/unstyled/switch/package.json +++ b/packages/unstyled/switch/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/switch", - "version": "0.1.23", + "version": "0.1.24", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -47,7 +47,7 @@ "@gluestack-ui/form-control": "^0.1.19", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-stately/toggle": "^3.4.4" }, "peerDependencies": { diff --git a/packages/unstyled/tabs/CHANGELOG.md b/packages/unstyled/tabs/CHANGELOG.md index 9f4e48754c..923c27f93f 100644 --- a/packages/unstyled/tabs/CHANGELOG.md +++ b/packages/unstyled/tabs/CHANGELOG.md @@ -1,5 +1,12 @@ # @gluestack-ui/tabs +## 0.1.19 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + ## 0.1.18 ### Patch Changes diff --git a/packages/unstyled/tabs/package.json b/packages/unstyled/tabs/package.json index eee774f868..5dc8a5172b 100644 --- a/packages/unstyled/tabs/package.json +++ b/packages/unstyled/tabs/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/tabs", - "version": "0.1.18", + "version": "0.1.19", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -31,7 +31,7 @@ "dependencies": { "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13" + "@react-native-aria/interactions": "0.3.0" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/toast/CHANGELOG.md b/packages/unstyled/toast/CHANGELOG.md index ec814141f6..6baefe2fbf 100644 --- a/packages/unstyled/toast/CHANGELOG.md +++ b/packages/unstyled/toast/CHANGELOG.md @@ -1,5 +1,14 @@ # @gluestack-ui/toast +## 1.0.9 + +### Patch Changes + +- Updated dependencies + - @gluestack-ui/hooks@0.2.0 + - @gluestack-ui/overlay@0.1.17 + - @gluestack-ui/transitions@0.1.12 + ## 1.0.8 ### Patch Changes diff --git a/packages/unstyled/toast/package.json b/packages/unstyled/toast/package.json index 94e0bbcf86..caf5c5b0c1 100644 --- a/packages/unstyled/toast/package.json +++ b/packages/unstyled/toast/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "1.0.8", + "version": "1.0.9", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,9 +44,9 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.1.12", - "@gluestack-ui/overlay": "^0.1.16", - "@gluestack-ui/transitions": "^0.1.11", + "@gluestack-ui/hooks": "0.2.0", + "@gluestack-ui/overlay": "^0.1.17", + "@gluestack-ui/transitions": "^0.1.12", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9" }, diff --git a/packages/unstyled/tooltip/CHANGELOG.md b/packages/unstyled/tooltip/CHANGELOG.md index 296c63cc27..4572c61146 100644 --- a/packages/unstyled/tooltip/CHANGELOG.md +++ b/packages/unstyled/tooltip/CHANGELOG.md @@ -1,5 +1,14 @@ # @gluestack-ui/tooltip +## 0.1.39 + +### Patch Changes + +- Updated dependencies + - @react-native-aria/interactions@0.3.0 + - @gluestack-ui/hooks@0.2.0 + - @gluestack-ui/overlay@0.1.17 + ## 0.1.38 ### Patch Changes diff --git a/packages/unstyled/tooltip/package.json b/packages/unstyled/tooltip/package.json index 020b01d507..683e144846 100644 --- a/packages/unstyled/tooltip/package.json +++ b/packages/unstyled/tooltip/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/tooltip", "description": "A universal headless tooltip component for React Native, Next.js & React", - "version": "0.1.38", + "version": "0.1.39", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -30,11 +30,11 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.1.12", - "@gluestack-ui/overlay": "^0.1.16", + "@gluestack-ui/hooks": "0.2.0", + "@gluestack-ui/overlay": "^0.1.17", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/interactions": "0.3.0", "@react-native-aria/overlays": "^0.3.12" }, "peerDependencies": { diff --git a/packages/unstyled/transitions/CHANGELOG.md b/packages/unstyled/transitions/CHANGELOG.md index d00f94dd7b..7503af1307 100644 --- a/packages/unstyled/transitions/CHANGELOG.md +++ b/packages/unstyled/transitions/CHANGELOG.md @@ -1,5 +1,13 @@ # @gluestack-ui/transitions +## 0.1.12 + +### Patch Changes + +- Updated dependencies + - @gluestack-ui/react-native-aria@0.2.0 + - @gluestack-ui/overlay@0.1.17 + ## 0.1.11 ### Patch Changes diff --git a/packages/unstyled/transitions/package.json b/packages/unstyled/transitions/package.json index cf7dd6fa71..0c1786eba6 100644 --- a/packages/unstyled/transitions/package.json +++ b/packages/unstyled/transitions/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/transitions", "description": "Transitions animations for React Native, Next.js & React", - "version": "0.1.11", + "version": "0.1.12", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -30,8 +30,8 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/overlay": "^0.1.16", - "@gluestack-ui/react-native-aria": "^0.1.6", + "@gluestack-ui/overlay": "^0.1.17", + "@gluestack-ui/react-native-aria": "^0.2.0", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9" }, From efb05f50d4723d2b4138fb79a74fd38f8186316c Mon Sep 17 00:00:00 2001 From: Akash Gautam Date: Tue, 18 Feb 2025 10:53:25 +0530 Subject: [PATCH 5/5] Revert "chore: changelog update & version bump" This reverts commit 0788b5ea80e6685179a1ed2cf371841f2eb8fe31. --- example/storybook-nativewind/package.json | 4 +- example/storybook/package.json | 2 +- packages/config/package.json | 48 +++++++++---------- .../react-native-aria/button/CHANGELOG.md | 7 --- .../react-native-aria/button/package.json | 4 +- .../interactions/CHANGELOG.md | 6 --- .../interactions/package.json | 2 +- .../react-native-aria/listbox/CHANGELOG.md | 7 --- .../react-native-aria/listbox/package.json | 4 +- packages/react-native-aria/menu/CHANGELOG.md | 7 --- packages/react-native-aria/menu/package.json | 4 +- packages/react-native-aria/radio/CHANGELOG.md | 7 --- packages/react-native-aria/radio/package.json | 4 +- packages/react-native-aria/tabs/CHANGELOG.md | 7 --- packages/react-native-aria/tabs/package.json | 4 +- .../react-native-aria/toggle/CHANGELOG.md | 7 --- .../react-native-aria/toggle/package.json | 4 +- .../react-native-aria/tooltip/CHANGELOG.md | 7 --- .../react-native-aria/tooltip/package.json | 4 +- packages/themed/CHANGELOG.md | 27 ----------- packages/themed/package.json | 46 +++++++++--------- packages/unstyled/accordion/CHANGELOG.md | 7 --- packages/unstyled/accordion/package.json | 4 +- packages/unstyled/actionsheet/CHANGELOG.md | 10 ---- packages/unstyled/actionsheet/package.json | 10 ++-- packages/unstyled/alert-dialog/CHANGELOG.md | 9 ---- packages/unstyled/alert-dialog/package.json | 8 ++-- packages/unstyled/button/CHANGELOG.md | 7 --- packages/unstyled/button/package.json | 4 +- packages/unstyled/checkbox/CHANGELOG.md | 7 --- packages/unstyled/checkbox/package.json | 4 +- packages/unstyled/fab/CHANGELOG.md | 7 --- packages/unstyled/fab/package.json | 4 +- packages/unstyled/hooks/CHANGELOG.md | 6 --- packages/unstyled/hooks/package.json | 2 +- packages/unstyled/image-viewer/CHANGELOG.md | 7 --- packages/unstyled/image-viewer/package.json | 4 +- packages/unstyled/image/CHANGELOG.md | 7 --- packages/unstyled/image/package.json | 4 +- packages/unstyled/input/CHANGELOG.md | 7 --- packages/unstyled/input/package.json | 4 +- packages/unstyled/link/CHANGELOG.md | 7 --- packages/unstyled/link/package.json | 4 +- packages/unstyled/menu/CHANGELOG.md | 10 ---- packages/unstyled/menu/package.json | 10 ++-- packages/unstyled/modal/CHANGELOG.md | 9 ---- packages/unstyled/modal/package.json | 8 ++-- packages/unstyled/overlay/CHANGELOG.md | 7 --- packages/unstyled/overlay/package.json | 4 +- packages/unstyled/pin-input/CHANGELOG.md | 7 --- packages/unstyled/pin-input/package.json | 4 +- packages/unstyled/popover/CHANGELOG.md | 9 ---- packages/unstyled/popover/package.json | 8 ++-- packages/unstyled/pressable/CHANGELOG.md | 7 --- packages/unstyled/pressable/package.json | 4 +- packages/unstyled/provider/CHANGELOG.md | 7 --- packages/unstyled/provider/package.json | 4 +- packages/unstyled/radio/CHANGELOG.md | 8 ---- packages/unstyled/radio/package.json | 6 +-- .../unstyled/react-native-aria/CHANGELOG.md | 6 --- .../unstyled/react-native-aria/package.json | 2 +- packages/unstyled/select/CHANGELOG.md | 7 --- packages/unstyled/select/package.json | 4 +- packages/unstyled/slider/CHANGELOG.md | 8 ---- packages/unstyled/slider/package.json | 6 +-- packages/unstyled/switch/CHANGELOG.md | 7 --- packages/unstyled/switch/package.json | 4 +- packages/unstyled/tabs/CHANGELOG.md | 7 --- packages/unstyled/tabs/package.json | 4 +- packages/unstyled/toast/CHANGELOG.md | 9 ---- packages/unstyled/toast/package.json | 8 ++-- packages/unstyled/tooltip/CHANGELOG.md | 9 ---- packages/unstyled/tooltip/package.json | 8 ++-- packages/unstyled/transitions/CHANGELOG.md | 8 ---- packages/unstyled/transitions/package.json | 6 +-- 75 files changed, 136 insertions(+), 424 deletions(-) diff --git a/example/storybook-nativewind/package.json b/example/storybook-nativewind/package.json index 1da0639c81..2a668a7cf7 100644 --- a/example/storybook-nativewind/package.json +++ b/example/storybook-nativewind/package.json @@ -32,7 +32,7 @@ "@gluestack-style/animation-resolver": "^1.0.4", "@gluestack-style/react": "^1.0.57", "@gluestack-ui/config": "^1.1.19", - "@gluestack-ui/themed": "^1.1.66", + "@gluestack-ui/themed": "^1.1.65", "@gluestack/design-system": "^0.5.36", "@gorhom/bottom-sheet": "^5.0.0-alpha.10", "@legendapp/motion": "^2.2.0", @@ -43,7 +43,7 @@ "@react-aria/overlays": "^3.13.0", "@react-aria/separator": "^3.3.0", "@react-aria/utils": "^3.15.0", - "@react-native-aria/button": "^0.2.8", + "@react-native-aria/button": "^0.2.7", "@react-native-aria/checkbox": "^0.2.9", "@react-native-aria/overlays": "^0.3.14", "@react-native-aria/separator": "^0.2.6", diff --git a/example/storybook/package.json b/example/storybook/package.json index 10eb4e9dd8..344308514c 100644 --- a/example/storybook/package.json +++ b/example/storybook/package.json @@ -34,7 +34,7 @@ "@react-aria/overlays": "^3.13.0", "@react-aria/separator": "^3.3.0", "@react-aria/utils": "^3.15.0", - "@react-native-aria/button": "^0.2.8", + "@react-native-aria/button": "^0.2.7", "@react-native-aria/overlays": "0.3.14", "@react-native-aria/separator": "^0.2.6", "@react-native-async-storage/async-storage": "~1.17.3", diff --git a/packages/config/package.json b/packages/config/package.json index c6c95752ad..da67ad7b80 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -38,42 +38,42 @@ "@gluestack-style/animation-resolver": "1.0.4", "@gluestack-style/legend-motion-animation-driver": "1.0.3", "@gluestack-style/react": "1.0.57", - "@gluestack-ui/accordion": "1.0.9", - "@gluestack-ui/actionsheet": "0.2.47", + "@gluestack-ui/accordion": "1.0.8", + "@gluestack-ui/actionsheet": "0.2.46", "@gluestack-ui/alert": "0.1.16", - "@gluestack-ui/alert-dialog": "0.1.33", + "@gluestack-ui/alert-dialog": "0.1.32", "@gluestack-ui/avatar": "0.1.18", - "@gluestack-ui/button": "1.0.9", - "@gluestack-ui/checkbox": "0.1.34", + "@gluestack-ui/button": "1.0.8", + "@gluestack-ui/checkbox": "0.1.33", "@gluestack-ui/divider": "0.1.10", - "@gluestack-ui/fab": "0.1.23", + "@gluestack-ui/fab": "0.1.22", "@gluestack-ui/form-control": "0.1.19", "@gluestack-ui/icon": "0.1.25", - "@gluestack-ui/image": "0.1.12", - "@gluestack-ui/input": "0.1.33", - "@gluestack-ui/link": "0.1.24", - "@gluestack-ui/menu": "0.2.38", - "@gluestack-ui/modal": "0.1.36", - "@gluestack-ui/overlay": "0.1.17", - "@gluestack-ui/popover": "0.1.44", - "@gluestack-ui/pressable": "0.1.18", + "@gluestack-ui/image": "0.1.11", + "@gluestack-ui/input": "0.1.32", + "@gluestack-ui/link": "0.1.23", + "@gluestack-ui/menu": "0.2.37", + "@gluestack-ui/modal": "0.1.35", + "@gluestack-ui/overlay": "0.1.16", + "@gluestack-ui/popover": "0.1.43", + "@gluestack-ui/pressable": "0.1.17", "@gluestack-ui/progress": "0.1.18", - "@gluestack-ui/provider": "0.1.14", - "@gluestack-ui/radio": "0.1.35", - "@gluestack-ui/select": "0.1.31", - "@gluestack-ui/slider": "0.1.27", + "@gluestack-ui/provider": "0.1.13", + "@gluestack-ui/radio": "0.1.34", + "@gluestack-ui/select": "0.1.30", + "@gluestack-ui/slider": "0.1.26", "@gluestack-ui/spinner": "0.1.15", - "@gluestack-ui/switch": "0.1.24", - "@gluestack-ui/tabs": "0.1.19", + "@gluestack-ui/switch": "0.1.23", + "@gluestack-ui/tabs": "0.1.18", "@gluestack-ui/textarea": "0.1.24", - "@gluestack-ui/themed": "1.1.66", - "@gluestack-ui/toast": "1.0.9", - "@gluestack-ui/tooltip": "0.1.39", + "@gluestack-ui/themed": "1.1.65", + "@gluestack-ui/toast": "1.0.8", + "@gluestack-ui/tooltip": "0.1.38", "@legendapp/motion": "latest" }, "peerDependencies": { "@gluestack-style/react": ">=1.0.57", - "@gluestack-ui/themed": ">=1.1.66" + "@gluestack-ui/themed": ">=1.1.65" }, "release-it": { "git": { diff --git a/packages/react-native-aria/button/CHANGELOG.md b/packages/react-native-aria/button/CHANGELOG.md index 43b4166548..bb41a38ba9 100644 --- a/packages/react-native-aria/button/CHANGELOG.md +++ b/packages/react-native-aria/button/CHANGELOG.md @@ -1,12 +1,5 @@ # @react-native-aria/button -## 0.2.8 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.2.7 ### Patch Changes diff --git a/packages/react-native-aria/button/package.json b/packages/react-native-aria/button/package.json index b0a64535fb..a655825483 100644 --- a/packages/react-native-aria/button/package.json +++ b/packages/react-native-aria/button/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/button", - "version": "0.2.8", + "version": "0.2.7", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -52,7 +52,7 @@ }, "dependencies": { "@react-aria/utils": "^3.6.0", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-stately/toggle": "^3.2.1", "@react-types/checkbox": "^3.2.1" }, diff --git a/packages/react-native-aria/interactions/CHANGELOG.md b/packages/react-native-aria/interactions/CHANGELOG.md index 4b79aaef2b..a14249687d 100644 --- a/packages/react-native-aria/interactions/CHANGELOG.md +++ b/packages/react-native-aria/interactions/CHANGELOG.md @@ -1,11 +1,5 @@ # @react-native-aria/interactions -## 0.3.0 - -### Minor Changes - -- Feat: backhandler api update - ## 0.2.13 ### Patch Changes diff --git a/packages/react-native-aria/interactions/package.json b/packages/react-native-aria/interactions/package.json index 0689e9abf4..b899371eee 100644 --- a/packages/react-native-aria/interactions/package.json +++ b/packages/react-native-aria/interactions/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/interactions", - "version": "0.3.0", + "version": "0.2.13", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/packages/react-native-aria/listbox/CHANGELOG.md b/packages/react-native-aria/listbox/CHANGELOG.md index d20c69f741..c2bebb5d64 100644 --- a/packages/react-native-aria/listbox/CHANGELOG.md +++ b/packages/react-native-aria/listbox/CHANGELOG.md @@ -1,12 +1,5 @@ # @react-native-aria/listbox -## 0.2.7 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.2.6 ### Patch Changes diff --git a/packages/react-native-aria/listbox/package.json b/packages/react-native-aria/listbox/package.json index c8007fd981..b95a893779 100644 --- a/packages/react-native-aria/listbox/package.json +++ b/packages/react-native-aria/listbox/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/listbox", - "version": "0.2.7", + "version": "0.2.6", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -61,7 +61,7 @@ "@react-aria/listbox": "^3.2.4", "@react-aria/selection": "^3.3.2", "@react-aria/utils": "^3.6.0", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-native-aria/utils": "0.2.11", "@react-types/listbox": "^3.1.1", "@react-types/shared": "^3.4.0" diff --git a/packages/react-native-aria/menu/CHANGELOG.md b/packages/react-native-aria/menu/CHANGELOG.md index 744380aa0f..5c67c1785c 100644 --- a/packages/react-native-aria/menu/CHANGELOG.md +++ b/packages/react-native-aria/menu/CHANGELOG.md @@ -1,12 +1,5 @@ # @react-native-aria/menu -## 0.2.13 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.2.12 ### Patch Changes diff --git a/packages/react-native-aria/menu/package.json b/packages/react-native-aria/menu/package.json index c17c08ff50..ea5d11c832 100644 --- a/packages/react-native-aria/menu/package.json +++ b/packages/react-native-aria/menu/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/menu", - "version": "0.2.13", + "version": "0.2.12", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -55,7 +55,7 @@ "@react-aria/menu": "^3.1.3", "@react-aria/selection": "^3.3.1", "@react-aria/utils": "^3.6.0", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-native-aria/overlays": "^0.3.12", "@react-native-aria/utils": "0.2.11", "@react-stately/collections": "^3.3.0", diff --git a/packages/react-native-aria/radio/CHANGELOG.md b/packages/react-native-aria/radio/CHANGELOG.md index b50323abda..df90e9e623 100644 --- a/packages/react-native-aria/radio/CHANGELOG.md +++ b/packages/react-native-aria/radio/CHANGELOG.md @@ -4,13 +4,6 @@ ### Patch Changes -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - -## 0.2.11 - -### Patch Changes - - fix: typing issue for radio input checkbox ## 0.2.10 diff --git a/packages/react-native-aria/radio/package.json b/packages/react-native-aria/radio/package.json index acb4fcf8dd..aaf82d5382 100644 --- a/packages/react-native-aria/radio/package.json +++ b/packages/react-native-aria/radio/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/radio", - "version": "0.2.11", + "version": "0.2.10", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -24,7 +24,7 @@ "dependencies": { "@react-aria/radio": "^3.1.2", "@react-aria/utils": "^3.6.0", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-native-aria/utils": "0.2.11", "@react-stately/radio": "^3.2.1", "@react-types/radio": "^3.1.1" diff --git a/packages/react-native-aria/tabs/CHANGELOG.md b/packages/react-native-aria/tabs/CHANGELOG.md index dc56d40130..6a8e3757f3 100644 --- a/packages/react-native-aria/tabs/CHANGELOG.md +++ b/packages/react-native-aria/tabs/CHANGELOG.md @@ -1,12 +1,5 @@ # @react-native-aria/tabs -## 0.2.11 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.2.10 ### Patch Changes diff --git a/packages/react-native-aria/tabs/package.json b/packages/react-native-aria/tabs/package.json index 285480d3b7..195bc7be6c 100644 --- a/packages/react-native-aria/tabs/package.json +++ b/packages/react-native-aria/tabs/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/tabs", - "version": "0.2.11", + "version": "0.2.10", "description": "This library is a part of react-native-aria.", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -58,7 +58,7 @@ "dependencies": { "@react-aria/selection": "^3.3.1", "@react-aria/tabs": "3.0.0-alpha.2", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-native-aria/utils": "0.2.11", "@react-stately/tabs": "3.0.0-alpha.1", "@react-types/tabs": "3.0.0-alpha.2" diff --git a/packages/react-native-aria/toggle/CHANGELOG.md b/packages/react-native-aria/toggle/CHANGELOG.md index befb7ed7da..a819feeaf9 100644 --- a/packages/react-native-aria/toggle/CHANGELOG.md +++ b/packages/react-native-aria/toggle/CHANGELOG.md @@ -1,12 +1,5 @@ # @react-native-aria/toggle -## 0.2.9 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.2.8 ### Patch Changes diff --git a/packages/react-native-aria/toggle/package.json b/packages/react-native-aria/toggle/package.json index 0ac30327bf..ee472ba93d 100644 --- a/packages/react-native-aria/toggle/package.json +++ b/packages/react-native-aria/toggle/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/toggle", - "version": "0.2.9", + "version": "0.2.8", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -24,7 +24,7 @@ "dependencies": { "@react-aria/focus": "^3.2.3", "@react-aria/utils": "^3.6.0", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-native-aria/utils": "0.2.11", "@react-stately/toggle": "^3.2.1", "@react-types/checkbox": "^3.2.1" diff --git a/packages/react-native-aria/tooltip/CHANGELOG.md b/packages/react-native-aria/tooltip/CHANGELOG.md index 840f03a8ea..28503fa81f 100644 --- a/packages/react-native-aria/tooltip/CHANGELOG.md +++ b/packages/react-native-aria/tooltip/CHANGELOG.md @@ -1,12 +1,5 @@ # @react-native-aria/tooltip -## 0.2.7 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.2.6 ### Patch Changes diff --git a/packages/react-native-aria/tooltip/package.json b/packages/react-native-aria/tooltip/package.json index 64e4d525f5..739fc4573f 100644 --- a/packages/react-native-aria/tooltip/package.json +++ b/packages/react-native-aria/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-aria/tooltip", - "version": "0.2.7", + "version": "0.2.6", "description": "mono repo setup with bob", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -53,7 +53,7 @@ "dependencies": { "@react-aria/tooltip": "3.1.0", "@react-aria/utils": "^3.6.0", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-native-aria/utils": "0.2.11", "@react-stately/tooltip": "3.0.1" }, diff --git a/packages/themed/CHANGELOG.md b/packages/themed/CHANGELOG.md index 4722642ba7..103f921101 100644 --- a/packages/themed/CHANGELOG.md +++ b/packages/themed/CHANGELOG.md @@ -1,32 +1,5 @@ # @gluestack-ui/themed -## 1.1.66 - -### Patch Changes - -- @gluestack-ui/accordion@1.0.9 -- @gluestack-ui/actionsheet@0.2.47 -- @gluestack-ui/alert-dialog@0.1.33 -- @gluestack-ui/button@1.0.9 -- @gluestack-ui/checkbox@0.1.34 -- @gluestack-ui/fab@0.1.23 -- @gluestack-ui/image@0.1.12 -- @gluestack-ui/input@0.1.33 -- @gluestack-ui/link@0.1.24 -- @gluestack-ui/menu@0.2.38 -- @gluestack-ui/modal@0.1.36 -- @gluestack-ui/overlay@0.1.17 -- @gluestack-ui/popover@0.1.44 -- @gluestack-ui/pressable@0.1.18 -- @gluestack-ui/provider@0.1.14 -- @gluestack-ui/radio@0.1.35 -- @gluestack-ui/slider@0.1.27 -- @gluestack-ui/switch@0.1.24 -- @gluestack-ui/tabs@0.1.19 -- @gluestack-ui/tooltip@0.1.39 -- @gluestack-ui/select@0.1.31 -- @gluestack-ui/toast@1.0.9 - ## 1.1.65 ### Patch Changes diff --git a/packages/themed/package.json b/packages/themed/package.json index c87f7ae768..2eaf432a7d 100644 --- a/packages/themed/package.json +++ b/packages/themed/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/themed", - "version": "1.1.66", + "version": "1.1.65", "main": "build/index.js", "types": "build/index.d.ts", "module": "build/index", @@ -37,36 +37,36 @@ "@expo/html-elements": "latest", "@gluestack-style/animation-resolver": "1.0.4", "@gluestack-style/legend-motion-animation-driver": "1.0.3", - "@gluestack-ui/accordion": "1.0.9", - "@gluestack-ui/actionsheet": "0.2.47", + "@gluestack-ui/accordion": "1.0.8", + "@gluestack-ui/actionsheet": "0.2.46", "@gluestack-ui/alert": "0.1.16", - "@gluestack-ui/alert-dialog": "0.1.33", + "@gluestack-ui/alert-dialog": "0.1.32", "@gluestack-ui/avatar": "0.1.18", - "@gluestack-ui/button": "1.0.9", - "@gluestack-ui/checkbox": "0.1.34", + "@gluestack-ui/button": "1.0.8", + "@gluestack-ui/checkbox": "0.1.33", "@gluestack-ui/divider": "0.1.10", - "@gluestack-ui/fab": "0.1.23", + "@gluestack-ui/fab": "0.1.22", "@gluestack-ui/form-control": "0.1.19", "@gluestack-ui/icon": "0.1.25", - "@gluestack-ui/image": "0.1.12", - "@gluestack-ui/input": "0.1.33", - "@gluestack-ui/link": "0.1.24", - "@gluestack-ui/menu": "0.2.38", - "@gluestack-ui/modal": "0.1.36", - "@gluestack-ui/overlay": "0.1.17", - "@gluestack-ui/popover": "0.1.44", - "@gluestack-ui/pressable": "0.1.18", + "@gluestack-ui/image": "0.1.11", + "@gluestack-ui/input": "0.1.32", + "@gluestack-ui/link": "0.1.23", + "@gluestack-ui/menu": "0.2.37", + "@gluestack-ui/modal": "0.1.35", + "@gluestack-ui/overlay": "0.1.16", + "@gluestack-ui/popover": "0.1.43", + "@gluestack-ui/pressable": "0.1.17", "@gluestack-ui/progress": "0.1.18", - "@gluestack-ui/provider": "0.1.14", - "@gluestack-ui/radio": "0.1.35", - "@gluestack-ui/select": "0.1.31", - "@gluestack-ui/slider": "0.1.27", + "@gluestack-ui/provider": "0.1.13", + "@gluestack-ui/radio": "0.1.34", + "@gluestack-ui/select": "0.1.30", + "@gluestack-ui/slider": "0.1.26", "@gluestack-ui/spinner": "0.1.15", - "@gluestack-ui/switch": "0.1.24", - "@gluestack-ui/tabs": "0.1.19", + "@gluestack-ui/switch": "0.1.23", + "@gluestack-ui/tabs": "0.1.18", "@gluestack-ui/textarea": "0.1.24", - "@gluestack-ui/toast": "1.0.9", - "@gluestack-ui/tooltip": "0.1.39", + "@gluestack-ui/toast": "1.0.8", + "@gluestack-ui/tooltip": "0.1.38", "@legendapp/motion": "latest" }, "devDependencies": { diff --git a/packages/unstyled/accordion/CHANGELOG.md b/packages/unstyled/accordion/CHANGELOG.md index 324c2fb275..4c1dffb139 100644 --- a/packages/unstyled/accordion/CHANGELOG.md +++ b/packages/unstyled/accordion/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/accordion -## 1.0.9 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 1.0.8 ### Patch Changes diff --git a/packages/unstyled/accordion/package.json b/packages/unstyled/accordion/package.json index c6e582066f..ec8dba1e19 100644 --- a/packages/unstyled/accordion/package.json +++ b/packages/unstyled/accordion/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "1.0.9", + "version": "1.0.8", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -47,7 +47,7 @@ "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/accordion": "^0.0.2", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0" + "@react-native-aria/interactions": "0.2.13" }, "homepage": "https://github.com/gluestack/gluestack-ui/tree/main/packages/unstyled/accordion#readme", "repository": { diff --git a/packages/unstyled/actionsheet/CHANGELOG.md b/packages/unstyled/actionsheet/CHANGELOG.md index 0854799f1d..59a6f97f48 100644 --- a/packages/unstyled/actionsheet/CHANGELOG.md +++ b/packages/unstyled/actionsheet/CHANGELOG.md @@ -1,15 +1,5 @@ # @gluestack-ui/actionsheet -## 0.2.47 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - - @gluestack-ui/hooks@0.2.0 - - @gluestack-ui/overlay@0.1.17 - - @gluestack-ui/transitions@0.1.12 - ## 0.2.46 ### Patch Changes diff --git a/packages/unstyled/actionsheet/package.json b/packages/unstyled/actionsheet/package.json index 525a4d2fe8..10af31ce12 100644 --- a/packages/unstyled/actionsheet/package.json +++ b/packages/unstyled/actionsheet/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.2.47", + "version": "0.2.46", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,13 +44,13 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.2.0", - "@gluestack-ui/overlay": "^0.1.17", - "@gluestack-ui/transitions": "^0.1.12", + "@gluestack-ui/hooks": "0.1.12", + "@gluestack-ui/overlay": "^0.1.16", + "@gluestack-ui/transitions": "^0.1.11", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/dialog": "^0.0.4", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0" + "@react-native-aria/interactions": "0.2.13" }, "homepage": "https://github.com/gluestack/gluestack-ui/tree/main/packages/unstyled/actionsheet#readme", "repository": { diff --git a/packages/unstyled/alert-dialog/CHANGELOG.md b/packages/unstyled/alert-dialog/CHANGELOG.md index 5471b3ecc8..bed634830a 100644 --- a/packages/unstyled/alert-dialog/CHANGELOG.md +++ b/packages/unstyled/alert-dialog/CHANGELOG.md @@ -1,14 +1,5 @@ # @gluestack-ui/alert-dialog -## 0.1.33 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - - @gluestack-ui/hooks@0.2.0 - - @gluestack-ui/overlay@0.1.17 - ## 0.1.32 ### Patch Changes diff --git a/packages/unstyled/alert-dialog/package.json b/packages/unstyled/alert-dialog/package.json index b0d6e160bd..faf37ab64e 100644 --- a/packages/unstyled/alert-dialog/package.json +++ b/packages/unstyled/alert-dialog/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.1.33", + "version": "0.1.32", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,12 +44,12 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.2.0", - "@gluestack-ui/overlay": "^0.1.17", + "@gluestack-ui/hooks": "0.1.12", + "@gluestack-ui/overlay": "^0.1.16", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/dialog": "^0.0.4", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0" + "@react-native-aria/interactions": "0.2.13" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/button/CHANGELOG.md b/packages/unstyled/button/CHANGELOG.md index 258588c892..ea1ff52238 100644 --- a/packages/unstyled/button/CHANGELOG.md +++ b/packages/unstyled/button/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/button -## 1.0.9 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 1.0.8 ### Patch Changes diff --git a/packages/unstyled/button/package.json b/packages/unstyled/button/package.json index d591651a61..cceb9b38e6 100644 --- a/packages/unstyled/button/package.json +++ b/packages/unstyled/button/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/button", - "version": "1.0.9", + "version": "1.0.8", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,7 +44,7 @@ "dependencies": { "@gluestack-ui/utils": "0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0" + "@react-native-aria/interactions": "0.2.13" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/checkbox/CHANGELOG.md b/packages/unstyled/checkbox/CHANGELOG.md index 5a7489da49..4edbefaab9 100644 --- a/packages/unstyled/checkbox/CHANGELOG.md +++ b/packages/unstyled/checkbox/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/checkbox -## 0.1.34 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.1.33 ### Patch Changes diff --git a/packages/unstyled/checkbox/package.json b/packages/unstyled/checkbox/package.json index 1887469afb..9fae159970 100644 --- a/packages/unstyled/checkbox/package.json +++ b/packages/unstyled/checkbox/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/checkbox", - "version": "0.1.34", + "version": "0.1.33", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -48,7 +48,7 @@ "@react-aria/visually-hidden": "^3.8.6", "@react-native-aria/checkbox": "^0.2.9", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-native-aria/utils": "0.2.11", "@react-stately/checkbox": "^3.4.2" }, diff --git a/packages/unstyled/fab/CHANGELOG.md b/packages/unstyled/fab/CHANGELOG.md index 526164b235..e4de3b0302 100644 --- a/packages/unstyled/fab/CHANGELOG.md +++ b/packages/unstyled/fab/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/fab -## 0.1.23 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.1.22 ### Patch Changes diff --git a/packages/unstyled/fab/package.json b/packages/unstyled/fab/package.json index 38465dd453..2e95ec6cf4 100644 --- a/packages/unstyled/fab/package.json +++ b/packages/unstyled/fab/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.1.23", + "version": "0.1.22", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -46,7 +46,7 @@ "dependencies": { "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0" + "@react-native-aria/interactions": "0.2.13" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/hooks/CHANGELOG.md b/packages/unstyled/hooks/CHANGELOG.md index 86b2973296..73f55613c0 100644 --- a/packages/unstyled/hooks/CHANGELOG.md +++ b/packages/unstyled/hooks/CHANGELOG.md @@ -1,11 +1,5 @@ # @gluestack-ui/hooks -## 0.2.0 - -### Minor Changes - -- Feat: backhandler api update - ## 0.1.12 ### Patch Changes diff --git a/packages/unstyled/hooks/package.json b/packages/unstyled/hooks/package.json index 746e28be12..2ec8d67fe4 100644 --- a/packages/unstyled/hooks/package.json +++ b/packages/unstyled/hooks/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/hooks", "description": "Provides hooks used in gluestack-ui", - "version": "0.2.0", + "version": "0.1.12", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", diff --git a/packages/unstyled/image-viewer/CHANGELOG.md b/packages/unstyled/image-viewer/CHANGELOG.md index 10570a10d1..9376145a1b 100644 --- a/packages/unstyled/image-viewer/CHANGELOG.md +++ b/packages/unstyled/image-viewer/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/image-viewer -## 0.0.11 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.0.10 ### Patch Changes diff --git a/packages/unstyled/image-viewer/package.json b/packages/unstyled/image-viewer/package.json index 4e296d073b..e4380880bf 100644 --- a/packages/unstyled/image-viewer/package.json +++ b/packages/unstyled/image-viewer/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/image-viewer", - "version": "0.0.11", + "version": "0.0.10", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -47,7 +47,7 @@ "react-native-gesture-handler": "^2.21.2", "react-native-reanimated": "^3.16.6", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@gluestack-ui/utils": "^0.1.14" }, "peerDependencies": { diff --git a/packages/unstyled/image/CHANGELOG.md b/packages/unstyled/image/CHANGELOG.md index 9945166c68..18e828932a 100644 --- a/packages/unstyled/image/CHANGELOG.md +++ b/packages/unstyled/image/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/button -## 0.1.12 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.1.11 ### Patch Changes diff --git a/packages/unstyled/image/package.json b/packages/unstyled/image/package.json index a62c48be83..ed118b9acc 100644 --- a/packages/unstyled/image/package.json +++ b/packages/unstyled/image/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/image", - "version": "0.1.12", + "version": "0.1.11", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -46,7 +46,7 @@ "dependencies": { "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0" + "@react-native-aria/interactions": "0.2.13" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/input/CHANGELOG.md b/packages/unstyled/input/CHANGELOG.md index 60ded68d79..fe029bcccb 100644 --- a/packages/unstyled/input/CHANGELOG.md +++ b/packages/unstyled/input/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/input -## 0.1.33 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.1.32 ### Patch Changes diff --git a/packages/unstyled/input/package.json b/packages/unstyled/input/package.json index 1c6773fee5..3731b6a0bc 100644 --- a/packages/unstyled/input/package.json +++ b/packages/unstyled/input/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/input", "description": "A universal headless input component for React Native, Next.js & React", - "version": "0.1.33", + "version": "0.1.32", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -33,7 +33,7 @@ "@gluestack-ui/form-control": "^0.1.19", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0" + "@react-native-aria/interactions": "0.2.13" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/link/CHANGELOG.md b/packages/unstyled/link/CHANGELOG.md index d3544044ab..f47e5e4b17 100644 --- a/packages/unstyled/link/CHANGELOG.md +++ b/packages/unstyled/link/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/link -## 0.1.24 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.1.23 ### Patch Changes diff --git a/packages/unstyled/link/package.json b/packages/unstyled/link/package.json index ec7699a219..00b734a870 100644 --- a/packages/unstyled/link/package.json +++ b/packages/unstyled/link/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/link", - "version": "0.1.24", + "version": "0.1.23", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -46,7 +46,7 @@ "dependencies": { "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0" + "@react-native-aria/interactions": "0.2.13" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/menu/CHANGELOG.md b/packages/unstyled/menu/CHANGELOG.md index 70b0b603e2..d4aebec713 100644 --- a/packages/unstyled/menu/CHANGELOG.md +++ b/packages/unstyled/menu/CHANGELOG.md @@ -1,15 +1,5 @@ # @gluestack-ui/menu -## 0.2.38 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - - @gluestack-ui/hooks@0.2.0 - - @react-native-aria/menu@0.2.13 - - @gluestack-ui/overlay@0.1.17 - ## 0.2.37 ### Patch Changes diff --git a/packages/unstyled/menu/package.json b/packages/unstyled/menu/package.json index e4dde59f6c..063307b0c2 100644 --- a/packages/unstyled/menu/package.json +++ b/packages/unstyled/menu/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.2.38", + "version": "0.2.37", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,14 +44,14 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.2.0", - "@gluestack-ui/overlay": "^0.1.17", + "@gluestack-ui/hooks": "0.1.12", + "@gluestack-ui/overlay": "^0.1.16", "@gluestack-ui/utils": "^0.1.14", "@react-aria/menu": "^3.14.1", "@react-aria/overlays": "^3.19.0", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0", - "@react-native-aria/menu": "0.2.13", + "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/menu": "0.2.12", "@react-native-aria/overlays": "^0.3.12", "@react-stately/utils": "^3.6.0", "react-stately": "^3.21.0" diff --git a/packages/unstyled/modal/CHANGELOG.md b/packages/unstyled/modal/CHANGELOG.md index a3b5f6ee31..1cb11ba986 100644 --- a/packages/unstyled/modal/CHANGELOG.md +++ b/packages/unstyled/modal/CHANGELOG.md @@ -1,14 +1,5 @@ # @gluestack-ui/modal -## 0.1.36 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - - @gluestack-ui/hooks@0.2.0 - - @gluestack-ui/overlay@0.1.17 - ## 0.1.35 ### Patch Changes diff --git a/packages/unstyled/modal/package.json b/packages/unstyled/modal/package.json index 266d84056c..bddffc7c03 100644 --- a/packages/unstyled/modal/package.json +++ b/packages/unstyled/modal/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.1.36", + "version": "0.1.35", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,12 +44,12 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.2.0", - "@gluestack-ui/overlay": "^0.1.17", + "@gluestack-ui/hooks": "0.1.12", + "@gluestack-ui/overlay": "^0.1.16", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/dialog": "^0.0.4", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-native-aria/overlays": "^0.3.12" }, "peerDependencies": { diff --git a/packages/unstyled/overlay/CHANGELOG.md b/packages/unstyled/overlay/CHANGELOG.md index df5ec45df9..885be72865 100644 --- a/packages/unstyled/overlay/CHANGELOG.md +++ b/packages/unstyled/overlay/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/overlay -## 0.1.17 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.1.16 ### Patch Changes diff --git a/packages/unstyled/overlay/package.json b/packages/unstyled/overlay/package.json index 6deb780d0f..3873a1d66e 100644 --- a/packages/unstyled/overlay/package.json +++ b/packages/unstyled/overlay/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/overlay", "description": "A universal headless overlay component for React Native, Next.js & React", - "version": "0.1.17", + "version": "0.1.16", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -31,7 +31,7 @@ }, "dependencies": { "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-native-aria/overlays": "^0.3.12" }, "peerDependencies": { diff --git a/packages/unstyled/pin-input/CHANGELOG.md b/packages/unstyled/pin-input/CHANGELOG.md index 79fcc2cdb5..d58b191b0e 100644 --- a/packages/unstyled/pin-input/CHANGELOG.md +++ b/packages/unstyled/pin-input/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/pin-input -## 0.0.9 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.0.8 ### Patch Changes diff --git a/packages/unstyled/pin-input/package.json b/packages/unstyled/pin-input/package.json index 7fb4368ef2..71bb2c814a 100644 --- a/packages/unstyled/pin-input/package.json +++ b/packages/unstyled/pin-input/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/pin-input", "description": "A universal headless pin-input component for React Native, Next.js & React", - "version": "0.0.9", + "version": "0.0.8", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -33,7 +33,7 @@ "@gluestack-ui/form-control": "^0.1.19", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0" + "@react-native-aria/interactions": "0.2.13" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/popover/CHANGELOG.md b/packages/unstyled/popover/CHANGELOG.md index de7e71a7c6..7d0c78e37d 100644 --- a/packages/unstyled/popover/CHANGELOG.md +++ b/packages/unstyled/popover/CHANGELOG.md @@ -1,14 +1,5 @@ # @gluestack-ui/popover -## 0.1.44 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - - @gluestack-ui/hooks@0.2.0 - - @gluestack-ui/overlay@0.1.17 - ## 0.1.43 ### Patch Changes diff --git a/packages/unstyled/popover/package.json b/packages/unstyled/popover/package.json index e3489ce959..f600f5aee8 100644 --- a/packages/unstyled/popover/package.json +++ b/packages/unstyled/popover/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/popover", - "version": "0.1.44", + "version": "0.1.43", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,12 +44,12 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.2.0", - "@gluestack-ui/overlay": "0.1.17", + "@gluestack-ui/hooks": "0.1.12", + "@gluestack-ui/overlay": "0.1.16", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/dialog": "^0.0.4", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-native-aria/overlays": "0.3.14" }, "peerDependencies": { diff --git a/packages/unstyled/pressable/CHANGELOG.md b/packages/unstyled/pressable/CHANGELOG.md index 5140b4705b..b71af59f75 100644 --- a/packages/unstyled/pressable/CHANGELOG.md +++ b/packages/unstyled/pressable/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/pressable -## 0.1.18 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.1.17 ### Patch Changes diff --git a/packages/unstyled/pressable/package.json b/packages/unstyled/pressable/package.json index e30c48e113..923bed0337 100644 --- a/packages/unstyled/pressable/package.json +++ b/packages/unstyled/pressable/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/pressable", - "version": "0.1.18", + "version": "0.1.17", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -46,7 +46,7 @@ "dependencies": { "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0" + "@react-native-aria/interactions": "0.2.13" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/provider/CHANGELOG.md b/packages/unstyled/provider/CHANGELOG.md index b4495386f9..db6d4cc0a5 100644 --- a/packages/unstyled/provider/CHANGELOG.md +++ b/packages/unstyled/provider/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/provider -## 0.1.14 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.1.13 ### Patch Changes diff --git a/packages/unstyled/provider/package.json b/packages/unstyled/provider/package.json index 63d72c16da..d8c03bf684 100644 --- a/packages/unstyled/provider/package.json +++ b/packages/unstyled/provider/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.1.14", + "version": "0.1.13", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -43,7 +43,7 @@ "tsconfig": "*" }, "dependencies": { - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "tsconfig": "7", "typescript": "^5.6.3" }, diff --git a/packages/unstyled/radio/CHANGELOG.md b/packages/unstyled/radio/CHANGELOG.md index c07a33acbd..a25e573345 100644 --- a/packages/unstyled/radio/CHANGELOG.md +++ b/packages/unstyled/radio/CHANGELOG.md @@ -1,13 +1,5 @@ # @gluestack-ui/radio -## 0.1.35 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - - @react-native-aria/radio@0.2.11 - ## 0.1.34 ### Patch Changes diff --git a/packages/unstyled/radio/package.json b/packages/unstyled/radio/package.json index a9aa18677a..ce81394116 100644 --- a/packages/unstyled/radio/package.json +++ b/packages/unstyled/radio/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/radio", - "version": "0.1.35", + "version": "0.1.34", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -48,8 +48,8 @@ "@gluestack-ui/utils": "^0.1.14", "@react-aria/visually-hidden": "^3.7.0", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0", - "@react-native-aria/radio": "^0.2.11", + "@react-native-aria/interactions": "0.2.13", + "@react-native-aria/radio": "^0.2.10", "@react-stately/radio": "^3.8.1" }, "peerDependencies": { diff --git a/packages/unstyled/react-native-aria/CHANGELOG.md b/packages/unstyled/react-native-aria/CHANGELOG.md index 4ad5db8774..7c18edcd15 100644 --- a/packages/unstyled/react-native-aria/CHANGELOG.md +++ b/packages/unstyled/react-native-aria/CHANGELOG.md @@ -1,11 +1,5 @@ # @gluestack-ui/react-native-aria -## 0.2.0 - -### Minor Changes - -- Feat: backhandler api update - ## 0.1.6 ### Patch Changes diff --git a/packages/unstyled/react-native-aria/package.json b/packages/unstyled/react-native-aria/package.json index 94872d429d..269b631273 100644 --- a/packages/unstyled/react-native-aria/package.json +++ b/packages/unstyled/react-native-aria/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/react-native-aria", - "version": "0.2.0", + "version": "0.1.6", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", diff --git a/packages/unstyled/select/CHANGELOG.md b/packages/unstyled/select/CHANGELOG.md index f5763519d0..02dd96ddf9 100644 --- a/packages/unstyled/select/CHANGELOG.md +++ b/packages/unstyled/select/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/select -## 0.1.31 - -### Patch Changes - -- Updated dependencies - - @gluestack-ui/hooks@0.2.0 - ## 0.1.30 ### Patch Changes diff --git a/packages/unstyled/select/package.json b/packages/unstyled/select/package.json index fdcdbeab01..406cac8ff1 100644 --- a/packages/unstyled/select/package.json +++ b/packages/unstyled/select/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "0.1.31", + "version": "0.1.30", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -45,7 +45,7 @@ }, "dependencies": { "@gluestack-ui/form-control": "^0.1.19", - "@gluestack-ui/hooks": "0.2.0", + "@gluestack-ui/hooks": "0.1.12", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9" }, diff --git a/packages/unstyled/slider/CHANGELOG.md b/packages/unstyled/slider/CHANGELOG.md index e479b887f6..ecd2d1a261 100644 --- a/packages/unstyled/slider/CHANGELOG.md +++ b/packages/unstyled/slider/CHANGELOG.md @@ -1,13 +1,5 @@ # @gluestack-ui/slider -## 0.1.27 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - - @gluestack-ui/hooks@0.2.0 - ## 0.1.26 ### Patch Changes diff --git a/packages/unstyled/slider/package.json b/packages/unstyled/slider/package.json index 68391a2c61..7fda6a01fe 100644 --- a/packages/unstyled/slider/package.json +++ b/packages/unstyled/slider/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/slider", "description": "A universal headless slider component for React Native, Next.js & React", - "version": "0.1.27", + "version": "0.1.26", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -31,10 +31,10 @@ }, "dependencies": { "@gluestack-ui/form-control": "^0.1.19", - "@gluestack-ui/hooks": "0.2.0", + "@gluestack-ui/hooks": "0.1.12", "@gluestack-ui/utils": "^0.1.14", "@react-aria/visually-hidden": "^3.8.1", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-native-aria/slider": "^0.2.11", "@react-stately/slider": "^3.2.4" }, diff --git a/packages/unstyled/switch/CHANGELOG.md b/packages/unstyled/switch/CHANGELOG.md index ab76e334ec..d5e6ef2724 100644 --- a/packages/unstyled/switch/CHANGELOG.md +++ b/packages/unstyled/switch/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/switch -## 0.1.24 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.1.23 ### Patch Changes diff --git a/packages/unstyled/switch/package.json b/packages/unstyled/switch/package.json index 1b2c02b0aa..6b3b755c4e 100644 --- a/packages/unstyled/switch/package.json +++ b/packages/unstyled/switch/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/switch", - "version": "0.1.24", + "version": "0.1.23", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -47,7 +47,7 @@ "@gluestack-ui/form-control": "^0.1.19", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-stately/toggle": "^3.4.4" }, "peerDependencies": { diff --git a/packages/unstyled/tabs/CHANGELOG.md b/packages/unstyled/tabs/CHANGELOG.md index 923c27f93f..9f4e48754c 100644 --- a/packages/unstyled/tabs/CHANGELOG.md +++ b/packages/unstyled/tabs/CHANGELOG.md @@ -1,12 +1,5 @@ # @gluestack-ui/tabs -## 0.1.19 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - ## 0.1.18 ### Patch Changes diff --git a/packages/unstyled/tabs/package.json b/packages/unstyled/tabs/package.json index 5dc8a5172b..eee774f868 100644 --- a/packages/unstyled/tabs/package.json +++ b/packages/unstyled/tabs/package.json @@ -1,6 +1,6 @@ { "name": "@gluestack-ui/tabs", - "version": "0.1.19", + "version": "0.1.18", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -31,7 +31,7 @@ "dependencies": { "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0" + "@react-native-aria/interactions": "0.2.13" }, "peerDependencies": { "react": ">=16", diff --git a/packages/unstyled/toast/CHANGELOG.md b/packages/unstyled/toast/CHANGELOG.md index 6baefe2fbf..ec814141f6 100644 --- a/packages/unstyled/toast/CHANGELOG.md +++ b/packages/unstyled/toast/CHANGELOG.md @@ -1,14 +1,5 @@ # @gluestack-ui/toast -## 1.0.9 - -### Patch Changes - -- Updated dependencies - - @gluestack-ui/hooks@0.2.0 - - @gluestack-ui/overlay@0.1.17 - - @gluestack-ui/transitions@0.1.12 - ## 1.0.8 ### Patch Changes diff --git a/packages/unstyled/toast/package.json b/packages/unstyled/toast/package.json index caf5c5b0c1..94e0bbcf86 100644 --- a/packages/unstyled/toast/package.json +++ b/packages/unstyled/toast/package.json @@ -15,7 +15,7 @@ "ios", "nextjs" ], - "version": "1.0.9", + "version": "1.0.8", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -44,9 +44,9 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.2.0", - "@gluestack-ui/overlay": "^0.1.17", - "@gluestack-ui/transitions": "^0.1.12", + "@gluestack-ui/hooks": "0.1.12", + "@gluestack-ui/overlay": "^0.1.16", + "@gluestack-ui/transitions": "^0.1.11", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9" }, diff --git a/packages/unstyled/tooltip/CHANGELOG.md b/packages/unstyled/tooltip/CHANGELOG.md index 4572c61146..296c63cc27 100644 --- a/packages/unstyled/tooltip/CHANGELOG.md +++ b/packages/unstyled/tooltip/CHANGELOG.md @@ -1,14 +1,5 @@ # @gluestack-ui/tooltip -## 0.1.39 - -### Patch Changes - -- Updated dependencies - - @react-native-aria/interactions@0.3.0 - - @gluestack-ui/hooks@0.2.0 - - @gluestack-ui/overlay@0.1.17 - ## 0.1.38 ### Patch Changes diff --git a/packages/unstyled/tooltip/package.json b/packages/unstyled/tooltip/package.json index 683e144846..020b01d507 100644 --- a/packages/unstyled/tooltip/package.json +++ b/packages/unstyled/tooltip/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/tooltip", "description": "A universal headless tooltip component for React Native, Next.js & React", - "version": "0.1.39", + "version": "0.1.38", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -30,11 +30,11 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/hooks": "0.2.0", - "@gluestack-ui/overlay": "^0.1.17", + "@gluestack-ui/hooks": "0.1.12", + "@gluestack-ui/overlay": "^0.1.16", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9", - "@react-native-aria/interactions": "0.3.0", + "@react-native-aria/interactions": "0.2.13", "@react-native-aria/overlays": "^0.3.12" }, "peerDependencies": { diff --git a/packages/unstyled/transitions/CHANGELOG.md b/packages/unstyled/transitions/CHANGELOG.md index 7503af1307..d00f94dd7b 100644 --- a/packages/unstyled/transitions/CHANGELOG.md +++ b/packages/unstyled/transitions/CHANGELOG.md @@ -1,13 +1,5 @@ # @gluestack-ui/transitions -## 0.1.12 - -### Patch Changes - -- Updated dependencies - - @gluestack-ui/react-native-aria@0.2.0 - - @gluestack-ui/overlay@0.1.17 - ## 0.1.11 ### Patch Changes diff --git a/packages/unstyled/transitions/package.json b/packages/unstyled/transitions/package.json index 0c1786eba6..cf7dd6fa71 100644 --- a/packages/unstyled/transitions/package.json +++ b/packages/unstyled/transitions/package.json @@ -1,7 +1,7 @@ { "name": "@gluestack-ui/transitions", "description": "Transitions animations for React Native, Next.js & React", - "version": "0.1.12", + "version": "0.1.11", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", @@ -30,8 +30,8 @@ "typescript": "^5.6.3" }, "dependencies": { - "@gluestack-ui/overlay": "^0.1.17", - "@gluestack-ui/react-native-aria": "^0.2.0", + "@gluestack-ui/overlay": "^0.1.16", + "@gluestack-ui/react-native-aria": "^0.1.6", "@gluestack-ui/utils": "^0.1.14", "@react-native-aria/focus": "^0.2.9" },