├── .eslintignore ├── .eslintrc.js ├── .github ├── gifs │ ├── group_gif.gif │ ├── max_lines_gif.gif │ ├── min_font_size.gif.gif │ ├── overflow_replacement.gif.gif │ ├── preset_font_sizes_gif.gif │ └── step_granularity_gif.gif └── workflows │ └── pull_request.yml ├── .gitignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── babel.config.js ├── example ├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── 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 │ │ │ ├── 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 │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── example.xcscheme │ ├── example.xcworkspace │ │ └── contents.xcworkspacedata │ ├── example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ └── exampleTests │ │ ├── Info.plist │ │ └── exampleTests.m ├── metro.config.js ├── package.json ├── tsconfig.json └── yarn.lock ├── package.json ├── src ├── __tests__ │ ├── AutoSizeText.spec.tsx │ ├── Group.spec.tsx │ ├── MaxLines.spec.tsx │ ├── MinFontSize.spec.tsx │ ├── OverflowReplacement.spec.tsx │ ├── PresetFontSizes.spec.tsx │ ├── StepGranularity.spec.tsx │ └── __snapshots__ │ │ ├── AutoSizeText.spec.tsx.snap │ │ ├── Group.spec.tsx.snap │ │ ├── MaxLines.spec.tsx.snap │ │ ├── MinFontSize.spec.tsx.snap │ │ ├── OverflowReplacement.spec.tsx.snap │ │ ├── PresetFontSizes.spec.tsx.snap │ │ └── StepGranularity.spec.tsx.snap ├── components │ ├── Group.tsx │ ├── MaxLines.tsx │ ├── MinFontSize.tsx │ ├── OverflowReplacement.tsx │ ├── PresetFontSizes.tsx │ └── StepGranularity.tsx ├── index.tsx └── types │ └── index.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | example/ 3 | lib/ 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/gifs/group_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/.github/gifs/group_gif.gif -------------------------------------------------------------------------------- /.github/gifs/max_lines_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/.github/gifs/max_lines_gif.gif -------------------------------------------------------------------------------- /.github/gifs/min_font_size.gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/.github/gifs/min_font_size.gif.gif -------------------------------------------------------------------------------- /.github/gifs/overflow_replacement.gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/.github/gifs/overflow_replacement.gif.gif -------------------------------------------------------------------------------- /.github/gifs/preset_font_sizes_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/.github/gifs/preset_font_sizes_gif.gif -------------------------------------------------------------------------------- /.github/gifs/step_granularity_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/.github/gifs/step_granularity_gif.gif -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /example/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/.gitattributes -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/.prettierrc.js -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/App.tsx -------------------------------------------------------------------------------- /example/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/_BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/example/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/debug/java/com/example/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/java/com/example/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/java/com/example/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/example/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/example/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/example/Info.plist -------------------------------------------------------------------------------- /example/ios/example/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/example/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/example/main.m -------------------------------------------------------------------------------- /example/ios/exampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/exampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/exampleTests/exampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/ios/exampleTests/exampleTests.m -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/package.json -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/AutoSizeText.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/AutoSizeText.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/Group.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/Group.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/MaxLines.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/MaxLines.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/MinFontSize.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/MinFontSize.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/OverflowReplacement.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/OverflowReplacement.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/PresetFontSizes.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/PresetFontSizes.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/StepGranularity.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/StepGranularity.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/AutoSizeText.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/__snapshots__/AutoSizeText.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/Group.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/__snapshots__/Group.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/MaxLines.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/__snapshots__/MaxLines.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/MinFontSize.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/__snapshots__/MinFontSize.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/OverflowReplacement.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/__snapshots__/OverflowReplacement.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/PresetFontSizes.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/__snapshots__/PresetFontSizes.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/StepGranularity.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/__tests__/__snapshots__/StepGranularity.spec.tsx.snap -------------------------------------------------------------------------------- /src/components/Group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/components/Group.tsx -------------------------------------------------------------------------------- /src/components/MaxLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/components/MaxLines.tsx -------------------------------------------------------------------------------- /src/components/MinFontSize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/components/MinFontSize.tsx -------------------------------------------------------------------------------- /src/components/OverflowReplacement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/components/OverflowReplacement.tsx -------------------------------------------------------------------------------- /src/components/PresetFontSizes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/components/PresetFontSizes.tsx -------------------------------------------------------------------------------- /src/components/StepGranularity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/components/StepGranularity.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorklawa/react-native-auto-size-text/HEAD/yarn.lock --------------------------------------------------------------------------------