|
1 | 1 | /*!
|
2 |
| - * ui-grid - v4.12.5 - 2024-04-11 |
| 2 | + * ui-grid - v4.12.6 - 2024-04-12 |
3 | 3 | * http://ui-grid.info/
|
4 | 4 | * Copyright (c) 2024 ; License: MIT
|
5 | 5 | */
|
|
39 | 39 | });
|
40 | 40 |
|
41 | 41 |
|
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) { |
44 | 44 | /**
|
45 | 45 | * @ngdoc object
|
46 | 46 | * @name ui.grid.cellNav.object:CellNav
|
|
268 | 268 | * @description Services for cell navigation features. If you don't like the key maps we use,
|
269 | 269 | * or the direction cells navigation, override with a service decorator (see angular docs)
|
270 | 270 | */
|
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) { |
273 | 273 |
|
274 | 274 | var service = {
|
275 | 275 |
|
|
628 | 628 | </file>
|
629 | 629 | </example>
|
630 | 630 | */
|
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) { |
633 | 633 | return {
|
634 | 634 | replace: true,
|
635 | 635 | priority: -150,
|
|
867 | 867 | };
|
868 | 868 | }]);
|
869 | 869 |
|
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) { |
872 | 872 | return {
|
873 | 873 | replace: true,
|
874 | 874 | priority: -99999, // this needs to run very last
|
|
1052 | 1052 | * @restrict A
|
1053 | 1053 | * @description Stacks on top of ui.grid.uiGridCell to provide cell navigation
|
1054 | 1054 | */
|
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) { |
1057 | 1057 | return {
|
1058 | 1058 | priority: -150, // run after default uiGridCell directive and ui.grid.edit uiGridCell
|
1059 | 1059 | restrict: 'A',
|
|
0 commit comments