@progress/kendo-angular-layout 16.0.0-develop.19 → 16.0.0-develop.20

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.
@@ -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: 1715329074,
13
- version: '16.0.0-develop.19',
12
+ publishDate: 1715338452,
13
+ version: '16.0.0-develop.20',
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
  };
@@ -65,7 +65,7 @@ export class TimelineComponent {
65
65
  this.hostClass = true;
66
66
  /**
67
67
  * Fires when a card is toggled.
68
- * > This event is emitted in vertical mode only.
68
+ * This event is supported only in `vertical` mode.
69
69
  */
70
70
  this.onToggle = new EventEmitter();
71
71
  /**
@@ -74,7 +74,7 @@ export class TimelineComponent {
74
74
  this.onActionClick = new EventEmitter();
75
75
  /**
76
76
  * Fires when the left or right arrow is clicked.
77
- * > This event is emitted in horizontal mode only.
77
+ * This event is supported only in `horizontal` mode.
78
78
  */
79
79
  this.onNavigate = new EventEmitter();
80
80
  this._events = [];
@@ -125,7 +125,7 @@ export class TimelineComponent {
125
125
  }
126
126
  /**
127
127
  * Sets a specific width for the event.
128
- * This setting is supported only in vertical mode.
128
+ * This setting is supported only in `vertical` mode.
129
129
  *
130
130
  * @default 400
131
131
  */
@@ -142,7 +142,7 @@ export class TimelineComponent {
142
142
  }
143
143
  /**
144
144
  * Sets a specific height for the event.
145
- * > This setting is supported only in horizontal mode.
145
+ * This setting is supported only in `horizontal` mode.
146
146
  *
147
147
  * @default 600
148
148
  */
@@ -205,35 +205,35 @@ export class TimelineComponent {
205
205
  }
206
206
  /**
207
207
  * Switches to the previous portion of events.
208
- * > This method is supported only in horizontal mode.
208
+ * This method is supported only in `horizontal` mode.
209
209
  */
210
210
  previous() {
211
211
  this.timelineHorizontal?.previous();
212
212
  }
213
213
  /**
214
214
  * Switches to the next portion of events.
215
- * > This method is supported only in horizontal mode.
215
+ * This method is supported only in `horizontal` mode.
216
216
  */
217
217
  next() {
218
218
  this.timelineHorizontal?.next();
219
219
  }
220
220
  /**
221
221
  * Open event details.
222
- * > This method is supported only in horizontal mode.
222
+ * This method is supported only in `horizontal` mode.
223
223
  */
224
224
  open(index) {
225
225
  this.timelineHorizontal?.open(index);
226
226
  }
227
227
  /**
228
228
  * Expands an event.
229
- * > This method is supported only in vertical mode.
229
+ * This method is supported only in `vertical` mode.
230
230
  */
231
231
  expand(index) {
232
232
  this.timelineVertical?.expand(index);
233
233
  }
234
234
  /**
235
235
  * Collapses an event.
236
- * > This method is supported only in vertical mode.
236
+ * This method is supported only in `vertical` mode.
237
237
  */
238
238
  collapse(index) {
239
239
  this.timelineVertical?.collapse(index);
@@ -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: 1715329074,
37
- version: '16.0.0-develop.19',
36
+ publishDate: 1715338452,
37
+ version: '16.0.0-develop.20',
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
 
@@ -11890,7 +11890,7 @@ class TimelineComponent {
11890
11890
  this.hostClass = true;
11891
11891
  /**
11892
11892
  * Fires when a card is toggled.
11893
- * > This event is emitted in vertical mode only.
11893
+ * This event is supported only in `vertical` mode.
11894
11894
  */
11895
11895
  this.onToggle = new EventEmitter();
11896
11896
  /**
@@ -11899,7 +11899,7 @@ class TimelineComponent {
11899
11899
  this.onActionClick = new EventEmitter();
11900
11900
  /**
11901
11901
  * Fires when the left or right arrow is clicked.
11902
- * > This event is emitted in horizontal mode only.
11902
+ * This event is supported only in `horizontal` mode.
11903
11903
  */
11904
11904
  this.onNavigate = new EventEmitter();
11905
11905
  this._events = [];
@@ -11950,7 +11950,7 @@ class TimelineComponent {
11950
11950
  }
11951
11951
  /**
11952
11952
  * Sets a specific width for the event.
11953
- * This setting is supported only in vertical mode.
11953
+ * This setting is supported only in `vertical` mode.
11954
11954
  *
11955
11955
  * @default 400
11956
11956
  */
@@ -11967,7 +11967,7 @@ class TimelineComponent {
11967
11967
  }
11968
11968
  /**
11969
11969
  * Sets a specific height for the event.
11970
- * > This setting is supported only in horizontal mode.
11970
+ * This setting is supported only in `horizontal` mode.
11971
11971
  *
11972
11972
  * @default 600
11973
11973
  */
@@ -12030,7 +12030,7 @@ class TimelineComponent {
12030
12030
  }
12031
12031
  /**
12032
12032
  * Switches to the previous portion of events.
12033
- * > This method is supported only in horizontal mode.
12033
+ * This method is supported only in `horizontal` mode.
12034
12034
  */
12035
12035
  previous() {
12036
12036
  var _a;
@@ -12038,7 +12038,7 @@ class TimelineComponent {
12038
12038
  }
12039
12039
  /**
12040
12040
  * Switches to the next portion of events.
12041
- * > This method is supported only in horizontal mode.
12041
+ * This method is supported only in `horizontal` mode.
12042
12042
  */
12043
12043
  next() {
12044
12044
  var _a;
@@ -12046,7 +12046,7 @@ class TimelineComponent {
12046
12046
  }
12047
12047
  /**
12048
12048
  * Open event details.
12049
- * > This method is supported only in horizontal mode.
12049
+ * This method is supported only in `horizontal` mode.
12050
12050
  */
12051
12051
  open(index) {
12052
12052
  var _a;
@@ -12054,7 +12054,7 @@ class TimelineComponent {
12054
12054
  }
12055
12055
  /**
12056
12056
  * Expands an event.
12057
- * > This method is supported only in vertical mode.
12057
+ * This method is supported only in `vertical` mode.
12058
12058
  */
12059
12059
  expand(index) {
12060
12060
  var _a;
@@ -12062,7 +12062,7 @@ class TimelineComponent {
12062
12062
  }
12063
12063
  /**
12064
12064
  * Collapses an event.
12065
- * > This method is supported only in vertical mode.
12065
+ * This method is supported only in `vertical` mode.
12066
12066
  */
12067
12067
  collapse(index) {
12068
12068
  var _a;
@@ -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: 1715329074,
37
- version: '16.0.0-develop.19',
36
+ publishDate: 1715338452,
37
+ version: '16.0.0-develop.20',
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
 
@@ -11843,7 +11843,7 @@ class TimelineComponent {
11843
11843
  this.hostClass = true;
11844
11844
  /**
11845
11845
  * Fires when a card is toggled.
11846
- * > This event is emitted in vertical mode only.
11846
+ * This event is supported only in `vertical` mode.
11847
11847
  */
11848
11848
  this.onToggle = new EventEmitter();
11849
11849
  /**
@@ -11852,7 +11852,7 @@ class TimelineComponent {
11852
11852
  this.onActionClick = new EventEmitter();
11853
11853
  /**
11854
11854
  * Fires when the left or right arrow is clicked.
11855
- * > This event is emitted in horizontal mode only.
11855
+ * This event is supported only in `horizontal` mode.
11856
11856
  */
11857
11857
  this.onNavigate = new EventEmitter();
11858
11858
  this._events = [];
@@ -11903,7 +11903,7 @@ class TimelineComponent {
11903
11903
  }
11904
11904
  /**
11905
11905
  * Sets a specific width for the event.
11906
- * This setting is supported only in vertical mode.
11906
+ * This setting is supported only in `vertical` mode.
11907
11907
  *
11908
11908
  * @default 400
11909
11909
  */
@@ -11920,7 +11920,7 @@ class TimelineComponent {
11920
11920
  }
11921
11921
  /**
11922
11922
  * Sets a specific height for the event.
11923
- * > This setting is supported only in horizontal mode.
11923
+ * This setting is supported only in `horizontal` mode.
11924
11924
  *
11925
11925
  * @default 600
11926
11926
  */
@@ -11983,35 +11983,35 @@ class TimelineComponent {
11983
11983
  }
11984
11984
  /**
11985
11985
  * Switches to the previous portion of events.
11986
- * > This method is supported only in horizontal mode.
11986
+ * This method is supported only in `horizontal` mode.
11987
11987
  */
11988
11988
  previous() {
11989
11989
  this.timelineHorizontal?.previous();
11990
11990
  }
11991
11991
  /**
11992
11992
  * Switches to the next portion of events.
11993
- * > This method is supported only in horizontal mode.
11993
+ * This method is supported only in `horizontal` mode.
11994
11994
  */
11995
11995
  next() {
11996
11996
  this.timelineHorizontal?.next();
11997
11997
  }
11998
11998
  /**
11999
11999
  * Open event details.
12000
- * > This method is supported only in horizontal mode.
12000
+ * This method is supported only in `horizontal` mode.
12001
12001
  */
12002
12002
  open(index) {
12003
12003
  this.timelineHorizontal?.open(index);
12004
12004
  }
12005
12005
  /**
12006
12006
  * Expands an event.
12007
- * > This method is supported only in vertical mode.
12007
+ * This method is supported only in `vertical` mode.
12008
12008
  */
12009
12009
  expand(index) {
12010
12010
  this.timelineVertical?.expand(index);
12011
12011
  }
12012
12012
  /**
12013
12013
  * Collapses an event.
12014
- * > This method is supported only in vertical mode.
12014
+ * This method is supported only in `vertical` mode.
12015
12015
  */
12016
12016
  collapse(index) {
12017
12017
  this.timelineVertical?.collapse(index);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "16.0.0-develop.19",
3
+ "version": "16.0.0-develop.20",
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,16 +39,16 @@
39
39
  "@angular/core": "15 - 17",
40
40
  "@angular/platform-browser": "15 - 17",
41
41
  "@progress/kendo-licensing": "^1.0.2",
42
- "@progress/kendo-angular-common": "16.0.0-develop.19",
43
- "@progress/kendo-angular-l10n": "16.0.0-develop.19",
44
- "@progress/kendo-angular-progressbar": "16.0.0-develop.19",
45
- "@progress/kendo-angular-icons": "16.0.0-develop.19",
46
- "@progress/kendo-angular-buttons": "16.0.0-develop.19",
42
+ "@progress/kendo-angular-common": "16.0.0-develop.20",
43
+ "@progress/kendo-angular-l10n": "16.0.0-develop.20",
44
+ "@progress/kendo-angular-progressbar": "16.0.0-develop.20",
45
+ "@progress/kendo-angular-icons": "16.0.0-develop.20",
46
+ "@progress/kendo-angular-buttons": "16.0.0-develop.20",
47
47
  "rxjs": "^6.5.3 || ^7.0.0"
48
48
  },
49
49
  "dependencies": {
50
50
  "tslib": "^2.3.1",
51
- "@progress/kendo-angular-schematics": "16.0.0-develop.19",
51
+ "@progress/kendo-angular-schematics": "16.0.0-develop.20",
52
52
  "@progress/kendo-draggable": "^3.0.2"
53
53
  },
54
54
  "schematics": "./schematics/collection.json",
@@ -60,16 +60,15 @@ export declare class TimelineComponent implements AfterContentInit, OnDestroy {
60
60
  */
61
61
  showDateLabels: boolean;
62
62
  /**
63
- * Specifies the time for sliding to the next event in horizontal mode and the time for collapsing the event in vertical mode. The default value are:
64
- * > 300ms for horizontal
65
- * > 400ms for vertical
63
+ * Specifies the time for sliding to the next event in `horizontal` mode and the time for collapsing the event in `vertical` mode.
64
+ * The default animation duration values are `300ms` for `horizontal` mode and `400ms` for `vertical` mode.
66
65
  *
67
66
  * @default true
68
67
  */
69
68
  animation: boolean | number;
70
69
  /**
71
70
  * Sets a specific width for the event.
72
- * This setting is supported only in vertical mode.
71
+ * This setting is supported only in `vertical` mode.
73
72
  *
74
73
  * @default 400
75
74
  */
@@ -77,7 +76,7 @@ export declare class TimelineComponent implements AfterContentInit, OnDestroy {
77
76
  set eventWidth(value: number);
78
77
  /**
79
78
  * Sets a specific height for the event.
80
- * > This setting is supported only in horizontal mode.
79
+ * This setting is supported only in `horizontal` mode.
81
80
  *
82
81
  * @default 600
83
82
  */
@@ -121,7 +120,7 @@ export declare class TimelineComponent implements AfterContentInit, OnDestroy {
121
120
  cardActionsTemplate: QueryList<TimelineCardActionsTemplateDirective>;
122
121
  /**
123
122
  * Fires when a card is toggled.
124
- * > This event is emitted in vertical mode only.
123
+ * This event is supported only in `vertical` mode.
125
124
  */
126
125
  onToggle: EventEmitter<number>;
127
126
  /**
@@ -130,7 +129,7 @@ export declare class TimelineComponent implements AfterContentInit, OnDestroy {
130
129
  onActionClick: EventEmitter<number>;
131
130
  /**
132
131
  * Fires when the left or right arrow is clicked.
133
- * > This event is emitted in horizontal mode only.
132
+ * This event is supported only in `horizontal` mode.
134
133
  */
135
134
  onNavigate: EventEmitter<NavigationDirection>;
136
135
  /**
@@ -157,27 +156,27 @@ export declare class TimelineComponent implements AfterContentInit, OnDestroy {
157
156
  ngOnDestroy(): void;
158
157
  /**
159
158
  * Switches to the previous portion of events.
160
- * > This method is supported only in horizontal mode.
159
+ * This method is supported only in `horizontal` mode.
161
160
  */
162
161
  previous(): void;
163
162
  /**
164
163
  * Switches to the next portion of events.
165
- * > This method is supported only in horizontal mode.
164
+ * This method is supported only in `horizontal` mode.
166
165
  */
167
166
  next(): void;
168
167
  /**
169
168
  * Open event details.
170
- * > This method is supported only in horizontal mode.
169
+ * This method is supported only in `horizontal` mode.
171
170
  */
172
171
  open(index: number): void;
173
172
  /**
174
173
  * Expands an event.
175
- * > This method is supported only in vertical mode.
174
+ * This method is supported only in `vertical` mode.
176
175
  */
177
176
  expand(index: number): void;
178
177
  /**
179
178
  * Collapses an event.
180
- * > This method is supported only in vertical mode.
179
+ * This method is supported only in `vertical` mode.
181
180
  */
182
181
  collapse(index: number): void;
183
182
  private initTemplates;