gd-bs 5.6.8 → 5.6.9

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/index.html CHANGED
@@ -116,6 +116,7 @@
116
116
  window["tooltip"] = GD.Components.Tooltip({
117
117
  el: document.getElementById("tooltip"),
118
118
  content: "This is a tooltip.",
119
+ placement: 15,
119
120
  btnProps: {
120
121
  text: "Test Tooltip",
121
122
  type: GD.Components.ButtonTypes.OutlineDanger
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "5.6.8",
3
+ "version": "5.6.9",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -1,5 +1,4 @@
1
- import { Instance, animateFill, followCursor, inlinePositioning, sticky } from "tippy.js";
2
- import { tippy } from "../../libs";
1
+ import tippy, { Instance, animateFill, followCursor, inlinePositioning, sticky } from "tippy.js";
3
2
  import { ITippyProps } from "../../types";
4
3
  import { IPopover, IPopoverProps } from "./types";
5
4
  import { Button } from "../button";
@@ -1,5 +1,4 @@
1
- import { Instance, animateFill, followCursor, inlinePositioning, sticky } from "tippy.js";
2
- import { tippy } from "../../libs";
1
+ import tippy, { Instance, animateFill, followCursor, inlinePositioning, sticky } from "tippy.js";
3
2
  import { ITippyProps } from "../../types";
4
3
  import { ITooltip, ITooltipProps } from "./types";
5
4
  import { IButton } from "../button/types";
@@ -9,7 +9,7 @@ import * as Components from "./components";
9
9
  export { Components }
10
10
 
11
11
  // TippyJS library
12
- import { tippy } from "./libs";
12
+ import tippy from "tippy.js";
13
13
  export { tippy }
14
14
 
15
15
  // Icons
package/src/index.ts CHANGED
@@ -9,7 +9,7 @@ import * as Components from "./components";
9
9
  export { Components }
10
10
 
11
11
  // TippyJS library
12
- import { tippy } from "./libs";
12
+ import tippy from "tippy.js";
13
13
  export { tippy }
14
14
 
15
15
  // Bootstrap Global library
package/build/libs.js DELETED
@@ -1,6 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.tippy = void 0;
4
- // Tippy.js Lib
5
- var tippy_js_1 = require("tippy.js");
6
- exports.tippy = tippy_js_1.default;
package/src/libs.ts DELETED
@@ -1,3 +0,0 @@
1
- // Tippy.js Lib
2
- import tippy from "tippy.js";
3
- export { tippy }