@vaadin/vaadin-themable-mixin
Advanced tools
Comparing version 23.2.0-alpha3 to 23.2.0-alpha4
{ | ||
"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 { |
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
25984