You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ngrid: To reduce clutter in the main packge the configuration symbols moved to @pebula/ngrid/core.
At this point all symbols were re-exported from the main module so this no effect there. However, if you've extended on of the symbols using augmentation you will need to update the augmentation module path.
ngrid: To reduce clutter in the main packge the datasource symbols (all) and some of the column model symbols moved to @pebula/ngrid/core.
At this point all symbols we're re-exported from the main module so this no effect there. However, if you've extended on of the symbols using augmentation you will need to update the augmentation module path.
ngrid: Since the registry and it's type mapping symbols are for intenral or plugin use they are now part of the core pacakge. Currently the single/multi directives are still in the main package but they might also be moved in a later phase
ngrid: If you've used unrx in your code, it is not located in @pebula/ngrid/core since it is not for used by "regular" users, only required for plugin authoring.
ngrid: Pagination types have moved from @pebula/ngrid to @pebula/ngrid/core as part of the cleanup process to simplify the main package. @pebula/ngrid re-exports the interfaces and types but the concrete implementations for PblPagingPaginator and PblTokenPaginator are now in the core pacakge as they are
not intended to be used by "regular" users, only plugin authors.
ngrid: Binding [grid] and [row] is no longer required. Same for detailRow and infiniteRow
ngrid:resize-observer-polyfill is no longer a peerDependency and is not required by the library. If you want polyfill support please import the polyfill using polyfill.ts
ngrid:prop and span are deprecated from PblColumnGroupDefinition and will be removed from version 4.0.0 prop and span are removed from PblColumnGroup and instread columnIds list is used
ngrid: If you used the hideColumns property (setter only) via code and not via html binding it will no longer work.
Instead, use the new api to add/remove columns.
If you used it via bindings, it will still work but it is not recommended because other plugins that use the API
will override values from the array provided.