diff --git a/yes-no-dialog.js b/yes-no-dialog.js index 16d4be6..94698dd 100644 --- a/yes-no-dialog.js +++ b/yes-no-dialog.js @@ -13,9 +13,12 @@ class YesNoDialog extends IgniteElement { title: null, description: null, yesButton: "Yes", + yesButtonClass: "btn-primary", yesCallback: null, noButton: "No", + noButtonClass: "btn-secondary", noCallback: null, + spinnerClass: "text-secondary", modalElement: null, modal: null, autoOpen: false @@ -37,9 +40,10 @@ class YesNoDialog extends IgniteElement { new div().class("d-flex flex-row gap-3 w-100").child( new button() .disabled(this.loading) - .class("btn btn-lg btn-secondary flex-1 rounded-pill d-flex flex-row align-items-center justify-content-center") + .class("btn btn-lg flex-1 rounded-pill d-flex flex-row align-items-center justify-content-center") + .class(this.yesButtonClass) .child( - new div().show(this.loading).class("spinner-border me-2"), + new div().show(this.loading).class("spinner-border me-2").class(this.spinnerClass), this.yesButton ) @@ -47,7 +51,8 @@ class YesNoDialog extends IgniteElement { new button() .disabled(this.loading) - .class("btn btn-lg btn-primary rounded-pill flex-1") + .class("btn btn-lg rounded-pill flex-1") + .class(this.noButtonClass) .child(this.noButton) .onClick(() => this.no()) )