gd-bs 5.8.1 → 5.8.2
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/build/index-icons.js +20 -12
- package/build/index.js +16 -12
- package/dist/gd-bs-icons.js +12 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.js +12 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +60 -60
- package/pnpm-lock.yaml +62 -0
- package/src/index-core.ts +14 -0
- package/src/index-icons.ts +5 -13
- package/src/index.ts +2 -14
|
@@ -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 tippy_js_1 = require("tippy.js");
|
|
11
|
+
exports.tippy = tippy_js_1.default;
|
|
12
|
+
// Bootstrap Global library
|
|
13
|
+
var BS = { Components: Components, tippy: tippy_js_1.default };
|
|
14
|
+
window["GD"] = window["GD"] || BS;
|
package/build/index-icons.js
CHANGED
|
@@ -1,20 +1,28 @@
|
|
|
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
|
+
};
|
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IconTypes = exports.Icons =
|
|
17
|
+
exports.IconTypes = exports.Icons = void 0;
|
|
4
18
|
// Bootstrap styles
|
|
5
19
|
require("./bs");
|
|
6
|
-
//
|
|
7
|
-
require("./
|
|
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;
|
|
20
|
+
// Export the core
|
|
21
|
+
__exportStar(require("./index-core"), exports);
|
|
14
22
|
// Icons
|
|
15
23
|
var icons_1 = require("./icons");
|
|
16
24
|
Object.defineProperty(exports, "Icons", { enumerable: true, get: function () { return icons_1.Icons; } });
|
|
17
25
|
Object.defineProperty(exports, "IconTypes", { enumerable: true, get: function () { return icons_1.IconTypes; } });
|
|
18
|
-
//
|
|
19
|
-
|
|
20
|
-
window["GD"] =
|
|
26
|
+
// Include the Icons in the Global library
|
|
27
|
+
window["GD"].Icons = icons_1.Icons;
|
|
28
|
+
window["GD"].IconTypes = icons_1.IconTypes;
|
package/build/index.js
CHANGED
|
@@ -1,16 +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
|
+
};
|
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.tippy = exports.Components = void 0;
|
|
4
17
|
// Bootstrap styles
|
|
5
18
|
require("./bs");
|
|
6
|
-
//
|
|
7
|
-
require("./
|
|
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;
|
|
19
|
+
// Export the core
|
|
20
|
+
__exportStar(require("./index-core"), exports);
|
package/dist/gd-bs-icons.js
CHANGED
|
@@ -21491,6 +21491,17 @@ eval("// Fix to ensure the library loads in IE\n(function () {\n if (typeof win
|
|
|
21491
21491
|
|
|
21492
21492
|
/***/ }),
|
|
21493
21493
|
|
|
21494
|
+
/***/ "./src/index-core.ts":
|
|
21495
|
+
/*!***************************!*\
|
|
21496
|
+
!*** ./src/index-core.ts ***!
|
|
21497
|
+
\***************************/
|
|
21498
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
21499
|
+
|
|
21500
|
+
"use strict";
|
|
21501
|
+
eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports.tippy = exports.Components = void 0; // Import the IE fix\n\n__webpack_require__(/*! ./ie */ \"./src/ie.ts\"); // Bootstrap Components\n\n\nvar Components = __webpack_require__(/*! ./components */ \"./src/components/index.ts\");\n\nexports.Components = Components; // TippyJS library\n\nvar tippy_js_1 = __webpack_require__(/*! tippy.js */ \"./node_modules/.pnpm/tippy.js@6.3.7/node_modules/tippy.js/dist/tippy.esm.js\");\n\nexports.tippy = tippy_js_1[\"default\"]; // Bootstrap Global library\n\nvar BS = {\n Components: Components,\n tippy: tippy_js_1[\"default\"]\n};\nwindow[\"GD\"] = window[\"GD\"] || BS;\n\n//# sourceURL=webpack://gd-bs/./src/index-core.ts?");
|
|
21502
|
+
|
|
21503
|
+
/***/ }),
|
|
21504
|
+
|
|
21494
21505
|
/***/ "./src/index-icons.ts":
|
|
21495
21506
|
/*!****************************!*\
|
|
21496
21507
|
!*** ./src/index-icons.ts ***!
|
|
@@ -21498,7 +21509,7 @@ eval("// Fix to ensure the library loads in IE\n(function () {\n if (typeof win
|
|
|
21498
21509
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
21499
21510
|
|
|
21500
21511
|
"use strict";
|
|
21501
|
-
eval("\n\
|
|
21512
|
+
eval("\n\nvar __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = {\n enumerable: true,\n get: function get() {\n return m[k];\n }\n };\n }\n\n Object.defineProperty(o, k2, desc);\n} : function (o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n});\n\nvar __exportStar = this && this.__exportStar || function (m, exports) {\n for (var p in m) {\n if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n }\n};\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports.IconTypes = exports.Icons = void 0; // Bootstrap styles\n\n__webpack_require__(/*! ./bs */ \"./src/bs.scss\"); // Export the core\n\n\n__exportStar(__webpack_require__(/*! ./index-core */ \"./src/index-core.ts\"), exports); // Icons\n\n\nvar icons_1 = __webpack_require__(/*! ./icons */ \"./src/icons/index.ts\");\n\nObject.defineProperty(exports, \"Icons\", ({\n enumerable: true,\n get: function get() {\n return icons_1.Icons;\n }\n}));\nObject.defineProperty(exports, \"IconTypes\", ({\n enumerable: true,\n get: function get() {\n return icons_1.IconTypes;\n }\n})); // Include the Icons in the Global library\n\nwindow[\"GD\"].Icons = icons_1.Icons;\nwindow[\"GD\"].IconTypes = icons_1.IconTypes;\n\n//# sourceURL=webpack://gd-bs/./src/index-icons.ts?");
|
|
21502
21513
|
|
|
21503
21514
|
/***/ }),
|
|
21504
21515
|
|