@progress/kendo-angular-layout 7.0.0 → 7.0.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/bundles/kendo-angular-layout.umd.js +1 -1
- package/esm2015/expansionpanel/expansionpanel.component.js +5 -4
- package/esm2015/package-metadata.js +1 -1
- package/esm2015/splitter/splitter-pane.component.js +5 -1
- package/esm2015/splitter/splitter.component.js +1 -5
- package/fesm2015/kendo-angular-layout.js +12 -11
- package/main.d.ts +1 -0
- package/package.json +1 -1
- package/splitter/splitter-pane.component.d.ts +1 -0
- package/splitter/splitter.component.d.ts +0 -1
|
@@ -299,7 +299,7 @@ export class ExpansionPanelComponent {
|
|
|
299
299
|
}
|
|
300
300
|
}
|
|
301
301
|
ExpansionPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ExpansionPanelComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i1.LocalizationService }, { token: i2.AnimationBuilder }], target: i0.ɵɵFactoryTarget.Component });
|
|
302
|
-
ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ExpansionPanelComponent, selector: "kendo-expansionpanel", inputs: { title: "title", subtitle: "subtitle", disabled: "disabled", expanded: "expanded", expandIcon: "expandIcon", collapseIcon: "collapseIcon", animation: "animation" }, outputs: { expandedChange: "expandedChange", action: "action", expand: "expand", collapse: "collapse" }, host: { listeners: { "blur": "onComponentBlur()", "focus": "onComponentFocus()" }, properties: { "class.k-expander": "this.hostClass", "
|
|
302
|
+
ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ExpansionPanelComponent, selector: "kendo-expansionpanel", inputs: { title: "title", subtitle: "subtitle", disabled: "disabled", expanded: "expanded", expandIcon: "expandIcon", collapseIcon: "collapseIcon", animation: "animation" }, outputs: { expandedChange: "expandedChange", action: "action", expand: "expand", collapse: "collapse" }, host: { listeners: { "blur": "onComponentBlur()", "focus": "onComponentFocus()" }, properties: { "class.k-expander": "this.hostClass", "class.k-expanded": "this.expandedClass", "class.k-state-focus": "this.focusClass", "attr.aria-disabled": "this.disabledClass", "class.k-state-disabled": "this.disabledClass", "attr.dir": "this.direction", "attr.tabindex": "this.tabindex" } }, providers: [
|
|
303
303
|
LocalizationService,
|
|
304
304
|
{
|
|
305
305
|
provide: L10N_PREFIX,
|
|
@@ -308,6 +308,8 @@ ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
308
308
|
], queries: [{ propertyName: "titleTemplate", first: true, predicate: ExpansionPanelTitleDirective, descendants: true }], viewQueries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true, static: true }], exportAs: ["kendoExpansionPanel"], ngImport: i0, template: `
|
|
309
309
|
<div
|
|
310
310
|
[class.k-expander-header]="true"
|
|
311
|
+
[attr.aria-expanded]="expanded && !disabled"
|
|
312
|
+
role="button"
|
|
311
313
|
(click)="onHeaderClick($event)">
|
|
312
314
|
<ng-container *ngIf="!titleTemplate">
|
|
313
315
|
<div *ngIf="title" class="k-expander-title">{{ title }}</div>
|
|
@@ -345,6 +347,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
345
347
|
template: `
|
|
346
348
|
<div
|
|
347
349
|
[class.k-expander-header]="true"
|
|
350
|
+
[attr.aria-expanded]="expanded && !disabled"
|
|
351
|
+
role="button"
|
|
348
352
|
(click)="onHeaderClick($event)">
|
|
349
353
|
<ng-container *ngIf="!titleTemplate">
|
|
350
354
|
<div *ngIf="title" class="k-expander-title">{{ title }}</div>
|
|
@@ -400,9 +404,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
400
404
|
type: HostBinding,
|
|
401
405
|
args: ['class.k-expander']
|
|
402
406
|
}], expandedClass: [{
|
|
403
|
-
type: HostBinding,
|
|
404
|
-
args: ['attr.aria-expanded']
|
|
405
|
-
}, {
|
|
406
407
|
type: HostBinding,
|
|
407
408
|
args: ['class.k-expanded']
|
|
408
409
|
}], focusClass: [{
|
|
@@ -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: 1652108477,
|
|
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
|
};
|
|
@@ -49,6 +49,7 @@ export class SplitterPaneComponent {
|
|
|
49
49
|
* Allows a two-way binding of the `collapsed` pane property.
|
|
50
50
|
*/
|
|
51
51
|
this.collapsedChange = new EventEmitter();
|
|
52
|
+
this.ariaRole = 'group';
|
|
52
53
|
this.hostClass = true;
|
|
53
54
|
/**
|
|
54
55
|
* @hidden
|
|
@@ -157,7 +158,7 @@ export class SplitterPaneComponent {
|
|
|
157
158
|
}
|
|
158
159
|
}
|
|
159
160
|
SplitterPaneComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SplitterPaneComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
160
|
-
SplitterPaneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: { order: "order", size: "size", min: "min", max: "max", resizable: "resizable", collapsible: "collapsible", scrollable: "scrollable", collapsed: "collapsed", orientation: "orientation", containsSplitter: "containsSplitter", overlayContent: "overlayContent" }, outputs: { sizeChange: "sizeChange", collapsedChange: "collapsedChange" }, host: { properties: { "class.k-pane": "this.hostClass", "class.k-pane-static": "this.staticPaneClass", "class.k-scrollable": "this.scrollablePaneClass" } }, exportAs: ["kendoSplitterPane"], ngImport: i0, template: `
|
|
161
|
+
SplitterPaneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: { order: "order", size: "size", min: "min", max: "max", resizable: "resizable", collapsible: "collapsible", scrollable: "scrollable", collapsed: "collapsed", orientation: "orientation", containsSplitter: "containsSplitter", overlayContent: "overlayContent" }, outputs: { sizeChange: "sizeChange", collapsedChange: "collapsedChange" }, host: { properties: { "attr.role": "this.ariaRole", "class.k-pane": "this.hostClass", "class.k-pane-static": "this.staticPaneClass", "class.k-scrollable": "this.scrollablePaneClass" } }, exportAs: ["kendoSplitterPane"], ngImport: i0, template: `
|
|
161
162
|
<ng-container *ngIf="!collapsed"><ng-content></ng-content></ng-container>
|
|
162
163
|
<div *ngIf="overlayContent" class="k-splitter-overlay k-overlay"></div>
|
|
163
164
|
`, isInline: true, directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
@@ -197,6 +198,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
197
198
|
type: Output
|
|
198
199
|
}], collapsedChange: [{
|
|
199
200
|
type: Output
|
|
201
|
+
}], ariaRole: [{
|
|
202
|
+
type: HostBinding,
|
|
203
|
+
args: ['attr.role']
|
|
200
204
|
}], hostClass: [{
|
|
201
205
|
type: HostBinding,
|
|
202
206
|
args: ['class.k-pane']
|
|
@@ -65,7 +65,6 @@ export class SplitterComponent {
|
|
|
65
65
|
* Panes in a vertical Splitter are placed vertically.
|
|
66
66
|
*/
|
|
67
67
|
this.orientation = 'horizontal';
|
|
68
|
-
this.ariaRole = 'splitter';
|
|
69
68
|
validatePackage(packageMetadata);
|
|
70
69
|
if (enclosingPane) {
|
|
71
70
|
enclosingPane.containsSplitter = true;
|
|
@@ -140,7 +139,7 @@ export class SplitterComponent {
|
|
|
140
139
|
}
|
|
141
140
|
}
|
|
142
141
|
SplitterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SplitterComponent, deps: [{ token: i0.ElementRef }, { token: i1.SplitterService }, { token: i2.LocalizationService }, { token: i0.Renderer2 }, { token: SplitterPaneComponent, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
143
|
-
SplitterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SplitterComponent, selector: "kendo-splitter", inputs: { orientation: "orientation" }, outputs: { layoutChange: "layoutChange" }, host: { properties: { "class.k-splitter": "this.hostClasses", "class.k-splitter-flex": "this.hostClasses", "class.k-splitter-horizontal": "this.horizontalHostClasses", "class.k-splitter-vertical": "this.verticalHostClasses", "attr.dir": "this.dir"
|
|
142
|
+
SplitterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SplitterComponent, selector: "kendo-splitter", inputs: { orientation: "orientation" }, outputs: { layoutChange: "layoutChange" }, host: { properties: { "class.k-splitter": "this.hostClasses", "class.k-splitter-flex": "this.hostClasses", "class.k-splitter-horizontal": "this.horizontalHostClasses", "class.k-splitter-vertical": "this.verticalHostClasses", "attr.dir": "this.dir" } }, providers: [
|
|
144
143
|
SplitterService,
|
|
145
144
|
LocalizationService,
|
|
146
145
|
{
|
|
@@ -217,9 +216,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
217
216
|
}], dir: [{
|
|
218
217
|
type: HostBinding,
|
|
219
218
|
args: ['attr.dir']
|
|
220
|
-
}], ariaRole: [{
|
|
221
|
-
type: HostBinding,
|
|
222
|
-
args: ['attr.role']
|
|
223
219
|
}], splitbars: [{
|
|
224
220
|
type: ViewChildren,
|
|
225
221
|
args: [SplitterBarComponent]
|
|
@@ -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: 1652108477,
|
|
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
|
};
|
|
@@ -1555,6 +1555,7 @@ class SplitterPaneComponent {
|
|
|
1555
1555
|
* Allows a two-way binding of the `collapsed` pane property.
|
|
1556
1556
|
*/
|
|
1557
1557
|
this.collapsedChange = new EventEmitter();
|
|
1558
|
+
this.ariaRole = 'group';
|
|
1558
1559
|
this.hostClass = true;
|
|
1559
1560
|
/**
|
|
1560
1561
|
* @hidden
|
|
@@ -1663,7 +1664,7 @@ class SplitterPaneComponent {
|
|
|
1663
1664
|
}
|
|
1664
1665
|
}
|
|
1665
1666
|
SplitterPaneComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SplitterPaneComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1666
|
-
SplitterPaneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: { order: "order", size: "size", min: "min", max: "max", resizable: "resizable", collapsible: "collapsible", scrollable: "scrollable", collapsed: "collapsed", orientation: "orientation", containsSplitter: "containsSplitter", overlayContent: "overlayContent" }, outputs: { sizeChange: "sizeChange", collapsedChange: "collapsedChange" }, host: { properties: { "class.k-pane": "this.hostClass", "class.k-pane-static": "this.staticPaneClass", "class.k-scrollable": "this.scrollablePaneClass" } }, exportAs: ["kendoSplitterPane"], ngImport: i0, template: `
|
|
1667
|
+
SplitterPaneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: { order: "order", size: "size", min: "min", max: "max", resizable: "resizable", collapsible: "collapsible", scrollable: "scrollable", collapsed: "collapsed", orientation: "orientation", containsSplitter: "containsSplitter", overlayContent: "overlayContent" }, outputs: { sizeChange: "sizeChange", collapsedChange: "collapsedChange" }, host: { properties: { "attr.role": "this.ariaRole", "class.k-pane": "this.hostClass", "class.k-pane-static": "this.staticPaneClass", "class.k-scrollable": "this.scrollablePaneClass" } }, exportAs: ["kendoSplitterPane"], ngImport: i0, template: `
|
|
1667
1668
|
<ng-container *ngIf="!collapsed"><ng-content></ng-content></ng-container>
|
|
1668
1669
|
<div *ngIf="overlayContent" class="k-splitter-overlay k-overlay"></div>
|
|
1669
1670
|
`, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
@@ -1703,6 +1704,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1703
1704
|
type: Output
|
|
1704
1705
|
}], collapsedChange: [{
|
|
1705
1706
|
type: Output
|
|
1707
|
+
}], ariaRole: [{
|
|
1708
|
+
type: HostBinding,
|
|
1709
|
+
args: ['attr.role']
|
|
1706
1710
|
}], hostClass: [{
|
|
1707
1711
|
type: HostBinding,
|
|
1708
1712
|
args: ['class.k-pane']
|
|
@@ -2131,7 +2135,6 @@ class SplitterComponent {
|
|
|
2131
2135
|
* Panes in a vertical Splitter are placed vertically.
|
|
2132
2136
|
*/
|
|
2133
2137
|
this.orientation = 'horizontal';
|
|
2134
|
-
this.ariaRole = 'splitter';
|
|
2135
2138
|
validatePackage(packageMetadata);
|
|
2136
2139
|
if (enclosingPane) {
|
|
2137
2140
|
enclosingPane.containsSplitter = true;
|
|
@@ -2206,7 +2209,7 @@ class SplitterComponent {
|
|
|
2206
2209
|
}
|
|
2207
2210
|
}
|
|
2208
2211
|
SplitterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SplitterComponent, deps: [{ token: i0.ElementRef }, { token: SplitterService }, { token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: SplitterPaneComponent, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
2209
|
-
SplitterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SplitterComponent, selector: "kendo-splitter", inputs: { orientation: "orientation" }, outputs: { layoutChange: "layoutChange" }, host: { properties: { "class.k-splitter": "this.hostClasses", "class.k-splitter-flex": "this.hostClasses", "class.k-splitter-horizontal": "this.horizontalHostClasses", "class.k-splitter-vertical": "this.verticalHostClasses", "attr.dir": "this.dir"
|
|
2212
|
+
SplitterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SplitterComponent, selector: "kendo-splitter", inputs: { orientation: "orientation" }, outputs: { layoutChange: "layoutChange" }, host: { properties: { "class.k-splitter": "this.hostClasses", "class.k-splitter-flex": "this.hostClasses", "class.k-splitter-horizontal": "this.horizontalHostClasses", "class.k-splitter-vertical": "this.verticalHostClasses", "attr.dir": "this.dir" } }, providers: [
|
|
2210
2213
|
SplitterService,
|
|
2211
2214
|
LocalizationService,
|
|
2212
2215
|
{
|
|
@@ -2283,9 +2286,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
2283
2286
|
}], dir: [{
|
|
2284
2287
|
type: HostBinding,
|
|
2285
2288
|
args: ['attr.dir']
|
|
2286
|
-
}], ariaRole: [{
|
|
2287
|
-
type: HostBinding,
|
|
2288
|
-
args: ['attr.role']
|
|
2289
2289
|
}], splitbars: [{
|
|
2290
2290
|
type: ViewChildren,
|
|
2291
2291
|
args: [SplitterBarComponent]
|
|
@@ -7025,7 +7025,7 @@ class ExpansionPanelComponent {
|
|
|
7025
7025
|
}
|
|
7026
7026
|
}
|
|
7027
7027
|
ExpansionPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ExpansionPanelComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i1.LocalizationService }, { token: i1$2.AnimationBuilder }], target: i0.ɵɵFactoryTarget.Component });
|
|
7028
|
-
ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ExpansionPanelComponent, selector: "kendo-expansionpanel", inputs: { title: "title", subtitle: "subtitle", disabled: "disabled", expanded: "expanded", expandIcon: "expandIcon", collapseIcon: "collapseIcon", animation: "animation" }, outputs: { expandedChange: "expandedChange", action: "action", expand: "expand", collapse: "collapse" }, host: { listeners: { "blur": "onComponentBlur()", "focus": "onComponentFocus()" }, properties: { "class.k-expander": "this.hostClass", "
|
|
7028
|
+
ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ExpansionPanelComponent, selector: "kendo-expansionpanel", inputs: { title: "title", subtitle: "subtitle", disabled: "disabled", expanded: "expanded", expandIcon: "expandIcon", collapseIcon: "collapseIcon", animation: "animation" }, outputs: { expandedChange: "expandedChange", action: "action", expand: "expand", collapse: "collapse" }, host: { listeners: { "blur": "onComponentBlur()", "focus": "onComponentFocus()" }, properties: { "class.k-expander": "this.hostClass", "class.k-expanded": "this.expandedClass", "class.k-state-focus": "this.focusClass", "attr.aria-disabled": "this.disabledClass", "class.k-state-disabled": "this.disabledClass", "attr.dir": "this.direction", "attr.tabindex": "this.tabindex" } }, providers: [
|
|
7029
7029
|
LocalizationService,
|
|
7030
7030
|
{
|
|
7031
7031
|
provide: L10N_PREFIX,
|
|
@@ -7034,6 +7034,8 @@ ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
7034
7034
|
], queries: [{ propertyName: "titleTemplate", first: true, predicate: ExpansionPanelTitleDirective, descendants: true }], viewQueries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true, static: true }], exportAs: ["kendoExpansionPanel"], ngImport: i0, template: `
|
|
7035
7035
|
<div
|
|
7036
7036
|
[class.k-expander-header]="true"
|
|
7037
|
+
[attr.aria-expanded]="expanded && !disabled"
|
|
7038
|
+
role="button"
|
|
7037
7039
|
(click)="onHeaderClick($event)">
|
|
7038
7040
|
<ng-container *ngIf="!titleTemplate">
|
|
7039
7041
|
<div *ngIf="title" class="k-expander-title">{{ title }}</div>
|
|
@@ -7071,6 +7073,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
7071
7073
|
template: `
|
|
7072
7074
|
<div
|
|
7073
7075
|
[class.k-expander-header]="true"
|
|
7076
|
+
[attr.aria-expanded]="expanded && !disabled"
|
|
7077
|
+
role="button"
|
|
7074
7078
|
(click)="onHeaderClick($event)">
|
|
7075
7079
|
<ng-container *ngIf="!titleTemplate">
|
|
7076
7080
|
<div *ngIf="title" class="k-expander-title">{{ title }}</div>
|
|
@@ -7126,9 +7130,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
7126
7130
|
type: HostBinding,
|
|
7127
7131
|
args: ['class.k-expander']
|
|
7128
7132
|
}], expandedClass: [{
|
|
7129
|
-
type: HostBinding,
|
|
7130
|
-
args: ['attr.aria-expanded']
|
|
7131
|
-
}, {
|
|
7132
7133
|
type: HostBinding,
|
|
7133
7134
|
args: ['class.k-expanded']
|
|
7134
7135
|
}], focusClass: [{
|
package/main.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export { TabContentDirective } from './tabstrip/directives/tab-content.directive
|
|
|
19
19
|
export { TabTitleDirective } from './tabstrip/directives/tab-title.directive';
|
|
20
20
|
export { TabPosition } from './tabstrip/models/tab-position';
|
|
21
21
|
export { TabAlignment } from './tabstrip/models/tab-alignment';
|
|
22
|
+
export { TabStripScrollButtonsVisibility } from './tabstrip/models/scroll-buttons-visibility';
|
|
22
23
|
export { LocalizedTabStripMessagesDirective } from './tabstrip/localization/localized-messages.directive';
|
|
23
24
|
export { TabStripCustomMessagesComponent } from './tabstrip/localization/custom-messages.component';
|
|
24
25
|
export { TabStripScrollableSettings } from './tabstrip/models/scrollable-settings';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-layout",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.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",
|
|
@@ -72,6 +72,7 @@ export declare class SplitterPaneComponent implements AfterViewChecked {
|
|
|
72
72
|
*/
|
|
73
73
|
collapsedChange: EventEmitter<boolean>;
|
|
74
74
|
get isHidden(): boolean;
|
|
75
|
+
ariaRole: string;
|
|
75
76
|
hostClass: boolean;
|
|
76
77
|
get staticPaneClass(): boolean;
|
|
77
78
|
get scrollablePaneClass(): boolean;
|
|
@@ -66,7 +66,6 @@ export declare class SplitterComponent implements AfterContentInit {
|
|
|
66
66
|
get horizontalHostClasses(): boolean;
|
|
67
67
|
get verticalHostClasses(): boolean;
|
|
68
68
|
get dir(): string;
|
|
69
|
-
ariaRole: string;
|
|
70
69
|
set splitbars(splitbars: QueryList<SplitterBarComponent>);
|
|
71
70
|
/**
|
|
72
71
|
* @hidden
|