gd-bs 5.5.2 → 5.5.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/package.json +58 -60
- package/build/index-core.js +0 -14
- package/dist/gd-bs-core.js +0 -3697
- package/dist/gd-bs-core.min.js +0 -1
- package/src/index-core.ts +0 -14
package/package.json
CHANGED
|
@@ -1,61 +1,59 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "gd-bs",
|
|
3
|
-
"version": "5.5.
|
|
4
|
-
"description": "Bootstrap JavaScript, TypeScript and Web Components library.",
|
|
5
|
-
"main": "build/index.js",
|
|
6
|
-
"typings": "src/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"all": "npm run clean && npm run generate-icons && npm run build && npm run build-icons && npm run
|
|
9
|
-
"build": "tsc && npm run build-bs && webpack --mode=development && npm run post-build",
|
|
10
|
-
"build-bs": "webpack --mode=production --config webpack.sass.js",
|
|
11
|
-
"build-
|
|
12
|
-
"build
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"prod": "webpack --mode=production",
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"@
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
"webpack-cli": "^4.9.2"
|
|
60
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "gd-bs",
|
|
3
|
+
"version": "5.5.3",
|
|
4
|
+
"description": "Bootstrap JavaScript, TypeScript and Web Components library.",
|
|
5
|
+
"main": "build/index.js",
|
|
6
|
+
"typings": "src/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"all": "npm run clean && npm run generate-icons && npm run build && npm run build-icons && npm run prod && npm run prod-icons && npm run typings && npm run docs",
|
|
9
|
+
"build": "tsc && npm run build-bs && webpack --mode=development && npm run post-build",
|
|
10
|
+
"build-bs": "webpack --mode=production --config webpack.sass.js",
|
|
11
|
+
"build-icons": "webpack --mode=development --config webpack.icons.js",
|
|
12
|
+
"post-build": "node ./post-build",
|
|
13
|
+
"clean": "node ./clean.js",
|
|
14
|
+
"docs": "typedoc",
|
|
15
|
+
"generate-icons": "node ./generateIcons",
|
|
16
|
+
"prod": "webpack --mode=production",
|
|
17
|
+
"prod-icons": "webpack --mode=production --config webpack.icons.js",
|
|
18
|
+
"typings": "dts-bundle --configJson dts-bundle.json"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/gunjandatta/gd-bs.git"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"Bootstrap",
|
|
26
|
+
"TypeScript"
|
|
27
|
+
],
|
|
28
|
+
"author": "Gunjan Datta <me@dattabase.com> (https://dattabase.com)",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/gunjandatta/gd-bs/issues"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://dattabase.com/extras/bs",
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@popperjs/core": "^2.11.5",
|
|
36
|
+
"bootstrap": "^5.1.3",
|
|
37
|
+
"bootstrap-icons": "^1.8.2",
|
|
38
|
+
"core-js": "^3.22.6",
|
|
39
|
+
"tippy.js": "^6.3.7"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@babel/core": "^7.18.0",
|
|
43
|
+
"@babel/preset-env": "^7.18.0",
|
|
44
|
+
"@types/node": "^16.11.36",
|
|
45
|
+
"autoprefixer": "^10.4.7",
|
|
46
|
+
"babel-loader": "^8.2.5",
|
|
47
|
+
"css-loader": "^6.7.1",
|
|
48
|
+
"dts-bundle": "^0.7.3",
|
|
49
|
+
"html-loader": "^2.1.2",
|
|
50
|
+
"postcss-loader": "^6.2.1",
|
|
51
|
+
"sass": "^1.52.1",
|
|
52
|
+
"sass-loader": "^12.6.0",
|
|
53
|
+
"style-loader": "^3.3.1",
|
|
54
|
+
"ts-loader": "^9.3.0",
|
|
55
|
+
"typedoc": "^0.22.15",
|
|
56
|
+
"webpack": "^5.72.1",
|
|
57
|
+
"webpack-cli": "^4.9.2"
|
|
58
|
+
}
|
|
61
59
|
}
|
package/build/index-core.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
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;
|