gd-bs 5.9.8 → 6.0.0
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/components/modal/index.js +2 -2
- package/build/icons/iconTypes.js +1 -1
- package/build/icons/index.js +1 -1
- package/build/icons/svgs/index.d.ts +1 -1
- package/build/icons/svgs/index.js +1 -1
- package/build/icons/svgs/{appWindow.js → window_.js} +3 -3
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.js.LICENSE.txt +4 -4
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/generateIcons.js +4 -4
- package/package.json +2 -2
- package/pnpm-lock.yaml +5 -5
- package/src/components/modal/index.ts +3 -3
- package/src/icons/iconTypes.ts +1 -1
- package/src/icons/index.d.ts +1 -1
- package/src/icons/index.ts +1 -1
- package/src/icons/svgs/index.d.ts +1 -1
- package/src/icons/svgs/index.ts +1 -1
- package/src/icons/svgs/window_.d.ts +1 -0
- package/src/icons/svgs/{appWindow.ts → window_.ts} +1 -1
- package/src/icons/svgs/appWindow.d.ts +0 -1
|
@@ -192,8 +192,6 @@ var _Modal = /** @class */ (function (_super) {
|
|
|
192
192
|
elClose.addEventListener("click", function () {
|
|
193
193
|
// Hide the modal
|
|
194
194
|
_this.hide();
|
|
195
|
-
// Call the event
|
|
196
|
-
_this.props.onClose ? _this.props.onClose(_this.el) : null;
|
|
197
195
|
});
|
|
198
196
|
}
|
|
199
197
|
// See if the keyboard option is set
|
|
@@ -361,6 +359,8 @@ var _Modal = /** @class */ (function (_super) {
|
|
|
361
359
|
backdrop = null;
|
|
362
360
|
// Set the flag
|
|
363
361
|
_this._tranisitioningFl = false;
|
|
362
|
+
// Call the event
|
|
363
|
+
_this.props.onClose ? _this.props.onClose(_this.el) : null;
|
|
364
364
|
}, 250);
|
|
365
365
|
}
|
|
366
366
|
else {
|
package/build/icons/iconTypes.js
CHANGED
|
@@ -1792,7 +1792,7 @@ var IconTypes;
|
|
|
1792
1792
|
IconTypes[IconTypes["WindowSplit"] = 1786] = "WindowSplit";
|
|
1793
1793
|
IconTypes[IconTypes["WindowStack"] = 1787] = "WindowStack";
|
|
1794
1794
|
IconTypes[IconTypes["WindowX"] = 1788] = "WindowX";
|
|
1795
|
-
IconTypes[IconTypes["
|
|
1795
|
+
IconTypes[IconTypes["Window_"] = 1789] = "Window_";
|
|
1796
1796
|
IconTypes[IconTypes["Windows"] = 1790] = "Windows";
|
|
1797
1797
|
IconTypes[IconTypes["Wordpress"] = 1791] = "Wordpress";
|
|
1798
1798
|
IconTypes[IconTypes["WrenchAdjustableCircleFill"] = 1792] = "WrenchAdjustableCircleFill";
|
package/build/icons/index.js
CHANGED
|
@@ -5388,7 +5388,7 @@ var Icons = function (iconType, height, width, className) {
|
|
|
5388
5388
|
return SVGIcons.windowX(height, width, className);
|
|
5389
5389
|
// window.svg
|
|
5390
5390
|
case 1789:
|
|
5391
|
-
return SVGIcons.
|
|
5391
|
+
return SVGIcons.window_(height, width, className);
|
|
5392
5392
|
// windows.svg
|
|
5393
5393
|
case 1790:
|
|
5394
5394
|
return SVGIcons.windows(height, width, className);
|
|
@@ -3575,7 +3575,7 @@ export const windowStack: (height?:number, width?:number, className?:string) =>
|
|
|
3575
3575
|
// window-x.svg
|
|
3576
3576
|
export const windowX: (height?:number, width?:number, className?:string) => HTMLElement;
|
|
3577
3577
|
// window.svg
|
|
3578
|
-
export const
|
|
3578
|
+
export const window_: (height?:number, width?:number, className?:string) => HTMLElement;
|
|
3579
3579
|
// windows.svg
|
|
3580
3580
|
export const windows: (height?:number, width?:number, className?:string) => HTMLElement;
|
|
3581
3581
|
// wordpress.svg
|
|
@@ -1802,7 +1802,7 @@ __exportStar(require("./windowSidebar"), exports);
|
|
|
1802
1802
|
__exportStar(require("./windowSplit"), exports);
|
|
1803
1803
|
__exportStar(require("./windowStack"), exports);
|
|
1804
1804
|
__exportStar(require("./windowX"), exports);
|
|
1805
|
-
__exportStar(require("./
|
|
1805
|
+
__exportStar(require("./window_"), exports);
|
|
1806
1806
|
__exportStar(require("./windows"), exports);
|
|
1807
1807
|
__exportStar(require("./wordpress"), exports);
|
|
1808
1808
|
__exportStar(require("./wrenchAdjustableCircleFill"), exports);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.window_ = void 0;
|
|
4
4
|
var generate_1 = require("../generate");
|
|
5
|
-
function
|
|
5
|
+
function window_(height, width, className) {
|
|
6
6
|
return (0, generate_1.generateIcon)("<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-window' viewBox='0 0 16 16'> <path d='M2.5 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zm2-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm1 .5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1z'/> <path d='M2 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H2zm13 2v2H1V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1zM2 14a1 1 0 0 1-1-1V6h14v7a1 1 0 0 1-1 1H2z'/> </svg>", height, width, className);
|
|
7
7
|
}
|
|
8
|
-
exports.
|
|
8
|
+
exports.window_ = window_;
|