@progress/kendo-angular-layout 7.1.5-dev.202210131323 → 7.1.5-dev.202210191350
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:
|
|
12
|
+
publishDate: 1666187359,
|
|
13
13
|
version: '',
|
|
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
|
};
|
|
@@ -278,17 +278,20 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
278
278
|
[ngClass]="{'k-i-chevron-up k-panelbar-collapse': expanded, 'k-i-chevron-down k-panelbar-expand': !expanded}">
|
|
279
279
|
</span>
|
|
280
280
|
</span>
|
|
281
|
-
<div
|
|
281
|
+
<div
|
|
282
|
+
#contentWrapper
|
|
282
283
|
*ngIf="keepContent || (!disabled && expanded && (hasChildItems || hasContent))"
|
|
283
284
|
[@toggle]="state"
|
|
284
285
|
[attr.role]="'group'"
|
|
285
|
-
[attr.aria-hidden]="!disabled && !expanded"
|
|
286
|
+
[attr.aria-hidden]="!disabled && !expanded"
|
|
287
|
+
>
|
|
286
288
|
<div
|
|
287
289
|
*ngIf="hasChildItems && !items?.length"
|
|
288
290
|
[style.overflow]="contentOverflow"
|
|
289
291
|
[style.height]="contentHeight"
|
|
290
|
-
class="k-panel k-group k-panelbar-group"
|
|
291
|
-
|
|
292
|
+
class="k-panel k-group k-panelbar-group"
|
|
293
|
+
>
|
|
294
|
+
<ng-content select="kendo-panelbar-item"></ng-content>
|
|
292
295
|
</div>
|
|
293
296
|
<div
|
|
294
297
|
*ngIf="hasContent && !content"
|
|
@@ -420,17 +423,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
420
423
|
[ngClass]="{'k-i-chevron-up k-panelbar-collapse': expanded, 'k-i-chevron-down k-panelbar-expand': !expanded}">
|
|
421
424
|
</span>
|
|
422
425
|
</span>
|
|
423
|
-
<div
|
|
426
|
+
<div
|
|
427
|
+
#contentWrapper
|
|
424
428
|
*ngIf="keepContent || (!disabled && expanded && (hasChildItems || hasContent))"
|
|
425
429
|
[@toggle]="state"
|
|
426
430
|
[attr.role]="'group'"
|
|
427
|
-
[attr.aria-hidden]="!disabled && !expanded"
|
|
431
|
+
[attr.aria-hidden]="!disabled && !expanded"
|
|
432
|
+
>
|
|
428
433
|
<div
|
|
429
434
|
*ngIf="hasChildItems && !items?.length"
|
|
430
435
|
[style.overflow]="contentOverflow"
|
|
431
436
|
[style.height]="contentHeight"
|
|
432
|
-
class="k-panel k-group k-panelbar-group"
|
|
433
|
-
|
|
437
|
+
class="k-panel k-group k-panelbar-group"
|
|
438
|
+
>
|
|
439
|
+
<ng-content select="kendo-panelbar-item"></ng-content>
|
|
434
440
|
</div>
|
|
435
441
|
<div
|
|
436
442
|
*ngIf="hasContent && !content"
|
|
@@ -221,7 +221,7 @@ export class StepperComponent {
|
|
|
221
221
|
}
|
|
222
222
|
}
|
|
223
223
|
StepperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: StepperComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i1.LocalizationService }, { token: i2.StepperService }], target: i0.ɵɵFactoryTarget.Component });
|
|
224
|
-
StepperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: StepperComponent, selector: "kendo-stepper", inputs: { stepType: "stepType", linear: "linear", orientation: "orientation", currentStep: "currentStep", steps: "steps", successIcon: "successIcon", errorIcon: "errorIcon", animation: "animation" }, outputs: { activate: "activate", currentStepChange: "currentStepChange" }, host: { properties: { "class.k-
|
|
224
|
+
StepperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: StepperComponent, selector: "kendo-stepper", inputs: { stepType: "stepType", linear: "linear", orientation: "orientation", currentStep: "currentStep", steps: "steps", successIcon: "successIcon", errorIcon: "errorIcon", animation: "animation" }, outputs: { activate: "activate", currentStepChange: "currentStepChange" }, host: { properties: { "class.k-stepper": "this.hostClasses", "class.k-stepper-linear": "this.linearClass", "attr.role": "this.ariaRole", "attr.dir": "this.direction", "style.display": "this.displayStyle" } }, providers: [
|
|
225
225
|
LocalizationService,
|
|
226
226
|
StepperService,
|
|
227
227
|
{
|
|
@@ -315,9 +315,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
315
315
|
`
|
|
316
316
|
}]
|
|
317
317
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i1.LocalizationService }, { type: i2.StepperService }]; }, propDecorators: { hostClasses: [{
|
|
318
|
-
type: HostBinding,
|
|
319
|
-
args: ['class.k-widget']
|
|
320
|
-
}, {
|
|
321
318
|
type: HostBinding,
|
|
322
319
|
args: ['class.k-stepper']
|
|
323
320
|
}], linearClass: [{
|
|
@@ -26,7 +26,7 @@ const packageMetadata = {
|
|
|
26
26
|
name: '@progress/kendo-angular-layout',
|
|
27
27
|
productName: 'Kendo UI for Angular',
|
|
28
28
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
29
|
-
publishDate:
|
|
29
|
+
publishDate: 1666187359,
|
|
30
30
|
version: '',
|
|
31
31
|
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'
|
|
32
32
|
};
|
|
@@ -544,17 +544,20 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
544
544
|
[ngClass]="{'k-i-chevron-up k-panelbar-collapse': expanded, 'k-i-chevron-down k-panelbar-expand': !expanded}">
|
|
545
545
|
</span>
|
|
546
546
|
</span>
|
|
547
|
-
<div
|
|
547
|
+
<div
|
|
548
|
+
#contentWrapper
|
|
548
549
|
*ngIf="keepContent || (!disabled && expanded && (hasChildItems || hasContent))"
|
|
549
550
|
[@toggle]="state"
|
|
550
551
|
[attr.role]="'group'"
|
|
551
|
-
[attr.aria-hidden]="!disabled && !expanded"
|
|
552
|
+
[attr.aria-hidden]="!disabled && !expanded"
|
|
553
|
+
>
|
|
552
554
|
<div
|
|
553
555
|
*ngIf="hasChildItems && !items?.length"
|
|
554
556
|
[style.overflow]="contentOverflow"
|
|
555
557
|
[style.height]="contentHeight"
|
|
556
|
-
class="k-panel k-group k-panelbar-group"
|
|
557
|
-
|
|
558
|
+
class="k-panel k-group k-panelbar-group"
|
|
559
|
+
>
|
|
560
|
+
<ng-content select="kendo-panelbar-item"></ng-content>
|
|
558
561
|
</div>
|
|
559
562
|
<div
|
|
560
563
|
*ngIf="hasContent && !content"
|
|
@@ -686,17 +689,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
686
689
|
[ngClass]="{'k-i-chevron-up k-panelbar-collapse': expanded, 'k-i-chevron-down k-panelbar-expand': !expanded}">
|
|
687
690
|
</span>
|
|
688
691
|
</span>
|
|
689
|
-
<div
|
|
692
|
+
<div
|
|
693
|
+
#contentWrapper
|
|
690
694
|
*ngIf="keepContent || (!disabled && expanded && (hasChildItems || hasContent))"
|
|
691
695
|
[@toggle]="state"
|
|
692
696
|
[attr.role]="'group'"
|
|
693
|
-
[attr.aria-hidden]="!disabled && !expanded"
|
|
697
|
+
[attr.aria-hidden]="!disabled && !expanded"
|
|
698
|
+
>
|
|
694
699
|
<div
|
|
695
700
|
*ngIf="hasChildItems && !items?.length"
|
|
696
701
|
[style.overflow]="contentOverflow"
|
|
697
702
|
[style.height]="contentHeight"
|
|
698
|
-
class="k-panel k-group k-panelbar-group"
|
|
699
|
-
|
|
703
|
+
class="k-panel k-group k-panelbar-group"
|
|
704
|
+
>
|
|
705
|
+
<ng-content select="kendo-panelbar-item"></ng-content>
|
|
700
706
|
</div>
|
|
701
707
|
<div
|
|
702
708
|
*ngIf="hasContent && !content"
|
|
@@ -5893,7 +5899,7 @@ class StepperComponent {
|
|
|
5893
5899
|
}
|
|
5894
5900
|
}
|
|
5895
5901
|
StepperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: StepperComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i1.LocalizationService }, { token: StepperService }], target: i0.ɵɵFactoryTarget.Component });
|
|
5896
|
-
StepperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: StepperComponent, selector: "kendo-stepper", inputs: { stepType: "stepType", linear: "linear", orientation: "orientation", currentStep: "currentStep", steps: "steps", successIcon: "successIcon", errorIcon: "errorIcon", animation: "animation" }, outputs: { activate: "activate", currentStepChange: "currentStepChange" }, host: { properties: { "class.k-
|
|
5902
|
+
StepperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: StepperComponent, selector: "kendo-stepper", inputs: { stepType: "stepType", linear: "linear", orientation: "orientation", currentStep: "currentStep", steps: "steps", successIcon: "successIcon", errorIcon: "errorIcon", animation: "animation" }, outputs: { activate: "activate", currentStepChange: "currentStepChange" }, host: { properties: { "class.k-stepper": "this.hostClasses", "class.k-stepper-linear": "this.linearClass", "attr.role": "this.ariaRole", "attr.dir": "this.direction", "style.display": "this.displayStyle" } }, providers: [
|
|
5897
5903
|
LocalizationService,
|
|
5898
5904
|
StepperService,
|
|
5899
5905
|
{
|
|
@@ -5987,9 +5993,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
5987
5993
|
`
|
|
5988
5994
|
}]
|
|
5989
5995
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i1.LocalizationService }, { type: StepperService }]; }, propDecorators: { hostClasses: [{
|
|
5990
|
-
type: HostBinding,
|
|
5991
|
-
args: ['class.k-widget']
|
|
5992
|
-
}, {
|
|
5993
5996
|
type: HostBinding,
|
|
5994
5997
|
args: ['class.k-stepper']
|
|
5995
5998
|
}], linearClass: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-layout",
|
|
3
|
-
"version": "7.1.5-dev.
|
|
3
|
+
"version": "7.1.5-dev.202210191350",
|
|
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",
|