@vaadin/upload 25.2.7 → 25.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/custom-elements.json +637 -204
- package/package.json +11 -11
- package/src/vaadin-upload-button.js +4 -10
- package/src/vaadin-upload-drop-zone.js +1 -0
- package/src/vaadin-upload-file-list-mixin.d.ts +1 -0
- package/src/vaadin-upload-file-list-mixin.js +10 -103
- package/src/vaadin-upload-file-list.js +1 -0
- package/src/vaadin-upload-file-mixin.js +0 -9
- package/src/vaadin-upload-file.js +8 -5
- package/src/vaadin-upload-helpers.js +143 -0
- package/src/vaadin-upload-icon.js +1 -0
- package/src/vaadin-upload-internal-manager.js +174 -0
- package/src/vaadin-upload-manager.d.ts +1 -6
- package/src/vaadin-upload-manager.js +85 -32
- package/src/vaadin-upload-mixin.d.ts +4 -44
- package/src/vaadin-upload-mixin.js +361 -577
- package/src/vaadin-upload.js +1 -0
- package/web-types.json +6 -16
- package/web-types.lit.json +1 -1
package/src/vaadin-upload.js
CHANGED
|
@@ -102,6 +102,7 @@ import { UploadMixin } from './vaadin-upload-mixin.js';
|
|
|
102
102
|
* @fires {CustomEvent} upload-retry - Fired when retry upload is requested. If the default is prevented, the retry is not performed.
|
|
103
103
|
* @fires {CustomEvent} upload-abort - Fired when upload abort is requested. If the default is prevented, the upload is not aborted.
|
|
104
104
|
*
|
|
105
|
+
* @attr {string} theme - The theme variants to apply to the component.
|
|
105
106
|
* @customElement vaadin-upload
|
|
106
107
|
* @extends HTMLElement
|
|
107
108
|
*/
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/upload",
|
|
4
|
-
"version": "25.
|
|
4
|
+
"version": "25.3.0-alpha10",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -42,9 +42,7 @@
|
|
|
42
42
|
"description": "The theme variants to apply to the component.",
|
|
43
43
|
"value": {
|
|
44
44
|
"type": [
|
|
45
|
-
"string"
|
|
46
|
-
"null",
|
|
47
|
-
"undefined"
|
|
45
|
+
"string"
|
|
48
46
|
]
|
|
49
47
|
}
|
|
50
48
|
}
|
|
@@ -110,9 +108,7 @@
|
|
|
110
108
|
"description": "The theme variants to apply to the component.",
|
|
111
109
|
"value": {
|
|
112
110
|
"type": [
|
|
113
|
-
"string"
|
|
114
|
-
"null",
|
|
115
|
-
"undefined"
|
|
111
|
+
"string"
|
|
116
112
|
]
|
|
117
113
|
}
|
|
118
114
|
}
|
|
@@ -160,9 +156,7 @@
|
|
|
160
156
|
"description": "The theme variants to apply to the component.",
|
|
161
157
|
"value": {
|
|
162
158
|
"type": [
|
|
163
|
-
"string"
|
|
164
|
-
"null",
|
|
165
|
-
"undefined"
|
|
159
|
+
"string"
|
|
166
160
|
]
|
|
167
161
|
}
|
|
168
162
|
}
|
|
@@ -282,9 +276,7 @@
|
|
|
282
276
|
"description": "The theme variants to apply to the component.",
|
|
283
277
|
"value": {
|
|
284
278
|
"type": [
|
|
285
|
-
"string"
|
|
286
|
-
"null",
|
|
287
|
-
"undefined"
|
|
279
|
+
"string"
|
|
288
280
|
]
|
|
289
281
|
}
|
|
290
282
|
},
|
|
@@ -524,9 +516,7 @@
|
|
|
524
516
|
"description": "The theme variants to apply to the component.",
|
|
525
517
|
"value": {
|
|
526
518
|
"type": [
|
|
527
|
-
"string"
|
|
528
|
-
"null",
|
|
529
|
-
"undefined"
|
|
519
|
+
"string"
|
|
530
520
|
]
|
|
531
521
|
}
|
|
532
522
|
},
|