Apex Designer Documentation
What's New
Getting Started
Projects
Business Objects
Processes
User Interfaces
App Behaviors
Files
Dependencies
Project Settings
Libraries
Patterns and Best Practices
App Showcase
Frequently Asked Questions

Upgrade To Angular 17 From Angular 14

Blank Profile Image
Written by Ashish Gupta
Updated 2 months ago
3 min read

While direct upgrades to the existing projects are feasible, for major transitions, employing the following method ensures a smoother transition:

  1. Create an Angular 14 branch reflecting your current production release, allowing for any necessary hotfixes in your Angular 14 version during the migration.
  2. Select an existing Angular 14 branch to serve as the starting point for migrating to Angular 17.
  3. Follow the steps below to migrate your branch from Angular 14 to Angular 17.
  4. Address all encountered issues within this branch found during the build process or testing.
  5. Upon completion, merge the changes back into the source project.

Upgrade Libraries

    1. From your Dependencies Side Navigation option, Upgrade the libraries that use Angular 14.
      Apex libraries
    2. In the above example, the libraries that would need to be upgraded are:
      • Angular Base Library
      • Angular Material
      • Apex Dynamic Components
      • Camunda 7 Library
      • Cognito Angular
      • Notification Library
      • Apex Support Library
    3. For each library to be upgraded, change the Version Range to ~17.0.0, and click the "Apply Version Range" button. This will update all the Angular related libraries to version 17.
      Update library version
    4. Update your project styles (SCSS) to apply the new updated syntax by going to your project's Settings page, and select Styles (SCSS). You need to replace the following lines:
              $app-primary: mat-palette($md-blue);
              $app-accent: mat-palette($md-green);
              $app-warn: mat-palette($mat-red);
      
              $app-theme: mat-light-theme($app-primary, $app-accent, $app-warn);
      
              @include angular-material-theme($app-theme);

 with these:

        $app-primary: mat.define-palette($md-blue);
        $app-accent: mat.define-palette($md-green);
        $app-warn: mat.define-palette(mat.$red-palette);

        $app-typography: mat.define-typography-config(
           $font-family: 'Roboto, sans-serif'
        );

        $app-theme: mat.define-light-theme(
           (
               color: (
                   primary: $app-primary,
                   accent: $app-accent,
                   warn: $app-warn
               ),
               typography: $app-typography
           )
        );

        @include mat.all-component-themes($app-theme);

Note: Your project may have different variable names for palettes and themes.

Regenerate your entire project.

Other Changes

Other changes may be required in your project based on CSS and Component usage.  They include:

Style Changes

You need to update the following if used anywhere other than in the Project Styles, as updated above:

Old Pattern New Pattern
mat-color mat.get-color-from-palette
mat-contrast mat.get-contrast-from-palette

Using theme colors from project style:

@import '../../../styles';

Add @use '@angular/material' as mat;

@import '../../../styles';

 

No Bottom Padding

Search your project for no-bottom-padding. If you find any Form Field using 'no-bottom-padding' class, remove that class and add subscriptSizing attribute instead:

Add subscriptSizing

When subscriptSizing is set to dynamic, the form-field expands and contracts the amount of space it takes in the layout to fit the error / hint that is currently shown.

Form Field

  1. When using appearance values other than fill or outline, you get a runtime error. You need to replace legacy and standard options with fill/outline.
  2. The floatLabel input no longer accepts 'never'. It can be set to 'always' or 'auto'.

List

Previously, list items were commonly created using multiple span elements with the matLine directive applied. Each span resulting in a line, and the first one becoming the primary line. In Angular 17, the matLine directive has been split into more granular and meaningful directives. Here are the recommended migration steps for common use of a list item:

  1. Change the first matLine to matListItemTitle
  2. Change all other matLine's to matListItemLine
  3. Change all matListIcon to matListItemIcon
  4. Change all matListAvatar to matListItemAvatar
  5. Wrap all un-scoped content (content outside a matLine) in a matListItemMeta container.

Here is an example of Nav List in Angular 17:

<mat-nav-list>
   <mat-list-item [activated]="link.isActive" *ngFor="let link of links; let i = index;">
       <a matListItemTitle href="...">{{ link }}</a>
       <button mat-icon-button (click)="showInfo(link)" matListItemMeta>
           <mat-icon>info</mat-icon>
       </button>
   </mat-list-item>
</mat-nav-list>

Client Dependencies

Review your project's client dependencies to ensure that they are compatible with Angular 17.

TinyMCE Version 5.x.x is incompatible. Upgrade tinymce and @tinymce/tinymce-angular to the latest version.

 

Powered by Apex Designer
Terms of ServicePrivacy Policy
© 2017-2024 Apex Process Consultants