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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "5.7.4",
3
+ "version": "5.7.5",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -1,14 +1,15 @@
1
- const tippy = require("./tippy.js");
1
+ const tippyJS = require("./tippy.js");
2
2
 
3
3
  // Plugins
4
- export const animateFill = tippy.animateFill;
5
- export const createSingleton = tippy.createSingleton;
6
- export const delegate = tippy.delegate;
7
- export const followCursor = tippy.followCursor;
8
- export const hideAll = tippy.hideAll;
9
- export const inlinePositioning = tippy.inlinePositioning;
10
- export const roundArrow = tippy.roundArrow;
11
- export const sticky = tippy.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;