v7
Migration
v7 contains a couple of breaking changes. As a migration process, you can simply search and replace:
- Find
sea-green-alt-30
and replace it withsea-green-30
- Find
sea-green-alt
and replace it withsea-green
- Find
#B3DADA
and replace it with#B3D5D5
- Find
#008484
and replace it with#007272
- Find
['data-is-touch']
and replace it with[data-whatintent='touch']
- Find
isIE11
and replace it withIS_IE11
- Find
isEdge
and replace it withIS_EDGE
- Find
dnb-h1--small
and replace it withdnb-h--x-large
- Find
dnb-h1
and replace it withdnb-h--xx-large
- Find
dnb-h2
and replace it withdnb-h--large
- Find
dnb-h3
and replace it withdnb-h--medium
- Find
dnb-h4
and replace it withdnb-h--basis
- Find
dnb-h5
and replace it withdnb-h--small
- Find
dnb-h6
and replace it withdnb-h--x-small
- Find
prevent_selection
and replace it withmore_menu
(you may have to define a different icon as well) - If you used
style_type
, like<H1 style_type="small">
before, use rather<H1 size="x-large">
and the same applies to<P style_type="small">
, so use themodifier
prop here<P modifier="small">
- For UMD usage only find
dnb-ui-lib.min.js
replace it withdnb-ui-web-components.min.js
- The Anchor (Text link) has now also the default font-size of 18px (basis) - this means, you may have places where you would rather inherit the font-size by:
.dnb-anchor { font-size: inherit; }
- New strings were added to the language files
nb-NO.js
anden-US.js
. If you have a customized localization (changes or addition), then make sure you maintain these new groups of strings:- Autocomplete
- Pagination
- ProgressIndicator
- StepIndicator
- The Dropdown uses now by default React Portal. This can have negative effects on scrollable views. Therefore, use the new ScrollView fragment as the scrollable element.
- For a custom Dropdown list width
.dnb-dropdown__list
, use.dnb-dropdown .dnb-drawer-list__root
instead. - All events called
on_state_update
are now deprecated and will be removed in a future major version. - The property
default_state
in Checkbox and Switch is now deprecated and will be removed in a future major version.
Heading changes
The new naming of h1, h2, etc. is to make it more clear that semantic use of headings don't have to do anything the actual styling. Developers still too often don't care about the correct leveling of headings, because of the visual prioritization.
We hope with that change we embrace better accessibility.
New components
- Heading component to automated semantic headings.
- Autocomplete component.
- Pagination component including infinity scroller.
- New element Horizontal Rule (Hr), called
hr-line
in Figma. - New fragment ScrollView, used in Modal to fulfill the new Portal mode in the DrawerList scroll dependency inside of a Modal / Drawer.
New features
- Icons inside of Input fields.
- Number got more useful properties, like
decimals="0"
andcurrency_position="after"
and also a neat copy & paste feature, where a unformatted number gets copied, instead of the visual number. Also, Norwegian organization numbers (org
) are now supported. - Buttons now supports overflow text to wrap (break-word) by using
wrap="true"
. - Modal has now a Drawer mode inside the Modal component
mode="drawer"
. - Also, the Modal has now a dark background color and both open and close animation
- Expose new helper functions like,
isSafari
,isiOS
,isMac
,isWin
andisLinux
(besideisIE11
,isEdge
) in the shared helpers file:import { isLinux } from 'dnb-ui-lib/shared/helpers'
. They are available as constants as well:IS_IE11
,IS_EDGE
,IS_IOS
,IS_MAC
,IS_WIN
andIS_LINUX
.
<Dropdowndata={{a: 'AA',b: 'BB',}}/>
- Dropdown now also works fine inside of a Modal, taking the height of the Modal as the viewport reference.
- ESM (mjs) bundles to load directly in to modern browsers.
Table (new features)
- Sticky Table header.
- Sortable table header buttons supports now word-wrap by using
wrap="true"
. - Table headers supports now
small
font-size (.dnb-table--small
) as well asright
andcenter
aligned headers.
New icons
- New secondary icons:
pay_from
,transfer_to
Font fixes
- The
DNB
Font got updates on the bold weight. The changes affect these characters:i?!
.
Install
To upgrade to v7 with NPM, use:
$ npm i dnb-ui-lib@7
June, 4. 2020