diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ab41becc..831e4ad64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,127 @@ definitions. * **LoginForm:** submit emitter removed in favor of submission * **RadioGroup:** `change` event removed in favor of `selectionChange` + +### Breaking Change Migration Guide + +#### Table + +##### 1. Table functionality is now added as directives to a native HTML table. + +This was necessary to support future enhancements such as multiple sticky headers etc. + +```diff +- ++ + + +- ++ +- ++ + + +- ++ + +- ++ + +- +- +- +- +- + + ++
+ Title +- ++ + {{ item.title }} +- ++
++ ++ ++
+``` + +##### 4. Columns no longer support a `min-width` declaration + +Width is now controlled with the column definitions. + + +#### RadioGroup + +- `change` emitter removed in favor of `selectionChange` (Deprecated 7/12/2019) + +```diff + +``` + + +#### LoginForm + +- `change` emitter removed in favor of `selectionChange` (Deprecated 7/12/2019) + +```diff + +``` + +#### Toggle + +- `change` emitter removed in favor of `selectionChange` (Deprecated 7/12/2019) + +```diff +Toggle Me! +``` + + + # [14.18.0](https://github.com/GetTerminus/terminus-ui/compare/v14.17.0...v14.18.0) (2019-10-24)