@vaadin/upload 24.2.3 → 24.3.0-alpha10
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 +11 -11
- package/theme/lumo/vaadin-upload-styles.js +4 -2
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/upload",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.3.0-alpha10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -42,23 +42,23 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
44
44
|
"@polymer/polymer": "^3.0.0",
|
|
45
|
-
"@vaadin/a11y-base": "
|
|
46
|
-
"@vaadin/button": "
|
|
47
|
-
"@vaadin/component-base": "
|
|
48
|
-
"@vaadin/progress-bar": "
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
50
|
-
"@vaadin/vaadin-material-styles": "
|
|
51
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
52
|
-
"lit": "^
|
|
45
|
+
"@vaadin/a11y-base": "24.3.0-alpha10",
|
|
46
|
+
"@vaadin/button": "24.3.0-alpha10",
|
|
47
|
+
"@vaadin/component-base": "24.3.0-alpha10",
|
|
48
|
+
"@vaadin/progress-bar": "24.3.0-alpha10",
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "24.3.0-alpha10",
|
|
50
|
+
"@vaadin/vaadin-material-styles": "24.3.0-alpha10",
|
|
51
|
+
"@vaadin/vaadin-themable-mixin": "24.3.0-alpha10",
|
|
52
|
+
"lit": "^3.0.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@esm-bundle/chai": "^4.3.4",
|
|
56
|
-
"@vaadin/testing-helpers": "^0.
|
|
56
|
+
"@vaadin/testing-helpers": "^0.6.0",
|
|
57
57
|
"sinon": "^13.0.2"
|
|
58
58
|
},
|
|
59
59
|
"web-types": [
|
|
60
60
|
"web-types.json",
|
|
61
61
|
"web-types.lit.json"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "0271523d93fe5df0425ff64206886614f3c6f401"
|
|
64
64
|
}
|
|
@@ -77,11 +77,13 @@ const uploadFile = css`
|
|
|
77
77
|
:host {
|
|
78
78
|
padding: var(--lumo-space-s) 0;
|
|
79
79
|
outline: none;
|
|
80
|
+
--_focus-ring-color: var(--vaadin-focus-ring-color, var(--lumo-primary-color-50pct));
|
|
81
|
+
--_focus-ring-width: var(--vaadin-focus-ring-width, 2px);
|
|
80
82
|
}
|
|
81
83
|
|
|
82
84
|
:host([focus-ring]) [part='row'] {
|
|
83
85
|
border-radius: var(--lumo-border-radius-s);
|
|
84
|
-
box-shadow: 0 0 0
|
|
86
|
+
box-shadow: 0 0 0 var(--_focus-ring-width) var(--_focus-ring-color);
|
|
85
87
|
}
|
|
86
88
|
|
|
87
89
|
[part='row'] {
|
|
@@ -141,7 +143,7 @@ const uploadFile = css`
|
|
|
141
143
|
[part$='button']:focus {
|
|
142
144
|
outline: none;
|
|
143
145
|
border-radius: var(--lumo-border-radius-s);
|
|
144
|
-
box-shadow: 0 0 0
|
|
146
|
+
box-shadow: 0 0 0 var(--_focus-ring-width) var(--_focus-ring-color);
|
|
145
147
|
}
|
|
146
148
|
|
|
147
149
|
[part$='icon']::before,
|
package/web-types.json
CHANGED