@progress/kendo-angular-dialog 19.1.2-develop.4 → 19.1.2-develop.5
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-actions.component.d.ts +9 -0
- package/dialog/dialog-titlebar.component.d.ts +8 -0
- package/dialog/dialog.component.d.ts +3 -0
- package/esm2022/dialog/dialog-actions.component.mjs +9 -0
- package/esm2022/dialog/dialog-titlebar.component.mjs +8 -0
- package/esm2022/dialog/dialog.component.mjs +3 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/window/actions/window-close-action.directive.mjs +7 -0
- package/esm2022/window/actions/window-maximize-action.directive.mjs +7 -0
- package/esm2022/window/actions/window-minimize-action.directive.mjs +7 -0
- package/esm2022/window/actions/window-restore-action.directive.mjs +7 -0
- package/esm2022/window/window.component.mjs +3 -0
- package/fesm2022/progress-kendo-angular-dialog.mjs +53 -2
- package/package.json +7 -7
- package/schematics/ngAdd/index.js +1 -1
- package/window/actions/window-close-action.directive.d.ts +7 -0
- package/window/actions/window-maximize-action.directive.d.ts +7 -0
- package/window/actions/window-minimize-action.directive.d.ts +7 -0
- package/window/actions/window-restore-action.directive.d.ts +7 -0
- package/window/window.component.d.ts +3 -0
@@ -11,6 +11,15 @@ import * as i0 from "@angular/core";
|
|
11
11
|
* Represents the action buttons of the Dialog.
|
12
12
|
* ([See example.]({% slug actionbuttons_dialog %}))
|
13
13
|
*
|
14
|
+
* ```html
|
15
|
+
* <kendo-dialog>
|
16
|
+
* <kendo-dialog-actions>
|
17
|
+
* <button kendoButton fillMode="flat" themeColor="primary" (click)="onPrimaryActionClick()">
|
18
|
+
* Primary Action
|
19
|
+
* </button>
|
20
|
+
* </kendo-dialog-actions>
|
21
|
+
* </kendo-dialog>
|
22
|
+
* ```
|
14
23
|
*/
|
15
24
|
export declare class DialogActionsComponent {
|
16
25
|
el: ElementRef;
|
@@ -12,6 +12,14 @@ import * as i0 from "@angular/core";
|
|
12
12
|
*
|
13
13
|
* Use this component as part of the Dialog content when you create the Dialog dynamically with an [Angular service]({% slug service_dialog %}).
|
14
14
|
*
|
15
|
+
* ```html
|
16
|
+
* <kendo-dialog>
|
17
|
+
* <kendo-dialog-titlebar [id]="dialogId" (close)="onClose()">
|
18
|
+
* Dialog Title
|
19
|
+
* </kendo-dialog-titlebar>
|
20
|
+
* </kendo-dialog>
|
21
|
+
* ```
|
22
|
+
*
|
15
23
|
*/
|
16
24
|
export declare class DialogTitleBarComponent implements AfterViewInit {
|
17
25
|
private zone;
|
@@ -31,6 +31,9 @@ import * as i0 from "@angular/core";
|
|
31
31
|
* })
|
32
32
|
* export class AppComponent {}
|
33
33
|
* ```
|
34
|
+
*
|
35
|
+
* @remarks
|
36
|
+
* Supported children components are: {@link DialogTitleBarComponent}, {@link DialogActionsComponent}, {@link CustomMessagesComponent}.
|
34
37
|
*/
|
35
38
|
export declare class DialogComponent implements AfterContentInit, AfterViewInit, OnInit, OnDestroy {
|
36
39
|
private wrapper;
|
@@ -11,6 +11,15 @@ import * as i1 from "@progress/kendo-angular-buttons";
|
|
11
11
|
* Represents the action buttons of the Dialog.
|
12
12
|
* ([See example.]({% slug actionbuttons_dialog %}))
|
13
13
|
*
|
14
|
+
* ```html
|
15
|
+
* <kendo-dialog>
|
16
|
+
* <kendo-dialog-actions>
|
17
|
+
* <button kendoButton fillMode="flat" themeColor="primary" (click)="onPrimaryActionClick()">
|
18
|
+
* Primary Action
|
19
|
+
* </button>
|
20
|
+
* </kendo-dialog-actions>
|
21
|
+
* </kendo-dialog>
|
22
|
+
* ```
|
14
23
|
*/
|
15
24
|
export class DialogActionsComponent {
|
16
25
|
el;
|
@@ -17,6 +17,14 @@ import * as i1 from "@progress/kendo-angular-l10n";
|
|
17
17
|
*
|
18
18
|
* Use this component as part of the Dialog content when you create the Dialog dynamically with an [Angular service]({% slug service_dialog %}).
|
19
19
|
*
|
20
|
+
* ```html
|
21
|
+
* <kendo-dialog>
|
22
|
+
* <kendo-dialog-titlebar [id]="dialogId" (close)="onClose()">
|
23
|
+
* Dialog Title
|
24
|
+
* </kendo-dialog-titlebar>
|
25
|
+
* </kendo-dialog>
|
26
|
+
* ```
|
27
|
+
*
|
20
28
|
*/
|
21
29
|
export class DialogTitleBarComponent {
|
22
30
|
zone;
|
@@ -42,6 +42,9 @@ const DEFAULT_ANIMATION_CONFIG = { duration: 300, type: 'translate' };
|
|
42
42
|
* })
|
43
43
|
* export class AppComponent {}
|
44
44
|
* ```
|
45
|
+
*
|
46
|
+
* @remarks
|
47
|
+
* Supported children components are: {@link DialogTitleBarComponent}, {@link DialogActionsComponent}, {@link CustomMessagesComponent}.
|
45
48
|
*/
|
46
49
|
export class DialogComponent {
|
47
50
|
wrapper;
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
13
|
-
publishDate:
|
14
|
-
version: '19.1.2-develop.
|
13
|
+
publishDate: 1750430780,
|
14
|
+
version: '19.1.2-develop.5',
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
16
16
|
};
|
@@ -12,6 +12,13 @@ import { DragResizeService } from '../drag-resize.service';
|
|
12
12
|
import * as i0 from "@angular/core";
|
13
13
|
import * as i1 from "../drag-resize.service";
|
14
14
|
import * as i2 from "@progress/kendo-angular-l10n";
|
15
|
+
/**
|
16
|
+
* Represents the close action directive of the Window component.
|
17
|
+
*
|
18
|
+
* ```html
|
19
|
+
* <button kendoWindowCloseAction>Close</button>
|
20
|
+
* ```
|
21
|
+
*/
|
15
22
|
export class WindowCloseActionDirective extends Button {
|
16
23
|
/**
|
17
24
|
* @hidden
|
@@ -12,6 +12,13 @@ import { DragResizeService } from './../drag-resize.service';
|
|
12
12
|
import * as i0 from "@angular/core";
|
13
13
|
import * as i1 from "./../drag-resize.service";
|
14
14
|
import * as i2 from "@progress/kendo-angular-l10n";
|
15
|
+
/**
|
16
|
+
* Represents the maximize action directive of the Window component.
|
17
|
+
*
|
18
|
+
* ```html
|
19
|
+
* <button kendoWindowMaximizeAction>Maximize</button>
|
20
|
+
* ```
|
21
|
+
*/
|
15
22
|
export class WindowMaximizeActionDirective extends Button {
|
16
23
|
/**
|
17
24
|
* @hidden
|
@@ -12,6 +12,13 @@ import { DragResizeService } from './../drag-resize.service';
|
|
12
12
|
import * as i0 from "@angular/core";
|
13
13
|
import * as i1 from "./../drag-resize.service";
|
14
14
|
import * as i2 from "@progress/kendo-angular-l10n";
|
15
|
+
/**
|
16
|
+
* Represents the minimize action directive of the Window component.
|
17
|
+
*
|
18
|
+
* ```html
|
19
|
+
* <button kendoWindowMinimizeAction>Minimize</button>
|
20
|
+
* ```
|
21
|
+
*/
|
15
22
|
export class WindowMinimizeActionDirective extends Button {
|
16
23
|
/**
|
17
24
|
* @hidden
|
@@ -12,6 +12,13 @@ import { DragResizeService } from './../drag-resize.service';
|
|
12
12
|
import * as i0 from "@angular/core";
|
13
13
|
import * as i1 from "./../drag-resize.service";
|
14
14
|
import * as i2 from "@progress/kendo-angular-l10n";
|
15
|
+
/**
|
16
|
+
* Represents the restore action directive of the Window component.
|
17
|
+
*
|
18
|
+
* ```html
|
19
|
+
* <button kendoWindowRestoreAction>Restore</button>
|
20
|
+
* ```
|
21
|
+
*/
|
15
22
|
export class WindowRestoreActionDirective extends Button {
|
16
23
|
/**
|
17
24
|
* @hidden
|
@@ -34,6 +34,9 @@ import * as i3 from "@progress/kendo-angular-l10n";
|
|
34
34
|
* <kendo-window title="My Window" [width]="400" [height]="300">
|
35
35
|
* </kendo-window>
|
36
36
|
* ```
|
37
|
+
*
|
38
|
+
* @remarks
|
39
|
+
* Supported children components are: {@link CustomMessagesComponent}, {@link WindowTitleBarComponent}.
|
37
40
|
*/
|
38
41
|
export class WindowComponent {
|
39
42
|
el;
|
@@ -24,6 +24,15 @@ import { IconWrapperComponent, IconsService } from '@progress/kendo-angular-icon
|
|
24
24
|
* Represents the action buttons of the Dialog.
|
25
25
|
* ([See example.]({% slug actionbuttons_dialog %}))
|
26
26
|
*
|
27
|
+
* ```html
|
28
|
+
* <kendo-dialog>
|
29
|
+
* <kendo-dialog-actions>
|
30
|
+
* <button kendoButton fillMode="flat" themeColor="primary" (click)="onPrimaryActionClick()">
|
31
|
+
* Primary Action
|
32
|
+
* </button>
|
33
|
+
* </kendo-dialog-actions>
|
34
|
+
* </kendo-dialog>
|
35
|
+
* ```
|
27
36
|
*/
|
28
37
|
class DialogActionsComponent {
|
29
38
|
el;
|
@@ -329,6 +338,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
329
338
|
*
|
330
339
|
* Use this component as part of the Dialog content when you create the Dialog dynamically with an [Angular service]({% slug service_dialog %}).
|
331
340
|
*
|
341
|
+
* ```html
|
342
|
+
* <kendo-dialog>
|
343
|
+
* <kendo-dialog-titlebar [id]="dialogId" (close)="onClose()">
|
344
|
+
* Dialog Title
|
345
|
+
* </kendo-dialog-titlebar>
|
346
|
+
* </kendo-dialog>
|
347
|
+
* ```
|
348
|
+
*
|
332
349
|
*/
|
333
350
|
class DialogTitleBarComponent {
|
334
351
|
zone;
|
@@ -481,8 +498,8 @@ const packageMetadata = {
|
|
481
498
|
productName: 'Kendo UI for Angular',
|
482
499
|
productCode: 'KENDOUIANGULAR',
|
483
500
|
productCodes: ['KENDOUIANGULAR'],
|
484
|
-
publishDate:
|
485
|
-
version: '19.1.2-develop.
|
501
|
+
publishDate: 1750430780,
|
502
|
+
version: '19.1.2-develop.5',
|
486
503
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
487
504
|
};
|
488
505
|
|
@@ -791,6 +808,9 @@ const DEFAULT_ANIMATION_CONFIG = { duration: 300, type: 'translate' };
|
|
791
808
|
* })
|
792
809
|
* export class AppComponent {}
|
793
810
|
* ```
|
811
|
+
*
|
812
|
+
* @remarks
|
813
|
+
* Supported children components are: {@link DialogTitleBarComponent}, {@link DialogActionsComponent}, {@link CustomMessagesComponent}.
|
794
814
|
*/
|
795
815
|
class DialogComponent {
|
796
816
|
wrapper;
|
@@ -2486,6 +2506,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
2486
2506
|
type: Injectable
|
2487
2507
|
}], ctorParameters: function () { return [{ type: DragResizeService }, { type: i0.NgZone }]; } });
|
2488
2508
|
|
2509
|
+
/**
|
2510
|
+
* Represents the close action directive of the Window component.
|
2511
|
+
*
|
2512
|
+
* ```html
|
2513
|
+
* <button kendoWindowCloseAction>Close</button>
|
2514
|
+
* ```
|
2515
|
+
*/
|
2489
2516
|
class WindowCloseActionDirective extends Button {
|
2490
2517
|
/**
|
2491
2518
|
* @hidden
|
@@ -2575,6 +2602,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
2575
2602
|
args: ['click']
|
2576
2603
|
}] } });
|
2577
2604
|
|
2605
|
+
/**
|
2606
|
+
* Represents the restore action directive of the Window component.
|
2607
|
+
*
|
2608
|
+
* ```html
|
2609
|
+
* <button kendoWindowRestoreAction>Restore</button>
|
2610
|
+
* ```
|
2611
|
+
*/
|
2578
2612
|
class WindowRestoreActionDirective extends Button {
|
2579
2613
|
/**
|
2580
2614
|
* @hidden
|
@@ -2670,6 +2704,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
2670
2704
|
args: ['style.display']
|
2671
2705
|
}] } });
|
2672
2706
|
|
2707
|
+
/**
|
2708
|
+
* Represents the maximize action directive of the Window component.
|
2709
|
+
*
|
2710
|
+
* ```html
|
2711
|
+
* <button kendoWindowMaximizeAction>Maximize</button>
|
2712
|
+
* ```
|
2713
|
+
*/
|
2673
2714
|
class WindowMaximizeActionDirective extends Button {
|
2674
2715
|
/**
|
2675
2716
|
* @hidden
|
@@ -2765,6 +2806,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
2765
2806
|
args: ['style.display']
|
2766
2807
|
}] } });
|
2767
2808
|
|
2809
|
+
/**
|
2810
|
+
* Represents the minimize action directive of the Window component.
|
2811
|
+
*
|
2812
|
+
* ```html
|
2813
|
+
* <button kendoWindowMinimizeAction>Minimize</button>
|
2814
|
+
* ```
|
2815
|
+
*/
|
2768
2816
|
class WindowMinimizeActionDirective extends Button {
|
2769
2817
|
/**
|
2770
2818
|
* @hidden
|
@@ -2868,6 +2916,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
2868
2916
|
* <kendo-window title="My Window" [width]="400" [height]="300">
|
2869
2917
|
* </kendo-window>
|
2870
2918
|
* ```
|
2919
|
+
*
|
2920
|
+
* @remarks
|
2921
|
+
* Supported children components are: {@link CustomMessagesComponent}, {@link WindowTitleBarComponent}.
|
2871
2922
|
*/
|
2872
2923
|
class WindowComponent {
|
2873
2924
|
el;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-dialog",
|
3
|
-
"version": "19.1.2-develop.
|
3
|
+
"version": "19.1.2-develop.5",
|
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": 1750430780,
|
27
27
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
28
28
|
}
|
29
29
|
},
|
@@ -33,15 +33,15 @@
|
|
33
33
|
"@angular/core": "16 - 20",
|
34
34
|
"@angular/platform-browser": "16 - 20",
|
35
35
|
"@progress/kendo-licensing": "^1.5.0",
|
36
|
-
"@progress/kendo-angular-buttons": "19.1.2-develop.
|
37
|
-
"@progress/kendo-angular-common": "19.1.2-develop.
|
38
|
-
"@progress/kendo-angular-icons": "19.1.2-develop.
|
39
|
-
"@progress/kendo-angular-l10n": "19.1.2-develop.
|
36
|
+
"@progress/kendo-angular-buttons": "19.1.2-develop.5",
|
37
|
+
"@progress/kendo-angular-common": "19.1.2-develop.5",
|
38
|
+
"@progress/kendo-angular-icons": "19.1.2-develop.5",
|
39
|
+
"@progress/kendo-angular-l10n": "19.1.2-develop.5",
|
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": "19.1.2-develop.
|
44
|
+
"@progress/kendo-angular-schematics": "19.1.2-develop.5",
|
45
45
|
"@progress/kendo-popup-common": "^1.7.0"
|
46
46
|
},
|
47
47
|
"schematics": "./schematics/collection.json",
|
@@ -4,7 +4,7 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
4
4
|
function default_1(options) {
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DialogsModule', package: 'dialog', peerDependencies: {
|
6
6
|
// Peer dependency of buttons
|
7
|
-
'@progress/kendo-angular-popup': '19.1.2-develop.
|
7
|
+
'@progress/kendo-angular-popup': '19.1.2-develop.5',
|
8
8
|
// Peer dependency of icons
|
9
9
|
'@progress/kendo-svg-icons': '^4.0.0'
|
10
10
|
} });
|
@@ -8,6 +8,13 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
8
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
9
9
|
import { DragResizeService } from '../drag-resize.service';
|
10
10
|
import * as i0 from "@angular/core";
|
11
|
+
/**
|
12
|
+
* Represents the close action directive of the Window component.
|
13
|
+
*
|
14
|
+
* ```html
|
15
|
+
* <button kendoWindowCloseAction>Close</button>
|
16
|
+
* ```
|
17
|
+
*/
|
11
18
|
export declare class WindowCloseActionDirective extends Button {
|
12
19
|
/**
|
13
20
|
* @hidden
|
@@ -8,6 +8,13 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
8
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
9
9
|
import { DragResizeService } from './../drag-resize.service';
|
10
10
|
import * as i0 from "@angular/core";
|
11
|
+
/**
|
12
|
+
* Represents the maximize action directive of the Window component.
|
13
|
+
*
|
14
|
+
* ```html
|
15
|
+
* <button kendoWindowMaximizeAction>Maximize</button>
|
16
|
+
* ```
|
17
|
+
*/
|
11
18
|
export declare class WindowMaximizeActionDirective extends Button {
|
12
19
|
/**
|
13
20
|
* @hidden
|
@@ -8,6 +8,13 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
8
|
import { SVGIcon } from "@progress/kendo-svg-icons";
|
9
9
|
import { DragResizeService } from './../drag-resize.service';
|
10
10
|
import * as i0 from "@angular/core";
|
11
|
+
/**
|
12
|
+
* Represents the minimize action directive of the Window component.
|
13
|
+
*
|
14
|
+
* ```html
|
15
|
+
* <button kendoWindowMinimizeAction>Minimize</button>
|
16
|
+
* ```
|
17
|
+
*/
|
11
18
|
export declare class WindowMinimizeActionDirective extends Button {
|
12
19
|
/**
|
13
20
|
* @hidden
|
@@ -8,6 +8,13 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
8
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
9
9
|
import { DragResizeService } from './../drag-resize.service';
|
10
10
|
import * as i0 from "@angular/core";
|
11
|
+
/**
|
12
|
+
* Represents the restore action directive of the Window component.
|
13
|
+
*
|
14
|
+
* ```html
|
15
|
+
* <button kendoWindowRestoreAction>Restore</button>
|
16
|
+
* ```
|
17
|
+
*/
|
11
18
|
export declare class WindowRestoreActionDirective extends Button {
|
12
19
|
/**
|
13
20
|
* @hidden
|
@@ -20,6 +20,9 @@ import * as i0 from "@angular/core";
|
|
20
20
|
* <kendo-window title="My Window" [width]="400" [height]="300">
|
21
21
|
* </kendo-window>
|
22
22
|
* ```
|
23
|
+
*
|
24
|
+
* @remarks
|
25
|
+
* Supported children components are: {@link CustomMessagesComponent}, {@link WindowTitleBarComponent}.
|
23
26
|
*/
|
24
27
|
export declare class WindowComponent implements OnInit, OnDestroy, OnChanges, AfterViewInit {
|
25
28
|
private el;
|