Skip to content

Releases: madoar/angular-archwizard

v7.0.0

21 Feb 17:23
0b152e5
Compare
Choose a tag to compare

Changes

  • enhancement: update Angular to version 11 (#317, #328)
  • enhancement: update dependencies (#318, #322, #325, #326)
  • enhancement: remove unnecessary input in aw-wizard-navigation-bar (#323)
  • enhancement: cleanup tsconfig configurations
  • enhancement: rename tsconfig.base.json to tsconfig.json (#333)
  • enhancement: convert file from dos line endings to unix line endings
  • fix: swap defaults of navigateBackward and navigateForward of the [awNavigationMode] directive (#319)
  • ci: replace Travis CI with GitHub Actions workflows (#334)
  • docs: add an angular version compatibility matrix to docs (#320)

v6.1.0

10 May 19:22
204bdb5
Compare
Choose a tag to compare

Changes

  • add support for right-to-left direction (#286)
  • update dependency versions (#291)
  • cleanup the README (#290)

v5.0.1

10 May 19:20
Compare
Choose a tag to compare

Changes

  • fix the SCSS deprecation warnings (#269)
  • add support for right-to-left direction (#286)

v6.0.1

20 Apr 20:40
36108c7
Compare
Choose a tag to compare

Changes

  • fix a bug that broke the wizard when Ivy is disabled in an application (#282)

v6.0.0

08 Mar 12:44
be038e9
Compare
Choose a tag to compare

Breaking Changes

  • update to Angular 9 (#262)
  • change :before to :after (#252)
  • advanced style customization (#235)

Changes

  • update dependency versions (#260, #268)
  • cleanup of configuration files (#245, #259)
  • inject the wizard steps in the ng-template environments of the awWizardStepSymbol and awWizardStepTitle directives (#253)
  • add support for marking the awOptionalStep directive as optional (#254)
  • call the reset method during the next tick instead of in the ngAfterContentInit lifecycle phase
  • improvements to the documentation
  • many other improvements and fixes

v5.0.0

11 Aug 17:58
6aad9dc
Compare
Choose a tag to compare

Changes

  • update dependency versions (#220, #227)
  • refactor css classes of wizard step indicators (#181)
  • refactor hierarchy of NavigationMode classes (#166, #206, #203, #211, #228)
  • add gitpod support (#204)
  • migrate from less to scss (#200)
  • export separate file with scss variables, functions and mixins for library users (#217)
  • add [awCompletedStep] directive to mark steps as completed by default (#218)
  • many other changes

v4.0.0

10 Mar 16:42
Compare
Choose a tag to compare

Changes

  • make the complete step indicators clickable (#147)
  • add a template for the step symbols (#149)
  • update to Angular 7 (while retaining compatibility for Angular 5 - 7 projects)
  • refactor navigation bar stylesheets (#161)
  • improve the barrel export (fixes #131)
  • apply the [stepId] of the wizard steps as ids in the navigation bar (#186)
  • fix documentation bugs

v3.0.0

12 Apr 09:02
173c1b9
Compare
Choose a tag to compare

Changes

  • rename the project from ng2-archwizard to angular-archwizard (#52)
  • add support for angular 5 (#96, #84)
  • update dev dependencies
  • introduce a new aw prefix for the components and directives (#90)
  • enable custom stylesheets for the look and feel of the wizard steps and and the navigation bar (#27, #92)
  • replace the custom build script with ng-packagr (#88)
  • fix a bug with the reversal of the navigation bar direction (#109)
  • change the way parameters are passed to the awGoToStep directive (#102)
  • add a stepId input to the wizard steps. This stepId value can then be used with the awGoToStep to navigate to the step with the corresponding id (#83, #102)
  • change some input values of the wizard to be updatable after instantiation (i.e. defaultStepIndex, disableNavigationBar and the navigation mode) (#31, #70, 75, #95)
  • change the way a navigation symbol is set. (#104)

v2.1.0

11 Oct 15:55
Compare
Choose a tag to compare
  • Modify/Improve the content inside README.md
  • Remove the problematic directive selectors reset, selected and optional
  • Add a new input to the wizard component, which makes it possible to reverse the steps inside the navigation bar

v2.0.0

29 Sep 09:30
Compare
Choose a tag to compare
  • Add a total of three navigation modes: strict, semi-strict, free
  • Add a canEnter input to the wizard steps
  • Add an input to specify the default wizard step, which is entered during initialization
  • Add a directive, which can be added to a wizard step, which specifies, that the step should be entered during initialization
  • Add an input to the wizard component, which allows the deactivation of the navigation in the navigation bar
  • Rename the title input of the wizard steps to stepTitle
  • Rename index.ts to index.js
  • Allow Promise<boolean> return values from canEnter and canExit input functions
  • Add a new resetWizard directive
  • Refactoring
  • Other improvements