@awes-io/ui 2.118.0 → 2.118.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.118.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.118.0...@awes-io/ui@2.118.1) (2024-11-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fix aw uploader loading max files ([288e57b](https://github.com/awes-io/client/commit/288e57b64ea69187488f3b121c06388737607e47))
|
|
12
|
+
* fix z-index in tooltip ([297f4d4](https://github.com/awes-io/client/commit/297f4d489e25c6768105db73745836d44af9a8ce))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
# [2.118.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.117.0...@awes-io/ui@2.118.0) (2024-11-29)
|
|
7
19
|
|
|
8
20
|
|
|
@@ -315,7 +315,7 @@ export default {
|
|
|
315
315
|
_uploadFile(files) {
|
|
316
316
|
this.errorText = ''
|
|
317
317
|
|
|
318
|
-
let maxFilesForUpload =
|
|
318
|
+
let maxFilesForUpload = 0
|
|
319
319
|
|
|
320
320
|
if (this.maxFiles) {
|
|
321
321
|
maxFilesForUpload = this.maxFiles - this.uploadedFilesNumber - 1
|
|
@@ -328,11 +328,14 @@ export default {
|
|
|
328
328
|
this.maxFiles
|
|
329
329
|
)
|
|
330
330
|
})
|
|
331
|
+
} else {
|
|
332
|
+
maxFilesForUpload = files.length - 1
|
|
331
333
|
}
|
|
332
334
|
}
|
|
333
335
|
|
|
334
336
|
for (var i = maxFilesForUpload; i >= 0; i--) {
|
|
335
337
|
const file = files[i]
|
|
338
|
+
|
|
336
339
|
const errors = this._validateFile(file)
|
|
337
340
|
|
|
338
341
|
if (!isEmpty(errors)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awes-io/ui",
|
|
3
|
-
"version": "2.118.
|
|
3
|
+
"version": "2.118.1",
|
|
4
4
|
"description": "User Interface (UI) components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui",
|
|
@@ -114,5 +114,5 @@
|
|
|
114
114
|
"rollup-plugin-visualizer": "^2.6.0",
|
|
115
115
|
"rollup-plugin-vue": "^5.0.1"
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "3fcc2a92fee78f38817f25fc5eeb8cab4764cf59"
|
|
118
118
|
}
|