Skip to content

Commit 054b3dc

Browse files
authored
Merge pull request #1348 from adumesny/typescript
TS: 2.0.0-rc3 release
2 parents f45ebee + c12e46b commit 054b3dc

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ import { GridStack } from 'gridstack';
7777
import 'gridstack/dist/gridstack.css';
7878
```
7979

80-
legacy javascript
80+
legacy javascript. If you need to import individual files (see [jquery apps](#jquery-application) section)
8181

8282
```js
8383
import 'gridstack/dist/gridstack.all.js';

doc/CHANGES.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Change log
66
**Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)*
77

88
- [2.0.0-dev (upcoming)](#200-dev-upcoming)
9+
- [1.2.1 (2020-09-04)](#121-2020-09-04)
910
- [1.2.0 (2020-08-01)](#120-2020-08-01)
1011
- [1.1.2 (2020-05-17)](#112-2020-05-17)
1112
- [1.1.1 (2020-03-17)](#111-2020-03-17)
@@ -47,6 +48,10 @@ You can now have perfect square cells (default) [723](https://github.com/gridsta
4748
- fix [1102](https://github.com/gridstack/gridstack.js/issues/1102) loose functionality when they are moved to a new grid
4849
- add optional params to `removeWidget()` to have quiet mode (no callbacks)
4950

51+
## 1.2.1 (2020-09-04)
52+
53+
- fix [1341](https://github.com/gridstack/gridstack.js/pull/1341) Enable the UMD behavior for bundlers compatibility
54+
5055
## 1.2.0 (2020-08-01)
5156

5257
- fix [1311](https://github.com/gridstack/gridstack.js/issues/1311) domAttr is not defined

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "gridstack",
3-
"version": "2.0.0-rc2",
3+
"version": "2.0.0-rc3",
44
"description": "TypeScript/Javascript lib for dashboard layout and creation, no external dependencies, with many wrappers (React, Angular, Ember, knockout...)",
55
"main": "./dist/gridstack.js",
6-
"typings": "./dist/gridstack.d.ts",
6+
"types": "./dist/gridstack.d.ts",
77
"repository": {
88
"type": "git",
99
"url": "git+https://github.com/gridstack/gridstack.js.git"

webpack.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ module.exports = {
1818
},
1919
resolve: {
2020
extensions: [ '.ts', '.js' ],
21+
alias: {
22+
'jquery': './src/jq/jquery.js',
23+
'jquery-ui': './src/jq/jquery-ui.js',
24+
}
2125
},
2226
output: {
2327
filename: '[name].js',

0 commit comments

Comments
 (0)