Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.4.0 #31

Merged
merged 12 commits into from
Dec 28, 2023
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
##
## 2.4.0

- New `bones_ui_web.dart`:
- New `UIElement` and `UINode`.
- Avoid imports to `dart:html` in preparation to use of `dart:web` or other alternatives.
- New typedef `UINode` and `UIElement`.
- Replace usage of `Element` to `UIElement` and `Node` to `UINode`.
- `UIComponent`:
- Constructor:
- parameter `parent` now accepts `Element` or `UIComponent`.
- `toContentElements`: changed to named parameters.

- intl_messages: ^2.2.3
- dom_tools: ^2.2.0

## 2.3.3

Expand Down
2 changes: 1 addition & 1 deletion lib/src/bones_ui.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class BonesUI {
static const String version = '2.3.3';
static const String version = '2.4.0';
}
Loading