@progress/kendo-angular-layout 11.1.0-develop.1 → 11.1.0-develop.10
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/common/util.d.ts +0 -4
- package/esm2020/common/util.mjs +0 -16
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/tabstrip/tabstrip.component.mjs +2 -2
- package/esm2020/tilelayout/keyboard-navigation.service.mjs +1 -1
- package/fesm2015/progress-kendo-angular-layout.mjs +5 -21
- package/fesm2020/progress-kendo-angular-layout.mjs +5 -21
- package/package.json +7 -7
package/common/util.d.ts
CHANGED
package/esm2020/common/util.mjs
CHANGED
|
@@ -83,19 +83,3 @@ export const mapShapeToRounded = (shape) => SHAPE_TO_ROUNDED[shape] || 'none';
|
|
|
83
83
|
* @hidden
|
|
84
84
|
*/
|
|
85
85
|
export const isNumber = (value) => typeof value === 'number' && isFinite(value);
|
|
86
|
-
/**
|
|
87
|
-
* @hidden
|
|
88
|
-
*/
|
|
89
|
-
export const focusableSelector = [
|
|
90
|
-
'a[href]:not([tabindex^="-"]):not([disabled])',
|
|
91
|
-
'area[href]:not([tabindex^="-"]):not([disabled])',
|
|
92
|
-
'input:not([tabindex^="-"]):not([disabled])',
|
|
93
|
-
'select:not([tabindex^="-"]):not([disabled])',
|
|
94
|
-
'textarea:not([tabindex^="-"]):not([disabled])',
|
|
95
|
-
'button:not([tabindex^="-"]):not([disabled])',
|
|
96
|
-
'iframe:not([tabindex^="-"]):not([disabled])',
|
|
97
|
-
'object:not([tabindex^="-"]):not([disabled])',
|
|
98
|
-
'embed:not([tabindex^="-"]):not([disabled])',
|
|
99
|
-
'*[tabindex]:not([tabindex^="-"]):not([disabled])',
|
|
100
|
-
'*[contenteditable]:not([tabindex^="-"]):not([disabled]):not([contenteditable="false"])'
|
|
101
|
-
].join(',');
|
|
@@ -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: '11.1.0-develop.
|
|
12
|
+
publishDate: 1675171614,
|
|
13
|
+
version: '11.1.0-develop.10',
|
|
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
|
};
|
|
@@ -442,7 +442,7 @@ TabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
442
442
|
(tabClose)="tabClose.emit($event)"
|
|
443
443
|
(click)="onTabClick($event, i)"
|
|
444
444
|
[id]="'k-tabstrip-tab-' + i"
|
|
445
|
-
[attr.aria-controls]="'k-tabstrip-tabpanel-' + i"></li>
|
|
445
|
+
[attr.aria-controls]="tab.selected ? 'k-tabstrip-tabpanel-' + i : undefined"></li>
|
|
446
446
|
</ng-container>
|
|
447
447
|
</ul>
|
|
448
448
|
<span
|
|
@@ -574,7 +574,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
574
574
|
(tabClose)="tabClose.emit($event)"
|
|
575
575
|
(click)="onTabClick($event, i)"
|
|
576
576
|
[id]="'k-tabstrip-tab-' + i"
|
|
577
|
-
[attr.aria-controls]="'k-tabstrip-tabpanel-' + i"></li>
|
|
577
|
+
[attr.aria-controls]="tab.selected ? 'k-tabstrip-tabpanel-' + i : undefined"></li>
|
|
578
578
|
</ng-container>
|
|
579
579
|
</ul>
|
|
580
580
|
<span
|
|
@@ -7,7 +7,7 @@ import { Injectable, NgZone, Renderer2 } from '@angular/core';
|
|
|
7
7
|
import { Keys } from '@progress/kendo-angular-common';
|
|
8
8
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
9
9
|
import { BehaviorSubject } from 'rxjs';
|
|
10
|
-
import { focusableSelector } from '
|
|
10
|
+
import { focusableSelector } from '@progress/kendo-angular-common';
|
|
11
11
|
import { getCurrentCol, shouldReorder, shouldResize } from './util';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
13
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
@@ -7,7 +7,7 @@ import { Directive, Optional, Injectable, isDevMode, Component, SkipSelf, Host,
|
|
|
7
7
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
8
8
|
import { LocalizationService, L10N_PREFIX, ComponentMessages } from '@progress/kendo-angular-l10n';
|
|
9
9
|
import * as i1$1 from '@progress/kendo-angular-common';
|
|
10
|
-
import { Keys, PreventableEvent as PreventableEvent$1, isDocumentAvailable, hasObservers, isChanged, EventsModule, DraggableModule, ResizeSensorModule } from '@progress/kendo-angular-common';
|
|
10
|
+
import { Keys, PreventableEvent as PreventableEvent$1, isDocumentAvailable, hasObservers, focusableSelector, isChanged, EventsModule, DraggableModule, ResizeSensorModule } from '@progress/kendo-angular-common';
|
|
11
11
|
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';
|
|
@@ -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: '11.1.0-develop.
|
|
34
|
+
publishDate: 1675171614,
|
|
35
|
+
version: '11.1.0-develop.10',
|
|
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
|
|
|
@@ -205,22 +205,6 @@ const mapShapeToRounded = (shape) => SHAPE_TO_ROUNDED[shape] || 'none';
|
|
|
205
205
|
* @hidden
|
|
206
206
|
*/
|
|
207
207
|
const isNumber = (value) => typeof value === 'number' && isFinite(value);
|
|
208
|
-
/**
|
|
209
|
-
* @hidden
|
|
210
|
-
*/
|
|
211
|
-
const focusableSelector = [
|
|
212
|
-
'a[href]:not([tabindex^="-"]):not([disabled])',
|
|
213
|
-
'area[href]:not([tabindex^="-"]):not([disabled])',
|
|
214
|
-
'input:not([tabindex^="-"]):not([disabled])',
|
|
215
|
-
'select:not([tabindex^="-"]):not([disabled])',
|
|
216
|
-
'textarea:not([tabindex^="-"]):not([disabled])',
|
|
217
|
-
'button:not([tabindex^="-"]):not([disabled])',
|
|
218
|
-
'iframe:not([tabindex^="-"]):not([disabled])',
|
|
219
|
-
'object:not([tabindex^="-"]):not([disabled])',
|
|
220
|
-
'embed:not([tabindex^="-"]):not([disabled])',
|
|
221
|
-
'*[tabindex]:not([tabindex^="-"]):not([disabled])',
|
|
222
|
-
'*[contenteditable]:not([tabindex^="-"]):not([disabled]):not([contenteditable="false"])'
|
|
223
|
-
].join(',');
|
|
224
208
|
|
|
225
209
|
const focusableRegex = /^(?:a|input|select|option|textarea|button|object)$/i;
|
|
226
210
|
const toClassList = (classNames) => String(classNames).trim().split(' ');
|
|
@@ -3901,7 +3885,7 @@ TabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
3901
3885
|
(tabClose)="tabClose.emit($event)"
|
|
3902
3886
|
(click)="onTabClick($event, i)"
|
|
3903
3887
|
[id]="'k-tabstrip-tab-' + i"
|
|
3904
|
-
[attr.aria-controls]="'k-tabstrip-tabpanel-' + i"></li>
|
|
3888
|
+
[attr.aria-controls]="tab.selected ? 'k-tabstrip-tabpanel-' + i : undefined"></li>
|
|
3905
3889
|
</ng-container>
|
|
3906
3890
|
</ul>
|
|
3907
3891
|
<span
|
|
@@ -4033,7 +4017,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
4033
4017
|
(tabClose)="tabClose.emit($event)"
|
|
4034
4018
|
(click)="onTabClick($event, i)"
|
|
4035
4019
|
[id]="'k-tabstrip-tab-' + i"
|
|
4036
|
-
[attr.aria-controls]="'k-tabstrip-tabpanel-' + i"></li>
|
|
4020
|
+
[attr.aria-controls]="tab.selected ? 'k-tabstrip-tabpanel-' + i : undefined"></li>
|
|
4037
4021
|
</ng-container>
|
|
4038
4022
|
</ul>
|
|
4039
4023
|
<span
|
|
@@ -7,7 +7,7 @@ import { Injectable, Directive, Optional, isDevMode, Component, SkipSelf, Host,
|
|
|
7
7
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
8
8
|
import { LocalizationService, L10N_PREFIX, ComponentMessages } from '@progress/kendo-angular-l10n';
|
|
9
9
|
import * as i1$1 from '@progress/kendo-angular-common';
|
|
10
|
-
import { Keys, PreventableEvent as PreventableEvent$1, isDocumentAvailable, hasObservers, isChanged, EventsModule, DraggableModule, ResizeSensorModule } from '@progress/kendo-angular-common';
|
|
10
|
+
import { Keys, PreventableEvent as PreventableEvent$1, isDocumentAvailable, hasObservers, focusableSelector, isChanged, EventsModule, DraggableModule, ResizeSensorModule } from '@progress/kendo-angular-common';
|
|
11
11
|
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';
|
|
@@ -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: '11.1.0-develop.
|
|
34
|
+
publishDate: 1675171614,
|
|
35
|
+
version: '11.1.0-develop.10',
|
|
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
|
|
|
@@ -239,22 +239,6 @@ const mapShapeToRounded = (shape) => SHAPE_TO_ROUNDED[shape] || 'none';
|
|
|
239
239
|
* @hidden
|
|
240
240
|
*/
|
|
241
241
|
const isNumber = (value) => typeof value === 'number' && isFinite(value);
|
|
242
|
-
/**
|
|
243
|
-
* @hidden
|
|
244
|
-
*/
|
|
245
|
-
const focusableSelector = [
|
|
246
|
-
'a[href]:not([tabindex^="-"]):not([disabled])',
|
|
247
|
-
'area[href]:not([tabindex^="-"]):not([disabled])',
|
|
248
|
-
'input:not([tabindex^="-"]):not([disabled])',
|
|
249
|
-
'select:not([tabindex^="-"]):not([disabled])',
|
|
250
|
-
'textarea:not([tabindex^="-"]):not([disabled])',
|
|
251
|
-
'button:not([tabindex^="-"]):not([disabled])',
|
|
252
|
-
'iframe:not([tabindex^="-"]):not([disabled])',
|
|
253
|
-
'object:not([tabindex^="-"]):not([disabled])',
|
|
254
|
-
'embed:not([tabindex^="-"]):not([disabled])',
|
|
255
|
-
'*[tabindex]:not([tabindex^="-"]):not([disabled])',
|
|
256
|
-
'*[contenteditable]:not([tabindex^="-"]):not([disabled]):not([contenteditable="false"])'
|
|
257
|
-
].join(',');
|
|
258
242
|
|
|
259
243
|
const focusableRegex = /^(?:a|input|select|option|textarea|button|object)$/i;
|
|
260
244
|
const toClassList = (classNames) => String(classNames).trim().split(' ');
|
|
@@ -3891,7 +3875,7 @@ TabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
3891
3875
|
(tabClose)="tabClose.emit($event)"
|
|
3892
3876
|
(click)="onTabClick($event, i)"
|
|
3893
3877
|
[id]="'k-tabstrip-tab-' + i"
|
|
3894
|
-
[attr.aria-controls]="'k-tabstrip-tabpanel-' + i"></li>
|
|
3878
|
+
[attr.aria-controls]="tab.selected ? 'k-tabstrip-tabpanel-' + i : undefined"></li>
|
|
3895
3879
|
</ng-container>
|
|
3896
3880
|
</ul>
|
|
3897
3881
|
<span
|
|
@@ -4023,7 +4007,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
4023
4007
|
(tabClose)="tabClose.emit($event)"
|
|
4024
4008
|
(click)="onTabClick($event, i)"
|
|
4025
4009
|
[id]="'k-tabstrip-tab-' + i"
|
|
4026
|
-
[attr.aria-controls]="'k-tabstrip-tabpanel-' + i"></li>
|
|
4010
|
+
[attr.aria-controls]="tab.selected ? 'k-tabstrip-tabpanel-' + i : undefined"></li>
|
|
4027
4011
|
</ng-container>
|
|
4028
4012
|
</ul>
|
|
4029
4013
|
<span
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-layout",
|
|
3
|
-
"version": "11.1.0-develop.
|
|
3
|
+
"version": "11.1.0-develop.10",
|
|
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 - 15",
|
|
40
40
|
"@angular/platform-browser": "13 - 15",
|
|
41
41
|
"@progress/kendo-licensing": "^1.0.2",
|
|
42
|
-
"@progress/kendo-angular-common": "11.1.0-develop.
|
|
43
|
-
"@progress/kendo-angular-l10n": "11.1.0-develop.
|
|
44
|
-
"@progress/kendo-angular-progressbar": "11.1.0-develop.
|
|
45
|
-
"@progress/kendo-angular-icons": "11.1.0-develop.
|
|
46
|
-
"@progress/kendo-angular-buttons": "11.1.0-develop.
|
|
42
|
+
"@progress/kendo-angular-common": "11.1.0-develop.10",
|
|
43
|
+
"@progress/kendo-angular-l10n": "11.1.0-develop.10",
|
|
44
|
+
"@progress/kendo-angular-progressbar": "11.1.0-develop.10",
|
|
45
|
+
"@progress/kendo-angular-icons": "11.1.0-develop.10",
|
|
46
|
+
"@progress/kendo-angular-buttons": "11.1.0-develop.10",
|
|
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": "11.1.0-develop.
|
|
51
|
+
"@progress/kendo-angular-schematics": "11.1.0-develop.10",
|
|
52
52
|
"@progress/kendo-draggable": "^3.0.2"
|
|
53
53
|
},
|
|
54
54
|
"schematics": "./schematics/collection.json",
|