@progress/kendo-angular-popup 24.2.2-develop.9 → 25.0.0-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.
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1783410861,
11
- "version": "24.2.2-develop.9",
10
+ "publishDate": 1783679736,
11
+ "version": "25.0.0-develop.1",
12
12
  "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"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-popup",
3
- "version": "24.2.2-develop.9",
3
+ "version": "25.0.0-develop.1",
4
4
  "description": "Kendo UI Angular Popup component - an easily customized popup from the most trusted provider of professional Angular components.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -34,23 +34,23 @@
34
34
  "package": {
35
35
  "productName": "Kendo UI for Angular",
36
36
  "productCode": "KENDOUIANGULAR",
37
- "publishDate": 1783410861,
37
+ "publishDate": 1783679736,
38
38
  "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"
39
39
  }
40
40
  },
41
41
  "peerDependencies": {
42
- "@angular/animations": "19 - 22",
43
- "@angular/common": "19 - 22",
44
- "@angular/core": "19 - 22",
45
- "@angular/platform-browser": "19 - 22",
46
- "@progress/kendo-angular-common": "24.2.2-develop.9",
42
+ "@angular/animations": "20 - 22",
43
+ "@angular/common": "20 - 22",
44
+ "@angular/core": "20 - 22",
45
+ "@angular/platform-browser": "20 - 22",
46
+ "@progress/kendo-angular-common": "25.0.0-develop.1",
47
47
  "@progress/kendo-licensing": "^1.11.0",
48
48
  "rxjs": "^6.5.3 || ^7.0.0"
49
49
  },
50
50
  "dependencies": {
51
51
  "@progress/kendo-popup-common": "1.9.5",
52
52
  "tslib": "^2.3.1",
53
- "@progress/kendo-angular-schematics": "24.2.2-develop.9"
53
+ "@progress/kendo-angular-schematics": "25.0.0-develop.1"
54
54
  },
55
55
  "schematics": "./schematics/collection.json",
56
56
  "module": "fesm2022/progress-kendo-angular-popup.mjs",
