@dhis2-ui/card 8.15.0-alpha.2 → 8.15.0

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 -6
  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.2",
3
+ "version": "8.15.0",
4
4
  "description": "UI Card",
5
5
  "repository": {
6
6
  "type": "git",
@@ -32,18 +32,16 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@dhis2/prop-types": "^3.1.2",
35
- "@dhis2/ui-constants": "8.15.0-alpha.2",
35
+ "@dhis2/ui-constants": "8.15.0",
36
36
  "classnames": "^2.3.1",
37
37
  "prop-types": "^15.7.2"
38
38
  },
39
39
  "files": [
40
- "build",
41
- "types"
40
+ "build"
42
41
  ],
43
42
  "devDependencies": {
44
43
  "react": "16.13",
45
44
  "react-dom": "16.13",
46
45
  "styled-jsx": "^4.0.1"
47
- },
48
- "types": "types"
46
+ }
49
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>