@progress/kendo-angular-layout 22.1.0-develop.8 → 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 +6 -5
- 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 +167 -185
- 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 +10 -10
- 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 +12 -11
- 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 +7 -6
- package/tilelayout/tilelayout-item.component.d.ts +5 -5
- package/tilelayout/tilelayout.component.d.ts +12 -11
- package/timeline/timeline.component.d.ts +1 -1
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ElementRef, EventEmitter, QueryList, Renderer2, OnDestroy, AfterViewInit, NgZone, SimpleChanges } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
|
+
import { LicenseMessage } from '@progress/kendo-licensing';
|
|
7
8
|
import { TabStripTabComponent } from './models/tabstrip-tab.component';
|
|
8
9
|
import { SelectEvent, TabCloseEvent } from './events';
|
|
9
10
|
import { TabStripService } from './tabstrip.service';
|
|
@@ -19,7 +20,7 @@ import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
|
19
20
|
import { TabStripSize } from './models/size';
|
|
20
21
|
import * as i0 from "@angular/core";
|
|
21
22
|
/**
|
|
22
|
-
* Represents the [Kendo UI TabStrip component for Angular](
|
|
23
|
+
* Represents the [Kendo UI TabStrip component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/tabstrip).
|
|
23
24
|
*
|
|
24
25
|
* @example
|
|
25
26
|
* ```html
|
|
@@ -79,7 +80,7 @@ export declare class TabStripComponent implements AfterViewInit, OnDestroy {
|
|
|
79
80
|
* * `false`—Removes inactive tabs' content from the DOM.
|
|
80
81
|
* * `"loadOnDemand"`—Loads tabs' content only when activated for the first time. Inactive tabs' content is not rendered until the tab is activated.
|
|
81
82
|
*
|
|
82
|
-
* For more information, refer to the [Rendering Modes](
|
|
83
|
+
* For more information, refer to the [Rendering Modes](https://www.telerik.com/kendo-angular-ui/components/layout/tabstrip/rendering-modes) article.
|
|
83
84
|
*
|
|
84
85
|
* @default false
|
|
85
86
|
*/
|
|
@@ -100,8 +101,8 @@ export declare class TabStripComponent implements AfterViewInit, OnDestroy {
|
|
|
100
101
|
get scrollable(): boolean | TabStripScrollableSettings;
|
|
101
102
|
/**
|
|
102
103
|
* Sets the size of the TabStrip.
|
|
103
|
-
* [See example](
|
|
104
|
-
* @default
|
|
104
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/layout/api/tabstripcomponent#size).
|
|
105
|
+
* @default undefined
|
|
105
106
|
*/
|
|
106
107
|
set size(value: TabStripSize);
|
|
107
108
|
get size(): TabStripSize;
|
|
@@ -116,7 +117,7 @@ export declare class TabStripComponent implements AfterViewInit, OnDestroy {
|
|
|
116
117
|
closeIconClass: string;
|
|
117
118
|
/**
|
|
118
119
|
* Defines an SVGIcon to render for the close icon.
|
|
119
|
-
* The input accepts either an [existing Kendo SVG icon](
|
|
120
|
+
* The input accepts either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
|
|
120
121
|
*/
|
|
121
122
|
set closeSVGIcon(icon: SVGIcon);
|
|
122
123
|
get closeSVGIcon(): SVGIcon;
|
|
@@ -180,7 +181,7 @@ export declare class TabStripComponent implements AfterViewInit, OnDestroy {
|
|
|
180
181
|
/**
|
|
181
182
|
* @hidden
|
|
182
183
|
*/
|
|
183
|
-
licenseMessage?:
|
|
184
|
+
licenseMessage?: LicenseMessage;
|
|
184
185
|
private _height;
|
|
185
186
|
private _scrollableSettings;
|
|
186
187
|
private subscriptions;
|
|
@@ -29,16 +29,16 @@ export declare class TileLayoutItemComponent implements AfterViewInit, OnDestroy
|
|
|
29
29
|
private draggingService;
|
|
30
30
|
private keyboardNavigationService;
|
|
31
31
|
/**
|
|
32
|
-
* Sets the title text that appears in the item header ([see example](
|
|
32
|
+
* Sets the title text that appears in the item header ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#tiles-configuration)).
|
|
33
33
|
*/
|
|
34
34
|
title: string;
|
|
35
35
|
/**
|
|
36
|
-
* Sets how many rows the tile item spans ([see example](
|
|
36
|
+
* Sets how many rows the tile item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing#programmatic-resizing)).
|
|
37
37
|
* @default 1
|
|
38
38
|
*/
|
|
39
39
|
rowSpan: number;
|
|
40
40
|
/**
|
|
41
|
-
* Sets how many columns the tile item spans ([see example](
|
|
41
|
+
* Sets how many columns the tile item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing#programmatic-resizing)).
|
|
42
42
|
* @default 1
|
|
43
43
|
*/
|
|
44
44
|
colSpan: number;
|
|
@@ -49,11 +49,11 @@ export declare class TileLayoutItemComponent implements AfterViewInit, OnDestroy
|
|
|
49
49
|
set order(value: number);
|
|
50
50
|
get order(): number;
|
|
51
51
|
/**
|
|
52
|
-
* Sets the starting column position of the item ([see example](
|
|
52
|
+
* Sets the starting column position of the item ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
|
|
53
53
|
*/
|
|
54
54
|
col: number;
|
|
55
55
|
/**
|
|
56
|
-
* Sets the starting row position of the item ([see example](
|
|
56
|
+
* Sets the starting row position of the item ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
|
|
57
57
|
*/
|
|
58
58
|
row: number;
|
|
59
59
|
/**
|
|
@@ -8,12 +8,13 @@ import { TileLayoutResizeEvent } from './resize-event';
|
|
|
8
8
|
import { TileLayoutItemComponent } from './tilelayout-item.component';
|
|
9
9
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
10
10
|
import { TileLayoutReorderEvent } from './reorder-event';
|
|
11
|
+
import { LicenseMessage } from '@progress/kendo-licensing';
|
|
11
12
|
import { TileLayoutGap } from './models/gap.interface';
|
|
12
13
|
import { TileLayoutFlowMode } from './models/flowmode.type';
|
|
13
14
|
import { TileLayoutKeyboardNavigationService } from './keyboard-navigation.service';
|
|
14
15
|
import * as i0 from "@angular/core";
|
|
15
16
|
/**
|
|
16
|
-
* Represents the [Kendo UI TileLayout component for Angular](
|
|
17
|
+
* Represents the [Kendo UI TileLayout component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout)
|
|
17
18
|
*
|
|
18
19
|
* @example
|
|
19
20
|
* ```html
|
|
@@ -33,13 +34,13 @@ export declare class TileLayoutComponent implements OnInit, AfterViewInit, After
|
|
|
33
34
|
private draggingService;
|
|
34
35
|
private navigationService;
|
|
35
36
|
/**
|
|
36
|
-
* Specifies the number of columns ([see example](
|
|
37
|
+
* Specifies the number of columns ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
|
|
37
38
|
* @default 1
|
|
38
39
|
*/
|
|
39
40
|
columns: number;
|
|
40
41
|
/**
|
|
41
42
|
* Sets the width of the columns.
|
|
42
|
-
* Use numeric values for pixels or string values for other CSS units ([see example](
|
|
43
|
+
* Use numeric values for pixels or string values for other CSS units ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
|
|
43
44
|
* @default '1fr'
|
|
44
45
|
*/
|
|
45
46
|
columnWidth: string | number;
|
|
@@ -53,41 +54,41 @@ export declare class TileLayoutComponent implements OnInit, AfterViewInit, After
|
|
|
53
54
|
set gap(value: TileLayoutGap | number);
|
|
54
55
|
get gap(): TileLayoutGap | number;
|
|
55
56
|
/**
|
|
56
|
-
* Enables or disables item reordering ([see example](
|
|
57
|
+
* Enables or disables item reordering ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/reordering)).
|
|
57
58
|
* @default false
|
|
58
59
|
*/
|
|
59
60
|
reorderable: boolean;
|
|
60
61
|
/**
|
|
61
|
-
* Enables or disables item resizing ([see example](
|
|
62
|
+
* Enables or disables item resizing ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing)).
|
|
62
63
|
* @default false
|
|
63
64
|
*/
|
|
64
65
|
resizable: boolean;
|
|
65
66
|
/**
|
|
66
67
|
* Sets the height of the rows.
|
|
67
|
-
* Use numeric values for pixels or string values for other CSS units ([see example](
|
|
68
|
+
* Use numeric values for pixels or string values for other CSS units ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
|
|
68
69
|
* @default '1fr'
|
|
69
70
|
*/
|
|
70
71
|
rowHeight: string | number;
|
|
71
72
|
/**
|
|
72
73
|
*
|
|
73
|
-
* Controls how the auto-placement algorithm works, specifying exactly how auto-placed items are flowed in the TileLayout ([see example](
|
|
74
|
+
* Controls how the auto-placement algorithm works, specifying exactly how auto-placed items are flowed in the TileLayout ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/auto-flow)).
|
|
74
75
|
*
|
|
75
76
|
* For further reference, check the [grid-auto-flow CSS article](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow).
|
|
76
77
|
* @default 'column'
|
|
77
78
|
*/
|
|
78
79
|
autoFlow: TileLayoutFlowMode;
|
|
79
80
|
/**
|
|
80
|
-
* Enables or disables [keyboard navigation](
|
|
81
|
+
* Enables or disables [keyboard navigation](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/keyboard-navigation).
|
|
81
82
|
* @default true
|
|
82
83
|
*/
|
|
83
84
|
navigable: boolean;
|
|
84
85
|
/**
|
|
85
|
-
* Fires when item reordering is completed ([see example](
|
|
86
|
+
* Fires when item reordering is completed ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/reordering)).
|
|
86
87
|
* You can prevent this event to cancel the reorder operation.
|
|
87
88
|
*/
|
|
88
89
|
reorder: EventEmitter<TileLayoutReorderEvent>;
|
|
89
90
|
/**
|
|
90
|
-
* Fires when item resizing is completed ([see example](
|
|
91
|
+
* Fires when item resizing is completed ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing)).
|
|
91
92
|
* You can prevent this event to cancel the resize operation.
|
|
92
93
|
*/
|
|
93
94
|
resize: EventEmitter<TileLayoutResizeEvent>;
|
|
@@ -112,7 +113,7 @@ export declare class TileLayoutComponent implements OnInit, AfterViewInit, After
|
|
|
112
113
|
/**
|
|
113
114
|
* @hidden
|
|
114
115
|
*/
|
|
115
|
-
licenseMessage?:
|
|
116
|
+
licenseMessage?: LicenseMessage;
|
|
116
117
|
private draggable;
|
|
117
118
|
private subs;
|
|
118
119
|
private _gap;
|
|
@@ -15,7 +15,7 @@ import { TimelineCardActionsTemplateDirective } from './templates/timeline-card-
|
|
|
15
15
|
import { TimelineEventsOrder } from './models/events-order';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
/**
|
|
18
|
-
* Represents the [Kendo UI Timeline component for Angular](
|
|
18
|
+
* Represents the [Kendo UI Timeline component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/timeline).
|
|
19
19
|
*
|
|
20
20
|
* @remarks
|
|
21
21
|
* Supported children components are: {@link TimelineCustomMessagesComponent}.
|