Skip to content

Commit

Permalink
feat: add cleanup functions popover, tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
dragosct committed Dec 19, 2024
1 parent 1ce1d58 commit 8aee442
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { loadPopperJs } from './utils/loadPopper.js';

// Import components
import { initDropdowns } from './dropdown/dropdown.js';
import { initPopovers } from './popover/popover.js';
import { initTooltips } from './tooltip/tooltip.js';
import { initPopovers, cleanupPopovers } from './popover/popover.js';
import { initTooltips, cleanupTooltips } from './tooltip/tooltip.js';
import { initAlert } from './alert/alert.js';
import { initCollapse } from './collapse/collapse.js';
import { initTabs } from './tabs/tabs.js';
Expand All @@ -15,7 +15,9 @@ export {
initCollapse,
initDropdowns,
initPopovers,
cleanupPopovers,
initTooltips,
cleanupTooltips,
initTabs,
initModal
};
Expand All @@ -26,7 +28,9 @@ const DavidAI = {
initCollapse,
initDropdowns,
initPopovers,
cleanupPopovers,
initTooltips,
cleanupTooltips,
initTabs,
initModal
};
Expand Down

0 comments on commit 8aee442

Please sign in to comment.