├── .browserslistrc ├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitpod.yml ├── .travis.yml ├── README.md ├── angular.json ├── docker └── Dockerfile ├── karma.conf.js ├── package.json ├── scripts └── install-angular-archwizard.sh ├── src ├── app │ ├── app-routing.module.ts │ ├── app.module.ts │ ├── arbitrary-step-navigation │ │ ├── arbitrary-step-navigation.component.css │ │ ├── arbitrary-step-navigation.component.html │ │ ├── arbitrary-step-navigation.component.spec.ts │ │ ├── arbitrary-step-navigation.component.ts │ │ └── arbitrary-step-navigation.module.ts │ ├── basic-step-symbol │ │ ├── basic-step-symbol.component.css │ │ ├── basic-step-symbol.component.html │ │ ├── basic-step-symbol.component.spec.ts │ │ ├── basic-step-symbol.component.ts │ │ └── basic-step-symbol.module.ts │ ├── basic │ │ ├── basic.component.css │ │ ├── basic.component.html │ │ ├── basic.component.spec.ts │ │ ├── basic.component.ts │ │ └── basic.module.ts │ ├── can-enter-event │ │ ├── can-enter-event.component.css │ │ ├── can-enter-event.component.html │ │ ├── can-enter-event.component.spec.ts │ │ ├── can-enter-event.component.ts │ │ └── can-enter-event.module.ts │ ├── can-exit-event │ │ ├── can-exit-event.component.css │ │ ├── can-exit-event.component.html │ │ ├── can-exit-event.component.spec.ts │ │ ├── can-exit-event.component.ts │ │ └── can-exit-event.module.ts │ ├── completion-step-back-navigation │ │ ├── completion-step-back-navigation.component.css │ │ ├── completion-step-back-navigation.component.html │ │ ├── completion-step-back-navigation.component.spec.ts │ │ ├── completion-step-back-navigation.component.ts │ │ └── completion-step-back-navigation.module.ts │ ├── completion-step-basic │ │ ├── completion-step-basic.component.css │ │ ├── completion-step-basic.component.html │ │ ├── completion-step-basic.component.spec.ts │ │ ├── completion-step-basic.component.ts │ │ └── completion-step-basic.module.ts │ ├── configurable-navigation-mode │ │ ├── configurable-navigation-mode.component.css │ │ ├── configurable-navigation-mode.component.html │ │ ├── configurable-navigation-mode.component.spec.ts │ │ ├── configurable-navigation-mode.component.ts │ │ └── configurable-navigation-mode.module.ts │ ├── custom-global-css │ │ ├── custom-global-css.component.html │ │ ├── custom-global-css.component.scss │ │ ├── custom-global-css.component.spec.ts │ │ ├── custom-global-css.component.ts │ │ └── custom-global-css.module.ts │ ├── custom-global-scss │ │ ├── custom-global-scss.component.html │ │ ├── custom-global-scss.component.scss │ │ ├── custom-global-scss.component.spec.ts │ │ ├── custom-global-scss.component.ts │ │ └── custom-global-scss.module.ts │ ├── custom-line-css │ │ ├── custom-line-css.component.html │ │ ├── custom-line-css.component.scss │ │ ├── custom-line-css.component.spec.ts │ │ ├── custom-line-css.component.ts │ │ └── custom-line-css.module.ts │ ├── custom-navigation-mode │ │ ├── custom-navigation-mode.component.css │ │ ├── custom-navigation-mode.component.html │ │ ├── custom-navigation-mode.component.spec.ts │ │ ├── custom-navigation-mode.component.ts │ │ ├── custom-navigation-mode.module.ts │ │ └── custom-navigation-mode.ts │ ├── custom-step-component │ │ ├── custom-step-component.component.css │ │ ├── custom-step-component.component.html │ │ └── custom-step-component.component.ts │ ├── custom-step-css │ │ ├── custom-step-css.component.html │ │ ├── custom-step-css.component.scss │ │ ├── custom-step-css.component.spec.ts │ │ ├── custom-step-css.component.ts │ │ └── custom-step-css.module.ts │ ├── custom-step-symbol-template-injection │ │ ├── custom-step-symbol-template-injection.component.css │ │ ├── custom-step-symbol-template-injection.component.html │ │ ├── custom-step-symbol-template-injection.component.spec.ts │ │ ├── custom-step-symbol-template-injection.component.ts │ │ └── custom-step-symbol-template-injection.module.ts │ ├── custom-step-symbol-template │ │ ├── custom-step-symbol-template.component.css │ │ ├── custom-step-symbol-template.component.html │ │ ├── custom-step-symbol-template.component.spec.ts │ │ ├── custom-step-symbol-template.component.ts │ │ └── custom-step-symbol-template.module.ts │ ├── custom-step-symbol │ │ ├── custom-step-symbol.component.css │ │ ├── custom-step-symbol.component.html │ │ ├── custom-step-symbol.component.spec.ts │ │ ├── custom-step-symbol.component.ts │ │ └── custom-step-symbol.module.ts │ ├── custom-step-title-template-injection │ │ ├── custom-step-title-template-injection.component.css │ │ ├── custom-step-title-template-injection.component.html │ │ ├── custom-step-title-template-injection.component.spec.ts │ │ ├── custom-step-title-template-injection.component.ts │ │ └── custom-step-title-template-injection.module.ts │ ├── custom-step-title-template │ │ ├── custom-step-title-template.component.css │ │ ├── custom-step-title-template.component.html │ │ ├── custom-step-title-template.component.spec.ts │ │ ├── custom-step-title-template.component.ts │ │ └── custom-step-title-template.module.ts │ ├── default-navigation-mode │ │ ├── default-navigation-mode.component.css │ │ ├── default-navigation-mode.component.html │ │ ├── default-navigation-mode.component.spec.ts │ │ ├── default-navigation-mode.component.ts │ │ └── default-navigation-mode.module.ts │ ├── default-wizard-step │ │ ├── default-wizard-step.component.css │ │ ├── default-wizard-step.component.html │ │ ├── default-wizard-step.component.spec.ts │ │ ├── default-wizard-step.component.ts │ │ └── default-wizard-step.module.ts │ ├── demo │ │ ├── demo.component.html │ │ ├── demo.component.scss │ │ ├── demo.component.spec.ts │ │ └── demo.component.ts │ ├── free-navigation-mode │ │ ├── free-navigation-mode.component.html │ │ ├── free-navigation-mode.component.scss │ │ ├── free-navigation-mode.component.spec.ts │ │ ├── free-navigation-mode.component.ts │ │ └── free-navigation-mode.module.ts │ ├── initially-completed-wizard-steps │ │ ├── initially-completed-wizard-steps.component.css │ │ ├── initially-completed-wizard-steps.component.html │ │ ├── initially-completed-wizard-steps.component.ts │ │ ├── initially-completed-wizard-steps.module.ts │ │ └── initially-completed-wizard-steps.spec.ts │ ├── large-empty-symbols │ │ ├── large-empty-symbols.component.css │ │ ├── large-empty-symbols.component.html │ │ ├── large-empty-symbols.component.spec.ts │ │ ├── large-empty-symbols.component.ts │ │ └── large-empty-symbols.module.ts │ ├── large-empty │ │ ├── large-empty.component.css │ │ ├── large-empty.component.html │ │ ├── large-empty.component.spec.ts │ │ ├── large-empty.component.ts │ │ └── large-empty.module.ts │ ├── large-filled-symbols │ │ ├── large-filled-symbols.component.css │ │ ├── large-filled-symbols.component.html │ │ ├── large-filled-symbols.component.spec.ts │ │ ├── large-filled-symbols.component.ts │ │ └── large-filled-symbols.module.ts │ ├── large-filled │ │ ├── large-filled.component.css │ │ ├── large-filled.component.html │ │ ├── large-filled.component.spec.ts │ │ ├── large-filled.component.ts │ │ └── large-filled.module.ts │ ├── location-bottom │ │ ├── location-bottom.component.css │ │ ├── location-bottom.component.html │ │ ├── location-bottom.component.spec.ts │ │ ├── location-bottom.component.ts │ │ └── location-bottom.module.ts │ ├── location-left │ │ ├── location-left.component.css │ │ ├── location-left.component.html │ │ ├── location-left.component.spec.ts │ │ ├── location-left.component.ts │ │ └── location-left.module.ts │ ├── location-right │ │ ├── location-right.component.css │ │ ├── location-right.component.html │ │ ├── location-right.component.spec.ts │ │ ├── location-right.component.ts │ │ └── location-right.module.ts │ ├── location-top │ │ ├── location-top.component.css │ │ ├── location-top.component.html │ │ ├── location-top.component.spec.ts │ │ ├── location-top.component.ts │ │ └── location-top.module.ts │ ├── nested-wizards │ │ ├── inner-wizard.component.css │ │ ├── inner-wizard.component.html │ │ ├── inner-wizard.component.spec.ts │ │ ├── inner-wizard.component.ts │ │ ├── nested-wizards.component.css │ │ ├── nested-wizards.component.html │ │ ├── nested-wizards.component.spec.ts │ │ ├── nested-wizards.component.ts │ │ └── nested-wizards.module.ts │ ├── optional-steps │ │ ├── optional-steps.component.css │ │ ├── optional-steps.component.html │ │ ├── optional-steps.component.spec.ts │ │ ├── optional-steps.component.ts │ │ └── optional-steps.module.ts │ ├── reset-wizard │ │ ├── reset-wizard.component.css │ │ ├── reset-wizard.component.html │ │ ├── reset-wizard.component.spec.ts │ │ ├── reset-wizard.component.ts │ │ └── reset-wizard.module.ts │ ├── reversed-navigation-bar │ │ ├── reversed-navigation-bar.component.css │ │ ├── reversed-navigation-bar.component.html │ │ ├── reversed-navigation-bar.component.spec.ts │ │ ├── reversed-navigation-bar.component.ts │ │ └── reversed-navigation-bar.module.ts │ ├── single-step-horizontal │ │ ├── single-step-horizontal.component.css │ │ ├── single-step-horizontal.component.html │ │ ├── single-step-horizontal.component.spec.ts │ │ ├── single-step-horizontal.component.ts │ │ └── single-step-horizontal.module.ts │ ├── single-step-vertical │ │ ├── single-step-vertical.component.css │ │ ├── single-step-vertical.component.html │ │ ├── single-step-vertical.component.spec.ts │ │ ├── single-step-vertical.component.ts │ │ └── single-step-vertical.module.ts │ ├── small │ │ ├── small.component.css │ │ ├── small.component.html │ │ ├── small.component.spec.ts │ │ ├── small.component.ts │ │ └── small.module.ts │ ├── step-enter-event │ │ ├── step-enter-event.component.css │ │ ├── step-enter-event.component.html │ │ ├── step-enter-event.component.spec.ts │ │ ├── step-enter-event.component.ts │ │ └── step-enter-event.module.ts │ ├── step-exit-event │ │ ├── step-exit-event.component.css │ │ ├── step-exit-event.component.html │ │ ├── step-exit-event.component.spec.ts │ │ ├── step-exit-event.component.ts │ │ └── step-exit-event.module.ts │ ├── wizard-step-directives │ │ ├── wizard-step-directives.component.css │ │ ├── wizard-step-directives.component.html │ │ ├── wizard-step-directives.component.spec.ts │ │ ├── wizard-step-directives.component.ts │ │ └── wizard-step-directives.module.ts │ └── wizard-step-ngfor │ │ ├── wizard-step-ngfor.component.css │ │ ├── wizard-step-ngfor.component.html │ │ ├── wizard-step-ngfor.component.spec.ts │ │ ├── wizard-step-ngfor.component.ts │ │ └── wizard-step-ngfor.module.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts └── typings.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/angular.json -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/package.json -------------------------------------------------------------------------------- /scripts/install-angular-archwizard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/scripts/install-angular-archwizard.sh -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/arbitrary-step-navigation/arbitrary-step-navigation.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/arbitrary-step-navigation/arbitrary-step-navigation.component.css -------------------------------------------------------------------------------- /src/app/arbitrary-step-navigation/arbitrary-step-navigation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/arbitrary-step-navigation/arbitrary-step-navigation.component.html -------------------------------------------------------------------------------- /src/app/arbitrary-step-navigation/arbitrary-step-navigation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/arbitrary-step-navigation/arbitrary-step-navigation.component.spec.ts -------------------------------------------------------------------------------- /src/app/arbitrary-step-navigation/arbitrary-step-navigation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/arbitrary-step-navigation/arbitrary-step-navigation.component.ts -------------------------------------------------------------------------------- /src/app/arbitrary-step-navigation/arbitrary-step-navigation.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/arbitrary-step-navigation/arbitrary-step-navigation.module.ts -------------------------------------------------------------------------------- /src/app/basic-step-symbol/basic-step-symbol.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/basic-step-symbol/basic-step-symbol.component.css -------------------------------------------------------------------------------- /src/app/basic-step-symbol/basic-step-symbol.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/basic-step-symbol/basic-step-symbol.component.html -------------------------------------------------------------------------------- /src/app/basic-step-symbol/basic-step-symbol.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/basic-step-symbol/basic-step-symbol.component.spec.ts -------------------------------------------------------------------------------- /src/app/basic-step-symbol/basic-step-symbol.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/basic-step-symbol/basic-step-symbol.component.ts -------------------------------------------------------------------------------- /src/app/basic-step-symbol/basic-step-symbol.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/basic-step-symbol/basic-step-symbol.module.ts -------------------------------------------------------------------------------- /src/app/basic/basic.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/basic/basic.component.css -------------------------------------------------------------------------------- /src/app/basic/basic.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/basic/basic.component.html -------------------------------------------------------------------------------- /src/app/basic/basic.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/basic/basic.component.spec.ts -------------------------------------------------------------------------------- /src/app/basic/basic.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/basic/basic.component.ts -------------------------------------------------------------------------------- /src/app/basic/basic.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/basic/basic.module.ts -------------------------------------------------------------------------------- /src/app/can-enter-event/can-enter-event.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/can-enter-event/can-enter-event.component.css -------------------------------------------------------------------------------- /src/app/can-enter-event/can-enter-event.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/can-enter-event/can-enter-event.component.html -------------------------------------------------------------------------------- /src/app/can-enter-event/can-enter-event.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/can-enter-event/can-enter-event.component.spec.ts -------------------------------------------------------------------------------- /src/app/can-enter-event/can-enter-event.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/can-enter-event/can-enter-event.component.ts -------------------------------------------------------------------------------- /src/app/can-enter-event/can-enter-event.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/can-enter-event/can-enter-event.module.ts -------------------------------------------------------------------------------- /src/app/can-exit-event/can-exit-event.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/can-exit-event/can-exit-event.component.css -------------------------------------------------------------------------------- /src/app/can-exit-event/can-exit-event.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/can-exit-event/can-exit-event.component.html -------------------------------------------------------------------------------- /src/app/can-exit-event/can-exit-event.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/can-exit-event/can-exit-event.component.spec.ts -------------------------------------------------------------------------------- /src/app/can-exit-event/can-exit-event.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/can-exit-event/can-exit-event.component.ts -------------------------------------------------------------------------------- /src/app/can-exit-event/can-exit-event.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/can-exit-event/can-exit-event.module.ts -------------------------------------------------------------------------------- /src/app/completion-step-back-navigation/completion-step-back-navigation.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/completion-step-back-navigation/completion-step-back-navigation.component.css -------------------------------------------------------------------------------- /src/app/completion-step-back-navigation/completion-step-back-navigation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/completion-step-back-navigation/completion-step-back-navigation.component.html -------------------------------------------------------------------------------- /src/app/completion-step-back-navigation/completion-step-back-navigation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/completion-step-back-navigation/completion-step-back-navigation.component.spec.ts -------------------------------------------------------------------------------- /src/app/completion-step-back-navigation/completion-step-back-navigation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/completion-step-back-navigation/completion-step-back-navigation.component.ts -------------------------------------------------------------------------------- /src/app/completion-step-back-navigation/completion-step-back-navigation.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/completion-step-back-navigation/completion-step-back-navigation.module.ts -------------------------------------------------------------------------------- /src/app/completion-step-basic/completion-step-basic.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/completion-step-basic/completion-step-basic.component.css -------------------------------------------------------------------------------- /src/app/completion-step-basic/completion-step-basic.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/completion-step-basic/completion-step-basic.component.html -------------------------------------------------------------------------------- /src/app/completion-step-basic/completion-step-basic.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/completion-step-basic/completion-step-basic.component.spec.ts -------------------------------------------------------------------------------- /src/app/completion-step-basic/completion-step-basic.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/completion-step-basic/completion-step-basic.component.ts -------------------------------------------------------------------------------- /src/app/completion-step-basic/completion-step-basic.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/completion-step-basic/completion-step-basic.module.ts -------------------------------------------------------------------------------- /src/app/configurable-navigation-mode/configurable-navigation-mode.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/configurable-navigation-mode/configurable-navigation-mode.component.css -------------------------------------------------------------------------------- /src/app/configurable-navigation-mode/configurable-navigation-mode.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/configurable-navigation-mode/configurable-navigation-mode.component.html -------------------------------------------------------------------------------- /src/app/configurable-navigation-mode/configurable-navigation-mode.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/configurable-navigation-mode/configurable-navigation-mode.component.spec.ts -------------------------------------------------------------------------------- /src/app/configurable-navigation-mode/configurable-navigation-mode.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/configurable-navigation-mode/configurable-navigation-mode.component.ts -------------------------------------------------------------------------------- /src/app/configurable-navigation-mode/configurable-navigation-mode.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/configurable-navigation-mode/configurable-navigation-mode.module.ts -------------------------------------------------------------------------------- /src/app/custom-global-css/custom-global-css.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-global-css/custom-global-css.component.html -------------------------------------------------------------------------------- /src/app/custom-global-css/custom-global-css.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-global-css/custom-global-css.component.scss -------------------------------------------------------------------------------- /src/app/custom-global-css/custom-global-css.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-global-css/custom-global-css.component.spec.ts -------------------------------------------------------------------------------- /src/app/custom-global-css/custom-global-css.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-global-css/custom-global-css.component.ts -------------------------------------------------------------------------------- /src/app/custom-global-css/custom-global-css.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-global-css/custom-global-css.module.ts -------------------------------------------------------------------------------- /src/app/custom-global-scss/custom-global-scss.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-global-scss/custom-global-scss.component.html -------------------------------------------------------------------------------- /src/app/custom-global-scss/custom-global-scss.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-global-scss/custom-global-scss.component.scss -------------------------------------------------------------------------------- /src/app/custom-global-scss/custom-global-scss.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-global-scss/custom-global-scss.component.spec.ts -------------------------------------------------------------------------------- /src/app/custom-global-scss/custom-global-scss.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-global-scss/custom-global-scss.component.ts -------------------------------------------------------------------------------- /src/app/custom-global-scss/custom-global-scss.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-global-scss/custom-global-scss.module.ts -------------------------------------------------------------------------------- /src/app/custom-line-css/custom-line-css.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-line-css/custom-line-css.component.html -------------------------------------------------------------------------------- /src/app/custom-line-css/custom-line-css.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-line-css/custom-line-css.component.scss -------------------------------------------------------------------------------- /src/app/custom-line-css/custom-line-css.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-line-css/custom-line-css.component.spec.ts -------------------------------------------------------------------------------- /src/app/custom-line-css/custom-line-css.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-line-css/custom-line-css.component.ts -------------------------------------------------------------------------------- /src/app/custom-line-css/custom-line-css.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-line-css/custom-line-css.module.ts -------------------------------------------------------------------------------- /src/app/custom-navigation-mode/custom-navigation-mode.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-navigation-mode/custom-navigation-mode.component.css -------------------------------------------------------------------------------- /src/app/custom-navigation-mode/custom-navigation-mode.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-navigation-mode/custom-navigation-mode.component.html -------------------------------------------------------------------------------- /src/app/custom-navigation-mode/custom-navigation-mode.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-navigation-mode/custom-navigation-mode.component.spec.ts -------------------------------------------------------------------------------- /src/app/custom-navigation-mode/custom-navigation-mode.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-navigation-mode/custom-navigation-mode.component.ts -------------------------------------------------------------------------------- /src/app/custom-navigation-mode/custom-navigation-mode.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-navigation-mode/custom-navigation-mode.module.ts -------------------------------------------------------------------------------- /src/app/custom-navigation-mode/custom-navigation-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-navigation-mode/custom-navigation-mode.ts -------------------------------------------------------------------------------- /src/app/custom-step-component/custom-step-component.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-component/custom-step-component.component.css -------------------------------------------------------------------------------- /src/app/custom-step-component/custom-step-component.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-component/custom-step-component.component.html -------------------------------------------------------------------------------- /src/app/custom-step-component/custom-step-component.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-component/custom-step-component.component.ts -------------------------------------------------------------------------------- /src/app/custom-step-css/custom-step-css.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-css/custom-step-css.component.html -------------------------------------------------------------------------------- /src/app/custom-step-css/custom-step-css.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-css/custom-step-css.component.scss -------------------------------------------------------------------------------- /src/app/custom-step-css/custom-step-css.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-css/custom-step-css.component.spec.ts -------------------------------------------------------------------------------- /src/app/custom-step-css/custom-step-css.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-css/custom-step-css.component.ts -------------------------------------------------------------------------------- /src/app/custom-step-css/custom-step-css.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-css/custom-step-css.module.ts -------------------------------------------------------------------------------- /src/app/custom-step-symbol-template-injection/custom-step-symbol-template-injection.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol-template-injection/custom-step-symbol-template-injection.component.css -------------------------------------------------------------------------------- /src/app/custom-step-symbol-template-injection/custom-step-symbol-template-injection.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol-template-injection/custom-step-symbol-template-injection.component.html -------------------------------------------------------------------------------- /src/app/custom-step-symbol-template-injection/custom-step-symbol-template-injection.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol-template-injection/custom-step-symbol-template-injection.component.spec.ts -------------------------------------------------------------------------------- /src/app/custom-step-symbol-template-injection/custom-step-symbol-template-injection.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol-template-injection/custom-step-symbol-template-injection.component.ts -------------------------------------------------------------------------------- /src/app/custom-step-symbol-template-injection/custom-step-symbol-template-injection.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol-template-injection/custom-step-symbol-template-injection.module.ts -------------------------------------------------------------------------------- /src/app/custom-step-symbol-template/custom-step-symbol-template.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol-template/custom-step-symbol-template.component.css -------------------------------------------------------------------------------- /src/app/custom-step-symbol-template/custom-step-symbol-template.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol-template/custom-step-symbol-template.component.html -------------------------------------------------------------------------------- /src/app/custom-step-symbol-template/custom-step-symbol-template.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol-template/custom-step-symbol-template.component.spec.ts -------------------------------------------------------------------------------- /src/app/custom-step-symbol-template/custom-step-symbol-template.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol-template/custom-step-symbol-template.component.ts -------------------------------------------------------------------------------- /src/app/custom-step-symbol-template/custom-step-symbol-template.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol-template/custom-step-symbol-template.module.ts -------------------------------------------------------------------------------- /src/app/custom-step-symbol/custom-step-symbol.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol/custom-step-symbol.component.css -------------------------------------------------------------------------------- /src/app/custom-step-symbol/custom-step-symbol.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol/custom-step-symbol.component.html -------------------------------------------------------------------------------- /src/app/custom-step-symbol/custom-step-symbol.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol/custom-step-symbol.component.spec.ts -------------------------------------------------------------------------------- /src/app/custom-step-symbol/custom-step-symbol.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol/custom-step-symbol.component.ts -------------------------------------------------------------------------------- /src/app/custom-step-symbol/custom-step-symbol.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-symbol/custom-step-symbol.module.ts -------------------------------------------------------------------------------- /src/app/custom-step-title-template-injection/custom-step-title-template-injection.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-title-template-injection/custom-step-title-template-injection.component.css -------------------------------------------------------------------------------- /src/app/custom-step-title-template-injection/custom-step-title-template-injection.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-title-template-injection/custom-step-title-template-injection.component.html -------------------------------------------------------------------------------- /src/app/custom-step-title-template-injection/custom-step-title-template-injection.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-title-template-injection/custom-step-title-template-injection.component.spec.ts -------------------------------------------------------------------------------- /src/app/custom-step-title-template-injection/custom-step-title-template-injection.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-title-template-injection/custom-step-title-template-injection.component.ts -------------------------------------------------------------------------------- /src/app/custom-step-title-template-injection/custom-step-title-template-injection.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-title-template-injection/custom-step-title-template-injection.module.ts -------------------------------------------------------------------------------- /src/app/custom-step-title-template/custom-step-title-template.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-title-template/custom-step-title-template.component.css -------------------------------------------------------------------------------- /src/app/custom-step-title-template/custom-step-title-template.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-title-template/custom-step-title-template.component.html -------------------------------------------------------------------------------- /src/app/custom-step-title-template/custom-step-title-template.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-title-template/custom-step-title-template.component.spec.ts -------------------------------------------------------------------------------- /src/app/custom-step-title-template/custom-step-title-template.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-title-template/custom-step-title-template.component.ts -------------------------------------------------------------------------------- /src/app/custom-step-title-template/custom-step-title-template.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/custom-step-title-template/custom-step-title-template.module.ts -------------------------------------------------------------------------------- /src/app/default-navigation-mode/default-navigation-mode.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/default-navigation-mode/default-navigation-mode.component.css -------------------------------------------------------------------------------- /src/app/default-navigation-mode/default-navigation-mode.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/default-navigation-mode/default-navigation-mode.component.html -------------------------------------------------------------------------------- /src/app/default-navigation-mode/default-navigation-mode.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/default-navigation-mode/default-navigation-mode.component.spec.ts -------------------------------------------------------------------------------- /src/app/default-navigation-mode/default-navigation-mode.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/default-navigation-mode/default-navigation-mode.component.ts -------------------------------------------------------------------------------- /src/app/default-navigation-mode/default-navigation-mode.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/default-navigation-mode/default-navigation-mode.module.ts -------------------------------------------------------------------------------- /src/app/default-wizard-step/default-wizard-step.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/default-wizard-step/default-wizard-step.component.css -------------------------------------------------------------------------------- /src/app/default-wizard-step/default-wizard-step.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/default-wizard-step/default-wizard-step.component.html -------------------------------------------------------------------------------- /src/app/default-wizard-step/default-wizard-step.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/default-wizard-step/default-wizard-step.component.spec.ts -------------------------------------------------------------------------------- /src/app/default-wizard-step/default-wizard-step.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/default-wizard-step/default-wizard-step.component.ts -------------------------------------------------------------------------------- /src/app/default-wizard-step/default-wizard-step.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/default-wizard-step/default-wizard-step.module.ts -------------------------------------------------------------------------------- /src/app/demo/demo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/demo/demo.component.html -------------------------------------------------------------------------------- /src/app/demo/demo.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/demo/demo.component.scss -------------------------------------------------------------------------------- /src/app/demo/demo.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/demo/demo.component.spec.ts -------------------------------------------------------------------------------- /src/app/demo/demo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/demo/demo.component.ts -------------------------------------------------------------------------------- /src/app/free-navigation-mode/free-navigation-mode.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/free-navigation-mode/free-navigation-mode.component.html -------------------------------------------------------------------------------- /src/app/free-navigation-mode/free-navigation-mode.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/free-navigation-mode/free-navigation-mode.component.scss -------------------------------------------------------------------------------- /src/app/free-navigation-mode/free-navigation-mode.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/free-navigation-mode/free-navigation-mode.component.spec.ts -------------------------------------------------------------------------------- /src/app/free-navigation-mode/free-navigation-mode.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/free-navigation-mode/free-navigation-mode.component.ts -------------------------------------------------------------------------------- /src/app/free-navigation-mode/free-navigation-mode.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/free-navigation-mode/free-navigation-mode.module.ts -------------------------------------------------------------------------------- /src/app/initially-completed-wizard-steps/initially-completed-wizard-steps.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/initially-completed-wizard-steps/initially-completed-wizard-steps.component.css -------------------------------------------------------------------------------- /src/app/initially-completed-wizard-steps/initially-completed-wizard-steps.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/initially-completed-wizard-steps/initially-completed-wizard-steps.component.html -------------------------------------------------------------------------------- /src/app/initially-completed-wizard-steps/initially-completed-wizard-steps.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/initially-completed-wizard-steps/initially-completed-wizard-steps.component.ts -------------------------------------------------------------------------------- /src/app/initially-completed-wizard-steps/initially-completed-wizard-steps.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/initially-completed-wizard-steps/initially-completed-wizard-steps.module.ts -------------------------------------------------------------------------------- /src/app/initially-completed-wizard-steps/initially-completed-wizard-steps.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/initially-completed-wizard-steps/initially-completed-wizard-steps.spec.ts -------------------------------------------------------------------------------- /src/app/large-empty-symbols/large-empty-symbols.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-empty-symbols/large-empty-symbols.component.css -------------------------------------------------------------------------------- /src/app/large-empty-symbols/large-empty-symbols.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-empty-symbols/large-empty-symbols.component.html -------------------------------------------------------------------------------- /src/app/large-empty-symbols/large-empty-symbols.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-empty-symbols/large-empty-symbols.component.spec.ts -------------------------------------------------------------------------------- /src/app/large-empty-symbols/large-empty-symbols.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-empty-symbols/large-empty-symbols.component.ts -------------------------------------------------------------------------------- /src/app/large-empty-symbols/large-empty-symbols.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-empty-symbols/large-empty-symbols.module.ts -------------------------------------------------------------------------------- /src/app/large-empty/large-empty.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-empty/large-empty.component.css -------------------------------------------------------------------------------- /src/app/large-empty/large-empty.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-empty/large-empty.component.html -------------------------------------------------------------------------------- /src/app/large-empty/large-empty.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-empty/large-empty.component.spec.ts -------------------------------------------------------------------------------- /src/app/large-empty/large-empty.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-empty/large-empty.component.ts -------------------------------------------------------------------------------- /src/app/large-empty/large-empty.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-empty/large-empty.module.ts -------------------------------------------------------------------------------- /src/app/large-filled-symbols/large-filled-symbols.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-filled-symbols/large-filled-symbols.component.css -------------------------------------------------------------------------------- /src/app/large-filled-symbols/large-filled-symbols.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-filled-symbols/large-filled-symbols.component.html -------------------------------------------------------------------------------- /src/app/large-filled-symbols/large-filled-symbols.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-filled-symbols/large-filled-symbols.component.spec.ts -------------------------------------------------------------------------------- /src/app/large-filled-symbols/large-filled-symbols.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-filled-symbols/large-filled-symbols.component.ts -------------------------------------------------------------------------------- /src/app/large-filled-symbols/large-filled-symbols.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-filled-symbols/large-filled-symbols.module.ts -------------------------------------------------------------------------------- /src/app/large-filled/large-filled.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-filled/large-filled.component.css -------------------------------------------------------------------------------- /src/app/large-filled/large-filled.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-filled/large-filled.component.html -------------------------------------------------------------------------------- /src/app/large-filled/large-filled.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-filled/large-filled.component.spec.ts -------------------------------------------------------------------------------- /src/app/large-filled/large-filled.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-filled/large-filled.component.ts -------------------------------------------------------------------------------- /src/app/large-filled/large-filled.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/large-filled/large-filled.module.ts -------------------------------------------------------------------------------- /src/app/location-bottom/location-bottom.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-bottom/location-bottom.component.css -------------------------------------------------------------------------------- /src/app/location-bottom/location-bottom.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-bottom/location-bottom.component.html -------------------------------------------------------------------------------- /src/app/location-bottom/location-bottom.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-bottom/location-bottom.component.spec.ts -------------------------------------------------------------------------------- /src/app/location-bottom/location-bottom.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-bottom/location-bottom.component.ts -------------------------------------------------------------------------------- /src/app/location-bottom/location-bottom.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-bottom/location-bottom.module.ts -------------------------------------------------------------------------------- /src/app/location-left/location-left.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-left/location-left.component.css -------------------------------------------------------------------------------- /src/app/location-left/location-left.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-left/location-left.component.html -------------------------------------------------------------------------------- /src/app/location-left/location-left.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-left/location-left.component.spec.ts -------------------------------------------------------------------------------- /src/app/location-left/location-left.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-left/location-left.component.ts -------------------------------------------------------------------------------- /src/app/location-left/location-left.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-left/location-left.module.ts -------------------------------------------------------------------------------- /src/app/location-right/location-right.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-right/location-right.component.css -------------------------------------------------------------------------------- /src/app/location-right/location-right.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-right/location-right.component.html -------------------------------------------------------------------------------- /src/app/location-right/location-right.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-right/location-right.component.spec.ts -------------------------------------------------------------------------------- /src/app/location-right/location-right.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-right/location-right.component.ts -------------------------------------------------------------------------------- /src/app/location-right/location-right.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-right/location-right.module.ts -------------------------------------------------------------------------------- /src/app/location-top/location-top.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-top/location-top.component.css -------------------------------------------------------------------------------- /src/app/location-top/location-top.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-top/location-top.component.html -------------------------------------------------------------------------------- /src/app/location-top/location-top.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-top/location-top.component.spec.ts -------------------------------------------------------------------------------- /src/app/location-top/location-top.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-top/location-top.component.ts -------------------------------------------------------------------------------- /src/app/location-top/location-top.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/location-top/location-top.module.ts -------------------------------------------------------------------------------- /src/app/nested-wizards/inner-wizard.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/nested-wizards/inner-wizard.component.css -------------------------------------------------------------------------------- /src/app/nested-wizards/inner-wizard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/nested-wizards/inner-wizard.component.html -------------------------------------------------------------------------------- /src/app/nested-wizards/inner-wizard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/nested-wizards/inner-wizard.component.spec.ts -------------------------------------------------------------------------------- /src/app/nested-wizards/inner-wizard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/nested-wizards/inner-wizard.component.ts -------------------------------------------------------------------------------- /src/app/nested-wizards/nested-wizards.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/nested-wizards/nested-wizards.component.css -------------------------------------------------------------------------------- /src/app/nested-wizards/nested-wizards.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/nested-wizards/nested-wizards.component.html -------------------------------------------------------------------------------- /src/app/nested-wizards/nested-wizards.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/nested-wizards/nested-wizards.component.spec.ts -------------------------------------------------------------------------------- /src/app/nested-wizards/nested-wizards.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/nested-wizards/nested-wizards.component.ts -------------------------------------------------------------------------------- /src/app/nested-wizards/nested-wizards.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/nested-wizards/nested-wizards.module.ts -------------------------------------------------------------------------------- /src/app/optional-steps/optional-steps.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/optional-steps/optional-steps.component.css -------------------------------------------------------------------------------- /src/app/optional-steps/optional-steps.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/optional-steps/optional-steps.component.html -------------------------------------------------------------------------------- /src/app/optional-steps/optional-steps.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/optional-steps/optional-steps.component.spec.ts -------------------------------------------------------------------------------- /src/app/optional-steps/optional-steps.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/optional-steps/optional-steps.component.ts -------------------------------------------------------------------------------- /src/app/optional-steps/optional-steps.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/optional-steps/optional-steps.module.ts -------------------------------------------------------------------------------- /src/app/reset-wizard/reset-wizard.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/reset-wizard/reset-wizard.component.css -------------------------------------------------------------------------------- /src/app/reset-wizard/reset-wizard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/reset-wizard/reset-wizard.component.html -------------------------------------------------------------------------------- /src/app/reset-wizard/reset-wizard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/reset-wizard/reset-wizard.component.spec.ts -------------------------------------------------------------------------------- /src/app/reset-wizard/reset-wizard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/reset-wizard/reset-wizard.component.ts -------------------------------------------------------------------------------- /src/app/reset-wizard/reset-wizard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/reset-wizard/reset-wizard.module.ts -------------------------------------------------------------------------------- /src/app/reversed-navigation-bar/reversed-navigation-bar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/reversed-navigation-bar/reversed-navigation-bar.component.css -------------------------------------------------------------------------------- /src/app/reversed-navigation-bar/reversed-navigation-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/reversed-navigation-bar/reversed-navigation-bar.component.html -------------------------------------------------------------------------------- /src/app/reversed-navigation-bar/reversed-navigation-bar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/reversed-navigation-bar/reversed-navigation-bar.component.spec.ts -------------------------------------------------------------------------------- /src/app/reversed-navigation-bar/reversed-navigation-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/reversed-navigation-bar/reversed-navigation-bar.component.ts -------------------------------------------------------------------------------- /src/app/reversed-navigation-bar/reversed-navigation-bar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/reversed-navigation-bar/reversed-navigation-bar.module.ts -------------------------------------------------------------------------------- /src/app/single-step-horizontal/single-step-horizontal.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/single-step-horizontal/single-step-horizontal.component.css -------------------------------------------------------------------------------- /src/app/single-step-horizontal/single-step-horizontal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/single-step-horizontal/single-step-horizontal.component.html -------------------------------------------------------------------------------- /src/app/single-step-horizontal/single-step-horizontal.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/single-step-horizontal/single-step-horizontal.component.spec.ts -------------------------------------------------------------------------------- /src/app/single-step-horizontal/single-step-horizontal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/single-step-horizontal/single-step-horizontal.component.ts -------------------------------------------------------------------------------- /src/app/single-step-horizontal/single-step-horizontal.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/single-step-horizontal/single-step-horizontal.module.ts -------------------------------------------------------------------------------- /src/app/single-step-vertical/single-step-vertical.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/single-step-vertical/single-step-vertical.component.css -------------------------------------------------------------------------------- /src/app/single-step-vertical/single-step-vertical.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/single-step-vertical/single-step-vertical.component.html -------------------------------------------------------------------------------- /src/app/single-step-vertical/single-step-vertical.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/single-step-vertical/single-step-vertical.component.spec.ts -------------------------------------------------------------------------------- /src/app/single-step-vertical/single-step-vertical.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/single-step-vertical/single-step-vertical.component.ts -------------------------------------------------------------------------------- /src/app/single-step-vertical/single-step-vertical.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/single-step-vertical/single-step-vertical.module.ts -------------------------------------------------------------------------------- /src/app/small/small.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/small/small.component.css -------------------------------------------------------------------------------- /src/app/small/small.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/small/small.component.html -------------------------------------------------------------------------------- /src/app/small/small.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/small/small.component.spec.ts -------------------------------------------------------------------------------- /src/app/small/small.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/small/small.component.ts -------------------------------------------------------------------------------- /src/app/small/small.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/small/small.module.ts -------------------------------------------------------------------------------- /src/app/step-enter-event/step-enter-event.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/step-enter-event/step-enter-event.component.css -------------------------------------------------------------------------------- /src/app/step-enter-event/step-enter-event.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/step-enter-event/step-enter-event.component.html -------------------------------------------------------------------------------- /src/app/step-enter-event/step-enter-event.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/step-enter-event/step-enter-event.component.spec.ts -------------------------------------------------------------------------------- /src/app/step-enter-event/step-enter-event.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/step-enter-event/step-enter-event.component.ts -------------------------------------------------------------------------------- /src/app/step-enter-event/step-enter-event.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/step-enter-event/step-enter-event.module.ts -------------------------------------------------------------------------------- /src/app/step-exit-event/step-exit-event.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/step-exit-event/step-exit-event.component.css -------------------------------------------------------------------------------- /src/app/step-exit-event/step-exit-event.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/step-exit-event/step-exit-event.component.html -------------------------------------------------------------------------------- /src/app/step-exit-event/step-exit-event.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/step-exit-event/step-exit-event.component.spec.ts -------------------------------------------------------------------------------- /src/app/step-exit-event/step-exit-event.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/step-exit-event/step-exit-event.component.ts -------------------------------------------------------------------------------- /src/app/step-exit-event/step-exit-event.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/step-exit-event/step-exit-event.module.ts -------------------------------------------------------------------------------- /src/app/wizard-step-directives/wizard-step-directives.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/wizard-step-directives/wizard-step-directives.component.css -------------------------------------------------------------------------------- /src/app/wizard-step-directives/wizard-step-directives.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/wizard-step-directives/wizard-step-directives.component.html -------------------------------------------------------------------------------- /src/app/wizard-step-directives/wizard-step-directives.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/wizard-step-directives/wizard-step-directives.component.spec.ts -------------------------------------------------------------------------------- /src/app/wizard-step-directives/wizard-step-directives.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/wizard-step-directives/wizard-step-directives.component.ts -------------------------------------------------------------------------------- /src/app/wizard-step-directives/wizard-step-directives.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/wizard-step-directives/wizard-step-directives.module.ts -------------------------------------------------------------------------------- /src/app/wizard-step-ngfor/wizard-step-ngfor.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/wizard-step-ngfor/wizard-step-ngfor.component.css -------------------------------------------------------------------------------- /src/app/wizard-step-ngfor/wizard-step-ngfor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/wizard-step-ngfor/wizard-step-ngfor.component.html -------------------------------------------------------------------------------- /src/app/wizard-step-ngfor/wizard-step-ngfor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/wizard-step-ngfor/wizard-step-ngfor.component.spec.ts -------------------------------------------------------------------------------- /src/app/wizard-step-ngfor/wizard-step-ngfor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/wizard-step-ngfor/wizard-step-ngfor.component.ts -------------------------------------------------------------------------------- /src/app/wizard-step-ngfor/wizard-step-ngfor.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/app/wizard-step-ngfor/wizard-step-ngfor.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madoar/angular-archwizard-demo/HEAD/tslint.json --------------------------------------------------------------------------------