Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/vaadin-themable-mixin

Package Overview
Dependencies
Maintainers
14
Versions
479
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/vaadin-themable-mixin - npm Package Compare versions

Comparing version 23.2.0-alpha3 to 23.2.0-alpha4

4

package.json
{
"name": "@vaadin/vaadin-themable-mixin",
"version": "23.2.0-alpha3",
"version": "23.2.0-alpha4",
"publishConfig": {

@@ -43,3 +43,3 @@ "access": "public"

},
"gitHead": "06e5875be93ca50da2846dafc65a8531010c0576"
"gitHead": "cbf5f1d0f38ac9b81c65cf9ef5660182e176e598"
}

@@ -15,3 +15,3 @@ /**

base: T,
): T & Constructor<ThemableMixinClass> & Constructor<ThemePropertyMixinClass>;
): Constructor<ThemableMixinClass> & Constructor<ThemePropertyMixinClass> & T;

@@ -34,3 +34,3 @@ export declare class ThemableMixinClass {

moduleId?: string;
include?: string | string[];
include?: string[] | string;
};

@@ -37,0 +37,0 @@

@@ -92,5 +92,5 @@ /**

let includePriority = 0;
if (moduleName.indexOf('lumo-') === 0 || moduleName.indexOf('material-') === 0) {
if (moduleName.startsWith('lumo-') || moduleName.startsWith('material-')) {
includePriority = 1;
} else if (moduleName.indexOf('vaadin-') === 0) {
} else if (moduleName.startsWith('vaadin-')) {
includePriority = 2;

@@ -97,0 +97,0 @@ }

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

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

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

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