react-native-qrcode-svg 6.3.2 → 6.3.11
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/Example/.bundle/config +2 -0
- package/Example/.eslintrc.js +4 -0
- package/Example/.prettierrc.js +7 -0
- package/Example/.watchmanconfig +1 -0
- package/Example/Gemfile +9 -0
- package/Example/Gemfile.lock +103 -0
- package/Example/README.md +48 -0
- package/Example/__tests__/App.test.tsx +17 -0
- package/Example/android/app/build.gradle +119 -0
- package/Example/android/app/debug.keystore +0 -0
- package/Example/android/app/proguard-rules.pro +10 -0
- package/Example/android/app/src/debug/AndroidManifest.xml +9 -0
- package/Example/android/app/src/main/AndroidManifest.xml +25 -0
- package/Example/android/app/src/main/java/com/example/MainActivity.kt +22 -0
- package/Example/android/app/src/main/java/com/example/MainApplication.kt +45 -0
- package/Example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
- package/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/Example/android/app/src/main/res/values/strings.xml +3 -0
- package/Example/android/app/src/main/res/values/styles.xml +9 -0
- package/Example/android/build.gradle +21 -0
- package/Example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/Example/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/Example/android/gradle.properties +41 -0
- package/Example/android/gradlew +249 -0
- package/Example/android/gradlew.bat +92 -0
- package/Example/android/settings.gradle +4 -0
- package/Example/app.json +4 -0
- package/Example/babel.config.js +4 -0
- package/Example/dist/index.html +24 -0
- package/Example/global.d.ts +7 -0
- package/Example/index.js +14 -0
- package/Example/ios/.xcode.env +11 -0
- package/Example/ios/Example/AppDelegate.h +6 -0
- package/Example/ios/Example/AppDelegate.mm +31 -0
- package/Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/Example/ios/Example/Images.xcassets/Contents.json +6 -0
- package/Example/ios/Example/Info.plist +52 -0
- package/Example/ios/Example/LaunchScreen.storyboard +47 -0
- package/Example/ios/Example/main.m +10 -0
- package/Example/ios/Example.xcodeproj/project.pbxproj +698 -0
- package/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme +88 -0
- package/Example/ios/Example.xcworkspace/contents.xcworkspacedata +10 -0
- package/Example/ios/ExampleTests/ExampleTests.m +66 -0
- package/Example/ios/ExampleTests/Info.plist +24 -0
- package/Example/ios/Podfile +55 -0
- package/Example/ios/Podfile.lock +1378 -0
- package/Example/jest.config.js +3 -0
- package/Example/macos/.xcode.env +1 -0
- package/Example/macos/.xcode.env.local +2 -0
- package/Example/macos/Example-macOS/AppDelegate.h +6 -0
- package/Example/macos/Example-macOS/AppDelegate.mm +40 -0
- package/Example/macos/Example-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
- package/Example/macos/Example-macOS/Assets.xcassets/Contents.json +6 -0
- package/Example/macos/Example-macOS/Base.lproj/Main.storyboard +684 -0
- package/Example/macos/Example-macOS/Example.entitlements +12 -0
- package/Example/macos/Example-macOS/Info.plist +47 -0
- package/Example/macos/Example-macOS/main.m +5 -0
- package/Example/macos/Example.xcodeproj/project.pbxproj +567 -0
- package/Example/macos/Example.xcodeproj/xcshareddata/xcschemes/Example-macOS.xcscheme +78 -0
- package/Example/macos/Example.xcworkspace/contents.xcworkspacedata +10 -0
- package/Example/macos/Podfile +26 -0
- package/Example/macos/Podfile.lock +1233 -0
- package/Example/metro.config.js +47 -0
- package/Example/package.json +53 -0
- package/Example/src/App.tsx +130 -0
- package/Example/src/assets/google.png +0 -0
- package/Example/src/assets/ruby.svg +12 -0
- package/Example/src/components/Description.tsx +16 -0
- package/Example/src/styles.ts +21 -0
- package/Example/tsconfig.json +9 -0
- package/Example/webpack.config.js +60 -0
- package/Example/yarn.lock +8957 -0
- package/README.md +0 -6
- package/index.d.ts +10 -2
- package/package.json +11 -2
- package/src/LogoSVG/index.js +22 -0
- package/src/LogoSVG/index.native.js +24 -0
- package/src/index.js +158 -125
- package/src/utils.js +7 -0
- package/.github/workflows/npmpublish.yml +0 -31
- package/.huskyrc +0 -5
- package/.lintstagedrc +0 -3
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "1140"
|
|
4
|
+
version = "1.3">
|
|
5
|
+
<BuildAction
|
|
6
|
+
parallelizeBuildables = "YES"
|
|
7
|
+
buildImplicitDependencies = "YES">
|
|
8
|
+
<BuildActionEntries>
|
|
9
|
+
<BuildActionEntry
|
|
10
|
+
buildForTesting = "YES"
|
|
11
|
+
buildForRunning = "YES"
|
|
12
|
+
buildForProfiling = "YES"
|
|
13
|
+
buildForArchiving = "YES"
|
|
14
|
+
buildForAnalyzing = "YES">
|
|
15
|
+
<BuildableReference
|
|
16
|
+
BuildableIdentifier = "primary"
|
|
17
|
+
BlueprintIdentifier = "514201482437B4B30078DB4F"
|
|
18
|
+
BuildableName = "Example.app"
|
|
19
|
+
BlueprintName = "Example-macOS"
|
|
20
|
+
ReferencedContainer = "container:Example.xcodeproj">
|
|
21
|
+
</BuildableReference>
|
|
22
|
+
</BuildActionEntry>
|
|
23
|
+
</BuildActionEntries>
|
|
24
|
+
</BuildAction>
|
|
25
|
+
<TestAction
|
|
26
|
+
buildConfiguration = "Debug"
|
|
27
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
+
<Testables>
|
|
31
|
+
</Testables>
|
|
32
|
+
</TestAction>
|
|
33
|
+
<LaunchAction
|
|
34
|
+
buildConfiguration = "Debug"
|
|
35
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
36
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
37
|
+
launchStyle = "0"
|
|
38
|
+
useCustomWorkingDirectory = "NO"
|
|
39
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
40
|
+
debugDocumentVersioning = "YES"
|
|
41
|
+
debugServiceExtension = "internal"
|
|
42
|
+
allowLocationSimulation = "YES">
|
|
43
|
+
<BuildableProductRunnable
|
|
44
|
+
runnableDebuggingMode = "0">
|
|
45
|
+
<BuildableReference
|
|
46
|
+
BuildableIdentifier = "primary"
|
|
47
|
+
BlueprintIdentifier = "514201482437B4B30078DB4F"
|
|
48
|
+
BuildableName = "Example.app"
|
|
49
|
+
BlueprintName = "Example-macOS"
|
|
50
|
+
ReferencedContainer = "container:Example.xcodeproj">
|
|
51
|
+
</BuildableReference>
|
|
52
|
+
</BuildableProductRunnable>
|
|
53
|
+
</LaunchAction>
|
|
54
|
+
<ProfileAction
|
|
55
|
+
buildConfiguration = "Release"
|
|
56
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
57
|
+
savedToolIdentifier = ""
|
|
58
|
+
useCustomWorkingDirectory = "NO"
|
|
59
|
+
debugDocumentVersioning = "YES">
|
|
60
|
+
<BuildableProductRunnable
|
|
61
|
+
runnableDebuggingMode = "0">
|
|
62
|
+
<BuildableReference
|
|
63
|
+
BuildableIdentifier = "primary"
|
|
64
|
+
BlueprintIdentifier = "514201482437B4B30078DB4F"
|
|
65
|
+
BuildableName = "Example.app"
|
|
66
|
+
BlueprintName = "Example-macOS"
|
|
67
|
+
ReferencedContainer = "container:Example.xcodeproj">
|
|
68
|
+
</BuildableReference>
|
|
69
|
+
</BuildableProductRunnable>
|
|
70
|
+
</ProfileAction>
|
|
71
|
+
<AnalyzeAction
|
|
72
|
+
buildConfiguration = "Debug">
|
|
73
|
+
</AnalyzeAction>
|
|
74
|
+
<ArchiveAction
|
|
75
|
+
buildConfiguration = "Release"
|
|
76
|
+
revealArchiveInOrganizer = "YES">
|
|
77
|
+
</ArchiveAction>
|
|
78
|
+
</Scheme>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
require_relative '../node_modules/react-native-macos/scripts/react_native_pods'
|
|
2
|
+
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
|
3
|
+
|
|
4
|
+
prepare_react_native_project!
|
|
5
|
+
|
|
6
|
+
target 'Example-macOS' do
|
|
7
|
+
platform :macos, '10.15'
|
|
8
|
+
use_native_modules!
|
|
9
|
+
|
|
10
|
+
# Flags change depending on the env values.
|
|
11
|
+
flags = get_default_flags()
|
|
12
|
+
|
|
13
|
+
use_react_native!(
|
|
14
|
+
:path => '../node_modules/react-native-macos',
|
|
15
|
+
:hermes_enabled => false,
|
|
16
|
+
:fabric_enabled => ENV['RCT_NEW_ARCH_ENABLED'] == '1',
|
|
17
|
+
# Flipper is not compatible w/ macOS
|
|
18
|
+
:flipper_configuration => FlipperConfiguration.disabled,
|
|
19
|
+
# An absolute path to your application root.
|
|
20
|
+
:app_path => "#{Pod::Config.instance.installation_root}/.."
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
post_install do |installer|
|
|
24
|
+
react_native_post_install(installer)
|
|
25
|
+
end
|
|
26
|
+
end
|