@vaadin/vaadin-dialog
Advanced tools
Comparing version 20.0.0-alpha4 to 20.0.0-alpha5
{ | ||
"name": "@vaadin/vaadin-dialog", | ||
"version": "20.0.0-alpha4", | ||
"version": "20.0.0-alpha5", | ||
"description": "vaadin-dialog", | ||
@@ -30,7 +30,7 @@ "main": "vaadin-dialog.js", | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/vaadin-element-mixin": "^20.0.0-alpha4", | ||
"@vaadin/vaadin-lumo-styles": "^20.0.0-alpha4", | ||
"@vaadin/vaadin-material-styles": "^20.0.0-alpha4", | ||
"@vaadin/vaadin-overlay": "^20.0.0-alpha4", | ||
"@vaadin/vaadin-themable-mixin": "^20.0.0-alpha4" | ||
"@vaadin/vaadin-element-mixin": "^20.0.0-alpha5", | ||
"@vaadin/vaadin-lumo-styles": "^20.0.0-alpha5", | ||
"@vaadin/vaadin-material-styles": "^20.0.0-alpha5", | ||
"@vaadin/vaadin-overlay": "^20.0.0-alpha5", | ||
"@vaadin/vaadin-themable-mixin": "^20.0.0-alpha5" | ||
}, | ||
@@ -41,3 +41,3 @@ "devDependencies": { | ||
"@polymer/iron-test-helpers": "^3.0.0", | ||
"@vaadin/vaadin-text-field": "^20.0.0-alpha4", | ||
"@vaadin/vaadin-text-field": "^20.0.0-alpha5", | ||
"sinon": "^9.2.1" | ||
@@ -48,3 +48,3 @@ }, | ||
}, | ||
"gitHead": "9231db8255f75ccf3a241224ed36015c5e31994e" | ||
"gitHead": "78d1ead024055d57ef2badf52cfdb403290416b9" | ||
} |
@@ -21,8 +21,10 @@ import { DialogElement } from './vaadin-dialog.js'; | ||
export type DialogOverlayBoundsParam = DialogOverlayBounds | { | ||
top?: string | number; | ||
left?: string | number; | ||
width?: string | number; | ||
height?: string | number; | ||
}; | ||
export type DialogOverlayBoundsParam = | ||
| DialogOverlayBounds | ||
| { | ||
top?: string | number; | ||
left?: string | number; | ||
width?: string | number; | ||
height?: string | number; | ||
}; | ||
@@ -32,3 +34,3 @@ /** | ||
*/ | ||
export type DialogOpenedChanged = CustomEvent<{ value: boolean }>; | ||
export type DialogOpenedChangedEvent = CustomEvent<{ value: boolean }>; | ||
@@ -38,10 +40,10 @@ /** | ||
*/ | ||
export type DialogResize = CustomEvent<DialogResizeDimensions>; | ||
export type DialogResizeEvent = CustomEvent<DialogResizeDimensions>; | ||
export interface DialogElementEventMap { | ||
'opened-changed': DialogOpenedChanged; | ||
'opened-changed': DialogOpenedChangedEvent; | ||
'resize': DialogResize; | ||
resize: DialogResizeEvent; | ||
} | ||
export type DialogEventMap = HTMLElementEventMap & DialogElementEventMap; |
@@ -221,3 +221,3 @@ /** | ||
static get version() { | ||
return '20.0.0-alpha4'; | ||
return '20.0.0-alpha5'; | ||
} | ||
@@ -224,0 +224,0 @@ |
export * from './src/vaadin-dialog.js'; | ||
export * from './src/interfaces'; | ||
// TODO: remove from Vaadin 21 | ||
export * from './src/vaadin-dialog-legacy-events.js'; |
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
50530
19
1032