@progress/kendo-angular-layout 16.0.0-develop.12 → 16.0.0-develop.13
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/esm2020/package-metadata.mjs +2 -2
- package/esm2020/timeline/timeline-card.component.mjs +0 -2
- package/esm2020/timeline/timeline-horizontal.component.mjs +1 -0
- package/esm2020/timeline/timeline.component.mjs +3 -3
- package/fesm2015/progress-kendo-angular-layout.mjs +6 -7
- package/fesm2020/progress-kendo-angular-layout.mjs +6 -7
- package/package.json +7 -7
- package/timeline/timeline.component.d.ts +1 -1
|
@@ -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.0.0-develop.
|
|
12
|
+
publishDate: 1715097662,
|
|
13
|
+
version: '16.0.0-develop.13',
|
|
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
|
};
|
|
@@ -138,7 +138,6 @@ TimelineCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
138
138
|
>
|
|
139
139
|
<span
|
|
140
140
|
#callout
|
|
141
|
-
*ngIf="event"
|
|
142
141
|
class="k-timeline-card-callout k-card-callout"
|
|
143
142
|
[ngClass]="{
|
|
144
143
|
'k-callout-n': orientation === 'horizontal',
|
|
@@ -273,7 +272,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImpor
|
|
|
273
272
|
>
|
|
274
273
|
<span
|
|
275
274
|
#callout
|
|
276
|
-
*ngIf="event"
|
|
277
275
|
class="k-timeline-card-callout k-card-callout"
|
|
278
276
|
[ngClass]="{
|
|
279
277
|
'k-callout-n': orientation === 'horizontal',
|
|
@@ -41,9 +41,9 @@ export class TimelineComponent {
|
|
|
41
41
|
* Specifies whether to render events alternatingly on both sides of the axis.
|
|
42
42
|
* Applicable when `orientation` is set to `vertical`.
|
|
43
43
|
*
|
|
44
|
-
* @default
|
|
44
|
+
* @default false
|
|
45
45
|
*/
|
|
46
|
-
this.alterMode =
|
|
46
|
+
this.alterMode = false;
|
|
47
47
|
/**
|
|
48
48
|
* Specifies whether the event cards can be collapsed.
|
|
49
49
|
*
|
|
@@ -164,7 +164,7 @@ export class TimelineComponent {
|
|
|
164
164
|
if (typeof this.animation === 'number') {
|
|
165
165
|
return this.animation;
|
|
166
166
|
}
|
|
167
|
-
if (typeof this.animation === 'boolean' && this.animation) {
|
|
167
|
+
if ((typeof this.animation === 'boolean' && this.animation) || !isPresent(this.animation)) {
|
|
168
168
|
return this.orientation === 'horizontal' ? DEFAULT_HORIZONTAL_ANIMATION_DURATION : DEFAULT_VERTICAL_ANIMATION_DURATION;
|
|
169
169
|
}
|
|
170
170
|
return 0;
|
|
@@ -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.0.0-develop.
|
|
36
|
+
publishDate: 1715097662,
|
|
37
|
+
version: '16.0.0-develop.13',
|
|
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
|
|
|
@@ -10586,7 +10586,6 @@ TimelineCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
10586
10586
|
>
|
|
10587
10587
|
<span
|
|
10588
10588
|
#callout
|
|
10589
|
-
*ngIf="event"
|
|
10590
10589
|
class="k-timeline-card-callout k-card-callout"
|
|
10591
10590
|
[ngClass]="{
|
|
10592
10591
|
'k-callout-n': orientation === 'horizontal',
|
|
@@ -10721,7 +10720,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImpor
|
|
|
10721
10720
|
>
|
|
10722
10721
|
<span
|
|
10723
10722
|
#callout
|
|
10724
|
-
*ngIf="event"
|
|
10725
10723
|
class="k-timeline-card-callout k-card-callout"
|
|
10726
10724
|
[ngClass]="{
|
|
10727
10725
|
'k-callout-n': orientation === 'horizontal',
|
|
@@ -11107,6 +11105,7 @@ class TimelineHorizontalComponent {
|
|
|
11107
11105
|
if (!this.navigable) {
|
|
11108
11106
|
return;
|
|
11109
11107
|
}
|
|
11108
|
+
event.preventDefault();
|
|
11110
11109
|
if (event.keyCode === Keys.Home) {
|
|
11111
11110
|
this.onHomeKey();
|
|
11112
11111
|
}
|
|
@@ -11867,9 +11866,9 @@ class TimelineComponent {
|
|
|
11867
11866
|
* Specifies whether to render events alternatingly on both sides of the axis.
|
|
11868
11867
|
* Applicable when `orientation` is set to `vertical`.
|
|
11869
11868
|
*
|
|
11870
|
-
* @default
|
|
11869
|
+
* @default false
|
|
11871
11870
|
*/
|
|
11872
|
-
this.alterMode =
|
|
11871
|
+
this.alterMode = false;
|
|
11873
11872
|
/**
|
|
11874
11873
|
* Specifies whether the event cards can be collapsed.
|
|
11875
11874
|
*
|
|
@@ -11990,7 +11989,7 @@ class TimelineComponent {
|
|
|
11990
11989
|
if (typeof this.animation === 'number') {
|
|
11991
11990
|
return this.animation;
|
|
11992
11991
|
}
|
|
11993
|
-
if (typeof this.animation === 'boolean' && this.animation) {
|
|
11992
|
+
if ((typeof this.animation === 'boolean' && this.animation) || !isPresent$1(this.animation)) {
|
|
11994
11993
|
return this.orientation === 'horizontal' ? DEFAULT_HORIZONTAL_ANIMATION_DURATION : DEFAULT_VERTICAL_ANIMATION_DURATION;
|
|
11995
11994
|
}
|
|
11996
11995
|
return 0;
|
|
@@ -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.0.0-develop.
|
|
36
|
+
publishDate: 1715097662,
|
|
37
|
+
version: '16.0.0-develop.13',
|
|
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
|
|
|
@@ -10625,7 +10625,6 @@ TimelineCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
10625
10625
|
>
|
|
10626
10626
|
<span
|
|
10627
10627
|
#callout
|
|
10628
|
-
*ngIf="event"
|
|
10629
10628
|
class="k-timeline-card-callout k-card-callout"
|
|
10630
10629
|
[ngClass]="{
|
|
10631
10630
|
'k-callout-n': orientation === 'horizontal',
|
|
@@ -10760,7 +10759,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImpor
|
|
|
10760
10759
|
>
|
|
10761
10760
|
<span
|
|
10762
10761
|
#callout
|
|
10763
|
-
*ngIf="event"
|
|
10764
10762
|
class="k-timeline-card-callout k-card-callout"
|
|
10765
10763
|
[ngClass]="{
|
|
10766
10764
|
'k-callout-n': orientation === 'horizontal',
|
|
@@ -11141,6 +11139,7 @@ class TimelineHorizontalComponent {
|
|
|
11141
11139
|
if (!this.navigable) {
|
|
11142
11140
|
return;
|
|
11143
11141
|
}
|
|
11142
|
+
event.preventDefault();
|
|
11144
11143
|
if (event.keyCode === Keys.Home) {
|
|
11145
11144
|
this.onHomeKey();
|
|
11146
11145
|
}
|
|
@@ -11820,9 +11819,9 @@ class TimelineComponent {
|
|
|
11820
11819
|
* Specifies whether to render events alternatingly on both sides of the axis.
|
|
11821
11820
|
* Applicable when `orientation` is set to `vertical`.
|
|
11822
11821
|
*
|
|
11823
|
-
* @default
|
|
11822
|
+
* @default false
|
|
11824
11823
|
*/
|
|
11825
|
-
this.alterMode =
|
|
11824
|
+
this.alterMode = false;
|
|
11826
11825
|
/**
|
|
11827
11826
|
* Specifies whether the event cards can be collapsed.
|
|
11828
11827
|
*
|
|
@@ -11943,7 +11942,7 @@ class TimelineComponent {
|
|
|
11943
11942
|
if (typeof this.animation === 'number') {
|
|
11944
11943
|
return this.animation;
|
|
11945
11944
|
}
|
|
11946
|
-
if (typeof this.animation === 'boolean' && this.animation) {
|
|
11945
|
+
if ((typeof this.animation === 'boolean' && this.animation) || !isPresent$1(this.animation)) {
|
|
11947
11946
|
return this.orientation === 'horizontal' ? DEFAULT_HORIZONTAL_ANIMATION_DURATION : DEFAULT_VERTICAL_ANIMATION_DURATION;
|
|
11948
11947
|
}
|
|
11949
11948
|
return 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-layout",
|
|
3
|
-
"version": "16.0.0-develop.
|
|
3
|
+
"version": "16.0.0-develop.13",
|
|
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.
|
|
43
|
-
"@progress/kendo-angular-l10n": "16.0.0-develop.
|
|
44
|
-
"@progress/kendo-angular-progressbar": "16.0.0-develop.
|
|
45
|
-
"@progress/kendo-angular-icons": "16.0.0-develop.
|
|
46
|
-
"@progress/kendo-angular-buttons": "16.0.0-develop.
|
|
42
|
+
"@progress/kendo-angular-common": "16.0.0-develop.13",
|
|
43
|
+
"@progress/kendo-angular-l10n": "16.0.0-develop.13",
|
|
44
|
+
"@progress/kendo-angular-progressbar": "16.0.0-develop.13",
|
|
45
|
+
"@progress/kendo-angular-icons": "16.0.0-develop.13",
|
|
46
|
+
"@progress/kendo-angular-buttons": "16.0.0-develop.13",
|
|
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.
|
|
51
|
+
"@progress/kendo-angular-schematics": "16.0.0-develop.13",
|
|
52
52
|
"@progress/kendo-draggable": "^3.0.2"
|
|
53
53
|
},
|
|
54
54
|
"schematics": "./schematics/collection.json",
|
|
@@ -38,7 +38,7 @@ export declare class TimelineComponent implements AfterContentInit, OnDestroy {
|
|
|
38
38
|
* Specifies whether to render events alternatingly on both sides of the axis.
|
|
39
39
|
* Applicable when `orientation` is set to `vertical`.
|
|
40
40
|
*
|
|
41
|
-
* @default
|
|
41
|
+
* @default false
|
|
42
42
|
*/
|
|
43
43
|
alterMode: boolean;
|
|
44
44
|
/**
|