@progress/kendo-angular-tooltip 24.2.2 → 25.0.0-develop.2
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/fesm2022/progress-kendo-angular-tooltip.mjs +50 -50
- package/index.d.ts +1005 -21
- package/package-metadata.mjs +2 -2
- package/package.json +11 -11
- package/constants.d.ts +0 -12
- package/directives.d.ts +0 -87
- package/localization/localized-messages.directive.d.ts +0 -19
- package/models/animation.model.d.ts +0 -9
- package/models/events.d.ts +0 -76
- package/models/functions.model.d.ts +0 -15
- package/models/popover-show-option.type.d.ts +0 -14
- package/models/position.type.d.ts +0 -14
- package/models/show.option.type.d.ts +0 -13
- package/models/theme-color.type.d.ts +0 -16
- package/package-metadata.d.ts +0 -9
- package/popover/anchor.directive.d.ts +0 -48
- package/popover/container.directive.d.ts +0 -57
- package/popover/directives-base.d.ts +0 -92
- package/popover/popover.component.d.ts +0 -195
- package/popover/popover.service.d.ts +0 -33
- package/popover/template-directives/actions-template.directive.d.ts +0 -27
- package/popover/template-directives/body-template.directive.d.ts +0 -27
- package/popover/template-directives/title-template.directive.d.ts +0 -27
- package/popover.module.d.ts +0 -34
- package/tooltip/tooltip.content.component.d.ts +0 -55
- package/tooltip/tooltip.directive.d.ts +0 -160
- package/tooltip/tooltip.settings.d.ts +0 -68
- package/tooltip.module.d.ts +0 -30
- package/tooltips.module.d.ts +0 -37
- package/utils.d.ts +0 -46
package/tooltips.module.d.ts
DELETED
|
@@ -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>;
|