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.
- package/build/bs.js +1 -1
- package/build/index-icons.js +12 -20
- package/build/index.js +12 -16
- package/dist/gd-bs-icons.js +2 -13
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.js +2 -13
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/index-icons.ts +13 -5
- package/src/index.ts +14 -2
- package/src/styles/_core.scss +1 -1
- package/build/index-core.js +0 -14
- package/src/index-core.ts +0 -14
package/build/index-icons.js
CHANGED
|
@@ -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
|
-
//
|
|
21
|
-
|
|
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
|
-
//
|
|
27
|
-
|
|
28
|
-
window["GD"]
|
|
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
|
-
//
|
|
20
|
-
|
|
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;
|