@vaadin/upload 24.8.0-alpha14 → 24.8.0-alpha16
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/src/vaadin-upload-mixin.js +1 -1
- 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.8.0-
|
|
3
|
+
"version": "24.8.0-alpha16",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,18 +37,18 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
39
39
|
"@polymer/polymer": "^3.0.0",
|
|
40
|
-
"@vaadin/a11y-base": "24.8.0-
|
|
41
|
-
"@vaadin/button": "24.8.0-
|
|
42
|
-
"@vaadin/component-base": "24.8.0-
|
|
43
|
-
"@vaadin/progress-bar": "24.8.0-
|
|
44
|
-
"@vaadin/vaadin-lumo-styles": "24.8.0-
|
|
45
|
-
"@vaadin/vaadin-material-styles": "24.8.0-
|
|
46
|
-
"@vaadin/vaadin-themable-mixin": "24.8.0-
|
|
40
|
+
"@vaadin/a11y-base": "24.8.0-alpha16",
|
|
41
|
+
"@vaadin/button": "24.8.0-alpha16",
|
|
42
|
+
"@vaadin/component-base": "24.8.0-alpha16",
|
|
43
|
+
"@vaadin/progress-bar": "24.8.0-alpha16",
|
|
44
|
+
"@vaadin/vaadin-lumo-styles": "24.8.0-alpha16",
|
|
45
|
+
"@vaadin/vaadin-material-styles": "24.8.0-alpha16",
|
|
46
|
+
"@vaadin/vaadin-themable-mixin": "24.8.0-alpha16",
|
|
47
47
|
"lit": "^3.0.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@vaadin/chai-plugins": "24.8.0-
|
|
51
|
-
"@vaadin/test-runner-commands": "24.8.0-
|
|
50
|
+
"@vaadin/chai-plugins": "24.8.0-alpha16",
|
|
51
|
+
"@vaadin/test-runner-commands": "24.8.0-alpha16",
|
|
52
52
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
53
53
|
"sinon": "^18.0.0"
|
|
54
54
|
},
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"web-types.json",
|
|
57
57
|
"web-types.lit.json"
|
|
58
58
|
],
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "ac26cb142cd3d6374423ca699677d47557399d47"
|
|
60
60
|
}
|
|
@@ -839,7 +839,7 @@ export const UploadMixin = (superClass) =>
|
|
|
839
839
|
|
|
840
840
|
/** @private */
|
|
841
841
|
_renderFileList() {
|
|
842
|
-
if (this._fileList) {
|
|
842
|
+
if (this._fileList && typeof this._fileList.requestContentUpdate === 'function') {
|
|
843
843
|
this._fileList.requestContentUpdate();
|
|
844
844
|
}
|
|
845
845
|
}
|
package/web-types.json
CHANGED