gd-bs 5.7.5 → 5.7.6
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/components/popover/index.js +1 -1
- package/build/components/tooltip/index.js +1 -1
- package/build/index-icons.js +1 -1
- package/build/index.js +1 -1
- package/clean.js +0 -9
- package/dist/gd-bs-icons.js +636 -31
- package/dist/gd-bs-icons.min.js +1 -2
- package/dist/gd-bs.js +669 -13
- package/dist/gd-bs.min.js +1 -2
- package/package.json +4 -4
- package/post-build.js +0 -6
- package/src/components/popover/index.ts +2 -2
- package/src/components/tooltip/index.ts +2 -2
- package/src/index-icons.ts +1 -1
- package/src/index.ts +1 -1
- package/build/tippy.js +0 -2
- package/dist/gd-bs-icons.min.js.LICENSE.txt +0 -5
- package/dist/gd-bs.min.js.LICENSE.txt +0 -1
- package/pre-build.js +0 -30
- package/src/tippy.js/index.ts +0 -15
- package/src/tippy.js/popper.js +0 -1991
- package/src/tippy.js/tippy.js +0 -2497
|
@@ -27,7 +27,7 @@ var __assign = (this && this.__assign) || function () {
|
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
exports.Popover = exports.PopoverPlacements = exports.PopoverTypes = void 0;
|
|
30
|
-
var tippy_js_1 = require("
|
|
30
|
+
var tippy_js_1 = require("tippy.js");
|
|
31
31
|
var button_1 = require("../button");
|
|
32
32
|
var base_1 = require("../base");
|
|
33
33
|
var common_1 = require("../common");
|
|
@@ -27,7 +27,7 @@ var __assign = (this && this.__assign) || function () {
|
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
exports.Tooltip = exports.TooltipPlacements = exports.TooltipTypes = void 0;
|
|
30
|
-
var tippy_js_1 = require("
|
|
30
|
+
var tippy_js_1 = require("tippy.js");
|
|
31
31
|
var base_1 = require("../base");
|
|
32
32
|
var button_1 = require("../button");
|
|
33
33
|
var common_1 = require("../common");
|
package/build/index-icons.js
CHANGED
|
@@ -9,7 +9,7 @@ require("./ie");
|
|
|
9
9
|
var Components = require("./components");
|
|
10
10
|
exports.Components = Components;
|
|
11
11
|
// TippyJS library
|
|
12
|
-
var tippy_js_1 = require("
|
|
12
|
+
var tippy_js_1 = require("tippy.js");
|
|
13
13
|
exports.tippy = tippy_js_1.default;
|
|
14
14
|
// Icons
|
|
15
15
|
var icons_1 = require("./icons");
|
package/build/index.js
CHANGED
|
@@ -9,7 +9,7 @@ require("./ie");
|
|
|
9
9
|
var Components = require("./components");
|
|
10
10
|
exports.Components = Components;
|
|
11
11
|
// TippyJS library
|
|
12
|
-
var tippy_js_1 = require("
|
|
12
|
+
var tippy_js_1 = require("tippy.js");
|
|
13
13
|
exports.tippy = tippy_js_1.default;
|
|
14
14
|
// Bootstrap Global library
|
|
15
15
|
var BS = { Components: Components, tippy: tippy_js_1.default };
|
package/clean.js
CHANGED
|
@@ -36,14 +36,5 @@ deleteDirectory("./src/icons");
|
|
|
36
36
|
fs.mkdirSync("./src/icons");
|
|
37
37
|
fs.mkdirSync("./src/icons/svgs");
|
|
38
38
|
|
|
39
|
-
// Copy the popper library
|
|
40
|
-
var popperConfig = require("./node_modules/@popperjs/core/package.json");
|
|
41
|
-
fs.copyFileSync("./node_modules/@popperjs/core/" + popperConfig.main, "./src/tippy.js/popper.js");
|
|
42
|
-
|
|
43
|
-
// Copy the tippy.js library
|
|
44
|
-
var tippyConfig = require("./node_modules/tippy.js/package.json");
|
|
45
|
-
var tippyJS = fs.readFileSync("./node_modules/tippy.js/" + tippyConfig.main).toString();
|
|
46
|
-
fs.writeFileSync("./src/tippy.js/tippy.js", tippyJS.replace("var core = require('@popperjs/core');", "var core = require('./popper');"));
|
|
47
|
-
|
|
48
39
|
// Log
|
|
49
40
|
console.log("Successfully cleaned the library");
|