@truenas/ui-components 0.1.15 → 0.1.16
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.
|
@@ -7712,6 +7712,7 @@ class TnDialog {
|
|
|
7712
7712
|
return Promise.resolve().then(function () { return confirmDialog_component; }).then(m => {
|
|
7713
7713
|
const dialogRef = this.open(m.TnConfirmDialogComponent, {
|
|
7714
7714
|
data: opts,
|
|
7715
|
+
width: '488px',
|
|
7715
7716
|
role: 'alertdialog',
|
|
7716
7717
|
disableClose: true,
|
|
7717
7718
|
panelClass: [opts.destructive ? 'tn-dialog--destructive' : ''].filter(Boolean),
|
|
@@ -7805,14 +7806,14 @@ class TnConfirmDialogComponent {
|
|
|
7805
7806
|
ref = inject((DialogRef));
|
|
7806
7807
|
data = inject(DIALOG_DATA);
|
|
7807
7808
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: TnConfirmDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7808
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: TnConfirmDialogComponent, isStandalone: true, selector: "tn-confirm-dialog", host: { properties: { "class.tn-dialog--destructive": "data.destructive" }, classAttribute: "tn-dialog-shell" }, ngImport: i0, template: "<tn-dialog-shell [title]=\"data.title\">\n <p style=\"
|
|
7809
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: TnConfirmDialogComponent, isStandalone: true, selector: "tn-confirm-dialog", host: { properties: { "class.tn-dialog--destructive": "data.destructive" }, classAttribute: "tn-dialog-shell" }, ngImport: i0, template: "<tn-dialog-shell [title]=\"data.title\">\n <p style=\"margin: 0;\">{{ data.message }}</p>\n <div tnDialogAction>\n <tn-button\n type=\"button\"\n variant=\"outline\"\n [label]=\"data.cancelText || 'Cancel'\"\n (click)=\"ref.close(false)\" />\n <tn-button\n type=\"button\"\n [color]=\"data.destructive ? 'warn' : 'primary'\"\n [label]=\"data.confirmText || 'OK'\"\n (click)=\"ref.close(true)\" />\n </div>\n</tn-dialog-shell>\n", dependencies: [{ kind: "component", type: TnDialogShellComponent, selector: "tn-dialog-shell", inputs: ["title", "showFullscreenButton"] }, { kind: "component", type: TnButtonComponent, selector: "tn-button", inputs: ["primary", "color", "variant", "backgroundColor", "label", "disabled"], outputs: ["onClick"] }] });
|
|
7809
7810
|
}
|
|
7810
7811
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: TnConfirmDialogComponent, decorators: [{
|
|
7811
7812
|
type: Component,
|
|
7812
7813
|
args: [{ selector: 'tn-confirm-dialog', standalone: true, imports: [TnDialogShellComponent, TnButtonComponent], host: {
|
|
7813
7814
|
'class': 'tn-dialog-shell',
|
|
7814
7815
|
'[class.tn-dialog--destructive]': 'data.destructive'
|
|
7815
|
-
}, template: "<tn-dialog-shell [title]=\"data.title\">\n <p style=\"
|
|
7816
|
+
}, template: "<tn-dialog-shell [title]=\"data.title\">\n <p style=\"margin: 0;\">{{ data.message }}</p>\n <div tnDialogAction>\n <tn-button\n type=\"button\"\n variant=\"outline\"\n [label]=\"data.cancelText || 'Cancel'\"\n (click)=\"ref.close(false)\" />\n <tn-button\n type=\"button\"\n [color]=\"data.destructive ? 'warn' : 'primary'\"\n [label]=\"data.confirmText || 'OK'\"\n (click)=\"ref.close(true)\" />\n </div>\n</tn-dialog-shell>\n" }]
|
|
7816
7817
|
}] });
|
|
7817
7818
|
|
|
7818
7819
|
var confirmDialog_component = /*#__PURE__*/Object.freeze({
|