"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BanAction = void 0;
- Core = tslib_1.__importStar(Core);
- Abstract_1 = tslib_1.__importDefault(Abstract_1);
- Ban_1 = tslib_1.__importDefault(Ban_1);
- UiNotification = tslib_1.__importStar(UiNotification);
- EventHandler = tslib_1.__importStar(EventHandler);
+ Core = (0, tslib_1.__importStar)(Core);
+ Abstract_1 = (0, tslib_1.__importDefault)(Abstract_1);
+ Ban_1 = (0, tslib_1.__importDefault)(Ban_1);
+ UiNotification = (0, tslib_1.__importStar)(UiNotification);
+ EventHandler = (0, tslib_1.__importStar)(EventHandler);
class BanAction extends Abstract_1.default {
constructor(button, userId, userDataElement) {
super(button, userId, userDataElement);
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DeleteAction = void 0;
- Abstract_1 = tslib_1.__importDefault(Abstract_1);
- Delete_1 = tslib_1.__importDefault(Delete_1);
+ Abstract_1 = (0, tslib_1.__importDefault)(Abstract_1);
+ Delete_1 = (0, tslib_1.__importDefault)(Delete_1);
class DeleteAction extends Abstract_1.default {
constructor(button, userId, userDataElement) {
super(button, userId, userDataElement);
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DisableAction = void 0;
- Ajax = tslib_1.__importStar(Ajax);
- Core = tslib_1.__importStar(Core);
- UiNotification = tslib_1.__importStar(UiNotification);
- Abstract_1 = tslib_1.__importDefault(Abstract_1);
- EventHandler = tslib_1.__importStar(EventHandler);
+ Ajax = (0, tslib_1.__importStar)(Ajax);
+ Core = (0, tslib_1.__importStar)(Core);
+ UiNotification = (0, tslib_1.__importStar)(UiNotification);
+ Abstract_1 = (0, tslib_1.__importDefault)(Abstract_1);
+ EventHandler = (0, tslib_1.__importStar)(EventHandler);
class DisableAction extends Abstract_1.default {
constructor(button, userId, userDataElement) {
super(button, userId, userDataElement);
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BanHandler = void 0;
- Ajax = tslib_1.__importStar(Ajax);
- Dialog_1 = tslib_1.__importDefault(Dialog_1);
+ Ajax = (0, tslib_1.__importStar)(Ajax);
+ Dialog_1 = (0, tslib_1.__importDefault)(Dialog_1);
class BanHandler {
constructor(userIDs) {
this.userIDs = userIDs;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BanDialog = void 0;
- Dialog_1 = tslib_1.__importDefault(Dialog_1);
- Language = tslib_1.__importStar(Language);
- Ajax = tslib_1.__importStar(Ajax);
- Picker_1 = tslib_1.__importDefault(Picker_1);
+ Dialog_1 = (0, tslib_1.__importDefault)(Dialog_1);
+ Language = (0, tslib_1.__importStar)(Language);
+ Ajax = (0, tslib_1.__importStar)(Ajax);
+ Picker_1 = (0, tslib_1.__importDefault)(Picker_1);
class BanDialog {
static open(userIDs, callback) {
if (!BanDialog.instance) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Delete = void 0;
- UiConfirmation = tslib_1.__importStar(UiConfirmation);
- Ajax = tslib_1.__importStar(Ajax);
+ UiConfirmation = (0, tslib_1.__importStar)(UiConfirmation);
+ Ajax = (0, tslib_1.__importStar)(Ajax);
class Delete {
constructor(userIDs, successCallback, deleteMessage) {
this.userIDs = userIDs;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SendNewPassword = void 0;
- Language = tslib_1.__importStar(Language);
- UiConfirmation = tslib_1.__importStar(UiConfirmation);
- Worker_1 = tslib_1.__importDefault(Worker_1);
+ Language = (0, tslib_1.__importStar)(Language);
+ UiConfirmation = (0, tslib_1.__importStar)(UiConfirmation);
+ Worker_1 = (0, tslib_1.__importDefault)(Worker_1);
class SendNewPassword {
constructor(userIDs, successCallback) {
this.userIDs = userIDs;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SendNewPasswordAction = void 0;
- Abstract_1 = tslib_1.__importDefault(Abstract_1);
- SendNewPassword_1 = tslib_1.__importDefault(SendNewPassword_1);
+ Abstract_1 = (0, tslib_1.__importDefault)(Abstract_1);
+ SendNewPassword_1 = (0, tslib_1.__importDefault)(SendNewPassword_1);
class SendNewPasswordAction extends Abstract_1.default {
constructor(button, userId, userDataElement) {
super(button, userId, userDataElement);
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ToggleConfirmEmailAction = void 0;
- Abstract_1 = tslib_1.__importDefault(Abstract_1);
- Ajax = tslib_1.__importStar(Ajax);
- Core = tslib_1.__importStar(Core);
- UiNotification = tslib_1.__importStar(UiNotification);
+ Abstract_1 = (0, tslib_1.__importDefault)(Abstract_1);
+ Ajax = (0, tslib_1.__importStar)(Ajax);
+ Core = (0, tslib_1.__importStar)(Core);
+ UiNotification = (0, tslib_1.__importStar)(UiNotification);
class ToggleConfirmEmailAction extends Abstract_1.default {
constructor(button, userId, userDataElement) {
super(button, userId, userDataElement);
*/
define(["require", "exports", "tslib", "./Content/Remove/Handler", "../../../Core", "../../../Event/Handler", "../../../Language", "../../../Ui/Dropdown/Simple", "../../../Dom/Util", "./Action/SendNewPasswordAction", "./Action/ToggleConfirmEmailAction", "./Action/DisableAction", "./Action/BanAction", "./Action/DeleteAction"], function (require, exports, tslib_1, Handler_1, Core, EventHandler, Language, Simple_1, Util_1, SendNewPasswordAction_1, ToggleConfirmEmailAction_1, DisableAction_1, BanAction_1, DeleteAction_1) {
"use strict";
- Handler_1 = tslib_1.__importDefault(Handler_1);
- Core = tslib_1.__importStar(Core);
- EventHandler = tslib_1.__importStar(EventHandler);
- Language = tslib_1.__importStar(Language);
- Simple_1 = tslib_1.__importDefault(Simple_1);
- Util_1 = tslib_1.__importDefault(Util_1);
- SendNewPasswordAction_1 = tslib_1.__importDefault(SendNewPasswordAction_1);
- ToggleConfirmEmailAction_1 = tslib_1.__importDefault(ToggleConfirmEmailAction_1);
- DisableAction_1 = tslib_1.__importDefault(DisableAction_1);
- BanAction_1 = tslib_1.__importDefault(BanAction_1);
- DeleteAction_1 = tslib_1.__importDefault(DeleteAction_1);
+ Handler_1 = (0, tslib_1.__importDefault)(Handler_1);
+ Core = (0, tslib_1.__importStar)(Core);
+ EventHandler = (0, tslib_1.__importStar)(EventHandler);
+ Language = (0, tslib_1.__importStar)(Language);
+ Simple_1 = (0, tslib_1.__importDefault)(Simple_1);
+ Util_1 = (0, tslib_1.__importDefault)(Util_1);
+ SendNewPasswordAction_1 = (0, tslib_1.__importDefault)(SendNewPasswordAction_1);
+ ToggleConfirmEmailAction_1 = (0, tslib_1.__importDefault)(ToggleConfirmEmailAction_1);
+ DisableAction_1 = (0, tslib_1.__importDefault)(DisableAction_1);
+ BanAction_1 = (0, tslib_1.__importDefault)(BanAction_1);
+ DeleteAction_1 = (0, tslib_1.__importDefault)(DeleteAction_1);
class AcpUiUserEditor {
/**
* Initializes the edit dropdown for each user.
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ValueInterval = void 0;
- Abstract_1 = tslib_1.__importDefault(Abstract_1);
- DependencyManager = tslib_1.__importStar(DependencyManager);
+ Abstract_1 = (0, tslib_1.__importDefault)(Abstract_1);
+ DependencyManager = (0, tslib_1.__importStar)(DependencyManager);
class ValueInterval extends Abstract_1.default {
constructor() {
super(...arguments);
*/
define(["require", "exports", "tslib", "../../Core", "../Dialog", "../../Dom/Util", "../../Language", "../../ColorUtil"], function (require, exports, tslib_1, Core, Dialog_1, Util_1, Language, ColorUtil) {
"use strict";
- Core = tslib_1.__importStar(Core);
- Dialog_1 = tslib_1.__importDefault(Dialog_1);
- Util_1 = tslib_1.__importDefault(Util_1);
- Language = tslib_1.__importStar(Language);
- ColorUtil = tslib_1.__importStar(ColorUtil);
+ Core = (0, tslib_1.__importStar)(Core);
+ Dialog_1 = (0, tslib_1.__importDefault)(Dialog_1);
+ Util_1 = (0, tslib_1.__importDefault)(Util_1);
+ Language = (0, tslib_1.__importStar)(Language);
+ ColorUtil = (0, tslib_1.__importStar)(ColorUtil);
class UiColorPicker {
/**
* Initializes a new color picker instance.