New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/message-list

Package Overview
Dependencies
Maintainers
14
Versions
415
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/message-list - npm Package Compare versions

Comparing version 23.1.0-alpha3 to 23.1.0-alpha4

14

package.json
{
"name": "@vaadin/message-list",
"version": "23.1.0-alpha3",
"version": "23.1.0-alpha4",
"publishConfig": {

@@ -39,7 +39,7 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/avatar": "23.1.0-alpha3",
"@vaadin/component-base": "23.1.0-alpha3",
"@vaadin/vaadin-lumo-styles": "23.1.0-alpha3",
"@vaadin/vaadin-material-styles": "23.1.0-alpha3",
"@vaadin/vaadin-themable-mixin": "23.1.0-alpha3"
"@vaadin/avatar": "23.1.0-alpha4",
"@vaadin/component-base": "23.1.0-alpha4",
"@vaadin/vaadin-lumo-styles": "23.1.0-alpha4",
"@vaadin/vaadin-material-styles": "23.1.0-alpha4",
"@vaadin/vaadin-themable-mixin": "23.1.0-alpha4"
},

@@ -51,3 +51,3 @@ "devDependencies": {

},
"gitHead": "8c9e64e8dfa158dd52a9bf6da351ff038c88ca85"
"gitHead": "aacdb7fe09811894751f0378ff7fb66071892c71"
}

@@ -17,3 +17,3 @@ /**

`,
{ moduleId: 'vaadin-message-avatar-styles' }
{ moduleId: 'vaadin-message-avatar-styles' },
);

@@ -20,0 +20,0 @@

@@ -71,4 +71,4 @@ /**

},
observer: '_itemsChanged'
}
observer: '_itemsChanged',
},
};

@@ -210,4 +210,4 @@ }

_getIndexOfFocusableElement() {
const index = this._messages.findIndex((e) => e.tabIndex == 0);
return index != -1 ? index : 0;
const index = this._messages.findIndex((e) => e.tabIndex === 0);
return index !== -1 ? index : 0;
}

@@ -214,0 +214,0 @@ }

@@ -62,3 +62,3 @@ /**

time: {
type: String
type: String,
},

@@ -73,3 +73,3 @@

userName: {
type: String
type: String,
},

@@ -84,3 +84,3 @@

userAbbr: {
type: String
type: String,
},

@@ -94,3 +94,3 @@

userImg: {
type: String
type: String,
},

@@ -118,4 +118,4 @@

userColorIndex: {
type: Number
}
type: Number,
},
};

@@ -122,0 +122,0 @@ }

@@ -17,3 +17,3 @@ import '@vaadin/avatar/theme/lumo/vaadin-avatar-styles.js';

`,
{ moduleId: 'lumo-message-avatar' }
{ moduleId: 'lumo-message-avatar' },
);

@@ -53,3 +53,3 @@ import '@vaadin/vaadin-lumo-styles/color.js';

`,
{ moduleId: 'lumo-message' }
{ moduleId: 'lumo-message' },
);

@@ -18,3 +18,3 @@ import '@vaadin/avatar/theme/material/vaadin-avatar-styles.js';

`,
{ moduleId: 'material-message-avatar' }
{ moduleId: 'material-message-avatar' },
);

@@ -13,3 +13,3 @@ import '@vaadin/vaadin-material-styles/color.js';

`,
{ moduleId: 'material-message-list' }
{ moduleId: 'material-message-list' },
);

@@ -62,3 +62,3 @@ import '@vaadin/vaadin-material-styles/color.js';

`,
{ moduleId: 'material-message' }
{ moduleId: 'material-message' },
);
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