├── .editorconfig ├── .gitattributes ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── KUDOS.md ├── LICENSE ├── README.md ├── angular.json ├── assets └── angular-playground.png ├── azure-pipelines.yml ├── examples └── cli-example │ ├── .angular-playground │ ├── .gitignore │ ├── angular-playground.json │ ├── main.playground.ts │ └── tsconfig.playground.json │ ├── .browserslistrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── ngsw-config.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── __images_snapshots__ │ │ ├── app-feature1-person-bio-component-sandbox-default-1000x800-snap.png │ │ ├── app-feature1-person-bio-component-sandbox-default-401x400-snap.png │ │ ├── app-feature1-person-details-component-sandbox-person-with-name-1000x800-snap.png │ │ ├── app-feature1-person-details-component-sandbox-person-with-name-401x400-snap.png │ │ ├── app-feature2-info-block-component-sandbox-A-general-example-1000x800-snap.png │ │ ├── app-feature2-info-block-component-sandbox-A-general-example-401x400-snap.png │ │ ├── app-feature2-info-block-component-sandbox-A-warning-example-1000x800-snap.png │ │ ├── app-feature2-info-block-component-sandbox-A-warning-example-401x400-snap.png │ │ ├── app-feature2-info-block-component-sandbox-An-error-example-1000x800-snap.png │ │ ├── app-feature2-info-block-component-sandbox-An-error-example-401x400-snap.png │ │ ├── app-feature3-star-rating-component-sandbox-3-stars-1000x800-snap.png │ │ ├── app-feature3-star-rating-component-sandbox-3-stars-401x400-snap.png │ │ ├── app-shared-animated-component-sandbox-default-1000x800-snap.png │ │ ├── app-shared-animated-component-sandbox-default-401x400-snap.png │ │ ├── app-shared-notice-component-sandbox-in-a-green-container-1000x800-snap.png │ │ ├── app-shared-notice-component-sandbox-in-a-green-container-401x400-snap.png │ │ ├── app-shared-notice-component-sandbox-long-text-1000x800-snap.png │ │ ├── app-shared-notice-component-sandbox-long-text-401x400-snap.png │ │ ├── app-shared-notice-component-sandbox-position-absolute-test-1000x800-snap.png │ │ ├── app-shared-notice-component-sandbox-position-absolute-test-401x400-snap.png │ │ ├── app-shared-notice-component-sandbox-short-text-1000x800-snap.png │ │ ├── app-shared-notice-component-sandbox-short-text-401x400-snap.png │ │ ├── app-shared-notice-component-sandbox-with-custom-provider-1000x800-snap.png │ │ ├── app-shared-notice-component-sandbox-with-custom-provider-401x400-snap.png │ │ ├── app-shared-person-bio-component-sandbox-default-1000x800-snap.png │ │ ├── app-shared-person-bio-component-sandbox-default-401x400-snap.png │ │ ├── app-shared-person-bio-component-sandbox-no-message-1000x800-snap.png │ │ └── app-shared-person-bio-component-sandbox-no-message-401x400-snap.png │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── feature1 │ │ │ ├── feature1.module.ts │ │ │ ├── person-bio.component.other.sandbox.ts │ │ │ ├── person-bio.component.sandbox.ts │ │ │ ├── person-bio.component.ts │ │ │ ├── person-block.component.ts │ │ │ ├── person-details.component.sandbox.ts │ │ │ └── person-details.component.ts │ │ ├── feature2 │ │ │ ├── feature2.module.ts │ │ │ ├── info-block.component.sandbox.ts │ │ │ └── info-block.component.ts │ │ ├── feature3 │ │ │ ├── feature3.module.ts │ │ │ ├── star-rating.component.sandbox.ts │ │ │ └── star-rating.component.ts │ │ └── shared │ │ │ ├── animated.component.sandbox.ts │ │ │ ├── animated.component.ts │ │ │ ├── counter.service.ts │ │ │ ├── notice.component.sandbox.ts │ │ │ ├── notice.component.ts │ │ │ ├── person-bio.component.sandbox.ts │ │ │ ├── person-bio.component.ts │ │ │ └── shared.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ └── tslint.json │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── package.json ├── projects ├── cli │ ├── src │ │ ├── build-angular-cli.ts │ │ ├── build-sandboxes.ts │ │ ├── check-errors │ │ │ ├── reporters │ │ │ │ ├── json-reporter.ts │ │ │ │ └── xml-reporter.ts │ │ │ └── verify-sandboxes.ts │ │ ├── check-snapshots.ts │ │ ├── configure.ts │ │ ├── error-reporter.ts │ │ ├── from-dir.ts │ │ ├── index.ts │ │ ├── run.ts │ │ ├── serve-angular-cli.ts │ │ ├── start-watch.ts │ │ ├── string-builder.ts │ │ └── utils.ts │ ├── test │ │ ├── build-sandboxes.spec.ts │ │ ├── configure.spec.ts │ │ ├── error-reporter.spec.ts │ │ ├── files │ │ │ ├── angular-test-config.json │ │ │ ├── empty-config.json │ │ │ ├── from-dir-test-multiple │ │ │ │ ├── sub-dir │ │ │ │ │ ├── sub-dir-2 │ │ │ │ │ │ └── test3.ts │ │ │ │ │ └── test2.ts │ │ │ │ └── test.ts │ │ │ ├── from-dir-test │ │ │ │ ├── node_modules │ │ │ │ │ ├── other.csv │ │ │ │ │ └── somedir │ │ │ │ │ │ └── other.csv │ │ │ │ ├── sub-dir │ │ │ │ │ └── other.csv │ │ │ │ ├── test.json │ │ │ │ ├── test.txt │ │ │ │ └── test2.json │ │ │ ├── sandboxes-2 │ │ │ │ ├── example1.sandbox.ts │ │ │ │ ├── example2.sandbox.ts │ │ │ │ ├── example3.sandbox.ts │ │ │ │ ├── example4.sandbox.ts │ │ │ │ ├── example5.sandbox.ts │ │ │ │ └── example6.sandbox.ts │ │ │ └── sandboxes │ │ │ │ ├── angular-playground.js │ │ │ │ ├── example1.sandbox.ts │ │ │ │ ├── example2.sandbox.ts │ │ │ │ ├── example3.sandbox.ts │ │ │ │ ├── example4.sandbox.ts │ │ │ │ ├── example5.sandbox.ts │ │ │ │ └── example6.sandbox.ts │ │ ├── from-dir.spec.ts │ │ └── string-builder.spec.ts │ └── tsconfig.json ├── jest │ └── src │ │ └── jest-puppeteer.config.js ├── playground │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── src │ │ ├── lib │ │ │ ├── core │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── drawer │ │ │ │ │ ├── drawer.component.css │ │ │ │ │ ├── drawer.component.html │ │ │ │ │ └── drawer.component.ts │ │ │ │ ├── logo │ │ │ │ │ ├── logo.component.html │ │ │ │ │ └── logo.component.ts │ │ │ │ ├── pin │ │ │ │ │ ├── pin.component.html │ │ │ │ │ └── pin.component.ts │ │ │ │ ├── playground-common.module.ts │ │ │ │ ├── playground.module.ts │ │ │ │ ├── scenario │ │ │ │ │ └── scenario.component.ts │ │ │ │ └── shared │ │ │ │ │ ├── focus.directive.ts │ │ │ │ │ ├── fuzzy-search.function.ts │ │ │ │ │ ├── highlight-search-match.pipe.ts │ │ │ │ │ ├── levenshtein-distance.ts │ │ │ │ │ ├── sandboxes.ts │ │ │ │ │ ├── state.service.ts │ │ │ │ │ └── url.service.ts │ │ │ └── lib │ │ │ │ ├── api.ts │ │ │ │ ├── app-state.ts │ │ │ │ ├── initialize-playground.ts │ │ │ │ └── middlewares.ts │ │ ├── public-api.ts │ │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json └── schematics │ ├── .editorconfig │ ├── src │ ├── collection.json │ ├── migrations │ │ ├── 7.0.0 │ │ │ ├── files │ │ │ │ ├── main.playground.ts │ │ │ │ └── tsconfig.playground.json │ │ │ └── index.ts │ │ ├── 8.0.0 │ │ │ ├── files │ │ │ │ ├── angular-playground.json │ │ │ │ ├── main.playground.ts │ │ │ │ ├── sandboxes.ts │ │ │ │ └── tsconfig.playground.json │ │ │ └── index.ts │ │ └── migrations.json │ ├── ng-add │ │ ├── files │ │ │ ├── angular-playground.json │ │ │ ├── main.playground.ts │ │ │ ├── sandboxes.ts │ │ │ └── tsconfig.playground.json │ │ ├── index.spec.ts │ │ └── index.ts │ ├── sandbox │ │ ├── files │ │ │ └── __name@dasherize__.component.sandbox.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── schema.json │ │ └── schema.ts │ └── utils │ │ ├── npm-script.ts │ │ ├── paths.ts │ │ └── project.ts │ └── tsconfig.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /KUDOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/KUDOS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/angular.json -------------------------------------------------------------------------------- /assets/angular-playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/assets/angular-playground.png -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /examples/cli-example/.angular-playground/.gitignore: -------------------------------------------------------------------------------- 1 | sandboxes.ts 2 | -------------------------------------------------------------------------------- /examples/cli-example/.angular-playground/angular-playground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/.angular-playground/angular-playground.json -------------------------------------------------------------------------------- /examples/cli-example/.angular-playground/main.playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/.angular-playground/main.playground.ts -------------------------------------------------------------------------------- /examples/cli-example/.angular-playground/tsconfig.playground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/.angular-playground/tsconfig.playground.json -------------------------------------------------------------------------------- /examples/cli-example/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/.browserslistrc -------------------------------------------------------------------------------- /examples/cli-example/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/.editorconfig -------------------------------------------------------------------------------- /examples/cli-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/.gitignore -------------------------------------------------------------------------------- /examples/cli-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/README.md -------------------------------------------------------------------------------- /examples/cli-example/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/angular.json -------------------------------------------------------------------------------- /examples/cli-example/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/e2e/protractor.conf.js -------------------------------------------------------------------------------- /examples/cli-example/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /examples/cli-example/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/e2e/src/app.po.ts -------------------------------------------------------------------------------- /examples/cli-example/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/e2e/tsconfig.json -------------------------------------------------------------------------------- /examples/cli-example/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/karma.conf.js -------------------------------------------------------------------------------- /examples/cli-example/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/ngsw-config.json -------------------------------------------------------------------------------- /examples/cli-example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/package-lock.json -------------------------------------------------------------------------------- /examples/cli-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/package.json -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-feature1-person-bio-component-sandbox-default-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-feature1-person-bio-component-sandbox-default-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-feature1-person-bio-component-sandbox-default-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-feature1-person-bio-component-sandbox-default-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-feature1-person-details-component-sandbox-person-with-name-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-feature1-person-details-component-sandbox-person-with-name-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-feature1-person-details-component-sandbox-person-with-name-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-feature1-person-details-component-sandbox-person-with-name-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-feature2-info-block-component-sandbox-A-general-example-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-feature2-info-block-component-sandbox-A-general-example-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-feature2-info-block-component-sandbox-A-general-example-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-feature2-info-block-component-sandbox-A-general-example-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-feature2-info-block-component-sandbox-A-warning-example-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-feature2-info-block-component-sandbox-A-warning-example-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-feature2-info-block-component-sandbox-A-warning-example-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-feature2-info-block-component-sandbox-A-warning-example-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-feature2-info-block-component-sandbox-An-error-example-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-feature2-info-block-component-sandbox-An-error-example-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-feature2-info-block-component-sandbox-An-error-example-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-feature2-info-block-component-sandbox-An-error-example-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-feature3-star-rating-component-sandbox-3-stars-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-feature3-star-rating-component-sandbox-3-stars-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-feature3-star-rating-component-sandbox-3-stars-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-feature3-star-rating-component-sandbox-3-stars-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-animated-component-sandbox-default-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-animated-component-sandbox-default-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-animated-component-sandbox-default-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-animated-component-sandbox-default-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-in-a-green-container-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-in-a-green-container-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-in-a-green-container-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-in-a-green-container-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-long-text-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-long-text-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-long-text-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-long-text-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-position-absolute-test-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-position-absolute-test-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-position-absolute-test-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-position-absolute-test-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-short-text-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-short-text-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-short-text-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-short-text-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-with-custom-provider-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-with-custom-provider-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-with-custom-provider-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-notice-component-sandbox-with-custom-provider-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-person-bio-component-sandbox-default-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-person-bio-component-sandbox-default-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-person-bio-component-sandbox-default-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-person-bio-component-sandbox-default-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-person-bio-component-sandbox-no-message-1000x800-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-person-bio-component-sandbox-no-message-1000x800-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/__images_snapshots__/app-shared-person-bio-component-sandbox-no-message-401x400-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/__images_snapshots__/app-shared-person-bio-component-sandbox-no-message-401x400-snap.png -------------------------------------------------------------------------------- /examples/cli-example/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cli-example/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/app.component.html -------------------------------------------------------------------------------- /examples/cli-example/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/app.component.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/app.module.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/feature1/feature1.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/feature1/feature1.module.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/feature1/person-bio.component.other.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/feature1/person-bio.component.other.sandbox.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/feature1/person-bio.component.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/feature1/person-bio.component.sandbox.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/feature1/person-bio.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/feature1/person-bio.component.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/feature1/person-block.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/feature1/person-block.component.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/feature1/person-details.component.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/feature1/person-details.component.sandbox.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/feature1/person-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/feature1/person-details.component.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/feature2/feature2.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/feature2/feature2.module.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/feature2/info-block.component.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/feature2/info-block.component.sandbox.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/feature2/info-block.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/feature2/info-block.component.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/feature3/feature3.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/feature3/feature3.module.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/feature3/star-rating.component.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/feature3/star-rating.component.sandbox.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/feature3/star-rating.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/feature3/star-rating.component.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/shared/animated.component.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/shared/animated.component.sandbox.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/shared/animated.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/shared/animated.component.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/shared/counter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/shared/counter.service.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/shared/notice.component.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/shared/notice.component.sandbox.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/shared/notice.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/shared/notice.component.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/shared/person-bio.component.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/shared/person-bio.component.sandbox.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/shared/person-bio.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/shared/person-bio.component.ts -------------------------------------------------------------------------------- /examples/cli-example/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /examples/cli-example/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cli-example/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /examples/cli-example/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/environments/environment.ts -------------------------------------------------------------------------------- /examples/cli-example/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/favicon.ico -------------------------------------------------------------------------------- /examples/cli-example/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/index.html -------------------------------------------------------------------------------- /examples/cli-example/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/main.ts -------------------------------------------------------------------------------- /examples/cli-example/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/polyfills.ts -------------------------------------------------------------------------------- /examples/cli-example/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/styles.css -------------------------------------------------------------------------------- /examples/cli-example/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/test.ts -------------------------------------------------------------------------------- /examples/cli-example/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/src/tslint.json -------------------------------------------------------------------------------- /examples/cli-example/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/tsconfig.app.json -------------------------------------------------------------------------------- /examples/cli-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/tsconfig.json -------------------------------------------------------------------------------- /examples/cli-example/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/tsconfig.spec.json -------------------------------------------------------------------------------- /examples/cli-example/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/examples/cli-example/tslint.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/package.json -------------------------------------------------------------------------------- /projects/cli/src/build-angular-cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/build-angular-cli.ts -------------------------------------------------------------------------------- /projects/cli/src/build-sandboxes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/build-sandboxes.ts -------------------------------------------------------------------------------- /projects/cli/src/check-errors/reporters/json-reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/check-errors/reporters/json-reporter.ts -------------------------------------------------------------------------------- /projects/cli/src/check-errors/reporters/xml-reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/check-errors/reporters/xml-reporter.ts -------------------------------------------------------------------------------- /projects/cli/src/check-errors/verify-sandboxes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/check-errors/verify-sandboxes.ts -------------------------------------------------------------------------------- /projects/cli/src/check-snapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/check-snapshots.ts -------------------------------------------------------------------------------- /projects/cli/src/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/configure.ts -------------------------------------------------------------------------------- /projects/cli/src/error-reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/error-reporter.ts -------------------------------------------------------------------------------- /projects/cli/src/from-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/from-dir.ts -------------------------------------------------------------------------------- /projects/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/index.ts -------------------------------------------------------------------------------- /projects/cli/src/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/run.ts -------------------------------------------------------------------------------- /projects/cli/src/serve-angular-cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/serve-angular-cli.ts -------------------------------------------------------------------------------- /projects/cli/src/start-watch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/start-watch.ts -------------------------------------------------------------------------------- /projects/cli/src/string-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/string-builder.ts -------------------------------------------------------------------------------- /projects/cli/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/src/utils.ts -------------------------------------------------------------------------------- /projects/cli/test/build-sandboxes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/build-sandboxes.spec.ts -------------------------------------------------------------------------------- /projects/cli/test/configure.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/configure.spec.ts -------------------------------------------------------------------------------- /projects/cli/test/error-reporter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/error-reporter.spec.ts -------------------------------------------------------------------------------- /projects/cli/test/files/angular-test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/angular-test-config.json -------------------------------------------------------------------------------- /projects/cli/test/files/empty-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/empty-config.json -------------------------------------------------------------------------------- /projects/cli/test/files/from-dir-test-multiple/sub-dir/sub-dir-2/test3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/from-dir-test-multiple/sub-dir/sub-dir-2/test3.ts -------------------------------------------------------------------------------- /projects/cli/test/files/from-dir-test-multiple/sub-dir/test2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/from-dir-test-multiple/sub-dir/test2.ts -------------------------------------------------------------------------------- /projects/cli/test/files/from-dir-test-multiple/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/from-dir-test-multiple/test.ts -------------------------------------------------------------------------------- /projects/cli/test/files/from-dir-test/node_modules/other.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/cli/test/files/from-dir-test/node_modules/somedir/other.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/cli/test/files/from-dir-test/sub-dir/other.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/cli/test/files/from-dir-test/test.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/cli/test/files/from-dir-test/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/cli/test/files/from-dir-test/test2.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/cli/test/files/sandboxes-2/example1.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/sandboxes-2/example1.sandbox.ts -------------------------------------------------------------------------------- /projects/cli/test/files/sandboxes-2/example2.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/sandboxes-2/example2.sandbox.ts -------------------------------------------------------------------------------- /projects/cli/test/files/sandboxes-2/example3.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/sandboxes-2/example3.sandbox.ts -------------------------------------------------------------------------------- /projects/cli/test/files/sandboxes-2/example4.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/sandboxes-2/example4.sandbox.ts -------------------------------------------------------------------------------- /projects/cli/test/files/sandboxes-2/example5.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/sandboxes-2/example5.sandbox.ts -------------------------------------------------------------------------------- /projects/cli/test/files/sandboxes-2/example6.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/sandboxes-2/example6.sandbox.ts -------------------------------------------------------------------------------- /projects/cli/test/files/sandboxes/angular-playground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/sandboxes/angular-playground.js -------------------------------------------------------------------------------- /projects/cli/test/files/sandboxes/example1.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/sandboxes/example1.sandbox.ts -------------------------------------------------------------------------------- /projects/cli/test/files/sandboxes/example2.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/sandboxes/example2.sandbox.ts -------------------------------------------------------------------------------- /projects/cli/test/files/sandboxes/example3.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/sandboxes/example3.sandbox.ts -------------------------------------------------------------------------------- /projects/cli/test/files/sandboxes/example4.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/sandboxes/example4.sandbox.ts -------------------------------------------------------------------------------- /projects/cli/test/files/sandboxes/example5.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/sandboxes/example5.sandbox.ts -------------------------------------------------------------------------------- /projects/cli/test/files/sandboxes/example6.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/files/sandboxes/example6.sandbox.ts -------------------------------------------------------------------------------- /projects/cli/test/from-dir.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/from-dir.spec.ts -------------------------------------------------------------------------------- /projects/cli/test/string-builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/test/string-builder.spec.ts -------------------------------------------------------------------------------- /projects/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/cli/tsconfig.json -------------------------------------------------------------------------------- /projects/jest/src/jest-puppeteer.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | testPathIgnorePatterns: [] 3 | }; 4 | -------------------------------------------------------------------------------- /projects/playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/README.md -------------------------------------------------------------------------------- /projects/playground/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/karma.conf.js -------------------------------------------------------------------------------- /projects/playground/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/ng-package.json -------------------------------------------------------------------------------- /projects/playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/package.json -------------------------------------------------------------------------------- /projects/playground/src/lib/core/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/app.component.css -------------------------------------------------------------------------------- /projects/playground/src/lib/core/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/app.component.html -------------------------------------------------------------------------------- /projects/playground/src/lib/core/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/app.component.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/core/drawer/drawer.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/drawer/drawer.component.css -------------------------------------------------------------------------------- /projects/playground/src/lib/core/drawer/drawer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/drawer/drawer.component.html -------------------------------------------------------------------------------- /projects/playground/src/lib/core/drawer/drawer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/drawer/drawer.component.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/core/logo/logo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/logo/logo.component.html -------------------------------------------------------------------------------- /projects/playground/src/lib/core/logo/logo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/logo/logo.component.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/core/pin/pin.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/pin/pin.component.html -------------------------------------------------------------------------------- /projects/playground/src/lib/core/pin/pin.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/pin/pin.component.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/core/playground-common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/playground-common.module.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/core/playground.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/playground.module.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/core/scenario/scenario.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/scenario/scenario.component.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/core/shared/focus.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/shared/focus.directive.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/core/shared/fuzzy-search.function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/shared/fuzzy-search.function.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/core/shared/highlight-search-match.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/shared/highlight-search-match.pipe.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/core/shared/levenshtein-distance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/shared/levenshtein-distance.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/core/shared/sandboxes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/shared/sandboxes.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/core/shared/state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/shared/state.service.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/core/shared/url.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/core/shared/url.service.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/lib/api.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/lib/app-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/lib/app-state.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/lib/initialize-playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/lib/initialize-playground.ts -------------------------------------------------------------------------------- /projects/playground/src/lib/lib/middlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/lib/lib/middlewares.ts -------------------------------------------------------------------------------- /projects/playground/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/public-api.ts -------------------------------------------------------------------------------- /projects/playground/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/src/test.ts -------------------------------------------------------------------------------- /projects/playground/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/playground/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/playground/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/playground/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/schematics/.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | indent_size = 2 3 | -------------------------------------------------------------------------------- /projects/schematics/src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/collection.json -------------------------------------------------------------------------------- /projects/schematics/src/migrations/7.0.0/files/main.playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/migrations/7.0.0/files/main.playground.ts -------------------------------------------------------------------------------- /projects/schematics/src/migrations/7.0.0/files/tsconfig.playground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/migrations/7.0.0/files/tsconfig.playground.json -------------------------------------------------------------------------------- /projects/schematics/src/migrations/7.0.0/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/migrations/7.0.0/index.ts -------------------------------------------------------------------------------- /projects/schematics/src/migrations/8.0.0/files/angular-playground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/migrations/8.0.0/files/angular-playground.json -------------------------------------------------------------------------------- /projects/schematics/src/migrations/8.0.0/files/main.playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/migrations/8.0.0/files/main.playground.ts -------------------------------------------------------------------------------- /projects/schematics/src/migrations/8.0.0/files/sandboxes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/migrations/8.0.0/files/sandboxes.ts -------------------------------------------------------------------------------- /projects/schematics/src/migrations/8.0.0/files/tsconfig.playground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/migrations/8.0.0/files/tsconfig.playground.json -------------------------------------------------------------------------------- /projects/schematics/src/migrations/8.0.0/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/migrations/8.0.0/index.ts -------------------------------------------------------------------------------- /projects/schematics/src/migrations/migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/migrations/migrations.json -------------------------------------------------------------------------------- /projects/schematics/src/ng-add/files/angular-playground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/ng-add/files/angular-playground.json -------------------------------------------------------------------------------- /projects/schematics/src/ng-add/files/main.playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/ng-add/files/main.playground.ts -------------------------------------------------------------------------------- /projects/schematics/src/ng-add/files/sandboxes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/ng-add/files/sandboxes.ts -------------------------------------------------------------------------------- /projects/schematics/src/ng-add/files/tsconfig.playground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/ng-add/files/tsconfig.playground.json -------------------------------------------------------------------------------- /projects/schematics/src/ng-add/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/ng-add/index.spec.ts -------------------------------------------------------------------------------- /projects/schematics/src/ng-add/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/ng-add/index.ts -------------------------------------------------------------------------------- /projects/schematics/src/sandbox/files/__name@dasherize__.component.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/sandbox/files/__name@dasherize__.component.sandbox.ts -------------------------------------------------------------------------------- /projects/schematics/src/sandbox/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/sandbox/index.spec.ts -------------------------------------------------------------------------------- /projects/schematics/src/sandbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/sandbox/index.ts -------------------------------------------------------------------------------- /projects/schematics/src/sandbox/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/sandbox/schema.json -------------------------------------------------------------------------------- /projects/schematics/src/sandbox/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/sandbox/schema.ts -------------------------------------------------------------------------------- /projects/schematics/src/utils/npm-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/utils/npm-script.ts -------------------------------------------------------------------------------- /projects/schematics/src/utils/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/utils/paths.ts -------------------------------------------------------------------------------- /projects/schematics/src/utils/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/src/utils/project.ts -------------------------------------------------------------------------------- /projects/schematics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/projects/schematics/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCreate/angular-playground/HEAD/tsconfig.json --------------------------------------------------------------------------------