@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.
- package/avatar/avatar.component.d.ts +11 -11
- package/avatar/l10n/custom-messages.component.d.ts +1 -1
- package/avatar/models/fill.d.ts +2 -2
- package/avatar/models/rounded.d.ts +1 -1
- package/avatar/models/size.d.ts +2 -2
- package/avatar/models/theme-color.d.ts +2 -2
- package/card/card-actions.component.d.ts +1 -1
- package/card/card.component.d.ts +1 -1
- package/drawer/drawer-container.component.d.ts +1 -1
- package/drawer/drawer.component.d.ts +4 -4
- package/drawer/models/drawer-animation.interface.d.ts +1 -1
- package/drawer/models/drawer-item-expand.interface.d.ts +1 -1
- package/drawer/models/drawer-item.interface.d.ts +1 -1
- package/drawer/models/position.d.ts +1 -1
- package/expansionpanel/expansionpanel-title.directive.d.ts +1 -1
- package/expansionpanel/expansionpanel.component.d.ts +15 -15
- package/fesm2022/progress-kendo-angular-layout.mjs +165 -183
- package/layouts/grid-layout.component.d.ts +5 -5
- package/layouts/gridlayout-item.component.d.ts +4 -4
- package/layouts/stack-layout.component.d.ts +4 -4
- package/package-metadata.mjs +2 -2
- package/package.json +9 -9
- package/panelbar/panelbar-item-model.d.ts +1 -1
- package/panelbar/panelbar-item-title.directive.d.ts +2 -2
- package/panelbar/panelbar-item.component.d.ts +9 -9
- package/panelbar/panelbar.component.d.ts +10 -10
- package/splitter/splitter.component.d.ts +1 -1
- package/stepper/localization/custom-messages.component.d.ts +1 -1
- package/stepper/models/orientation.d.ts +1 -1
- package/stepper/models/step-predicate.d.ts +1 -1
- package/stepper/models/step-type.d.ts +1 -1
- package/stepper/models/stepper-step.interface.d.ts +3 -3
- package/stepper/stepper.component.d.ts +10 -10
- package/tabstrip/directives/tab-title.directive.d.ts +1 -1
- package/tabstrip/localization/custom-messages.component.d.ts +1 -1
- package/tabstrip/models/scrollable-settings.d.ts +3 -3
- package/tabstrip/models/size.d.ts +2 -2
- package/tabstrip/models/tab-alignment.d.ts +1 -1
- package/tabstrip/models/tab-position.d.ts +1 -1
- package/tabstrip/models/tabstrip-tab.component.d.ts +4 -4
- package/tabstrip/tabstrip.component.d.ts +5 -5
- package/tilelayout/tilelayout-item.component.d.ts +5 -5
- package/tilelayout/tilelayout.component.d.ts +10 -10
- 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
|
|
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
|
|
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](
|
|
52
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/avatar/appearance#size)).
|
|
53
53
|
*
|
|
54
|
-
* @default
|
|
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](
|
|
60
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/avatar/appearance#roundness)).
|
|
61
61
|
*
|
|
62
|
-
* @default
|
|
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
|
|
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
|
|
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](
|
|
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](
|
|
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](
|
|
10
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/globalization)).
|
|
11
11
|
*
|
|
12
12
|
* ```html
|
|
13
13
|
* <kendo-avatar>
|
package/avatar/models/fill.d.ts
CHANGED
|
@@ -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](
|
|
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'
|
|
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](
|
|
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';
|
package/avatar/models/size.d.ts
CHANGED
|
@@ -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](
|
|
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'
|
|
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](
|
|
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'
|
|
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](
|
|
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
|
package/card/card.component.d.ts
CHANGED
|
@@ -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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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`](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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
|
*/
|