@progress/kendo-angular-layout 22.1.0-develop.9 → 23.0.0-develop.1

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.
Files changed (44) hide show
  1. package/avatar/avatar.component.d.ts +11 -11
  2. package/avatar/l10n/custom-messages.component.d.ts +1 -1
  3. package/avatar/models/fill.d.ts +2 -2
  4. package/avatar/models/rounded.d.ts +1 -1
  5. package/avatar/models/size.d.ts +2 -2
  6. package/avatar/models/theme-color.d.ts +2 -2
  7. package/card/card-actions.component.d.ts +1 -1
  8. package/card/card.component.d.ts +1 -1
  9. package/drawer/drawer-container.component.d.ts +1 -1
  10. package/drawer/drawer.component.d.ts +4 -4
  11. package/drawer/models/drawer-animation.interface.d.ts +1 -1
  12. package/drawer/models/drawer-item-expand.interface.d.ts +1 -1
  13. package/drawer/models/drawer-item.interface.d.ts +1 -1
  14. package/drawer/models/position.d.ts +1 -1
  15. package/expansionpanel/expansionpanel-title.directive.d.ts +1 -1
  16. package/expansionpanel/expansionpanel.component.d.ts +15 -15
  17. package/fesm2022/progress-kendo-angular-layout.mjs +165 -183
  18. package/layouts/grid-layout.component.d.ts +5 -5
  19. package/layouts/gridlayout-item.component.d.ts +4 -4
  20. package/layouts/stack-layout.component.d.ts +4 -4
  21. package/package-metadata.mjs +2 -2
  22. package/package.json +9 -9
  23. package/panelbar/panelbar-item-model.d.ts +1 -1
  24. package/panelbar/panelbar-item-title.directive.d.ts +2 -2
  25. package/panelbar/panelbar-item.component.d.ts +9 -9
  26. package/panelbar/panelbar.component.d.ts +10 -10
  27. package/splitter/splitter.component.d.ts +1 -1
  28. package/stepper/localization/custom-messages.component.d.ts +1 -1
  29. package/stepper/models/orientation.d.ts +1 -1
  30. package/stepper/models/step-predicate.d.ts +1 -1
  31. package/stepper/models/step-type.d.ts +1 -1
  32. package/stepper/models/stepper-step.interface.d.ts +3 -3
  33. package/stepper/stepper.component.d.ts +10 -10
  34. package/tabstrip/directives/tab-title.directive.d.ts +1 -1
  35. package/tabstrip/localization/custom-messages.component.d.ts +1 -1
  36. package/tabstrip/models/scrollable-settings.d.ts +3 -3
  37. package/tabstrip/models/size.d.ts +2 -2
  38. package/tabstrip/models/tab-alignment.d.ts +1 -1
  39. package/tabstrip/models/tab-position.d.ts +1 -1
  40. package/tabstrip/models/tabstrip-tab.component.d.ts +4 -4
  41. package/tabstrip/tabstrip.component.d.ts +5 -5
  42. package/tilelayout/tilelayout-item.component.d.ts +5 -5
  43. package/tilelayout/tilelayout.component.d.ts +10 -10
  44. package/timeline/timeline.component.d.ts +1 -1
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2026 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 { OnInit, Renderer2, ElementRef, AfterViewInit } from '@angular/core';
5
+ import { OnInit, Renderer2, ElementRef } from '@angular/core';
6
6
  import { SVGIcon } from '@progress/kendo-svg-icons';
7
7
  import { LocalizationService } from '@progress/kendo-angular-l10n';
8
8
  import { AvatarFillMode, AvatarShape, AvatarSize, AvatarThemeColor, AvatarRounded } from './models/models';
@@ -29,7 +29,7 @@ import * as i0 from "@angular/core";
29
29
  * @remarks
30
30
  * Supported children components are: {@link AvatarCustomMessagesComponent}.
31
31
  */
