Skip to content

Commit 3b1281f

Browse files
authored
Merge pull request #3233 from gluestack/feat/web-changes
Feat/web changes
2 parents 328c70f + d53476a commit 3b1281f

File tree

15 files changed

+13958
-44
lines changed

15 files changed

+13958
-44
lines changed

apps/kitchen-sink/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@expo/html-elements": "^0.10.1",
1818
"@expo/vector-icons": "^15.0.2",
1919
"@gluestack-ui/core": "^3.0.10",
20-
"@gluestack-ui/utils": "^3.0.7",
20+
"@gluestack-ui/utils": "^3.0.11",
2121
"@legendapp/motion": "^2.4.0",
2222
"@react-navigation/bottom-tabs": "^7.3.10",
2323
"@react-navigation/elements": "^2.3.8",

apps/kitchen-sink/yarn.lock

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1268,15 +1268,15 @@
12681268
resolved "https://registry.npmjs.org/@gluestack-ui/core/-/core-3.0.10.tgz#96ba8e5a80a27a921123b25baeb7063a8bc4d665"
12691269
integrity sha512-Ctw4CYCsfT2YUNz0n5hDoTfv7G72SRxirqwFv+VmhCwDrtVab/fV7qbqLMnBEEr19o1iP1bE0ztJ3IQHEqXw4g==
12701270

1271-
"@gluestack-ui/utils@^3.0.7":
1272-
version "3.0.7"
1273-
resolved "https://registry.npmjs.org/@gluestack-ui/utils/-/utils-3.0.7.tgz#c5e01215e984f77b9d0abb1bf79fa17eba2b8a1f"
1274-
integrity sha512-QyTu9qC1d/0xsSEc9kMb0HAVEvRYp1dsIL3mr26qUATfd1AZ53UtINGTDnhwqgif4n6192bzI8nARY9t7t9VVg==
1271+
"@gluestack-ui/utils@^3.0.11":
1272+
version "3.0.11"
1273+
resolved "https://registry.npmjs.org/@gluestack-ui/utils/-/utils-3.0.11.tgz#10bf2cb7658795d09b267ce5ba47daaab08a1fba"
1274+
integrity sha512-4stxK98v07NFAGvSI4Dxje/xbnftaY45VcZglZUxlAr8FFVLNFcjXUTSnVWqog0DBp2oJ7Nk/AYUpT2KkpI+7A==
12751275
dependencies:
12761276
dom-helpers "^6.0.1"
12771277
react-aria "^3.41.1"
12781278
react-stately "^3.39.0"
1279-
tailwind-variants "0.1.14"
1279+
tailwind-variants "0.1.20"
12801280

12811281
"@humanfs/core@^0.19.1":
12821282
version "0.19.1"
@@ -8371,19 +8371,12 @@ supports-preserve-symlinks-flag@^1.0.0:
83718371
resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
83728372
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
83738373

8374-
tailwind-merge@^1.13.2, tailwind-merge@^1.14.0:
8374+
tailwind-merge@^1.14.0:
83758375
version "1.14.0"
83768376
resolved "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-1.14.0.tgz#e677f55d864edc6794562c63f5001f45093cdb8b"
83778377
integrity sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==
83788378

8379-
8380-
version "0.1.14"
8381-
resolved "https://registry.npmjs.org/tailwind-variants/-/tailwind-variants-0.1.14.tgz#1c9d59b92f5c902e8157ee14256eb4b90d287963"
8382-
integrity sha512-qfOkSGP+cSolTTkJboldGmiM+w5uE77pazCRkwixEBsuaml9CmhN0E8qgH7QnZNmOTVSsgRK1tn/MsKOvOKVWA==
8383-
dependencies:
8384-
tailwind-merge "^1.13.2"
8385-
8386-
tailwind-variants@^0.1.20:
8379+
[email protected], tailwind-variants@^0.1.20:
83878380
version "0.1.20"
83888381
resolved "https://registry.npmjs.org/tailwind-variants/-/tailwind-variants-0.1.20.tgz#8aaed9094be0379a438641a42d588943e44c5fcd"
83898382
integrity sha512-AMh7x313t/V+eTySKB0Dal08RHY7ggYK0MSn/ad8wKWOrDUIzyiWNayRUm2PIJ4VRkvRnfNuyRuKbLV3EN+ewQ==

apps/starter-kit-expo/components/ui/button/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
} from '@gluestack-ui/utils/nativewind-utils';
99
import { cssInterop } from 'nativewind';
1010
import { ActivityIndicator, Pressable, Text, View } from 'react-native';
11-
import type { VariantProps } from 'tailwind-variants';
11+
import type { VariantProps } from '@gluestack-ui/utils/nativewind-utils';
1212
import { PrimitiveIcon, UIIcon } from '@gluestack-ui/core/icon/creator';
1313

1414
const SCOPE = 'BUTTON';

apps/starter-kit-expo/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@expo/html-elements": "^0.12.5",
1919
"@expo/vector-icons": "^15.0.2",
2020
"@gluestack-ui/core": "^3.0.8",
21-
"@gluestack-ui/utils": "^3.0.7",
21+
"@gluestack-ui/utils": "^3.0.11",
2222
"@gorhom/bottom-sheet": "^5.0.0-alpha.11",
2323
"@legendapp/motion": "^2.4.0",
2424
"@react-aria/utils": "^3.29.0",
@@ -40,9 +40,9 @@
4040
"react-dom": "19.1.0",
4141
"react-native": "0.81.4",
4242
"react-native-reanimated": "~4.1.0",
43-
"react-native-safe-area-context": "~5.6.0",
43+
"react-native-safe-area-context": "^5.6.1",
4444
"react-native-screens": "~4.16.0",
45-
"react-native-svg": "15.12.1",
45+
"react-native-svg": "^15.12.0",
4646
"react-native-web": "^0.21.0",
4747
"react-native-worklets": "^0.5.1",
4848
"react-stately": "^3.39.0",

apps/starter-kit-expo/yarn.lock

Lines changed: 8534 additions & 0 deletions
Large diffs are not rendered by default.

apps/starter-kit-next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"@expo/html-elements": "^0.12.5",
1414
"@gluestack-ui/core": "^3.0.10",
15-
"@gluestack-ui/utils": "^3.0.7",
15+
"@gluestack-ui/utils": "^3.0.11",
1616
"@gluestack/ui-next-adapter": "^3.0.3",
1717
"@gorhom/bottom-sheet": "^5.0.0-alpha.11",
1818
"@legendapp/motion": "^2.4.0",

0 commit comments

Comments
 (0)