Skip to content

Commit 7248b81

Browse files
Portugal, MarceloPortugal, Marcelo
authored andcommitted
v4.7.0
1 parent 3cbfcbf commit 7248b81

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1110
-747
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [4.7.0](https://github.com/angular-ui/ui-grid/compare/v4.6.6...v4.7.0) (2019-02-01)
7+
8+
9+
### Bug Fixes
10+
11+
* **exporter:** add missing dependencies ([a86eb0e](https://github.com/angular-ui/ui-grid/commit/a86eb0e))
12+
* **grouping.js:** fix typo in description ([4597c69](https://github.com/angular-ui/ui-grid/commit/4597c69))
13+
* **less:** update less file references ([47c1239](https://github.com/angular-ui/ui-grid/commit/47c1239))
14+
* **selection:** prevent cell to be selected when user scroll ([a537f0c](https://github.com/angular-ui/ui-grid/commit/a537f0c))
15+
* **selection:** take in care about time touched properly ([0dbdafe](https://github.com/angular-ui/ui-grid/commit/0dbdafe))
16+
* **uiGridColumMenu:** Add missing promise catch handlers for focus.bySelector calls ([de57fdc](https://github.com/angular-ui/ui-grid/commit/de57fdc))
17+
* **uiGridColumMenu:** Check column visibility before trying to focus it in the menu-hidden callback ([3a8e87b](https://github.com/angular-ui/ui-grid/commit/3a8e87b))
18+
* **uiGridColumMenu:** Check for menu item visibility before trying to focus the first visible menu item ([3085417](https://github.com/angular-ui/ui-grid/commit/3085417))
19+
20+
21+
### Features
22+
23+
* **css:** add feature based CSS files ([9e1c042](https://github.com/angular-ui/ui-grid/commit/9e1c042))
24+
* **filter:** add filterContainer option to allow a column filter to be placed in column menu ([bdb832a](https://github.com/angular-ui/ui-grid/commit/bdb832a)), closes [#3989](https://github.com/angular-ui/ui-grid/issues/3989)
25+
26+
27+
### BREAKING CHANGES
28+
29+
* **less:** feature less files have been moved to the root of the
30+
less folder.
31+
32+
33+
34+
35+
136
<a name="4.6.5"></a>
237
## [4.6.5](https://github.com/angular-ui/ui-grid/compare/v4.6.4...v4.6.5) (2018-11-16)
338

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "4.6.6"
5+
"version": "4.7.0"
66
}

packages/auto-resize/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [4.7.0](https://github.com/angular-ui/ui-grid/compare/v4.6.6...v4.7.0) (2019-02-01)
7+
8+
**Note:** Version bump only for package @ui-grid/auto-resize

packages/auto-resize/package.json

Lines changed: 34 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,36 @@
11
{
2-
"name": "@ui-grid/auto-resize",
3-
"version": "4.6.6",
4-
"description": "This module provides auto-resizing functionality to UI-Grid",
5-
"main": "index.js",
6-
"dependencies": {
7-
"@ui-grid/core": "4.6.6",
8-
"angular": ">=1.4.0 1.7.x"
9-
},
10-
"publishConfig": {
11-
"access": "public"
12-
},
13-
"repository": {
14-
"type": "git",
15-
"url": "https://github.com/angular-ui/ui-grid.git"
16-
},
17-
"homepage": "http://ui-grid.info",
18-
"bugs": { "url": "https://github.com/angular-ui/ui-grid/issues" },
19-
"keywords": [
20-
"angular",
21-
"ng-grid",
22-
"nggrid",
23-
"grid",
24-
"angularjs",
25-
"slickgrid",
26-
"kogrid",
27-
"ui-grid",
28-
"ui grid",
29-
"data grid",
30-
"ui-grid/auto-resize"
31-
],
32-
"author": "UI Grid Team",
33-
"license": "MIT"
2+
"name": "@ui-grid/auto-resize",
3+
"version": "4.7.0",
4+
"description": "This module provides auto-resizing functionality to UI-Grid",
5+
"main": "index.js",
6+
"dependencies": {
7+
"@ui-grid/core": "^4.7.0",
8+
"angular": ">=1.4.0 1.7.x"
9+
},
10+
"publishConfig": {
11+
"access": "public"
12+
},
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/angular-ui/ui-grid.git"
16+
},
17+
"homepage": "http://ui-grid.info",
18+
"bugs": {
19+
"url": "https://github.com/angular-ui/ui-grid/issues"
20+
},
21+
"keywords": [
22+
"angular",
23+
"ng-grid",
24+
"nggrid",
25+
"grid",
26+
"angularjs",
27+
"slickgrid",
28+
"kogrid",
29+
"ui-grid",
30+
"ui grid",
31+
"data grid",
32+
"ui-grid/auto-resize"
33+
],
34+
"author": "UI Grid Team",
35+
"license": "MIT"
3436
}
35-

packages/cellnav/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [4.7.0](https://github.com/angular-ui/ui-grid/compare/v4.6.6...v4.7.0) (2019-02-01)
7+
8+
9+
### Bug Fixes
10+
11+
* **less:** update less file references ([47c1239](https://github.com/angular-ui/ui-grid/commit/47c1239))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* **less:** feature less files have been moved to the root of the
17+
less folder.

packages/cellnav/package.json

Lines changed: 39 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,41 @@
11
{
2-
"name": "@ui-grid/cell-nav",
3-
"version": "4.6.6",
4-
"description": "This module provides cell navigation functionality to UI-Grid",
5-
"main": "index.js",
6-
"dependencies": {
7-
"@ui-grid/core": "4.6.6",
8-
"angular": ">=1.4.0 1.7.x"
9-
},
10-
"publishConfig": {
11-
"access": "public"
12-
},
13-
"repository": {
14-
"type": "git",
15-
"url": "https://github.com/angular-ui/ui-grid.git"
16-
},
17-
"homepage": "http://ui-grid.info",
18-
"bugs": { "url": "https://github.com/angular-ui/ui-grid/issues" },
19-
"keywords": [
20-
"angular",
21-
"ng-grid",
22-
"nggrid",
23-
"grid",
24-
"angularjs",
25-
"slickgrid",
26-
"kogrid",
27-
"ui-grid",
28-
"ui grid",
29-
"data grid",
30-
"ui-grid/cell-nav",
31-
"ui-grid/cellnav",
32-
"a11y",
33-
"accessibility",
34-
"keyboard",
35-
"navigation"
36-
],
37-
"author": "UI Grid Team",
38-
"license": "MIT"
2+
"name": "@ui-grid/cell-nav",
3+
"version": "4.7.0",
4+
"description": "This module provides cell navigation functionality to UI-Grid",
5+
"main": "index.js",
6+
"dependencies": {
7+
"@ui-grid/core": "^4.7.0",
8+
"angular": ">=1.4.0 1.7.x"
9+
},
10+
"publishConfig": {
11+
"access": "public"
12+
},
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/angular-ui/ui-grid.git"
16+
},
17+
"homepage": "http://ui-grid.info",
18+
"bugs": {
19+
"url": "https://github.com/angular-ui/ui-grid/issues"
20+
},
21+
"keywords": [
22+
"angular",
23+
"ng-grid",
24+
"nggrid",
25+
"grid",
26+
"angularjs",
27+
"slickgrid",
28+
"kogrid",
29+
"ui-grid",
30+
"ui grid",
31+
"data grid",
32+
"ui-grid/cell-nav",
33+
"ui-grid/cellnav",
34+
"a11y",
35+
"accessibility",
36+
"keyboard",
37+
"navigation"
38+
],
39+
"author": "UI Grid Team",
40+
"license": "MIT"
3941
}
40-

packages/core/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [4.7.0](https://github.com/angular-ui/ui-grid/compare/v4.6.6...v4.7.0) (2019-02-01)
7+
8+
9+
### Features
10+
11+
* **css:** add feature based CSS files ([9e1c042](https://github.com/angular-ui/ui-grid/commit/9e1c042))

packages/core/package.json

Lines changed: 33 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,35 @@
11
{
2-
"name": "@ui-grid/core",
3-
"version": "4.6.6",
4-
"description": "A data grid for Angular",
5-
"main": "index.js",
6-
"dependencies": {
7-
"angular": ">=1.4.0 1.7.x"
8-
},
9-
"publishConfig": {
10-
"access": "public"
11-
},
12-
"repository": {
13-
"type": "git",
14-
"url": "https://github.com/angular-ui/ui-grid.git"
15-
},
16-
"homepage": "http://ui-grid.info",
17-
"bugs": { "url": "https://github.com/angular-ui/ui-grid/issues" },
18-
"keywords": [
19-
"angular",
20-
"ng-grid",
21-
"nggrid",
22-
"grid",
23-
"angularjs",
24-
"slickgrid",
25-
"kogrid",
26-
"ui-grid",
27-
"ui grid",
28-
"data grid",
29-
"ui-grid/core"
30-
],
31-
"author": "UI Grid Team",
32-
"license": "MIT"
2+
"name": "@ui-grid/core",
3+
"version": "4.7.0",
4+
"description": "A data grid for Angular",
5+
"main": "index.js",
6+
"dependencies": {
7+
"angular": ">=1.4.0 1.7.x"
8+
},
9+
"publishConfig": {
10+
"access": "public"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/angular-ui/ui-grid.git"
15+
},
16+
"homepage": "http://ui-grid.info",
17+
"bugs": {
18+
"url": "https://github.com/angular-ui/ui-grid/issues"
19+
},
20+
"keywords": [
21+
"angular",
22+
"ng-grid",
23+
"nggrid",
24+
"grid",
25+
"angularjs",
26+
"slickgrid",
27+
"kogrid",
28+
"ui-grid",
29+
"ui grid",
30+
"data grid",
31+
"ui-grid/core"
32+
],
33+
"author": "UI Grid Team",
34+
"license": "MIT"
3335
}
34-

packages/edit/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [4.7.0](https://github.com/angular-ui/ui-grid/compare/v4.6.6...v4.7.0) (2019-02-01)
7+
8+
9+
### Bug Fixes
10+
11+
* **less:** update less file references ([47c1239](https://github.com/angular-ui/ui-grid/commit/47c1239))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* **less:** feature less files have been moved to the root of the
17+
less folder.

packages/edit/package.json

Lines changed: 35 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,37 @@
11
{
2-
"name": "@ui-grid/edit",
3-
"version": "4.6.6",
4-
"description": "This module provides cell editing capability to ui.grid",
5-
"main": "index.js",
6-
"dependencies": {
7-
"@ui-grid/core": "4.6.6",
8-
"angular": ">=1.4.0 1.7.x"
9-
},
10-
"publishConfig": {
11-
"access": "public"
12-
},
13-
"repository": {
14-
"type": "git",
15-
"url": "https://github.com/angular-ui/ui-grid.git"
16-
},
17-
"homepage": "http://ui-grid.info",
18-
"bugs": { "url": "https://github.com/angular-ui/ui-grid/issues" },
19-
"keywords": [
20-
"angular",
21-
"ng-grid",
22-
"nggrid",
23-
"grid",
24-
"angularjs",
25-
"slickgrid",
26-
"kogrid",
27-
"ui-grid",
28-
"ui grid",
29-
"data grid",
30-
"ui-grid/edit",
31-
"cell-edit"
32-
],
33-
"author": "UI Grid Team",
34-
"license": "MIT"
2+
"name": "@ui-grid/edit",
3+
"version": "4.7.0",
4+
"description": "This module provides cell editing capability to ui.grid",
5+
"main": "index.js",
6+
"dependencies": {
7+
"@ui-grid/core": "^4.7.0",
8+
"angular": ">=1.4.0 1.7.x"
9+
},
10+
"publishConfig": {
11+
"access": "public"
12+
},
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/angular-ui/ui-grid.git"
16+
},
17+
"homepage": "http://ui-grid.info",
18+
"bugs": {
19+
"url": "https://github.com/angular-ui/ui-grid/issues"
20+
},
21+
"keywords": [
22+
"angular",
23+
"ng-grid",
24+
"nggrid",
25+
"grid",
26+
"angularjs",
27+
"slickgrid",
28+
"kogrid",
29+
"ui-grid",
30+
"ui grid",
31+
"data grid",
32+
"ui-grid/edit",
33+
"cell-edit"
34+
],
35+
"author": "UI Grid Team",
36+
"license": "MIT"
3537
}
36-

0 commit comments

Comments
 (0)