├── .circleci └── config.yml ├── .eslintrc ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmignore ├── .prettierrc ├── ATTRIBUTIONS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── MAINTAINERS.md ├── NOTICE.md ├── README.md ├── SECURITY.md ├── babel.config.cjs ├── example.gif ├── example ├── .bundle │ └── config ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .ruby-version ├── .watchmanconfig ├── App.js ├── Gemfile ├── Gemfile.lock ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── 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 │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── example.xcscheme │ ├── example.xcworkspace │ │ └── contents.xcworkspacedata │ └── example │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── PrivacyInfo.xcprivacy ├── jest.config.js ├── metro.config.js ├── package.json ├── tsconfig.json └── yarn.lock ├── package.json ├── src ├── SegmentedArc.js ├── __tests__ │ ├── SegmentedArc.spec.js │ └── __snapshots__ │ │ └── SegmentedArc.spec.js.snap ├── components │ ├── Cap.js │ ├── DataError.js │ ├── DataErrorRenderer.js │ ├── RangesDisplay.js │ ├── Segment.js │ └── __tests__ │ │ ├── Cap.spec.js │ │ ├── DataError.spec.js │ │ ├── DataErrorRenderer.spec.js │ │ ├── RangesDisplay.spec.js │ │ ├── Segment.spec.js │ │ └── __snapshots__ │ │ ├── Cap.spec.js.snap │ │ ├── DataError.spec.js.snap │ │ ├── RangesDisplay.spec.js.snap │ │ └── Segment.spec.js.snap ├── hooks │ ├── useDataErrorCallback.js │ └── useSegmentedArcWarning.js ├── index.js └── utils │ ├── __tests__ │ ├── __snapshots__ │ │ └── arcHelpers.spec.js.snap │ ├── arcHelpers.spec.js │ ├── numberTransformer.spec.js │ ├── scale.spec.js │ ├── segmentedArcWarnings.spec.js │ └── warningManager.spec.js │ ├── arcHelpers.js │ ├── dataErrorSelectors.js │ ├── numberTransformer.js │ ├── propsValidation.js │ ├── scaleHelpers.js │ ├── segmentedArcErrors.js │ ├── segmentedArcWarnings.js │ └── warningManager.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/.prettierrc -------------------------------------------------------------------------------- /ATTRIBUTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/ATTRIBUTIONS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/SECURITY.md -------------------------------------------------------------------------------- /babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/babel.config.cjs -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example.gif -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/.prettierrc.js -------------------------------------------------------------------------------- /example/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-3.1.4 2 | 3 | -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/App.js -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/Gemfile.lock -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/app/src/main/java/com/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/app/src/main/java/com/example/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/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/shipt/segmented-arc-for-react-native/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/shipt/segmented-arc-for-react-native/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/shipt/segmented-arc-for-react-native/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/shipt/segmented-arc-for-react-native/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/shipt/segmented-arc-for-react-native/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/shipt/segmented-arc-for-react-native/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/shipt/segmented-arc-for-react-native/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/shipt/segmented-arc-for-react-native/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/shipt/segmented-arc-for-react-native/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/shipt/segmented-arc-for-react-native/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/ios/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/ios/example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/ios/example/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/ios/example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/ios/example/Info.plist -------------------------------------------------------------------------------- /example/ios/example/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/ios/example/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/example/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/ios/example/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/package.json -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/package.json -------------------------------------------------------------------------------- /src/SegmentedArc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/SegmentedArc.js -------------------------------------------------------------------------------- /src/__tests__/SegmentedArc.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/__tests__/SegmentedArc.spec.js -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/SegmentedArc.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/__tests__/__snapshots__/SegmentedArc.spec.js.snap -------------------------------------------------------------------------------- /src/components/Cap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/Cap.js -------------------------------------------------------------------------------- /src/components/DataError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/DataError.js -------------------------------------------------------------------------------- /src/components/DataErrorRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/DataErrorRenderer.js -------------------------------------------------------------------------------- /src/components/RangesDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/RangesDisplay.js -------------------------------------------------------------------------------- /src/components/Segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/Segment.js -------------------------------------------------------------------------------- /src/components/__tests__/Cap.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/__tests__/Cap.spec.js -------------------------------------------------------------------------------- /src/components/__tests__/DataError.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/__tests__/DataError.spec.js -------------------------------------------------------------------------------- /src/components/__tests__/DataErrorRenderer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/__tests__/DataErrorRenderer.spec.js -------------------------------------------------------------------------------- /src/components/__tests__/RangesDisplay.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/__tests__/RangesDisplay.spec.js -------------------------------------------------------------------------------- /src/components/__tests__/Segment.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/__tests__/Segment.spec.js -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/Cap.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/__tests__/__snapshots__/Cap.spec.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/DataError.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/__tests__/__snapshots__/DataError.spec.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/RangesDisplay.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/__tests__/__snapshots__/RangesDisplay.spec.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/Segment.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/components/__tests__/__snapshots__/Segment.spec.js.snap -------------------------------------------------------------------------------- /src/hooks/useDataErrorCallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/hooks/useDataErrorCallback.js -------------------------------------------------------------------------------- /src/hooks/useSegmentedArcWarning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/hooks/useSegmentedArcWarning.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/__tests__/__snapshots__/arcHelpers.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/utils/__tests__/__snapshots__/arcHelpers.spec.js.snap -------------------------------------------------------------------------------- /src/utils/__tests__/arcHelpers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/utils/__tests__/arcHelpers.spec.js -------------------------------------------------------------------------------- /src/utils/__tests__/numberTransformer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/utils/__tests__/numberTransformer.spec.js -------------------------------------------------------------------------------- /src/utils/__tests__/scale.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/utils/__tests__/scale.spec.js -------------------------------------------------------------------------------- /src/utils/__tests__/segmentedArcWarnings.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/utils/__tests__/segmentedArcWarnings.spec.js -------------------------------------------------------------------------------- /src/utils/__tests__/warningManager.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/utils/__tests__/warningManager.spec.js -------------------------------------------------------------------------------- /src/utils/arcHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/utils/arcHelpers.js -------------------------------------------------------------------------------- /src/utils/dataErrorSelectors.js: -------------------------------------------------------------------------------- 1 | export const DATA_ERROR_SELECTORS = { 2 | CONTAINER: 'data-error' 3 | }; 4 | -------------------------------------------------------------------------------- /src/utils/numberTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/utils/numberTransformer.js -------------------------------------------------------------------------------- /src/utils/propsValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/utils/propsValidation.js -------------------------------------------------------------------------------- /src/utils/scaleHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/utils/scaleHelpers.js -------------------------------------------------------------------------------- /src/utils/segmentedArcErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/utils/segmentedArcErrors.js -------------------------------------------------------------------------------- /src/utils/segmentedArcWarnings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/utils/segmentedArcWarnings.js -------------------------------------------------------------------------------- /src/utils/warningManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/src/utils/warningManager.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipt/segmented-arc-for-react-native/HEAD/yarn.lock --------------------------------------------------------------------------------