@vaadin/vaadin-themable-mixin 23.0.0-alpha2 → 23.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": "23.0.0-
|
|
3
|
+
"version": "23.0.0-beta1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"main": "vaadin-themable-mixin.js",
|
|
20
20
|
"module": "vaadin-themable-mixin.js",
|
|
21
|
+
"type": "module",
|
|
21
22
|
"files": [
|
|
22
23
|
"*.d.ts",
|
|
23
24
|
"register-styles.js",
|
|
@@ -39,5 +40,5 @@
|
|
|
39
40
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
40
41
|
"sinon": "^9.2.4"
|
|
41
42
|
},
|
|
42
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "467244b76021176c109df675799b07029b293e58"
|
|
43
44
|
}
|
package/register-styles.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
3
|
+
* Copyright (c) 2017 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
export { registerStyles, css, unsafeCSS } from './vaadin-themable-mixin.js';
|
package/register-styles.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
3
|
+
* Copyright (c) 2017 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
export { registerStyles, css, unsafeCSS } from './vaadin-themable-mixin.js';
|
package/vaadin-themable-mixin.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
3
|
+
* Copyright (c) 2017 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css, CSSResult, unsafeCSS } from 'lit';
|
|
@@ -58,7 +58,7 @@ export function registerStyles(themeFor, styles, options = {}) {
|
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
/**
|
|
61
|
-
* Returns all registered themes. By default the themeRegistry is
|
|
61
|
+
* Returns all registered themes. By default the themeRegistry is returned as is.
|
|
62
62
|
* In case the style-modules adapter is imported, the themes are obtained from there instead
|
|
63
63
|
* @returns {Theme[]}
|
|
64
64
|
*/
|