@vaadin/confirm-dialog
Advanced tools
Comparing version 23.0.9 to 23.0.10
{ | ||
"name": "@vaadin/confirm-dialog", | ||
"version": "23.0.9", | ||
"version": "23.0.10", | ||
"publishConfig": { | ||
@@ -37,10 +37,10 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/button": "^23.0.9", | ||
"@vaadin/component-base": "^23.0.9", | ||
"@vaadin/dialog": "^23.0.9", | ||
"@vaadin/button": "^23.0.10", | ||
"@vaadin/component-base": "^23.0.10", | ||
"@vaadin/dialog": "^23.0.10", | ||
"@vaadin/vaadin-license-checker": "^2.1.0", | ||
"@vaadin/vaadin-lumo-styles": "^23.0.9", | ||
"@vaadin/vaadin-material-styles": "^23.0.9", | ||
"@vaadin/vaadin-overlay": "^23.0.9", | ||
"@vaadin/vaadin-themable-mixin": "^23.0.9" | ||
"@vaadin/vaadin-lumo-styles": "^23.0.10", | ||
"@vaadin/vaadin-material-styles": "^23.0.10", | ||
"@vaadin/vaadin-overlay": "^23.0.10", | ||
"@vaadin/vaadin-themable-mixin": "^23.0.10" | ||
}, | ||
@@ -52,3 +52,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "4d687bdd48ba78d55f3371a78b70818e4dfca1a3" | ||
"gitHead": "e8402a55ce0e823ae6da5c97486998cfd931b1d3" | ||
} |
@@ -30,3 +30,3 @@ /** | ||
`, | ||
{ moduleId: 'vaadin-confirm-dialog-overlay-styles' } | ||
{ moduleId: 'vaadin-confirm-dialog-overlay-styles' }, | ||
); | ||
@@ -33,0 +33,0 @@ |
@@ -152,3 +152,3 @@ /** | ||
listener: (this: ConfirmDialog, ev: ConfirmDialogEventMap[K]) => void, | ||
options?: boolean | AddEventListenerOptions | ||
options?: boolean | AddEventListenerOptions, | ||
): void; | ||
@@ -159,3 +159,3 @@ | ||
listener: (this: ConfirmDialog, ev: ConfirmDialogEventMap[K]) => void, | ||
options?: boolean | EventListenerOptions | ||
options?: boolean | EventListenerOptions, | ||
): void; | ||
@@ -162,0 +162,0 @@ } |
@@ -112,3 +112,3 @@ /** | ||
value: false, | ||
notify: true | ||
notify: true, | ||
}, | ||
@@ -122,3 +122,3 @@ | ||
type: String, | ||
value: '' | ||
value: '', | ||
}, | ||
@@ -131,3 +131,3 @@ | ||
type: String, | ||
value: '' | ||
value: '', | ||
}, | ||
@@ -143,3 +143,3 @@ | ||
type: String, | ||
value: 'Confirm' | ||
value: 'Confirm', | ||
}, | ||
@@ -155,3 +155,3 @@ | ||
type: String, | ||
value: 'primary' | ||
value: 'primary', | ||
}, | ||
@@ -166,3 +166,3 @@ | ||
type: Boolean, | ||
value: false | ||
value: false, | ||
}, | ||
@@ -177,3 +177,3 @@ | ||
reflectToAttribute: true, | ||
value: false | ||
value: false, | ||
}, | ||
@@ -189,3 +189,3 @@ | ||
type: String, | ||
value: 'Reject' | ||
value: 'Reject', | ||
}, | ||
@@ -201,3 +201,3 @@ | ||
type: String, | ||
value: 'error tertiary' | ||
value: 'error tertiary', | ||
}, | ||
@@ -212,3 +212,3 @@ | ||
reflectToAttribute: true, | ||
value: false | ||
value: false, | ||
}, | ||
@@ -224,3 +224,3 @@ | ||
type: String, | ||
value: 'Cancel' | ||
value: 'Cancel', | ||
}, | ||
@@ -236,3 +236,3 @@ | ||
type: String, | ||
value: 'tertiary' | ||
value: 'tertiary', | ||
}, | ||
@@ -246,3 +246,3 @@ | ||
type: HTMLElement, | ||
observer: '_cancelButtonChanged' | ||
observer: '_cancelButtonChanged', | ||
}, | ||
@@ -256,3 +256,3 @@ | ||
type: HTMLElement, | ||
observer: '_confirmButtonChanged' | ||
observer: '_confirmButtonChanged', | ||
}, | ||
@@ -265,3 +265,3 @@ | ||
_headerNode: { | ||
type: HTMLElement | ||
type: HTMLElement, | ||
}, | ||
@@ -274,3 +274,3 @@ | ||
_messageNode: { | ||
type: HTMLElement | ||
type: HTMLElement, | ||
}, | ||
@@ -284,4 +284,4 @@ | ||
type: HTMLElement, | ||
observer: '_rejectButtonChanged' | ||
} | ||
observer: '_rejectButtonChanged', | ||
}, | ||
}; | ||
@@ -308,3 +308,3 @@ } | ||
'__updateMessageNode(_messageNode, message)', | ||
'__updateRejectButton(_rejectButton, rejectText, rejectTheme, reject)' | ||
'__updateRejectButton(_rejectButton, rejectText, rejectTheme, reject)', | ||
]; | ||
@@ -346,3 +346,3 @@ } | ||
return button; | ||
} | ||
}, | ||
}; | ||
@@ -349,0 +349,0 @@ } |
@@ -96,3 +96,3 @@ import '@vaadin/vaadin-lumo-styles/color.js'; | ||
`, | ||
{ moduleId: 'lumo-confirm-dialog-overlay' } | ||
{ moduleId: 'lumo-confirm-dialog-overlay' }, | ||
); |
@@ -73,3 +73,3 @@ import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js'; | ||
`, | ||
{ moduleId: 'material-confirm-dialog-overlay' } | ||
{ moduleId: 'material-confirm-dialog-overlay' }, | ||
); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
47134