1 parent b44ccf9 commit 6a3b5e9Copy full SHA for 6a3b5e9
1 file changed
src/js/index.js
@@ -0,0 +1,12 @@
1
+import './base.js';
2
+import './tabs.js';
3
+import './dropdown.js';
4
+import './tooltip.js';
5
+import './sidebar.js';
6
+import { toast, toastEl, toastClear } from './toast.js';
7
+
8
+// Register the global window.ot.* APIs.
9
+const ot = window.ot || (window.ot = {});
10
+ot.toast = toast;
11
+ot.toast.el = toastEl;
12
+ot.toast.clear = toastClear;
0 commit comments