@progress/kendo-angular-tooltip
Version:
Kendo UI Tooltip for Angular - A highly customizable and easily themeable tooltip from the creators developers trust for professional Angular components.
23 lines (22 loc) • 1.53 kB
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
// Standalone Directives Arrays
export * from './directives';
// Tooltip
export { TooltipDirective } from './tooltip/tooltip.directive';
export { TooltipSettings, TOOLTIP_SETTINGS } from './tooltip/tooltip.settings';
export { TooltipContentComponent } from './tooltip/tooltip.content.component';
export { LocalizedMessagesDirective } from './localization/localized-messages.directive';
// Popover
export { PopoverComponent } from './popover/popover.component';
export { PopoverContainerDirective } from './popover/container.directive';
export { PopoverAnchorDirective } from './popover/anchor.directive';
export { PopoverTitleTemplateDirective } from './popover/template-directives/title-template.directive';
export { PopoverBodyTemplateDirective } from './popover/template-directives/body-template.directive';
export { PopoverActionsTemplateDirective } from './popover/template-directives/actions-template.directive';
export { PopoverShowEvent, PopoverShownEvent, PopoverHideEvent, PopoverHiddenEvent } from './models/events';
export { TooltipModule } from './tooltip.module';
export { PopoverModule } from './popover.module';
export { TooltipsModule } from './tooltips.module';