@vaadin/vaadin-themable-mixin 23.1.2 → 23.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/vaadin-themable-mixin",
|
|
3
|
-
"version": "23.1.
|
|
3
|
+
"version": "23.1.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
41
41
|
"sinon": "^13.0.2"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "326938919a54353231af25d341ba6076c249afee"
|
|
44
44
|
}
|
|
@@ -12,7 +12,7 @@ import { ThemePropertyMixinClass } from './vaadin-theme-property-mixin.js';
|
|
|
12
12
|
*/
|
|
13
13
|
export declare function ThemableMixin<T extends Constructor<HTMLElement>>(
|
|
14
14
|
base: T,
|
|
15
|
-
):
|
|
15
|
+
): Constructor<ThemableMixinClass> & Constructor<ThemePropertyMixinClass> & T;
|
|
16
16
|
|
|
17
17
|
export declare class ThemableMixinClass {
|
|
18
18
|
protected static finalize(): void;
|
|
@@ -30,7 +30,7 @@ type Theme = {
|
|
|
30
30
|
themeFor: string;
|
|
31
31
|
styles: CSSResult[];
|
|
32
32
|
moduleId?: string;
|
|
33
|
-
include?: string | string
|
|
33
|
+
include?: string[] | string;
|
|
34
34
|
};
|
|
35
35
|
|
|
36
36
|
/**
|
|
@@ -7,7 +7,7 @@ import { Constructor } from '@open-wc/dedupe-mixin';
|
|
|
7
7
|
|
|
8
8
|
export declare function ThemePropertyMixin<T extends Constructor<HTMLElement>>(
|
|
9
9
|
base: T,
|
|
10
|
-
):
|
|
10
|
+
): Constructor<ThemePropertyMixinClass> & T;
|
|
11
11
|
|
|
12
12
|
export declare class ThemePropertyMixinClass {
|
|
13
13
|
/**
|