v8.0.0
8.0.0 (2024-04-12)
⚠ BREAKING CHANGES
- separated helpers export from ui (#133)
Functions and constants from src/utils
, src/shared
and src/constants
are available for export from another endpoint helpers
.
For example, previously you could use:
import {transformParamsToActionParams} from '@gravity-ui/dashkit';
now you should use:
import {transformParamsToActionParams} from '@gravity-ui/dashkit/helpers';