├── .clang-format ├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── config ├── environment.dev.ts ├── environment.js └── environment.prod.ts ├── e2e ├── components │ ├── button │ │ └── button.e2e.ts │ ├── icon │ │ └── icon.e2e.ts │ ├── menu │ │ ├── menu-page.ts │ │ └── menu.e2e.ts │ └── tabs │ │ └── tabs.e2e.ts ├── e2e.d.ts ├── index.e2e.ts └── tsconfig-build.json ├── firebase.json ├── gulpfile.js ├── package.json ├── public └── empty-placeholder ├── scripts ├── browserstack │ ├── start-tunnel.sh │ ├── stop-tunnel.sh │ └── wait-tunnel.sh ├── ci │ ├── README.md │ ├── after-success.sh │ ├── build-and-test.sh │ ├── env.sh │ └── sources │ │ ├── mode.sh │ │ └── tunnel.sh ├── release │ ├── changelog.js │ ├── copy-docs.sh │ ├── enact-release.sh │ ├── inline-resources.js │ ├── publish-build-artifacts.sh │ └── publish-docs-content.sh └── saucelabs │ ├── sauce_config.js │ ├── start-tunnel.sh │ ├── stop-tunnel.sh │ └── wait-tunnel.sh ├── src ├── calendar │ ├── package.json │ ├── public_api.ts │ ├── src │ │ ├── calendar │ │ │ ├── calendar.html │ │ │ ├── calendar.scss │ │ │ ├── calendar.ts │ │ │ └── index.ts │ │ └── calendar_module.ts │ ├── test │ │ └── calendar.spec.ts │ ├── testing │ │ └── index.ts │ ├── tsconfig-build.json │ ├── tsconfig-tests.json │ └── typings.d.ts ├── demo-app │ ├── calendar │ │ ├── calendar-demo.html │ │ ├── calendar-demo.scss │ │ └── calendar-demo.ts │ ├── demo-app-module.ts │ ├── demo-app │ │ ├── demo-app.scss │ │ ├── demo-app.ts │ │ └── routes.ts │ ├── index.html │ ├── main-aot.ts │ ├── main.ts │ ├── masonry │ │ ├── masonry-demo.html │ │ ├── masonry-demo.scss │ │ └── masonry-demo.ts │ ├── system-config.ts │ ├── tsconfig-aot.json │ ├── tsconfig-build.json │ └── typings.d.ts ├── masonry │ ├── package.json │ ├── public_api.ts │ ├── src │ │ ├── masonry │ │ │ ├── index.ts │ │ │ ├── masonry.scss │ │ │ └── masonry.ts │ │ └── masonry_module.ts │ ├── testing │ │ └── index.ts │ ├── tsconfig-build.json │ ├── tsconfig-tests.json │ └── typings.d.ts └── tsconfig.json ├── stylelint-config.json ├── test ├── browser-providers.js ├── karma-test-shim.js ├── karma.conf.js ├── protractor.conf.js └── remote_browsers.json ├── tools ├── axe-protractor │ ├── axe-protractor.js │ └── build-message.js ├── dashboard │ ├── .angular-cli.json │ ├── .gitignore │ ├── firebase.json │ ├── functions │ │ ├── functions.ts │ │ ├── github │ │ │ └── github-status.ts │ │ ├── index.js │ │ ├── jwt │ │ │ └── verify-token.ts │ │ ├── package.json │ │ ├── payload-github-status.ts │ │ └── tsconfig.json │ ├── package.json │ └── src │ │ ├── app │ │ ├── dashboard-app.css │ │ ├── dashboard-app.html │ │ ├── dashboard-app.ts │ │ ├── dashboard-module.ts │ │ ├── data-definitions.ts │ │ └── payload-chart │ │ │ ├── ngx-definitions.ts │ │ │ ├── payload-chart.html │ │ │ └── payload-chart.ts │ │ ├── assets │ │ └── .gitkeep │ │ ├── environments │ │ ├── environment.prod.ts │ │ ├── environment.ts │ │ └── firebase.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── theme.scss │ │ ├── tsconfig.json │ │ └── typings.d.ts ├── dgeni │ ├── index.js │ ├── processors │ │ ├── categorizer.js │ │ ├── component-grouper.js │ │ └── docs-private-filter.js │ └── templates │ │ ├── class.template.html │ │ ├── common.template.html │ │ ├── componentGroup.template.html │ │ ├── method-list.template.html │ │ ├── method.template.html │ │ ├── property-list.template.html │ │ └── property.template.html ├── gulp │ ├── gulpfile.ts │ ├── packages.ts │ ├── tasks │ │ ├── aot.ts │ │ ├── ci.ts │ │ ├── clean.ts │ │ ├── coverage.ts │ │ ├── default.ts │ │ ├── development.ts │ │ ├── docs.ts │ │ ├── e2e.ts │ │ ├── lint.ts │ │ ├── material2-extra-release.ts │ │ ├── payload.ts │ │ ├── publish.ts │ │ ├── screenshots.ts │ │ ├── unit-test.ts │ │ ├── universal.ts │ │ └── validate-release.ts │ ├── tsconfig.json │ └── util │ │ ├── firebase.ts │ │ ├── task_helpers.ts │ │ ├── text.ts │ │ └── travis-ci.ts ├── package-tools │ ├── build-bundles.ts │ ├── build-config.ts │ ├── build-package.ts │ ├── build-release.ts │ ├── copy-files.ts │ ├── entry-point-package-json.ts │ ├── find-build-config.ts │ ├── gulp │ │ ├── build-scss-task.ts │ │ ├── build-tasks-gulp.ts │ │ ├── sequence-task.ts │ │ ├── trigger-livereload.ts │ │ └── watch-files.ts │ ├── index.ts │ ├── inline-resources.ts │ ├── metadata-inlining.ts │ ├── metadata-reexport.ts │ ├── minify-sources.ts │ ├── package-versions.ts │ ├── pure-annotations.ts │ ├── rollup-globals.ts │ ├── rollup-remove-licenses.ts │ ├── secondary-entry-points.ts │ ├── sourcemap-remap.ts │ ├── typescript-transpile.ts │ ├── typings-reexport.ts │ └── version-placeholders.ts ├── screenshot-test │ ├── angular-cli.json │ ├── functions │ │ ├── config.json │ │ ├── data-image.ts │ │ ├── github.ts │ │ ├── image-data.ts │ │ ├── index.js │ │ ├── jwt-util.ts │ │ ├── package.json │ │ ├── screenshot-functions.ts │ │ ├── test-goldens.ts │ │ ├── tsconfig.json │ │ ├── util │ │ │ ├── github.ts │ │ │ ├── jwt.ts │ │ │ └── util.ts │ │ └── verify-and-copy-report.ts │ ├── package.json │ └── src │ │ ├── app │ │ ├── firebase.service.ts │ │ ├── nav │ │ │ ├── nav.component.html │ │ │ └── nav.component.ts │ │ ├── pixacto.dashboard.component.ts │ │ ├── pixacto.dashboard.module.ts │ │ ├── result │ │ │ ├── result.component.css │ │ │ ├── result.component.html │ │ │ └── result.component.ts │ │ ├── routes.ts │ │ ├── screenshot-result.ts │ │ └── viewer │ │ │ ├── viewer.component.css │ │ │ ├── viewer.component.html │ │ │ └── viewer.component.ts │ │ ├── config.json │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── tsconfig.json ├── stylelint │ ├── no-nested-mixin │ │ └── index.js │ ├── no-prefixes │ │ ├── needs-prefix.js │ │ └── no-prefixes.js │ ├── selector-nested-pattern-scoped │ │ └── index.js │ └── selector-no-deep │ │ └── index.js └── tslint-rules │ ├── missingRollupGlobalsRule.ts │ ├── noExposedTodoRule.ts │ ├── noRxjsPatchImportsRule.ts │ ├── noViewEncapsulationRule.ts │ ├── requireLicenseBannerRule.ts │ ├── tsLoaderRule.js │ └── validateDecoratorsRule.ts └── tslint.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/LICENSE -------------------------------------------------------------------------------- /config/environment.dev.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false 3 | }; 4 | -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/config/environment.js -------------------------------------------------------------------------------- /config/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /e2e/components/button/button.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/e2e/components/button/button.e2e.ts -------------------------------------------------------------------------------- /e2e/components/icon/icon.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/e2e/components/icon/icon.e2e.ts -------------------------------------------------------------------------------- /e2e/components/menu/menu-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/e2e/components/menu/menu-page.ts -------------------------------------------------------------------------------- /e2e/components/menu/menu.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/e2e/components/menu/menu.e2e.ts -------------------------------------------------------------------------------- /e2e/components/tabs/tabs.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/e2e/components/tabs/tabs.e2e.ts -------------------------------------------------------------------------------- /e2e/e2e.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/e2e/e2e.d.ts -------------------------------------------------------------------------------- /e2e/index.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/e2e/index.e2e.ts -------------------------------------------------------------------------------- /e2e/tsconfig-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/e2e/tsconfig-build.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/firebase.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/package.json -------------------------------------------------------------------------------- /public/empty-placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/browserstack/start-tunnel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/browserstack/start-tunnel.sh -------------------------------------------------------------------------------- /scripts/browserstack/stop-tunnel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/browserstack/stop-tunnel.sh -------------------------------------------------------------------------------- /scripts/browserstack/wait-tunnel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/browserstack/wait-tunnel.sh -------------------------------------------------------------------------------- /scripts/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/ci/README.md -------------------------------------------------------------------------------- /scripts/ci/after-success.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/ci/after-success.sh -------------------------------------------------------------------------------- /scripts/ci/build-and-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/ci/build-and-test.sh -------------------------------------------------------------------------------- /scripts/ci/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/ci/env.sh -------------------------------------------------------------------------------- /scripts/ci/sources/mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/ci/sources/mode.sh -------------------------------------------------------------------------------- /scripts/ci/sources/tunnel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/ci/sources/tunnel.sh -------------------------------------------------------------------------------- /scripts/release/changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/release/changelog.js -------------------------------------------------------------------------------- /scripts/release/copy-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/release/copy-docs.sh -------------------------------------------------------------------------------- /scripts/release/enact-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/release/enact-release.sh -------------------------------------------------------------------------------- /scripts/release/inline-resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/release/inline-resources.js -------------------------------------------------------------------------------- /scripts/release/publish-build-artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/release/publish-build-artifacts.sh -------------------------------------------------------------------------------- /scripts/release/publish-docs-content.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/release/publish-docs-content.sh -------------------------------------------------------------------------------- /scripts/saucelabs/sauce_config.js: -------------------------------------------------------------------------------- 1 | module.exports = process.env.SAUCE_ACCESS_KEY.split('').reverse().join(''); 2 | -------------------------------------------------------------------------------- /scripts/saucelabs/start-tunnel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/saucelabs/start-tunnel.sh -------------------------------------------------------------------------------- /scripts/saucelabs/stop-tunnel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/saucelabs/stop-tunnel.sh -------------------------------------------------------------------------------- /scripts/saucelabs/wait-tunnel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/scripts/saucelabs/wait-tunnel.sh -------------------------------------------------------------------------------- /src/calendar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/calendar/package.json -------------------------------------------------------------------------------- /src/calendar/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/calendar/public_api.ts -------------------------------------------------------------------------------- /src/calendar/src/calendar/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/calendar/src/calendar/calendar.html -------------------------------------------------------------------------------- /src/calendar/src/calendar/calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/calendar/src/calendar/calendar.scss -------------------------------------------------------------------------------- /src/calendar/src/calendar/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/calendar/src/calendar/calendar.ts -------------------------------------------------------------------------------- /src/calendar/src/calendar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './calendar'; 2 | -------------------------------------------------------------------------------- /src/calendar/src/calendar_module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/calendar/src/calendar_module.ts -------------------------------------------------------------------------------- /src/calendar/test/calendar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/calendar/test/calendar.spec.ts -------------------------------------------------------------------------------- /src/calendar/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/calendar/testing/index.ts -------------------------------------------------------------------------------- /src/calendar/tsconfig-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/calendar/tsconfig-build.json -------------------------------------------------------------------------------- /src/calendar/tsconfig-tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/calendar/tsconfig-tests.json -------------------------------------------------------------------------------- /src/calendar/typings.d.ts: -------------------------------------------------------------------------------- 1 | declare var module: { id: string }; 2 | -------------------------------------------------------------------------------- /src/demo-app/calendar/calendar-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/calendar/calendar-demo.html -------------------------------------------------------------------------------- /src/demo-app/calendar/calendar-demo.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/demo-app/calendar/calendar-demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/calendar/calendar-demo.ts -------------------------------------------------------------------------------- /src/demo-app/demo-app-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/demo-app-module.ts -------------------------------------------------------------------------------- /src/demo-app/demo-app/demo-app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/demo-app/demo-app.scss -------------------------------------------------------------------------------- /src/demo-app/demo-app/demo-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/demo-app/demo-app.ts -------------------------------------------------------------------------------- /src/demo-app/demo-app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/demo-app/routes.ts -------------------------------------------------------------------------------- /src/demo-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/index.html -------------------------------------------------------------------------------- /src/demo-app/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/main-aot.ts -------------------------------------------------------------------------------- /src/demo-app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/main.ts -------------------------------------------------------------------------------- /src/demo-app/masonry/masonry-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/masonry/masonry-demo.html -------------------------------------------------------------------------------- /src/demo-app/masonry/masonry-demo.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/demo-app/masonry/masonry-demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/masonry/masonry-demo.ts -------------------------------------------------------------------------------- /src/demo-app/system-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/system-config.ts -------------------------------------------------------------------------------- /src/demo-app/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/tsconfig-aot.json -------------------------------------------------------------------------------- /src/demo-app/tsconfig-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/demo-app/tsconfig-build.json -------------------------------------------------------------------------------- /src/demo-app/typings.d.ts: -------------------------------------------------------------------------------- 1 | declare var module: { id: string }; 2 | -------------------------------------------------------------------------------- /src/masonry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/masonry/package.json -------------------------------------------------------------------------------- /src/masonry/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/masonry/public_api.ts -------------------------------------------------------------------------------- /src/masonry/src/masonry/index.ts: -------------------------------------------------------------------------------- 1 | export * from './masonry'; 2 | -------------------------------------------------------------------------------- /src/masonry/src/masonry/masonry.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/masonry/src/masonry/masonry.scss -------------------------------------------------------------------------------- /src/masonry/src/masonry/masonry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/masonry/src/masonry/masonry.ts -------------------------------------------------------------------------------- /src/masonry/src/masonry_module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/masonry/src/masonry_module.ts -------------------------------------------------------------------------------- /src/masonry/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/masonry/testing/index.ts -------------------------------------------------------------------------------- /src/masonry/tsconfig-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/masonry/tsconfig-build.json -------------------------------------------------------------------------------- /src/masonry/tsconfig-tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/masonry/tsconfig-tests.json -------------------------------------------------------------------------------- /src/masonry/typings.d.ts: -------------------------------------------------------------------------------- 1 | declare var module: { id: string }; 2 | -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /stylelint-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/stylelint-config.json -------------------------------------------------------------------------------- /test/browser-providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/test/browser-providers.js -------------------------------------------------------------------------------- /test/karma-test-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/test/karma-test-shim.js -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/test/karma.conf.js -------------------------------------------------------------------------------- /test/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/test/protractor.conf.js -------------------------------------------------------------------------------- /test/remote_browsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/test/remote_browsers.json -------------------------------------------------------------------------------- /tools/axe-protractor/axe-protractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/axe-protractor/axe-protractor.js -------------------------------------------------------------------------------- /tools/axe-protractor/build-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/axe-protractor/build-message.js -------------------------------------------------------------------------------- /tools/dashboard/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/.angular-cli.json -------------------------------------------------------------------------------- /tools/dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/.gitignore -------------------------------------------------------------------------------- /tools/dashboard/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/firebase.json -------------------------------------------------------------------------------- /tools/dashboard/functions/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/functions/functions.ts -------------------------------------------------------------------------------- /tools/dashboard/functions/github/github-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/functions/github/github-status.ts -------------------------------------------------------------------------------- /tools/dashboard/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/functions/index.js -------------------------------------------------------------------------------- /tools/dashboard/functions/jwt/verify-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/functions/jwt/verify-token.ts -------------------------------------------------------------------------------- /tools/dashboard/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/functions/package.json -------------------------------------------------------------------------------- /tools/dashboard/functions/payload-github-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/functions/payload-github-status.ts -------------------------------------------------------------------------------- /tools/dashboard/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/functions/tsconfig.json -------------------------------------------------------------------------------- /tools/dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/package.json -------------------------------------------------------------------------------- /tools/dashboard/src/app/dashboard-app.css: -------------------------------------------------------------------------------- 1 | .dashboard-content { 2 | margin: 16px; 3 | } 4 | -------------------------------------------------------------------------------- /tools/dashboard/src/app/dashboard-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/app/dashboard-app.html -------------------------------------------------------------------------------- /tools/dashboard/src/app/dashboard-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/app/dashboard-app.ts -------------------------------------------------------------------------------- /tools/dashboard/src/app/dashboard-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/app/dashboard-module.ts -------------------------------------------------------------------------------- /tools/dashboard/src/app/data-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/app/data-definitions.ts -------------------------------------------------------------------------------- /tools/dashboard/src/app/payload-chart/ngx-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/app/payload-chart/ngx-definitions.ts -------------------------------------------------------------------------------- /tools/dashboard/src/app/payload-chart/payload-chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/app/payload-chart/payload-chart.html -------------------------------------------------------------------------------- /tools/dashboard/src/app/payload-chart/payload-chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/app/payload-chart/payload-chart.ts -------------------------------------------------------------------------------- /tools/dashboard/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/dashboard/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /tools/dashboard/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/environments/environment.ts -------------------------------------------------------------------------------- /tools/dashboard/src/environments/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/environments/firebase.ts -------------------------------------------------------------------------------- /tools/dashboard/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/favicon.ico -------------------------------------------------------------------------------- /tools/dashboard/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/index.html -------------------------------------------------------------------------------- /tools/dashboard/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/main.ts -------------------------------------------------------------------------------- /tools/dashboard/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/polyfills.ts -------------------------------------------------------------------------------- /tools/dashboard/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/styles.css -------------------------------------------------------------------------------- /tools/dashboard/src/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/theme.scss -------------------------------------------------------------------------------- /tools/dashboard/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/tsconfig.json -------------------------------------------------------------------------------- /tools/dashboard/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dashboard/src/typings.d.ts -------------------------------------------------------------------------------- /tools/dgeni/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dgeni/index.js -------------------------------------------------------------------------------- /tools/dgeni/processors/categorizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dgeni/processors/categorizer.js -------------------------------------------------------------------------------- /tools/dgeni/processors/component-grouper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dgeni/processors/component-grouper.js -------------------------------------------------------------------------------- /tools/dgeni/processors/docs-private-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dgeni/processors/docs-private-filter.js -------------------------------------------------------------------------------- /tools/dgeni/templates/class.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dgeni/templates/class.template.html -------------------------------------------------------------------------------- /tools/dgeni/templates/common.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dgeni/templates/common.template.html -------------------------------------------------------------------------------- /tools/dgeni/templates/componentGroup.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dgeni/templates/componentGroup.template.html -------------------------------------------------------------------------------- /tools/dgeni/templates/method-list.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dgeni/templates/method-list.template.html -------------------------------------------------------------------------------- /tools/dgeni/templates/method.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dgeni/templates/method.template.html -------------------------------------------------------------------------------- /tools/dgeni/templates/property-list.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dgeni/templates/property-list.template.html -------------------------------------------------------------------------------- /tools/dgeni/templates/property.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/dgeni/templates/property.template.html -------------------------------------------------------------------------------- /tools/gulp/gulpfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/gulpfile.ts -------------------------------------------------------------------------------- /tools/gulp/packages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/packages.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/aot.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/ci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/ci.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/clean.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/coverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/coverage.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/default.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/development.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/development.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/docs.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/e2e.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/lint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/lint.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/material2-extra-release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/material2-extra-release.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/payload.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/publish.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/screenshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/screenshots.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/unit-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/unit-test.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/universal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/universal.ts -------------------------------------------------------------------------------- /tools/gulp/tasks/validate-release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tasks/validate-release.ts -------------------------------------------------------------------------------- /tools/gulp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/tsconfig.json -------------------------------------------------------------------------------- /tools/gulp/util/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/util/firebase.ts -------------------------------------------------------------------------------- /tools/gulp/util/task_helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/util/task_helpers.ts -------------------------------------------------------------------------------- /tools/gulp/util/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/util/text.ts -------------------------------------------------------------------------------- /tools/gulp/util/travis-ci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/gulp/util/travis-ci.ts -------------------------------------------------------------------------------- /tools/package-tools/build-bundles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/build-bundles.ts -------------------------------------------------------------------------------- /tools/package-tools/build-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/build-config.ts -------------------------------------------------------------------------------- /tools/package-tools/build-package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/build-package.ts -------------------------------------------------------------------------------- /tools/package-tools/build-release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/build-release.ts -------------------------------------------------------------------------------- /tools/package-tools/copy-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/copy-files.ts -------------------------------------------------------------------------------- /tools/package-tools/entry-point-package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/entry-point-package-json.ts -------------------------------------------------------------------------------- /tools/package-tools/find-build-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/find-build-config.ts -------------------------------------------------------------------------------- /tools/package-tools/gulp/build-scss-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/gulp/build-scss-task.ts -------------------------------------------------------------------------------- /tools/package-tools/gulp/build-tasks-gulp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/gulp/build-tasks-gulp.ts -------------------------------------------------------------------------------- /tools/package-tools/gulp/sequence-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/gulp/sequence-task.ts -------------------------------------------------------------------------------- /tools/package-tools/gulp/trigger-livereload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/gulp/trigger-livereload.ts -------------------------------------------------------------------------------- /tools/package-tools/gulp/watch-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/gulp/watch-files.ts -------------------------------------------------------------------------------- /tools/package-tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/index.ts -------------------------------------------------------------------------------- /tools/package-tools/inline-resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/inline-resources.ts -------------------------------------------------------------------------------- /tools/package-tools/metadata-inlining.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/metadata-inlining.ts -------------------------------------------------------------------------------- /tools/package-tools/metadata-reexport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/metadata-reexport.ts -------------------------------------------------------------------------------- /tools/package-tools/minify-sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/minify-sources.ts -------------------------------------------------------------------------------- /tools/package-tools/package-versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/package-versions.ts -------------------------------------------------------------------------------- /tools/package-tools/pure-annotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/pure-annotations.ts -------------------------------------------------------------------------------- /tools/package-tools/rollup-globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/rollup-globals.ts -------------------------------------------------------------------------------- /tools/package-tools/rollup-remove-licenses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/rollup-remove-licenses.ts -------------------------------------------------------------------------------- /tools/package-tools/secondary-entry-points.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/secondary-entry-points.ts -------------------------------------------------------------------------------- /tools/package-tools/sourcemap-remap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/sourcemap-remap.ts -------------------------------------------------------------------------------- /tools/package-tools/typescript-transpile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/typescript-transpile.ts -------------------------------------------------------------------------------- /tools/package-tools/typings-reexport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/typings-reexport.ts -------------------------------------------------------------------------------- /tools/package-tools/version-placeholders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/package-tools/version-placeholders.ts -------------------------------------------------------------------------------- /tools/screenshot-test/angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/angular-cli.json -------------------------------------------------------------------------------- /tools/screenshot-test/functions/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/config.json -------------------------------------------------------------------------------- /tools/screenshot-test/functions/data-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/data-image.ts -------------------------------------------------------------------------------- /tools/screenshot-test/functions/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/github.ts -------------------------------------------------------------------------------- /tools/screenshot-test/functions/image-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/image-data.ts -------------------------------------------------------------------------------- /tools/screenshot-test/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/index.js -------------------------------------------------------------------------------- /tools/screenshot-test/functions/jwt-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/jwt-util.ts -------------------------------------------------------------------------------- /tools/screenshot-test/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/package.json -------------------------------------------------------------------------------- /tools/screenshot-test/functions/screenshot-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/screenshot-functions.ts -------------------------------------------------------------------------------- /tools/screenshot-test/functions/test-goldens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/test-goldens.ts -------------------------------------------------------------------------------- /tools/screenshot-test/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/tsconfig.json -------------------------------------------------------------------------------- /tools/screenshot-test/functions/util/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/util/github.ts -------------------------------------------------------------------------------- /tools/screenshot-test/functions/util/jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/util/jwt.ts -------------------------------------------------------------------------------- /tools/screenshot-test/functions/util/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/util/util.ts -------------------------------------------------------------------------------- /tools/screenshot-test/functions/verify-and-copy-report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/functions/verify-and-copy-report.ts -------------------------------------------------------------------------------- /tools/screenshot-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/package.json -------------------------------------------------------------------------------- /tools/screenshot-test/src/app/firebase.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/app/firebase.service.ts -------------------------------------------------------------------------------- /tools/screenshot-test/src/app/nav/nav.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/app/nav/nav.component.html -------------------------------------------------------------------------------- /tools/screenshot-test/src/app/nav/nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/app/nav/nav.component.ts -------------------------------------------------------------------------------- /tools/screenshot-test/src/app/pixacto.dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/app/pixacto.dashboard.component.ts -------------------------------------------------------------------------------- /tools/screenshot-test/src/app/pixacto.dashboard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/app/pixacto.dashboard.module.ts -------------------------------------------------------------------------------- /tools/screenshot-test/src/app/result/result.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/app/result/result.component.css -------------------------------------------------------------------------------- /tools/screenshot-test/src/app/result/result.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/app/result/result.component.html -------------------------------------------------------------------------------- /tools/screenshot-test/src/app/result/result.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/app/result/result.component.ts -------------------------------------------------------------------------------- /tools/screenshot-test/src/app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/app/routes.ts -------------------------------------------------------------------------------- /tools/screenshot-test/src/app/screenshot-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/app/screenshot-result.ts -------------------------------------------------------------------------------- /tools/screenshot-test/src/app/viewer/viewer.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/app/viewer/viewer.component.css -------------------------------------------------------------------------------- /tools/screenshot-test/src/app/viewer/viewer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/app/viewer/viewer.component.html -------------------------------------------------------------------------------- /tools/screenshot-test/src/app/viewer/viewer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/app/viewer/viewer.component.ts -------------------------------------------------------------------------------- /tools/screenshot-test/src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/config.json -------------------------------------------------------------------------------- /tools/screenshot-test/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /tools/screenshot-test/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/environments/environment.ts -------------------------------------------------------------------------------- /tools/screenshot-test/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/favicon.ico -------------------------------------------------------------------------------- /tools/screenshot-test/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/index.html -------------------------------------------------------------------------------- /tools/screenshot-test/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/main.ts -------------------------------------------------------------------------------- /tools/screenshot-test/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/polyfills.ts -------------------------------------------------------------------------------- /tools/screenshot-test/src/styles.css: -------------------------------------------------------------------------------- 1 | @import '~@angular/material/prebuilt-themes/indigo-pink.css'; 2 | -------------------------------------------------------------------------------- /tools/screenshot-test/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/screenshot-test/src/tsconfig.json -------------------------------------------------------------------------------- /tools/stylelint/no-nested-mixin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/stylelint/no-nested-mixin/index.js -------------------------------------------------------------------------------- /tools/stylelint/no-prefixes/needs-prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/stylelint/no-prefixes/needs-prefix.js -------------------------------------------------------------------------------- /tools/stylelint/no-prefixes/no-prefixes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/stylelint/no-prefixes/no-prefixes.js -------------------------------------------------------------------------------- /tools/stylelint/selector-nested-pattern-scoped/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/stylelint/selector-nested-pattern-scoped/index.js -------------------------------------------------------------------------------- /tools/stylelint/selector-no-deep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/stylelint/selector-no-deep/index.js -------------------------------------------------------------------------------- /tools/tslint-rules/missingRollupGlobalsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/tslint-rules/missingRollupGlobalsRule.ts -------------------------------------------------------------------------------- /tools/tslint-rules/noExposedTodoRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/tslint-rules/noExposedTodoRule.ts -------------------------------------------------------------------------------- /tools/tslint-rules/noRxjsPatchImportsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/tslint-rules/noRxjsPatchImportsRule.ts -------------------------------------------------------------------------------- /tools/tslint-rules/noViewEncapsulationRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/tslint-rules/noViewEncapsulationRule.ts -------------------------------------------------------------------------------- /tools/tslint-rules/requireLicenseBannerRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/tslint-rules/requireLicenseBannerRule.ts -------------------------------------------------------------------------------- /tools/tslint-rules/tsLoaderRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/tslint-rules/tsLoaderRule.js -------------------------------------------------------------------------------- /tools/tslint-rules/validateDecoratorsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tools/tslint-rules/validateDecoratorsRule.ts -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnucoop/material2-extra/HEAD/tslint.json --------------------------------------------------------------------------------