@vaadin/vaadin-themable-mixin 25.0.3 → 25.1.0-alpha2
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": "25.0
|
|
3
|
+
"version": "25.1.0-alpha2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
36
|
-
"@vaadin/component-base": "
|
|
36
|
+
"@vaadin/component-base": "25.1.0-alpha2",
|
|
37
37
|
"lit": "^3.0.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@polymer/polymer": "^3.0.0",
|
|
41
|
-
"@vaadin/chai-plugins": "
|
|
42
|
-
"@vaadin/test-runner-commands": "
|
|
41
|
+
"@vaadin/chai-plugins": "25.1.0-alpha2",
|
|
42
|
+
"@vaadin/test-runner-commands": "25.1.0-alpha2",
|
|
43
43
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
44
44
|
"sinon": "^21.0.0"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "dfeb6e14643ec923e5505ca645f7354c6dc170ec"
|
|
47
47
|
}
|
|
@@ -16,14 +16,13 @@ export declare class ThemePropertyMixinClass {
|
|
|
16
16
|
*
|
|
17
17
|
* Enables the component implementation to propagate the `theme`
|
|
18
18
|
* attribute value to the sub-components in Shadow DOM by binding
|
|
19
|
-
* the sub-component's "theme" attribute
|
|
20
|
-
* the host.
|
|
19
|
+
* the sub-component's "theme" attribute using the Lit template:
|
|
21
20
|
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
*
|
|
21
|
+
* ```html
|
|
22
|
+
* <vaadin-notification-card
|
|
23
|
+
* theme="${ifDefined(this._theme)}"
|
|
24
|
+
* ></vaadin-notification-card>
|
|
25
|
+
* ```
|
|
27
26
|
*
|
|
28
27
|
* @protected
|
|
29
28
|
*/
|
|
@@ -16,14 +16,13 @@ export const ThemePropertyMixin = (superClass) =>
|
|
|
16
16
|
*
|
|
17
17
|
* Enables the component implementation to propagate the `theme`
|
|
18
18
|
* attribute value to the sub-components in Shadow DOM by binding
|
|
19
|
-
* the sub-component's "theme" attribute
|
|
20
|
-
* the host.
|
|
19
|
+
* the sub-component's "theme" attribute using the Lit template:
|
|
21
20
|
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
*
|
|
21
|
+
* ```html
|
|
22
|
+
* <vaadin-notification-card
|
|
23
|
+
* theme="${ifDefined(this._theme)}"
|
|
24
|
+
* ></vaadin-notification-card>
|
|
25
|
+
* ```
|
|
27
26
|
*
|
|
28
27
|
* @protected
|
|
29
28
|
*/
|