├── .commitlintrc.json ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .release-it.json ├── .watchmanconfig ├── LICENSE ├── docs ├── .nojekyll ├── README.md ├── interfaces │ ├── IOverlayComponentProps.md │ ├── IUseWalkthroughStep.md │ ├── IWalkthroughCallback.md │ ├── IWalkthroughContext.md │ ├── IWalkthroughFunctions.md │ ├── IWalkthroughProvider.md │ ├── IWalkthroughStep.md │ └── IWalkthroughStepMask.md └── modules.md ├── package.json ├── src └── index.tsx ├── tsconfig.build.json └── tsconfig.json /.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/.commitlintrc.json -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | web-build/ 3 | 4 | # generated by bob 5 | lib/ 6 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/** -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/.prettierrc -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/.release-it.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/.watchmanconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/interfaces/IOverlayComponentProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/docs/interfaces/IOverlayComponentProps.md -------------------------------------------------------------------------------- /docs/interfaces/IUseWalkthroughStep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/docs/interfaces/IUseWalkthroughStep.md -------------------------------------------------------------------------------- /docs/interfaces/IWalkthroughCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/docs/interfaces/IWalkthroughCallback.md -------------------------------------------------------------------------------- /docs/interfaces/IWalkthroughContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/docs/interfaces/IWalkthroughContext.md -------------------------------------------------------------------------------- /docs/interfaces/IWalkthroughFunctions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/docs/interfaces/IWalkthroughFunctions.md -------------------------------------------------------------------------------- /docs/interfaces/IWalkthroughProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/docs/interfaces/IWalkthroughProvider.md -------------------------------------------------------------------------------- /docs/interfaces/IWalkthroughStep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/docs/interfaces/IWalkthroughStep.md -------------------------------------------------------------------------------- /docs/interfaces/IWalkthroughStepMask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/docs/interfaces/IWalkthroughStepMask.md -------------------------------------------------------------------------------- /docs/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/docs/modules.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/package.json -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribefyhq/react-native-interactive-walkthrough/HEAD/tsconfig.json --------------------------------------------------------------------------------