gd-bs 5.7.4 → 5.7.5
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/build/tippy.js +1 -1
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/tippy.js/index.ts +10 -9
package/package.json
CHANGED
package/src/tippy.js/index.ts
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
const
|
|
1
|
+
const tippyJS = require("./tippy.js");
|
|
2
2
|
|
|
3
3
|
// Plugins
|
|
4
|
-
export const animateFill =
|
|
5
|
-
export const createSingleton =
|
|
6
|
-
export const delegate =
|
|
7
|
-
export const followCursor =
|
|
8
|
-
export const hideAll =
|
|
9
|
-
export const inlinePositioning =
|
|
10
|
-
export const roundArrow =
|
|
11
|
-
export const sticky =
|
|
4
|
+
export const animateFill = tippyJS.animateFill;
|
|
5
|
+
export const createSingleton = tippyJS.createSingleton;
|
|
6
|
+
export const delegate = tippyJS.delegate;
|
|
7
|
+
export const followCursor = tippyJS.followCursor;
|
|
8
|
+
export const hideAll = tippyJS.hideAll;
|
|
9
|
+
export const inlinePositioning = tippyJS.inlinePositioning;
|
|
10
|
+
export const roundArrow = tippyJS.roundArrow;
|
|
11
|
+
export const sticky = tippyJS.sticky;
|
|
12
12
|
|
|
13
13
|
// Default
|
|
14
|
+
const tippy = tippyJS.default || tippyJS;
|
|
14
15
|
export default tippy;
|