@progress/kendo-angular-layout 16.4.0-develop.5 → 16.4.0-develop.6
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 +1 -1
- package/avatar/models/fill.d.ts +1 -1
- package/esm2020/avatar/avatar.component.mjs +1 -1
- package/esm2020/expansionpanel/expansionpanel.component.mjs +6 -6
- package/esm2020/layouts/grid-layout.component.mjs +1 -1
- package/esm2020/layouts/stack-layout.component.mjs +1 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/tabstrip/tabstrip.component.mjs +1 -1
- package/esm2020/tilelayout/tilelayout-item.component.mjs +3 -3
- package/expansionpanel/expansionpanel.component.d.ts +6 -6
- package/fesm2015/progress-kendo-angular-layout.mjs +15 -15
- package/fesm2020/progress-kendo-angular-layout.mjs +15 -15
- package/layouts/grid-layout.component.d.ts +3 -3
- package/layouts/stack-layout.component.d.ts +1 -1
- package/package.json +8 -8
- 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 +2 -2
- package/tabstrip/tabstrip.component.d.ts +1 -1
- package/tilelayout/tilelayout-item.component.d.ts +3 -3
|
@@ -42,7 +42,7 @@ export declare class AvatarComponent implements OnInit, AfterViewInit {
|
|
|
42
42
|
get size(): AvatarSize;
|
|
43
43
|
/**
|
|
44
44
|
* Specifies the rounded styling of the avatar
|
|
45
|
-
* ([see example](
|
|
45
|
+
* ([see example](slug:appearance_avatar#toc-roundness)).
|
|
46
46
|
*
|
|
47
47
|
* The possible values are:
|
|
48
48
|
* * `small`
|
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
|
-
* Specifies the possible appearance fill styles of the аvatar ([see example](
|
|
6
|
+
* Specifies the possible appearance fill styles of the аvatar ([see example](slug:appearance_avatar#toc-fill-mode)).
|
|
7
7
|
*/
|
|
8
8
|
export declare type AvatarFillMode = 'solid' | 'outline' | 'none';
|
|
@@ -76,7 +76,7 @@ export class AvatarComponent {
|
|
|
76
76
|
}
|
|
77
77
|
/**
|
|
78
78
|
* Specifies the rounded styling of the avatar
|
|
79
|
-
* ([see example](
|
|
79
|
+
* ([see example](slug:appearance_avatar#toc-roundness)).
|
|
80
80
|
*
|
|
81
81
|
* The possible values are:
|
|
82
82
|
* * `small`
|
|
@@ -48,12 +48,12 @@ export class ExpansionPanelComponent {
|
|
|
48
48
|
this.builder = builder;
|
|
49
49
|
/**
|
|
50
50
|
* Specifies the primary text in the header of the ExpansionPanel
|
|
51
|
-
* ([see example](
|
|
51
|
+
* ([see example](slug:title_expansionpanel#toc-titles-and-subtitles)).
|
|
52
52
|
*/
|
|
53
53
|
this.title = '';
|
|
54
54
|
/**
|
|
55
55
|
* Specifies the secondary text in the header of the ExpansionPanel, which is rendered next to the collapse/expand icon
|
|
56
|
-
* ([see example](
|
|
56
|
+
* ([see example](slug:title_expansionpanel#toc-titles-and-subtitles)).
|
|
57
57
|
*/
|
|
58
58
|
this.subtitle = '';
|
|
59
59
|
/**
|
|
@@ -77,22 +77,22 @@ export class ExpansionPanelComponent {
|
|
|
77
77
|
/**
|
|
78
78
|
* Fires when the `expanded` property of the component is updated.
|
|
79
79
|
* Used to provide a two-way binding for the `expanded` property
|
|
80
|
-
* ([see example](
|
|
80
|
+
* ([see example](slug:events_expansionpanel)).
|
|
81
81
|
*/
|
|
82
82
|
this.expandedChange = new EventEmitter();
|
|
83
83
|
/**
|
|
84
84
|
* Fires when the expanded state of the ExpansionPanel is about to change. This event is preventable
|
|
85
|
-
* ([see example](
|
|
85
|
+
* ([see example](slug:events_expansionpanel)).
|
|
86
86
|
*/
|
|
87
87
|
this.action = new EventEmitter();
|
|
88
88
|
/**
|
|
89
89
|
* Fires when the ExpansionPanel is expanded. If there is animation it will fire when the animation is complete
|
|
90
|
-
* ([see example](
|
|
90
|
+
* ([see example](slug:events_expansionpanel)).
|
|
91
91
|
*/
|
|
92
92
|
this.expand = new EventEmitter();
|
|
93
93
|
/**
|
|
94
94
|
* Fires when the ExpansionPanel is collapsed. If there is animation it will fire when the animation is complete
|
|
95
|
-
* ([see example](
|
|
95
|
+
* ([see example](slug:events_expansionpanel)).
|
|
96
96
|
*/
|
|
97
97
|
this.collapse = new EventEmitter();
|
|
98
98
|
this.hostClass = true;
|
|
@@ -22,7 +22,7 @@ export class GridLayoutComponent {
|
|
|
22
22
|
this.hostClass = true;
|
|
23
23
|
/**
|
|
24
24
|
* Specifies the gaps between the elements. The default value is `0`
|
|
25
|
-
* ([see example](
|
|
25
|
+
* ([see example](slug:layout_gridlayout#toc-gap)).
|
|
26
26
|
*/
|
|
27
27
|
this.gap = 0;
|
|
28
28
|
this._align = {
|
|
@@ -22,7 +22,7 @@ export class StackLayoutComponent {
|
|
|
22
22
|
this.hostClass = true;
|
|
23
23
|
/**
|
|
24
24
|
* Specifies the gap between the inner StackLayout elements. The default value is `0`
|
|
25
|
-
* ([see example](
|
|
25
|
+
* ([see example](slug:layout_stacklayout#toc-gap)).
|
|
26
26
|
*/
|
|
27
27
|
this.gap = 0;
|
|
28
28
|
/**
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-layout',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.4.0-develop.
|
|
12
|
+
publishDate: 1720184850,
|
|
13
|
+
version: '16.4.0-develop.6',
|
|
14
14
|
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'
|
|
15
15
|
};
|
|
@@ -76,7 +76,7 @@ export class TabStripComponent {
|
|
|
76
76
|
*/
|
|
77
77
|
this.showContentArea = true;
|
|
78
78
|
/**
|
|
79
|
-
* Fires each time the user selects a tab ([see example](
|
|
79
|
+
* Fires each time the user selects a tab ([see example](slug:events_tabstrip)).
|
|
80
80
|
* The event data contains the index of the selected tab and its title.
|
|
81
81
|
*/
|
|
82
82
|
this.tabSelect = new EventEmitter();
|
|
@@ -30,12 +30,12 @@ export class TileLayoutItemComponent {
|
|
|
30
30
|
this.draggingService = draggingService;
|
|
31
31
|
this.keyboardNavigationService = keyboardNavigationService;
|
|
32
32
|
/**
|
|
33
|
-
* Determines how many rows will the tile item span ([see example](
|
|
33
|
+
* Determines how many rows will the tile item span ([see example](slug:tiles_tilelayout#toc-programmatic-resizing)).
|
|
34
34
|
* @default 1
|
|
35
35
|
*/
|
|
36
36
|
this.rowSpan = 1;
|
|
37
37
|
/**
|
|
38
|
-
* Determines how many columns will the tile item span ([see example](
|
|
38
|
+
* Determines how many columns will the tile item span ([see example](slug:tiles_tilelayout#toc-programmatic-resizing)).
|
|
39
39
|
* @default 1
|
|
40
40
|
*/
|
|
41
41
|
this.colSpan = 1;
|
|
@@ -46,7 +46,7 @@ export class TileLayoutItemComponent {
|
|
|
46
46
|
*/
|
|
47
47
|
this.reorderable = true;
|
|
48
48
|
/**
|
|
49
|
-
* Determines whether the item can be resized. By default all items are resizable when the [resizable]({% slug api_layout_tilelayoutcomponent %}#resizable) property of the TileLayoutComponent is set to `true` ([see example](
|
|
49
|
+
* Determines whether the item can be resized. By default all items are resizable when the [resizable]({% slug api_layout_tilelayoutcomponent %}#resizable) property of the TileLayoutComponent is set to `true` ([see example](slug:resizing_tilelayout#toc-disabling-resizing)).
|
|
50
50
|
* @default true
|
|
51
51
|
*/
|
|
52
52
|
this.resizable = true;
|
|
@@ -33,12 +33,12 @@ export declare class ExpansionPanelComponent implements OnInit, AfterViewInit, O
|
|
|
33
33
|
private builder;
|
|
34
34
|
/**
|
|
35
35
|
* Specifies the primary text in the header of the ExpansionPanel
|
|
36
|
-
* ([see example](
|
|
36
|
+
* ([see example](slug:title_expansionpanel#toc-titles-and-subtitles)).
|
|
37
37
|
*/
|
|
38
38
|
title: string;
|
|
39
39
|
/**
|
|
40
40
|
* Specifies the secondary text in the header of the ExpansionPanel, which is rendered next to the collapse/expand icon
|
|
41
|
-
* ([see example](
|
|
41
|
+
* ([see example](slug:title_expansionpanel#toc-titles-and-subtitles)).
|
|
42
42
|
*/
|
|
43
43
|
subtitle: string;
|
|
44
44
|
/**
|
|
@@ -92,22 +92,22 @@ export declare class ExpansionPanelComponent implements OnInit, AfterViewInit, O
|
|
|
92
92
|
/**
|
|
93
93
|
* Fires when the `expanded` property of the component is updated.
|
|
94
94
|
* Used to provide a two-way binding for the `expanded` property
|
|
95
|
-
* ([see example](
|
|
95
|
+
* ([see example](slug:events_expansionpanel)).
|
|
96
96
|
*/
|
|
97
97
|
expandedChange: EventEmitter<boolean>;
|
|
98
98
|
/**
|
|
99
99
|
* Fires when the expanded state of the ExpansionPanel is about to change. This event is preventable
|
|
100
|
-
* ([see example](
|
|
100
|
+
* ([see example](slug:events_expansionpanel)).
|
|
101
101
|
*/
|
|
102
102
|
action: EventEmitter<ExpansionPanelActionEvent>;
|
|
103
103
|
/**
|
|
104
104
|
* Fires when the ExpansionPanel is expanded. If there is animation it will fire when the animation is complete
|
|
105
|
-
* ([see example](
|
|
105
|
+
* ([see example](slug:events_expansionpanel)).
|
|
106
106
|
*/
|
|
107
107
|
expand: EventEmitter<any>;
|
|
108
108
|
/**
|
|
109
109
|
* Fires when the ExpansionPanel is collapsed. If there is animation it will fire when the animation is complete
|
|
110
|
-
* ([see example](
|
|
110
|
+
* ([see example](slug:events_expansionpanel)).
|
|
111
111
|
*/
|
|
112
112
|
collapse: EventEmitter<any>;
|
|
113
113
|
/**
|
|
@@ -33,8 +33,8 @@ const packageMetadata = {
|
|
|
33
33
|
name: '@progress/kendo-angular-layout',
|
|
34
34
|
productName: 'Kendo UI for Angular',
|
|
35
35
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
36
|
-
publishDate:
|
|
37
|
-
version: '16.4.0-develop.
|
|
36
|
+
publishDate: 1720184850,
|
|
37
|
+
version: '16.4.0-develop.6',
|
|
38
38
|
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'
|
|
39
39
|
};
|
|
40
40
|
|
|
@@ -3633,7 +3633,7 @@ class TabStripComponent {
|
|
|
3633
3633
|
*/
|
|
3634
3634
|
this.showContentArea = true;
|
|
3635
3635
|
/**
|
|
3636
|
-
* Fires each time the user selects a tab ([see example](
|
|
3636
|
+
* Fires each time the user selects a tab ([see example](slug:events_tabstrip)).
|
|
3637
3637
|
* The event data contains the index of the selected tab and its title.
|
|
3638
3638
|
*/
|
|
3639
3639
|
this.tabSelect = new EventEmitter();
|
|
@@ -6819,7 +6819,7 @@ class AvatarComponent {
|
|
|
6819
6819
|
}
|
|
6820
6820
|
/**
|
|
6821
6821
|
* Specifies the rounded styling of the avatar
|
|
6822
|
-
* ([see example](
|
|
6822
|
+
* ([see example](slug:appearance_avatar#toc-roundness)).
|
|
6823
6823
|
*
|
|
6824
6824
|
* The possible values are:
|
|
6825
6825
|
* * `small`
|
|
@@ -7657,12 +7657,12 @@ class ExpansionPanelComponent {
|
|
|
7657
7657
|
this.builder = builder;
|
|
7658
7658
|
/**
|
|
7659
7659
|
* Specifies the primary text in the header of the ExpansionPanel
|
|
7660
|
-
* ([see example](
|
|
7660
|
+
* ([see example](slug:title_expansionpanel#toc-titles-and-subtitles)).
|
|
7661
7661
|
*/
|
|
7662
7662
|
this.title = '';
|
|
7663
7663
|
/**
|
|
7664
7664
|
* Specifies the secondary text in the header of the ExpansionPanel, which is rendered next to the collapse/expand icon
|
|
7665
|
-
* ([see example](
|
|
7665
|
+
* ([see example](slug:title_expansionpanel#toc-titles-and-subtitles)).
|
|
7666
7666
|
*/
|
|
7667
7667
|
this.subtitle = '';
|
|
7668
7668
|
/**
|
|
@@ -7686,22 +7686,22 @@ class ExpansionPanelComponent {
|
|
|
7686
7686
|
/**
|
|
7687
7687
|
* Fires when the `expanded` property of the component is updated.
|
|
7688
7688
|
* Used to provide a two-way binding for the `expanded` property
|
|
7689
|
-
* ([see example](
|
|
7689
|
+
* ([see example](slug:events_expansionpanel)).
|
|
7690
7690
|
*/
|
|
7691
7691
|
this.expandedChange = new EventEmitter();
|
|
7692
7692
|
/**
|
|
7693
7693
|
* Fires when the expanded state of the ExpansionPanel is about to change. This event is preventable
|
|
7694
|
-
* ([see example](
|
|
7694
|
+
* ([see example](slug:events_expansionpanel)).
|
|
7695
7695
|
*/
|
|
7696
7696
|
this.action = new EventEmitter();
|
|
7697
7697
|
/**
|
|
7698
7698
|
* Fires when the ExpansionPanel is expanded. If there is animation it will fire when the animation is complete
|
|
7699
|
-
* ([see example](
|
|
7699
|
+
* ([see example](slug:events_expansionpanel)).
|
|
7700
7700
|
*/
|
|
7701
7701
|
this.expand = new EventEmitter();
|
|
7702
7702
|
/**
|
|
7703
7703
|
* Fires when the ExpansionPanel is collapsed. If there is animation it will fire when the animation is complete
|
|
7704
|
-
* ([see example](
|
|
7704
|
+
* ([see example](slug:events_expansionpanel)).
|
|
7705
7705
|
*/
|
|
7706
7706
|
this.collapse = new EventEmitter();
|
|
7707
7707
|
this.hostClass = true;
|
|
@@ -8981,12 +8981,12 @@ class TileLayoutItemComponent {
|
|
|
8981
8981
|
this.draggingService = draggingService;
|
|
8982
8982
|
this.keyboardNavigationService = keyboardNavigationService;
|
|
8983
8983
|
/**
|
|
8984
|
-
* Determines how many rows will the tile item span ([see example](
|
|
8984
|
+
* Determines how many rows will the tile item span ([see example](slug:tiles_tilelayout#toc-programmatic-resizing)).
|
|
8985
8985
|
* @default 1
|
|
8986
8986
|
*/
|
|
8987
8987
|
this.rowSpan = 1;
|
|
8988
8988
|
/**
|
|
8989
|
-
* Determines how many columns will the tile item span ([see example](
|
|
8989
|
+
* Determines how many columns will the tile item span ([see example](slug:tiles_tilelayout#toc-programmatic-resizing)).
|
|
8990
8990
|
* @default 1
|
|
8991
8991
|
*/
|
|
8992
8992
|
this.colSpan = 1;
|
|
@@ -8997,7 +8997,7 @@ class TileLayoutItemComponent {
|
|
|
8997
8997
|
*/
|
|
8998
8998
|
this.reorderable = true;
|
|
8999
8999
|
/**
|
|
9000
|
-
* Determines whether the item can be resized. By default all items are resizable when the [resizable]({% slug api_layout_tilelayoutcomponent %}#resizable) property of the TileLayoutComponent is set to `true` ([see example](
|
|
9000
|
+
* Determines whether the item can be resized. By default all items are resizable when the [resizable]({% slug api_layout_tilelayoutcomponent %}#resizable) property of the TileLayoutComponent is set to `true` ([see example](slug:resizing_tilelayout#toc-disabling-resizing)).
|
|
9001
9001
|
* @default true
|
|
9002
9002
|
*/
|
|
9003
9003
|
this.resizable = true;
|
|
@@ -10062,7 +10062,7 @@ class StackLayoutComponent {
|
|
|
10062
10062
|
this.hostClass = true;
|
|
10063
10063
|
/**
|
|
10064
10064
|
* Specifies the gap between the inner StackLayout elements. The default value is `0`
|
|
10065
|
-
* ([see example](
|
|
10065
|
+
* ([see example](slug:layout_stacklayout#toc-gap)).
|
|
10066
10066
|
*/
|
|
10067
10067
|
this.gap = 0;
|
|
10068
10068
|
/**
|
|
@@ -10220,7 +10220,7 @@ class GridLayoutComponent {
|
|
|
10220
10220
|
this.hostClass = true;
|
|
10221
10221
|
/**
|
|
10222
10222
|
* Specifies the gaps between the elements. The default value is `0`
|
|
10223
|
-
* ([see example](
|
|
10223
|
+
* ([see example](slug:layout_gridlayout#toc-gap)).
|
|
10224
10224
|
*/
|
|
10225
10225
|
this.gap = 0;
|
|
10226
10226
|
this._align = {
|
|
@@ -33,8 +33,8 @@ const packageMetadata = {
|
|
|
33
33
|
name: '@progress/kendo-angular-layout',
|
|
34
34
|
productName: 'Kendo UI for Angular',
|
|
35
35
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
36
|
-
publishDate:
|
|
37
|
-
version: '16.4.0-develop.
|
|
36
|
+
publishDate: 1720184850,
|
|
37
|
+
version: '16.4.0-develop.6',
|
|
38
38
|
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'
|
|
39
39
|
};
|
|
40
40
|
|
|
@@ -3623,7 +3623,7 @@ class TabStripComponent {
|
|
|
3623
3623
|
*/
|
|
3624
3624
|
this.showContentArea = true;
|
|
3625
3625
|
/**
|
|
3626
|
-
* Fires each time the user selects a tab ([see example](
|
|
3626
|
+
* Fires each time the user selects a tab ([see example](slug:events_tabstrip)).
|
|
3627
3627
|
* The event data contains the index of the selected tab and its title.
|
|
3628
3628
|
*/
|
|
3629
3629
|
this.tabSelect = new EventEmitter();
|
|
@@ -6794,7 +6794,7 @@ class AvatarComponent {
|
|
|
6794
6794
|
}
|
|
6795
6795
|
/**
|
|
6796
6796
|
* Specifies the rounded styling of the avatar
|
|
6797
|
-
* ([see example](
|
|
6797
|
+
* ([see example](slug:appearance_avatar#toc-roundness)).
|
|
6798
6798
|
*
|
|
6799
6799
|
* The possible values are:
|
|
6800
6800
|
* * `small`
|
|
@@ -7630,12 +7630,12 @@ class ExpansionPanelComponent {
|
|
|
7630
7630
|
this.builder = builder;
|
|
7631
7631
|
/**
|
|
7632
7632
|
* Specifies the primary text in the header of the ExpansionPanel
|
|
7633
|
-
* ([see example](
|
|
7633
|
+
* ([see example](slug:title_expansionpanel#toc-titles-and-subtitles)).
|
|
7634
7634
|
*/
|
|
7635
7635
|
this.title = '';
|
|
7636
7636
|
/**
|
|
7637
7637
|
* Specifies the secondary text in the header of the ExpansionPanel, which is rendered next to the collapse/expand icon
|
|
7638
|
-
* ([see example](
|
|
7638
|
+
* ([see example](slug:title_expansionpanel#toc-titles-and-subtitles)).
|
|
7639
7639
|
*/
|
|
7640
7640
|
this.subtitle = '';
|
|
7641
7641
|
/**
|
|
@@ -7659,22 +7659,22 @@ class ExpansionPanelComponent {
|
|
|
7659
7659
|
/**
|
|
7660
7660
|
* Fires when the `expanded` property of the component is updated.
|
|
7661
7661
|
* Used to provide a two-way binding for the `expanded` property
|
|
7662
|
-
* ([see example](
|
|
7662
|
+
* ([see example](slug:events_expansionpanel)).
|
|
7663
7663
|
*/
|
|
7664
7664
|
this.expandedChange = new EventEmitter();
|
|
7665
7665
|
/**
|
|
7666
7666
|
* Fires when the expanded state of the ExpansionPanel is about to change. This event is preventable
|
|
7667
|
-
* ([see example](
|
|
7667
|
+
* ([see example](slug:events_expansionpanel)).
|
|
7668
7668
|
*/
|
|
7669
7669
|
this.action = new EventEmitter();
|
|
7670
7670
|
/**
|
|
7671
7671
|
* Fires when the ExpansionPanel is expanded. If there is animation it will fire when the animation is complete
|
|
7672
|
-
* ([see example](
|
|
7672
|
+
* ([see example](slug:events_expansionpanel)).
|
|
7673
7673
|
*/
|
|
7674
7674
|
this.expand = new EventEmitter();
|
|
7675
7675
|
/**
|
|
7676
7676
|
* Fires when the ExpansionPanel is collapsed. If there is animation it will fire when the animation is complete
|
|
7677
|
-
* ([see example](
|
|
7677
|
+
* ([see example](slug:events_expansionpanel)).
|
|
7678
7678
|
*/
|
|
7679
7679
|
this.collapse = new EventEmitter();
|
|
7680
7680
|
this.hostClass = true;
|
|
@@ -8953,12 +8953,12 @@ class TileLayoutItemComponent {
|
|
|
8953
8953
|
this.draggingService = draggingService;
|
|
8954
8954
|
this.keyboardNavigationService = keyboardNavigationService;
|
|
8955
8955
|
/**
|
|
8956
|
-
* Determines how many rows will the tile item span ([see example](
|
|
8956
|
+
* Determines how many rows will the tile item span ([see example](slug:tiles_tilelayout#toc-programmatic-resizing)).
|
|
8957
8957
|
* @default 1
|
|
8958
8958
|
*/
|
|
8959
8959
|
this.rowSpan = 1;
|
|
8960
8960
|
/**
|
|
8961
|
-
* Determines how many columns will the tile item span ([see example](
|
|
8961
|
+
* Determines how many columns will the tile item span ([see example](slug:tiles_tilelayout#toc-programmatic-resizing)).
|
|
8962
8962
|
* @default 1
|
|
8963
8963
|
*/
|
|
8964
8964
|
this.colSpan = 1;
|
|
@@ -8969,7 +8969,7 @@ class TileLayoutItemComponent {
|
|
|
8969
8969
|
*/
|
|
8970
8970
|
this.reorderable = true;
|
|
8971
8971
|
/**
|
|
8972
|
-
* Determines whether the item can be resized. By default all items are resizable when the [resizable]({% slug api_layout_tilelayoutcomponent %}#resizable) property of the TileLayoutComponent is set to `true` ([see example](
|
|
8972
|
+
* Determines whether the item can be resized. By default all items are resizable when the [resizable]({% slug api_layout_tilelayoutcomponent %}#resizable) property of the TileLayoutComponent is set to `true` ([see example](slug:resizing_tilelayout#toc-disabling-resizing)).
|
|
8973
8973
|
* @default true
|
|
8974
8974
|
*/
|
|
8975
8975
|
this.resizable = true;
|
|
@@ -10033,7 +10033,7 @@ class StackLayoutComponent {
|
|
|
10033
10033
|
this.hostClass = true;
|
|
10034
10034
|
/**
|
|
10035
10035
|
* Specifies the gap between the inner StackLayout elements. The default value is `0`
|
|
10036
|
-
* ([see example](
|
|
10036
|
+
* ([see example](slug:layout_stacklayout#toc-gap)).
|
|
10037
10037
|
*/
|
|
10038
10038
|
this.gap = 0;
|
|
10039
10039
|
/**
|
|
@@ -10191,7 +10191,7 @@ class GridLayoutComponent {
|
|
|
10191
10191
|
this.hostClass = true;
|
|
10192
10192
|
/**
|
|
10193
10193
|
* Specifies the gaps between the elements. The default value is `0`
|
|
10194
|
-
* ([see example](
|
|
10194
|
+
* ([see example](slug:layout_gridlayout#toc-gap)).
|
|
10195
10195
|
*/
|
|
10196
10196
|
this.gap = 0;
|
|
10197
10197
|
this._align = {
|
|
@@ -17,7 +17,7 @@ export declare class GridLayoutComponent implements AfterViewInit, OnChanges {
|
|
|
17
17
|
get dir(): string;
|
|
18
18
|
/**
|
|
19
19
|
* Specifies the number of rows and their height
|
|
20
|
-
* ([More details](
|
|
20
|
+
* ([More details](slug:layout_gridlayout#toc-rows-and-columns)).
|
|
21
21
|
*
|
|
22
22
|
* Accepts an array, which serves two purposes:
|
|
23
23
|
*
|
|
@@ -30,7 +30,7 @@ export declare class GridLayoutComponent implements AfterViewInit, OnChanges {
|
|
|
30
30
|
rows: Array<any>;
|
|
31
31
|
/**
|
|
32
32
|
* Specifies the number of columns and their widths
|
|
33
|
-
* ([More details](
|
|
33
|
+
* ([More details](slug:layout_gridlayout#toc-rows-and-columns)).
|
|
34
34
|
*
|
|
35
35
|
* Accepts an array, which serves two purposes:
|
|
36
36
|
*
|
|
@@ -43,7 +43,7 @@ export declare class GridLayoutComponent implements AfterViewInit, OnChanges {
|
|
|
43
43
|
cols: Array<any>;
|
|
44
44
|
/**
|
|
45
45
|
* Specifies the gaps between the elements. The default value is `0`
|
|
46
|
-
* ([see example](
|
|
46
|
+
* ([see example](slug:layout_gridlayout#toc-gap)).
|
|
47
47
|
*/
|
|
48
48
|
gap: number | string | GridLayoutGapSettings;
|
|
49
49
|
/**
|
|
@@ -25,7 +25,7 @@ export declare class StackLayoutComponent implements AfterViewInit, OnChanges {
|
|
|
25
25
|
get align(): AlignSettings;
|
|
26
26
|
/**
|
|
27
27
|
* Specifies the gap between the inner StackLayout elements. The default value is `0`
|
|
28
|
-
* ([see example](
|
|
28
|
+
* ([see example](slug:layout_stacklayout#toc-gap)).
|
|
29
29
|
*/
|
|
30
30
|
gap: number | string;
|
|
31
31
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-layout",
|
|
3
|
-
"version": "16.4.0-develop.
|
|
3
|
+
"version": "16.4.0-develop.6",
|
|
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",
|
|
@@ -39,17 +39,17 @@
|
|
|
39
39
|
"@angular/core": "15 - 18",
|
|
40
40
|
"@angular/platform-browser": "15 - 18",
|
|
41
41
|
"@progress/kendo-licensing": "^1.0.2",
|
|
42
|
-
"@progress/kendo-angular-common": "16.4.0-develop.
|
|
43
|
-
"@progress/kendo-angular-l10n": "16.4.0-develop.
|
|
44
|
-
"@progress/kendo-angular-progressbar": "16.4.0-develop.
|
|
45
|
-
"@progress/kendo-angular-icons": "16.4.0-develop.
|
|
46
|
-
"@progress/kendo-angular-buttons": "16.4.0-develop.
|
|
47
|
-
"@progress/kendo-angular-intl": "16.4.0-develop.
|
|
42
|
+
"@progress/kendo-angular-common": "16.4.0-develop.6",
|
|
43
|
+
"@progress/kendo-angular-l10n": "16.4.0-develop.6",
|
|
44
|
+
"@progress/kendo-angular-progressbar": "16.4.0-develop.6",
|
|
45
|
+
"@progress/kendo-angular-icons": "16.4.0-develop.6",
|
|
46
|
+
"@progress/kendo-angular-buttons": "16.4.0-develop.6",
|
|
47
|
+
"@progress/kendo-angular-intl": "16.4.0-develop.6",
|
|
48
48
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"tslib": "^2.3.1",
|
|
52
|
-
"@progress/kendo-angular-schematics": "16.4.0-develop.
|
|
52
|
+
"@progress/kendo-angular-schematics": "16.4.0-develop.6",
|
|
53
53
|
"@progress/kendo-draggable": "^3.0.2"
|
|
54
54
|
},
|
|
55
55
|
"schematics": "./schematics/collection.json",
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
6
|
* Specifies the alignment of the tabs
|
|
7
|
-
* ([see example](
|
|
7
|
+
* ([see example](slug:tabs_tabstrip#toc-tab-alignment)).
|
|
8
8
|
*/
|
|
9
9
|
export declare type TabAlignment = 'start' | 'end' | 'center' | 'justify';
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
6
|
* Specifies the position of the tabs
|
|
7
|
-
* ([see example](
|
|
7
|
+
* ([see example](slug:tabs_tabstrip#toc-tab-position)).
|
|
8
8
|
*/
|
|
9
9
|
export declare type TabPosition = 'top' | 'left' | 'right' | 'bottom';
|
|
@@ -13,7 +13,7 @@ import * as i0 from "@angular/core";
|
|
|
13
13
|
*/
|
|
14
14
|
export declare class TabStripTabComponent {
|
|
15
15
|
/**
|
|
16
|
-
* Sets the tab title ([see example](
|
|
16
|
+
* Sets the tab title ([see example](slug:tabs_tabstrip#toc-tab-titles)).
|
|
17
17
|
*/
|
|
18
18
|
title: string;
|
|
19
19
|
/**
|
|
@@ -34,7 +34,7 @@ export declare class TabStripTabComponent {
|
|
|
34
34
|
cssStyle: any;
|
|
35
35
|
/**
|
|
36
36
|
* Determines which tab will be selected upon the initial loading of the TabStrip
|
|
37
|
-
* ([see example](
|
|
37
|
+
* ([see example](slug:tabs_tabstrip#toc-selected-tab)).
|
|
38
38
|
*/
|
|
39
39
|
selected: boolean;
|
|
40
40
|
/**
|
|
@@ -93,7 +93,7 @@ export declare class TabStripComponent implements AfterViewInit, OnDestroy {
|
|
|
93
93
|
*/
|
|
94
94
|
showContentArea: boolean;
|
|
95
95
|
/**
|
|
96
|
-
* Fires each time the user selects a tab ([see example](
|
|
96
|
+
* Fires each time the user selects a tab ([see example](slug:events_tabstrip)).
|
|
97
97
|
* The event data contains the index of the selected tab and its title.
|
|
98
98
|
*/
|
|
99
99
|
tabSelect: EventEmitter<SelectEvent>;
|
|
@@ -22,12 +22,12 @@ export declare class TileLayoutItemComponent implements AfterViewInit, OnDestroy
|
|
|
22
22
|
*/
|
|
23
23
|
title: string;
|
|
24
24
|
/**
|
|
25
|
-
* Determines how many rows will the tile item span ([see example](
|
|
25
|
+
* Determines how many rows will the tile item span ([see example](slug:tiles_tilelayout#toc-programmatic-resizing)).
|
|
26
26
|
* @default 1
|
|
27
27
|
*/
|
|
28
28
|
rowSpan: number;
|
|
29
29
|
/**
|
|
30
|
-
* Determines how many columns will the tile item span ([see example](
|
|
30
|
+
* Determines how many columns will the tile item span ([see example](slug:tiles_tilelayout#toc-programmatic-resizing)).
|
|
31
31
|
* @default 1
|
|
32
32
|
*/
|
|
33
33
|
colSpan: number;
|
|
@@ -53,7 +53,7 @@ export declare class TileLayoutItemComponent implements AfterViewInit, OnDestroy
|
|
|
53
53
|
*/
|
|
54
54
|
reorderable: boolean;
|
|
55
55
|
/**
|
|
56
|
-
* Determines whether the item can be resized. By default all items are resizable when the [resizable]({% slug api_layout_tilelayoutcomponent %}#resizable) property of the TileLayoutComponent is set to `true` ([see example](
|
|
56
|
+
* Determines whether the item can be resized. By default all items are resizable when the [resizable]({% slug api_layout_tilelayoutcomponent %}#resizable) property of the TileLayoutComponent is set to `true` ([see example](slug:resizing_tilelayout#toc-disabling-resizing)).
|
|
57
57
|
* @default true
|
|
58
58
|
*/
|
|
59
59
|
resizable: boolean;
|