@@ -81,7 +81,7 @@ Blueprint as well. Some Blueprint components use the following ES2015 features:
81
81
...
82
82
<!-- include dependencies manually -->
83
83
<link href =" path/to/node_modules/normalize.css/normalize.css" rel =" stylesheet" />
84
- <link href =" path/to/node_modules/@blueprintjs/core/dist /blueprint.css" rel =" stylesheet" />
84
+ <link href =" path/to/node_modules/@blueprintjs/core/lib/css /blueprint.css" rel =" stylesheet" />
85
85
...
86
86
</head >
87
87
...
@@ -101,7 +101,8 @@ Blueprint supports the venerable [unpkg CDN](https://unpkg.com). Each package pr
101
101
library on the ` Blueprint ` global variable: ` Blueprint.Core ` , ` Blueprint.Datetime ` , etc.
102
102
103
103
These bundles _ do not include_ external dependencies; your application will need to ensure that
104
- ` normalize.css ` , ` React ` , ` classnames ` , and ` Tether ` are available at runtime.
104
+ ` normalize.css ` , ` react ` , ` react-dom ` , ` react-transition-group ` , ` classnames ` , ` popper.js ` , and
105
+ ` react-popper ` are available at runtime.
105
106
106
107
``` html
107
108
<!DOCTYPE html>
@@ -110,16 +111,18 @@ These bundles _do not include_ external dependencies; your application will need
110
111
<meta charset =" utf-8" >
111
112
<meta name =" viewport" content =" width=device-width" >
112
113
<title >Blueprint Starter Kit</title >
113
- <link href =" https://unpkg.com/normalize.css@^4.1.1 " rel =" stylesheet" />
114
- <link href =" https://unpkg.com/@blueprintjs/core@^1.11 .0/dist /blueprint.css" rel =" stylesheet" />
114
+ <link href =" https://unpkg.com/normalize.css@^7.0.0 " rel =" stylesheet" />
115
+ <link href =" https://unpkg.com/@blueprintjs/core@^2.0 .0/lib/css /blueprint.css" rel =" stylesheet" />
115
116
</head >
116
117
<body >
117
118
<script src =" https://unpkg.com/classnames@^2.2" ></script >
118
119
<script src =" https://unpkg.com/dom4@^1.8" ></script >
119
- <script src =" https://unpkg.com/tether@^1.4" ></script >
120
- <script src =" https://unpkg.com/react@^15.3.1/dist/react-with-addons.min.js" ></script >
121
- <script src =" https://unpkg.com/react-dom@^15.3.1/dist/react-dom.min.js" ></script >
122
- <script src =" https://unpkg.com/@blueprintjs/core@^1.11.0" ></script >
120
+ <script src =" https://unpkg.com/react@^16.2.0/umd/react.production.min.js" ></script >
121
+ <script src =" https://unpkg.com/react-dom@^16.2.0/umd/react-dom.production.min.js" ></script >
122
+ <script src =" https://unpkg.com/react-transition-group@^2.2.1/dist/react-transition-group.min.js" ></script >
123
+ <script src =" https://unpkg.com/popper.js@^1.12.6/dist/umd/popper.js" ></script >
124
+ <script src =" https://unpkg.com/react-popper@~0.7.4/dist/react-popper.min.js" ></script >
125
+ <script src =" https://unpkg.com/@blueprintjs/core@^2.0.0" ></script >
123
126
124
127
<div id =" btn" ></div >
125
128
<script >
0 commit comments