├── .gitignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── Documentation.md ├── LICENSE.md ├── NOTICE.txt ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── blog_posts.png ├── contributors ├── AlexandreRieux.txt ├── JamieCopeland.txt └── MarcoLanaro.txt ├── demo ├── .gitignore ├── README.md ├── deploy.js ├── index.ejs ├── package.json ├── src │ ├── colors.ts │ ├── components │ │ ├── CardCSS │ │ │ ├── CardCSS.css │ │ │ └── CardCSS.tsx │ │ ├── CardInlineStyles │ │ │ ├── CardInlineStyles.styles.ts │ │ │ └── CardInlineStyles.tsx │ │ ├── CardStyledComponents │ │ │ ├── CardStyledComponents.styles.ts │ │ │ └── CardStyledComponents.tsx │ │ ├── cardCode.tsx │ │ └── cardInline.code.ts │ ├── data.ts │ ├── examples │ │ └── index.tsx │ ├── home │ │ └── index.tsx │ └── index.tsx ├── tsconfig.json └── webpack.config.js ├── jest └── setupTestFrameworkScriptFile.js ├── package.json ├── react-skeletor.gif ├── src ├── __tests__ │ ├── createSkeletonElement.test.tsx │ └── createSkeletonProvider.test.tsx ├── createSkeletonElement.ts ├── createSkeletonProvider.tsx ├── index.ts └── utils.ts ├── test.config.json ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | npm-debug.log -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## Version 0.1.0 2 | - First release 3 | -------------------------------------------------------------------------------- /Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/Documentation.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/README.md -------------------------------------------------------------------------------- /blog_posts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/blog_posts.png -------------------------------------------------------------------------------- /contributors/AlexandreRieux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/contributors/AlexandreRieux.txt -------------------------------------------------------------------------------- /contributors/JamieCopeland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/contributors/JamieCopeland.txt -------------------------------------------------------------------------------- /contributors/MarcoLanaro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/contributors/MarcoLanaro.txt -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | dist 4 | -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/deploy.js -------------------------------------------------------------------------------- /demo/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/index.ejs -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/src/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/src/colors.ts -------------------------------------------------------------------------------- /demo/src/components/CardCSS/CardCSS.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/src/components/CardCSS/CardCSS.css -------------------------------------------------------------------------------- /demo/src/components/CardCSS/CardCSS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/src/components/CardCSS/CardCSS.tsx -------------------------------------------------------------------------------- /demo/src/components/CardInlineStyles/CardInlineStyles.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/src/components/CardInlineStyles/CardInlineStyles.styles.ts -------------------------------------------------------------------------------- /demo/src/components/CardInlineStyles/CardInlineStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/src/components/CardInlineStyles/CardInlineStyles.tsx -------------------------------------------------------------------------------- /demo/src/components/CardStyledComponents/CardStyledComponents.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/src/components/CardStyledComponents/CardStyledComponents.styles.ts -------------------------------------------------------------------------------- /demo/src/components/CardStyledComponents/CardStyledComponents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/src/components/CardStyledComponents/CardStyledComponents.tsx -------------------------------------------------------------------------------- /demo/src/components/cardCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/src/components/cardCode.tsx -------------------------------------------------------------------------------- /demo/src/components/cardInline.code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/src/components/cardInline.code.ts -------------------------------------------------------------------------------- /demo/src/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/src/data.ts -------------------------------------------------------------------------------- /demo/src/examples/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/src/examples/index.tsx -------------------------------------------------------------------------------- /demo/src/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/src/home/index.tsx -------------------------------------------------------------------------------- /demo/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/src/index.tsx -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/demo/webpack.config.js -------------------------------------------------------------------------------- /jest/setupTestFrameworkScriptFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/jest/setupTestFrameworkScriptFile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/package.json -------------------------------------------------------------------------------- /react-skeletor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/react-skeletor.gif -------------------------------------------------------------------------------- /src/__tests__/createSkeletonElement.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/src/__tests__/createSkeletonElement.test.tsx -------------------------------------------------------------------------------- /src/__tests__/createSkeletonProvider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/src/__tests__/createSkeletonProvider.test.tsx -------------------------------------------------------------------------------- /src/createSkeletonElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/src/createSkeletonElement.ts -------------------------------------------------------------------------------- /src/createSkeletonProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/src/createSkeletonProvider.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/test.config.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trainline/react-skeletor/HEAD/tslint.json --------------------------------------------------------------------------------