├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .flowconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── __sdk__.js ├── babel.config.json ├── demo └── dev │ ├── auth-button.htm │ ├── auth.htm │ └── index.htm ├── dist └── button.js ├── fastpublish.sh ├── globals.js ├── jest.config.js ├── karma.conf.js ├── package.json ├── paypal.dev.js ├── quickbuild.sh ├── scripts ├── postversion.sh ├── preversion.sh ├── publish.sh └── version.sh ├── src ├── constants │ ├── button.js │ ├── class.js │ ├── index.js │ └── misc.js ├── declarations.js ├── interface │ └── button.js ├── types.js ├── ui │ ├── button │ │ ├── button.jsx │ │ ├── content.jsx │ │ ├── index.js │ │ ├── props.js │ │ ├── style.jsx │ │ └── styles │ │ │ ├── base.js │ │ │ ├── button.js │ │ │ ├── color.js │ │ │ ├── index.js │ │ │ ├── labels.js │ │ │ └── page.js │ ├── index.js │ └── text.jsx └── zoid │ ├── auth │ ├── component.jsx │ ├── config.js │ ├── index.js │ └── props.js │ └── button │ ├── component.jsx │ ├── container.jsx │ ├── index.js │ ├── prerender.jsx │ └── util.js ├── test ├── declarations.js ├── globals.js ├── integration │ ├── globals.js │ ├── index.js │ ├── tests │ │ ├── auth-button │ │ │ ├── happy.js │ │ │ └── index.js │ │ ├── auth │ │ │ ├── happy.js │ │ │ └── index.js │ │ ├── common.js │ │ └── index.js │ └── windows │ │ ├── auth-button │ │ ├── index.htm │ │ └── index.jsx │ │ └── auth │ │ ├── index.htm │ │ └── index.js ├── paypal.js ├── screenshot │ ├── config.js │ ├── images │ │ ├── .gitignore │ │ ├── 2vlkh0vleVMEBb6wZFXK0QJepMbWkbUieopkB24S0.png │ │ ├── C3SLeNGoiQQKgwofKdr9sgM4cOCXkaRkcvy7IxgS3As.png │ │ ├── CsJYBj3au659FbqbyxLQVvXUOyOhoXohbcjIkjhutE.png │ │ ├── DBHOhPEB3MRnpJk19kNkmpecsUSgbvMjTpqmn1tKA.png │ │ ├── DsUN8cYQuCHNdlsxoKQvOEfm0vEX3RRPvZxVxUNm0.png │ │ ├── MzUYaejc2FcSYxrpmL2fb5SYonmjgjL37LjPHdpBw-old.png │ │ ├── MzUYaejc2FcSYxrpmL2fb5SYonmjgjL37LjPHdpBw.png │ │ ├── NHKmFwjtI8mnc2oxJNxW8XU0DkC4eAl64T1SRucUWk.png │ │ ├── Pk3XpaQ0EwN6U0XDvHXYXB41jQ8xJ6eDFZkHa6qZD0-old.png │ │ ├── Pk3XpaQ0EwN6U0XDvHXYXB41jQ8xJ6eDFZkHa6qZD0.png │ │ ├── RgQpbeWdfmBAWaGP2pDGfG1CZA9bHj5w28qk0aKRfLI.png │ │ ├── Z1SPo7rtJZGtpR7iMBF7vEUk2IYRKRv4afgaTJTJok.png │ │ ├── dAQHuROVVFMiC0G6fOmJ4f7rSTbFmSiW2X7ENVBpkp8.png │ │ ├── dbgfzvqCkAyVaRMQrTFqzR9nVSAm946h9GM6V0JK8-old.png │ │ ├── dbgfzvqCkAyVaRMQrTFqzR9nVSAm946h9GM6V0JK8.png │ │ ├── iDypdcn53DtbYNSCnf072pqZBUa1F7oIITXVeo1cPaI.png │ │ ├── saFLW6K3zJ7CdkbHn4g922KkP0BYNmQfmZdr69x85w-old.png │ │ ├── saFLW6K3zJ7CdkbHn4g922KkP0BYNmQfmZdr69x85w.png │ │ ├── ui117AG7G3f4ZTgzldSE2vgvgPAyeqo4jkrBpE6A-old.png │ │ ├── ui117AG7G3f4ZTgzldSE2vgvgPAyeqo4jkrBpE6A.png │ │ ├── wj5cJU8DIbSmdjApSxFeZy0WLrxKJUFFu5b3O094-old.png │ │ ├── wj5cJU8DIbSmdjApSxFeZy0WLrxKJUFFu5b3O094.png │ │ └── z3wsNI7L010mfCBgVOOWWY7o0iiNjVZvFNr4AmKsZBM.png │ ├── lib │ │ ├── browser.js │ │ ├── compile.js │ │ ├── image.js │ │ └── util.js │ └── screenshot.test.js └── ssr │ └── ssr.test.js ├── webpack.config.dev.js ├── webpack.config.js └── webpack.config.size.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | test/integration/vendor 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/SECURITY.md -------------------------------------------------------------------------------- /__sdk__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/__sdk__.js -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/babel.config.json -------------------------------------------------------------------------------- /demo/dev/auth-button.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/demo/dev/auth-button.htm -------------------------------------------------------------------------------- /demo/dev/auth.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/demo/dev/auth.htm -------------------------------------------------------------------------------- /demo/dev/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/demo/dev/index.htm -------------------------------------------------------------------------------- /dist/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/dist/button.js -------------------------------------------------------------------------------- /fastpublish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/fastpublish.sh -------------------------------------------------------------------------------- /globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/globals.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/jest.config.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/package.json -------------------------------------------------------------------------------- /paypal.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/paypal.dev.js -------------------------------------------------------------------------------- /quickbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/quickbuild.sh -------------------------------------------------------------------------------- /scripts/postversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/scripts/postversion.sh -------------------------------------------------------------------------------- /scripts/preversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/scripts/preversion.sh -------------------------------------------------------------------------------- /scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/scripts/publish.sh -------------------------------------------------------------------------------- /scripts/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/scripts/version.sh -------------------------------------------------------------------------------- /src/constants/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/constants/button.js -------------------------------------------------------------------------------- /src/constants/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/constants/class.js -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/constants/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/constants/misc.js -------------------------------------------------------------------------------- /src/declarations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/declarations.js -------------------------------------------------------------------------------- /src/interface/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/interface/button.js -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/types.js -------------------------------------------------------------------------------- /src/ui/button/button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/ui/button/button.jsx -------------------------------------------------------------------------------- /src/ui/button/content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/ui/button/content.jsx -------------------------------------------------------------------------------- /src/ui/button/index.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | export * from "./button"; 4 | -------------------------------------------------------------------------------- /src/ui/button/props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/ui/button/props.js -------------------------------------------------------------------------------- /src/ui/button/style.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/ui/button/style.jsx -------------------------------------------------------------------------------- /src/ui/button/styles/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/ui/button/styles/base.js -------------------------------------------------------------------------------- /src/ui/button/styles/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/ui/button/styles/button.js -------------------------------------------------------------------------------- /src/ui/button/styles/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/ui/button/styles/color.js -------------------------------------------------------------------------------- /src/ui/button/styles/index.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | export { componentStyle } from "./base"; 4 | -------------------------------------------------------------------------------- /src/ui/button/styles/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/ui/button/styles/labels.js -------------------------------------------------------------------------------- /src/ui/button/styles/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/ui/button/styles/page.js -------------------------------------------------------------------------------- /src/ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/ui/index.js -------------------------------------------------------------------------------- /src/ui/text.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/ui/text.jsx -------------------------------------------------------------------------------- /src/zoid/auth/component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/zoid/auth/component.jsx -------------------------------------------------------------------------------- /src/zoid/auth/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/zoid/auth/config.js -------------------------------------------------------------------------------- /src/zoid/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/zoid/auth/index.js -------------------------------------------------------------------------------- /src/zoid/auth/props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/zoid/auth/props.js -------------------------------------------------------------------------------- /src/zoid/button/component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/zoid/button/component.jsx -------------------------------------------------------------------------------- /src/zoid/button/container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/zoid/button/container.jsx -------------------------------------------------------------------------------- /src/zoid/button/index.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | export * from "./component"; 4 | -------------------------------------------------------------------------------- /src/zoid/button/prerender.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/zoid/button/prerender.jsx -------------------------------------------------------------------------------- /src/zoid/button/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/src/zoid/button/util.js -------------------------------------------------------------------------------- /test/declarations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/declarations.js -------------------------------------------------------------------------------- /test/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/globals.js -------------------------------------------------------------------------------- /test/integration/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/integration/globals.js -------------------------------------------------------------------------------- /test/integration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/integration/index.js -------------------------------------------------------------------------------- /test/integration/tests/auth-button/happy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/integration/tests/auth-button/happy.js -------------------------------------------------------------------------------- /test/integration/tests/auth-button/index.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | import "./happy"; 4 | -------------------------------------------------------------------------------- /test/integration/tests/auth/happy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/integration/tests/auth/happy.js -------------------------------------------------------------------------------- /test/integration/tests/auth/index.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | import "./happy"; 4 | -------------------------------------------------------------------------------- /test/integration/tests/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/integration/tests/common.js -------------------------------------------------------------------------------- /test/integration/tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/integration/tests/index.js -------------------------------------------------------------------------------- /test/integration/windows/auth-button/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/integration/windows/auth-button/index.htm -------------------------------------------------------------------------------- /test/integration/windows/auth-button/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/integration/windows/auth-button/index.jsx -------------------------------------------------------------------------------- /test/integration/windows/auth/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/integration/windows/auth/index.htm -------------------------------------------------------------------------------- /test/integration/windows/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/integration/windows/auth/index.js -------------------------------------------------------------------------------- /test/paypal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/paypal.js -------------------------------------------------------------------------------- /test/screenshot/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/config.js -------------------------------------------------------------------------------- /test/screenshot/images/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/screenshot/images/2vlkh0vleVMEBb6wZFXK0QJepMbWkbUieopkB24S0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/2vlkh0vleVMEBb6wZFXK0QJepMbWkbUieopkB24S0.png -------------------------------------------------------------------------------- /test/screenshot/images/C3SLeNGoiQQKgwofKdr9sgM4cOCXkaRkcvy7IxgS3As.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/C3SLeNGoiQQKgwofKdr9sgM4cOCXkaRkcvy7IxgS3As.png -------------------------------------------------------------------------------- /test/screenshot/images/CsJYBj3au659FbqbyxLQVvXUOyOhoXohbcjIkjhutE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/CsJYBj3au659FbqbyxLQVvXUOyOhoXohbcjIkjhutE.png -------------------------------------------------------------------------------- /test/screenshot/images/DBHOhPEB3MRnpJk19kNkmpecsUSgbvMjTpqmn1tKA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/DBHOhPEB3MRnpJk19kNkmpecsUSgbvMjTpqmn1tKA.png -------------------------------------------------------------------------------- /test/screenshot/images/DsUN8cYQuCHNdlsxoKQvOEfm0vEX3RRPvZxVxUNm0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/DsUN8cYQuCHNdlsxoKQvOEfm0vEX3RRPvZxVxUNm0.png -------------------------------------------------------------------------------- /test/screenshot/images/MzUYaejc2FcSYxrpmL2fb5SYonmjgjL37LjPHdpBw-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/MzUYaejc2FcSYxrpmL2fb5SYonmjgjL37LjPHdpBw-old.png -------------------------------------------------------------------------------- /test/screenshot/images/MzUYaejc2FcSYxrpmL2fb5SYonmjgjL37LjPHdpBw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/MzUYaejc2FcSYxrpmL2fb5SYonmjgjL37LjPHdpBw.png -------------------------------------------------------------------------------- /test/screenshot/images/NHKmFwjtI8mnc2oxJNxW8XU0DkC4eAl64T1SRucUWk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/NHKmFwjtI8mnc2oxJNxW8XU0DkC4eAl64T1SRucUWk.png -------------------------------------------------------------------------------- /test/screenshot/images/Pk3XpaQ0EwN6U0XDvHXYXB41jQ8xJ6eDFZkHa6qZD0-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/Pk3XpaQ0EwN6U0XDvHXYXB41jQ8xJ6eDFZkHa6qZD0-old.png -------------------------------------------------------------------------------- /test/screenshot/images/Pk3XpaQ0EwN6U0XDvHXYXB41jQ8xJ6eDFZkHa6qZD0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/Pk3XpaQ0EwN6U0XDvHXYXB41jQ8xJ6eDFZkHa6qZD0.png -------------------------------------------------------------------------------- /test/screenshot/images/RgQpbeWdfmBAWaGP2pDGfG1CZA9bHj5w28qk0aKRfLI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/RgQpbeWdfmBAWaGP2pDGfG1CZA9bHj5w28qk0aKRfLI.png -------------------------------------------------------------------------------- /test/screenshot/images/Z1SPo7rtJZGtpR7iMBF7vEUk2IYRKRv4afgaTJTJok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/Z1SPo7rtJZGtpR7iMBF7vEUk2IYRKRv4afgaTJTJok.png -------------------------------------------------------------------------------- /test/screenshot/images/dAQHuROVVFMiC0G6fOmJ4f7rSTbFmSiW2X7ENVBpkp8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/dAQHuROVVFMiC0G6fOmJ4f7rSTbFmSiW2X7ENVBpkp8.png -------------------------------------------------------------------------------- /test/screenshot/images/dbgfzvqCkAyVaRMQrTFqzR9nVSAm946h9GM6V0JK8-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/dbgfzvqCkAyVaRMQrTFqzR9nVSAm946h9GM6V0JK8-old.png -------------------------------------------------------------------------------- /test/screenshot/images/dbgfzvqCkAyVaRMQrTFqzR9nVSAm946h9GM6V0JK8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/dbgfzvqCkAyVaRMQrTFqzR9nVSAm946h9GM6V0JK8.png -------------------------------------------------------------------------------- /test/screenshot/images/iDypdcn53DtbYNSCnf072pqZBUa1F7oIITXVeo1cPaI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/iDypdcn53DtbYNSCnf072pqZBUa1F7oIITXVeo1cPaI.png -------------------------------------------------------------------------------- /test/screenshot/images/saFLW6K3zJ7CdkbHn4g922KkP0BYNmQfmZdr69x85w-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/saFLW6K3zJ7CdkbHn4g922KkP0BYNmQfmZdr69x85w-old.png -------------------------------------------------------------------------------- /test/screenshot/images/saFLW6K3zJ7CdkbHn4g922KkP0BYNmQfmZdr69x85w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/saFLW6K3zJ7CdkbHn4g922KkP0BYNmQfmZdr69x85w.png -------------------------------------------------------------------------------- /test/screenshot/images/ui117AG7G3f4ZTgzldSE2vgvgPAyeqo4jkrBpE6A-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/ui117AG7G3f4ZTgzldSE2vgvgPAyeqo4jkrBpE6A-old.png -------------------------------------------------------------------------------- /test/screenshot/images/ui117AG7G3f4ZTgzldSE2vgvgPAyeqo4jkrBpE6A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/ui117AG7G3f4ZTgzldSE2vgvgPAyeqo4jkrBpE6A.png -------------------------------------------------------------------------------- /test/screenshot/images/wj5cJU8DIbSmdjApSxFeZy0WLrxKJUFFu5b3O094-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/wj5cJU8DIbSmdjApSxFeZy0WLrxKJUFFu5b3O094-old.png -------------------------------------------------------------------------------- /test/screenshot/images/wj5cJU8DIbSmdjApSxFeZy0WLrxKJUFFu5b3O094.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/wj5cJU8DIbSmdjApSxFeZy0WLrxKJUFFu5b3O094.png -------------------------------------------------------------------------------- /test/screenshot/images/z3wsNI7L010mfCBgVOOWWY7o0iiNjVZvFNr4AmKsZBM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/images/z3wsNI7L010mfCBgVOOWWY7o0iiNjVZvFNr4AmKsZBM.png -------------------------------------------------------------------------------- /test/screenshot/lib/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/lib/browser.js -------------------------------------------------------------------------------- /test/screenshot/lib/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/lib/compile.js -------------------------------------------------------------------------------- /test/screenshot/lib/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/lib/image.js -------------------------------------------------------------------------------- /test/screenshot/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/lib/util.js -------------------------------------------------------------------------------- /test/screenshot/screenshot.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/screenshot/screenshot.test.js -------------------------------------------------------------------------------- /test/ssr/ssr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/test/ssr/ssr.test.js -------------------------------------------------------------------------------- /webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/webpack.config.dev.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/paypal-identity-components/HEAD/webpack.config.size.js --------------------------------------------------------------------------------