@progress/kendo-angular-tooltip 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.
@@ -1,37 +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 "./tooltip/tooltip.directive";
7
- import * as i2 from "./tooltip/tooltip.content.component";
8
- import * as i3 from "./localization/localized-messages.directive";
9
- import * as i4 from "./popover/popover.component";
10
- import * as i5 from "./popover/template-directives/actions-template.directive";
11
- import * as i6 from "./popover/template-directives/body-template.directive";
12
- import * as i7 from "./popover/template-directives/title-template.directive";
13
- import * as i8 from "./popover/anchor.directive";
14
- import * as i9 from "./popover/container.directive";
15
- /**
16
- * Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi'])
17
- * definition for the Tooltips components.
18
- *
19
- * @example
20
- * ```typescript
21
- * import { TooltipsModule } from '@progress/kendo-angular-tooltip';
22
- * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
23
- * import { NgModule } from '@angular/core';
24
- *
25
- * @NgModule({
26
- * declarations: [AppComponent],
27
- * imports: [BrowserModule, TooltipsModule],
28
- * bootstrap: [AppComponent]
29
- * })
30
- * export class AppModule {}
31
- * ```
32
- */
33
- export declare class TooltipsModule {
34
- static ɵfac: i0.ɵɵFactoryDeclaration<TooltipsModule, never>;
35
- static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipsModule, never, [typeof i1.TooltipDirective, typeof i2.TooltipContentComponent, typeof i3.LocalizedMessagesDirective, typeof i4.PopoverComponent, typeof i5.PopoverActionsTemplateDirective, typeof i6.PopoverBodyTemplateDirective, typeof i7.PopoverTitleTemplateDirective, typeof i8.PopoverAnchorDirective, typeof i9.PopoverContainerDirective], [typeof i1.TooltipDirective, typeof i2.TooltipContentComponent, typeof i3.LocalizedMessagesDirective, typeof i4.PopoverComponent, typeof i5.PopoverActionsTemplateDirective, typeof i6.PopoverBodyTemplateDirective, typeof i7.PopoverTitleTemplateDirective, typeof i8.PopoverAnchorDirective, typeof i9.PopoverContainerDirective]>;
36
- static ɵinj: i0.ɵɵInjectorDeclaration<TooltipsModule>;
37
- }
package/utils.d.ts DELETED
@@ -1,46 +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 { Position } from './models/position.type';
6
- import { Collision } from '@progress/kendo-angular-popup';
7
- /**
8
- * @hidden
9
- */
10
- export declare const getId: (prefix: string, idSource?: string) => string;
11
- /**
12
- * @hidden
13
- */
14
- export declare function align(position: Position, offset?: number): any;
15
- /**
16
- * @hidden
17
- */
18
- export declare function collision(inputcollision: Collision, position: Position): Collision;
19
- /**
20
- * @hidden
21
- */
22
- export declare function closestBySelector(element: any, selector: string): any;
23
- /**
24
- * @hidden
25
- */
26
- export declare function contains(container: Element, child: Element): boolean;
27
- /**
28
- * @hidden
29
- */
30
- export declare const hasParent: (node: any, parent: any) => any;
31
- /**
32
- * @hidden
33
- */
34
- export declare function getCenterOffset(item: Element, dir: string, size: string): number;
35
- /**
36
- * @hidden
37
- */
38
- export declare function containsItem(collection: any, item: any): boolean;
39
- /**
40
- * @hidden
41
- */
42
- export declare function getAllFocusableChildren(parent: any): Array<any>;
43
- /**
44
- * @hidden
45
- */
46
- export declare function getFirstAndLastFocusable(parent: any): Array<HTMLElement>;