diff --git a/README.md b/README.md
index 19266ae74e..aac6aa886a 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ gluestack-ui is a library of copy-pasteable components & patterns crafted with T
-
+
diff --git a/_template/package-template/package.json b/_template/package-template/package.json
deleted file mode 100644
index 9ac28824b4..0000000000
--- a/_template/package-template/package.json
+++ /dev/null
@@ -1,57 +0,0 @@
-{
- "name": "@gluestack/template",
- "version": "0.0.1",
- "main": "lib/commonjs/index",
- "module": "lib/module/index",
- "types": "lib/typescript/index.d.ts",
- "react-native": "src/index",
- "source": "src/index",
- "typings": "lib/typescript/index.d.ts",
- "scripts": {
- "build": "bob build",
- "clean": "rm -rf lib",
- "dev:web": "cd example/native && yarn web --clear"
- },
- "devDependencies": {
- "@types/react": "^18.0.22",
- "@types/react-native": "^0.72.3",
- "babel-plugin-transform-remove-console": "^6.9.4",
- "react": "^18.1.0",
- "react-dom": "18.1.0",
- "react-native": "^0.72.4",
- "react-native-builder-bob": "^0.20.1",
- "react-native-web": "^0.19.9",
- "tsconfig": "*",
- "typescript": "^4.7.4"
- },
- "dependencies": {
- "@expo/html-elements": "^0.2.2",
- "@gluestack/styled": "*",
- "@react-native-aria/focus": "^0.2.9",
- "lodash.merge": "^4.6.2"
- },
- "peerDependencies": {
- "react": "*",
- "react-dom": "*",
- "react-native": "*",
- "react-native-web": "*"
- },
- "react-native-builder-bob": {
- "source": "src",
- "output": "lib",
- "targets": [
- "commonjs",
- [
- "module",
- {
- "babelrc": true
- }
- ],
- "typescript"
- ]
- },
- "files": [
- "lib/",
- "src/"
- ]
-}
diff --git a/img/gluestack-banner.png b/assets/gluestack-banner.png
similarity index 100%
rename from img/gluestack-banner.png
rename to assets/gluestack-banner.png
diff --git a/img/gluestack-logo.svg b/assets/gluestack-logo.svg
similarity index 100%
rename from img/gluestack-logo.svg
rename to assets/gluestack-logo.svg
diff --git a/img/gluestack-ui-banner.svg b/assets/gluestack-ui-banner.svg
similarity index 100%
rename from img/gluestack-ui-banner.svg
rename to assets/gluestack-ui-banner.svg
diff --git a/example/storybook-nativewind/src/core-components/nativewind/grid/index.tsx b/example/storybook-nativewind/src/core-components/nativewind/grid/index.tsx
index 7e0d36b987..8df058665f 100644
--- a/example/storybook-nativewind/src/core-components/nativewind/grid/index.tsx
+++ b/example/storybook-nativewind/src/core-components/nativewind/grid/index.tsx
@@ -13,7 +13,7 @@ import { cssInterop } from 'nativewind';
import {
useBreakpointValue,
getBreakPointValue,
-} from '@/components/ui/utils/use-break-point-value';
+} from '../../hooks/use-break-point-value';
const { width: DEVICE_WIDTH } = Dimensions.get('window');
diff --git a/example/storybook-v7/.ondevice/storybook.requires.js b/example/storybook-v7/.ondevice/storybook.requires.js
deleted file mode 100644
index eaa96915ef..0000000000
--- a/example/storybook-v7/.ondevice/storybook.requires.js
+++ /dev/null
@@ -1,57 +0,0 @@
-/* do not change this file, it is auto generated by storybook. */
-
-import {
- start,
- prepareStories,
- getProjectAnnotations,
-} from '@storybook/react-native';
-
-import '@storybook/addon-ondevice-notes/register';
-import '@storybook/addon-ondevice-controls/register';
-import '@storybook/addon-ondevice-backgrounds/register';
-import '@storybook/addon-ondevice-actions/register';
-
-const normalizedStories = [
- {
- titlePrefix: '',
- directory: '../storybook-nativewind/src/components',
- files: '**/*.stories.?(ts|tsx|js|jsx)',
- importPathMatcher:
- /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.(?:ts|tsx|js|jsx)?)$/,
-
- req: require.context(
- '../../storybook-nativewind/src/components',
- true,
- /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.(?:ts|tsx|js|jsx)?)$/
- ),
- },
-];
-
-const annotations = [
- require('./preview'),
- require('@storybook/react-native/dist/preview'),
- require('@storybook/addon-actions/preview'),
-];
-
-global.STORIES = normalizedStories;
-
-module?.hot?.accept?.();
-
-if (!global.view) {
- global.view = start({
- annotations,
- storyEntries: normalizedStories,
- });
-} else {
- const { importMap } = prepareStories({ storyEntries: normalizedStories });
-
- global.view._preview.onStoriesChanged({
- importFn: async (importPath) => importMap[importPath],
- });
-
- global.view._preview.onGetProjectAnnotationsChanged({
- getProjectAnnotations: getProjectAnnotations(global.view, annotations),
- });
-}
-
-export const view = global.view;
diff --git a/example/storybook-v7/babel.config.js b/example/storybook-v7/babel.config.js
index 11c8afb87a..b5bc39f145 100644
--- a/example/storybook-v7/babel.config.js
+++ b/example/storybook-v7/babel.config.js
@@ -24,6 +24,11 @@ module.exports = function (api) {
'./../storybook-nativewind/src/core-components/nativewind'
),
+ '@/components/ui/utils': path.resolve(
+ __dirname,
+ './../storybook-nativewind/src/core-components/hooks/'
+ ),
+
'global.css':
process.env.STYLE_ENGINE === 'gluestack'
? path.resolve(
diff --git a/example/storybook-v7/package.json b/example/storybook-v7/package.json
index 7665d93dfb..9112ba011d 100644
--- a/example/storybook-v7/package.json
+++ b/example/storybook-v7/package.json
@@ -14,7 +14,13 @@
"storybook": "cross-env STORYBOOK_ENABLED='true' expo start",
"storybook:ios": "cross-env STORYBOOK_ENABLED='true' expo start --ios",
"storybook:android": "cross-env STORYBOOK_ENABLED='true' expo start --android",
- "eas:update": "NODE_OPTIONS='--max-old-space-size=8192' npx tailwindcss --input ./global.css && NODE_OPTIONS='--max-old-space-size=8192' eas update"
+ "eas:update": "NODE_OPTIONS='--max-old-space-size=8192' npx tailwindcss --input ./global.css && NODE_OPTIONS='--max-old-space-size=8192' eas update",
+ "storybook:nativewind": "DARK_MODE=class NODE_OPTIONS=--openssl-legacy-provider STYLE_ENGINE=nativewind start-storybook -p 6007",
+ "storybook:gluestack": "NODE_OPTIONS=--openssl-legacy-provider STYLE_ENGINE=gluestack start-storybook -p 6007",
+ "dev": "yarn storybook",
+ "storybook-nw": "NODE_OPTIONS=--openssl-legacy-provider STYLE_ENGINE=nativewind start-storybook -p 6007",
+ "build-storybook:nativewind": "STYLE_ENGINE=nativewind build-storybook",
+ "build-storybook:gluestack": "STYLE_ENGINE=gluestack build-storybook"
},
"dependencies": {
"@babel/runtime": "^7.24.5",
diff --git a/example/storybook-v7/tsconfig.json b/example/storybook-v7/tsconfig.json
index b9567f6052..1b071992db 100644
--- a/example/storybook-v7/tsconfig.json
+++ b/example/storybook-v7/tsconfig.json
@@ -1,6 +1,11 @@
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
- "strict": true
+ "strict": true,
+ "paths": {
+ "@/components/ui/utils/*": [
+ "./../storybook-nativewind/src/core-components/hooks/*"
+ ]
+ }
}
}
diff --git a/package.json b/package.json
index fced7efc1a..65d62abb2b 100644
--- a/package.json
+++ b/package.json
@@ -28,6 +28,7 @@
"postinstall": "cd example/storybook-v7 && yarn"
},
"devDependencies": {
+ "@babel/plugin-proposal-class-properties": "^7.18.6",
"@changesets/cli": "^2.25.2",
"@commitlint/config-conventional": "^17.3.0",
"@jest/create-cache-key-function": "^29.6.3",
@@ -49,13 +50,15 @@
"ts-node": "^10.9.1",
"tsc-files": "^1.1.3",
"turbo": "^1.13.3",
- "typescript": "5.1.6"
+ "typescript": "5.1.6",
+ "react-native-reanimated": "~3.6.2"
},
"resolutions": {
"react-native": "0.72.4",
"react-native-web": "0.19.9",
"react-native-css-interop": "0.1.22",
- "nativewind": "4.1.23"
+ "nativewind": "4.1.23",
+ "react-native-reanimated": "3.0.2"
},
"dependencies": {},
"packageManager": "yarn@1.22.17",
diff --git a/packages/styled/react/README.md b/packages/styled/react/README.md
index a6efba81fd..22cbe3545e 100644
--- a/packages/styled/react/README.md
+++ b/packages/styled/react/README.md
@@ -1,6 +1,6 @@
-
+
diff --git a/scripts/index1.js b/scripts/index1.js
deleted file mode 100644
index 309553b244..0000000000
--- a/scripts/index1.js
+++ /dev/null
@@ -1,17 +0,0 @@
-const path = require('path');
-const sourcePath=path.join(__dirname,"../", 'src',)
-const destPath=path.join(__dirname,"../", 'packages',"themed-native-base")
-const { exec } = require('child_process');
-const fs =require("fs")
-
-function moveSrcToPackages(){
- const files=fs.readdirSync(sourcePath)
- console.log(sourcePath,destPath,files)
- files.forEach((file)=>{
- console.log(file)
- exec(`git mv ${sourcePath}/${file} ${destPath}`, (err, stdout, stderr) => {
- // handle err, stdout & stderr
- });
- })
-}
-moveSrcToPackages()
\ No newline at end of file
diff --git a/scripts/test.sh b/scripts/test.sh
deleted file mode 100644
index 6ed9033d93..0000000000
--- a/scripts/test.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-lowercase(){
- echo "$1" | sed "y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/"
-}
-
-OS=`lowercase \`uname\``
-
-jest --silent
-
-yarn install --check-files
-
-yarn build
\ No newline at end of file
diff --git a/yarn.lock b/yarn.lock
index 5e50c643a8..7134fcdbb8 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -770,7 +770,7 @@
"@babel/helper-remap-async-to-generator" "^7.18.9"
"@babel/plugin-syntax-async-generators" "^7.8.4"
-"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.17.12", "@babel/plugin-proposal-class-properties@^7.18.0":
+"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.17.12", "@babel/plugin-proposal-class-properties@^7.18.0", "@babel/plugin-proposal-class-properties@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3"
integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
@@ -9990,7 +9990,7 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0:
dependencies:
ms "2.0.0"
-debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.7:
+debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4:
version "4.3.7"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52"
integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==
@@ -10011,6 +10011,13 @@ debug@^3.0.0, debug@^3.1.0, debug@^3.2.5, debug@^3.2.7:
dependencies:
ms "^2.1.1"
+debug@^4.3.7:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a"
+ integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==
+ dependencies:
+ ms "^2.1.3"
+
decamelize-keys@^1.1.0:
version "1.1.1"
resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8"
@@ -14991,73 +14998,73 @@ levn@~0.3.0:
prelude-ls "~1.1.2"
type-check "~0.3.2"
-lightningcss-darwin-arm64@1.28.1:
- version "1.28.1"
- resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.28.1.tgz#043c30e2d22ee68beb7f8782e96390821ba8ab34"
- integrity sha512-VG3vvzM0m/rguCdm76DdobNeNJnHK+jWcdkNLFWHLh9YCotRvbRIt45JxwcHlIF8TDqWStVLTdghq5NaigVCBQ==
-
-lightningcss-darwin-x64@1.28.1:
- version "1.28.1"
- resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.28.1.tgz#c0f975759af364699fdbd7a4756ac66767ed9767"
- integrity sha512-O7ORdislvKfMohFl4Iq7fxKqdJOuuxArcglVI3amuFO5DJ0wfV3Gxgi1JRo49slfr7OVzJQEHLG4muTWYM5cTQ==
-
-lightningcss-freebsd-x64@1.28.1:
- version "1.28.1"
- resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.28.1.tgz#f8eb8b63845a88d32eed71a594cf224f6c7ea4fd"
- integrity sha512-b7sF89B31kYYijxVcFO7l5u6UNA862YstNu+3YbLl/IQKzveL4a5cwR5cdpG+OOhErg/c2u9WCmzZoX2I5GBvw==
-
-lightningcss-linux-arm-gnueabihf@1.28.1:
- version "1.28.1"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.28.1.tgz#726dfdb2db6ba3a7bb2169e5724d826cb585a76d"
- integrity sha512-p61kXwvhUDLLzkWHjzSFfUBW/F0iy3jr3CWi3k8SKULtJEsJXTI9DqRm9EixxMSe2AMBQBt4auTYiQL4B1N51A==
-
-lightningcss-linux-arm64-gnu@1.28.1:
- version "1.28.1"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.28.1.tgz#9f4e4450617230ea557abb5ffd5d26b2047e9b62"
- integrity sha512-iO+fN9hOMmzfwqcG2/BgUtMKD48H2JO/SXU44fyIwpY2veb65QF5xiRrQ9l1FwIxbGK3231KBYCtAqv+xf+NsQ==
-
-lightningcss-linux-arm64-musl@1.28.1:
- version "1.28.1"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.28.1.tgz#9d2561d8a5ecfb3f1f18651da0acc592e837ea3a"
- integrity sha512-dnMHeXEmCUzHHZjaDpQBYuBKcN9nPC3nPFKl70bcj5Bkn5EmkcgEqm5p035LKOgvAwk1XwLpQCML6pXmCwz0NQ==
-
-lightningcss-linux-x64-gnu@1.28.1:
- version "1.28.1"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.28.1.tgz#91d0a41d6dd40d8965cb6c1fbd4d40e6b3460384"
- integrity sha512-7vWDISaMUn+oo2TwRdf2hl/BLdPxvywv9JKEqNZB/0K7bXwV4XE9wN/C2sAp1gGuh6QBA8lpjF4JIPt3HNlCHA==
-
-lightningcss-linux-x64-musl@1.28.1:
- version "1.28.1"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.28.1.tgz#f1a9d0cafc1eb7ec72ef4f2a3a81b5631060c461"
- integrity sha512-IHCu9tVGP+x5BCpA2rF3D04DBokcBza/a8AuHQU+1AiMKubuMegPwcL7RatBgK4ztFHeYnnD5NdhwhRfYMAtNA==
-
-lightningcss-win32-arm64-msvc@1.28.1:
- version "1.28.1"
- resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.28.1.tgz#c21f7683648a9e4d856737fc22c3eca908c773b6"
- integrity sha512-Erm72kHmMg/3h350PTseskz+eEGBM17Fuu79WW2Qqt0BfWSF1jHHc12lkJCWMYl5jcBHPs5yZdgNHtJ7IJS3Uw==
-
-lightningcss-win32-x64-msvc@1.28.1:
- version "1.28.1"
- resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.28.1.tgz#7afe4f4128bf6b75a570e8585d287040243f7881"
- integrity sha512-ZPQtvx+uQBzrSdHH8p4H3M9Alue+x369TPZAA3b4K3d92FPhpZCuBG04+HQzspam9sVeID9mI6f3VRAs2ezaEA==
+lightningcss-darwin-arm64@1.28.2:
+ version "1.28.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.28.2.tgz#a906fd84cb43d753cb5db9c367f8f38482e8fb03"
+ integrity sha512-/8cPSqZiusHSS+WQz0W4NuaqFjquys1x+NsdN/XOHb+idGHJSoJ7SoQTVl3DZuAgtPZwFZgRfb/vd1oi8uX6+g==
+
+lightningcss-darwin-x64@1.28.2:
+ version "1.28.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.28.2.tgz#6c43249d4ae821416d0d78403eae56111d0c6a94"
+ integrity sha512-R7sFrXlgKjvoEG8umpVt/yutjxOL0z8KWf0bfPT3cYMOW4470xu5qSHpFdIOpRWwl3FKNMUdbKtMUjYt0h2j4g==
+
+lightningcss-freebsd-x64@1.28.2:
+ version "1.28.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.28.2.tgz#804bc6652c6721e94a92e7bbb5e65165376cf108"
+ integrity sha512-l2qrCT+x7crAY+lMIxtgvV10R8VurzHAoUZJaVFSlHrN8kRLTvEg9ObojIDIexqWJQvJcVVV3vfzsEynpiuvgA==
+
+lightningcss-linux-arm-gnueabihf@1.28.2:
+ version "1.28.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.28.2.tgz#c32595127b565690d854c9ff641831e4ad739ee1"
+ integrity sha512-DKMzpICBEKnL53X14rF7hFDu8KKALUJtcKdFUCW5YOlGSiwRSgVoRjM97wUm/E0NMPkzrTi/rxfvt7ruNK8meg==
+
+lightningcss-linux-arm64-gnu@1.28.2:
+ version "1.28.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.28.2.tgz#85646f08c5efbfd7c94f8e5ed6392d5cf95fa42c"
+ integrity sha512-nhfjYkfymWZSxdtTNMWyhFk2ImUm0X7NAgJWFwnsYPOfmtWQEapzG/DXZTfEfMjSzERNUNJoQjPAbdqgB+sjiw==
+
+lightningcss-linux-arm64-musl@1.28.2:
+ version "1.28.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.28.2.tgz#4d9bc20cf6de28c4d0c586d81c577891555ad831"
+ integrity sha512-1SPG1ZTNnphWvAv8RVOymlZ8BDtAg69Hbo7n4QxARvkFVCJAt0cgjAw1Fox0WEhf4PwnyoOBaVH0Z5YNgzt4dA==
+
+lightningcss-linux-x64-gnu@1.28.2:
+ version "1.28.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.28.2.tgz#74bd797d7157817c4e42ec45f1844a69636a9d82"
+ integrity sha512-ZhQy0FcO//INWUdo/iEdbefntTdpPVQ0XJwwtdbBuMQe+uxqZoytm9M+iqR9O5noWFaxK+nbS2iR/I80Q2Ofpg==
+
+lightningcss-linux-x64-musl@1.28.2:
+ version "1.28.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.28.2.tgz#13ce6db4c491ebbb93099d6427746ab7bff3774f"
+ integrity sha512-alb/j1NMrgQmSFyzTbN1/pvMPM+gdDw7YBuQ5VSgcFDypN3Ah0BzC2dTZbzwzaMdUVDszX6zH5MzjfVN1oGuww==
+
+lightningcss-win32-arm64-msvc@1.28.2:
+ version "1.28.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.28.2.tgz#eaae12c4a58a545a3adf40b22ba9625e5c0ebd29"
+ integrity sha512-WnwcjcBeAt0jGdjlgbT9ANf30pF0C/QMb1XnLnH272DQU8QXh+kmpi24R55wmWBwaTtNAETZ+m35ohyeMiNt+g==
+
+lightningcss-win32-x64-msvc@1.28.2:
+ version "1.28.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.28.2.tgz#1f7c4474b2dc3dd1c12e22de32e4de23bdfa41e7"
+ integrity sha512-3piBifyT3avz22o6mDKywQC/OisH2yDK+caHWkiMsF82i3m5wDBadyCjlCQ5VNgzYkxrWZgiaxHDdd5uxsi0/A==
lightningcss@^1.27.0:
- version "1.28.1"
- resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.28.1.tgz#311b44052e4dcb17e31929a584a9a68864a456ed"
- integrity sha512-KRDkHlLlNj3DWh79CDt93fPlRJh2W1AuHV0ZSZAMMuN7lqlsZTV5842idfS1urWG8q9tc17velp1gCXhY7sLnQ==
+ version "1.28.2"
+ resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.28.2.tgz#cc26fad9ad64a621bd39ac6248095891cf584cce"
+ integrity sha512-ePLRrbt3fgjXI5VFZOLbvkLD5ZRuxGKm+wJ3ujCqBtL3NanDHPo/5zicR5uEKAPiIjBYF99BM4K4okvMznjkVA==
dependencies:
detect-libc "^1.0.3"
optionalDependencies:
- lightningcss-darwin-arm64 "1.28.1"
- lightningcss-darwin-x64 "1.28.1"
- lightningcss-freebsd-x64 "1.28.1"
- lightningcss-linux-arm-gnueabihf "1.28.1"
- lightningcss-linux-arm64-gnu "1.28.1"
- lightningcss-linux-arm64-musl "1.28.1"
- lightningcss-linux-x64-gnu "1.28.1"
- lightningcss-linux-x64-musl "1.28.1"
- lightningcss-win32-arm64-msvc "1.28.1"
- lightningcss-win32-x64-msvc "1.28.1"
+ lightningcss-darwin-arm64 "1.28.2"
+ lightningcss-darwin-x64 "1.28.2"
+ lightningcss-freebsd-x64 "1.28.2"
+ lightningcss-linux-arm-gnueabihf "1.28.2"
+ lightningcss-linux-arm64-gnu "1.28.2"
+ lightningcss-linux-arm64-musl "1.28.2"
+ lightningcss-linux-x64-gnu "1.28.2"
+ lightningcss-linux-x64-musl "1.28.2"
+ lightningcss-win32-arm64-msvc "1.28.2"
+ lightningcss-win32-x64-msvc "1.28.2"
lilconfig@2.1.0, lilconfig@^2.1.0:
version "2.1.0"
@@ -15192,6 +15199,11 @@ lodash.escaperegexp@^4.1.2:
resolved "https://registry.yarnpkg.com/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz#64762c48618082518ac3df4ccf5d5886dae20347"
integrity sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==
+lodash.isequal@^4.5.0:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
+ integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==
+
lodash.isfunction@^3.0.9:
version "3.0.9"
resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051"
@@ -18550,15 +18562,18 @@ react-native-modal-selector@^2.1.1:
dependencies:
prop-types "^15.5.10"
-react-native-reanimated@~3.6.2:
- version "3.6.3"
- resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.6.3.tgz#859cf2320e37c80e3a21e19db24f82c34d6d3ded"
- integrity sha512-2KkkPozoIvDbJcHuf8qeyoLROXQxizSi+2CTCkuNVkVZOxxY4B0Omvgq61aOQhSZUh/649x1YHoAaTyGMGDJUw==
+react-native-reanimated@3.0.2, react-native-reanimated@~3.6.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.0.2.tgz#8f7284fab2b0cd949779429e48f32d19a966bbd6"
+ integrity sha512-8Et90yTI9yxchGbDP79k391XZqc/64zNbASbGy8X3Vgv4EbZ1M3IkKwcIbZmbVwpA804VJ6V9nJAGUh9fP0LrA==
dependencies:
"@babel/plugin-transform-object-assign" "^7.16.7"
"@babel/preset-typescript" "^7.16.7"
- convert-source-map "^2.0.0"
+ convert-source-map "^1.7.0"
invariant "^2.2.4"
+ lodash.isequal "^4.5.0"
+ setimmediate "^1.0.5"
+ string-hash-64 "^1.0.3"
react-native-safe-area-context@^4.4.1:
version "4.11.0"
@@ -20276,6 +20291,11 @@ string-argv@0.3.2:
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6"
integrity sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==
+string-hash-64@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/string-hash-64/-/string-hash-64-1.0.3.tgz#0deb56df58678640db5c479ccbbb597aaa0de322"
+ integrity sha512-D5OKWKvDhyVWWn2x5Y9b+37NUllks34q1dCDhk/vYcso9fmhs+Tl3KR/gE4v5UNj2UA35cnX4KdVVGkG1deKqw==
+
string-length@^4.0.1:
version "4.0.2"
resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a"