Skip to content

Commit

Permalink
chore(release): cut 9.15.0 [skip release]
Browse files Browse the repository at this point in the history
# [9.15.0](v9.14.1...v9.15.0) (2024-11-18)

### Features

* make input field clearable and add prefix icon ([#1619](#1619)) ([7f87fb4](7f87fb4))
  • Loading branch information
dhis2-bot committed Nov 18, 2024
1 parent 7f87fb4 commit 698c552
Show file tree
Hide file tree
Showing 56 changed files with 297 additions and 280 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [9.15.0](https://github.com/dhis2/ui/compare/v9.14.1...v9.15.0) (2024-11-18)


### Features

* make input field clearable and add prefix icon ([#1619](https://github.com/dhis2/ui/issues/1619)) ([7f87fb4](https://github.com/dhis2/ui/commit/7f87fb4ece42e1ba63143369dcefa1c33c65040f))

## [9.14.1](https://github.com/dhis2/ui/compare/v9.14.0...v9.14.1) (2024-11-17)


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.14.1",
"version": "9.15.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.14.1",
"@dhis2-ui/checkbox": "9.14.1",
"@dhis2-ui/field": "9.14.1",
"@dhis2-ui/file-input": "9.14.1",
"@dhis2-ui/input": "9.14.1",
"@dhis2-ui/radio": "9.14.1",
"@dhis2-ui/select": "9.14.1",
"@dhis2-ui/switch": "9.14.1",
"@dhis2-ui/text-area": "9.14.1",
"@dhis2-ui/button": "9.15.0",
"@dhis2-ui/checkbox": "9.15.0",
"@dhis2-ui/field": "9.15.0",
"@dhis2-ui/file-input": "9.15.0",
"@dhis2-ui/input": "9.15.0",
"@dhis2-ui/radio": "9.15.0",
"@dhis2-ui/select": "9.15.0",
"@dhis2-ui/switch": "9.15.0",
"@dhis2-ui/text-area": "9.15.0",
"classnames": "^2.3.1",
"final-form": "^4.20.2",
"prop-types": "^15.7.2",
Expand Down
5 changes: 5 additions & 0 deletions collections/ui/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,7 @@ import { Input } from '@dhis2/ui'
|---|---|---|---|---|
|autoComplete|string|||The [native `autocomplete` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-autocomplete)|
|className|string||||
|clearable|boolean|||Makes the input field clearable|
|dataTest|string|`'dhis2-uicore-input'`|||
|dense|boolean|||Makes the input smaller|
|disabled|boolean|||Disables the input|
Expand All @@ -772,6 +773,7 @@ import { Input } from '@dhis2/ui'
|min|string|||The [native `min` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-min), for use when `type` is `'number'`|
|name|string|||Name associated with the input. Passed to event handler callbacks in object|
|placeholder|string|||Placeholder text for the input|
|prefixIcon|element|||Add prefix icon|
|readOnly|boolean|||Makes the input read-only|
|role|string|||Sets a role attribute on the input|
|step|string|||The [native `step` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-step), for use when `type` is `'number'`|
Expand All @@ -780,6 +782,7 @@ import { Input } from '@dhis2/ui'
|valid|custom|||Applies 'valid' appearance for validation feedback. Mutually exclusive with `error` and `warning` props|
|value|string|||Value in the input. Can be used to control the component (recommended). Passed to event handler callbacks in object|
|warning|custom|||Applies 'warning' appearance for validation feedback. Mutually exclusive with `valid` and `error` props|
|width|string|||Defines the width of the input. Can be any valid CSS measurement|
|onBlur|function|||Called with signature `({ name: string, value: string }, event)`|
|onChange|function|||Called with signature `({ name: string, value: string }, event)`|
|onFocus|function|||Called with signature `({ name: string, value: string }, event)`|
Expand All @@ -803,6 +806,7 @@ import { InputField } from '@dhis2/ui'
|---|---|---|---|---|
|autoComplete|string|||The [native `autocomplete` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-autocomplete)|
|className|string||||
|clearable|boolean|||Makes the input field clearable|
|dataTest|string|`'dhis2-uiwidgets-inputfield'`|||
|dense|boolean|||Makes the input smaller|
|disabled|boolean|||Disables the input|
Expand All @@ -816,6 +820,7 @@ import { InputField } from '@dhis2/ui'
|min|string|||The [native `min` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-min), for use when `type` is `'number'`|
|name|string|||Name associated with the input. Passed to event handler callbacks in object|
|placeholder|string|||Placeholder text for the input|
|prefixIcon|element|||Add prefix icon|
|readOnly|boolean|||Makes the input read-only|
|required|boolean|||Indicates this input is required|
|step|string|||The [native `step` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-step), for use when `type` is `'number'`|
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.14.1",
"version": "9.15.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.14.1",
"@dhis2-ui/box": "9.14.1",
"@dhis2-ui/button": "9.14.1",
"@dhis2-ui/calendar": "9.14.1",
"@dhis2-ui/card": "9.14.1",
"@dhis2-ui/center": "9.14.1",
"@dhis2-ui/checkbox": "9.14.1",
"@dhis2-ui/chip": "9.14.1",
"@dhis2-ui/cover": "9.14.1",
"@dhis2-ui/css": "9.14.1",
"@dhis2-ui/divider": "9.14.1",
"@dhis2-ui/field": "9.14.1",
"@dhis2-ui/file-input": "9.14.1",
"@dhis2-ui/header-bar": "9.14.1",
"@dhis2-ui/help": "9.14.1",
"@dhis2-ui/input": "9.14.1",
"@dhis2-ui/intersection-detector": "9.14.1",
"@dhis2-ui/label": "9.14.1",
"@dhis2-ui/layer": "9.14.1",
"@dhis2-ui/legend": "9.14.1",
"@dhis2-ui/loader": "9.14.1",
"@dhis2-ui/logo": "9.14.1",
"@dhis2-ui/menu": "9.14.1",
"@dhis2-ui/modal": "9.14.1",
"@dhis2-ui/node": "9.14.1",
"@dhis2-ui/notice-box": "9.14.1",
"@dhis2-ui/organisation-unit-tree": "9.14.1",
"@dhis2-ui/pagination": "9.14.1",
"@dhis2-ui/popover": "9.14.1",
"@dhis2-ui/popper": "9.14.1",
"@dhis2-ui/portal": "9.14.1",
"@dhis2-ui/radio": "9.14.1",
"@dhis2-ui/required": "9.14.1",
"@dhis2-ui/segmented-control": "9.14.1",
"@dhis2-ui/select": "9.14.1",
"@dhis2-ui/selector-bar": "9.14.1",
"@dhis2-ui/sharing-dialog": "9.14.1",
"@dhis2-ui/switch": "9.14.1",
"@dhis2-ui/tab": "9.14.1",
"@dhis2-ui/table": "9.14.1",
"@dhis2-ui/tag": "9.14.1",
"@dhis2-ui/text-area": "9.14.1",
"@dhis2-ui/tooltip": "9.14.1",
"@dhis2-ui/transfer": "9.14.1",
"@dhis2-ui/user-avatar": "9.14.1",
"@dhis2/ui-constants": "9.14.1",
"@dhis2/ui-forms": "9.14.1",
"@dhis2/ui-icons": "9.14.1",
"@dhis2-ui/alert": "9.15.0",
"@dhis2-ui/box": "9.15.0",
"@dhis2-ui/button": "9.15.0",
"@dhis2-ui/calendar": "9.15.0",
"@dhis2-ui/card": "9.15.0",
"@dhis2-ui/center": "9.15.0",
"@dhis2-ui/checkbox": "9.15.0",
"@dhis2-ui/chip": "9.15.0",
"@dhis2-ui/cover": "9.15.0",
"@dhis2-ui/css": "9.15.0",
"@dhis2-ui/divider": "9.15.0",
"@dhis2-ui/field": "9.15.0",
"@dhis2-ui/file-input": "9.15.0",
"@dhis2-ui/header-bar": "9.15.0",
"@dhis2-ui/help": "9.15.0",
"@dhis2-ui/input": "9.15.0",
"@dhis2-ui/intersection-detector": "9.15.0",
"@dhis2-ui/label": "9.15.0",
"@dhis2-ui/layer": "9.15.0",
"@dhis2-ui/legend": "9.15.0",
"@dhis2-ui/loader": "9.15.0",
"@dhis2-ui/logo": "9.15.0",
"@dhis2-ui/menu": "9.15.0",
"@dhis2-ui/modal": "9.15.0",
"@dhis2-ui/node": "9.15.0",
"@dhis2-ui/notice-box": "9.15.0",
"@dhis2-ui/organisation-unit-tree": "9.15.0",
"@dhis2-ui/pagination": "9.15.0",
"@dhis2-ui/popover": "9.15.0",
"@dhis2-ui/popper": "9.15.0",
"@dhis2-ui/portal": "9.15.0",
"@dhis2-ui/radio": "9.15.0",
"@dhis2-ui/required": "9.15.0",
"@dhis2-ui/segmented-control": "9.15.0",
"@dhis2-ui/select": "9.15.0",
"@dhis2-ui/selector-bar": "9.15.0",
"@dhis2-ui/sharing-dialog": "9.15.0",
"@dhis2-ui/switch": "9.15.0",
"@dhis2-ui/tab": "9.15.0",
"@dhis2-ui/table": "9.15.0",
"@dhis2-ui/tag": "9.15.0",
"@dhis2-ui/text-area": "9.15.0",
"@dhis2-ui/tooltip": "9.15.0",
"@dhis2-ui/transfer": "9.15.0",
"@dhis2-ui/user-avatar": "9.15.0",
"@dhis2/ui-constants": "9.15.0",
"@dhis2/ui-forms": "9.15.0",
"@dhis2/ui-icons": "9.15.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.14.1",
"version": "9.15.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.14.1",
"@dhis2/ui-constants": "9.14.1",
"@dhis2/ui-icons": "9.14.1",
"@dhis2-ui/portal": "9.15.0",
"@dhis2/ui-constants": "9.15.0",
"@dhis2/ui-icons": "9.15.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.14.1",
"version": "9.15.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.14.1",
"@dhis2/ui-constants": "9.15.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.14.1",
"version": "9.15.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.14.1",
"@dhis2-ui/loader": "9.14.1",
"@dhis2-ui/popper": "9.14.1",
"@dhis2/ui-constants": "9.14.1",
"@dhis2/ui-icons": "9.14.1",
"@dhis2-ui/layer": "9.15.0",
"@dhis2-ui/loader": "9.15.0",
"@dhis2-ui/popper": "9.15.0",
"@dhis2/ui-constants": "9.15.0",
"@dhis2/ui-icons": "9.15.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.14.1",
"version": "9.15.0",
"description": "UI Calendar",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,15 +33,15 @@
"styled-jsx": "^4"
},
"dependencies": {
"@dhis2-ui/button": "9.14.1",
"@dhis2-ui/card": "9.14.1",
"@dhis2-ui/input": "9.14.1",
"@dhis2-ui/layer": "9.14.1",
"@dhis2-ui/popper": "9.14.1",
"@dhis2-ui/button": "9.15.0",
"@dhis2-ui/card": "9.15.0",
"@dhis2-ui/input": "9.15.0",
"@dhis2-ui/layer": "9.15.0",
"@dhis2-ui/popper": "9.15.0",
"@dhis2/multi-calendar-dates": "^1.2.3",
"@dhis2/prop-types": "^3.1.2",
"@dhis2/ui-constants": "9.14.1",
"@dhis2/ui-icons": "9.14.1",
"@dhis2/ui-constants": "9.15.0",
"@dhis2/ui-icons": "9.15.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.14.1",
"version": "9.15.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.14.1",
"@dhis2/ui-constants": "9.15.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.14.1",
"version": "9.15.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.14.1",
"@dhis2/ui-constants": "9.15.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.14.1",
"version": "9.15.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.14.1",
"@dhis2-ui/required": "9.14.1",
"@dhis2/ui-constants": "9.14.1",
"@dhis2-ui/field": "9.15.0",
"@dhis2-ui/required": "9.15.0",
"@dhis2/ui-constants": "9.15.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.14.1",
"version": "9.15.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.14.1",
"@dhis2/ui-constants": "9.15.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.14.1",
"version": "9.15.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.14.1",
"@dhis2/ui-constants": "9.15.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.14.1",
"version": "9.15.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.14.1",
"@dhis2/ui-constants": "9.15.0",
"classnames": "^2.3.1",
"prop-types": "^15.7.2"
},
Expand Down
Loading

0 comments on commit 698c552

Please sign in to comment.