Skip to content

Commit

Permalink
chore(release): cut 9.8.6 [skip release]
Browse files Browse the repository at this point in the history
## [9.8.6](v9.8.5...v9.8.6) (2024-06-20)

### Bug Fixes

* add aggregate data exchange to sharing dialog type prop's type ([d3b5486](d3b5486))
* add all possible sharing dialog type prop's types ([43210cb](43210cb))
* restrict dialog types to only sharable and restrict type of sharing type ([1748809](1748809))
  • Loading branch information
dhis2-bot committed Jun 20, 2024
1 parent 1a3ba5e commit 0bd4191
Show file tree
Hide file tree
Showing 56 changed files with 293 additions and 348 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [9.8.6](https://github.com/dhis2/ui/compare/v9.8.5...v9.8.6) (2024-06-20)


### Bug Fixes

* add aggregate data exchange to sharing dialog type prop's type ([d3b5486](https://github.com/dhis2/ui/commit/d3b54860337913be53ed25cbb72a0710787fdd28))
* add all possible sharing dialog type prop's types ([43210cb](https://github.com/dhis2/ui/commit/43210cb1f7df6e903f86ad8f5a4d93471704a28b))
* restrict dialog types to only sharable and restrict type of sharing type ([1748809](https://github.com/dhis2/ui/commit/1748809b093ebefefc01db2e4054d61b039fcd52))

## [9.8.5](https://github.com/dhis2/ui/compare/v9.8.4...v9.8.5) (2024-06-19)


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.8.5",
"version": "9.8.6",
"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.8.5",
"@dhis2-ui/checkbox": "9.8.5",
"@dhis2-ui/field": "9.8.5",
"@dhis2-ui/file-input": "9.8.5",
"@dhis2-ui/input": "9.8.5",
"@dhis2-ui/radio": "9.8.5",
"@dhis2-ui/select": "9.8.5",
"@dhis2-ui/switch": "9.8.5",
"@dhis2-ui/text-area": "9.8.5",
"@dhis2-ui/button": "9.8.6",
"@dhis2-ui/checkbox": "9.8.6",
"@dhis2-ui/field": "9.8.6",
"@dhis2-ui/file-input": "9.8.6",
"@dhis2-ui/input": "9.8.6",
"@dhis2-ui/radio": "9.8.6",
"@dhis2-ui/select": "9.8.6",
"@dhis2-ui/switch": "9.8.6",
"@dhis2-ui/text-area": "9.8.6",
"classnames": "^2.3.1",
"final-form": "^4.20.2",
"prop-types": "^15.7.2",
Expand Down
38 changes: 3 additions & 35 deletions collections/ui/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -1982,47 +1982,15 @@ import { SharingDialog } from '@dhis2/ui'
|Name|Type|Default|Required|Description|
|---|---|---|---|---|
|id|string||*|The id of the object to share|
|type|import {
ACCESS_NONE,
ACCESS_VIEW_ONLY,
ACCESS_VIEW_AND_EDIT,
VISUALIZATION,
DASHBOARD,
EVENT_VISUALIZATION,
INTERPRETATION,
} from './constants.js' │ import {
ACCESS_NONE,
ACCESS_VIEW_ONLY,
ACCESS_VIEW_AND_EDIT,
VISUALIZATION,
DASHBOARD,
EVENT_VISUALIZATION,
INTERPRETATION,
} from './constants.js' │ import {
ACCESS_NONE,
ACCESS_VIEW_ONLY,
ACCESS_VIEW_AND_EDIT,
VISUALIZATION,
DASHBOARD,
EVENT_VISUALIZATION,
INTERPRETATION,
} from './constants.js' │ import {
ACCESS_NONE,
ACCESS_VIEW_ONLY,
ACCESS_VIEW_AND_EDIT,
VISUALIZATION,
DASHBOARD,
EVENT_VISUALIZATION,
INTERPRETATION,
} from './constants.js'||*|The type of object to share|
|type|DIALOG_TYPES_LIST||*|The type of object to share|
|dataTest|string|`'dhis2-uicore-sharingdialog'`|||
|initialSharingSettings|{<br/> "allowPublic": "boolean",<br/> "groups": "objectOf",<br/> "name": "string",<br/> "public": "import {\n ACCESS_NONE,\n ACCESS_VIEW_ONLY,\n ACCESS_VIEW_AND_EDIT,\n VISUALIZATION,\n DASHBOARD,\n EVENT_VISUALIZATION,\n INTERPRETATION,\n} from './constants.js' │ import {\n ACCESS_NONE,\n ACCESS_VIEW_ONLY,\n ACCESS_VIEW_AND_EDIT,\n VISUALIZATION,\n DASHBOARD,\n EVENT_VISUALIZATION,\n INTERPRETATION,\n} from './constants.js' │ import {\n ACCESS_NONE,\n ACCESS_VIEW_ONLY,\n ACCESS_VIEW_AND_EDIT,\n VISUALIZATION,\n DASHBOARD,\n EVENT_VISUALIZATION,\n INTERPRETATION,\n} from './constants.js'",<br/> "users": "objectOf"<br/>}|`{
|initialSharingSettings|{<br/> "allowPublic": "boolean",<br/> "groups": "objectOf",<br/> "name": "string",<br/> "public": "import {\n ACCESS_NONE,\n ACCESS_VIEW_ONLY,\n ACCESS_VIEW_AND_EDIT,\n DIALOG_TYPES_LIST,\n} from './constants.js' │ import {\n ACCESS_NONE,\n ACCESS_VIEW_ONLY,\n ACCESS_VIEW_AND_EDIT,\n DIALOG_TYPES_LIST,\n} from './constants.js' │ import {\n ACCESS_NONE,\n ACCESS_VIEW_ONLY,\n ACCESS_VIEW_AND_EDIT,\n DIALOG_TYPES_LIST,\n} from './constants.js'",<br/> "users": "objectOf"<br/>}|`{
name: '',
allowPublic: true,
public: ACCESS_NONE,
groups: {},
users: {},
}`|||
}`||Used to seed the component with data to show whilst loading|
|onClose|function|`() => {}`|||
|onError|function|`() => {}`|||
|onSave|function|`() => {}`|||
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.8.5",
"version": "9.8.6",
"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.8.5",
"@dhis2-ui/box": "9.8.5",
"@dhis2-ui/button": "9.8.5",
"@dhis2-ui/calendar": "9.8.5",
"@dhis2-ui/card": "9.8.5",
"@dhis2-ui/center": "9.8.5",
"@dhis2-ui/checkbox": "9.8.5",
"@dhis2-ui/chip": "9.8.5",
"@dhis2-ui/cover": "9.8.5",
"@dhis2-ui/css": "9.8.5",
"@dhis2-ui/divider": "9.8.5",
"@dhis2-ui/field": "9.8.5",
"@dhis2-ui/file-input": "9.8.5",
"@dhis2-ui/header-bar": "9.8.5",
"@dhis2-ui/help": "9.8.5",
"@dhis2-ui/input": "9.8.5",
"@dhis2-ui/intersection-detector": "9.8.5",
"@dhis2-ui/label": "9.8.5",
"@dhis2-ui/layer": "9.8.5",
"@dhis2-ui/legend": "9.8.5",
"@dhis2-ui/loader": "9.8.5",
"@dhis2-ui/logo": "9.8.5",
"@dhis2-ui/menu": "9.8.5",
"@dhis2-ui/modal": "9.8.5",
"@dhis2-ui/node": "9.8.5",
"@dhis2-ui/notice-box": "9.8.5",
"@dhis2-ui/organisation-unit-tree": "9.8.5",
"@dhis2-ui/pagination": "9.8.5",
"@dhis2-ui/popover": "9.8.5",
"@dhis2-ui/popper": "9.8.5",
"@dhis2-ui/portal": "9.8.5",
"@dhis2-ui/radio": "9.8.5",
"@dhis2-ui/required": "9.8.5",
"@dhis2-ui/segmented-control": "9.8.5",
"@dhis2-ui/select": "9.8.5",
"@dhis2-ui/selector-bar": "9.8.5",
"@dhis2-ui/sharing-dialog": "9.8.5",
"@dhis2-ui/switch": "9.8.5",
"@dhis2-ui/tab": "9.8.5",
"@dhis2-ui/table": "9.8.5",
"@dhis2-ui/tag": "9.8.5",
"@dhis2-ui/text-area": "9.8.5",
"@dhis2-ui/tooltip": "9.8.5",
"@dhis2-ui/transfer": "9.8.5",
"@dhis2-ui/user-avatar": "9.8.5",
"@dhis2/ui-constants": "9.8.5",
"@dhis2/ui-forms": "9.8.5",
"@dhis2/ui-icons": "9.8.5",
"@dhis2-ui/alert": "9.8.6",
"@dhis2-ui/box": "9.8.6",
"@dhis2-ui/button": "9.8.6",
"@dhis2-ui/calendar": "9.8.6",
"@dhis2-ui/card": "9.8.6",
"@dhis2-ui/center": "9.8.6",
"@dhis2-ui/checkbox": "9.8.6",
"@dhis2-ui/chip": "9.8.6",
"@dhis2-ui/cover": "9.8.6",
"@dhis2-ui/css": "9.8.6",
"@dhis2-ui/divider": "9.8.6",
"@dhis2-ui/field": "9.8.6",
"@dhis2-ui/file-input": "9.8.6",
"@dhis2-ui/header-bar": "9.8.6",
"@dhis2-ui/help": "9.8.6",
"@dhis2-ui/input": "9.8.6",
"@dhis2-ui/intersection-detector": "9.8.6",
"@dhis2-ui/label": "9.8.6",
"@dhis2-ui/layer": "9.8.6",
"@dhis2-ui/legend": "9.8.6",
"@dhis2-ui/loader": "9.8.6",
"@dhis2-ui/logo": "9.8.6",
"@dhis2-ui/menu": "9.8.6",
"@dhis2-ui/modal": "9.8.6",
"@dhis2-ui/node": "9.8.6",
"@dhis2-ui/notice-box": "9.8.6",
"@dhis2-ui/organisation-unit-tree": "9.8.6",
"@dhis2-ui/pagination": "9.8.6",
"@dhis2-ui/popover": "9.8.6",
"@dhis2-ui/popper": "9.8.6",
"@dhis2-ui/portal": "9.8.6",
"@dhis2-ui/radio": "9.8.6",
"@dhis2-ui/required": "9.8.6",
"@dhis2-ui/segmented-control": "9.8.6",
"@dhis2-ui/select": "9.8.6",
"@dhis2-ui/selector-bar": "9.8.6",
"@dhis2-ui/sharing-dialog": "9.8.6",
"@dhis2-ui/switch": "9.8.6",
"@dhis2-ui/tab": "9.8.6",
"@dhis2-ui/table": "9.8.6",
"@dhis2-ui/tag": "9.8.6",
"@dhis2-ui/text-area": "9.8.6",
"@dhis2-ui/tooltip": "9.8.6",
"@dhis2-ui/transfer": "9.8.6",
"@dhis2-ui/user-avatar": "9.8.6",
"@dhis2/ui-constants": "9.8.6",
"@dhis2/ui-forms": "9.8.6",
"@dhis2/ui-icons": "9.8.6",
"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.8.5",
"version": "9.8.6",
"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.8.5",
"@dhis2/ui-constants": "9.8.5",
"@dhis2/ui-icons": "9.8.5",
"@dhis2-ui/portal": "9.8.6",
"@dhis2/ui-constants": "9.8.6",
"@dhis2/ui-icons": "9.8.6",
"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.8.5",
"version": "9.8.6",
"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.8.5",
"@dhis2/ui-constants": "9.8.6",
"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.8.5",
"version": "9.8.6",
"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.8.5",
"@dhis2-ui/loader": "9.8.5",
"@dhis2-ui/popper": "9.8.5",
"@dhis2/ui-constants": "9.8.5",
"@dhis2/ui-icons": "9.8.5",
"@dhis2-ui/layer": "9.8.6",
"@dhis2-ui/loader": "9.8.6",
"@dhis2-ui/popper": "9.8.6",
"@dhis2/ui-constants": "9.8.6",
"@dhis2/ui-icons": "9.8.6",
"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.8.5",
"version": "9.8.6",
"description": "UI Calendar",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,15 +33,15 @@
"styled-jsx": "^4"
},
"dependencies": {
"@dhis2-ui/button": "9.8.5",
"@dhis2-ui/card": "9.8.5",
"@dhis2-ui/input": "9.8.5",
"@dhis2-ui/layer": "9.8.5",
"@dhis2-ui/popper": "9.8.5",
"@dhis2-ui/button": "9.8.6",
"@dhis2-ui/card": "9.8.6",
"@dhis2-ui/input": "9.8.6",
"@dhis2-ui/layer": "9.8.6",
"@dhis2-ui/popper": "9.8.6",
"@dhis2/multi-calendar-dates": "^1.1.1",
"@dhis2/prop-types": "^3.1.2",
"@dhis2/ui-constants": "9.8.5",
"@dhis2/ui-icons": "9.8.5",
"@dhis2/ui-constants": "9.8.6",
"@dhis2/ui-icons": "9.8.6",
"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.8.5",
"version": "9.8.6",
"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.8.5",
"@dhis2/ui-constants": "9.8.6",
"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.8.5",
"version": "9.8.6",
"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.8.5",
"@dhis2/ui-constants": "9.8.6",
"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.8.5",
"version": "9.8.6",
"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.8.5",
"@dhis2-ui/required": "9.8.5",
"@dhis2/ui-constants": "9.8.5",
"@dhis2-ui/field": "9.8.6",
"@dhis2-ui/required": "9.8.6",
"@dhis2/ui-constants": "9.8.6",
"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.8.5",
"version": "9.8.6",
"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.8.5",
"@dhis2/ui-constants": "9.8.6",
"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.8.5",
"version": "9.8.6",
"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.8.5",
"@dhis2/ui-constants": "9.8.6",
"classnames": "^2.3.1",
"prop-types": "^15.7.2"
},
Expand Down
Loading

0 comments on commit 0bd4191

Please sign in to comment.