@progress/kendo-angular-dialog 23.0.1 → 23.0.2-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/dialog/dialog.component.d.ts +3 -0
- package/dialog/models/dialog-settings.d.ts +3 -0
- package/fesm2022/progress-kendo-angular-dialog.mjs +13 -1
- package/package-metadata.mjs +2 -2
- package/package.json +7 -7
- package/schematics/ngAdd/index.js +1 -1
- package/window/models/window-settings.d.ts +3 -0
- package/window/window.component.d.ts +3 -0
|
@@ -59,6 +59,9 @@ export declare class DialogComponent implements AfterContentInit, AfterViewInit,
|
|
|
59
59
|
* Sets the query selector for the element to receive initial focus. ([See examples.](https://www.telerik.com/kendo-angular-ui/components/dialogs/dialog/initial-focus))
|
|
60
60
|
*
|
|
61
61
|
* @type {string}
|
|
62
|
+
*
|
|
63
|
+
* @remarks
|
|
64
|
+
* This property is related to accessibility.
|
|
62
65
|
*/
|
|
63
66
|
autoFocusedElement: string;
|
|
64
67
|
/**
|
|
@@ -38,6 +38,9 @@ export declare class DialogSettings {
|
|
|
38
38
|
animation?: boolean | DialogAnimation;
|
|
39
39
|
/**
|
|
40
40
|
* Sets the HTML attributes for the Dialog wrapper element. Accepts string key-value pairs.
|
|
41
|
+
*
|
|
42
|
+
* @remarks
|
|
43
|
+
* This option is related to accessibility.
|
|
41
44
|
*/
|
|
42
45
|
htmlAttributes?: {
|
|
43
46
|
[key: string]: string;
|
|
@@ -503,7 +503,7 @@ const packageMetadata = {
|
|
|
503
503
|
productCode: 'KENDOUIANGULAR',
|
|
504
504
|
productCodes: ['KENDOUIANGULAR'],
|
|
505
505
|
publishDate: 0,
|
|
506
|
-
version: '23.0.1',
|
|
506
|
+
version: '23.0.2-develop.1',
|
|
507
507
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
508
508
|
};
|
|
509
509
|
|
|
@@ -819,6 +819,9 @@ class DialogComponent {
|
|
|
819
819
|
* Sets the query selector for the element to receive initial focus. ([See examples.](https://www.telerik.com/kendo-angular-ui/components/dialogs/dialog/initial-focus))
|
|
820
820
|
*
|
|
821
821
|
* @type {string}
|
|
822
|
+
*
|
|
823
|
+
* @remarks
|
|
824
|
+
* This property is related to accessibility.
|
|
822
825
|
*/
|
|
823
826
|
autoFocusedElement;
|
|
824
827
|
/**
|
|
@@ -1570,6 +1573,9 @@ class DialogSettings {
|
|
|
1570
1573
|
animation;
|
|
1571
1574
|
/**
|
|
1572
1575
|
* Sets the HTML attributes for the Dialog wrapper element. Accepts string key-value pairs.
|
|
1576
|
+
*
|
|
1577
|
+
* @remarks
|
|
1578
|
+
* This option is related to accessibility.
|
|
1573
1579
|
*/
|
|
1574
1580
|
htmlAttributes;
|
|
1575
1581
|
/**
|
|
@@ -2993,6 +2999,9 @@ class WindowComponent {
|
|
|
2993
2999
|
localization;
|
|
2994
3000
|
/**
|
|
2995
3001
|
* Specifies the query selector used to set the initial focus ([see examples](https://www.telerik.com/kendo-angular-ui/components/dialogs/window/initial-focus)).
|
|
3002
|
+
*
|
|
3003
|
+
* @remarks
|
|
3004
|
+
* This property is related to accessibility.
|
|
2996
3005
|
*/
|
|
2997
3006
|
autoFocusedElement;
|
|
2998
3007
|
/**
|
|
@@ -3870,6 +3879,9 @@ class WindowSettings {
|
|
|
3870
3879
|
cssClass;
|
|
3871
3880
|
/**
|
|
3872
3881
|
* Sets HTML attributes for the Window wrapper element. Accepts string key-value pairs.
|
|
3882
|
+
*
|
|
3883
|
+
* @remarks
|
|
3884
|
+
* This option is related to accessibility.
|
|
3873
3885
|
*/
|
|
3874
3886
|
htmlAttributes;
|
|
3875
3887
|
/**
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "23.0.1",
|
|
10
|
+
"publishDate": 1771334730,
|
|
11
|
+
"version": "23.0.2-develop.1",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dialog",
|
|
3
|
-
"version": "23.0.1",
|
|
3
|
+
"version": "23.0.2-develop.1",
|
|
4
4
|
"description": "Dialog Package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"package": {
|
|
24
24
|
"productName": "Kendo UI for Angular",
|
|
25
25
|
"productCode": "KENDOUIANGULAR",
|
|
26
|
-
"publishDate":
|
|
26
|
+
"publishDate": 1771334730,
|
|
27
27
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
28
28
|
}
|
|
29
29
|
},
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
"@angular/core": "19 - 21",
|
|
34
34
|
"@angular/platform-browser": "19 - 21",
|
|
35
35
|
"@progress/kendo-licensing": "^1.10.0",
|
|
36
|
-
"@progress/kendo-angular-buttons": "23.0.1",
|
|
37
|
-
"@progress/kendo-angular-common": "23.0.1",
|
|
38
|
-
"@progress/kendo-angular-icons": "23.0.1",
|
|
39
|
-
"@progress/kendo-angular-l10n": "23.0.1",
|
|
36
|
+
"@progress/kendo-angular-buttons": "23.0.2-develop.1",
|
|
37
|
+
"@progress/kendo-angular-common": "23.0.2-develop.1",
|
|
38
|
+
"@progress/kendo-angular-icons": "23.0.2-develop.1",
|
|
39
|
+
"@progress/kendo-angular-l10n": "23.0.2-develop.1",
|
|
40
40
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"tslib": "^2.3.1",
|
|
44
|
-
"@progress/kendo-angular-schematics": "23.0.1",
|
|
44
|
+
"@progress/kendo-angular-schematics": "23.0.2-develop.1",
|
|
45
45
|
"@progress/kendo-popup-common": "1.9.5"
|
|
46
46
|
},
|
|
47
47
|
"schematics": "./schematics/collection.json",
|
|
@@ -9,7 +9,7 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DialogsModule', package: 'dialog', peerDependencies: {
|
|
11
11
|
// Peer dependency of buttons
|
|
12
|
-
'@progress/kendo-angular-popup': '23.0.1',
|
|
12
|
+
'@progress/kendo-angular-popup': '23.0.2-develop.1',
|
|
13
13
|
// Peer dependency of icons
|
|
14
14
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
15
15
|
} });
|
|
@@ -72,6 +72,9 @@ export declare class WindowSettings {
|
|
|
72
72
|
cssClass?: any;
|
|
73
73
|
/**
|
|
74
74
|
* Sets HTML attributes for the Window wrapper element. Accepts string key-value pairs.
|
|
75
|
+
*
|
|
76
|
+
* @remarks
|
|
77
|
+
* This option is related to accessibility.
|
|
75
78
|
*/
|
|
76
79
|
htmlAttributes?: {
|
|
77
80
|
[key: string]: string;
|
|
@@ -34,6 +34,9 @@ export declare class WindowComponent implements OnInit, OnDestroy, OnChanges, Af
|
|
|
34
34
|
private localization;
|
|
35
35
|
/**
|
|
36
36
|
* Specifies the query selector used to set the initial focus ([see examples](https://www.telerik.com/kendo-angular-ui/components/dialogs/window/initial-focus)).
|
|
37
|
+
*
|
|
38
|
+
* @remarks
|
|
39
|
+
* This property is related to accessibility.
|
|
37
40
|
*/
|
|
38
41
|
autoFocusedElement: string;
|
|
39
42
|
/**
|