32
- export declare class AvatarComponent implements OnInit, AfterViewInit {
32
+ export declare class AvatarComponent implements OnInit {
33
33
  private localization;
34
34
  private renderer;
35
35
  private element;
@@ -49,17 +49,17 @@ export declare class AvatarComponent implements OnInit, AfterViewInit {
49
49
  set shape(shape: AvatarShape);
50
50
  /**
51
51
  * Specifies the size of the Avatar
52
- * ([see example]({% slug appearance_avatar %}#toc-size)).
52
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/avatar/appearance#size)).
53
53
  *
54
- * @default 'medium'
54
+ * @default undefined
55
55
  */
56
56
  set size(size: AvatarSize);
57
57
  get size(): AvatarSize;
58
58
  /**
59
59
  * Specifies the rounded styling of the Avatar
60
- * ([see example](slug:appearance_avatar#toc-roundness)).
60
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/avatar/appearance#roundness)).
61
61
  *
62
- * @default 'full'
62
+ * @default undefined
63
63
  */
64
64
  set rounded(rounded: AvatarRounded);
65
65
  get rounded(): AvatarRounded;
@@ -67,14 +67,14 @@ export declare class AvatarComponent implements OnInit, AfterViewInit {
67
67
  * Specifies the theme color of the Avatar.
68
68
  * The theme color applies as background and border color while adjusting the text color accordingly.
69
69
  *
70
- * @default 'primary'
70
+ * @default undefined
71
71
  */
72
72
  set themeColor(themeColor: AvatarThemeColor);
73
73
  get themeColor(): AvatarThemeColor;
74
74
  /**
75
75
  * Specifies the fill style of the Avatar.
76
76
  *
77
- * @default 'solid'
77
+ * @default undefined
78
78
  */
79
79
  set fillMode(fillMode: AvatarFillMode);
80
80
  get fillMode(): AvatarFillMode;
@@ -123,7 +123,7 @@ export declare class AvatarComponent implements OnInit, AfterViewInit {
123
123
  initials: string;
124
124
  /**
125
125
  * Sets the icon for the Avatar.
126
- * All [Kendo UI Icons](slug:icons#icons-list) are supported.
126
+ * All [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/styling/icons#icons-list) are supported.
127
127
  */
128
128
  icon: string;
129
129
  /**
@@ -132,7 +132,7 @@ export declare class AvatarComponent implements OnInit, AfterViewInit {
132
132
  imageSrc: string;
133
133
  /**
134
134
  * Defines an SVG icon to render.
135
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
135
+ * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
136
136
  */
137
137
  set svgIcon(icon: SVGIcon);
138
138
  get svgIcon(): SVGIcon;
@@ -141,9 +141,9 @@ export declare class AvatarComponent implements OnInit, AfterViewInit {
141
141
  private _fillMode;
142
142
  private _rounded;
143
143
  private _svgIcon;
144
+ private _themeColorClasses;
144
145
  constructor(localization: LocalizationService, renderer: Renderer2, element: ElementRef);
145
146
  ngOnInit(): void;
146
- ngAfterViewInit(): void;
147
147
  /**
148
148
  * @hidden
149
149
  */
@@ -7,7 +7,7 @@ import { Messages } from './messages';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Provides custom component messages that override default component messages
10
- * ([see example]({% slug rtl_layout %})).
10
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/globalization)).
11
11
  *
12
12
  * ```html
13
13
  * <kendo-avatar>
@@ -3,6 +3,6 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * Defines the possible fill styles of the Avatar ([see example](slug:appearance_avatar#toc-fill-mode)).
6
+ * Defines the possible fill styles of the Avatar ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/avatar/appearance#fill-mode)).
7
7
  */
8
- export type AvatarFillMode = 'solid' | 'outline' | 'none';
8
+ export type AvatarFillMode = 'solid' | 'outline';
@@ -3,6 +3,6 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * Defines the possible rounded options of the Avatar ([see example](slug:appearance_avatar#roundness)).
6
+ * Defines the possible rounded options of the Avatar ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/avatar/appearance#roundness)).
7
7
  */
8
8
  export type AvatarRounded = 'small' | 'medium' | 'large' | 'full' | 'none';
@@ -3,6 +3,6 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * Defines the possible sizes of the Avatar ([see example]({% slug appearance_avatar %}#toc-size)).
6
+ * Defines the possible sizes of the Avatar ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/avatar/appearance#size)).
7
7
  */
8
- export type AvatarSize = 'small' | 'medium' | 'large' | 'none';
8
+ export type AvatarSize = 'small' | 'medium' | 'large';
@@ -3,6 +3,6 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * Defines the possible theme colors of the Avatar ([see example]({% slug appearance_avatar %}#toc-theme-color)).
6
+ * Defines the possible theme colors of the Avatar ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/avatar/appearance#theme-color)).
7
7
  */
8
- export type AvatarThemeColor = 'primary' | 'secondary' | 'tertiary' | 'base' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse' | 'none';
8
+ export type AvatarThemeColor = 'primary' | 'secondary' | 'tertiary' | 'base' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
@@ -8,7 +8,7 @@ import { CardAction } from './models/card-action';
8
8
  import { Orientation } from '../common/orientation';
9
9
  import * as i0 from "@angular/core";
10
10
  /**
11
- * Defines the action buttons of the Card ([see example]({% slug actions_card %})).
11
+ * Defines the action buttons of the Card ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/card/action_buttons)).
12
12
  * The Card actions can be used to perform operations related to the Card's content, such as saving, editing, or deleting.
13
13
  *
14
14
  * @example
@@ -8,7 +8,7 @@ import { Orientation } from '../common/orientation';
8
8
  import * as i0 from "@angular/core";
9
9
  /**
10
10
  * Represents the Kendo UI Card component for Angular.
11
- * Displays content in a structured container with customizable layout and styling ([Card overview]({% slug overview_card %})).
11
+ * Displays content in a structured container with customizable layout and styling ([Card overview](https://www.telerik.com/kendo-angular-ui/components/layout/card)).
12
12
  *
13
13
  * @example
14
14
  * ```html
@@ -6,7 +6,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
6
6
  import { DrawerComponent } from './drawer.component';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Serves as a container for the [Drawer component]({% slug overview_drawer %}) and its content.
9
+ * Serves as a container for the [Drawer component](https://www.telerik.com/kendo-angular-ui/components/layout/drawer) and its content.
10
10
  *
11
11
  * @example
12
12
  * ```html
@@ -15,7 +15,7 @@ import { DrawerViewItem } from './models/drawer-view-item.interface';
15
15
  import { DrawerItemExpandedFn } from './models/drawer-item-expand.interface';
16
16
  import * as i0 from "@angular/core";
17
17
  /**
18
- * Represents the [Kendo UI Drawer component for Angular]({% slug overview_drawer %}).
18
+ * Represents the [Kendo UI Drawer component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/drawer).
19
19
  * Provides a dismissible or permanently visible panel for navigation in responsive web applications.
20
20
  *
21
21
  * @example
@@ -62,14 +62,14 @@ export declare class DrawerComponent implements OnDestroy {
62
62
  mode: DrawerMode;
63
63
  /**
64
64
  * Specifies the position of the Drawer
65
- * ([see example]({% slug positioning_drawer %})).
65
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/positioning)).
66
66
  *
67
67
  * @default 'start'
68
68
  */
69
69
  position: DrawerPosition;
70
70
  /**
71
71
  * Enables the mini (compact) view of the Drawer which displays when the component is collapsed
72
- * ([see example]({% slug expandmodespositions_drawer %}#toc-mini-view)).
72
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/display-modes#mini-view)).
73
73
  *
74
74
  * @default false
75
75
  */
@@ -116,7 +116,7 @@ export declare class DrawerComponent implements OnDestroy {
116
116
  direction: string;
117
117
  /**
118
118
  * Specifies the animation settings of the Drawer
119
- * ([see example]({% slug interaction_drawer %}#toc-toggling-between-states)).
119
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/interaction-modes#toggling-between-states)).
120
120
  *
121
121
  * @default { type: 'slide', duration: 200 }
122
122
  */
@@ -4,7 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
6
  * Defines the animation settings of the Drawer
7
- * ([see example]({% slug interaction_drawer %}#toc-toggling-between-states)).
7
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/interaction-modes#toggling-between-states)).
8
8
  */
9
9
  export interface DrawerAnimation {
10
10
  /**
@@ -3,6 +3,6 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * Defines the callback that the [`isItemExpanded`]({% slug api_layout_drawercomponent %}#toc-isItemExpanded) property uses ([see example]({% slug hierarchical_drawer %})).
6
+ * Defines the callback that the [`isItemExpanded`](https://www.telerik.com/kendo-angular-ui/components/layout/api/drawercomponent#isItemExpanded) property uses ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/hierarchical-drawer)).
7
7
  */
8
8
  export type DrawerItemExpandedFn = (item: any) => boolean;
@@ -34,7 +34,7 @@ export interface DrawerItem {
34
34
  iconClass?: string;
35
35
  /**
36
36
  * Defines an SVG icon to render inside the Drawer Item.
37
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
37
+ * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
38
38
  */
39
39
  svgIcon?: SVGIcon;
40
40
  /**
@@ -3,6 +3,6 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * Defines the position of the Drawer ([see example]({% slug positioning_drawer %})).
6
+ * Defines the position of the Drawer ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/positioning)).
7
7
  */
8
8
  export type DrawerPosition = 'start' | 'end';
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
7
7
  /**
8
8
  * Defines a template that specifies the content of the ExpansionPanel title.
9
9
  * To define the template, nest an `<ng-template>` tag with the `kendoExpansionPanelTitleDirective` directive inside the `<kendo-expansionpanel>` tag
10
- * ([see example]({% slug title_expansionpanel %}#toc-title-template)).
10
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/title#title-template)).
11
11
  *
12
12
  * @example
13
13
  * ```html
@@ -10,7 +10,7 @@ import { ExpansionPanelActionEvent } from './events/action-event';
10
10
  import { SVGIcon } from '@progress/kendo-svg-icons';
11
11
  import * as i0 from "@angular/core";
12
12
  /**
13
- * Represents the Kendo UI ExpansionPanel component for Angular. Provides an expandable and collapsible content container with customizable header and animation ([see overview]({% slug overview_expansionpanel %})).
13
+ * Represents the Kendo UI ExpansionPanel component for Angular. Provides an expandable and collapsible content container with customizable header and animation ([see overview](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel)).
14
14
  *
15
15
  * @example
16
16
  * ```html
@@ -30,24 +30,24 @@ export declare class ExpansionPanelComponent implements OnInit, AfterViewInit, O
30
30
  private builder;
31
31
  /**
32
32
  * Specifies the primary text in the header of the ExpansionPanel
33
- * ([see example](slug:title_expansionpanel#toc-titles-and-subtitles)).
33
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/title#titles-and-subtitles)).
34
34
  */
35
35
  title: string;
36
36
  /**
37
37
  * Specifies the secondary text in the header of the ExpansionPanel, which renders next to the collapse/expand icon
38
- * ([see example](slug:title_expansionpanel#toc-titles-and-subtitles)).
38
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/title#titles-and-subtitles)).
39
39
  */
40
40
  subtitle: string;
41
41
  /**
42
42
  * Specifies whether the ExpansionPanel is disabled. If disabled, the ExpansionPanel can be neither expanded nor collapsed
43
- * ([see example]({% slug disabled_expansionpanel %})).
43
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/disabled-state)).
44
44
  *
45
45
  * @default false
46
46
  */
47
47
  disabled: boolean;
48
48
  /**
49
49
  * Specifies whether the ExpansionPanel is expanded. The property supports two-way binding
50
- * ([see example]({% slug interaction_expansionpanel %}#toc-setting-the-initial-state)).
50
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/interaction#setting-the-initial-state)).
51
51
  *
52
52
  * @default false
53
53
  */
@@ -55,29 +55,29 @@ export declare class ExpansionPanelComponent implements OnInit, AfterViewInit, O
55
55
  get expanded(): boolean;
56
56
  /**
57
57
  * Defines an SVG icon for the expanded state of the component.
58
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
58
+ * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
59
59
  */
60
60
  set svgExpandIcon(icon: SVGIcon);
61
61
  get svgExpandIcon(): SVGIcon;
62
62
  /**
63
63
  * Defines an SVG icon for the collapsed state of the component.
64
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
64
+ * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
65
65
  */
66
66
  set svgCollapseIcon(icon: SVGIcon);
67
67
  get svgCollapseIcon(): SVGIcon;
68
68
  /**
69
69
  * Sets a custom icon via CSS class(es) for the collapsed state of the component
70
- * ([see example]({% slug icons_expansionpanel %}#toc-icons)).
70
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/icons#icons)).
71
71
  */
72
72
  expandIcon: string;
73
73
  /**
74
74
  * Sets a custom icon via CSS class(es) for the expanded state of the component
75
- * ([see example]({% slug icons_expansionpanel %}#toc-icons)).
75
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/icons#icons)).
76
76
  */
77
77
  collapseIcon: string;
78
78
  /**
79
79
  * Specifies the animation settings of the ExpansionPanel
80
- * ([see example]({% slug animations_expansionpanel %})).
80
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/animations)).
81
81
  *
82
82
  * @default true
83
83
  */
@@ -85,22 +85,22 @@ export declare class ExpansionPanelComponent implements OnInit, AfterViewInit, O
85
85
  /**
86
86
  * Fires when the `expanded` property of the component is updated.
87
87
  * Used to provide a two-way binding for the `expanded` property
88
- * ([see example](slug:events_expansionpanel)).
88
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/events)).
89
89
  */
90
90
  expandedChange: EventEmitter<boolean>;
91
91
  /**
92
92
  * Fires when the expanded state of the ExpansionPanel is about to change. This event is preventable
93
- * ([see example](slug:events_expansionpanel)).
93
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/events)).
94
94
  */
95
95
  action: EventEmitter<ExpansionPanelActionEvent>;
96
96
  /**
97
97
  * Fires when the ExpansionPanel is expanded. If there is animation it fires when the animation is complete
98
- * ([see example](slug:events_expansionpanel)).
98
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/events)).
99
99
  */
100
100
  expand: EventEmitter<any>;
101
101
  /**
102
102
  * Fires when the ExpansionPanel is collapsed. If there is animation it fires when the animation is complete
103
- * ([see example](slug:events_expansionpanel)).
103
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/events)).
104
104
  */
105
105
  collapse: EventEmitter<any>;
106
106
  /**
@@ -160,7 +160,7 @@ export declare class ExpansionPanelComponent implements OnInit, AfterViewInit, O
160
160
  get expanderSvgIcon(): SVGIcon;
161
161
  /**
162
162
  * Toggles the visibility of the ExpansionPanel
163
- * ([see example](slug:interaction_expansionpanel#toggling-between-states)).
163
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/interaction#toggling-between-states)).
164
164
  *
165
165
  * @param expanded Specifies whether the ExpansionPanel will be expanded or collapsed.
166
166
  */