Skip to content

Commit 2526aa7

Browse files
author
Luke Bowerman
authored
Update CHANGELOG for 0.7.30 (#896)
* Update CHANGELOG for 0.7.30 * Fix Gatsby build error
1 parent da7a14d commit 2526aa7

File tree

3 files changed

+19
-15
lines changed

3 files changed

+19
-15
lines changed

CHANGELOG.md

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,36 +5,38 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [UNRELEASED]
8+
## [0.7.30] - 2020-05-07
99

1010
### Added
1111

12-
- Updated the `ViewColumn` icon to better match keylines and guides
13-
- `GitBranch`, `ViewColumn`, `SectionDrop` icons
12+
- Icons: `GitBranch`, `ViewColumn`, `SectionDrop`
13+
- `InlineInputText` supports placeholder attribute
1414
- `InlineTextArea` implemented with test and documentation.
15-
- Windowing (virtualization) to `Select` and `SelectMulti`,
15+
- `RangeSlider` component
16+
- `Menu` now automatically preserves space for icons if any items have an icon assigned
17+
- `MenuContext` now includes `menuItemStyleContext` for "preserved icon space"-related properties
18+
- `MenuItem` renders an empty Box with the same size as the icon(s) of sibling `MenuItem's (if any)
19+
- `MenuList`, `MenuGroup` contain piece of state the tracks the size of the preserved icon space
20+
- `Select` and `SelectMulti` now supports windowing (virtualization)
1621
- `windowedOptions` prop overrides the default condition of >= 100 options
17-
- RangeSlider component
1822

1923
### Changed
2024

21-
- `Fieldset` - updated documentation to include label and legend
22-
- `menuItemStyleContext` in `MenuContext` uses a new interface which contains "preserved icon space"-related properties
23-
- `MenuItem` renders an empty Box with the same size as the icon(s) of sibling `MenuItem's (if any)
24-
- `MenuList`, `MenuGroup` contain piece of state the tracks the size of the preserved icon space
25-
- Labels in `FieldInline` and `ButtonItem` now include the `for` attribute
2625
- `ActionList` no longer highlights selected rows or hovered rows (when onClickRowSelect is true)
27-
- Fields have more explicit line-heights to enforce consistent layout.
28-
- `Fieldset` default spacing switched from `xsmall` to `small` to improve visual relationship with their `Input*`
26+
- `FieldInline` & `ButtonItem` labels now include the `for` attribute
27+
- `Field` & `FieldInline` (therefore all `Field*`) have more explicit line-heights to enforce consistent layout.
28+
- `Fieldset`
29+
- updated documentation to include label and legend
30+
- default spacing switched from `xsmall` to `small` to improve visual relationship with their `Input*`
31+
- Icon: `ViewColumn` updated to better match keylines and guides
2932

3033
### Fixed
3134

32-
- `ToggleSwitch` React warning
33-
- `Prompt`
35+
- `Prompt` behaves better
3436
- Clears out old `defaultValue` when new `defaultValue` is passed in
3537
- Clears out any user input after pressing cancel button
3638
- Updated test suite to prevent future regressions for the above fixes
37-
- `InlineInputText` add placeholder attribute
39+
- `ToggleSwitch` React warning fixed
3840

3941
### Removed
4042

packages/components/src/Form/Fields/FieldCheckboxGroup/FieldCheckboxGroup.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ const FieldCheckboxGroupLayout: FC<FieldCheckboxGroupProps> = ({
3939
id: propsID,
4040
options,
4141
value,
42+
name,
4243
...props
4344
}) => {
4445
const validationMessage = useFormContext(props)

packages/components/src/Form/Fields/FieldRadioGroup/FieldRadioGroup.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export interface FieldRadioGroupProps
3838
const FieldRadioGroupLayout: FC<FieldRadioGroupProps> = ({
3939
id: propsID,
4040
options,
41+
name,
4142
...props
4243
}) => {
4344
const validationMessage = useFormContext(props)

0 commit comments

Comments
 (0)