@dhis2-ui/transfer 8.15.0-alpha.1 → 8.15.0-alpha.3

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.
Files changed (2) hide show
  1. package/package.json +8 -7
  2. package/types/index.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhis2-ui/transfer",
3
- "version": "8.15.0-alpha.1",
3
+ "version": "8.15.0-alpha.3",
4
4
  "description": "UI Transfer",
5
5
  "repository": {
6
6
  "type": "git",
@@ -13,6 +13,7 @@
13
13
  "main": "./build/cjs/index.js",
14
14
  "module": "./build/es/index.js",
15
15
  "exports": {
16
+ "types": "./types/index.d.ts",
16
17
  "import": "./build/es/index.js",
17
18
  "require": "./build/cjs/index.js"
18
19
  },
@@ -32,12 +33,12 @@
32
33
  },
33
34
  "dependencies": {
34
35
  "@dhis2/prop-types": "^3.1.2",
35
- "@dhis2-ui/button": "8.15.0-alpha.1",
36
- "@dhis2-ui/field": "8.15.0-alpha.1",
37
- "@dhis2-ui/input": "8.15.0-alpha.1",
38
- "@dhis2-ui/intersection-detector": "8.15.0-alpha.1",
39
- "@dhis2-ui/loader": "8.15.0-alpha.1",
40
- "@dhis2/ui-constants": "8.15.0-alpha.1",
36
+ "@dhis2-ui/button": "8.15.0-alpha.3",
37
+ "@dhis2-ui/field": "8.15.0-alpha.3",
38
+ "@dhis2-ui/input": "8.15.0-alpha.3",
39
+ "@dhis2-ui/intersection-detector": "8.15.0-alpha.3",
40
+ "@dhis2-ui/loader": "8.15.0-alpha.3",
41
+ "@dhis2/ui-constants": "8.15.0-alpha.3",
41
42
  "classnames": "^2.3.1",
42
43
  "prop-types": "^15.7.2"
43
44
  },
package/types/index.d.ts CHANGED
@@ -54,7 +54,7 @@ export interface TransferProps {
54
54
 
55
55
  export const Transfer: React.FC<TransferProps>
56
56
 
57
- type TransferOptionOnClickProp = (payload: { value: string }) => void
57
+ export type TransferOptionOnClickProp = (payload: { value: string }) => void
58
58
 
59
59
  export interface TransferOptionRenderProps extends TransferOption {
60
60
  highlighted: boolean