@4i/modal-manager 1.0.50 → 1.0.51
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
CHANGED
@@ -18,6 +18,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18
18
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
19
19
|
};
|
20
20
|
Object.defineProperty(exports, "__esModule", { value: true });
|
21
|
+
exports.ModalManager = void 0;
|
21
22
|
var Manager_1 = __importDefault(require("./Manager"));
|
22
23
|
function uniqueID() {
|
23
24
|
return Math.floor(Math.random() * Date.now());
|
@@ -62,5 +63,6 @@ var ModalManager = /** @class */ (function (_super) {
|
|
62
63
|
};
|
63
64
|
return ModalManager;
|
64
65
|
}(Manager_1.default));
|
66
|
+
exports.ModalManager = ModalManager;
|
65
67
|
var modal = new ModalManager();
|
66
68
|
exports.default = modal;
|