Socket
Socket
Sign inDemoInstall

@vaadin/dialog

Package Overview
Dependencies
Maintainers
14
Versions
371
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/dialog - npm Package Compare versions

Comparing version 23.1.2 to 23.1.3

20

package.json
{
"name": "@vaadin/dialog",
"version": "23.1.2",
"version": "23.1.3",
"publishConfig": {

@@ -40,17 +40,17 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "^23.1.2",
"@vaadin/lit-renderer": "^23.1.2",
"@vaadin/vaadin-lumo-styles": "^23.1.2",
"@vaadin/vaadin-material-styles": "^23.1.2",
"@vaadin/vaadin-overlay": "^23.1.2",
"@vaadin/vaadin-themable-mixin": "^23.1.2"
"@vaadin/component-base": "^23.1.3",
"@vaadin/lit-renderer": "^23.1.3",
"@vaadin/vaadin-lumo-styles": "^23.1.3",
"@vaadin/vaadin-material-styles": "^23.1.3",
"@vaadin/vaadin-overlay": "^23.1.3",
"@vaadin/vaadin-themable-mixin": "^23.1.3"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4",
"@vaadin/polymer-legacy-adapter": "^23.1.2",
"@vaadin/polymer-legacy-adapter": "^23.1.3",
"@vaadin/testing-helpers": "^0.3.2",
"@vaadin/text-area": "^23.1.2",
"@vaadin/text-area": "^23.1.3",
"sinon": "^13.0.2"
},
"gitHead": "6fb205c6e9a761feadfb779dd5d7af96d3102e56"
"gitHead": "3066c296ad0ef652bc49417005523398199f1bf2"
}

@@ -18,3 +18,3 @@ /**

*/
abstract rendererProperty: 'renderer' | 'headerRenderer' | 'footerRenderer';
abstract rendererProperty: 'footerRenderer' | 'headerRenderer' | 'renderer';

@@ -21,0 +21,0 @@ /**

@@ -10,3 +10,3 @@ /**

base: T,
): T & Constructor<DialogDraggableMixinClass>;
): Constructor<DialogDraggableMixinClass> & T;

@@ -13,0 +13,0 @@ export declare class DialogDraggableMixinClass {

@@ -10,3 +10,3 @@ /**

base: T,
): T & Constructor<DialogResizableMixinClass>;
): Constructor<DialogResizableMixinClass> & T;

@@ -13,0 +13,0 @@ export declare class DialogResizableMixinClass {

@@ -19,3 +19,3 @@ /**

export type DialogResizableDirection = 'n' | 'e' | 's' | 'w' | 'nw' | 'ne' | 'se' | 'sw';
export type DialogResizableDirection = 'e' | 'n' | 'ne' | 'nw' | 's' | 'se' | 'sw' | 'w';

@@ -39,6 +39,6 @@ export type DialogResizeDimensions = {

| {
top?: string | number;
left?: string | number;
width?: string | number;
height?: string | number;
top?: number | string;
left?: number | string;
width?: number | string;
height?: number | string;
};

@@ -62,3 +62,3 @@

export type DialogEventMap = HTMLElementEventMap & DialogCustomEventMap;
export type DialogEventMap = DialogCustomEventMap & HTMLElementEventMap;

@@ -214,3 +214,3 @@ /**

listener: (this: Dialog, ev: DialogEventMap[K]) => void,
options?: boolean | AddEventListenerOptions,
options?: AddEventListenerOptions | boolean,
): void;

@@ -221,3 +221,3 @@

listener: (this: Dialog, ev: DialogEventMap[K]) => void,
options?: boolean | EventListenerOptions,
options?: EventListenerOptions | boolean,
): void;

@@ -224,0 +224,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc