@progress/kendo-angular-layout 11.1.0-develop.7 → 11.1.0-develop.9

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 CHANGED
@@ -42,7 +42,3 @@ export declare const mapShapeToRounded: (shape: AvatarShape) => AvatarRounded;
42
42
  * @hidden
43
43
  */
44
44
  export declare const isNumber: (value: string | number) => boolean;
45
- /**
46
- * @hidden
47
- */
48
- export declare const focusableSelector: string;
@@ -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: 1674805067,
13
- version: '11.1.0-develop.7',
12
+ publishDate: 1675155242,
13
+ version: '11.1.0-develop.9',
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 '../common/util';
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: 1674805067,
35
- version: '11.1.0-develop.7',
34
+ publishDate: 1675155242,
35
+ version: '11.1.0-develop.9',
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: 1674805067,
35
- version: '11.1.0-develop.7',
34
+ publishDate: 1675155242,
35
+ version: '11.1.0-develop.9',
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-develop.7",
3
+ "version": "11.1.0-develop.9",
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.7",
43
- "@progress/kendo-angular-l10n": "11.1.0-develop.7",
44
- "@progress/kendo-angular-progressbar": "11.1.0-develop.7",
45
- "@progress/kendo-angular-icons": "11.1.0-develop.7",
46
- "@progress/kendo-angular-buttons": "11.1.0-develop.7",
42
+ "@progress/kendo-angular-common": "11.1.0-develop.9",
43
+ "@progress/kendo-angular-l10n": "11.1.0-develop.9",
44
+ "@progress/kendo-angular-progressbar": "11.1.0-develop.9",
45
+ "@progress/kendo-angular-icons": "11.1.0-develop.9",
46
+ "@progress/kendo-angular-buttons": "11.1.0-develop.9",
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.7",
51
+ "@progress/kendo-angular-schematics": "11.1.0-develop.9",
52
52
  "@progress/kendo-draggable": "^3.0.2"
53
53
  },
54
54
  "schematics": "./schematics/collection.json",