- Angular 9 is no longer supported.
- The
hpe-*
icon set has been removed. Use theux-icon
component instead. - The
valid
input has been removed fromux-number-picker
. Use Angular form validation instead.
- Angular 8 is no longer supported.
- If you are using ng2-file-upload and ngx-mask packages in your application, you will need to install manually.
- The package for
angular-tree-component
has been renamed.- Run
npm remove angular-tree-component
and runnpm install @circlon/angular-tree-component
. - Replace all imports of the deprecated package with
@circlon/angular-tree-component
. - Add the angular tree component stylesheet to the
angular.json
file. See Getting Started for details.
- Run
- Angular 6 is no longer supported.
- AngularJS components and
HybridModule
have been removed, and from now on must be imported from@ux-aspects/ux-aspects-ng1
. Refer to the UX Aspects (AngularJS) documentation for details. - The
dist
folder has now been removed from the published package. Any import paths referring to@ux-aspects/ux-aspects/dist/...
can be replaced with@ux-aspects/ux-aspects/...
. - With the removal of AngularJS components, all dependencies are now resolved through NPM and the package no longer contains third party code; therefore the Licenses file has been removed.
- All styles relating to AngularJS components have been removed. These styles are available in the
@ux-aspects/ux-aspects-ng1
package if required. - Removed Angular i18n attributes. Localizable text is now provided via inputs:
- Color Picker
colorAriaLabel
switchModeAriaLabel
inputAriaLabel
- Facet Container
clearAriaLabel
deselectFacetAriaLabel
- Media Player
muteAriaLabel
playAriaLabel
fullscreenAriaLabel
selectSubtitlesAriaLabel
goToStartAriaLabel
goToEndAriaLabel
subtitlesTitleAriaLabel
subtitlesOffAriaLabel
noSubtitlesAriaLabel
mediaPlayerAriaLabel
seekAriaLabel
- Item Display Panel
closeAriaLabel
- Filter
clearAriaLabel
- Color Picker
- Removed the following deprecated inputs/outputs:
- Tabs
select
deselect
- Page Header
familyBackground
familyForeground
titleTemplate
- Item Display Panel
title
- Marquee Wizard
icon
- Floating Action Button
icon
- Tag Input
trackAriaDescendant
- Tabs
- Updated the angular-split dependency, which provides the splitter functionality. Two selectors have changed with this update:
split
is nowas-split
split-area
is nowas-split-area
label
no longer has a 5px bottom margin by default.- Any component that extends
ConduitZoneComponent
must now manually callsuper.ngOnInit()
andsuper.ngOnDestroy()
if the component is using those lifecycle hooks.