playbook-ui 15.7.0-alpha.play270013286 → 15.7.0-alpha.play270013292

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 +13 -6
  2. package/charts.d.ts +0 -7
package/package.json CHANGED
@@ -1,18 +1,26 @@
1
1
  {
2
2
  "name": "playbook-ui",
3
- "version": "15.7.0-alpha.play270013286",
3
+ "version": "15.7.0-alpha.play270013292",
4
4
  "description": "Nitro's Design System",
5
5
  "main": "./dist/playbook.js",
6
6
  "types": "./dist/types/index.d.ts",
7
7
  "exports": {
8
8
  ".": {
9
+ "types": "./dist/types/index.d.ts",
9
10
  "import": "./dist/playbook.js",
10
- "types": "./dist/types/index.d.ts"
11
+ "require": "./dist/playbook.js",
12
+ "default": "./dist/playbook.js"
11
13
  },
12
14
  "./charts": {
13
15
  "types": "./dist/types/charts.d.ts",
14
- "import": "./dist/charts.js"
15
- }
16
+ "import": "./dist/charts.js",
17
+ "require": "./dist/charts.js",
18
+ "default": "./dist/charts.js"
19
+ },
20
+ "./dist/playbook.css": "./dist/playbook.css",
21
+ "./dist/reset.css": "./dist/reset.css",
22
+ "./dist/*": "./dist/*",
23
+ "./fonts/*": "./fonts/*"
16
24
  },
17
25
  "scripts": {
18
26
  "flow": "flow",
@@ -37,8 +45,7 @@
37
45
  },
38
46
  "files": [
39
47
  "dist/*",
40
- "fonts/*",
41
- "charts.d.ts"
48
+ "fonts/*"
42
49
  ],
43
50
  "bugs": {
44
51
  "url": "https://github.com/powerhome/playbook/issues"
package/charts.d.ts DELETED
@@ -1,7 +0,0 @@
1
- // Type definitions for playbook-ui/charts
2
- // Charts require: npm install highcharts highcharts-react-official
3
-
4
- export { default as PbBarGraph } from './app/pb_kits/playbook/pb_pb_bar_graph/_pb_bar_graph'
5
- export { default as PbCircleChart } from './app/pb_kits/playbook/pb_pb_circle_chart/_pb_circle_chart'
6
- export { default as PbGaugeChart } from './app/pb_kits/playbook/pb_pb_gauge_chart/_pb_gauge_chart'
7
- export { default as PbLineGraph } from './app/pb_kits/playbook/pb_pb_line_graph/_pb_line_graph'