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
* Add extra classes props for Hero component sections.
* Add navburger_classes to the Navbar component.
* Added the `help_has_error` bool to the `Field` component.
* Add `disabled` prop to `Select` & `MultiSelect` components.
* Replace `FieldHorizontal` component with `horizontal` prop on `Field`.
* Added the `Block` component.
* Update components to accept Classes instead of String
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,17 @@ This changelog follows the patterns described here: https://keepachangelog.com/e
4
4
5
5
## Unreleased
6
6
7
-
## 0.2.0
8
-
- Added support for yew `0.18.x`
7
+
## 0.2.0
8
+
### added
9
+
- Added support for yew `0.18.x`.
10
+
- Added `head_classes`, `body_classes` & `foot_classes` optional properties to the `Hero` component. These extra classes will be added to the stanard classes assigned to each of the corresponding hero component sections.
11
+
- Added `navburger_classes` prop to the `Navbar` component. These extra classes will be added to the standard classes for the `navbar-burger` element.
12
+
- Added `help_has_error` prop to the `Field` component. This `bool` prop will add the `is-danger` class to the field's help text when `true`.
13
+
- Added `horizontal` prop to the `Field` component. This replaces the `FieldHorizontal` component.
14
+
- Added `disabled` prop to the `Select` & `MultiSelect` components.
15
+
16
+
### removed
17
+
- The `FieldHorizontal` component has been removed in favor of the `horizontal` prop of the `Field` component.
0 commit comments