Socket
Socket
Sign inDemoInstall

@vaadin/vaadin-material-styles

Package Overview
Dependencies
Maintainers
16
Versions
415
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.2.3 to 1.3.0

6

mixins/required-field.js

@@ -60,2 +60,8 @@ import '../color.js';

}
/* RTL specific styles */
:host([dir="rtl"]) [part="label"] {
transform-origin: 100% 75%;
}
</style>

@@ -62,0 +68,0 @@ </template>

2

package.json

@@ -15,3 +15,3 @@ {

"name": "@vaadin/vaadin-material-styles",
"version": "1.2.3",
"version": "1.3.0",
"main": "all-imports.js",

@@ -18,0 +18,0 @@ "author": "Vaadin Ltd",

@@ -0,2 +1,10 @@

import './font-roboto.js';
/* MAGI REMOVE START */
/*
FIXME(polymer-modulizer): the above comments were extracted
from HTML and may be out of place here. Review them and
then delete this comment!
*/
import './version.js';
import '@polymer/polymer/lib/elements/custom-style.js';

@@ -107,3 +115,12 @@ import '@polymer/polymer/lib/elements/dom-module.js';

document.head.appendChild($_documentContainer.content);
if (!window.polymerSkipLoadingFontRoboto) {
const font = 'https://fonts.googleapis.com/css?family=Roboto+Mono:400,700|Roboto:400,300,300italic,400italic,500,500italic,700,700italic';
const link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.crossOrigin = 'anonymous';
link.href = font;
document.head.appendChild(link);
}
import './font-roboto.js';
/* MAGI REMOVE END */
class Material extends HTMLElement {
static get version() {
return '1.2.3';
return '1.3.0';
}

@@ -5,0 +5,0 @@ }

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc