├── .circleci └── config.yml ├── .gitignore ├── .gitmodules ├── README.md ├── copy-readme.js ├── demo ├── .eslintrc.js ├── package.json └── src │ └── pages │ ├── 404.js │ └── index.js ├── netlify.toml ├── package.json ├── react-svg-bubble-slider ├── .eslintignore ├── .eslintrc.js ├── .prettierignore ├── .prettierrc.js ├── .storybook │ ├── customTheme.js │ ├── main.js │ ├── manager-head.html │ ├── manager.js │ ├── preview-body.html │ └── preview.js ├── DEV_README.md ├── LICENSE ├── README.md ├── babel-config.js ├── jest.config.js ├── package.json ├── public │ ├── .DS_Store │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── logo.svg │ └── react-svg-bubble-slider-og-image.jpg ├── src │ ├── .DS_Store │ ├── _docs │ │ ├── 1.intro.stories.mdx │ │ ├── 2.icons.stories.mdx │ │ ├── IconCount.js │ │ ├── SvgBubbleSlider.stories.tsx │ │ └── SvgIcon.stories.tsx │ ├── components │ │ ├── SvgBubbleSlider │ │ │ ├── Defs.tsx │ │ │ ├── Path.tsx │ │ │ ├── PopLines.tsx │ │ │ ├── SpeechBubble.tsx │ │ │ ├── SvgBubbleSlider.test.tsx │ │ │ ├── SvgBubbleSlider.tsx │ │ │ ├── Timeline.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── SvgBubbleSlider.test.tsx.snap │ │ │ ├── iconPaths.ts │ │ │ └── index.ts │ │ ├── SvgIcon │ │ │ ├── SvgIcon.test.tsx │ │ │ ├── SvgIcon.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── SvgIcon.test.tsx.snap │ │ │ └── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── global.d.ts │ ├── index.ts │ └── theme │ │ └── index.ts ├── test │ └── jest │ │ └── __mocks__ │ │ └── fileMock.js ├── tsconfig.json ├── webpack.config.js └── yarn.lock └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/README.md -------------------------------------------------------------------------------- /copy-readme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/copy-readme.js -------------------------------------------------------------------------------- /demo/.eslintrc.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/demo/src/pages/404.js -------------------------------------------------------------------------------- /demo/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/demo/src/pages/index.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | publish = "react-svg-bubble-slider/storybook-static" -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/package.json -------------------------------------------------------------------------------- /react-svg-bubble-slider/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/.eslintignore -------------------------------------------------------------------------------- /react-svg-bubble-slider/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/.eslintrc.js -------------------------------------------------------------------------------- /react-svg-bubble-slider/.prettierignore: -------------------------------------------------------------------------------- 1 | storybook-static 2 | dist 3 | src/gsap -------------------------------------------------------------------------------- /react-svg-bubble-slider/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/.prettierrc.js -------------------------------------------------------------------------------- /react-svg-bubble-slider/.storybook/customTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/.storybook/customTheme.js -------------------------------------------------------------------------------- /react-svg-bubble-slider/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/.storybook/main.js -------------------------------------------------------------------------------- /react-svg-bubble-slider/.storybook/manager-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/.storybook/manager-head.html -------------------------------------------------------------------------------- /react-svg-bubble-slider/.storybook/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/.storybook/manager.js -------------------------------------------------------------------------------- /react-svg-bubble-slider/.storybook/preview-body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/.storybook/preview-body.html -------------------------------------------------------------------------------- /react-svg-bubble-slider/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/.storybook/preview.js -------------------------------------------------------------------------------- /react-svg-bubble-slider/DEV_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/DEV_README.md -------------------------------------------------------------------------------- /react-svg-bubble-slider/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/LICENSE -------------------------------------------------------------------------------- /react-svg-bubble-slider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/README.md -------------------------------------------------------------------------------- /react-svg-bubble-slider/babel-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/babel-config.js -------------------------------------------------------------------------------- /react-svg-bubble-slider/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/jest.config.js -------------------------------------------------------------------------------- /react-svg-bubble-slider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/package.json -------------------------------------------------------------------------------- /react-svg-bubble-slider/public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/public/.DS_Store -------------------------------------------------------------------------------- /react-svg-bubble-slider/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/public/favicon-16x16.png -------------------------------------------------------------------------------- /react-svg-bubble-slider/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/public/favicon-32x32.png -------------------------------------------------------------------------------- /react-svg-bubble-slider/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/public/favicon.ico -------------------------------------------------------------------------------- /react-svg-bubble-slider/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/public/logo.svg -------------------------------------------------------------------------------- /react-svg-bubble-slider/public/react-svg-bubble-slider-og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/public/react-svg-bubble-slider-og-image.jpg -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/.DS_Store -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/_docs/1.intro.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/_docs/1.intro.stories.mdx -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/_docs/2.icons.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/_docs/2.icons.stories.mdx -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/_docs/IconCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/_docs/IconCount.js -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/_docs/SvgBubbleSlider.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/_docs/SvgBubbleSlider.stories.tsx -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/_docs/SvgIcon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/_docs/SvgIcon.stories.tsx -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgBubbleSlider/Defs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgBubbleSlider/Defs.tsx -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgBubbleSlider/Path.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgBubbleSlider/Path.tsx -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgBubbleSlider/PopLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgBubbleSlider/PopLines.tsx -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgBubbleSlider/SpeechBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgBubbleSlider/SpeechBubble.tsx -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgBubbleSlider/SvgBubbleSlider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgBubbleSlider/SvgBubbleSlider.test.tsx -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgBubbleSlider/SvgBubbleSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgBubbleSlider/SvgBubbleSlider.tsx -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgBubbleSlider/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgBubbleSlider/Timeline.tsx -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgBubbleSlider/__snapshots__/SvgBubbleSlider.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgBubbleSlider/__snapshots__/SvgBubbleSlider.test.tsx.snap -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgBubbleSlider/iconPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgBubbleSlider/iconPaths.ts -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgBubbleSlider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgBubbleSlider/index.ts -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgIcon/SvgIcon.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgIcon/SvgIcon.test.tsx -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgIcon/SvgIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgIcon/SvgIcon.tsx -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgIcon/__snapshots__/SvgIcon.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgIcon/__snapshots__/SvgIcon.test.tsx.snap -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/SvgIcon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/SvgIcon/index.ts -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/types.ts -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/components/utils.ts -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/global.d.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom/extend-expect' 2 | -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/index.ts -------------------------------------------------------------------------------- /react-svg-bubble-slider/src/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/src/theme/index.ts -------------------------------------------------------------------------------- /react-svg-bubble-slider/test/jest/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {} 2 | -------------------------------------------------------------------------------- /react-svg-bubble-slider/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/tsconfig.json -------------------------------------------------------------------------------- /react-svg-bubble-slider/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/webpack.config.js -------------------------------------------------------------------------------- /react-svg-bubble-slider/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/react-svg-bubble-slider/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulieScanlon/react-svg-bubble-slider/HEAD/yarn.lock --------------------------------------------------------------------------------