Version update guide
Step-by-step guide to updating your code from DDD Design System v3 to v4 (Angular) and v5 to v6 (React)
This guide will help you update your project to DDD Design System v4 (Angular) and v6 (React). The update introduces key improvements, including enhanced alignment between Angular and React properties, better error checking during builds, and type-ahead suggestions for Angular components. These changes aim to improve the developer experience when working with the design system.
Major differences between current and new version
One of the most significant changes in v4 (Angular) and v6 (React) is the renaming of component prefixes to align better across frameworks. In React, the prefix changes from GoA
to Goab
, while in Angular, it changes from goa-
to goab-
. See the following examples:
React
GoAButton
will beGoabButton
GoAContainer
will beGoabContainer
Angular
goa-button
will begoab-button
goa-container
will begoab-container
Migrating a React app
The React components for the DDD Design System are still located in the @abgov/react-components
package.
1. Update dependencies
2. Rename all components name from GoAName
to GoabName
After updating your packages, use your preferred code editor to perform a find/replace operation. Replace the prefix GoA--
with Goab--
for all component names. For example:
3. Update components' props that have changed
In v6, some of our properties have changed, go through the following table and make changes as necessary in your codebase.
Component Name | v5(lts) | v6(latest) |
---|---|---|
Block |
|
|
Checkbox |
|
|
Date picker |
|
|
Dropdown |
|
|
File uploader |
|
|
File uploader input |
|
|
Form stepper |
|
|
Input |
|
|
Modal |
|
|
Pagination |
|
|
Popover |
|
|
Radio group |
|
|
Spacer |
|
|
Table |
|
|
Tabs |
|
|
Text area |
|
|
Calendar |
|
|
Spinner |
|
|
Migrating an Angular app
@abgov/angular-components
supports only Angular v16 and above.
1. Update dependencies
2. Update angular component dependencies and import paths
3. Rename all components name from goa-name
to goab-name
in HTML templates
In v4, all Angular component names have been updated from goa-
to goab-
, with the following exceptions:
- TwoColumnLayout: remains
goa-two-column-layout
- ThreeColumnLayout: remains
goa-three-column-layout
As a result, imports and dependencies for pages using these components will not need to be changed.
Special Case:
The goa-one-column-layout
component has been renamed to goab-column-layout
Next Steps:
After updating your packages and imports, perform a find/replace in your code editor to change goa-
to goab-
for all component names. For example:
4. Update component margin properties
The margin properties for components have been standardized. Previously, margin values in Angular components were defined as string
. Now, these margin properties are categorized under Spacing
, ensuring consistency:
Property Name | v3 | v4 |
---|---|---|
mt | string | Spacing |
mb | string | Spacing |
ml | string | Spacing |
mr | string | Spacing |
5. Update component properties
In version 4, we have updated all Angular component properties from lowercase to camelCase. For example, a property previously named headingsize
is now headingSize
.
Additionally, in version 3, our Angular component properties were defined using basic types like string
or boolean
. In version 4, we introduced custom types for these properties and function arguments to ensure that the type checker validates the data structure specific to our components. You can find these changes detailed in the tables below:
Component Name | v3 | v4 |
---|---|---|
Accordion |
|
|
Badge |
|
|
Block |
|
|
Button |
|
|
Button group |
|
|
Callout |
|
|
Checkbox |
|
|
Chip |
|
|
Container |
|
|
Date picker |
|
|
Dropdown |
|
|
File uploader |
|
|
File uploader input |
|
|
App Footer Nav Section |
|
|
App Footer Meta Section |
|
|
Form item |
|
|
Form stepper |
|
|
Form step |
|
|
Grid |
|
|
Hero banner |
|
|
Icons |
|
|
Icon button |
|
|
Input |
|
|
Microsite header |
|
|
Modal |
|
|
Notification banner |
|
|
Pagination |
|
|
Popover |
|
|
Progress indicator |
|
|
Radio item |
|
|
Radio group |
|
|
Side menu heading |
|
|
Skeleton loading |
|
|
Spacer |
|
|
Table |
|
|
Table sort header |
|
|
Tab item |
|
|
Tabs |
|
|
Text area |
|
|
Tooltip |
|
|
AppHeaderMenu |
|
|
Calendar |
|
|
PageBlock |
|
|
Spinner |
|
|
6. Update component slot content using Angular's ng-template
The most common manual update that teams will need to make involves adjusting slot content that uses slot="name"
to reference a property. For example,
Components with slot
replaced by Angular ng-template
references:
Component Name | v3 | v4 |
---|---|---|
Accordion |
|
|
Checkbox |
|
|
Container |
|
|
Hero banner |
|
|
Modal |
|
|
Popover |
|
|
Radio item |
|
|
Side menu heading |
|
|
Tab item |
|
|
7. Remove goaValue
and goaChecked
from the Angular input components
In v4, the goaValue
and goaChecked
directives can be removed from our input components when using Angular Forms. This applies to the following components:
- Checkbox
- Date picker
- Dropdown
- Input
- Radio
- Textarea
To handle user input in your app, you can use Angular's reactive forms, template-driven forms, or simply add an event handler. Below are examples of how to use our Angular checkbox component in these three different approaches:
1. Reactive
2. Template-driven
3. Event handler
Book time in drop in hours