├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ ├── dependabot.yml │ └── main.yml ├── .gitignore ├── .npmignore ├── .percy.yml ├── .prettierignore ├── .prettierrc.js ├── .release-it.json ├── .template-lintrc.js ├── .watchmanconfig ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── addon ├── .gitkeep └── components │ ├── content-loader.hbs │ └── content-loader.js ├── app ├── .gitkeep └── components │ └── content-loader.js ├── config ├── deploy.js ├── ember-try.js └── environment.js ├── ember-cli-build.js ├── index.js ├── package.json ├── testem.js ├── tests ├── dummy │ ├── app │ │ ├── app.js │ │ ├── components │ │ │ ├── .gitkeep │ │ │ ├── bullet-list-example.hbs │ │ │ ├── code-example.hbs │ │ │ ├── complex-example.hbs │ │ │ ├── facebook-example.hbs │ │ │ ├── instagram-example.hbs │ │ │ └── list-example.hbs │ │ ├── controllers │ │ │ ├── .gitkeep │ │ │ └── docs │ │ │ │ └── known-issues.js │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── index.html │ │ ├── models │ │ │ └── .gitkeep │ │ ├── router.js │ │ ├── routes │ │ │ ├── .gitkeep │ │ │ ├── docs.js │ │ │ └── docs │ │ │ │ ├── components.js │ │ │ │ ├── components │ │ │ │ └── content-loader.js │ │ │ │ ├── examples.js │ │ │ │ ├── index.js │ │ │ │ ├── known-issues.js │ │ │ │ └── usage.js │ │ ├── styles │ │ │ └── app.css │ │ └── templates │ │ │ ├── application.hbs │ │ │ ├── components.hbs │ │ │ ├── docs.hbs │ │ │ ├── docs │ │ │ ├── components │ │ │ │ └── content-loader.hbs │ │ │ ├── examples.hbs │ │ │ ├── index.hbs │ │ │ ├── known-issues.hbs │ │ │ └── usage.hbs │ │ │ └── index.hbs │ ├── config │ │ ├── ember-cli-update.json │ │ ├── environment.js │ │ ├── optional-features.json │ │ └── targets.js │ └── public │ │ └── robots.txt ├── helpers │ └── .gitkeep ├── index.html ├── integration │ ├── .gitkeep │ └── components │ │ └── content-loader-test.js ├── test-helper.js └── unit │ └── .gitkeep └── vendor └── .gitkeep /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.ember-cli -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.github/workflows/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.npmignore -------------------------------------------------------------------------------- /.percy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.percy.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.release-it.json -------------------------------------------------------------------------------- /.template-lintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/.template-lintrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @concordnow/frontend 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/README.md -------------------------------------------------------------------------------- /addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/components/content-loader.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/addon/components/content-loader.hbs -------------------------------------------------------------------------------- /addon/components/content-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/addon/components/content-loader.js -------------------------------------------------------------------------------- /app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/content-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/app/components/content-loader.js -------------------------------------------------------------------------------- /config/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/config/deploy.js -------------------------------------------------------------------------------- /config/ember-try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/config/ember-try.js -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/config/environment.js -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name, 5 | }; 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/package.json -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/testem.js -------------------------------------------------------------------------------- /tests/dummy/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/app.js -------------------------------------------------------------------------------- /tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/components/bullet-list-example.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/components/bullet-list-example.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/code-example.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/components/code-example.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/complex-example.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/components/complex-example.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/facebook-example.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/components/facebook-example.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/instagram-example.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/components/instagram-example.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/list-example.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/components/list-example.hbs -------------------------------------------------------------------------------- /tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/controllers/docs/known-issues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/controllers/docs/known-issues.js -------------------------------------------------------------------------------- /tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/index.html -------------------------------------------------------------------------------- /tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/router.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/routes/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/routes/docs.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/docs/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/routes/docs/components.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/docs/components/content-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/routes/docs/components/content-loader.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/docs/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/routes/docs/examples.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/routes/docs/index.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/docs/known-issues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/routes/docs/known-issues.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/docs/usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/routes/docs/usage.js -------------------------------------------------------------------------------- /tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --brand-primary: #03A9F4; 3 | } 4 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/templates/application.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/components.hbs: -------------------------------------------------------------------------------- 1 | {{page-title "Components"}} 2 | {{outlet}} -------------------------------------------------------------------------------- /tests/dummy/app/templates/docs.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/templates/docs.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/docs/components/content-loader.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/templates/docs/components/content-loader.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/docs/examples.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/templates/docs/examples.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/docs/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/templates/docs/index.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/docs/known-issues.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/templates/docs/known-issues.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/docs/usage.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/templates/docs/usage.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/app/templates/index.hbs -------------------------------------------------------------------------------- /tests/dummy/config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/config/ember-cli-update.json -------------------------------------------------------------------------------- /tests/dummy/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/config/environment.js -------------------------------------------------------------------------------- /tests/dummy/config/optional-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/config/optional-features.json -------------------------------------------------------------------------------- /tests/dummy/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/dummy/config/targets.js -------------------------------------------------------------------------------- /tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/components/content-loader-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/integration/components/content-loader-test.js -------------------------------------------------------------------------------- /tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concordnow/ember-content-loader/HEAD/tests/test-helper.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------