@progress/kendo-angular-layout 11.1.0-develop.8 → 11.1.0
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/tilelayout/keyboard-navigation.service.mjs +1 -1
- package/fesm2015/progress-kendo-angular-layout.mjs +3 -19
- package/fesm2020/progress-kendo-angular-layout.mjs +3 -19
- 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
|
|
12
|
+
publishDate: 1675250381,
|
|
13
|
+
version: '11.1.0',
|
|
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
|
};
|
|
@@ -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
|
|
34
|
+
publishDate: 1675250381,
|
|
35
|
+
version: '11.1.0',
|
|
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(' ');
|
|
@@ -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
|
|
34
|
+
publishDate: 1675250381,
|
|
35
|
+
version: '11.1.0',
|
|
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(' ');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-layout",
|
|
3
|
-
"version": "11.1.0
|
|
3
|
+
"version": "11.1.0",
|
|
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
|
|
43
|
-
"@progress/kendo-angular-l10n": "11.1.0
|
|
44
|
-
"@progress/kendo-angular-progressbar": "11.1.0
|
|
45
|
-
"@progress/kendo-angular-icons": "11.1.0
|
|
46
|
-
"@progress/kendo-angular-buttons": "11.1.0
|
|
42
|
+
"@progress/kendo-angular-common": "11.1.0",
|
|
43
|
+
"@progress/kendo-angular-l10n": "11.1.0",
|
|
44
|
+
"@progress/kendo-angular-progressbar": "11.1.0",
|
|
45
|
+
"@progress/kendo-angular-icons": "11.1.0",
|
|
46
|
+
"@progress/kendo-angular-buttons": "11.1.0",
|
|
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
|
|
51
|
+
"@progress/kendo-angular-schematics": "11.1.0",
|
|
52
52
|
"@progress/kendo-draggable": "^3.0.2"
|
|
53
53
|
},
|
|
54
54
|
"schematics": "./schematics/collection.json",
|