@progress/kendo-angular-tooltip 25.0.0-develop.1 → 25.0.0-develop.3
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 +285 -87
- package/index.d.ts +103 -41
- package/package-metadata.mjs +2 -2
- package/package.json +7 -7
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
|
-
import { forwardRef, Input, Directive, Optional, isDevMode, EventEmitter, HostBinding, ContentChild, ViewChild, Output, Component, ElementRef, Injectable, InjectionToken, Inject, NgModule } from '@angular/core';
|
|
6
|
+
import { forwardRef, Input, Directive, Optional, isDevMode, EventEmitter, signal, afterNextRender, HostBinding, ContentChild, ViewChild, Output, ChangeDetectionStrategy, Component, ElementRef, ChangeDetectorRef, Injectable, InjectionToken, Inject, NgModule } from '@angular/core';
|
|
7
7
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
8
8
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
9
9
|
import { PreventableEvent, focusableSelector, Keys, isDocumentAvailable, closest, hasObservers, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
10
10
|
import * as i1$1 from '@progress/kendo-angular-popup';
|
|
11
11
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
12
|
-
import {
|
|
12
|
+
import { auditTime, take, filter } from 'rxjs/operators';
|
|
13
13
|
import { Subscription, BehaviorSubject, Subject, combineLatest, fromEvent } from 'rxjs';
|
|
14
14
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
15
15
|
import { NgStyle, NgClass, NgTemplateOutlet } from '@angular/common';
|
|
@@ -302,8 +302,8 @@ const packageMetadata = {
|
|
|
302
302
|
productName: 'Kendo UI for Angular',
|
|
303
303
|
productCode: 'KENDOUIANGULAR',
|
|
304
304
|
productCodes: ['KENDOUIANGULAR'],
|
|
305
|
-
publishDate:
|
|
306
|
-
version: '25.0.0-develop.
|
|
305
|
+
publishDate: 1783692540,
|
|
306
|
+
version: '25.0.0-develop.3',
|
|
307
307
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
308
308
|
};
|
|
309
309
|
|
|
@@ -423,7 +423,6 @@ class PopoverComponent {
|
|
|
423
423
|
localization;
|
|
424
424
|
renderer;
|
|
425
425
|
element;
|
|
426
|
-
zone;
|
|
427
426
|
/**
|
|
428
427
|
* @hidden
|
|
429
428
|
*/
|
|
@@ -433,20 +432,25 @@ class PopoverComponent {
|
|
|
433
432
|
*
|
|
434
433
|
* @default 'right'
|
|
435
434
|
*/
|
|
436
|
-
position
|
|
435
|
+
set position(value) {
|
|
436
|
+
this._position.set(value);
|
|
437
|
+
}
|
|
438
|
+
get position() {
|
|
439
|
+
return this._position();
|
|
440
|
+
}
|
|
437
441
|
/**
|
|
438
442
|
* Specifies the distance from the Popover to its anchor element in pixels.
|
|
439
443
|
*
|
|
440
444
|
* @default 6
|
|
441
445
|
*/
|
|
442
446
|
set offset(value) {
|
|
443
|
-
this._offset
|
|
447
|
+
this._offset.set(value);
|
|
444
448
|
}
|
|
445
449
|
get offset() {
|
|
446
450
|
const calloutBuffer = 14;
|
|
447
451
|
return this.callout
|
|
448
|
-
? calloutBuffer + this._offset
|
|
449
|
-
: this._offset;
|
|
452
|
+
? calloutBuffer + this._offset()
|
|
453
|
+
: this._offset();
|
|
450
454
|
}
|
|
451
455
|
/**
|
|
452
456
|
* Determines the width of the Popover. Numeric values are treated as pixels.
|
|
@@ -454,10 +458,10 @@ class PopoverComponent {
|
|
|
454
458
|
* @default 'auto'
|
|
455
459
|
*/
|
|
456
460
|
set width(value) {
|
|
457
|
-
this.
|
|
461
|
+
this._widthValue.set(typeof value === 'number' ? `${value}px` : value);
|
|
458
462
|
}
|
|
459
463
|
get width() {
|
|
460
|
-
return this.
|
|
464
|
+
return this._widthValue();
|
|
461
465
|
}
|
|
462
466
|
/**
|
|
463
467
|
* Determines the height of the Popover. Numeric values are treated as pixels.
|
|
@@ -465,10 +469,10 @@ class PopoverComponent {
|
|
|
465
469
|
* @default 'auto'
|
|
466
470
|
*/
|
|
467
471
|
set height(value) {
|
|
468
|
-
this.
|
|
472
|
+
this._heightValue.set(typeof value === 'number' ? `${value}px` : value);
|
|
469
473
|
}
|
|
470
474
|
get height() {
|
|
471
|
-
return this.
|
|
475
|
+
return this._heightValue();
|
|
472
476
|
}
|
|
473
477
|
/**
|
|
474
478
|
* @hidden
|
|
@@ -477,24 +481,44 @@ class PopoverComponent {
|
|
|
477
481
|
/**
|
|
478
482
|
* Specifies the main header text of the Popover. If a `titleTemplate` is provided, it takes precedence.
|
|
479
483
|
*/
|
|
480
|
-
title
|
|
484
|
+
set title(value) {
|
|
485
|
+
this._title.set(value);
|
|
486
|
+
}
|
|
487
|
+
get title() {
|
|
488
|
+
return this._title();
|
|
489
|
+
}
|
|
481
490
|
/**
|
|
482
491
|
* @hidden
|
|
483
492
|
* Specifies the secondary header text of the Popover.
|
|
484
493
|
*
|
|
485
494
|
* If a `titleTemplate` is provided it would take precedence over the subtitle.
|
|
486
495
|
*/
|
|
487
|
-
subtitle
|
|
496
|
+
set subtitle(value) {
|
|
497
|
+
this._subtitle.set(value);
|
|
498
|
+
}
|
|
499
|
+
get subtitle() {
|
|
500
|
+
return this._subtitle();
|
|
501
|
+
}
|
|
488
502
|
/**
|
|
489
503
|
* Represents the text rendered in the Popover body section. If a `bodyTemplate` is provided, it takes precedence.
|
|
490
504
|
*/
|
|
491
|
-
body
|
|
505
|
+
set body(value) {
|
|
506
|
+
this._body.set(value);
|
|
507
|
+
}
|
|
508
|
+
get body() {
|
|
509
|
+
return this._body();
|
|
510
|
+
}
|
|
492
511
|
/**
|
|
493
512
|
* Determines whether a callout is rendered along the Popover. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/popover/callout).
|
|
494
513
|
*
|
|
495
514
|
* @default true
|
|
496
515
|
*/
|
|
497
|
-
callout
|
|
516
|
+
set callout(value) {
|
|
517
|
+
this._callout.set(value);
|
|
518
|
+
}
|
|
519
|
+
get callout() {
|
|
520
|
+
return this._callout();
|
|
521
|
+
}
|
|
498
522
|
/**
|
|
499
523
|
* Enables and configures the Popover animation. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/popover/animations).
|
|
500
524
|
*
|
|
@@ -502,7 +526,12 @@ class PopoverComponent {
|
|
|
502
526
|
*
|
|
503
527
|
* @default false
|
|
504
528
|
*/
|
|
505
|
-
animation
|
|
529
|
+
set animation(value) {
|
|
530
|
+
this._animation.set(value);
|
|
531
|
+
}
|
|
532
|
+
get animation() {
|
|
533
|
+
return this._animation();
|
|
534
|
+
}
|
|
506
535
|
/**
|
|
507
536
|
* Defines a callback function that returns custom data for the Popover templates.
|
|
508
537
|
* The function exposes the `anchor` element as an argument and returns an object that can be used in the templates. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/popover/templates#passing-data-to-templates).
|
|
@@ -511,16 +540,21 @@ class PopoverComponent {
|
|
|
511
540
|
if (isDevMode && typeof fn !== 'function') {
|
|
512
541
|
throw new Error(`${ERRORS.templateData} ${JSON.stringify(fn)}.`);
|
|
513
542
|
}
|
|
514
|
-
this._templateData
|
|
543
|
+
this._templateData.set(fn);
|
|
515
544
|
}
|
|
516
545
|
get templateData() {
|
|
517
|
-
return this._templateData;
|
|
546
|
+
return this._templateData();
|
|
518
547
|
}
|
|
519
548
|
/**
|
|
520
549
|
* @hidden
|
|
521
550
|
* Determines the visibility of the Popover.
|
|
522
551
|
*/
|
|
523
|
-
visible
|
|
552
|
+
get visible() {
|
|
553
|
+
return this._visible();
|
|
554
|
+
}
|
|
555
|
+
set visible(value) {
|
|
556
|
+
this._visible.set(value);
|
|
557
|
+
}
|
|
524
558
|
/**
|
|
525
559
|
* @hidden
|
|
526
560
|
*/
|
|
@@ -584,32 +618,38 @@ class PopoverComponent {
|
|
|
584
618
|
/**
|
|
585
619
|
* @hidden
|
|
586
620
|
*/
|
|
587
|
-
_width
|
|
621
|
+
get _width() {
|
|
622
|
+
return this._widthValue();
|
|
623
|
+
}
|
|
588
624
|
/**
|
|
589
625
|
* @hidden
|
|
590
626
|
*/
|
|
591
|
-
_height
|
|
627
|
+
get _height() {
|
|
628
|
+
return this._heightValue();
|
|
629
|
+
}
|
|
592
630
|
/**
|
|
593
631
|
* @hidden
|
|
594
632
|
*/
|
|
595
633
|
popoverId = '';
|
|
596
|
-
|
|
634
|
+
_position = signal('right', ...(ngDevMode ? [{ debugName: "_position" }] : []));
|
|
635
|
+
_offset = signal(6, ...(ngDevMode ? [{ debugName: "_offset" }] : []));
|
|
636
|
+
_widthValue = signal('auto', ...(ngDevMode ? [{ debugName: "_widthValue" }] : []));
|
|
637
|
+
_heightValue = signal('auto', ...(ngDevMode ? [{ debugName: "_heightValue" }] : []));
|
|
638
|
+
_title = signal(undefined, ...(ngDevMode ? [{ debugName: "_title" }] : []));
|
|
639
|
+
_subtitle = signal(undefined, ...(ngDevMode ? [{ debugName: "_subtitle" }] : []));
|
|
640
|
+
_body = signal(undefined, ...(ngDevMode ? [{ debugName: "_body" }] : []));
|
|
641
|
+
_callout = signal(true, ...(ngDevMode ? [{ debugName: "_callout" }] : []));
|
|
642
|
+
_animation = signal(false, ...(ngDevMode ? [{ debugName: "_animation" }] : []));
|
|
643
|
+
_templateData = signal(() => null, ...(ngDevMode ? [{ debugName: "_templateData" }] : []));
|
|
644
|
+
_visible = signal(false, ...(ngDevMode ? [{ debugName: "_visible" }] : []));
|
|
597
645
|
subs = new Subscription();
|
|
598
|
-
constructor(localization, renderer, element
|
|
646
|
+
constructor(localization, renderer, element) {
|
|
599
647
|
this.localization = localization;
|
|
600
648
|
this.renderer = renderer;
|
|
601
649
|
this.element = element;
|
|
602
|
-
this.zone = zone;
|
|
603
650
|
validatePackage(packageMetadata);
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
this.popoverId = getId('k-popover');
|
|
607
|
-
this.subs.add(this.localization.changes.subscribe(({ rtl }) => { this.direction = rtl ? 'rtl' : 'ltr'; }));
|
|
608
|
-
this.subs.add(this.renderer.listen(this.element.nativeElement, 'keydown', event => this.onKeyDown(event)));
|
|
609
|
-
}
|
|
610
|
-
ngAfterViewInit() {
|
|
611
|
-
this.zone.onStable.pipe(take(1)).subscribe(() => {
|
|
612
|
-
if (this.visible) {
|
|
651
|
+
afterNextRender(() => {
|
|
652
|
+
if (this.visible && this.popoverWrapper) {
|
|
613
653
|
const wrapper = this.popoverWrapper.nativeElement;
|
|
614
654
|
const focusablePopoverChildren = getAllFocusableChildren(wrapper);
|
|
615
655
|
if (focusablePopoverChildren.length > 0) {
|
|
@@ -619,6 +659,11 @@ class PopoverComponent {
|
|
|
619
659
|
}
|
|
620
660
|
});
|
|
621
661
|
}
|
|
662
|
+
ngOnInit() {
|
|
663
|
+
this.popoverId = getId('k-popover');
|
|
664
|
+
this.subs.add(this.localization.changes.subscribe(({ rtl }) => { this.direction = rtl ? 'rtl' : 'ltr'; }));
|
|
665
|
+
this.subs.add(this.renderer.listen(this.element.nativeElement, 'keydown', event => this.onKeyDown(event)));
|
|
666
|
+
}
|
|
622
667
|
ngOnDestroy() {
|
|
623
668
|
this.subs.unsubscribe();
|
|
624
669
|
}
|
|
@@ -647,7 +692,6 @@ class PopoverComponent {
|
|
|
647
692
|
this.closeOnKeyDown.emit();
|
|
648
693
|
}
|
|
649
694
|
}
|
|
650
|
-
_templateData = () => null;
|
|
651
695
|
keepFocusWithinComponent(target, event) {
|
|
652
696
|
const wrapper = this.popoverWrapper.nativeElement;
|
|
653
697
|
const [firstFocusable, lastFocusable] = getFirstAndLastFocusable(wrapper);
|
|
@@ -682,7 +726,7 @@ class PopoverComponent {
|
|
|
682
726
|
this.renderer.setAttribute(wrapper, 'id', this.popoverId);
|
|
683
727
|
this.renderer.setAttribute(wrapper, 'role', focusablePopoverChildren.length > 0 ? 'dialog' : 'tooltip');
|
|
684
728
|
}
|
|
685
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: PopoverComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }
|
|
729
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: PopoverComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
686
730
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: PopoverComponent, isStandalone: true, selector: "kendo-popover", inputs: { position: "position", offset: "offset", width: "width", height: "height", title: "title", subtitle: "subtitle", body: "body", callout: "callout", animation: "animation", templateData: "templateData" }, outputs: { show: "show", shown: "shown", hide: "hide", hidden: "hidden", closeOnKeyDown: "closeOnKeyDown" }, host: { properties: { "attr.dir": "this.direction", "class.k-hidden": "this.isHidden", "attr.aria-hidden": "this.hasAttributeHidden", "style.width": "this._width", "style.height": "this._height" } }, providers: [
|
|
687
731
|
LocalizationService,
|
|
688
732
|
{
|
|
@@ -777,7 +821,7 @@ class PopoverComponent {
|
|
|
777
821
|
</ng-template>
|
|
778
822
|
</div>
|
|
779
823
|
}
|
|
780
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
824
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
781
825
|
}
|
|
782
826
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: PopoverComponent, decorators: [{
|
|
783
827
|
type: Component,
|
|
@@ -880,9 +924,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
880
924
|
}
|
|
881
925
|
`,
|
|
882
926
|
standalone: true,
|
|
927
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
883
928
|
imports: [NgStyle, NgClass, NgTemplateOutlet]
|
|
884
929
|
}]
|
|
885
|
-
}], ctorParameters: () => [{ type: i1.LocalizationService }, { type: i0.Renderer2 }, { type: i0.ElementRef }
|
|
930
|
+
}], ctorParameters: () => [{ type: i1.LocalizationService }, { type: i0.Renderer2 }, { type: i0.ElementRef }], propDecorators: { position: [{
|
|
886
931
|
type: Input
|
|
887
932
|
}], offset: [{
|
|
888
933
|
type: Input
|
|
@@ -961,7 +1006,7 @@ class PopoverDirectivesBase {
|
|
|
961
1006
|
*/
|
|
962
1007
|
set popover(value) {
|
|
963
1008
|
if (value instanceof PopoverComponent || typeof value === `function`) {
|
|
964
|
-
this._popover
|
|
1009
|
+
this._popover.set(value);
|
|
965
1010
|
}
|
|
966
1011
|
else {
|
|
967
1012
|
if (isDevMode) {
|
|
@@ -970,7 +1015,7 @@ class PopoverDirectivesBase {
|
|
|
970
1015
|
}
|
|
971
1016
|
}
|
|
972
1017
|
get popover() {
|
|
973
|
-
return this._popover;
|
|
1018
|
+
return this._popover();
|
|
974
1019
|
}
|
|
975
1020
|
/**
|
|
976
1021
|
* Specifies the mouse action that triggers the popover to show. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/popover/programmatic-control).
|
|
@@ -979,10 +1024,10 @@ class PopoverDirectivesBase {
|
|
|
979
1024
|
if (isDevMode && !containsItem(validShowOptions, value)) {
|
|
980
1025
|
throw new Error(ERRORS.showOn);
|
|
981
1026
|
}
|
|
982
|
-
this._showOn
|
|
1027
|
+
this._showOn.set(value);
|
|
983
1028
|
}
|
|
984
1029
|
get showOn() {
|
|
985
|
-
return this._showOn;
|
|
1030
|
+
return this._showOn();
|
|
986
1031
|
}
|
|
987
1032
|
/**
|
|
988
1033
|
* @hidden
|
|
@@ -999,8 +1044,8 @@ class PopoverDirectivesBase {
|
|
|
999
1044
|
_popoverService;
|
|
1000
1045
|
_hideSub;
|
|
1001
1046
|
_focusInsideSub;
|
|
1002
|
-
_popover;
|
|
1003
|
-
_showOn = 'click';
|
|
1047
|
+
_popover = signal(null, ...(ngDevMode ? [{ debugName: "_popover" }] : []));
|
|
1048
|
+
_showOn = signal('click', ...(ngDevMode ? [{ debugName: "_showOn" }] : []));
|
|
1004
1049
|
_popupOpenSub;
|
|
1005
1050
|
_popupCloseSub;
|
|
1006
1051
|
_popupSubs;
|
|
@@ -1091,7 +1136,14 @@ class PopoverDirectivesBase {
|
|
|
1091
1136
|
});
|
|
1092
1137
|
const popupInstance = this.popupRef.content.instance;
|
|
1093
1138
|
// Avoid adding the default k-popup class which leads to visual and rendering discrepancies
|
|
1094
|
-
|
|
1139
|
+
if (this.popupRef) {
|
|
1140
|
+
this.popupRef.popup.instance.renderDefaultClass = false;
|
|
1141
|
+
// Use the popup component's own CDRef (not ComponentRef.changeDetectorRef which wraps
|
|
1142
|
+
// the root/host lView). PopupComponent uses OnPush, so detectChanges() on the root lView
|
|
1143
|
+
// skips the component's template. The component's injector returns a CDRef that wraps
|
|
1144
|
+
// the component's template lView directly, ensuring the renderDefaultClass binding updates.
|
|
1145
|
+
this.popupRef.popup.injector.get(ChangeDetectorRef).detectChanges();
|
|
1146
|
+
}
|
|
1095
1147
|
this._popupSubs = new Subscription();
|
|
1096
1148
|
if (anchor) {
|
|
1097
1149
|
this._popupSubs.add(this.renderer.listen(this.anchor, 'keydown', event => this.onKeyDown(event)));
|
|
@@ -1654,6 +1706,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
1654
1706
|
class TooltipContentComponent {
|
|
1655
1707
|
content;
|
|
1656
1708
|
localizationService;
|
|
1709
|
+
cdr;
|
|
1657
1710
|
/**
|
|
1658
1711
|
* @hidden
|
|
1659
1712
|
*/
|
|
@@ -1676,24 +1729,67 @@ class TooltipContentComponent {
|
|
|
1676
1729
|
get cssPosition() {
|
|
1677
1730
|
return 'relative';
|
|
1678
1731
|
}
|
|
1679
|
-
tooltipWidth
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1732
|
+
set tooltipWidth(value) {
|
|
1733
|
+
this._tooltipWidth.set(value);
|
|
1734
|
+
}
|
|
1735
|
+
get tooltipWidth() {
|
|
1736
|
+
return this._tooltipWidth();
|
|
1737
|
+
}
|
|
1738
|
+
set tooltipHeight(value) {
|
|
1739
|
+
this._tooltipHeight.set(value);
|
|
1740
|
+
}
|
|
1741
|
+
get tooltipHeight() {
|
|
1742
|
+
return this._tooltipHeight();
|
|
1743
|
+
}
|
|
1744
|
+
set titleTemplate(value) {
|
|
1745
|
+
this._titleTemplate.set(value);
|
|
1746
|
+
}
|
|
1747
|
+
get titleTemplate() {
|
|
1748
|
+
return this._titleTemplate();
|
|
1749
|
+
}
|
|
1750
|
+
set anchor(value) {
|
|
1751
|
+
this._anchor.set(value);
|
|
1752
|
+
}
|
|
1753
|
+
get anchor() {
|
|
1754
|
+
return this._anchor();
|
|
1755
|
+
}
|
|
1756
|
+
set closable(value) {
|
|
1757
|
+
this._closable.set(value);
|
|
1758
|
+
}
|
|
1759
|
+
get closable() {
|
|
1760
|
+
return this._closable();
|
|
1761
|
+
}
|
|
1762
|
+
set templateRef(value) {
|
|
1763
|
+
this._templateRef.set(value);
|
|
1764
|
+
}
|
|
1765
|
+
get templateRef() {
|
|
1766
|
+
return this._templateRef();
|
|
1767
|
+
}
|
|
1768
|
+
set templateString(value) {
|
|
1769
|
+
this._templateString.set(value);
|
|
1770
|
+
}
|
|
1771
|
+
get templateString() {
|
|
1772
|
+
return this._templateString();
|
|
1773
|
+
}
|
|
1686
1774
|
closeTitle;
|
|
1687
1775
|
callout = true;
|
|
1688
1776
|
position;
|
|
1777
|
+
_tooltipWidth = signal(null, ...(ngDevMode ? [{ debugName: "_tooltipWidth" }] : []));
|
|
1778
|
+
_tooltipHeight = signal(null, ...(ngDevMode ? [{ debugName: "_tooltipHeight" }] : []));
|
|
1779
|
+
_titleTemplate = signal(null, ...(ngDevMode ? [{ debugName: "_titleTemplate" }] : []));
|
|
1780
|
+
_templateString = signal(null, ...(ngDevMode ? [{ debugName: "_templateString" }] : []));
|
|
1781
|
+
_templateRef = signal(null, ...(ngDevMode ? [{ debugName: "_templateRef" }] : []));
|
|
1782
|
+
_anchor = signal(null, ...(ngDevMode ? [{ debugName: "_anchor" }] : []));
|
|
1783
|
+
_closable = signal(false, ...(ngDevMode ? [{ debugName: "_closable" }] : []));
|
|
1689
1784
|
/**
|
|
1690
1785
|
* @hidden
|
|
1691
1786
|
*/
|
|
1692
1787
|
tooltipId;
|
|
1693
1788
|
dynamicRTLSubscription;
|
|
1694
|
-
constructor(content, localizationService) {
|
|
1789
|
+
constructor(content, localizationService, cdr) {
|
|
1695
1790
|
this.content = content;
|
|
1696
1791
|
this.localizationService = localizationService;
|
|
1792
|
+
this.cdr = cdr;
|
|
1697
1793
|
this.direction = localizationService.rtl ? 'rtl' : 'ltr';
|
|
1698
1794
|
}
|
|
1699
1795
|
ngOnInit() {
|
|
@@ -1742,6 +1838,7 @@ class TooltipContentComponent {
|
|
|
1742
1838
|
Object.keys(calloutStyles).forEach((style) => {
|
|
1743
1839
|
callout.style[style] = calloutStyles[style];
|
|
1744
1840
|
});
|
|
1841
|
+
this.cdr.markForCheck();
|
|
1745
1842
|
}
|
|
1746
1843
|
calloutStyles = (position, calloutSize, isFlip) => {
|
|
1747
1844
|
const styles = {};
|
|
@@ -1775,7 +1872,7 @@ class TooltipContentComponent {
|
|
|
1775
1872
|
styles.transform = isVertical ? `rotateX(${flipDeg})` : `rotateY(${flipDeg})`;
|
|
1776
1873
|
return styles;
|
|
1777
1874
|
};
|
|
1778
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: TooltipContentComponent, deps: [{ token: i0.ElementRef }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1875
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: TooltipContentComponent, deps: [{ token: i0.ElementRef }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1779
1876
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: TooltipContentComponent, isStandalone: true, selector: "kendo-tooltip", inputs: { tooltipWidth: "tooltipWidth", tooltipHeight: "tooltipHeight", titleTemplate: "titleTemplate", anchor: "anchor", closable: "closable", templateRef: "templateRef", templateString: "templateString" }, outputs: { close: "close" }, host: { properties: { "attr.dir": "this.direction", "class": "this.cssClasses", "attr.role": "this.hostRole", "attr.id": "this.hostId", "class.k-tooltip-closable": "this.className", "style.position": "this.cssPosition", "style.width.px": "this.tooltipWidth", "style.height.px": "this.tooltipHeight" } }, providers: [
|
|
1780
1877
|
LocalizationService,
|
|
1781
1878
|
{
|
|
@@ -1825,7 +1922,7 @@ class TooltipContentComponent {
|
|
|
1825
1922
|
@if (callout) {
|
|
1826
1923
|
<div class="k-callout" [ngClass]="calloutPositionClass()"></div>
|
|
1827
1924
|
}
|
|
1828
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoTooltipLocalizedMessages]", inputs: ["closeTitle"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
1925
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoTooltipLocalizedMessages]", inputs: ["closeTitle"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1829
1926
|
}
|
|
1830
1927
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: TooltipContentComponent, decorators: [{
|
|
1831
1928
|
type: Component,
|
|
@@ -1883,9 +1980,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
1883
1980
|
}
|
|
1884
1981
|
],
|
|
1885
1982
|
standalone: true,
|
|
1983
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1886
1984
|
imports: [LocalizedMessagesDirective, NgTemplateOutlet, IconWrapperComponent, NgClass]
|
|
1887
1985
|
}]
|
|
1888
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.LocalizationService }], propDecorators: { direction: [{
|
|
1986
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.LocalizationService }, { type: i0.ChangeDetectorRef }], propDecorators: { direction: [{
|
|
1889
1987
|
type: HostBinding,
|
|
1890
1988
|
args: ['attr.dir']
|
|
1891
1989
|
}], close: [{
|
|
@@ -2007,46 +2105,82 @@ class TooltipDirective {
|
|
|
2007
2105
|
ngZone;
|
|
2008
2106
|
renderer;
|
|
2009
2107
|
popupService;
|
|
2108
|
+
injector;
|
|
2010
2109
|
/**
|
|
2011
2110
|
* Specifies a selector for elements within a container that display a tooltip
|
|
2012
2111
|
* ([see example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/anchor-elements)). The possible values include any
|
|
2013
2112
|
* DOM `selector`.
|
|
2014
2113
|
* @default '[title]'
|
|
2015
2114
|
*/
|
|
2016
|
-
filter
|
|
2115
|
+
set filter(value) {
|
|
2116
|
+
this._filter.set(value);
|
|
2117
|
+
}
|
|
2118
|
+
get filter() {
|
|
2119
|
+
return this._filter();
|
|
2120
|
+
}
|
|
2017
2121
|
/**
|
|
2018
2122
|
* Specifies the position of the Tooltip relative to the
|
|
2019
2123
|
* anchor element ([see example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/positioning)).
|
|
2020
2124
|
*
|
|
2021
2125
|
* @default 'top'
|
|
2022
2126
|
*/
|
|
2023
|
-
position
|
|
2127
|
+
set position(value) {
|
|
2128
|
+
this._position.set(value);
|
|
2129
|
+
}
|
|
2130
|
+
get position() {
|
|
2131
|
+
return this._position();
|
|
2132
|
+
}
|
|
2024
2133
|
/**
|
|
2025
2134
|
* Sets the template for the tooltip header title. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/anchor-elements).
|
|
2026
2135
|
*/
|
|
2027
|
-
titleTemplate
|
|
2136
|
+
set titleTemplate(value) {
|
|
2137
|
+
this._titleTemplate.set(value);
|
|
2138
|
+
}
|
|
2139
|
+
get titleTemplate() {
|
|
2140
|
+
return this._titleTemplate();
|
|
2141
|
+
}
|
|
2028
2142
|
/**
|
|
2029
2143
|
* Specifies the mouse action that triggers the Tooltip to show. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/opening).
|
|
2030
2144
|
*/
|
|
2031
|
-
showOn
|
|
2145
|
+
set showOn(value) {
|
|
2146
|
+
this._showOn.set(value);
|
|
2147
|
+
}
|
|
2148
|
+
get showOn() {
|
|
2149
|
+
return this._showOn();
|
|
2150
|
+
}
|
|
2032
2151
|
/**
|
|
2033
2152
|
* Specifies the delay in milliseconds before the Tooltip is shown.
|
|
2034
2153
|
*
|
|
2035
2154
|
* @default 100
|
|
2036
2155
|
*/
|
|
2037
|
-
showAfter
|
|
2156
|
+
set showAfter(value) {
|
|
2157
|
+
this._showAfter.set(value);
|
|
2158
|
+
}
|
|
2159
|
+
get showAfter() {
|
|
2160
|
+
return this._showAfter();
|
|
2161
|
+
}
|
|
2038
2162
|
/**
|
|
2039
2163
|
* Determines if the Tooltip displays a callout arrow.
|
|
2040
2164
|
*
|
|
2041
2165
|
* @default true
|
|
2042
2166
|
*/
|
|
2043
|
-
callout
|
|
2167
|
+
set callout(value) {
|
|
2168
|
+
this._callout.set(value);
|
|
2169
|
+
}
|
|
2170
|
+
get callout() {
|
|
2171
|
+
return this._callout();
|
|
2172
|
+
}
|
|
2044
2173
|
/**
|
|
2045
2174
|
* Determines if the Tooltip displays a **Close** button. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/closable-tooltip).
|
|
2046
2175
|
*
|
|
2047
2176
|
* @default false
|
|
2048
2177
|
*/
|
|
2049
|
-
closable
|
|
2178
|
+
set closable(value) {
|
|
2179
|
+
this._closable.set(value);
|
|
2180
|
+
}
|
|
2181
|
+
get closable() {
|
|
2182
|
+
return this._closable();
|
|
2183
|
+
}
|
|
2050
2184
|
/**
|
|
2051
2185
|
* Specifies the offset in pixels between the Tooltip and the anchor.
|
|
2052
2186
|
* If the `callout` property is set to `true`, the offset is rendered from the callout arrow.
|
|
@@ -2054,37 +2188,77 @@ class TooltipDirective {
|
|
|
2054
2188
|
*
|
|
2055
2189
|
* @default 6
|
|
2056
2190
|
*/
|
|
2057
|
-
offset
|
|
2191
|
+
set offset(value) {
|
|
2192
|
+
this._offset.set(value);
|
|
2193
|
+
}
|
|
2194
|
+
get offset() {
|
|
2195
|
+
return this._offset();
|
|
2196
|
+
}
|
|
2058
2197
|
/**
|
|
2059
2198
|
* Sets the width of the Tooltip. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/anchor-elements).
|
|
2060
2199
|
*/
|
|
2061
|
-
tooltipWidth
|
|
2200
|
+
set tooltipWidth(value) {
|
|
2201
|
+
this._tooltipWidth.set(value);
|
|
2202
|
+
}
|
|
2203
|
+
get tooltipWidth() {
|
|
2204
|
+
return this._tooltipWidth();
|
|
2205
|
+
}
|
|
2062
2206
|
/**
|
|
2063
2207
|
* Sets the height of the Tooltip.
|
|
2064
2208
|
*/
|
|
2065
|
-
tooltipHeight
|
|
2209
|
+
set tooltipHeight(value) {
|
|
2210
|
+
this._tooltipHeight.set(value);
|
|
2211
|
+
}
|
|
2212
|
+
get tooltipHeight() {
|
|
2213
|
+
return this._tooltipHeight();
|
|
2214
|
+
}
|
|
2066
2215
|
/**
|
|
2067
2216
|
* Sets a CSS class for the Tooltip.
|
|
2068
2217
|
*/
|
|
2069
|
-
tooltipClass
|
|
2218
|
+
set tooltipClass(value) {
|
|
2219
|
+
this._tooltipClass.set(value);
|
|
2220
|
+
}
|
|
2221
|
+
get tooltipClass() {
|
|
2222
|
+
return this._tooltipClass();
|
|
2223
|
+
}
|
|
2070
2224
|
/**
|
|
2071
2225
|
* Specifies the theme color of the Tooltip.
|
|
2072
2226
|
* The theme color applies the corresponding `k-tooltip-{tooltipThemeColor}` class to the Tooltip element.
|
|
2073
2227
|
*/
|
|
2074
|
-
tooltipThemeColor
|
|
2228
|
+
set tooltipThemeColor(value) {
|
|
2229
|
+
this._tooltipThemeColor.set(value);
|
|
2230
|
+
}
|
|
2231
|
+
get tooltipThemeColor() {
|
|
2232
|
+
return this._tooltipThemeColor();
|
|
2233
|
+
}
|
|
2075
2234
|
/**
|
|
2076
2235
|
* @hidden
|
|
2077
2236
|
* Specifies a CSS class that will be added to the kendo-tooltip element.
|
|
2078
2237
|
*/
|
|
2079
|
-
tooltipContentClass
|
|
2238
|
+
set tooltipContentClass(value) {
|
|
2239
|
+
this._tooltipContentClass.set(value);
|
|
2240
|
+
}
|
|
2241
|
+
get tooltipContentClass() {
|
|
2242
|
+
return this._tooltipContentClass();
|
|
2243
|
+
}
|
|
2080
2244
|
/**
|
|
2081
2245
|
* Provides screen boundary detection when the Тooltip is shown.
|
|
2082
2246
|
*/
|
|
2083
|
-
collision
|
|
2247
|
+
set collision(value) {
|
|
2248
|
+
this._collision.set(value);
|
|
2249
|
+
}
|
|
2250
|
+
get collision() {
|
|
2251
|
+
return this._collision();
|
|
2252
|
+
}
|
|
2084
2253
|
/**
|
|
2085
2254
|
* Sets the title of the **Close** button.
|
|
2086
2255
|
*/
|
|
2087
|
-
closeTitle
|
|
2256
|
+
set closeTitle(value) {
|
|
2257
|
+
this._closeTitle.set(value);
|
|
2258
|
+
}
|
|
2259
|
+
get closeTitle() {
|
|
2260
|
+
return this._closeTitle();
|
|
2261
|
+
}
|
|
2088
2262
|
/**
|
|
2089
2263
|
* Sets a custom content template for the Tooltip.
|
|
2090
2264
|
* The template is rendered inside the Tooltip content area. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/templates).
|
|
@@ -2096,7 +2270,12 @@ class TooltipDirective {
|
|
|
2096
2270
|
return this.template;
|
|
2097
2271
|
}
|
|
2098
2272
|
popupRef;
|
|
2099
|
-
template
|
|
2273
|
+
set template(value) {
|
|
2274
|
+
this._tooltipTemplate.set(value);
|
|
2275
|
+
}
|
|
2276
|
+
get template() {
|
|
2277
|
+
return this._tooltipTemplate();
|
|
2278
|
+
}
|
|
2100
2279
|
showTimeout;
|
|
2101
2280
|
anchor = null;
|
|
2102
2281
|
mouseOverSubscription;
|
|
@@ -2109,11 +2288,28 @@ class TooltipDirective {
|
|
|
2109
2288
|
closeClickSubscription;
|
|
2110
2289
|
validPositions = ['top', 'bottom', 'right', 'left'];
|
|
2111
2290
|
validShowOptions = ['hover', 'click', 'none'];
|
|
2112
|
-
|
|
2291
|
+
_filter = signal('[title]', ...(ngDevMode ? [{ debugName: "_filter" }] : []));
|
|
2292
|
+
_position = signal('top', ...(ngDevMode ? [{ debugName: "_position" }] : []));
|
|
2293
|
+
_titleTemplate = signal(null, ...(ngDevMode ? [{ debugName: "_titleTemplate" }] : []));
|
|
2294
|
+
_showOn = signal(undefined, ...(ngDevMode ? [{ debugName: "_showOn" }] : []));
|
|
2295
|
+
_showAfter = signal(100, ...(ngDevMode ? [{ debugName: "_showAfter" }] : []));
|
|
2296
|
+
_callout = signal(true, ...(ngDevMode ? [{ debugName: "_callout" }] : []));
|
|
2297
|
+
_closable = signal(false, ...(ngDevMode ? [{ debugName: "_closable" }] : []));
|
|
2298
|
+
_offset = signal(6, ...(ngDevMode ? [{ debugName: "_offset" }] : []));
|
|
2299
|
+
_tooltipWidth = signal(null, ...(ngDevMode ? [{ debugName: "_tooltipWidth" }] : []));
|
|
2300
|
+
_tooltipHeight = signal(null, ...(ngDevMode ? [{ debugName: "_tooltipHeight" }] : []));
|
|
2301
|
+
_closeTitle = signal(null, ...(ngDevMode ? [{ debugName: "_closeTitle" }] : []));
|
|
2302
|
+
_tooltipTemplate = signal(null, ...(ngDevMode ? [{ debugName: "_tooltipTemplate" }] : []));
|
|
2303
|
+
_tooltipClass = signal(null, ...(ngDevMode ? [{ debugName: "_tooltipClass" }] : []));
|
|
2304
|
+
_tooltipThemeColor = signal(null, ...(ngDevMode ? [{ debugName: "_tooltipThemeColor" }] : []));
|
|
2305
|
+
_tooltipContentClass = signal(null, ...(ngDevMode ? [{ debugName: "_tooltipContentClass" }] : []));
|
|
2306
|
+
_collision = signal(null, ...(ngDevMode ? [{ debugName: "_collision" }] : []));
|
|
2307
|
+
constructor(tooltipWrapper, ngZone, renderer, popupService, injector, settings, legacySettings) {
|
|
2113
2308
|
this.tooltipWrapper = tooltipWrapper;
|
|
2114
2309
|
this.ngZone = ngZone;
|
|
2115
2310
|
this.renderer = renderer;
|
|
2116
2311
|
this.popupService = popupService;
|
|
2312
|
+
this.injector = injector;
|
|
2117
2313
|
validatePackage(packageMetadata);
|
|
2118
2314
|
Object.assign(this, settings, legacySettings);
|
|
2119
2315
|
this.ngZone.runOutsideAngular(() => {
|
|
@@ -2162,8 +2358,8 @@ class TooltipDirective {
|
|
|
2162
2358
|
*/
|
|
2163
2359
|
hide() {
|
|
2164
2360
|
clearTimeout(this.showTimeout);
|
|
2165
|
-
const anchor = this.anchor
|
|
2166
|
-
if (anchor
|
|
2361
|
+
const anchor = this.anchor?.nativeElement;
|
|
2362
|
+
if (anchor?.getAttribute('data-title')) {
|
|
2167
2363
|
if (!anchor.getAttribute('title') && anchor.hasAttribute('title')) {
|
|
2168
2364
|
anchor.setAttribute('title', anchor.getAttribute('data-title'));
|
|
2169
2365
|
}
|
|
@@ -2183,7 +2379,7 @@ class TooltipDirective {
|
|
|
2183
2379
|
* @param show - Optional. Boolean. Specifies if the Tooltip is rendered.
|
|
2184
2380
|
*/
|
|
2185
2381
|
toggle(anchor, show) {
|
|
2186
|
-
const previousAnchor = this.anchor
|
|
2382
|
+
const previousAnchor = this.anchor?.nativeElement;
|
|
2187
2383
|
if (anchor instanceof Element) {
|
|
2188
2384
|
anchor = { nativeElement: anchor };
|
|
2189
2385
|
}
|
|
@@ -2219,11 +2415,13 @@ class TooltipDirective {
|
|
|
2219
2415
|
if (!this.popupRef) {
|
|
2220
2416
|
return;
|
|
2221
2417
|
}
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2418
|
+
afterNextRender(() => {
|
|
2419
|
+
if (this.anchor &&
|
|
2420
|
+
!hasParent(this.anchor?.nativeElement || this.anchor, this.tooltipWrapper.nativeElement)) {
|
|
2421
|
+
this.anchor = null;
|
|
2422
|
+
this.hide();
|
|
2423
|
+
}
|
|
2424
|
+
}, { injector: this.injector });
|
|
2227
2425
|
}
|
|
2228
2426
|
ngOnDestroy() {
|
|
2229
2427
|
this.hide();
|
|
@@ -2261,7 +2459,7 @@ class TooltipDirective {
|
|
|
2261
2459
|
this.hide();
|
|
2262
2460
|
});
|
|
2263
2461
|
if (!this.template) {
|
|
2264
|
-
content.templateString = this.anchor
|
|
2462
|
+
content.templateString = this.anchor?.nativeElement.getAttribute('data-title');
|
|
2265
2463
|
}
|
|
2266
2464
|
else {
|
|
2267
2465
|
content.templateRef = this.template;
|
|
@@ -2331,7 +2529,7 @@ class TooltipDirective {
|
|
|
2331
2529
|
closePopup() {
|
|
2332
2530
|
if (this.popupRef) {
|
|
2333
2531
|
if (this.anchor) {
|
|
2334
|
-
this.renderer.removeAttribute(this.anchor
|
|
2532
|
+
this.renderer.removeAttribute(this.anchor?.nativeElement, 'aria-labelledby');
|
|
2335
2533
|
}
|
|
2336
2534
|
this.popupRef.close();
|
|
2337
2535
|
this.popupRef = null;
|
|
@@ -2405,7 +2603,7 @@ class TooltipDirective {
|
|
|
2405
2603
|
}
|
|
2406
2604
|
const popup = this.popupRef && this.popupRef.popupElement;
|
|
2407
2605
|
const relatedTarget = e.relatedTarget;
|
|
2408
|
-
if (relatedTarget && this.anchor && contains(this.anchor
|
|
2606
|
+
if (relatedTarget && this.anchor && contains(this.anchor?.nativeElement, relatedTarget)) {
|
|
2409
2607
|
return;
|
|
2410
2608
|
}
|
|
2411
2609
|
if (relatedTarget && contains(popup, relatedTarget)) {
|
|
@@ -2424,7 +2622,7 @@ class TooltipDirective {
|
|
|
2424
2622
|
throw new Error(`Invalid value provided for showOn property.The available options are 'hover' or 'none'.`);
|
|
2425
2623
|
}
|
|
2426
2624
|
}
|
|
2427
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: TooltipDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1$1.PopupService }, { token: TooltipSettings, optional: true }, { token: TOOLTIP_SETTINGS, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2625
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: TooltipDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1$1.PopupService }, { token: i0.Injector }, { token: TooltipSettings, optional: true }, { token: TOOLTIP_SETTINGS, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2428
2626
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.25", type: TooltipDirective, isStandalone: true, selector: "[kendoTooltip]", inputs: { filter: "filter", position: "position", titleTemplate: "titleTemplate", showOn: "showOn", showAfter: "showAfter", callout: "callout", closable: "closable", offset: "offset", tooltipWidth: "tooltipWidth", tooltipHeight: "tooltipHeight", tooltipClass: "tooltipClass", tooltipThemeColor: "tooltipThemeColor", tooltipContentClass: "tooltipContentClass", collision: "collision", closeTitle: "closeTitle", tooltipTemplate: "tooltipTemplate" }, exportAs: ["kendoTooltip"], usesOnChanges: true, ngImport: i0 });
|
|
2429
2627
|
}
|
|
2430
2628
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: TooltipDirective, decorators: [{
|
|
@@ -2434,7 +2632,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
2434
2632
|
exportAs: 'kendoTooltip',
|
|
2435
2633
|
standalone: true
|
|
2436
2634
|
}]
|
|
2437
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i1$1.PopupService }, { type: TooltipSettings, decorators: [{
|
|
2635
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i1$1.PopupService }, { type: i0.Injector }, { type: TooltipSettings, decorators: [{
|
|
2438
2636
|
type: Optional
|
|
2439
2637
|
}] }, { type: TooltipSettings, decorators: [{
|
|
2440
2638
|
type: Optional
|
package/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ComponentMessages, LocalizationService } from '@progress/kendo-angular-l10n';
|
|
6
6
|
import * as i0 from '@angular/core';
|
|
7
|
-
import { TemplateRef, OnInit,
|
|
7
|
+
import { TemplateRef, OnInit, OnDestroy, EventEmitter, ElementRef, Renderer2, NgZone, ComponentRef, SimpleChanges, ChangeDetectorRef, InjectionToken, OnChanges, AfterViewChecked, Injector } from '@angular/core';
|
|
8
8
|
import { PopupRef, PopupAnimation, PopupService, Collision } from '@progress/kendo-angular-popup';
|
|
9
9
|
import { PreventableEvent } from '@progress/kendo-angular-common';
|
|
10
10
|
import { Observable, Subscription } from 'rxjs';
|
|
@@ -190,11 +190,10 @@ type PopoverAnimation = PopupAnimation | boolean;
|
|
|
190
190
|
* </kendo-popover>
|
|
191
191
|
* ```
|
|
192
192
|
*/
|
|
193
|
-
declare class PopoverComponent implements OnInit,
|
|
193
|
+
declare class PopoverComponent implements OnInit, OnDestroy {
|
|
194
194
|
private localization;
|
|
195
195
|
private renderer;
|
|
196
196
|
private element;
|
|
197
|
-
private zone;
|
|
198
197
|
/**
|
|
199
198
|
* @hidden
|
|
200
199
|
*/
|
|
@@ -204,7 +203,8 @@ declare class PopoverComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
204
203
|
*
|
|
205
204
|
* @default 'right'
|
|
206
205
|
*/
|
|
207
|
-
position: Position;
|
|
206
|
+
set position(value: Position);
|
|
207
|
+
get position(): Position;
|
|
208
208
|
/**
|
|
209
209
|
* Specifies the distance from the Popover to its anchor element in pixels.
|
|
210
210
|
*
|
|
@@ -233,24 +233,28 @@ declare class PopoverComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
233
233
|
/**
|
|
234
234
|
* Specifies the main header text of the Popover. If a `titleTemplate` is provided, it takes precedence.
|
|
235
235
|
*/
|
|
236
|
-
title: string;
|
|
236
|
+
set title(value: string);
|
|
237
|
+
get title(): string;
|
|
237
238
|
/**
|
|
238
239
|
* @hidden
|
|
239
240
|
* Specifies the secondary header text of the Popover.
|
|
240
241
|
*
|
|
241
242
|
* If a `titleTemplate` is provided it would take precedence over the subtitle.
|
|
242
243
|
*/
|
|
243
|
-
subtitle: string;
|
|
244
|
+
set subtitle(value: string);
|
|
245
|
+
get subtitle(): string;
|
|
244
246
|
/**
|
|
245
247
|
* Represents the text rendered in the Popover body section. If a `bodyTemplate` is provided, it takes precedence.
|
|
246
248
|
*/
|
|
247
|
-
body: string;
|
|
249
|
+
set body(value: string);
|
|
250
|
+
get body(): string;
|
|
248
251
|
/**
|
|
249
252
|
* Determines whether a callout is rendered along the Popover. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/popover/callout).
|
|
250
253
|
*
|
|
251
254
|
* @default true
|
|
252
255
|
*/
|
|
253
|
-
callout: boolean;
|
|
256
|
+
set callout(value: boolean);
|
|
257
|
+
get callout(): boolean;
|
|
254
258
|
/**
|
|
255
259
|
* Enables and configures the Popover animation. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/popover/animations).
|
|
256
260
|
*
|
|
@@ -258,7 +262,8 @@ declare class PopoverComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
258
262
|
*
|
|
259
263
|
* @default false
|
|
260
264
|
*/
|
|
261
|
-
animation: PopoverAnimation;
|
|
265
|
+
set animation(value: PopoverAnimation);
|
|
266
|
+
get animation(): PopoverAnimation;
|
|
262
267
|
/**
|
|
263
268
|
* Defines a callback function that returns custom data for the Popover templates.
|
|
264
269
|
* The function exposes the `anchor` element as an argument and returns an object that can be used in the templates. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/popover/templates#passing-data-to-templates).
|
|
@@ -269,7 +274,8 @@ declare class PopoverComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
269
274
|
* @hidden
|
|
270
275
|
* Determines the visibility of the Popover.
|
|
271
276
|
*/
|
|
272
|
-
visible: boolean;
|
|
277
|
+
get visible(): boolean;
|
|
278
|
+
set visible(value: boolean);
|
|
273
279
|
/**
|
|
274
280
|
* @hidden
|
|
275
281
|
*/
|
|
@@ -329,20 +335,29 @@ declare class PopoverComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
329
335
|
/**
|
|
330
336
|
* @hidden
|
|
331
337
|
*/
|
|
332
|
-
_width: string;
|
|
338
|
+
get _width(): string;
|
|
333
339
|
/**
|
|
334
340
|
* @hidden
|
|
335
341
|
*/
|
|
336
|
-
_height: string;
|
|
342
|
+
get _height(): string;
|
|
337
343
|
/**
|
|
338
344
|
* @hidden
|
|
339
345
|
*/
|
|
340
346
|
popoverId: string;
|
|
347
|
+
private _position;
|
|
341
348
|
private _offset;
|
|
349
|
+
private _widthValue;
|
|
350
|
+
private _heightValue;
|
|
351
|
+
private _title;
|
|
352
|
+
private _subtitle;
|
|
353
|
+
private _body;
|
|
354
|
+
private _callout;
|
|
355
|
+
private _animation;
|
|
356
|
+
private _templateData;
|
|
357
|
+
private _visible;
|
|
342
358
|
private subs;
|
|
343
|
-
constructor(localization: LocalizationService, renderer: Renderer2, element: ElementRef
|
|
359
|
+
constructor(localization: LocalizationService, renderer: Renderer2, element: ElementRef);
|
|
344
360
|
ngOnInit(): void;
|
|
345
|
-
ngAfterViewInit(): void;
|
|
346
361
|
ngOnDestroy(): void;
|
|
347
362
|
/**
|
|
348
363
|
* @hidden
|
|
@@ -352,7 +367,6 @@ declare class PopoverComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
352
367
|
* @hidden
|
|
353
368
|
*/
|
|
354
369
|
onKeyDown(event: any): void;
|
|
355
|
-
private _templateData;
|
|
356
370
|
private keepFocusWithinComponent;
|
|
357
371
|
private setAriaAttributes;
|
|
358
372
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverComponent, never>;
|
|
@@ -584,6 +598,7 @@ declare class PopoverContainerDirective extends PopoverDirectivesBase {
|
|
|
584
598
|
declare class TooltipContentComponent {
|
|
585
599
|
private content;
|
|
586
600
|
private localizationService;
|
|
601
|
+
private cdr;
|
|
587
602
|
/**
|
|
588
603
|
* @hidden
|
|
589
604
|
*/
|
|
@@ -598,22 +613,36 @@ declare class TooltipContentComponent {
|
|
|
598
613
|
get hostId(): string;
|
|
599
614
|
get className(): boolean;
|
|
600
615
|
get cssPosition(): string;
|
|
601
|
-
tooltipWidth: number;
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
616
|
+
set tooltipWidth(value: number);
|
|
617
|
+
get tooltipWidth(): number;
|
|
618
|
+
set tooltipHeight(value: number);
|
|
619
|
+
get tooltipHeight(): number;
|
|
620
|
+
set titleTemplate(value: TemplateRef<any>);
|
|
621
|
+
get titleTemplate(): TemplateRef<any>;
|
|
622
|
+
set anchor(value: ElementRef);
|
|
623
|
+
get anchor(): ElementRef;
|
|
624
|
+
set closable(value: boolean);
|
|
625
|
+
get closable(): boolean;
|
|
626
|
+
set templateRef(value: TemplateRef<any>);
|
|
627
|
+
get templateRef(): TemplateRef<any>;
|
|
628
|
+
set templateString(value: string);
|
|
629
|
+
get templateString(): string;
|
|
608
630
|
closeTitle: string;
|
|
609
631
|
callout: boolean;
|
|
610
632
|
position: string;
|
|
633
|
+
private _tooltipWidth;
|
|
634
|
+
private _tooltipHeight;
|
|
635
|
+
private _titleTemplate;
|
|
636
|
+
private _templateString;
|
|
637
|
+
private _templateRef;
|
|
638
|
+
private _anchor;
|
|
639
|
+
private _closable;
|
|
611
640
|
/**
|
|
612
641
|
* @hidden
|
|
613
642
|
*/
|
|
614
643
|
tooltipId: string;
|
|
615
644
|
private dynamicRTLSubscription;
|
|
616
|
-
constructor(content: ElementRef, localizationService: LocalizationService);
|
|
645
|
+
constructor(content: ElementRef, localizationService: LocalizationService, cdr: ChangeDetectorRef);
|
|
617
646
|
ngOnInit(): void;
|
|
618
647
|
ngOnDestroy(): void;
|
|
619
648
|
get closeButtonTitle(): string;
|
|
@@ -725,46 +754,54 @@ declare class TooltipDirective implements OnDestroy, OnChanges, AfterViewChecked
|
|
|
725
754
|
ngZone: NgZone;
|
|
726
755
|
private renderer;
|
|
727
756
|
private popupService;
|
|
757
|
+
private injector;
|
|
728
758
|
/**
|
|
729
759
|
* Specifies a selector for elements within a container that display a tooltip
|
|
730
760
|
* ([see example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/anchor-elements)). The possible values include any
|
|
731
761
|
* DOM `selector`.
|
|
732
762
|
* @default '[title]'
|
|
733
763
|
*/
|
|
734
|
-
filter: string;
|
|
764
|
+
set filter(value: string);
|
|
765
|
+
get filter(): string;
|
|
735
766
|
/**
|
|
736
767
|
* Specifies the position of the Tooltip relative to the
|
|
737
768
|
* anchor element ([see example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/positioning)).
|
|
738
769
|
*
|
|
739
770
|
* @default 'top'
|
|
740
771
|
*/
|
|
741
|
-
position: Position;
|
|
772
|
+
set position(value: Position);
|
|
773
|
+
get position(): Position;
|
|
742
774
|
/**
|
|
743
775
|
* Sets the template for the tooltip header title. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/anchor-elements).
|
|
744
776
|
*/
|
|
745
|
-
titleTemplate
|
|
777
|
+
set titleTemplate(value: TemplateRef<any>);
|
|
778
|
+
get titleTemplate(): TemplateRef<any>;
|
|
746
779
|
/**
|
|
747
780
|
* Specifies the mouse action that triggers the Tooltip to show. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/opening).
|
|
748
781
|
*/
|
|
749
|
-
showOn: ShowOption;
|
|
782
|
+
set showOn(value: ShowOption);
|
|
783
|
+
get showOn(): ShowOption;
|
|
750
784
|
/**
|
|
751
785
|
* Specifies the delay in milliseconds before the Tooltip is shown.
|
|
752
786
|
*
|
|
753
787
|
* @default 100
|
|
754
788
|
*/
|
|
755
|
-
showAfter: number;
|
|
789
|
+
set showAfter(value: number);
|
|
790
|
+
get showAfter(): number;
|
|
756
791
|
/**
|
|
757
792
|
* Determines if the Tooltip displays a callout arrow.
|
|
758
793
|
*
|
|
759
794
|
* @default true
|
|
760
795
|
*/
|
|
761
|
-
callout: boolean;
|
|
796
|
+
set callout(value: boolean);
|
|
797
|
+
get callout(): boolean;
|
|
762
798
|
/**
|
|
763
799
|
* Determines if the Tooltip displays a **Close** button. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/closable-tooltip).
|
|
764
800
|
*
|
|
765
801
|
* @default false
|
|
766
802
|
*/
|
|
767
|
-
closable: boolean;
|
|
803
|
+
set closable(value: boolean);
|
|
804
|
+
get closable(): boolean;
|
|
768
805
|
/**
|
|
769
806
|
* Specifies the offset in pixels between the Tooltip and the anchor.
|
|
770
807
|
* If the `callout` property is set to `true`, the offset is rendered from the callout arrow.
|
|
@@ -772,37 +809,45 @@ declare class TooltipDirective implements OnDestroy, OnChanges, AfterViewChecked
|
|
|
772
809
|
*
|
|
773
810
|
* @default 6
|
|
774
811
|
*/
|
|
775
|
-
offset: number;
|
|
812
|
+
set offset(value: number);
|
|
813
|
+
get offset(): number;
|
|
776
814
|
/**
|
|
777
815
|
* Sets the width of the Tooltip. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/anchor-elements).
|
|
778
816
|
*/
|
|
779
|
-
tooltipWidth: number;
|
|
817
|
+
set tooltipWidth(value: number);
|
|
818
|
+
get tooltipWidth(): number;
|
|
780
819
|
/**
|
|
781
820
|
* Sets the height of the Tooltip.
|
|
782
821
|
*/
|
|
783
|
-
tooltipHeight: number;
|
|
822
|
+
set tooltipHeight(value: number);
|
|
823
|
+
get tooltipHeight(): number;
|
|
784
824
|
/**
|
|
785
825
|
* Sets a CSS class for the Tooltip.
|
|
786
826
|
*/
|
|
787
|
-
tooltipClass: string;
|
|
827
|
+
set tooltipClass(value: string);
|
|
828
|
+
get tooltipClass(): string;
|
|
788
829
|
/**
|
|
789
830
|
* Specifies the theme color of the Tooltip.
|
|
790
831
|
* The theme color applies the corresponding `k-tooltip-{tooltipThemeColor}` class to the Tooltip element.
|
|
791
832
|
*/
|
|
792
|
-
tooltipThemeColor: TooltipThemeColor;
|
|
833
|
+
set tooltipThemeColor(value: TooltipThemeColor);
|
|
834
|
+
get tooltipThemeColor(): TooltipThemeColor;
|
|
793
835
|
/**
|
|
794
836
|
* @hidden
|
|
795
837
|
* Specifies a CSS class that will be added to the kendo-tooltip element.
|
|
796
838
|
*/
|
|
797
|
-
tooltipContentClass: string;
|
|
839
|
+
set tooltipContentClass(value: string);
|
|
840
|
+
get tooltipContentClass(): string;
|
|
798
841
|
/**
|
|
799
842
|
* Provides screen boundary detection when the Тooltip is shown.
|
|
800
843
|
*/
|
|
801
|
-
collision: Collision;
|
|
844
|
+
set collision(value: Collision);
|
|
845
|
+
get collision(): Collision;
|
|
802
846
|
/**
|
|
803
847
|
* Sets the title of the **Close** button.
|
|
804
848
|
*/
|
|
805
|
-
closeTitle: string;
|
|
849
|
+
set closeTitle(value: string);
|
|
850
|
+
get closeTitle(): string;
|
|
806
851
|
/**
|
|
807
852
|
* Sets a custom content template for the Tooltip.
|
|
808
853
|
* The template is rendered inside the Tooltip content area. [See example](https://www.telerik.com/kendo-angular-ui/components/tooltips/tooltip/templates).
|
|
@@ -810,7 +855,8 @@ declare class TooltipDirective implements OnDestroy, OnChanges, AfterViewChecked
|
|
|
810
855
|
set tooltipTemplate(value: TemplateRef<any>);
|
|
811
856
|
get tooltipTemplate(): TemplateRef<any>;
|
|
812
857
|
popupRef: PopupRef;
|
|
813
|
-
template: TemplateRef<any
|
|
858
|
+
set template(value: TemplateRef<any>);
|
|
859
|
+
get template(): TemplateRef<any>;
|
|
814
860
|
private showTimeout;
|
|
815
861
|
private anchor;
|
|
816
862
|
private mouseOverSubscription;
|
|
@@ -823,7 +869,23 @@ declare class TooltipDirective implements OnDestroy, OnChanges, AfterViewChecked
|
|
|
823
869
|
private closeClickSubscription;
|
|
824
870
|
private validPositions;
|
|
825
871
|
private validShowOptions;
|
|
826
|
-
|
|
872
|
+
private _filter;
|
|
873
|
+
private _position;
|
|
874
|
+
private _titleTemplate;
|
|
875
|
+
private _showOn;
|
|
876
|
+
private _showAfter;
|
|
877
|
+
private _callout;
|
|
878
|
+
private _closable;
|
|
879
|
+
private _offset;
|
|
880
|
+
private _tooltipWidth;
|
|
881
|
+
private _tooltipHeight;
|
|
882
|
+
private _closeTitle;
|
|
883
|
+
private _tooltipTemplate;
|
|
884
|
+
private _tooltipClass;
|
|
885
|
+
private _tooltipThemeColor;
|
|
886
|
+
private _tooltipContentClass;
|
|
887
|
+
private _collision;
|
|
888
|
+
constructor(tooltipWrapper: ElementRef, ngZone: NgZone, renderer: Renderer2, popupService: PopupService, injector: Injector, settings: TooltipSettings, legacySettings: TooltipSettings);
|
|
827
889
|
/**
|
|
828
890
|
* Shows the Tooltip.
|
|
829
891
|
* @param anchor - The element used as an anchor. The Tooltip opens relative to this element.
|
|
@@ -855,7 +917,7 @@ declare class TooltipDirective implements OnDestroy, OnChanges, AfterViewChecked
|
|
|
855
917
|
private onMouseOver;
|
|
856
918
|
private onMouseOut;
|
|
857
919
|
private verifyProperties;
|
|
858
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, [null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
920
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, [null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
859
921
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[kendoTooltip]", ["kendoTooltip"], { "filter": { "alias": "filter"; "required": false; }; "position": { "alias": "position"; "required": false; }; "titleTemplate": { "alias": "titleTemplate"; "required": false; }; "showOn": { "alias": "showOn"; "required": false; }; "showAfter": { "alias": "showAfter"; "required": false; }; "callout": { "alias": "callout"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "tooltipWidth": { "alias": "tooltipWidth"; "required": false; }; "tooltipHeight": { "alias": "tooltipHeight"; "required": false; }; "tooltipClass": { "alias": "tooltipClass"; "required": false; }; "tooltipThemeColor": { "alias": "tooltipThemeColor"; "required": false; }; "tooltipContentClass": { "alias": "tooltipContentClass"; "required": false; }; "collision": { "alias": "collision"; "required": false; }; "closeTitle": { "alias": "closeTitle"; "required": false; }; "tooltipTemplate": { "alias": "tooltipTemplate"; "required": false; }; }, {}, never, never, true, never>;
|
|
860
922
|
}
|
|
861
923
|
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "25.0.0-develop.
|
|
10
|
+
"publishDate": 1783692540,
|
|
11
|
+
"version": "25.0.0-develop.3",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-tooltip",
|
|
3
|
-
"version": "25.0.0-develop.
|
|
3
|
+
"version": "25.0.0-develop.3",
|
|
4
4
|
"description": "Kendo UI Tooltip for Angular - A highly customizable and easily themeable tooltip from the creators developers trust for professional Angular components.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"package": {
|
|
37
37
|
"productName": "Kendo UI for Angular",
|
|
38
38
|
"productCode": "KENDOUIANGULAR",
|
|
39
|
-
"publishDate":
|
|
39
|
+
"publishDate": 1783692540,
|
|
40
40
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
41
41
|
}
|
|
42
42
|
},
|
|
@@ -46,15 +46,15 @@
|
|
|
46
46
|
"@angular/core": "20 - 22",
|
|
47
47
|
"@angular/platform-browser": "20 - 22",
|
|
48
48
|
"@progress/kendo-licensing": "^1.11.0",
|
|
49
|
-
"@progress/kendo-angular-common": "25.0.0-develop.
|
|
50
|
-
"@progress/kendo-angular-l10n": "25.0.0-develop.
|
|
51
|
-
"@progress/kendo-angular-popup": "25.0.0-develop.
|
|
52
|
-
"@progress/kendo-angular-icons": "25.0.0-develop.
|
|
49
|
+
"@progress/kendo-angular-common": "25.0.0-develop.3",
|
|
50
|
+
"@progress/kendo-angular-l10n": "25.0.0-develop.3",
|
|
51
|
+
"@progress/kendo-angular-popup": "25.0.0-develop.3",
|
|
52
|
+
"@progress/kendo-angular-icons": "25.0.0-develop.3",
|
|
53
53
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"tslib": "^2.3.1",
|
|
57
|
-
"@progress/kendo-angular-schematics": "25.0.0-develop.
|
|
57
|
+
"@progress/kendo-angular-schematics": "25.0.0-develop.3"
|
|
58
58
|
},
|
|
59
59
|
"schematics": "./schematics/collection.json",
|
|
60
60
|
"module": "fesm2022/progress-kendo-angular-tooltip.mjs",
|