@vaadin/vaadin-themable-mixin 24.7.0-alpha8 → 24.7.0-beta1
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": "24.7.0-
|
|
3
|
+
"version": "24.7.0-beta1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/chai-plugins": "24.7.0-
|
|
40
|
-
"@vaadin/test-runner-commands": "24.7.0-
|
|
39
|
+
"@vaadin/chai-plugins": "24.7.0-beta1",
|
|
40
|
+
"@vaadin/test-runner-commands": "24.7.0-beta1",
|
|
41
41
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
42
42
|
"sinon": "^18.0.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "4043c518ef9b915cde612d2907ddc9bd10e5af17"
|
|
45
45
|
}
|
|
@@ -20,6 +20,9 @@ export declare class ThemableMixinClass {
|
|
|
20
20
|
protected static finalizeStyles(styles?: CSSResultGroup): CSSResult[];
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
24
|
+
export declare interface ThemableMixinClass extends ThemePropertyMixinClass {}
|
|
25
|
+
|
|
23
26
|
/**
|
|
24
27
|
* Registers CSS styles for a component type. Make sure to register the styles before
|
|
25
28
|
* the first instance of a component of the type is attached to DOM.
|