@vaadin/vaadin-material-styles 23.3.3 → 23.3.4

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-material-styles",
3
- "version": "23.3.3",
3
+ "version": "23.3.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -39,7 +39,7 @@
39
39
  ],
40
40
  "dependencies": {
41
41
  "@polymer/polymer": "^3.0.0",
42
- "@vaadin/vaadin-themable-mixin": "~23.3.3"
42
+ "@vaadin/vaadin-themable-mixin": "~23.3.4"
43
43
  },
44
44
  "devDependencies": {
45
45
  "gulp": "^4.0.2",
@@ -48,5 +48,5 @@
48
48
  "gulp-sort": "^2.0.0",
49
49
  "gulp-svgmin": "^4.1.0"
50
50
  },
51
- "gitHead": "1529ed623e053d28a3c1c66af55ebe402743ddd0"
51
+ "gitHead": "e896534f360fb7b7eed1ed6b3e660ca1fe44e028"
52
52
  }
package/style.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import type { CSSResult } from 'lit';
2
+
3
+ export const globals: CSSResult;
package/style.js ADDED
@@ -0,0 +1,19 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2017 - 2023 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ import './version.js';
7
+ import { css } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
8
+
9
+ /**
10
+ * Default values for component-specific custom properties.
11
+ */
12
+ const globals = css`
13
+ html {
14
+ --vaadin-checkbox-size: 16px;
15
+ --vaadin-radio-button-size: 16px;
16
+ }
17
+ `;
18
+
19
+ export { globals };
package/version.js CHANGED
@@ -12,7 +12,7 @@
12
12
  */
13
13
  class Material extends HTMLElement {
14
14
  static get version() {
15
- return '23.3.3';
15
+ return '23.3.4';
16
16
  }
17
17
  }
18
18