gd-bs 5.5.0 → 5.5.1
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/index-core.js +14 -0
- package/package.json +1 -1
- package/src/index-core.ts +14 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.tippy = exports.Components = void 0;
|
|
4
|
+
// Import the IE fix
|
|
5
|
+
require("./ie");
|
|
6
|
+
// Bootstrap Components
|
|
7
|
+
var Components = require("./components");
|
|
8
|
+
exports.Components = Components;
|
|
9
|
+
// TippyJS library
|
|
10
|
+
var libs_1 = require("./libs");
|
|
11
|
+
Object.defineProperty(exports, "tippy", { enumerable: true, get: function () { return libs_1.tippy; } });
|
|
12
|
+
// Bootstrap Global library
|
|
13
|
+
var BS = { Components: Components, tippy: libs_1.tippy };
|
|
14
|
+
window["GD"] = window["GD"] || BS;
|
package/package.json
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Import the IE fix
|
|
2
|
+
import "./ie";
|
|
3
|
+
|
|
4
|
+
// Bootstrap Components
|
|
5
|
+
import * as Components from "./components";
|
|
6
|
+
export { Components }
|
|
7
|
+
|
|
8
|
+
// TippyJS library
|
|
9
|
+
import { tippy } from "./libs";
|
|
10
|
+
export { tippy }
|
|
11
|
+
|
|
12
|
+
// Bootstrap Global library
|
|
13
|
+
const BS = { Components, tippy }
|
|
14
|
+
window["GD"] = window["GD"] || BS;
|