@progress/kendo-angular-layout 24.0.0-develop.9 → 24.0.0

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.
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1777365180,
11
- "version": "24.0.0-develop.9",
10
+ "publishDate": 1779273377,
11
+ "version": "24.0.0",
12
12
  "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"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "24.0.0-develop.9",
3
+ "version": "24.0.0",
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",
@@ -57,13 +57,29 @@
57
57
  "file": "codemods/v21/layout-rendering-changes.js",
58
58
  "instructionsOnly": true
59
59
  }
60
+ ],
61
+ "24": [
62
+ {
63
+ "description": "The ActionSheet, Timeline, ChipList, and Chip components have rendering changes that may affect custom styling.",
64
+ "file": "codemods/v24/layout-rendering-changes.js",
65
+ "instructionsOnly": true
66
+ },
67
+ {
68
+ "description": "AvatarThemeColor no longer accepts 'light', 'dark', 'success', 'warning', 'error', 'info', or 'inverse' values.",
69
+ "file": "codemods/v24/themecolor-light-dark.js"
70
+ },
71
+ {
72
+ "description": "The DrawerComponent's 'miniWidth' property no longer defaults to 50. The mini view width is now determined by the used Kendo Theme.",
73
+ "file": "codemods/v24/drawer-miniwidth.js",
74
+ "instructionsOnly": true
75
+ }
60
76
  ]
61
77
  }
62
78
  },
63
79
  "package": {
64
80
  "productName": "Kendo UI for Angular",
65
81
  "productCode": "KENDOUIANGULAR",
66
- "publishDate": 1777365180,
82
+ "publishDate": 1779273377,
67
83
  "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"
68
84
  }
69
85
  },
@@ -73,17 +89,17 @@
73
89
  "@angular/core": "19 - 21",
74
90
  "@angular/platform-browser": "19 - 21",
75
91
  "@progress/kendo-licensing": "^1.11.0",
76
- "@progress/kendo-angular-common": "24.0.0-develop.9",
77
- "@progress/kendo-angular-l10n": "24.0.0-develop.9",
78
- "@progress/kendo-angular-progressbar": "24.0.0-develop.9",
79
- "@progress/kendo-angular-icons": "24.0.0-develop.9",
80
- "@progress/kendo-angular-buttons": "24.0.0-develop.9",
81
- "@progress/kendo-angular-intl": "24.0.0-develop.9",
92
+ "@progress/kendo-angular-common": "24.0.0",
93
+ "@progress/kendo-angular-l10n": "24.0.0",
94
+ "@progress/kendo-angular-progressbar": "24.0.0",
95
+ "@progress/kendo-angular-icons": "24.0.0",
96
+ "@progress/kendo-angular-buttons": "24.0.0",
97
+ "@progress/kendo-angular-intl": "24.0.0",
82
98
  "rxjs": "^6.5.3 || ^7.0.0"
83
99
  },
84
100
  "dependencies": {
85
101
  "tslib": "^2.3.1",
86
- "@progress/kendo-angular-schematics": "24.0.0-develop.9",
102
+ "@progress/kendo-angular-schematics": "24.0.0",
87
103
  "@progress/kendo-draggable": "^3.0.2"
88
104
  },
89
105
  "schematics": "./schematics/collection.json",
@@ -23,6 +23,7 @@ export declare class SplitterBarComponent implements OnInit, OnDestroy {
23
23
  ariaLabel: string;
24
24
  focused: boolean;
25
25
  get hostOrientation(): string;
26
+ ariaKeyShortcuts: string;
26
27
  get tabIndex(): number;
27
28
  get hostClasses(): string;
28
29
  get order(): number;
@@ -121,7 +121,8 @@ export declare class SplitterPaneComponent implements AfterViewChecked {
121
121
  /**
122
122
  * @hidden
123
123
  */
124
- forceExpand: boolean;
124
+ set forceExpand(value: boolean);
125
+ get forceExpand(): boolean;
125
126
  /**
126
127
  * @hidden
127
128
  */
@@ -130,6 +131,7 @@ export declare class SplitterPaneComponent implements AfterViewChecked {
130
131
  private _order;
131
132
  private _splitterBarAttributes;
132
133
  private _collapsed;
134
+ private _forceExpand;
133
135
  constructor(element: ElementRef<HTMLElement>, renderer: Renderer2, cdr: ChangeDetectorRef, splitterService: SplitterService);
134
136
  ngAfterViewChecked(): void;
135
137
  ngOnChanges(changes: SimpleChanges): void;
@@ -57,6 +57,7 @@ export declare class SplitterService {
57
57
  paneByIndex(pane: SplitterPaneComponent): number;
58
58
  getPaneSplitterBar(pane: SplitterPaneComponent): SplitterBarComponent | null;
59
59
  configure({ panes, orientation, containerSize, direction }: SplitterParameters): void;
60
+ syncPaneExpandState(): void;
60
61
  private containerSize;
61
62
  private rtl;
62
63
  private isPercent;
@@ -22,7 +22,7 @@ export declare class TabComponent {
22
22
  tabClose: EventEmitter<TabCloseEvent>;
23
23
  hostClasses: boolean;
24
24
  get activeClass(): boolean;
25
- get disabledClass(): boolean;
25
+ get disabledClass(): boolean | null;
26
26
  get focusedClass(): boolean;
27
27
  get tabIndex(): number;
28
28
  constructor(localization: LocalizationService);
@@ -29,10 +29,10 @@ export declare class TabStripScrollableButtonComponent implements AfterViewInit,
29
29
  get iconClass(): string;
30
30
  get customIconClass(): string;
31
31
  get svgIcon(): SVGIcon;
32
- caretAltLeftIcon: SVGIcon;
33
- caretAltRightIcon: SVGIcon;
34
- caretAltUpIcon: SVGIcon;
35
- caretAltDownIcon: SVGIcon;
32
+ chevronLeftIcon: SVGIcon;
33
+ chevronRightIcon: SVGIcon;
34
+ chevronUpIcon: SVGIcon;
35
+ chevronDownIcon: SVGIcon;
36
36
  private subs;
37
37
  constructor(host: ElementRef, renderer: Renderer2, ngZone: NgZone, localization: LocalizationService);
38
38
  ngAfterViewInit(): void;
@@ -69,10 +69,8 @@ export declare class TileLayoutItemComponent implements AfterViewInit, OnDestroy
69
69
  resizable: boolean;
70
70
  itemClass: boolean;
71
71
  hostRole: string;
72
- get hostDropEffect(): string;
73
72
  get hostTabindex(): string;
74
73
  get ariaKeyShortcuts(): string;
75
- get hostGrabbed(): boolean;
76
74
  get hostLabelledBy(): string;
77
75
  get colEnd(): string;
78
76
  get rowEnd(): string;
@@ -38,6 +38,7 @@ export declare class TimelineCardComponent implements OnChanges, AfterViewInit {
38
38
  get collapsedClass(): boolean;
39
39
  onComponentKeyDown(event: any): void;
40
40
  get role(): string;
41
+ get ariaCardLabel(): string;
41
42
  get ariaLive(): any;
42
43
  get ariaExpanded(): any;
43
44
  calloutSvgIcon: SVGIcon;
@@ -1,13 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { AnimationMetadata } from '@angular/animations';
6
- /**
7
- * @hidden
8
- */
9
- export declare function expandAnimation(settings: any): AnimationMetadata[];
10
- /**
11
- * @hidden
12
- */
13
- export declare function collapseAnimation(settings: any): AnimationMetadata[];