@progress/kendo-angular-pager 19.0.0-develop.20 → 19.0.0-develop.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/pager/navigation.service.mjs +1 -1
- package/esm2022/pager/pager.component.mjs +3 -3
- package/fesm2022/progress-kendo-angular-pager.mjs +6 -6
- package/package.json +8 -8
- package/pager/pager.component.d.ts +2 -2
- package/schematics/ngAdd/index.js +6 -6
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '19.0.0-develop.
|
|
13
|
+
publishDate: 1747411817,
|
|
14
|
+
version: '19.0.0-develop.21',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -9,7 +9,7 @@ import { isFocusable } from "@progress/kendo-angular-common";
|
|
|
9
9
|
* @hidden
|
|
10
10
|
*/
|
|
11
11
|
export class PagerNavigationService {
|
|
12
|
-
isNavigable =
|
|
12
|
+
isNavigable = true;
|
|
13
13
|
innerNavigationChange = new Subject();
|
|
14
14
|
toggleInnerNavigation(value) {
|
|
15
15
|
this.innerNavigationChange.next(value);
|
|
@@ -114,8 +114,8 @@ export class PagerComponent {
|
|
|
114
114
|
previousNext = true;
|
|
115
115
|
/**
|
|
116
116
|
* If set to `true`, the user can use dedicated shortcuts to interact with the Pager ([see example]({% slug keyboard_navigation_pager %})).
|
|
117
|
-
* By default, navigation is
|
|
118
|
-
* @default
|
|
117
|
+
* By default, navigation is enabled. To disable it and make the Pager content accessible in the normal tab sequence, set the property to `false`.
|
|
118
|
+
* @default true
|
|
119
119
|
*/
|
|
120
120
|
set navigable(value) {
|
|
121
121
|
this._navigable = value;
|
|
@@ -209,7 +209,7 @@ export class PagerComponent {
|
|
|
209
209
|
_pageSizeValues = DEFAULT_PAGE_SIZE_VALUES;
|
|
210
210
|
direction;
|
|
211
211
|
isInnerNavigationEnabled = false;
|
|
212
|
-
_navigable =
|
|
212
|
+
_navigable = true;
|
|
213
213
|
_size = DEFAULT_SIZE;
|
|
214
214
|
/**
|
|
215
215
|
* Stores the measurements of various Pager elements.
|
|
@@ -479,7 +479,7 @@ const positionOffScreen = (renderer, element) => {
|
|
|
479
479
|
* @hidden
|
|
480
480
|
*/
|
|
481
481
|
class PagerNavigationService {
|
|
482
|
-
isNavigable =
|
|
482
|
+
isNavigable = true;
|
|
483
483
|
innerNavigationChange = new Subject();
|
|
484
484
|
toggleInnerNavigation(value) {
|
|
485
485
|
this.innerNavigationChange.next(value);
|
|
@@ -1582,8 +1582,8 @@ const packageMetadata = {
|
|
|
1582
1582
|
productName: 'Kendo UI for Angular',
|
|
1583
1583
|
productCode: 'KENDOUIANGULAR',
|
|
1584
1584
|
productCodes: ['KENDOUIANGULAR'],
|
|
1585
|
-
publishDate:
|
|
1586
|
-
version: '19.0.0-develop.
|
|
1585
|
+
publishDate: 1747411817,
|
|
1586
|
+
version: '19.0.0-develop.21',
|
|
1587
1587
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
1588
1588
|
};
|
|
1589
1589
|
|
|
@@ -1676,8 +1676,8 @@ class PagerComponent {
|
|
|
1676
1676
|
previousNext = true;
|
|
1677
1677
|
/**
|
|
1678
1678
|
* If set to `true`, the user can use dedicated shortcuts to interact with the Pager ([see example]({% slug keyboard_navigation_pager %})).
|
|
1679
|
-
* By default, navigation is
|
|
1680
|
-
* @default
|
|
1679
|
+
* By default, navigation is enabled. To disable it and make the Pager content accessible in the normal tab sequence, set the property to `false`.
|
|
1680
|
+
* @default true
|
|
1681
1681
|
*/
|
|
1682
1682
|
set navigable(value) {
|
|
1683
1683
|
this._navigable = value;
|
|
@@ -1771,7 +1771,7 @@ class PagerComponent {
|
|
|
1771
1771
|
_pageSizeValues = DEFAULT_PAGE_SIZE_VALUES;
|
|
1772
1772
|
direction;
|
|
1773
1773
|
isInnerNavigationEnabled = false;
|
|
1774
|
-
_navigable =
|
|
1774
|
+
_navigable = true;
|
|
1775
1775
|
_size = DEFAULT_SIZE;
|
|
1776
1776
|
/**
|
|
1777
1777
|
* Stores the measurements of various Pager elements.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-pager",
|
|
3
|
-
"version": "19.0.0-develop.
|
|
3
|
+
"version": "19.0.0-develop.21",
|
|
4
4
|
"description": "Kendo UI Angular Pager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"package": {
|
|
18
18
|
"productName": "Kendo UI for Angular",
|
|
19
19
|
"productCode": "KENDOUIANGULAR",
|
|
20
|
-
"publishDate":
|
|
20
|
+
"publishDate": 1747411817,
|
|
21
21
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"@angular/core": "16 - 19",
|
|
28
28
|
"@angular/platform-browser": "16 - 19",
|
|
29
29
|
"@progress/kendo-licensing": "^1.5.0",
|
|
30
|
-
"@progress/kendo-angular-common": "19.0.0-develop.
|
|
31
|
-
"@progress/kendo-angular-dropdowns": "19.0.0-develop.
|
|
32
|
-
"@progress/kendo-angular-inputs": "19.0.0-develop.
|
|
33
|
-
"@progress/kendo-angular-icons": "19.0.0-develop.
|
|
34
|
-
"@progress/kendo-angular-l10n": "19.0.0-develop.
|
|
30
|
+
"@progress/kendo-angular-common": "19.0.0-develop.21",
|
|
31
|
+
"@progress/kendo-angular-dropdowns": "19.0.0-develop.21",
|
|
32
|
+
"@progress/kendo-angular-inputs": "19.0.0-develop.21",
|
|
33
|
+
"@progress/kendo-angular-icons": "19.0.0-develop.21",
|
|
34
|
+
"@progress/kendo-angular-l10n": "19.0.0-develop.21",
|
|
35
35
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"tslib": "^2.3.1",
|
|
39
|
-
"@progress/kendo-angular-schematics": "19.0.0-develop.
|
|
39
|
+
"@progress/kendo-angular-schematics": "19.0.0-develop.21"
|
|
40
40
|
},
|
|
41
41
|
"schematics": "./schematics/collection.json",
|
|
42
42
|
"module": "fesm2022/progress-kendo-angular-pager.mjs",
|
|
@@ -83,8 +83,8 @@ export declare class PagerComponent implements OnChanges, AfterViewInit, OnInit,
|
|
|
83
83
|
previousNext: boolean;
|
|
84
84
|
/**
|
|
85
85
|
* If set to `true`, the user can use dedicated shortcuts to interact with the Pager ([see example]({% slug keyboard_navigation_pager %})).
|
|
86
|
-
* By default, navigation is
|
|
87
|
-
* @default
|
|
86
|
+
* By default, navigation is enabled. To disable it and make the Pager content accessible in the normal tab sequence, set the property to `false`.
|
|
87
|
+
* @default true
|
|
88
88
|
*/
|
|
89
89
|
set navigable(value: boolean);
|
|
90
90
|
get navigable(): boolean;
|
|
@@ -4,14 +4,14 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'PagerModule', package: 'pager', peerDependencies: {
|
|
6
6
|
// Peers of inputs and dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '19.0.0-develop.
|
|
8
|
-
'@progress/kendo-angular-intl': '19.0.0-develop.
|
|
9
|
-
'@progress/kendo-angular-navigation': '19.0.0-develop.
|
|
10
|
-
'@progress/kendo-angular-popup': '19.0.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '19.0.0-develop.21',
|
|
8
|
+
'@progress/kendo-angular-intl': '19.0.0-develop.21',
|
|
9
|
+
'@progress/kendo-angular-navigation': '19.0.0-develop.21',
|
|
10
|
+
'@progress/kendo-angular-popup': '19.0.0-develop.21',
|
|
11
11
|
'@progress/kendo-drawing': '^1.5.12',
|
|
12
12
|
// peer dependency of kendo-angular-inputs
|
|
13
|
-
'@progress/kendo-angular-buttons': '19.0.0-develop.
|
|
14
|
-
'@progress/kendo-angular-dialog': '19.0.0-develop.
|
|
13
|
+
'@progress/kendo-angular-buttons': '19.0.0-develop.21',
|
|
14
|
+
'@progress/kendo-angular-dialog': '19.0.0-develop.21',
|
|
15
15
|
// Peer dependency of icons
|
|
16
16
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
17
17
|
} });
|