Skip to content
This repository was archived by the owner on Jun 1, 2020. It is now read-only.

Latest commit

 

History

History
51 lines (51 loc) · 2.39 KB

File metadata and controls

51 lines (51 loc) · 2.39 KB

1.8.x to 2.0

  • 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
  • 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
  • Updated the angular-split dependency, which provides the splitter functionality. Two selectors have changed with this update:
    • split is now as-split
    • split-area is now as-split-area
  • label no longer has a 5px bottom margin by default.
  • Any component that extends ConduitZoneComponent must now manually call super.ngOnInit() and super.ngOnDestroy() if the component is using those lifecycle hooks.