├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── carbon.png ├── deploy-function-1.png ├── deploy-function-14.png ├── react-integration-3.gif ├── token.png └── users-2.gif ├── example ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.tsx │ ├── CardElement.tsx │ ├── DbCardElement.tsx │ ├── DbExample.tsx │ ├── ProjectUser.tsx │ ├── QueryCardElement.tsx │ ├── QueryExample.tsx │ ├── UseReturnExample.tsx │ ├── UseReturnStressTest.tsx │ ├── index.tsx │ ├── react-app-env.d.ts │ └── styles.css └── tsconfig.json ├── native-example ├── .buckconfig ├── .gitattributes ├── .gitignore ├── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── nativeexample │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── nativeexample │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── splashscreen.xml │ │ │ └── splashscreen_image.png │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── nativeexample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── nativeexample.xcscheme │ ├── nativeexample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── nativeexample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── SplashScreen.imageset │ │ │ ├── Contents.json │ │ │ └── splashscreen.png │ │ └── SplashScreenBackground.imageset │ │ │ ├── Contents.json │ │ │ └── background.png │ │ ├── Info.plist │ │ ├── SplashScreen.storyboard │ │ ├── Supporting │ │ └── Expo.plist │ │ └── main.m ├── metro.config.js └── package.json ├── native └── package.json ├── package.json ├── src ├── EasybaseContext.tsx ├── EasybaseProvider.tsx ├── assets │ ├── image-extensions.json │ └── video-extensions.json ├── cache.native.ts ├── cache.ts ├── callFunction.tsx ├── index.tsx ├── storage │ ├── error.js │ ├── index.d.ts │ └── index.js ├── types │ ├── decs.d.ts │ ├── react-app-env.d.ts │ ├── types.tsx │ └── typings.d.ts ├── ui │ ├── Auth │ │ ├── Auth.tsx │ │ ├── components │ │ │ ├── Container.tsx │ │ │ ├── EmailInput.tsx │ │ │ ├── ErrorText.tsx │ │ │ ├── ForgotPassword.tsx │ │ │ ├── Form.tsx │ │ │ ├── GenderSelect.tsx │ │ │ ├── HeaderText.tsx │ │ │ ├── PasswordInput.tsx │ │ │ ├── SecondaryButton.tsx │ │ │ ├── SecondaryText.tsx │ │ │ ├── Spacer.tsx │ │ │ ├── SubmitButton.tsx │ │ │ └── internal │ │ │ │ ├── Input.tsx │ │ │ │ ├── Label.tsx │ │ │ │ ├── Select.tsx │ │ │ │ └── TextButton.tsx │ │ ├── index.tsx │ │ └── pages │ │ │ ├── ForgotPassword.tsx │ │ │ ├── SignIn.tsx │ │ │ └── SignUp.tsx │ ├── NativeAuth │ │ ├── NativeAuth.tsx │ │ ├── components.tsx │ │ └── pages │ │ │ ├── ForgotPassword.tsx │ │ │ ├── SignIn.tsx │ │ │ └── SignUp.tsx │ ├── ReactNative.tsx │ ├── themes │ │ ├── material.ts │ │ ├── minimal-dark.ts │ │ └── minimal.ts │ ├── uiTypes.ts │ └── utils.tsx └── useEasybase.tsx ├── tsconfig.json └── typedoc.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/README.md -------------------------------------------------------------------------------- /assets/carbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/assets/carbon.png -------------------------------------------------------------------------------- /assets/deploy-function-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/assets/deploy-function-1.png -------------------------------------------------------------------------------- /assets/deploy-function-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/assets/deploy-function-14.png -------------------------------------------------------------------------------- /assets/react-integration-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/assets/react-integration-3.gif -------------------------------------------------------------------------------- /assets/token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/assets/token.png -------------------------------------------------------------------------------- /assets/users-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/assets/users-2.gif -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/README.md -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/public/favicon.ico -------------------------------------------------------------------------------- /example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/public/index.html -------------------------------------------------------------------------------- /example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/public/manifest.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/CardElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/src/CardElement.tsx -------------------------------------------------------------------------------- /example/src/DbCardElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/src/DbCardElement.tsx -------------------------------------------------------------------------------- /example/src/DbExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/src/DbExample.tsx -------------------------------------------------------------------------------- /example/src/ProjectUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/src/ProjectUser.tsx -------------------------------------------------------------------------------- /example/src/QueryCardElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/src/QueryCardElement.tsx -------------------------------------------------------------------------------- /example/src/QueryExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/src/QueryExample.tsx -------------------------------------------------------------------------------- /example/src/UseReturnExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/src/UseReturnExample.tsx -------------------------------------------------------------------------------- /example/src/UseReturnStressTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/src/UseReturnStressTest.tsx -------------------------------------------------------------------------------- /example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/src/index.tsx -------------------------------------------------------------------------------- /example/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /example/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/src/styles.css -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /native-example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/.buckconfig -------------------------------------------------------------------------------- /native-example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /native-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/.gitignore -------------------------------------------------------------------------------- /native-example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/App.js -------------------------------------------------------------------------------- /native-example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/BUCK -------------------------------------------------------------------------------- /native-example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/build.gradle -------------------------------------------------------------------------------- /native-example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /native-example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/debug.keystore -------------------------------------------------------------------------------- /native-example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /native-example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /native-example/android/app/src/debug/java/com/nativeexample/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/debug/java/com/nativeexample/ReactNativeFlipper.java -------------------------------------------------------------------------------- /native-example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /native-example/android/app/src/main/java/com/nativeexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/java/com/nativeexample/MainActivity.java -------------------------------------------------------------------------------- /native-example/android/app/src/main/java/com/nativeexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/java/com/nativeexample/MainApplication.java -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/drawable/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/drawable/splashscreen_image.png -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /native-example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /native-example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/build.gradle -------------------------------------------------------------------------------- /native-example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/gradle.properties -------------------------------------------------------------------------------- /native-example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /native-example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /native-example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/gradlew -------------------------------------------------------------------------------- /native-example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/gradlew.bat -------------------------------------------------------------------------------- /native-example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/android/settings.gradle -------------------------------------------------------------------------------- /native-example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/app.json -------------------------------------------------------------------------------- /native-example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/babel.config.js -------------------------------------------------------------------------------- /native-example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/index.js -------------------------------------------------------------------------------- /native-example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/Podfile -------------------------------------------------------------------------------- /native-example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/Podfile.lock -------------------------------------------------------------------------------- /native-example/ios/nativeexample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /native-example/ios/nativeexample.xcodeproj/xcshareddata/xcschemes/nativeexample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample.xcodeproj/xcshareddata/xcschemes/nativeexample.xcscheme -------------------------------------------------------------------------------- /native-example/ios/nativeexample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /native-example/ios/nativeexample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /native-example/ios/nativeexample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample/AppDelegate.h -------------------------------------------------------------------------------- /native-example/ios/nativeexample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample/AppDelegate.m -------------------------------------------------------------------------------- /native-example/ios/nativeexample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /native-example/ios/nativeexample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /native-example/ios/nativeexample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /native-example/ios/nativeexample/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /native-example/ios/nativeexample/Images.xcassets/SplashScreen.imageset/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample/Images.xcassets/SplashScreen.imageset/splashscreen.png -------------------------------------------------------------------------------- /native-example/ios/nativeexample/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /native-example/ios/nativeexample/Images.xcassets/SplashScreenBackground.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample/Images.xcassets/SplashScreenBackground.imageset/background.png -------------------------------------------------------------------------------- /native-example/ios/nativeexample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample/Info.plist -------------------------------------------------------------------------------- /native-example/ios/nativeexample/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample/SplashScreen.storyboard -------------------------------------------------------------------------------- /native-example/ios/nativeexample/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample/Supporting/Expo.plist -------------------------------------------------------------------------------- /native-example/ios/nativeexample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/ios/nativeexample/main.m -------------------------------------------------------------------------------- /native-example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/metro.config.js -------------------------------------------------------------------------------- /native-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native-example/package.json -------------------------------------------------------------------------------- /native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/native/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/package.json -------------------------------------------------------------------------------- /src/EasybaseContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/EasybaseContext.tsx -------------------------------------------------------------------------------- /src/EasybaseProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/EasybaseProvider.tsx -------------------------------------------------------------------------------- /src/assets/image-extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/assets/image-extensions.json -------------------------------------------------------------------------------- /src/assets/video-extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/assets/video-extensions.json -------------------------------------------------------------------------------- /src/cache.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/cache.native.ts -------------------------------------------------------------------------------- /src/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/cache.ts -------------------------------------------------------------------------------- /src/callFunction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/callFunction.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/storage/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/storage/error.js -------------------------------------------------------------------------------- /src/storage/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/storage/index.d.ts -------------------------------------------------------------------------------- /src/storage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/storage/index.js -------------------------------------------------------------------------------- /src/types/decs.d.ts: -------------------------------------------------------------------------------- 1 | declare module "object-observer" 2 | -------------------------------------------------------------------------------- /src/types/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/types/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/types/types.tsx -------------------------------------------------------------------------------- /src/types/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/types/typings.d.ts -------------------------------------------------------------------------------- /src/ui/Auth/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/Auth.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/Container.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/EmailInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/EmailInput.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/ErrorText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/ErrorText.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/ForgotPassword.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/Form.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/GenderSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/GenderSelect.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/HeaderText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/HeaderText.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/PasswordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/PasswordInput.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/SecondaryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/SecondaryButton.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/SecondaryText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/SecondaryText.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/Spacer.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/SubmitButton.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/internal/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/internal/Input.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/internal/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/internal/Label.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/internal/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/internal/Select.tsx -------------------------------------------------------------------------------- /src/ui/Auth/components/internal/TextButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/components/internal/TextButton.tsx -------------------------------------------------------------------------------- /src/ui/Auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/index.tsx -------------------------------------------------------------------------------- /src/ui/Auth/pages/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/pages/ForgotPassword.tsx -------------------------------------------------------------------------------- /src/ui/Auth/pages/SignIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/pages/SignIn.tsx -------------------------------------------------------------------------------- /src/ui/Auth/pages/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/Auth/pages/SignUp.tsx -------------------------------------------------------------------------------- /src/ui/NativeAuth/NativeAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/NativeAuth/NativeAuth.tsx -------------------------------------------------------------------------------- /src/ui/NativeAuth/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/NativeAuth/components.tsx -------------------------------------------------------------------------------- /src/ui/NativeAuth/pages/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/NativeAuth/pages/ForgotPassword.tsx -------------------------------------------------------------------------------- /src/ui/NativeAuth/pages/SignIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/NativeAuth/pages/SignIn.tsx -------------------------------------------------------------------------------- /src/ui/NativeAuth/pages/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/NativeAuth/pages/SignUp.tsx -------------------------------------------------------------------------------- /src/ui/ReactNative.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/ReactNative.tsx -------------------------------------------------------------------------------- /src/ui/themes/material.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/themes/material.ts -------------------------------------------------------------------------------- /src/ui/themes/minimal-dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/themes/minimal-dark.ts -------------------------------------------------------------------------------- /src/ui/themes/minimal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/themes/minimal.ts -------------------------------------------------------------------------------- /src/ui/uiTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/uiTypes.ts -------------------------------------------------------------------------------- /src/ui/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/ui/utils.tsx -------------------------------------------------------------------------------- /src/useEasybase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/src/useEasybase.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easybase/easybase-react/HEAD/typedoc.json --------------------------------------------------------------------------------