Skip to content

Commit 3fc5157

Browse files
committed
v4.12.6
1 parent c98420a commit 3fc5157

File tree

112 files changed

+144
-133
lines changed

Some content is hidden

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

112 files changed

+144
-133
lines changed

CHANGELOG.md

+11

css/ui-grid.core.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

css/ui-grid.core.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"data grid"
2828
],
2929
"license": "MIT",
30-
"version": "4.12.5",
30+
"version": "4.12.6",
3131
"files": [
3232
"css",
3333
"fonts",

ui-grid.auto-resize.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.auto-resize.min.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.cellnav.js

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/
@@ -39,8 +39,8 @@
3939
});
4040

4141

42-
module.factory('uiGridCellNavFactory', ['gridUtil', 'uiGridConstants', 'uiGridCellNavConstants', 'GridRowColumn', '$q',
43-
function (gridUtil, uiGridConstants, uiGridCellNavConstants, GridRowColumn, $q) {
42+
module.factory('uiGridCellNavFactory', ['uiGridCellNavConstants', 'GridRowColumn',
43+
function (uiGridCellNavConstants, GridRowColumn) {
4444
/**
4545
* @ngdoc object
4646
* @name ui.grid.cellNav.object:CellNav
@@ -268,8 +268,8 @@
268268
* @description Services for cell navigation features. If you don't like the key maps we use,
269269
* or the direction cells navigation, override with a service decorator (see angular docs)
270270
*/
271-
module.service('uiGridCellNavService', ['gridUtil', 'uiGridConstants', 'uiGridCellNavConstants', '$q', 'uiGridCellNavFactory', 'GridRowColumn', 'ScrollEvent',
272-
function (gridUtil, uiGridConstants, uiGridCellNavConstants, $q, UiGridCellNav, GridRowColumn, ScrollEvent) {
271+
module.service('uiGridCellNavService', ['uiGridConstants', 'uiGridCellNavConstants', '$q', 'uiGridCellNavFactory',
272+
function (uiGridConstants, uiGridCellNavConstants, $q, UiGridCellNav) {
273273

274274
var service = {
275275

@@ -628,8 +628,8 @@
628628
</file>
629629
</example>
630630
*/
631-
module.directive('uiGridCellnav', ['gridUtil', 'uiGridCellNavService', 'uiGridCellNavConstants', 'uiGridConstants', 'GridRowColumn', '$timeout', '$compile', 'i18nService',
632-
function (gridUtil, uiGridCellNavService, uiGridCellNavConstants, uiGridConstants, GridRowColumn, $timeout, $compile, i18nService) {
631+
module.directive('uiGridCellnav', ['uiGridCellNavService', 'uiGridCellNavConstants', 'uiGridConstants', 'GridRowColumn', '$compile', 'i18nService',
632+
function (uiGridCellNavService, uiGridCellNavConstants, uiGridConstants, GridRowColumn, $compile, i18nService) {
633633
return {
634634
replace: true,
635635
priority: -150,
@@ -867,8 +867,8 @@
867867
};
868868
}]);
869869

870-
module.directive('uiGridRenderContainer', ['$timeout', '$document', 'gridUtil', 'uiGridConstants', 'uiGridCellNavService', '$compile','uiGridCellNavConstants',
871-
function ($timeout, $document, gridUtil, uiGridConstants, uiGridCellNavService, $compile, uiGridCellNavConstants) {
870+
module.directive('uiGridRenderContainer', ['$timeout', 'gridUtil', 'uiGridCellNavService', '$compile','uiGridCellNavConstants',
871+
function ($timeout, gridUtil, uiGridCellNavService, $compile, uiGridCellNavConstants) {
872872
return {
873873
replace: true,
874874
priority: -99999, // this needs to run very last
@@ -1052,8 +1052,8 @@
10521052
* @restrict A
10531053
* @description Stacks on top of ui.grid.uiGridCell to provide cell navigation
10541054
*/
1055-
module.directive('uiGridCell', ['$timeout', '$document', 'uiGridCellNavService', 'gridUtil', 'uiGridCellNavConstants', 'uiGridConstants', 'GridRowColumn',
1056-
function ($timeout, $document, uiGridCellNavService, gridUtil, uiGridCellNavConstants, uiGridConstants, GridRowColumn) {
1055+
module.directive('uiGridCell', ['uiGridCellNavConstants', 'uiGridConstants', 'GridRowColumn',
1056+
function (uiGridCellNavConstants, uiGridConstants, GridRowColumn) {
10571057
return {
10581058
priority: -150, // run after default uiGridCell directive and ui.grid.edit uiGridCell
10591059
restrict: 'A',

ui-grid.cellnav.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.core.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.edit.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.edit.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.empty-base-layer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.empty-base-layer.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.expandable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.expandable.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.exporter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.exporter.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.grouping.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.grouping.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.importer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.importer.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.infinite-scroll.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.infinite-scroll.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.js

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/
@@ -110,8 +110,8 @@
110110
});
111111

112112

113-
module.factory('uiGridCellNavFactory', ['gridUtil', 'uiGridConstants', 'uiGridCellNavConstants', 'GridRowColumn', '$q',
114-
function (gridUtil, uiGridConstants, uiGridCellNavConstants, GridRowColumn, $q) {
113+
module.factory('uiGridCellNavFactory', ['uiGridCellNavConstants', 'GridRowColumn',
114+
function (uiGridCellNavConstants, GridRowColumn) {
115115
/**
116116
* @ngdoc object
117117
* @name ui.grid.cellNav.object:CellNav
@@ -339,8 +339,8 @@
339339
* @description Services for cell navigation features. If you don't like the key maps we use,
340340
* or the direction cells navigation, override with a service decorator (see angular docs)
341341
*/
342-
module.service('uiGridCellNavService', ['gridUtil', 'uiGridConstants', 'uiGridCellNavConstants', '$q', 'uiGridCellNavFactory', 'GridRowColumn', 'ScrollEvent',
343-
function (gridUtil, uiGridConstants, uiGridCellNavConstants, $q, UiGridCellNav, GridRowColumn, ScrollEvent) {
342+
module.service('uiGridCellNavService', ['uiGridConstants', 'uiGridCellNavConstants', '$q', 'uiGridCellNavFactory',
343+
function (uiGridConstants, uiGridCellNavConstants, $q, UiGridCellNav) {
344344

345345
var service = {
346346

@@ -699,8 +699,8 @@
699699
</file>
700700
</example>
701701
*/
702-
module.directive('uiGridCellnav', ['gridUtil', 'uiGridCellNavService', 'uiGridCellNavConstants', 'uiGridConstants', 'GridRowColumn', '$timeout', '$compile', 'i18nService',
703-
function (gridUtil, uiGridCellNavService, uiGridCellNavConstants, uiGridConstants, GridRowColumn, $timeout, $compile, i18nService) {
702+
module.directive('uiGridCellnav', ['uiGridCellNavService', 'uiGridCellNavConstants', 'uiGridConstants', 'GridRowColumn', '$compile', 'i18nService',
703+
function (uiGridCellNavService, uiGridCellNavConstants, uiGridConstants, GridRowColumn, $compile, i18nService) {
704704
return {
705705
replace: true,
706706
priority: -150,
@@ -938,8 +938,8 @@
938938
};
939939
}]);
940940

941-
module.directive('uiGridRenderContainer', ['$timeout', '$document', 'gridUtil', 'uiGridConstants', 'uiGridCellNavService', '$compile','uiGridCellNavConstants',
942-
function ($timeout, $document, gridUtil, uiGridConstants, uiGridCellNavService, $compile, uiGridCellNavConstants) {
941+
module.directive('uiGridRenderContainer', ['$timeout', 'gridUtil', 'uiGridCellNavService', '$compile','uiGridCellNavConstants',
942+
function ($timeout, gridUtil, uiGridCellNavService, $compile, uiGridCellNavConstants) {
943943
return {
944944
replace: true,
945945
priority: -99999, // this needs to run very last
@@ -1123,8 +1123,8 @@
11231123
* @restrict A
11241124
* @description Stacks on top of ui.grid.uiGridCell to provide cell navigation
11251125
*/
1126-
module.directive('uiGridCell', ['$timeout', '$document', 'uiGridCellNavService', 'gridUtil', 'uiGridCellNavConstants', 'uiGridConstants', 'GridRowColumn',
1127-
function ($timeout, $document, uiGridCellNavService, gridUtil, uiGridCellNavConstants, uiGridConstants, GridRowColumn) {
1126+
module.directive('uiGridCell', ['uiGridCellNavConstants', 'uiGridConstants', 'GridRowColumn',
1127+
function (uiGridCellNavConstants, uiGridConstants, GridRowColumn) {
11281128
return {
11291129
priority: -150, // run after default uiGridCell directive and ui.grid.edit uiGridCell
11301130
restrict: 'A',

ui-grid.language.all.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.language.all.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.language.ar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.language.ar.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.language.bg.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.language.bg.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.language.cs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.language.cs.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.language.da.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.language.da.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.language.de.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.language.de.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.language.es-ct.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

ui-grid.language.es-ct.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.language.es.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.12.5 - 2024-04-11
2+
* ui-grid - v4.12.6 - 2024-04-12
33
* http://ui-grid.info/
44
* Copyright (c) 2024 ; License: MIT
55
*/

0 commit comments

Comments
 (0)