package/directives.d.ts DELETED
@@ -1,23 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { PopupComponent } from "./popup.component";
6
- /**
7
- * Use this utility array to access all `@progress/kendo-angular-popup`-related components and directives in a standalone Angular component.
8
- *
9
- * @example
10
- * ```typescript
11
- * import { Component } from '@angular/core';
12
- * import { KENDO_POPUP } from '@progress/kendo-angular-popup';
13
- *
14
- * @Component({
15
- * selector: 'my-app',
16
- * standalone: true,
17
- * imports: [KENDO_POPUP],
18
- * template: `<kendo-popup>Popup content.</kendo-popup>`
19
- * })
20
- * export class AppComponent {}
21
- * ```
22
- */
23
- export declare const KENDO_POPUP: readonly [typeof PopupComponent];
@@ -1,19 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef } from '@angular/core';
6
- import { AlignStrategy, MarginSettings, OffsetPosition } from '@progress/kendo-popup-common';
7
- import { PositionMode } from './position-mode';
8
- /**
9
- * @hidden
10
- */
11
- export interface AlignElementSettings {
12
- anchor?: HTMLElement;
13
- anchorAlign: AlignStrategy;
14
- element: ElementRef;
15
- elementAlign: AlignStrategy;
16
- margin?: MarginSettings;
17
- offset?: OffsetPosition;
18
- positionMode?: PositionMode;
19
- }
@@ -1,28 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { AlignStrategy } from '@progress/kendo-popup-common';
6
- /**
7
- * Specifies the horizontal and vertical align points for the component.
8
- */
9
- export interface Align extends AlignStrategy {
10
- /**
11
- * Specifies the horizontal point relative to the anchor or the Popup.
12
- *
13
- * The available options are:
14
- * - `left`&mdash;Uses the leftmost point of the `anchor` element.
15
- * - `center`&mdash;Uses the center point of the `anchor` element.
16
- * - `right`&mdash;Uses the rightmost point of the `anchor` element.
17
- */
18
- horizontal: 'left' | 'center' | 'right';
19
- /**
20
- * Specifies the vertical point relative to the anchor or the Popup.
21
- *
22
- * The available options are:
23
- * - `top`&mdash;Uses the top point of the `anchor` element.
24
- * - `center`&mdash;Uses the center point of the `anchor` element.
25
- * - `bottom`&mdash;Uses the bottom point of the `anchor` element.
26
- */
27
- vertical: 'top' | 'center' | 'bottom';
28
- }
@@ -1,18 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { CollisionType } from './collision.type';
6
- /**
7
- * Defines the horizontal and vertical collision behavior for the component.
8
- */
9
- export interface Collision {
10
- /**
11
- * Sets the horizontal collision behavior for the component.
12
- */
13
- horizontal: CollisionType;
14
- /**
15
- * Sets the vertical collision behavior for the component.
16
- */
17
- vertical: CollisionType;
18
- }
@@ -1,11 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Defines the possible collision behavior when the Popup is not fully visible.
7
- *
8
- * - `fit`&mdash;Moves the Popup horizontally until it is fully displayed in the viewport.
9
- * - `flip`&mdash;Flips the Popup position based on the origin and the position properties.
10
- */
11
- export type CollisionType = 'fit' | 'flip';
@@ -1,18 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { MarginSettings } from '@progress/kendo-popup-common';
6
- /**
7
- * Defines the horizontal and vertical margin offsets of the component.
8
- */
9
- export interface Margin extends MarginSettings {
10
- /**
11
- * Sets the horizontal margin value.
12
- */
13
- horizontal: number;
14
- /**
15
- * Sets the vertical margin value.
16
- */
17
- vertical: number;
18
- }
@@ -1,18 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { OffsetPosition } from '@progress/kendo-popup-common';
6
- /**
7
- * Defines the offset position of the Popup.
8
- */
9
- export interface Offset extends OffsetPosition {
10
- /**
11
- * Sets the top position of the Popup.
12
- */
13
- top: number;
14
- /**
15
- * Sets the left position of the Popup.
16
- */
17
- left: number;
18
- }
@@ -1,32 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * The animation settings for the Popup component.
7
- */
8
- export interface PopupAnimation {
9
- /**
10
- * Sets the type of the animation.
11
- * @default 'slide'
12
- */
13
- type?: AnimationType;
14
- /**
15
- * Sets the animation duration in milliseconds.
16
- * @default 100
17
- */
18
- duration: number;
19
- /**
20
- * Sets the animation direction. Applies if the type is `slide` or `expand`.
21
- * @default 'down'
22
- */
23
- direction: AnimationDirection;
24
- }
25
- /**
26
- * Defines the possible animation types for the Popup.
27
- */
28
- export type AnimationType = 'slide' | 'expand' | 'zoom' | 'fade';
29
- /**
30
- * Defines the possible animation directions for the Popup.
31
- */
32
- export type AnimationDirection = 'down' | 'up' | 'left' | 'right';
@@ -1,44 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ComponentRef, EventEmitter } from '@angular/core';
6
- import { PopupComponent } from '../popup.component';
7
- /**
8
- * Holds references to the object instance of the Popup.
9
- * Controls Popups opened through `PopupService` ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/api/popupservice#open)).
10
- */
11
- export interface PopupRef {
12
- /**
13
- * Provides a reference to the Popup instance.
14
- */
15
- popup: ComponentRef<PopupComponent>;
16
- /**
17
- * Provides a reference to the HTML element of the Popup.
18
- */
19
- popupElement: HTMLElement;
20
- /**
21
- * Provides a reference to the child component of the Popup. Available when the Popup opens with [`content`](https://www.telerik.com/kendo-angular-ui/components/popup/service#using-components).
22
- */
23
- content: ComponentRef<any>;
24
- /**
25
- * Closes and destroys the Popup.
26
- */
27
- close: Function;
28
- /**
29
- * Fires when the anchor scrolls outside the screen boundaries ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/closing)).
30
- */
31
- popupAnchorViewportLeave: EventEmitter<any>;
32
- /**
33
- * Fires after the component closes.
34
- */
35
- popupClose: EventEmitter<any>;
36
- /**
37
- * Fires after the component opens and the opening animation ends.
38
- */
39
- popupOpen: EventEmitter<any>;
40
- /**
41
- * Fires after the component opens and the Popup is positioned.
42
- */
43
- popupPositionChange: EventEmitter<any>;
44
- }
@@ -1,65 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef, TemplateRef, ViewContainerRef } from '@angular/core';
6
- import { Align } from './align.interface';
7
- import { Collision } from './collision.interface';
8
- import { Margin } from './margin.interface';
9
- import { Offset } from './offset.interface';
10
- import { PositionMode } from './position-mode';
11
- import { PopupAnimation } from './popup-animation.interface';
12
- /**
13
- * Defines the settings for the Popup when you open it through `PopupService` ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/api/popupservice#open)).
14
- */
15
- export interface PopupSettings {
16
- /**
17
- * Controls the Popup animation. By default, the open and close animations are enabled ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/animations)).
18
- */
19
- animate?: boolean | PopupAnimation;
20
- /**
21
- * Sets the element to use as an anchor. The Popup opens next to this element.
22
- */
23
- anchor?: ElementRef | HTMLElement;
24
- /**
25
- * Sets the container to which the Popup appends.
26
- */
27
- appendTo?: ViewContainerRef;
28
- /**
29
- * Sets the anchor pivot point ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning)).
30
- */
31
- anchorAlign?: Align;
32
- /**
33
- * Sets the content of the Popup.
34
- */
35
- content?: TemplateRef<any> | Function;
36
- /**
37
- * Sets the collision behavior of the Popup ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/viewport-boundary-detection)).
38
- */
39
- collision?: Collision;
40
- /**
41
- * Sets the margin value in pixels. Adds blank space between the Popup and the anchor.
42
- */
43
- margin?: Margin;
44
- /**
45
- * Sets the position mode of the component. By default, the Popup uses fixed positioning. To use absolute positioning, set this option to `absolute`.
46
- *
47
- * To support mobile browsers with the zoom option, use the `absolute` positioning of the Popup.
48
- */
49
- positionMode?: PositionMode;
50
- /**
51
- * Sets the pivot point of the Popup ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning)).
52
- */
53
- popupAlign?: Align;
54
- /**
55
- * Sets a list of CSS classes to add to the internal animated element ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/styling)).
56
- *
57
- * > To style the content of the Popup, use this property binding.
58
- */
59
- popupClass?: string | Array<string> | object | Set<string>;
60
- /**
61
- * Sets the absolute position of the element ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning#aligning-to-absolute-points)).
62
- * The Popup opens next to this point. The pivot point of the Popup is defined by the `popupAlign` option. The boundary detection uses the window viewport.
63
- */
64
- offset?: Offset;
65
- }
@@ -1,21 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef } from '@angular/core';
6
- import { AlignStrategy, CollisionStrategy, MarginSettings, OffsetPosition, ViewPort } from '@progress/kendo-popup-common';
7
- import { PositionMode } from './position-mode';
8
- /**
9
- * @hidden
10
- */
11
- export interface PositionElementSettings {
12
- anchor?: HTMLElement;
13
- anchorAlign: AlignStrategy;
14
- collisions: CollisionStrategy;
15
- currentLocation: OffsetPosition;
16
- element: ElementRef;
17
- elementAlign: AlignStrategy;
18
- margin: MarginSettings;
19
- positionMode?: PositionMode;
20
- viewPort?: ViewPort;
21
- }
@@ -1,8 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Defines all possible values for the `positionMode` property of the Popup.
7
- */
8
- export type PositionMode = 'absolute' | 'fixed';
@@ -1,13 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { OffsetPosition } from '@progress/kendo-popup-common';
6
- /**
7
- * @hidden
8
- */
9
- export interface Position {
10
- flipped: boolean;
11
- flip: any;
12
- offset: OffsetPosition;
13
- }
@@ -1,9 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { type PackageMetadata } from '@progress/kendo-licensing';
6
- /**
7
- * @hidden
8
- */
9
- export declare const packageMetadata: PackageMetadata;
@@ -1,157 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { AfterViewInit, ElementRef, EventEmitter, OnInit, OnChanges, OnDestroy, NgZone, Renderer2, TemplateRef } from '@angular/core';
6
- import { Align } from './models/align.interface';
7
- import { Collision } from './models/collision.interface';
8
- import { Offset } from './models/offset.interface';
9
- import { Margin } from './models/margin.interface';
10
- import { PositionMode } from './models/position-mode';
11
- import { PopupAnimation } from './models/popup-animation.interface';
12
- import { AlignService } from './services/align.service';
13
- import { DOMService } from './services/dom.service';
14
- import { PositionService } from './services/position.service';
15
- import { ResizeService } from './services/resize.service';
16
- import { ScrollableService } from './services/scrollable.service';
17
- import { AnimationService } from './services/animation.service';
18
- import { ResizeSensorComponent } from '@progress/kendo-angular-common';
19
- import * as i0 from "@angular/core";
20
- /**
21
- * Represents the [Kendo UI Popup component for Angular](https://www.telerik.com/kendo-angular-ui/components/popup).
22
- *
23
- * @example
24
- * ```html
25
- * <button #anchor (click)="show = !show">Toggle</button>
26
- * @if (show) {
27
- * <kendo-popup [anchor]="anchor">
28
- * <strong>Popup content!</strong>
29
- * </kendo-popup>
30
- * }
31
- * ```
32
- */
33
- export declare class PopupComponent implements AfterViewInit, OnInit, OnChanges, OnDestroy {
34
- container: ElementRef;
35
- private _alignService;
36
- domService: DOMService;
37
- private _positionService;
38
- private _resizeService;
39
- private _scrollableService;
40
- private animationService;
41
- private _renderer;
42
- private _zone;
43
- /**
44
- * Controls the Popup animation. By default, the opening and closing animations are enabled ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/animations)).
45
- * @default true
46
- */
47
- animate: boolean | PopupAnimation;
48
- /**
49
- * Sets the element to use as an anchor. The Popup opens next to this element. ([See example](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning#aligning-to-components)).
50
- */
51
- anchor: ElementRef | HTMLElement;
52
- /**
53
- * Sets the anchor pivot point ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning#positioning)).
54
- * @default '{ horizontal: "left", vertical: "bottom" }'
55
- */
56
- anchorAlign: Align;
57
- /**
58
- * Sets the collision behavior of the Popup ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/viewport-boundary-detection)).
59
- * @default '{ horizontal: "fit", vertical: "flip" }'
60
- */
61
- collision: Collision;
62
- /**
63
- * Sets the pivot point of the Popup ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning#positioning)).
64
- * @default '{ horizontal: "left", vertical: "top" }'
65
- */
66
- popupAlign: Align;
67
- /**
68
- * Controls whether the component copies the `anchor` font styles.
69
- * @default false
70
- */
71
- copyAnchorStyles: boolean;
72
- /**
73
- * Sets a list of CSS classes to add to the internal animated element ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/styling)).
74
- *
75
- * > To style the content of the Popup, use this property binding.
76
- */
77
- popupClass: string | Array<string> | object | Set<string>;
78
- /**
79
- * Sets the position mode of the component. By default, the Popup uses fixed positioning. To use absolute positioning, set this option to `absolute`.
80
- *
81
- * To support mobile browsers with the zoom option, use the `absolute` positioning of the Popup.
82
- * @default 'fixed'
83
- */
84
- positionMode: PositionMode;
85
- /**
86
- * Sets the absolute position of the element ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning#aligning-to-absolute-points)).
87
- * The Popup opens next to this point. The Popup pivot point is defined by the `popupAlign` option. The boundary detection uses the window viewport.
88
- * @default '{ left: -10000, top: 0 }'
89
- */
90
- offset: Offset;
91
- /**
92
- * Sets the margin value in pixels. Adds blank space between the Popup and the anchor ([see example](https://www.telerik.com/kendo-angular-ui/components/popup/aligning-positioning#adding-a-margin)).
93
- */
94
- margin: Margin;
95
- /**
96
- * Fires when the anchor scrolls outside the screen boundaries. ([See example](https://www.telerik.com/kendo-angular-ui/components/popup/closing)).
97
- */
98
- anchorViewportLeave: EventEmitter<any>;
99
- /**
100
- * Fires after the component closes.
101
- */
102
- close: EventEmitter<any>;
103
- /**
104
- * Fires after the component opens and the opening animation ends.
105
- */
106
- open: EventEmitter<any>;
107
- /**
108
- * Fires after the component is opened and the Popup is positioned.
109
- */
110
- positionChange: EventEmitter<any>;
111
- /**
112
- * @hidden
113
- */
114
- contentContainer?: ElementRef;
115
- /**
116
- * @hidden
117
- */
118
- resizeSensor: ResizeSensorComponent;
119
- /**
120
- * @hidden
121
- */
122
- content?: TemplateRef<any>;
123
- /**
124
- * @hidden
125
- */
126
- renderDefaultClass: boolean;
127
- private resolvedPromise;
128
- private _currentOffset?;
129
- private animationSubscriptions;
130
- private repositionSubscription;
131
- private initialCheck;
132
- constructor(container: ElementRef, _alignService: AlignService, domService: DOMService, _positionService: PositionService, _resizeService: ResizeService, _scrollableService: ScrollableService, animationService: AnimationService, _renderer: Renderer2, _zone: NgZone);
133
- ngOnInit(): void;
134
- ngOnChanges(changes: any): void;
135
- ngAfterViewInit(): void;
136
- ngAfterViewChecked(): void;
137
- ngOnDestroy(): void;
138
- /**
139
- * @hidden
140
- */
141
- onResize(): void;
142
- private onAnimationStart;
143
- private onAnimationEnd;
144
- private get currentOffset();
145
- private set currentOffset(value);
146
- private setZIndex;
147
- private reposition;
148
- private position;
149
- private onScroll;
150
- private copyFontStyles;
151
- private updateFixedClass;
152
- private setContainerStyle;
153
- private unsubscribeReposition;
154
- private get hasCustomOffset();
155
- static ɵfac: i0.ɵɵFactoryDeclaration<PopupComponent, never>;
156
- static ɵcmp: i0.ɵɵComponentDeclaration<PopupComponent, "kendo-popup", ["kendo-popup"], { "animate": { "alias": "animate"; "required": false; }; "anchor": { "alias": "anchor"; "required": false; }; "anchorAlign": { "alias": "anchorAlign"; "required": false; }; "collision": { "alias": "collision"; "required": false; }; "popupAlign": { "alias": "popupAlign"; "required": false; }; "copyAnchorStyles": { "alias": "copyAnchorStyles"; "required": false; }; "popupClass": { "alias": "popupClass"; "required": false; }; "positionMode": { "alias": "positionMode"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; }, { "anchorViewportLeave": "anchorViewportLeave"; "close": "close"; "open": "open"; "positionChange": "positionChange"; }, never, ["*"], true, never>;
157
- }
package/popup.module.d.ts DELETED
@@ -1,41 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "@progress/kendo-angular-common";
7
- import * as i2 from "./popup.component";
8
- /**
9
- * Required for adding all Popup features in NgModule-based Angular applications.
10
- *
11
- * @example
12
- * ```ts-no-run
13
- * // Import the Popup module
14
- * import { PopupModule } from '@progress/kendo-angular-popup';
15
- *
16
- * // The browser platform with a compiler
17
- * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
18
- *
19
- * import { NgModule } from '@angular/core';
20
- *
21
- * // Import the app component
22
- * import { AppComponent } from './app.component';
23
- *
24
- * // Define the app module
25
- * _@NgModule({
26
- * declarations: [AppComponent], // declare app component
27
- * imports: [BrowserModule, PopupModule], // import Popup module
28
- * bootstrap: [AppComponent]
29
- * })
30
- * export class AppModule {}
31
- *
32
- * // Compile and launch the module
33
- * platformBrowserDynamic().bootstrapModule(AppModule);
34
- *
35
- * ```
36
- */
37
- export declare class PopupModule {
38
- static ɵfac: i0.ɵɵFactoryDeclaration<PopupModule, never>;
39
- static ɵmod: i0.ɵɵNgModuleDeclaration<PopupModule, never, [typeof i1.ResizeSensorComponent, typeof i2.PopupComponent], [typeof i2.PopupComponent]>;
40
- static ɵinj: i0.ɵɵInjectorDeclaration<PopupModule>;
41
- }