@vaadin/vaadin-themable-mixin 22.0.0-alpha9 → 22.0.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": "22.0.0-alpha9",
3
+ "version": "22.0.0-beta1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -38,5 +38,5 @@
38
38
  "@vaadin/testing-helpers": "^0.3.0",
39
39
  "sinon": "^9.2.4"
40
40
  },
41
- "gitHead": "6e8c899dc65918f97e3c0acb2076122c4b2ef274"
41
+ "gitHead": "4cf8a9d0504994200c610e44b3676114fef49c1e"
42
42
  }
@@ -15,14 +15,14 @@ interface ThemePropertyMixin {
15
15
  * in shadow DOM.
16
16
  *
17
17
  * Enables the component implementation to propagate the `theme`
18
- * attribute value to the subcomponents in Shadow DOM by binding
19
- * the subcomponent’s "theme" attribute to the `theme` property of
18
+ * attribute value to the sub-components in Shadow DOM by binding
19
+ * the sub-component’s "theme" attribute to the `theme` property of
20
20
  * the host.
21
21
  *
22
22
  * **NOTE:** Extending the mixin only provides the property for binding,
23
23
  * and does not make the propagation alone.
24
24
  *
25
- * See [Theme Attribute and Subcomponents](https://github.com/vaadin/vaadin-themable-mixin/wiki/5.-Theme-Attribute-and-Subcomponents).
25
+ * See [Styling Components: Sub-components](https://vaadin.com/docs/latest/ds/customization/styling-components/#sub-components).
26
26
  * page for more information.
27
27
  */
28
28
  readonly theme: string | null | undefined;
@@ -15,14 +15,14 @@ export const ThemePropertyMixin = (superClass) =>
15
15
  * in shadow DOM.
16
16
  *
17
17
  * Enables the component implementation to propagate the `theme`
18
- * attribute value to the subcomponents in Shadow DOM by binding
19
- * the subcomponent’s "theme" attribute to the `theme` property of
18
+ * attribute value to the sub-components in Shadow DOM by binding
19
+ * the sub-component’s "theme" attribute to the `theme` property of
20
20
  * the host.
21
21
  *
22
22
  * **NOTE:** Extending the mixin only provides the property for binding,
23
23
  * and does not make the propagation alone.
24
24
  *
25
- * See [Theme Attribute and Subcomponents](https://github.com/vaadin/vaadin-themable-mixin/wiki/5.-Theme-Attribute-and-Subcomponents).
25
+ * See [Styling Components: Sub-components](https://vaadin.com/docs/latest/ds/customization/styling-components/#sub-components).
26
26
  * page for more information.
27
27
  *
28
28
  * @protected