Angular Expanders 4.4.0
· 2 min read
Migration guide
Branding
Using the option angular.hasCustomBranding we can toggle the default nsx branding off and have custom anchors instead.
caution
Some of the anchor names have been changed:
index.html:favicon->branding-favicon_default-theme.scss:colors->branding-colors_default-theme.scss:typography->branding-typography_default-theme.scss:density->branding-densitylayout.html:sidebar-branding->branding-sidebar
Customization
Option angular.hasCustomHeaderContent can be used to turn off the default expanded behaviour of the top bar. With the option angular.hasCustomTableRowActions on a DataView you can have custom anchors instead of the default actions in a table.
caution
Some of the anchor names have been changed:
layout.html:header-content->customization-header-content
Ngx-ns-core update
The size of the runtime library was getting to big for the application's initial load. For this reason the library has been split up in smaller sub-entries, which improves load times and tree-shaking. However, this changed the imports for these runtime components and services.
Before
import { AlertService } from '@nsx/ngx-ns-core'
After
import { AlertService } from '@nsx/ngx-ns-core/alert'
