@brightlayer-ui/react-native-template-authentication-typescript 4.0.0-alpha.0 → 4.1.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -1
- package/package.json +1 -1
- package/template/App.tsx +40 -12
- package/template/android/app/build.gradle +0 -1
- package/template/android/app/src/main/java/com/example/MainActivity.kt +1 -1
- package/template/android/app/src/main/res/values/strings.xml +1 -1
- package/template/android/settings.gradle +1 -1
- package/template/app.json +2 -2
- package/template/babel.config.js +1 -1
- package/template/ios/{example → AuthTemplate}/AppDelegate.swift +1 -1
- package/template/ios/{example → AuthTemplate}/Info.plist +2 -2
- package/template/ios/{example → AuthTemplate}/LaunchScreen.storyboard +1 -1
- package/template/ios/{example.xcodeproj → AuthTemplate.xcodeproj}/project.pbxproj +44 -42
- package/template/ios/{example.xcodeproj/xcshareddata/xcschemes/example.xcscheme → AuthTemplate.xcodeproj/xcshareddata/xcschemes/AuthTemplate.xcscheme} +12 -12
- package/template/ios/{example.xcworkspace → AuthTemplate.xcworkspace}/contents.xcworkspacedata +1 -1
- package/template/ios/Podfile +1 -1
- package/template/ios/Podfile.lock +13 -3
- package/template/okta.config.js +10 -0
- package/template/package.json +8 -5
- package/template/src/components/UserMenuComponent.tsx +40 -4
- package/template/src/contexts/RegistrationContext.tsx +26 -0
- package/template/src/navigation/index.tsx +56 -61
- package/template/src/navigation/navigation-drawer.tsx +8 -9
- package/template/src/screens/ChangePassword.tsx +20 -4
- package/template/src/screens/OktaLogin.tsx +58 -0
- package/template/yarn.lock +132 -28
- /package/template/ios/{example → AuthTemplate}/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
- /package/template/ios/{example → AuthTemplate}/Images.xcassets/Contents.json +0 -0
- /package/template/ios/{example → AuthTemplate}/PrivacyInfo.xcprivacy +0 -0
- /package/template/ios/{example.xcworkspace → AuthTemplate.xcworkspace}/xcshareddata/IDEWorkspaceChecks.plist +0 -0
- /package/template/ios/{exampleTests → AuthTemplateTests}/Info.plist +0 -0
package/template/yarn.lock
CHANGED
|
@@ -1094,26 +1094,33 @@
|
|
|
1094
1094
|
resolved "https://registry.yarnpkg.com/@brightlayer-ui/prettier-config/-/prettier-config-1.0.3.tgz#e40a7ae7435c6fd5118acbf249080e0aa81e93af"
|
|
1095
1095
|
integrity sha512-EYm3+V7Qd+oYEF+8FadsXAZqXryEHHbGnrV1BMp9selhABjceqUqXPVE4Sn3SKWQdBNJ3En2A3EzgrzRbvRTaw==
|
|
1096
1096
|
|
|
1097
|
-
"@brightlayer-ui/react-native-auth-workflow@^
|
|
1098
|
-
version "
|
|
1099
|
-
resolved "https://registry.yarnpkg.com/@brightlayer-ui/react-native-auth-workflow/-/react-native-auth-workflow-
|
|
1100
|
-
integrity sha512-
|
|
1097
|
+
"@brightlayer-ui/react-native-auth-workflow@^8.1.1":
|
|
1098
|
+
version "8.1.1"
|
|
1099
|
+
resolved "https://registry.yarnpkg.com/@brightlayer-ui/react-native-auth-workflow/-/react-native-auth-workflow-8.1.1.tgz#f92945a15e1fde04202e94b3caa71ee50cc36ffb"
|
|
1100
|
+
integrity sha512-VGeXWJbTqNL5A0n50e4gCtmb9U7+nGAabTGnyL81N2guR2dEHRc8THvctixsZh1p9f/NlY/mbd8ukEkt4nlzjw==
|
|
1101
1101
|
dependencies:
|
|
1102
1102
|
"@brightlayer-ui/react-native-themes" "^7.0.1"
|
|
1103
|
+
"@types/react" "^19.0.0"
|
|
1104
|
+
"@types/react-dom" "^19.0.0"
|
|
1103
1105
|
color "^4.2.3"
|
|
1104
1106
|
lodash.clonedeep "^4.5.0"
|
|
1105
1107
|
|
|
1106
|
-
"@brightlayer-ui/react-native-components@^
|
|
1107
|
-
version "
|
|
1108
|
-
resolved "https://registry.yarnpkg.com/@brightlayer-ui/react-native-components/-/react-native-components-
|
|
1109
|
-
integrity sha512-
|
|
1108
|
+
"@brightlayer-ui/react-native-components@^9.1.1":
|
|
1109
|
+
version "9.1.1"
|
|
1110
|
+
resolved "https://registry.yarnpkg.com/@brightlayer-ui/react-native-components/-/react-native-components-9.1.1.tgz#86643c371a00e5f9b28207be13229cfa02cbfd09"
|
|
1111
|
+
integrity sha512-0bYUGOeB/fsLiRzkikki0NBBwoxnuS9M5UgOrmHMDNmoeosdHYVkmhPf3sVZT1LWajrN4sPLRhhC3017VUvuCQ==
|
|
1110
1112
|
dependencies:
|
|
1111
1113
|
"@brightlayer-ui/react-native-themes" "7.0.1"
|
|
1114
|
+
"@callstack/react-theme-provider" "^3.0.9"
|
|
1115
|
+
"@types/prop-types" "^15.7.15"
|
|
1116
|
+
"@types/react" "^19.0.0"
|
|
1117
|
+
"@types/react-dom" "^19.0.0"
|
|
1112
1118
|
color "^4.2.3"
|
|
1113
|
-
|
|
1119
|
+
prop-types "^15.8.1"
|
|
1120
|
+
react-native-collapsible "^1.6.2"
|
|
1114
1121
|
react-native-keyboard-aware-scroll-view "^0.9.5"
|
|
1115
|
-
react-native-modal "
|
|
1116
|
-
react-native-reanimated "^3.
|
|
1122
|
+
react-native-modal "^13.0.1"
|
|
1123
|
+
react-native-reanimated "^3.18.0"
|
|
1117
1124
|
|
|
1118
1125
|
"@brightlayer-ui/react-native-themes@7.0.1", "@brightlayer-ui/react-native-themes@^7.0.1":
|
|
1119
1126
|
version "7.0.1"
|
|
@@ -1123,10 +1130,22 @@
|
|
|
1123
1130
|
"@brightlayer-ui/colors" "4.0.0"
|
|
1124
1131
|
color "^4.2.3"
|
|
1125
1132
|
|
|
1126
|
-
"@brightlayer-ui/react-native-
|
|
1127
|
-
version "
|
|
1128
|
-
resolved "https://registry.yarnpkg.com/@brightlayer-ui/react-native-
|
|
1129
|
-
integrity sha512-
|
|
1133
|
+
"@brightlayer-ui/react-native-themes@^8.0.0":
|
|
1134
|
+
version "8.0.0"
|
|
1135
|
+
resolved "https://registry.yarnpkg.com/@brightlayer-ui/react-native-themes/-/react-native-themes-8.0.0.tgz#93b36733b5d31c780574a5340b637c8f57c1e7ba"
|
|
1136
|
+
integrity sha512-87j5m7/eUkSvDyF89HMxGQHtvaVNgtUdPRzLtPzDD0AkyQ4uFdCMgzHydZdGOemMw/bGdyrdcwUn46tFrWVL7w==
|
|
1137
|
+
dependencies:
|
|
1138
|
+
"@brightlayer-ui/colors" "4.0.0"
|
|
1139
|
+
"@callstack/react-theme-provider" "^3.0.9"
|
|
1140
|
+
color "^4.2.3"
|
|
1141
|
+
react-native-safe-area-context "5.4.1"
|
|
1142
|
+
|
|
1143
|
+
"@brightlayer-ui/react-native-vector-icons@^3.0.0":
|
|
1144
|
+
version "3.0.0"
|
|
1145
|
+
resolved "https://registry.yarnpkg.com/@brightlayer-ui/react-native-vector-icons/-/react-native-vector-icons-3.0.0.tgz#599f404caa7777bf8c403e99858e05a106a86725"
|
|
1146
|
+
integrity sha512-lJC81d6sn13W0rhjennuZcoHpEEDfn/EEzNuQ1z0u1hZCzlzYs2gH7moN2vrTNczyjsOBYIq1aeLKdvpceQGlg==
|
|
1147
|
+
dependencies:
|
|
1148
|
+
"@react-native-vector-icons/common" "^12.0.0"
|
|
1130
1149
|
|
|
1131
1150
|
"@callstack/react-theme-provider@^3.0.9":
|
|
1132
1151
|
version "3.0.9"
|
|
@@ -1882,6 +1901,22 @@
|
|
|
1882
1901
|
prompts "^2.4.2"
|
|
1883
1902
|
semver "^7.5.2"
|
|
1884
1903
|
|
|
1904
|
+
"@react-native-community/cli-tools@^17.0.0":
|
|
1905
|
+
version "17.0.0"
|
|
1906
|
+
resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-17.0.0.tgz#c46bae5e5ffeee7067d0e55d2ee1de128e310ac3"
|
|
1907
|
+
integrity sha512-mVXH7U/uXd7yizqm2iE+W4SSVc4FGYYEafAu29HihA+FHttonqdg35zVAnIX2FKbyla+TotR1ACNSgo7KFDq+w==
|
|
1908
|
+
dependencies:
|
|
1909
|
+
"@vscode/sudo-prompt" "^9.0.0"
|
|
1910
|
+
appdirsjs "^1.2.4"
|
|
1911
|
+
chalk "^4.1.2"
|
|
1912
|
+
execa "^5.0.0"
|
|
1913
|
+
find-up "^5.0.0"
|
|
1914
|
+
launch-editor "^2.9.1"
|
|
1915
|
+
mime "^2.4.1"
|
|
1916
|
+
ora "^5.4.1"
|
|
1917
|
+
prompts "^2.4.2"
|
|
1918
|
+
semver "^7.5.2"
|
|
1919
|
+
|
|
1885
1920
|
"@react-native-community/cli-types@19.0.0":
|
|
1886
1921
|
version "19.0.0"
|
|
1887
1922
|
resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-19.0.0.tgz#fe4266eac8ce8ea58bee1a253af9a4ff3543241a"
|
|
@@ -1915,6 +1950,29 @@
|
|
|
1915
1950
|
resolved "https://registry.yarnpkg.com/@react-native-community/masked-view/-/masked-view-0.1.11.tgz#2f4c6e10bee0786abff4604e39a37ded6f3980ce"
|
|
1916
1951
|
integrity sha512-rQfMIGSR/1r/SyN87+VD8xHHzDYeHaJq6elOSCAD+0iLagXkSI2pfA0LmSXP21uw5i3em7GkkRjfJ8wpqWXZNw==
|
|
1917
1952
|
|
|
1953
|
+
"@react-native-vector-icons/common@^12.0.0", "@react-native-vector-icons/common@^12.2.0":
|
|
1954
|
+
version "12.2.0"
|
|
1955
|
+
resolved "https://registry.yarnpkg.com/@react-native-vector-icons/common/-/common-12.2.0.tgz#9d42cddd6dc87ba1f7daf7386150034b0ed8caa7"
|
|
1956
|
+
integrity sha512-FGVwBwuio2A9N9sJckXeTwp/oe20hCMe/Zul+b1ql3WkhUJpdJWVbpWKp8ikpHLRRstwuUqkeM5eY74f0zNn1A==
|
|
1957
|
+
dependencies:
|
|
1958
|
+
"@react-native-community/cli-tools" "^17.0.0"
|
|
1959
|
+
picocolors "^1.1.1"
|
|
1960
|
+
plist "^3.1.0"
|
|
1961
|
+
|
|
1962
|
+
"@react-native-vector-icons/material-design-icons@^12.2.0":
|
|
1963
|
+
version "12.2.0"
|
|
1964
|
+
resolved "https://registry.yarnpkg.com/@react-native-vector-icons/material-design-icons/-/material-design-icons-12.2.0.tgz#e606320ae031c56cee231f515d3b1f0334a06b42"
|
|
1965
|
+
integrity sha512-XFGkuTLATGMH5RtcbuiJ18mMFKsge5PZjiS+cs+/KwFCWMMznRiQkZlycIVOx52V1WFE+L6oBv3Z6r+L6HHekA==
|
|
1966
|
+
dependencies:
|
|
1967
|
+
"@react-native-vector-icons/common" "^12.2.0"
|
|
1968
|
+
|
|
1969
|
+
"@react-native-vector-icons/material-icons@^12.2.0":
|
|
1970
|
+
version "12.2.0"
|
|
1971
|
+
resolved "https://registry.yarnpkg.com/@react-native-vector-icons/material-icons/-/material-icons-12.2.0.tgz#53838fe85fc45f139ae7eaf352c184e6d8fddc10"
|
|
1972
|
+
integrity sha512-ZOG1sryGmbZ0s/TBHQ28dMpdTKZ/RR/rhkuXgvMRjiX+vlvV91FmySH5P7NM0zcvqK6BEgONLRtRDaL7zz4xRw==
|
|
1973
|
+
dependencies:
|
|
1974
|
+
"@react-native-vector-icons/common" "^12.2.0"
|
|
1975
|
+
|
|
1918
1976
|
"@react-native/assets-registry@0.80.1":
|
|
1919
1977
|
version "0.80.1"
|
|
1920
1978
|
resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.80.1.tgz#f692115d706e2b9b1847fca81ad8c2bbec67f6ef"
|
|
@@ -2318,11 +2376,6 @@
|
|
|
2318
2376
|
deepmerge "^4.3.1"
|
|
2319
2377
|
svgo "^3.0.2"
|
|
2320
2378
|
|
|
2321
|
-
"@trysound/sax@0.2.0":
|
|
2322
|
-
version "0.2.0"
|
|
2323
|
-
resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
|
|
2324
|
-
integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
|
|
2325
|
-
|
|
2326
2379
|
"@tybys/wasm-util@^0.9.0":
|
|
2327
2380
|
version "0.9.0"
|
|
2328
2381
|
resolved "https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.9.0.tgz#3e75eb00604c8d6db470bf18c37b7d984a0e3355"
|
|
@@ -2419,6 +2472,16 @@
|
|
|
2419
2472
|
dependencies:
|
|
2420
2473
|
undici-types "~7.8.0"
|
|
2421
2474
|
|
|
2475
|
+
"@types/prop-types@^15.7.15":
|
|
2476
|
+
version "15.7.15"
|
|
2477
|
+
resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.15.tgz#e6e5a86d602beaca71ce5163fadf5f95d70931c7"
|
|
2478
|
+
integrity sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==
|
|
2479
|
+
|
|
2480
|
+
"@types/react-dom@^19.0.0":
|
|
2481
|
+
version "19.1.6"
|
|
2482
|
+
resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-19.1.6.tgz#4af629da0e9f9c0f506fc4d1caa610399c595d64"
|
|
2483
|
+
integrity sha512-4hOiT/dwO8Ko0gV1m/TJZYk3y0KBnY9vzDh7W+DH17b2HFSOGgdj33dhihPeuy3l0q23+4e+hoXHV6hCC4dCXw==
|
|
2484
|
+
|
|
2422
2485
|
"@types/react-native-vector-icons@^6.4.18":
|
|
2423
2486
|
version "6.4.18"
|
|
2424
2487
|
resolved "https://registry.yarnpkg.com/@types/react-native-vector-icons/-/react-native-vector-icons-6.4.18.tgz#18671c617b9d0958747bc959903470dde91a8c79"
|
|
@@ -2441,7 +2504,7 @@
|
|
|
2441
2504
|
dependencies:
|
|
2442
2505
|
"@types/react" "*"
|
|
2443
2506
|
|
|
2444
|
-
"@types/react@*", "@types/react@^19.1.8":
|
|
2507
|
+
"@types/react@*", "@types/react@^19.0.0", "@types/react@^19.1.8":
|
|
2445
2508
|
version "19.1.8"
|
|
2446
2509
|
resolved "https://registry.yarnpkg.com/@types/react/-/react-19.1.8.tgz#ff8395f2afb764597265ced15f8dddb0720ae1c3"
|
|
2447
2510
|
integrity sha512-AwAfQ2Wa5bCx9WP8nZL2uMZWod7J7/JSplxbTmBQ5ms6QpqNYm672H0Vu9ZVKVngQ+ii4R/byguVEUZQyeg44g==
|
|
@@ -2810,6 +2873,11 @@
|
|
|
2810
2873
|
resolved "https://registry.yarnpkg.com/@vscode/sudo-prompt/-/sudo-prompt-9.3.1.tgz#c562334bc6647733649fd42afc96c0eea8de3b65"
|
|
2811
2874
|
integrity sha512-9ORTwwS74VaTn38tNbQhsA5U44zkJfcb0BdTSyyG6frP4e8KMtHuTXYmwefe5dpL8XB1aGSIVTaLjD3BbWb5iA==
|
|
2812
2875
|
|
|
2876
|
+
"@xmldom/xmldom@^0.8.8":
|
|
2877
|
+
version "0.8.10"
|
|
2878
|
+
resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz#a1337ca426aa61cef9fe15b5b28e340a72f6fa99"
|
|
2879
|
+
integrity sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==
|
|
2880
|
+
|
|
2813
2881
|
Base64@1.1.0:
|
|
2814
2882
|
version "1.1.0"
|
|
2815
2883
|
resolved "https://registry.yarnpkg.com/Base64/-/Base64-1.1.0.tgz#810ef21afa8357df92ad7b5389188c446b9cb956"
|
|
@@ -3931,6 +3999,11 @@ dot-case@^3.0.4:
|
|
|
3931
3999
|
no-case "^3.0.4"
|
|
3932
4000
|
tslib "^2.0.3"
|
|
3933
4001
|
|
|
4002
|
+
dotenv@^16.4.5:
|
|
4003
|
+
version "16.6.1"
|
|
4004
|
+
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.6.1.tgz#773f0e69527a8315c7285d5ee73c4459d20a8020"
|
|
4005
|
+
integrity sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==
|
|
4006
|
+
|
|
3934
4007
|
dunder-proto@^1.0.0, dunder-proto@^1.0.1:
|
|
3935
4008
|
version "1.0.1"
|
|
3936
4009
|
resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a"
|
|
@@ -6808,6 +6881,15 @@ pkg-dir@^4.2.0:
|
|
|
6808
6881
|
dependencies:
|
|
6809
6882
|
find-up "^4.0.0"
|
|
6810
6883
|
|
|
6884
|
+
plist@^3.1.0:
|
|
6885
|
+
version "3.1.0"
|
|
6886
|
+
resolved "https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz#797a516a93e62f5bde55e0b9cc9c967f860893c9"
|
|
6887
|
+
integrity sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==
|
|
6888
|
+
dependencies:
|
|
6889
|
+
"@xmldom/xmldom" "^0.8.8"
|
|
6890
|
+
base64-js "^1.5.1"
|
|
6891
|
+
xmlbuilder "^15.1.1"
|
|
6892
|
+
|
|
6811
6893
|
possible-typed-array-names@^1.0.0:
|
|
6812
6894
|
version "1.1.0"
|
|
6813
6895
|
resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz#93e3582bc0e5426586d9d07b79ee40fc841de4ae"
|
|
@@ -7001,11 +7083,18 @@ react-native-animatable@1.4.0:
|
|
|
7001
7083
|
dependencies:
|
|
7002
7084
|
prop-types "^15.8.1"
|
|
7003
7085
|
|
|
7004
|
-
react-native-collapsible@^1.6.
|
|
7086
|
+
react-native-collapsible@^1.6.2:
|
|
7005
7087
|
version "1.6.2"
|
|
7006
7088
|
resolved "https://registry.yarnpkg.com/react-native-collapsible/-/react-native-collapsible-1.6.2.tgz#3b67fa402a6ba3c291022f5db8f345083862c3d8"
|
|
7007
7089
|
integrity sha512-MCOBVJWqHNjnDaGkvxX997VONmJeebh6wyJxnHEgg0L1PrlcXU1e/bo6eK+CDVFuMrCafw8Qh4DOv/C4V/+Iew==
|
|
7008
7090
|
|
|
7091
|
+
react-native-dotenv@^3.4.11:
|
|
7092
|
+
version "3.4.11"
|
|
7093
|
+
resolved "https://registry.yarnpkg.com/react-native-dotenv/-/react-native-dotenv-3.4.11.tgz#2e6c4eabd55d5f1bf109b3dd9141dadf9c55cdd4"
|
|
7094
|
+
integrity sha512-6vnIE+WHABSeHCaYP6l3O1BOEhWxKH6nHAdV7n/wKn/sciZ64zPPp2NUdEUf1m7g4uuzlLbjgr+6uDt89q2DOg==
|
|
7095
|
+
dependencies:
|
|
7096
|
+
dotenv "^16.4.5"
|
|
7097
|
+
|
|
7009
7098
|
react-native-gesture-handler@^2.26.0:
|
|
7010
7099
|
version "2.27.1"
|
|
7011
7100
|
resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.27.1.tgz#8865b2345f4c65536517f20cedc420481fc72d49"
|
|
@@ -7038,7 +7127,7 @@ react-native-keyboard-aware-scroll-view@^0.9.5:
|
|
|
7038
7127
|
prop-types "^15.6.2"
|
|
7039
7128
|
react-native-iphone-x-helper "^1.0.3"
|
|
7040
7129
|
|
|
7041
|
-
react-native-modal
|
|
7130
|
+
react-native-modal@^13.0.1, react-native-modal@^13.0.2:
|
|
7042
7131
|
version "13.0.2"
|
|
7043
7132
|
resolved "https://registry.yarnpkg.com/react-native-modal/-/react-native-modal-13.0.2.tgz#4e4d777fdb0f5af5a50003a53eebc4de9ead5695"
|
|
7044
7133
|
integrity sha512-jCUR2DAskuZtVIbnt2ZssX70DCbTLydkL1Glv1Fc/fqVIhq1LpwBK2hKgSf9VIINXFnDjjGIMIC9HhDXnW7Enw==
|
|
@@ -7059,7 +7148,7 @@ react-native-paper@^5.14.5:
|
|
|
7059
7148
|
color "^3.1.2"
|
|
7060
7149
|
use-latest-callback "^0.2.3"
|
|
7061
7150
|
|
|
7062
|
-
react-native-reanimated@^3.18.0
|
|
7151
|
+
react-native-reanimated@^3.18.0:
|
|
7063
7152
|
version "3.18.0"
|
|
7064
7153
|
resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.18.0.tgz#0a246eab38a9e807887fe561a2868cfe85351f3c"
|
|
7065
7154
|
integrity sha512-eVcNcqeOkMW+BUWAHdtvN3FKgC8J8wiEJkX6bNGGQaLS7m7e4amTfjIcqf/Ta+lerZLurmDaQ0lICI1CKPrb1Q==
|
|
@@ -7082,6 +7171,11 @@ react-native-restart@^0.0.27:
|
|
|
7082
7171
|
resolved "https://registry.yarnpkg.com/react-native-restart/-/react-native-restart-0.0.27.tgz#43aa8210312c9dfa5ec7bd4b2f35238ad7972b19"
|
|
7083
7172
|
integrity sha512-8KScVICrXwcTSJ1rjWkqVTHyEKQIttm5AIMGSK1QG1+RS5owYlE4z/1DykOTdWfVl9l16FIk0w9Xzk9ZO6jxlA==
|
|
7084
7173
|
|
|
7174
|
+
react-native-safe-area-context@5.4.1:
|
|
7175
|
+
version "5.4.1"
|
|
7176
|
+
resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-5.4.1.tgz#6d04eac20f99622fa13895fa7ae96199f1ecf800"
|
|
7177
|
+
integrity sha512-x+g3NblZ9jof8y+XkVvaGlpMrSlixhrJJ33BRzhTAKUKctQVecO1heSXmzxc5UdjvGYBKS6kPZVUw2b8NxHcPg==
|
|
7178
|
+
|
|
7085
7179
|
react-native-safe-area-context@^5.5.0:
|
|
7086
7180
|
version "5.5.1"
|
|
7087
7181
|
resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-5.5.1.tgz#9fac8ae5da8b9ff6f77eb3f697e073f04a1f2f3f"
|
|
@@ -7414,6 +7508,11 @@ safe-regex-test@^1.1.0:
|
|
|
7414
7508
|
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
|
7415
7509
|
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
|
|
7416
7510
|
|
|
7511
|
+
sax@^1.5.0:
|
|
7512
|
+
version "1.6.0"
|
|
7513
|
+
resolved "https://registry.yarnpkg.com/sax/-/sax-1.6.0.tgz#da59637629307b97e7c4cb28e080a7bc38560d5b"
|
|
7514
|
+
integrity sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==
|
|
7515
|
+
|
|
7417
7516
|
scheduler@0.26.0, scheduler@^0.26.0:
|
|
7418
7517
|
version "0.26.0"
|
|
7419
7518
|
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.26.0.tgz#4ce8a8c2a2095f13ea11bf9a445be50c555d6337"
|
|
@@ -7879,17 +7978,17 @@ svg-parser@^2.0.4:
|
|
|
7879
7978
|
integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==
|
|
7880
7979
|
|
|
7881
7980
|
svgo@^3.0.2:
|
|
7882
|
-
version "3.3.
|
|
7883
|
-
resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.3.
|
|
7884
|
-
integrity sha512
|
|
7981
|
+
version "3.3.3"
|
|
7982
|
+
resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.3.3.tgz#8246aee0b08791fde3b0ed22b5661b471fadf58e"
|
|
7983
|
+
integrity sha512-+wn7I4p7YgJhHs38k2TNjy1vCfPIfLIJWR5MnCStsN8WuuTcBnRKcMHQLMM2ijxGZmDoZwNv8ipl5aTTen62ng==
|
|
7885
7984
|
dependencies:
|
|
7886
|
-
"@trysound/sax" "0.2.0"
|
|
7887
7985
|
commander "^7.2.0"
|
|
7888
7986
|
css-select "^5.1.0"
|
|
7889
7987
|
css-tree "^2.3.1"
|
|
7890
7988
|
css-what "^6.1.0"
|
|
7891
7989
|
csso "^5.0.5"
|
|
7892
7990
|
picocolors "^1.0.0"
|
|
7991
|
+
sax "^1.5.0"
|
|
7893
7992
|
|
|
7894
7993
|
synckit@^0.11.7, synckit@^0.11.8:
|
|
7895
7994
|
version "0.11.8"
|
|
@@ -8425,6 +8524,11 @@ xhr2@0.1.3:
|
|
|
8425
8524
|
resolved "https://registry.yarnpkg.com/xhr2/-/xhr2-0.1.3.tgz#cbfc4759a69b4a888e78cf4f20b051038757bd11"
|
|
8426
8525
|
integrity sha512-6RmGK22QwC7yXB1CRwyLWuS2opPcKOlAu0ViAnyZjDlzrEmCKL4kLHkfvB8oMRWeztMsNoDGAjsMZY15w/4tTw==
|
|
8427
8526
|
|
|
8527
|
+
xmlbuilder@^15.1.1:
|
|
8528
|
+
version "15.1.1"
|
|
8529
|
+
resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz#9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5"
|
|
8530
|
+
integrity sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==
|
|
8531
|
+
|
|
8428
8532
|
y18n@^4.0.0:
|
|
8429
8533
|
version "4.0.3"
|
|
8430
8534
|
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
|
/package/template/ios/{example → AuthTemplate}/Images.xcassets/AppIcon.appiconset/Contents.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|