Skip to content

Commit

Permalink
chore(release): cut 9.7.0 [skip release]
Browse files Browse the repository at this point in the history
# [9.7.0](v9.6.0...v9.7.0) (2024-06-03)

### Bug Fixes

* **Tooltip:** add missing tabIndex ([389e61a](389e61a))

### Features

* splitButton accessibility improvements ([#1458](#1458)) ([8370915](8370915))
* **tooltip:** accessibility improvements for tooltip ([#1463](#1463)) ([9afcfdf](9afcfdf))
* add aria attributes to loaders ([#1449](#1449)) ([aaa60fb](aaa60fb))
* add optional aria-label prop to switch component ([bf9927a](bf9927a))
  • Loading branch information
dhis2-bot committed Jun 3, 2024
1 parent 6d499cc commit 2dc0405
Show file tree
Hide file tree
Showing 57 changed files with 299 additions and 280 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# [9.7.0](https://github.com/dhis2/ui/compare/v9.6.0...v9.7.0) (2024-06-03)


### Bug Fixes

* **Tooltip:** add missing tabIndex ([389e61a](https://github.com/dhis2/ui/commit/389e61aa40f46180045005be09ef295adfae65e7))


### Features

* splitButton accessibility improvements ([#1458](https://github.com/dhis2/ui/issues/1458)) ([8370915](https://github.com/dhis2/ui/commit/8370915eb91252a501ef6c1acb6ed40a26160b5a))
* **tooltip:** accessibility improvements for tooltip ([#1463](https://github.com/dhis2/ui/issues/1463)) ([9afcfdf](https://github.com/dhis2/ui/commit/9afcfdf4b6b13e927351364d29d63a774bb1cfa1))
* add aria attributes to loaders ([#1449](https://github.com/dhis2/ui/issues/1449)) ([aaa60fb](https://github.com/dhis2/ui/commit/aaa60fbd5b4d83f5ede5d3f98db182099af49134))
* add optional aria-label prop to switch component ([bf9927a](https://github.com/dhis2/ui/commit/bf9927a204d56e688ee64cbff021e249f7f94b5e))

# [9.6.0](https://github.com/dhis2/ui/compare/v9.5.0...v9.6.0) (2024-06-03)


Expand Down
20 changes: 10 additions & 10 deletions collections/forms/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2/ui-forms",
"version": "9.6.0",
"version": "9.7.0",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"sideEffects": [
Expand Down Expand Up @@ -35,15 +35,15 @@
},
"dependencies": {
"@dhis2/prop-types": "^3.1.2",
"@dhis2-ui/button": "9.6.0",
"@dhis2-ui/checkbox": "9.6.0",
"@dhis2-ui/field": "9.6.0",
"@dhis2-ui/file-input": "9.6.0",
"@dhis2-ui/input": "9.6.0",
"@dhis2-ui/radio": "9.6.0",
"@dhis2-ui/select": "9.6.0",
"@dhis2-ui/switch": "9.6.0",
"@dhis2-ui/text-area": "9.6.0",
"@dhis2-ui/button": "9.7.0",
"@dhis2-ui/checkbox": "9.7.0",
"@dhis2-ui/field": "9.7.0",
"@dhis2-ui/file-input": "9.7.0",
"@dhis2-ui/input": "9.7.0",
"@dhis2-ui/radio": "9.7.0",
"@dhis2-ui/select": "9.7.0",
"@dhis2-ui/switch": "9.7.0",
"@dhis2-ui/text-area": "9.7.0",
"classnames": "^2.3.1",
"final-form": "^4.20.2",
"prop-types": "^15.7.2",
Expand Down
4 changes: 3 additions & 1 deletion collections/ui/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -944,6 +944,7 @@ import { CircularLoader } from '@dhis2/ui'

|Name|Type|Default|Required|Description|
|---|---|---|---|---|
|aria-label|string||||
|className|string||||
|dataTest|string|`'dhis2-uicore-circularloader'`|||
|extrasmall|custom||||
Expand All @@ -968,6 +969,7 @@ import { LinearLoader } from '@dhis2/ui'
|Name|Type|Default|Required|Description|
|---|---|---|---|---|
|amount|number||*|The progression in percent without the '%' sign|
|aria-label|string||||
|className|string||||
|dataTest|string|`'dhis2-uicore-linearloader'`|||
|invert|boolean|||Use inverted color scheme|
Expand Down Expand Up @@ -2060,7 +2062,7 @@ import { Switch } from '@dhis2/ui'

|Name|Type|Default|Required|Description|
|---|---|---|---|---|
|ariaLabel|string|||Sets an aria-label attribute on the input|
|aria-label|string|||Sets an aria-label attribute on the input|
|checked|boolean|`false`|||
|className|string||||
|dataTest|string|`'dhis2-uicore-switch'`|||
Expand Down
98 changes: 49 additions & 49 deletions collections/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2/ui",
"version": "9.6.0",
"version": "9.7.0",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"exports": {
Expand All @@ -21,54 +21,54 @@
"build": "d2-app-scripts build"
},
"dependencies": {
"@dhis2-ui/alert": "9.6.0",
"@dhis2-ui/box": "9.6.0",
"@dhis2-ui/button": "9.6.0",
"@dhis2-ui/calendar": "9.6.0",
"@dhis2-ui/card": "9.6.0",
"@dhis2-ui/center": "9.6.0",
"@dhis2-ui/checkbox": "9.6.0",
"@dhis2-ui/chip": "9.6.0",
"@dhis2-ui/cover": "9.6.0",
"@dhis2-ui/css": "9.6.0",
"@dhis2-ui/divider": "9.6.0",
"@dhis2-ui/field": "9.6.0",
"@dhis2-ui/file-input": "9.6.0",
"@dhis2-ui/header-bar": "9.6.0",
"@dhis2-ui/help": "9.6.0",
"@dhis2-ui/input": "9.6.0",
"@dhis2-ui/intersection-detector": "9.6.0",
"@dhis2-ui/label": "9.6.0",
"@dhis2-ui/layer": "9.6.0",
"@dhis2-ui/legend": "9.6.0",
"@dhis2-ui/loader": "9.6.0",
"@dhis2-ui/logo": "9.6.0",
"@dhis2-ui/menu": "9.6.0",
"@dhis2-ui/modal": "9.6.0",
"@dhis2-ui/node": "9.6.0",
"@dhis2-ui/notice-box": "9.6.0",
"@dhis2-ui/organisation-unit-tree": "9.6.0",
"@dhis2-ui/pagination": "9.6.0",
"@dhis2-ui/popover": "9.6.0",
"@dhis2-ui/popper": "9.6.0",
"@dhis2-ui/portal": "9.6.0",
"@dhis2-ui/radio": "9.6.0",
"@dhis2-ui/required": "9.6.0",
"@dhis2-ui/segmented-control": "9.6.0",
"@dhis2-ui/select": "9.6.0",
"@dhis2-ui/selector-bar": "9.6.0",
"@dhis2-ui/sharing-dialog": "9.6.0",
"@dhis2-ui/switch": "9.6.0",
"@dhis2-ui/tab": "9.6.0",
"@dhis2-ui/table": "9.6.0",
"@dhis2-ui/tag": "9.6.0",
"@dhis2-ui/text-area": "9.6.0",
"@dhis2-ui/tooltip": "9.6.0",
"@dhis2-ui/transfer": "9.6.0",
"@dhis2-ui/user-avatar": "9.6.0",
"@dhis2/ui-constants": "9.6.0",
"@dhis2/ui-forms": "9.6.0",
"@dhis2/ui-icons": "9.6.0",
"@dhis2-ui/alert": "9.7.0",
"@dhis2-ui/box": "9.7.0",
"@dhis2-ui/button": "9.7.0",
"@dhis2-ui/calendar": "9.7.0",
"@dhis2-ui/card": "9.7.0",
"@dhis2-ui/center": "9.7.0",
"@dhis2-ui/checkbox": "9.7.0",
"@dhis2-ui/chip": "9.7.0",
"@dhis2-ui/cover": "9.7.0",
"@dhis2-ui/css": "9.7.0",
"@dhis2-ui/divider": "9.7.0",
"@dhis2-ui/field": "9.7.0",
"@dhis2-ui/file-input": "9.7.0",
"@dhis2-ui/header-bar": "9.7.0",
"@dhis2-ui/help": "9.7.0",
"@dhis2-ui/input": "9.7.0",
"@dhis2-ui/intersection-detector": "9.7.0",
"@dhis2-ui/label": "9.7.0",
"@dhis2-ui/layer": "9.7.0",
"@dhis2-ui/legend": "9.7.0",
"@dhis2-ui/loader": "9.7.0",
"@dhis2-ui/logo": "9.7.0",
"@dhis2-ui/menu": "9.7.0",
"@dhis2-ui/modal": "9.7.0",
"@dhis2-ui/node": "9.7.0",
"@dhis2-ui/notice-box": "9.7.0",
"@dhis2-ui/organisation-unit-tree": "9.7.0",
"@dhis2-ui/pagination": "9.7.0",
"@dhis2-ui/popover": "9.7.0",
"@dhis2-ui/popper": "9.7.0",
"@dhis2-ui/portal": "9.7.0",
"@dhis2-ui/radio": "9.7.0",
"@dhis2-ui/required": "9.7.0",
"@dhis2-ui/segmented-control": "9.7.0",
"@dhis2-ui/select": "9.7.0",
"@dhis2-ui/selector-bar": "9.7.0",
"@dhis2-ui/sharing-dialog": "9.7.0",
"@dhis2-ui/switch": "9.7.0",
"@dhis2-ui/tab": "9.7.0",
"@dhis2-ui/table": "9.7.0",
"@dhis2-ui/tag": "9.7.0",
"@dhis2-ui/text-area": "9.7.0",
"@dhis2-ui/tooltip": "9.7.0",
"@dhis2-ui/transfer": "9.7.0",
"@dhis2-ui/user-avatar": "9.7.0",
"@dhis2/ui-constants": "9.7.0",
"@dhis2/ui-forms": "9.7.0",
"@dhis2/ui-icons": "9.7.0",
"prop-types": "^15.7.2"
},
"peerDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions components/alert/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2-ui/alert",
"version": "9.6.0",
"version": "9.7.0",
"description": "UI Alert",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,9 +33,9 @@
},
"dependencies": {
"@dhis2/prop-types": "^3.1.2",
"@dhis2-ui/portal": "9.6.0",
"@dhis2/ui-constants": "9.6.0",
"@dhis2/ui-icons": "9.6.0",
"@dhis2-ui/portal": "9.7.0",
"@dhis2/ui-constants": "9.7.0",
"@dhis2/ui-icons": "9.7.0",
"classnames": "^2.3.1",
"prop-types": "^15.7.2"
},
Expand Down
4 changes: 2 additions & 2 deletions components/box/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2-ui/box",
"version": "9.6.0",
"version": "9.7.0",
"description": "UI Box",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,7 +33,7 @@
},
"dependencies": {
"@dhis2/prop-types": "^3.1.2",
"@dhis2/ui-constants": "9.6.0",
"@dhis2/ui-constants": "9.7.0",
"classnames": "^2.3.1",
"prop-types": "^15.7.2"
},
Expand Down
12 changes: 6 additions & 6 deletions components/button/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2-ui/button",
"version": "9.6.0",
"version": "9.7.0",
"description": "UI Button",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,11 +33,11 @@
},
"dependencies": {
"@dhis2/prop-types": "^3.1.2",
"@dhis2-ui/layer": "9.6.0",
"@dhis2-ui/loader": "9.6.0",
"@dhis2-ui/popper": "9.6.0",
"@dhis2/ui-constants": "9.6.0",
"@dhis2/ui-icons": "9.6.0",
"@dhis2-ui/layer": "9.7.0",
"@dhis2-ui/loader": "9.7.0",
"@dhis2-ui/popper": "9.7.0",
"@dhis2/ui-constants": "9.7.0",
"@dhis2/ui-icons": "9.7.0",
"classnames": "^2.3.1",
"prop-types": "^15.7.2"
},
Expand Down
16 changes: 8 additions & 8 deletions components/calendar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2-ui/calendar",
"version": "9.6.0",
"version": "9.7.0",
"description": "UI Calendar",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,15 +33,15 @@
"styled-jsx": "^4"
},
"dependencies": {
"@dhis2-ui/button": "9.6.0",
"@dhis2-ui/card": "9.6.0",
"@dhis2-ui/input": "9.6.0",
"@dhis2-ui/layer": "9.6.0",
"@dhis2-ui/popper": "9.6.0",
"@dhis2-ui/button": "9.7.0",
"@dhis2-ui/card": "9.7.0",
"@dhis2-ui/input": "9.7.0",
"@dhis2-ui/layer": "9.7.0",
"@dhis2-ui/popper": "9.7.0",
"@dhis2/multi-calendar-dates": "^1.1.1",
"@dhis2/prop-types": "^3.1.2",
"@dhis2/ui-constants": "9.6.0",
"@dhis2/ui-icons": "9.6.0",
"@dhis2/ui-constants": "9.7.0",
"@dhis2/ui-icons": "9.7.0",
"classnames": "^2.3.1",
"prop-types": "^15.7.2"
},
Expand Down
4 changes: 2 additions & 2 deletions components/card/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2-ui/card",
"version": "9.6.0",
"version": "9.7.0",
"description": "UI Card",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,7 +33,7 @@
},
"dependencies": {
"@dhis2/prop-types": "^3.1.2",
"@dhis2/ui-constants": "9.6.0",
"@dhis2/ui-constants": "9.7.0",
"classnames": "^2.3.1",
"prop-types": "^15.7.2"
},
Expand Down
4 changes: 2 additions & 2 deletions components/center/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2-ui/center",
"version": "9.6.0",
"version": "9.7.0",
"description": "UI Center",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,7 +33,7 @@
},
"dependencies": {
"@dhis2/prop-types": "^3.1.2",
"@dhis2/ui-constants": "9.6.0",
"@dhis2/ui-constants": "9.7.0",
"classnames": "^2.3.1",
"prop-types": "^15.7.2"
},
Expand Down
8 changes: 4 additions & 4 deletions components/checkbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2-ui/checkbox",
"version": "9.6.0",
"version": "9.7.0",
"description": "UI Checkbox",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,9 +33,9 @@
},
"dependencies": {
"@dhis2/prop-types": "^3.1.2",
"@dhis2-ui/field": "9.6.0",
"@dhis2-ui/required": "9.6.0",
"@dhis2/ui-constants": "9.6.0",
"@dhis2-ui/field": "9.7.0",
"@dhis2-ui/required": "9.7.0",
"@dhis2/ui-constants": "9.7.0",
"classnames": "^2.3.1",
"prop-types": "^15.7.2"
},
Expand Down
4 changes: 2 additions & 2 deletions components/chip/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2-ui/chip",
"version": "9.6.0",
"version": "9.7.0",
"description": "UI Chip",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,7 +33,7 @@
},
"dependencies": {
"@dhis2/prop-types": "^3.1.2",
"@dhis2/ui-constants": "9.6.0",
"@dhis2/ui-constants": "9.7.0",
"classnames": "^2.3.1",
"prop-types": "^15.7.2"
},
Expand Down
4 changes: 2 additions & 2 deletions components/cover/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2-ui/cover",
"version": "9.6.0",
"version": "9.7.0",
"description": "UI Cover",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,7 +33,7 @@
},
"dependencies": {
"@dhis2/prop-types": "^3.1.2",
"@dhis2/ui-constants": "9.6.0",
"@dhis2/ui-constants": "9.7.0",
"classnames": "^2.3.1",
"prop-types": "^15.7.2"
},
Expand Down
4 changes: 2 additions & 2 deletions components/css/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2-ui/css",
"version": "9.6.0",
"version": "9.7.0",
"description": "UI CSS",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,7 +33,7 @@
},
"dependencies": {
"@dhis2/prop-types": "^3.1.2",
"@dhis2/ui-constants": "9.6.0",
"@dhis2/ui-constants": "9.7.0",
"classnames": "^2.3.1",
"prop-types": "^15.7.2"
},
Expand Down
Loading

0 comments on commit 2dc0405

Please sign in to comment.