@dhis2-ui/card 8.15.0-alpha.3 → 8.15.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +4 -7
  2. package/types/index.d.ts +0 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhis2-ui/card",
3
- "version": "8.15.0-alpha.3",
3
+ "version": "8.15.1",
4
4
  "description": "UI Card",
5
5
  "repository": {
6
6
  "type": "git",
@@ -13,7 +13,6 @@
13
13
  "main": "./build/cjs/index.js",
14
14
  "module": "./build/es/index.js",
15
15
  "exports": {
16
- "types": "./types/index.d.ts",
17
16
  "import": "./build/es/index.js",
18
17
  "require": "./build/cjs/index.js"
19
18
  },
@@ -33,18 +32,16 @@
33
32
  },
34
33
  "dependencies": {
35
34
  "@dhis2/prop-types": "^3.1.2",
36
- "@dhis2/ui-constants": "8.15.0-alpha.3",
35
+ "@dhis2/ui-constants": "8.15.1",
37
36
  "classnames": "^2.3.1",
38
37
  "prop-types": "^15.7.2"
39
38
  },
40
39
  "files": [
41
- "build",
42
- "types"
40
+ "build"
43
41
  ],
44
42
  "devDependencies": {
45
43
  "react": "16.13",
46
44
  "react-dom": "16.13",
47
45
  "styled-jsx": "^4.0.1"
48
- },
49
- "types": "types"
46
+ }
50
47
  }
package/types/index.d.ts DELETED
@@ -1,9 +0,0 @@
1
- import * as React from 'react'
2
-
3
- export interface CardProps {
4
- children?: React.ReactNode
5
- className?: string
6
- dataTest?: string
7
- }
8
-
9
- export const Card: React.FC<CardProps>