@cerebruminc/cerebellum 17.3.5 → 17.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# react-component-lib-boilerplate
|
|
2
2
|
|
|
3
|
+
## [17.3.6](https://github.com/cerebruminc/cerebellum/compare/v17.3.5...v17.3.6) (2026-06-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **rjsform:** add ariaLabel to ArrayField ([f505706](https://github.com/cerebruminc/cerebellum/commit/f5057068d0bb1b5f7fbd7024ce86bc8212f64cf9))
|
|
9
|
+
|
|
3
10
|
## [17.3.5](https://github.com/cerebruminc/cerebellum/compare/v17.3.4...v17.3.5) (2026-06-19)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -23,8 +23,8 @@ export const ArrayFieldItemTemplate = (props: ArrayFieldItemTemplateProps) => {
|
|
|
23
23
|
<ArrayGroup $fade={isFading}>
|
|
24
24
|
<TitleGroup $roomForRemove>
|
|
25
25
|
<HeaderButtons>
|
|
26
|
-
{hasMoveDown && <IconButton Icon={CaretDown} onClick={onMoveDownItem} />}
|
|
27
|
-
{hasMoveUp && <IconButton Icon={CaretUp} onClick={onMoveUpItem} />}
|
|
26
|
+
{hasMoveDown && <IconButton Icon={CaretDown} onClick={onMoveDownItem} ariaLabel="Move Down" />}
|
|
27
|
+
{hasMoveUp && <IconButton Icon={CaretUp} onClick={onMoveUpItem} ariaLabel="Move Up" />}
|
|
28
28
|
{hasRemove && <TextButton onClick={handleRemove} text="Remove" />}
|
|
29
29
|
</HeaderButtons>
|
|
30
30
|
</TitleGroup>
|