@vaadin/field-base 25.0.0-rc1 → 25.0.1

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/field-base",
3
- "version": "25.0.0-rc1",
3
+ "version": "25.0.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -31,15 +31,15 @@
31
31
  ],
32
32
  "dependencies": {
33
33
  "@open-wc/dedupe-mixin": "^1.3.0",
34
- "@vaadin/a11y-base": "25.0.0-rc1",
35
- "@vaadin/component-base": "25.0.0-rc1",
34
+ "@vaadin/a11y-base": "~25.0.1",
35
+ "@vaadin/component-base": "~25.0.1",
36
36
  "lit": "^3.0.0"
37
37
  },
38
38
  "devDependencies": {
39
- "@vaadin/chai-plugins": "25.0.0-rc1",
40
- "@vaadin/test-runner-commands": "25.0.0-rc1",
39
+ "@vaadin/chai-plugins": "~25.0.1",
40
+ "@vaadin/test-runner-commands": "~25.0.1",
41
41
  "@vaadin/testing-helpers": "^2.0.0",
42
42
  "sinon": "^21.0.0"
43
43
  },
44
- "gitHead": "cea5e86ad18824e5631b63c11150b4d7701869c5"
44
+ "gitHead": "ced28c07a8abee586510349b312452c8a555fd10"
45
45
  }
@@ -11,13 +11,9 @@ export const checkable = (part, propName = part) => css`
11
11
  :host {
12
12
  align-items: baseline;
13
13
  column-gap: var(--vaadin-${unsafeCSS(propName)}-gap, var(--vaadin-gap-s));
14
+ grid-template: none;
14
15
  grid-template-columns: auto 1fr;
15
- /*
16
- Using minmax(auto, max-content) works around a Safari 17 issue where placing a checkbox
17
- inside a flex container with flex-direction: column causes the container to unexpectedly
18
- grow to the max available height.
19
- */
20
- grid-template-rows: minmax(auto, max-content);
16
+ grid-template-rows: repeat(auto-fill, minmax(0, max-content));
21
17
  -webkit-tap-highlight-color: transparent;
22
18
  --_cursor: var(--vaadin-clickable-cursor);
23
19
  }
@@ -65,6 +61,7 @@ export const checkable = (part, propName = part) => css`
65
61
  [part='helper-text'],
66
62
  [part='error-message'] {
67
63
  margin-top: var(--_gap-s);
64
+ grid-row: auto;
68
65
  }
69
66
 
70
67
  /* Baseline vertical alignment */