gd-bs 5.8.2 → 5.8.3

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.
@@ -1,28 +1,20 @@
1
1
  "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
2
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.IconTypes = exports.Icons = void 0;
3
+ exports.IconTypes = exports.Icons = exports.tippy = exports.Components = void 0;
18
4
  // Bootstrap styles
19
5
  require("./bs");
20
- // Export the core
21
- __exportStar(require("./index-core"), exports);
6
+ // Import the IE fix
7
+ require("./ie");
8
+ // Bootstrap Components
9
+ var Components = require("./components");
10
+ exports.Components = Components;
11
+ // TippyJS library
12
+ var tippy_js_1 = require("tippy.js");
13
+ exports.tippy = tippy_js_1.default;
22
14
  // Icons
23
15
  var icons_1 = require("./icons");
24
16
  Object.defineProperty(exports, "Icons", { enumerable: true, get: function () { return icons_1.Icons; } });
25
17
  Object.defineProperty(exports, "IconTypes", { enumerable: true, get: function () { return icons_1.IconTypes; } });
26
- // Include the Icons in the Global library
27
- window["GD"].Icons = icons_1.Icons;
28
- window["GD"].IconTypes = icons_1.IconTypes;
18
+ // Bootstrap Global library
19
+ var BS = { Components: Components, Icons: icons_1.Icons, IconTypes: icons_1.IconTypes, tippy: tippy_js_1.default };
20
+ window["GD"] = window["GD"] || BS;
package/build/index.js CHANGED
@@ -1,20 +1,16 @@
1
1
  "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.tippy = exports.Components = void 0;
17
4
  // Bootstrap styles
18
5
  require("./bs");
19
- // Export the core
20
- __exportStar(require("./index-core"), exports);
6
+ // Import the IE fix
7
+ require("./ie");
8
+ // Bootstrap Components
9
+ var Components = require("./components");
10
+ exports.Components = Components;
11
+ // TippyJS library
12
+ var tippy_js_1 = require("tippy.js");
13
+ exports.tippy = tippy_js_1.default;
14
+ // Bootstrap Global library
15
+ var BS = { Components: Components, tippy: tippy_js_1.default };
16
+ window["GD"] = window["GD"] || BS;