@progress/kendo-angular-tooltip
Advanced tools
Comparing version 11.1.0-develop.8 to 11.1.0-develop.9
{ | ||
"name": "@progress/kendo-angular-tooltip", | ||
"version": "11.1.0-develop.8", | ||
"version": "11.1.0-develop.9", | ||
"description": "Kendo UI Tooltip for Angular - A highly customizable and easily themeable tooltip from the creators developers trust for professional Angular components.", | ||
@@ -28,6 +28,6 @@ "license": "SEE LICENSE IN LICENSE.md", | ||
"@progress/kendo-licensing": "^1.0.2", | ||
"@progress/kendo-angular-common": "11.1.0-develop.8", | ||
"@progress/kendo-angular-l10n": "11.1.0-develop.8", | ||
"@progress/kendo-angular-popup": "11.1.0-develop.8", | ||
"@progress/kendo-angular-icons": "11.1.0-develop.8", | ||
"@progress/kendo-angular-common": "11.1.0-develop.9", | ||
"@progress/kendo-angular-l10n": "11.1.0-develop.9", | ||
"@progress/kendo-angular-popup": "11.1.0-develop.9", | ||
"@progress/kendo-angular-icons": "11.1.0-develop.9", | ||
"rxjs": "^6.5.3 || ^7.0.0" | ||
@@ -37,3 +37,3 @@ }, | ||
"tslib": "^2.3.1", | ||
"@progress/kendo-angular-schematics": "11.1.0-develop.8" | ||
"@progress/kendo-angular-schematics": "11.1.0-develop.9" | ||
}, | ||
@@ -40,0 +40,0 @@ "schematics": "./schematics/collection.json", |
@@ -34,3 +34,3 @@ /**----------------------------------------------------------------------------------------- | ||
toggle(): void; | ||
protected subscribeToEvents(arr: any[]): void; | ||
protected subscribeToShowEvents(arr: any[]): void; | ||
protected subscribeClick(): void; | ||
@@ -37,0 +37,0 @@ protected mouseenterHandler: () => void; |
@@ -54,3 +54,3 @@ /**----------------------------------------------------------------------------------------- | ||
protected blurHandler: (args: any) => void; | ||
protected subscribeToEvents(arr: any[]): void; | ||
protected subscribeToShowEvents(arr: any[]): void; | ||
private clickHandler; | ||
@@ -57,0 +57,0 @@ private controlVisibility; |
@@ -41,2 +41,6 @@ /**----------------------------------------------------------------------------------------- | ||
get showOn(): PopoverShowOption; | ||
/** | ||
* @hidden | ||
*/ | ||
private anchor; | ||
popupRef: PopupRef; | ||
@@ -80,4 +84,4 @@ protected disposeHoverOverListener: () => void; | ||
protected monitorPopup(): void; | ||
protected applySettings(contentComponent: ComponentRef<PopoverComponent>, popover: PopoverComponent, anchor: Element | ElementRef): void; | ||
protected abstract subscribeToEvents(args?: any): void; | ||
protected applySettings(contentComponent: ComponentRef<PopoverComponent>, popover: PopoverComponent): void; | ||
protected abstract subscribeToShowEvents(args?: any): void; | ||
protected abstract subscribeClick(): void; | ||
@@ -92,2 +96,3 @@ protected abstract mouseenterHandler(args?: any): void; | ||
private initializeEvents; | ||
private onKeyDown; | ||
private initializeCompletionEvents; | ||
@@ -94,0 +99,0 @@ private shouldEmitEvent; |
@@ -5,3 +5,3 @@ /**----------------------------------------------------------------------------------------- | ||
*-------------------------------------------------------------------------------------------*/ | ||
import { EventEmitter } from '@angular/core'; | ||
import { AfterViewInit, ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, Renderer2 } from '@angular/core'; | ||
import { LocalizationService } from '@progress/kendo-angular-l10n'; | ||
@@ -29,4 +29,7 @@ import { Position } from '../models/position.type'; | ||
*/ | ||
export declare class PopoverComponent { | ||
export declare class PopoverComponent implements OnInit, AfterViewInit, OnDestroy { | ||
private localization; | ||
private renderer; | ||
private element; | ||
private zone; | ||
/** | ||
@@ -145,2 +148,18 @@ * @hidden | ||
*/ | ||
closeOnKeyDown: EventEmitter<any>; | ||
/** | ||
* @hidden | ||
*/ | ||
popoverWrapper: ElementRef; | ||
/** | ||
* @hidden | ||
*/ | ||
titleTemplateWrapper: ElementRef; | ||
/** | ||
* @hidden | ||
*/ | ||
bodyTemplateWrapper: ElementRef; | ||
/** | ||
* @hidden | ||
*/ | ||
titleTemplate: PopoverTitleTemplateDirective; | ||
@@ -167,6 +186,11 @@ /** | ||
_height: string; | ||
/** | ||
* @hidden | ||
*/ | ||
popoverId: string; | ||
private _offset; | ||
private subs; | ||
constructor(localization: LocalizationService); | ||
constructor(localization: LocalizationService, renderer: Renderer2, element: ElementRef, zone: NgZone); | ||
ngOnInit(): void; | ||
ngAfterViewInit(): void; | ||
ngOnDestroy(): void; | ||
@@ -180,5 +204,8 @@ /** | ||
*/ | ||
onKeyDown(event: any): void; | ||
private _templateData; | ||
private keepFocusWithinComponent; | ||
private setAriaAttributes; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "kendo-popover", never, { "position": "position"; "offset": "offset"; "width": "width"; "height": "height"; "title": "title"; "subtitle": "subtitle"; "body": "body"; "callout": "callout"; "animation": "animation"; "templateData": "templateData"; }, { "show": "show"; "shown": "shown"; "hide": "hide"; "hidden": "hidden"; }, ["titleTemplate", "bodyTemplate", "actionsTemplate"], never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "kendo-popover", never, { "position": "position"; "offset": "offset"; "width": "width"; "height": "height"; "title": "title"; "subtitle": "subtitle"; "body": "body"; "callout": "callout"; "animation": "animation"; "templateData": "templateData"; }, { "show": "show"; "shown": "shown"; "hide": "hide"; "hidden": "hidden"; "closeOnKeyDown": "closeOnKeyDown"; }, ["titleTemplate", "bodyTemplate", "actionsTemplate"], never>; | ||
} |
@@ -10,3 +10,3 @@ /**----------------------------------------------------------------------------------------- | ||
*/ | ||
export declare const getId: (prefix: string) => string; | ||
export declare const getId: (prefix: string, idSource?: string) => string; | ||
/** | ||
@@ -40,1 +40,9 @@ * @hidden | ||
export declare function containsItem(collection: any, item: any): boolean; | ||
/** | ||
* @hidden | ||
*/ | ||
export declare function getAllFocusableChildren(parent: any): Array<any>; | ||
/** | ||
* @hidden | ||
*/ | ||
export declare function getFirstAndLastFocusable(parent: any): Array<HTMLElement>; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
386379
8208
+ Added@progress/kendo-angular-common@11.1.0-develop.9(transitive)
+ Added@progress/kendo-angular-icons@11.1.0-develop.9(transitive)
+ Added@progress/kendo-angular-l10n@11.1.0-develop.9(transitive)
+ Added@progress/kendo-angular-popup@11.1.0-develop.9(transitive)
+ Added@progress/kendo-angular-schematics@11.1.0-develop.9(transitive)
- Removed@progress/kendo-angular-common@11.1.0-develop.8(transitive)
- Removed@progress/kendo-angular-icons@11.1.0-develop.8(transitive)
- Removed@progress/kendo-angular-l10n@11.1.0-develop.8(transitive)
- Removed@progress/kendo-angular-popup@11.1.0-develop.8(transitive)
- Removed@progress/kendo-angular-schematics@11.1.0-develop.8(transitive)