@progress/kendo-angular-layout 19.0.0-develop.21 → 19.0.0-develop.23
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/tabstrip/constants.mjs +0 -4
- package/esm2022/tabstrip/models/scrollable-settings.mjs +2 -3
- package/fesm2022/progress-kendo-angular-layout.mjs +3 -8
- package/package.json +9 -9
- package/tabstrip/constants.d.ts +0 -4
- package/tabstrip/models/scrollable-settings.d.ts +0 -5
@@ -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: 1747417259,
|
14
|
+
version: '19.0.0-develop.23',
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
16
16
|
};
|
@@ -2,10 +2,6 @@
|
|
2
2
|
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
|
-
/**
|
6
|
-
* @hidden
|
7
|
-
*/
|
8
|
-
export const MOUSE_SCROLL_SPEED = 10;
|
9
5
|
/**
|
10
6
|
* @hidden
|
11
7
|
*/
|
@@ -2,16 +2,15 @@
|
|
2
2
|
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
|
-
import { BUTTON_SCROLL_SPEED
|
5
|
+
import { BUTTON_SCROLL_SPEED } from "../constants";
|
6
6
|
/**
|
7
7
|
* @hidden
|
8
8
|
*/
|
9
|
-
const normalizeSettings = ({ enabled = true, scrollButtons = 'auto', mouseScroll = true, buttonScrollSpeed = BUTTON_SCROLL_SPEED,
|
9
|
+
const normalizeSettings = ({ enabled = true, scrollButtons = 'auto', mouseScroll = true, buttonScrollSpeed = BUTTON_SCROLL_SPEED, scrollButtonsPosition = 'split', prevButtonIcon, nextButtonIcon, prevSVGButtonIcon, nextSVGButtonIcon }) => ({
|
10
10
|
enabled,
|
11
11
|
scrollButtons,
|
12
12
|
mouseScroll,
|
13
13
|
buttonScrollSpeed,
|
14
|
-
mouseScrollSpeed,
|
15
14
|
scrollButtonsPosition,
|
16
15
|
prevButtonIcon,
|
17
16
|
nextButtonIcon,
|
@@ -29,8 +29,8 @@ const packageMetadata = {
|
|
29
29
|
productName: 'Kendo UI for Angular',
|
30
30
|
productCode: 'KENDOUIANGULAR',
|
31
31
|
productCodes: ['KENDOUIANGULAR'],
|
32
|
-
publishDate:
|
33
|
-
version: '19.0.0-develop.
|
32
|
+
publishDate: 1747417259,
|
33
|
+
version: '19.0.0-develop.23',
|
34
34
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
35
35
|
};
|
36
36
|
|
@@ -3299,10 +3299,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
3299
3299
|
type: Injectable
|
3300
3300
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }, { type: i0.NgZone }]; } });
|
3301
3301
|
|
3302
|
-
/**
|
3303
|
-
* @hidden
|
3304
|
-
*/
|
3305
|
-
const MOUSE_SCROLL_SPEED = 10;
|
3306
3302
|
/**
|
3307
3303
|
* @hidden
|
3308
3304
|
*/
|
@@ -3497,12 +3493,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
3497
3493
|
/**
|
3498
3494
|
* @hidden
|
3499
3495
|
*/
|
3500
|
-
const normalizeSettings = ({ enabled = true, scrollButtons = 'auto', mouseScroll = true, buttonScrollSpeed = BUTTON_SCROLL_SPEED,
|
3496
|
+
const normalizeSettings = ({ enabled = true, scrollButtons = 'auto', mouseScroll = true, buttonScrollSpeed = BUTTON_SCROLL_SPEED, scrollButtonsPosition = 'split', prevButtonIcon, nextButtonIcon, prevSVGButtonIcon, nextSVGButtonIcon }) => ({
|
3501
3497
|
enabled,
|
3502
3498
|
scrollButtons,
|
3503
3499
|
mouseScroll,
|
3504
3500
|
buttonScrollSpeed,
|
3505
|
-
mouseScrollSpeed,
|
3506
3501
|
scrollButtonsPosition,
|
3507
3502
|
prevButtonIcon,
|
3508
3503
|
nextButtonIcon,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-layout",
|
3
|
-
"version": "19.0.0-develop.
|
3
|
+
"version": "19.0.0-develop.23",
|
4
4
|
"description": "Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -35,7 +35,7 @@
|
|
35
35
|
"package": {
|
36
36
|
"productName": "Kendo UI for Angular",
|
37
37
|
"productCode": "KENDOUIANGULAR",
|
38
|
-
"publishDate":
|
38
|
+
"publishDate": 1747417259,
|
39
39
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
|
40
40
|
}
|
41
41
|
},
|
@@ -45,17 +45,17 @@
|
|
45
45
|
"@angular/core": "16 - 19",
|
46
46
|
"@angular/platform-browser": "16 - 19",
|
47
47
|
"@progress/kendo-licensing": "^1.5.0",
|
48
|
-
"@progress/kendo-angular-common": "19.0.0-develop.
|
49
|
-
"@progress/kendo-angular-l10n": "19.0.0-develop.
|
50
|
-
"@progress/kendo-angular-progressbar": "19.0.0-develop.
|
51
|
-
"@progress/kendo-angular-icons": "19.0.0-develop.
|
52
|
-
"@progress/kendo-angular-buttons": "19.0.0-develop.
|
53
|
-
"@progress/kendo-angular-intl": "19.0.0-develop.
|
48
|
+
"@progress/kendo-angular-common": "19.0.0-develop.23",
|
49
|
+
"@progress/kendo-angular-l10n": "19.0.0-develop.23",
|
50
|
+
"@progress/kendo-angular-progressbar": "19.0.0-develop.23",
|
51
|
+
"@progress/kendo-angular-icons": "19.0.0-develop.23",
|
52
|
+
"@progress/kendo-angular-buttons": "19.0.0-develop.23",
|
53
|
+
"@progress/kendo-angular-intl": "19.0.0-develop.23",
|
54
54
|
"rxjs": "^6.5.3 || ^7.0.0"
|
55
55
|
},
|
56
56
|
"dependencies": {
|
57
57
|
"tslib": "^2.3.1",
|
58
|
-
"@progress/kendo-angular-schematics": "19.0.0-develop.
|
58
|
+
"@progress/kendo-angular-schematics": "19.0.0-develop.23",
|
59
59
|
"@progress/kendo-draggable": "^3.0.2"
|
60
60
|
},
|
61
61
|
"schematics": "./schematics/collection.json",
|
package/tabstrip/constants.d.ts
CHANGED
@@ -2,10 +2,6 @@
|
|
2
2
|
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
|
-
/**
|
6
|
-
* @hidden
|
7
|
-
*/
|
8
|
-
export declare const MOUSE_SCROLL_SPEED = 10;
|
9
5
|
/**
|
10
6
|
* @hidden
|
11
7
|
*/
|
@@ -30,11 +30,6 @@ export interface TabStripScrollableSettings {
|
|
30
30
|
* @default 100
|
31
31
|
*/
|
32
32
|
buttonScrollSpeed?: number;
|
33
|
-
/**
|
34
|
-
* Deprecated in v.18.0.0 and will be removed in v.19.0.0 of the `@progress/kendo-angular-layout` package.
|
35
|
-
* The scroll speed will naturally follow the user behavior and concrete device specifics.
|
36
|
-
*/
|
37
|
-
mouseScrollSpeed?: number;
|
38
33
|
/**
|
39
34
|
* Allows defining a custom CSS class, or multiple classes separated by spaces, which will be applied to the span element of the prev scroll button.
|
40
35
|
*
|