@vaadin/field-highlighter 24.8.1 → 24.8.2

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-highlighter",
3
- "version": "24.8.1",
3
+ "version": "24.8.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,31 +34,31 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@polymer/polymer": "^3.0.0",
37
- "@vaadin/a11y-base": "~24.8.1",
38
- "@vaadin/component-base": "~24.8.1",
39
- "@vaadin/overlay": "~24.8.1",
40
- "@vaadin/vaadin-lumo-styles": "~24.8.1",
41
- "@vaadin/vaadin-material-styles": "~24.8.1",
42
- "@vaadin/vaadin-themable-mixin": "~24.8.1",
37
+ "@vaadin/a11y-base": "~24.8.2",
38
+ "@vaadin/component-base": "~24.8.2",
39
+ "@vaadin/overlay": "~24.8.2",
40
+ "@vaadin/vaadin-lumo-styles": "~24.8.2",
41
+ "@vaadin/vaadin-material-styles": "~24.8.2",
42
+ "@vaadin/vaadin-themable-mixin": "~24.8.2",
43
43
  "lit": "^3.0.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@vaadin/chai-plugins": "~24.8.1",
47
- "@vaadin/checkbox": "~24.8.1",
48
- "@vaadin/checkbox-group": "~24.8.1",
49
- "@vaadin/combo-box": "~24.8.1",
50
- "@vaadin/date-picker": "~24.8.1",
51
- "@vaadin/date-time-picker": "~24.8.1",
52
- "@vaadin/item": "~24.8.1",
53
- "@vaadin/list-box": "~24.8.1",
54
- "@vaadin/radio-group": "~24.8.1",
55
- "@vaadin/select": "~24.8.1",
56
- "@vaadin/test-runner-commands": "~24.8.1",
46
+ "@vaadin/chai-plugins": "~24.8.2",
47
+ "@vaadin/checkbox": "~24.8.2",
48
+ "@vaadin/checkbox-group": "~24.8.2",
49
+ "@vaadin/combo-box": "~24.8.2",
50
+ "@vaadin/date-picker": "~24.8.2",
51
+ "@vaadin/date-time-picker": "~24.8.2",
52
+ "@vaadin/item": "~24.8.2",
53
+ "@vaadin/list-box": "~24.8.2",
54
+ "@vaadin/radio-group": "~24.8.2",
55
+ "@vaadin/select": "~24.8.2",
56
+ "@vaadin/test-runner-commands": "~24.8.2",
57
57
  "@vaadin/testing-helpers": "^1.1.0",
58
- "@vaadin/text-area": "~24.8.1",
59
- "@vaadin/text-field": "~24.8.1",
60
- "@vaadin/time-picker": "~24.8.1",
58
+ "@vaadin/text-area": "~24.8.2",
59
+ "@vaadin/text-field": "~24.8.2",
60
+ "@vaadin/time-picker": "~24.8.2",
61
61
  "sinon": "^18.0.0"
62
62
  },
63
- "gitHead": "5e3df45003d43052639d5466c802fd81c3e1427f"
63
+ "gitHead": "f9e319ae7172ab06b3e567684465e36487f50bc6"
64
64
  }
@@ -60,14 +60,7 @@ export const userTagStyles = css`
60
60
  `;
61
61
 
62
62
  export const userTagsOverlayStyles = css`
63
- :host {
64
- background: transparent;
65
- box-shadow: none;
66
- }
67
-
68
- :scope [part='overlay'] {
69
- box-shadow: none;
70
- background: transparent;
63
+ [part='overlay'] {
71
64
  position: relative;
72
65
  left: -4px;
73
66
  padding: 4px;
@@ -86,10 +79,6 @@ export const userTagsOverlayStyles = css`
86
79
  right: -4px;
87
80
  }
88
81
 
89
- :scope [part='content'] {
90
- padding: 0;
91
- }
92
-
93
82
  :host([opening]),
94
83
  :host([closing]) {
95
84
  animation: 0.14s user-tags-overlay-dummy-animation;
@@ -16,9 +16,15 @@ registerStyles(
16
16
  overlay,
17
17
  css`
18
18
  [part='overlay'] {
19
+ box-shadow: none;
20
+ background: transparent;
19
21
  will-change: opacity, transform;
20
22
  }
21
23
 
24
+ [part='content'] {
25
+ padding: 0;
26
+ }
27
+
22
28
  :host([opening]) [part='overlay'] {
23
29
  animation: 0.1s lumo-user-tags-enter ease-out both;
24
30
  }
@@ -9,9 +9,25 @@ import '@vaadin/vaadin-material-styles/typography.js';
9
9
  import { overlay } from '@vaadin/vaadin-material-styles/mixins/overlay.js';
10
10
  import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
11
11
 
12
- registerStyles('vaadin-user-tags-overlay', [overlay], {
13
- moduleId: 'material-user-tags-overlay',
14
- });
12
+ registerStyles(
13
+ 'vaadin-user-tags-overlay',
14
+ [
15
+ overlay,
16
+ css`
17
+ [part='overlay'] {
18
+ box-shadow: none;
19
+ background: transparent;
20
+ }
21
+
22
+ [part='content'] {
23
+ padding: 0;
24
+ }
25
+ `,
26
+ ],
27
+ {
28
+ moduleId: 'material-user-tags-overlay',
29
+ },
30
+ );
15
31
 
16
32
  registerStyles(
17
33
  'vaadin-user-tag',