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.
@@ -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 {
@@ -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["AppWindow"] = 1789] = "AppWindow";
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";
@@ -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.appWindow(height, width, className);
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 appWindow: (height?:number, width?:number, className?:string) => HTMLElement;
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("./appWindow"), exports);
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.appWindow = void 0;
3
+ exports.window_ = void 0;
4
4
  var generate_1 = require("../generate");
5
- function appWindow(height, width, className) {
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.appWindow = appWindow;
8
+ exports.window_ = window_;