@progress/kendo-angular-layout 13.0.0-develop.9 → 13.0.1-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/esm2020/expansionpanel/expansionpanel.component.mjs +7 -9
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/panelbar/panelbar-item.component.mjs +5 -13
- package/esm2020/stepper/step.component.mjs +1 -1
- package/esm2020/tabstrip/scrollable-button.component.mjs +1 -1
- package/expansionpanel/expansionpanel.component.d.ts +1 -1
- package/fesm2015/progress-kendo-angular-layout.mjs +14 -25
- package/fesm2020/progress-kendo-angular-layout.mjs +14 -25
- package/package.json +7 -7
- package/panelbar/panelbar-item.component.d.ts +1 -9
|
@@ -15,6 +15,7 @@ import { validatePackage } from '@progress/kendo-licensing';
|
|
|
15
15
|
import { packageMetadata } from '../package-metadata';
|
|
16
16
|
import { ExpansionPanelActionEvent } from './events/action-event';
|
|
17
17
|
import { take } from 'rxjs/operators';
|
|
18
|
+
import { caretAltDownIcon, caretAltUpIcon } from '@progress/kendo-svg-icons';
|
|
18
19
|
import * as i0 from "@angular/core";
|
|
19
20
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
20
21
|
import * as i2 from "@angular/animations";
|
|
@@ -102,6 +103,8 @@ export class ExpansionPanelComponent {
|
|
|
102
103
|
this.animationEnd = new EventEmitter();
|
|
103
104
|
this.subscriptions = new Subscription();
|
|
104
105
|
this._expanded = false;
|
|
106
|
+
this._svgExpandIcon = caretAltDownIcon;
|
|
107
|
+
this._svgCollapseIcon = caretAltUpIcon;
|
|
105
108
|
validatePackage(packageMetadata);
|
|
106
109
|
this.direction = localizationService.rtl ? 'rtl' : 'ltr';
|
|
107
110
|
}
|
|
@@ -257,13 +260,8 @@ export class ExpansionPanelComponent {
|
|
|
257
260
|
/**
|
|
258
261
|
* @hidden
|
|
259
262
|
*/
|
|
260
|
-
get
|
|
261
|
-
|
|
262
|
-
return this.svgCollapseIcon ? this.svgCollapseIcon : undefined;
|
|
263
|
-
}
|
|
264
|
-
else {
|
|
265
|
-
return this.svgExpandIcon ? this.svgExpandIcon : undefined;
|
|
266
|
-
}
|
|
263
|
+
get expanderSvgIcon() {
|
|
264
|
+
return this.expanded ? this.svgCollapseIcon : this.svgExpandIcon;
|
|
267
265
|
}
|
|
268
266
|
/**
|
|
269
267
|
* Toggles the visibility of the ExpansionPanel
|
|
@@ -375,7 +373,7 @@ ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
375
373
|
<kendo-icon-wrapper
|
|
376
374
|
[name]="expanderIndicatorClasses"
|
|
377
375
|
[customFontClass]="customExpanderIndicatorClasses"
|
|
378
|
-
[svgIcon]="
|
|
376
|
+
[svgIcon]="expanderSvgIcon"
|
|
379
377
|
>
|
|
380
378
|
</kendo-icon-wrapper>
|
|
381
379
|
</span>
|
|
@@ -425,7 +423,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
425
423
|
<kendo-icon-wrapper
|
|
426
424
|
[name]="expanderIndicatorClasses"
|
|
427
425
|
[customFontClass]="customExpanderIndicatorClasses"
|
|
428
|
-
[svgIcon]="
|
|
426
|
+
[svgIcon]="expanderSvgIcon"
|
|
429
427
|
>
|
|
430
428
|
</kendo-icon-wrapper>
|
|
431
429
|
</span>
|
|
@@ -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: '13.0.
|
|
12
|
+
publishDate: 1686070586,
|
|
13
|
+
version: '13.0.1-develop.1',
|
|
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
|
};
|
|
@@ -11,7 +11,7 @@ import { PanelBarItemTitleDirective } from "./panelbar-item-title.directive";
|
|
|
11
11
|
import { isFocusable } from '../common/dom-queries';
|
|
12
12
|
import { Subscription } from 'rxjs';
|
|
13
13
|
import { PanelBarExpandMode } from './panelbar-expand-mode';
|
|
14
|
-
import {
|
|
14
|
+
import { chevronDownIcon, chevronUpIcon } from '@progress/kendo-svg-icons';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
import * as i1 from "./panelbar.service";
|
|
17
17
|
import * as i2 from "@progress/kendo-angular-icons";
|
|
@@ -64,14 +64,6 @@ export class PanelBarItemComponent {
|
|
|
64
64
|
this.role = "treeitem";
|
|
65
65
|
this.titleAttribute = null; // eslint-disable-line
|
|
66
66
|
this.kItemClass = true;
|
|
67
|
-
/**
|
|
68
|
-
* @hidden
|
|
69
|
-
*/
|
|
70
|
-
this.arrowUpSVGIcon = arrowUpIcon;
|
|
71
|
-
/**
|
|
72
|
-
* @hidden
|
|
73
|
-
*/
|
|
74
|
-
this.arrowDownSVGIcon = arrowDownIcon;
|
|
75
67
|
this.focused = false;
|
|
76
68
|
this.wrapperFocused = false;
|
|
77
69
|
this.subscriptions = new Subscription(() => { });
|
|
@@ -207,8 +199,8 @@ export class PanelBarItemComponent {
|
|
|
207
199
|
/**
|
|
208
200
|
* @hidden
|
|
209
201
|
*/
|
|
210
|
-
get
|
|
211
|
-
return this.expanded ?
|
|
202
|
+
get expanderSVGIcon() {
|
|
203
|
+
return this.expanded ? chevronUpIcon : chevronDownIcon;
|
|
212
204
|
}
|
|
213
205
|
/**
|
|
214
206
|
* @hidden
|
|
@@ -326,7 +318,7 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
326
318
|
<kendo-icon-wrapper
|
|
327
319
|
*ngIf="hasChildItems || hasContent"
|
|
328
320
|
[name]="expanded ? 'arrow-chevron-up' : 'chevron-down'"
|
|
329
|
-
[svgIcon]="
|
|
321
|
+
[svgIcon]="expanderSVGIcon"
|
|
330
322
|
[innerCssClass]="dirInnerCssClasses"
|
|
331
323
|
>
|
|
332
324
|
</kendo-icon-wrapper>
|
|
@@ -479,7 +471,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
479
471
|
<kendo-icon-wrapper
|
|
480
472
|
*ngIf="hasChildItems || hasContent"
|
|
481
473
|
[name]="expanded ? 'arrow-chevron-up' : 'chevron-down'"
|
|
482
|
-
[svgIcon]="
|
|
474
|
+
[svgIcon]="expanderSVGIcon"
|
|
483
475
|
[innerCssClass]="dirInnerCssClasses"
|
|
484
476
|
>
|
|
485
477
|
</kendo-icon-wrapper>
|
|
@@ -120,7 +120,7 @@ export class StepperStepComponent {
|
|
|
120
120
|
if (this.shouldCheckValidity) {
|
|
121
121
|
return true;
|
|
122
122
|
}
|
|
123
|
-
if (this.step.icon || this.step.iconClass) {
|
|
123
|
+
if (this.step.icon || this.step.iconClass || this.step.svgIcon) {
|
|
124
124
|
return true;
|
|
125
125
|
}
|
|
126
126
|
return false;
|
|
@@ -8,7 +8,7 @@ import { Subscription } from 'rxjs';
|
|
|
8
8
|
import { DIRECTION_CLASSES, HIDDEN_CLASS } from './constants';
|
|
9
9
|
import { isTablistHorizontal } from './util';
|
|
10
10
|
import { TabScrollEvent } from './events/tabscroll-event';
|
|
11
|
-
import { caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon
|
|
11
|
+
import { caretAltDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon } from '@progress/kendo-svg-icons';
|
|
12
12
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
14
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
@@ -159,7 +159,7 @@ export declare class ExpansionPanelComponent implements OnInit, AfterViewInit, O
|
|
|
159
159
|
/**
|
|
160
160
|
* @hidden
|
|
161
161
|
*/
|
|
162
|
-
get
|
|
162
|
+
get expanderSvgIcon(): SVGIcon;
|
|
163
163
|
/**
|
|
164
164
|
* Toggles the visibility of the ExpansionPanel
|
|
165
165
|
* ([see example]({% slug interaction_expansionpanel %}#toc-toggling-the-content)).
|
|
@@ -12,7 +12,7 @@ import { validatePackage } from '@progress/kendo-licensing';
|
|
|
12
12
|
import * as i1$2 from '@angular/animations';
|
|
13
13
|
import { trigger, state, style, transition, animate, AUTO_STYLE } from '@angular/animations';
|
|
14
14
|
import { Subject, BehaviorSubject, Subscription, of } from 'rxjs';
|
|
15
|
-
import {
|
|
15
|
+
import { chevronUpIcon, chevronDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon, caretAltDownIcon, xIcon, checkCircleIcon, exclamationCircleIcon } from '@progress/kendo-svg-icons';
|
|
16
16
|
import * as i2 from '@progress/kendo-angular-icons';
|
|
17
17
|
import { IconsModule } from '@progress/kendo-angular-icons';
|
|
18
18
|
import * as i3 from '@angular/common';
|
|
@@ -31,8 +31,8 @@ const packageMetadata = {
|
|
|
31
31
|
name: '@progress/kendo-angular-layout',
|
|
32
32
|
productName: 'Kendo UI for Angular',
|
|
33
33
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
34
|
-
publishDate:
|
|
35
|
-
version: '13.0.
|
|
34
|
+
publishDate: 1686070586,
|
|
35
|
+
version: '13.0.1-develop.1',
|
|
36
36
|
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'
|
|
37
37
|
};
|
|
38
38
|
|
|
@@ -334,14 +334,6 @@ class PanelBarItemComponent {
|
|
|
334
334
|
this.role = "treeitem";
|
|
335
335
|
this.titleAttribute = null; // eslint-disable-line
|
|
336
336
|
this.kItemClass = true;
|
|
337
|
-
/**
|
|
338
|
-
* @hidden
|
|
339
|
-
*/
|
|
340
|
-
this.arrowUpSVGIcon = arrowUpIcon;
|
|
341
|
-
/**
|
|
342
|
-
* @hidden
|
|
343
|
-
*/
|
|
344
|
-
this.arrowDownSVGIcon = arrowDownIcon;
|
|
345
337
|
this.focused = false;
|
|
346
338
|
this.wrapperFocused = false;
|
|
347
339
|
this.subscriptions = new Subscription(() => { });
|
|
@@ -477,8 +469,8 @@ class PanelBarItemComponent {
|
|
|
477
469
|
/**
|
|
478
470
|
* @hidden
|
|
479
471
|
*/
|
|
480
|
-
get
|
|
481
|
-
return this.expanded ?
|
|
472
|
+
get expanderSVGIcon() {
|
|
473
|
+
return this.expanded ? chevronUpIcon : chevronDownIcon;
|
|
482
474
|
}
|
|
483
475
|
/**
|
|
484
476
|
* @hidden
|
|
@@ -596,7 +588,7 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
596
588
|
<kendo-icon-wrapper
|
|
597
589
|
*ngIf="hasChildItems || hasContent"
|
|
598
590
|
[name]="expanded ? 'arrow-chevron-up' : 'chevron-down'"
|
|
599
|
-
[svgIcon]="
|
|
591
|
+
[svgIcon]="expanderSVGIcon"
|
|
600
592
|
[innerCssClass]="dirInnerCssClasses"
|
|
601
593
|
>
|
|
602
594
|
</kendo-icon-wrapper>
|
|
@@ -749,7 +741,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
749
741
|
<kendo-icon-wrapper
|
|
750
742
|
*ngIf="hasChildItems || hasContent"
|
|
751
743
|
[name]="expanded ? 'arrow-chevron-up' : 'chevron-down'"
|
|
752
|
-
[svgIcon]="
|
|
744
|
+
[svgIcon]="expanderSVGIcon"
|
|
753
745
|
[innerCssClass]="dirInnerCssClasses"
|
|
754
746
|
>
|
|
755
747
|
</kendo-icon-wrapper>
|
|
@@ -5754,7 +5746,7 @@ class StepperStepComponent {
|
|
|
5754
5746
|
if (this.shouldCheckValidity) {
|
|
5755
5747
|
return true;
|
|
5756
5748
|
}
|
|
5757
|
-
if (this.step.icon || this.step.iconClass) {
|
|
5749
|
+
if (this.step.icon || this.step.iconClass || this.step.svgIcon) {
|
|
5758
5750
|
return true;
|
|
5759
5751
|
}
|
|
5760
5752
|
return false;
|
|
@@ -7595,6 +7587,8 @@ class ExpansionPanelComponent {
|
|
|
7595
7587
|
this.animationEnd = new EventEmitter();
|
|
7596
7588
|
this.subscriptions = new Subscription();
|
|
7597
7589
|
this._expanded = false;
|
|
7590
|
+
this._svgExpandIcon = caretAltDownIcon;
|
|
7591
|
+
this._svgCollapseIcon = caretAltUpIcon;
|
|
7598
7592
|
validatePackage(packageMetadata);
|
|
7599
7593
|
this.direction = localizationService.rtl ? 'rtl' : 'ltr';
|
|
7600
7594
|
}
|
|
@@ -7750,13 +7744,8 @@ class ExpansionPanelComponent {
|
|
|
7750
7744
|
/**
|
|
7751
7745
|
* @hidden
|
|
7752
7746
|
*/
|
|
7753
|
-
get
|
|
7754
|
-
|
|
7755
|
-
return this.svgCollapseIcon ? this.svgCollapseIcon : undefined;
|
|
7756
|
-
}
|
|
7757
|
-
else {
|
|
7758
|
-
return this.svgExpandIcon ? this.svgExpandIcon : undefined;
|
|
7759
|
-
}
|
|
7747
|
+
get expanderSvgIcon() {
|
|
7748
|
+
return this.expanded ? this.svgCollapseIcon : this.svgExpandIcon;
|
|
7760
7749
|
}
|
|
7761
7750
|
/**
|
|
7762
7751
|
* Toggles the visibility of the ExpansionPanel
|
|
@@ -7868,7 +7857,7 @@ ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
7868
7857
|
<kendo-icon-wrapper
|
|
7869
7858
|
[name]="expanderIndicatorClasses"
|
|
7870
7859
|
[customFontClass]="customExpanderIndicatorClasses"
|
|
7871
|
-
[svgIcon]="
|
|
7860
|
+
[svgIcon]="expanderSvgIcon"
|
|
7872
7861
|
>
|
|
7873
7862
|
</kendo-icon-wrapper>
|
|
7874
7863
|
</span>
|
|
@@ -7918,7 +7907,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7918
7907
|
<kendo-icon-wrapper
|
|
7919
7908
|
[name]="expanderIndicatorClasses"
|
|
7920
7909
|
[customFontClass]="customExpanderIndicatorClasses"
|
|
7921
|
-
[svgIcon]="
|
|
7910
|
+
[svgIcon]="expanderSvgIcon"
|
|
7922
7911
|
>
|
|
7923
7912
|
</kendo-icon-wrapper>
|
|
7924
7913
|
</span>
|
|
@@ -12,7 +12,7 @@ import { validatePackage } from '@progress/kendo-licensing';
|
|
|
12
12
|
import * as i1$2 from '@angular/animations';
|
|
13
13
|
import { trigger, state, style, transition, animate, AUTO_STYLE } from '@angular/animations';
|
|
14
14
|
import { Subject, BehaviorSubject, Subscription, of } from 'rxjs';
|
|
15
|
-
import {
|
|
15
|
+
import { chevronUpIcon, chevronDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon, caretAltDownIcon, xIcon, checkCircleIcon, exclamationCircleIcon } from '@progress/kendo-svg-icons';
|
|
16
16
|
import * as i2 from '@progress/kendo-angular-icons';
|
|
17
17
|
import { IconsModule } from '@progress/kendo-angular-icons';
|
|
18
18
|
import * as i3 from '@angular/common';
|
|
@@ -31,8 +31,8 @@ const packageMetadata = {
|
|
|
31
31
|
name: '@progress/kendo-angular-layout',
|
|
32
32
|
productName: 'Kendo UI for Angular',
|
|
33
33
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
34
|
-
publishDate:
|
|
35
|
-
version: '13.0.
|
|
34
|
+
publishDate: 1686070586,
|
|
35
|
+
version: '13.0.1-develop.1',
|
|
36
36
|
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'
|
|
37
37
|
};
|
|
38
38
|
|
|
@@ -332,14 +332,6 @@ class PanelBarItemComponent {
|
|
|
332
332
|
this.role = "treeitem";
|
|
333
333
|
this.titleAttribute = null; // eslint-disable-line
|
|
334
334
|
this.kItemClass = true;
|
|
335
|
-
/**
|
|
336
|
-
* @hidden
|
|
337
|
-
*/
|
|
338
|
-
this.arrowUpSVGIcon = arrowUpIcon;
|
|
339
|
-
/**
|
|
340
|
-
* @hidden
|
|
341
|
-
*/
|
|
342
|
-
this.arrowDownSVGIcon = arrowDownIcon;
|
|
343
335
|
this.focused = false;
|
|
344
336
|
this.wrapperFocused = false;
|
|
345
337
|
this.subscriptions = new Subscription(() => { });
|
|
@@ -475,8 +467,8 @@ class PanelBarItemComponent {
|
|
|
475
467
|
/**
|
|
476
468
|
* @hidden
|
|
477
469
|
*/
|
|
478
|
-
get
|
|
479
|
-
return this.expanded ?
|
|
470
|
+
get expanderSVGIcon() {
|
|
471
|
+
return this.expanded ? chevronUpIcon : chevronDownIcon;
|
|
480
472
|
}
|
|
481
473
|
/**
|
|
482
474
|
* @hidden
|
|
@@ -594,7 +586,7 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
594
586
|
<kendo-icon-wrapper
|
|
595
587
|
*ngIf="hasChildItems || hasContent"
|
|
596
588
|
[name]="expanded ? 'arrow-chevron-up' : 'chevron-down'"
|
|
597
|
-
[svgIcon]="
|
|
589
|
+
[svgIcon]="expanderSVGIcon"
|
|
598
590
|
[innerCssClass]="dirInnerCssClasses"
|
|
599
591
|
>
|
|
600
592
|
</kendo-icon-wrapper>
|
|
@@ -747,7 +739,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
747
739
|
<kendo-icon-wrapper
|
|
748
740
|
*ngIf="hasChildItems || hasContent"
|
|
749
741
|
[name]="expanded ? 'arrow-chevron-up' : 'chevron-down'"
|
|
750
|
-
[svgIcon]="
|
|
742
|
+
[svgIcon]="expanderSVGIcon"
|
|
751
743
|
[innerCssClass]="dirInnerCssClasses"
|
|
752
744
|
>
|
|
753
745
|
</kendo-icon-wrapper>
|
|
@@ -5729,7 +5721,7 @@ class StepperStepComponent {
|
|
|
5729
5721
|
if (this.shouldCheckValidity) {
|
|
5730
5722
|
return true;
|
|
5731
5723
|
}
|
|
5732
|
-
if (this.step.icon || this.step.iconClass) {
|
|
5724
|
+
if (this.step.icon || this.step.iconClass || this.step.svgIcon) {
|
|
5733
5725
|
return true;
|
|
5734
5726
|
}
|
|
5735
5727
|
return false;
|
|
@@ -7568,6 +7560,8 @@ class ExpansionPanelComponent {
|
|
|
7568
7560
|
this.animationEnd = new EventEmitter();
|
|
7569
7561
|
this.subscriptions = new Subscription();
|
|
7570
7562
|
this._expanded = false;
|
|
7563
|
+
this._svgExpandIcon = caretAltDownIcon;
|
|
7564
|
+
this._svgCollapseIcon = caretAltUpIcon;
|
|
7571
7565
|
validatePackage(packageMetadata);
|
|
7572
7566
|
this.direction = localizationService.rtl ? 'rtl' : 'ltr';
|
|
7573
7567
|
}
|
|
@@ -7723,13 +7717,8 @@ class ExpansionPanelComponent {
|
|
|
7723
7717
|
/**
|
|
7724
7718
|
* @hidden
|
|
7725
7719
|
*/
|
|
7726
|
-
get
|
|
7727
|
-
|
|
7728
|
-
return this.svgCollapseIcon ? this.svgCollapseIcon : undefined;
|
|
7729
|
-
}
|
|
7730
|
-
else {
|
|
7731
|
-
return this.svgExpandIcon ? this.svgExpandIcon : undefined;
|
|
7732
|
-
}
|
|
7720
|
+
get expanderSvgIcon() {
|
|
7721
|
+
return this.expanded ? this.svgCollapseIcon : this.svgExpandIcon;
|
|
7733
7722
|
}
|
|
7734
7723
|
/**
|
|
7735
7724
|
* Toggles the visibility of the ExpansionPanel
|
|
@@ -7841,7 +7830,7 @@ ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
7841
7830
|
<kendo-icon-wrapper
|
|
7842
7831
|
[name]="expanderIndicatorClasses"
|
|
7843
7832
|
[customFontClass]="customExpanderIndicatorClasses"
|
|
7844
|
-
[svgIcon]="
|
|
7833
|
+
[svgIcon]="expanderSvgIcon"
|
|
7845
7834
|
>
|
|
7846
7835
|
</kendo-icon-wrapper>
|
|
7847
7836
|
</span>
|
|
@@ -7891,7 +7880,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7891
7880
|
<kendo-icon-wrapper
|
|
7892
7881
|
[name]="expanderIndicatorClasses"
|
|
7893
7882
|
[customFontClass]="customExpanderIndicatorClasses"
|
|
7894
|
-
[svgIcon]="
|
|
7883
|
+
[svgIcon]="expanderSvgIcon"
|
|
7895
7884
|
>
|
|
7896
7885
|
</kendo-icon-wrapper>
|
|
7897
7886
|
</span>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-layout",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.1-develop.1",
|
|
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": "13 - 16",
|
|
40
40
|
"@angular/platform-browser": "13 - 16",
|
|
41
41
|
"@progress/kendo-licensing": "^1.0.2",
|
|
42
|
-
"@progress/kendo-angular-common": "13.0.
|
|
43
|
-
"@progress/kendo-angular-l10n": "13.0.
|
|
44
|
-
"@progress/kendo-angular-progressbar": "13.0.
|
|
45
|
-
"@progress/kendo-angular-icons": "13.0.
|
|
46
|
-
"@progress/kendo-angular-buttons": "13.0.
|
|
42
|
+
"@progress/kendo-angular-common": "13.0.1-develop.1",
|
|
43
|
+
"@progress/kendo-angular-l10n": "13.0.1-develop.1",
|
|
44
|
+
"@progress/kendo-angular-progressbar": "13.0.1-develop.1",
|
|
45
|
+
"@progress/kendo-angular-icons": "13.0.1-develop.1",
|
|
46
|
+
"@progress/kendo-angular-buttons": "13.0.1-develop.1",
|
|
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": "13.0.
|
|
51
|
+
"@progress/kendo-angular-schematics": "13.0.1-develop.1",
|
|
52
52
|
"@progress/kendo-draggable": "^3.0.2"
|
|
53
53
|
},
|
|
54
54
|
"schematics": "./schematics/collection.json",
|
|
@@ -104,14 +104,6 @@ export declare class PanelBarItemComponent implements OnInit, AfterContentChecke
|
|
|
104
104
|
contentItems: QueryList<PanelBarItemComponent>;
|
|
105
105
|
contentTemplate: QueryList<PanelBarContentDirective>;
|
|
106
106
|
titleTemplates: QueryList<PanelBarItemTitleDirective>;
|
|
107
|
-
/**
|
|
108
|
-
* @hidden
|
|
109
|
-
*/
|
|
110
|
-
arrowUpSVGIcon: SVGIcon;
|
|
111
|
-
/**
|
|
112
|
-
* @hidden
|
|
113
|
-
*/
|
|
114
|
-
arrowDownSVGIcon: SVGIcon;
|
|
115
107
|
focused: boolean;
|
|
116
108
|
wrapperFocused: boolean;
|
|
117
109
|
protected subscriptions: Subscription;
|
|
@@ -150,7 +142,7 @@ export declare class PanelBarItemComponent implements OnInit, AfterContentChecke
|
|
|
150
142
|
/**
|
|
151
143
|
* @hidden
|
|
152
144
|
*/
|
|
153
|
-
get
|
|
145
|
+
get expanderSVGIcon(): SVGIcon;
|
|
154
146
|
/**
|
|
155
147
|
* @hidden
|
|
156
148
|
*/
|