Skip to content

Commit 48121e9

Browse files
committed
Update to vue3 support
1 parent 209a572 commit 48121e9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+14086
-10098
lines changed

Diff for: dist/vue-upload-component.js

+909-758
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/vue-upload-component.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/vue-upload-component.min.js

+7-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/vue-upload-component.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/vue-upload-component.part.css

+28-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,31 @@
11

2-
.file-uploads{overflow:hidden;position:relative;text-align:center;display:inline-block
2+
.file-uploads {
3+
overflow: hidden;
4+
position: relative;
5+
text-align: center;
6+
display: inline-block;
37
}
4-
.file-uploads.file-uploads-html4 input,.file-uploads.file-uploads-html5 label{background:#fff;opacity:0;font-size:20em;z-index:1;top:0;left:0;right:0;bottom:0;position:absolute;width:100%;height:100%
8+
.file-uploads.file-uploads-html4 input, .file-uploads.file-uploads-html5 label {
9+
/* background fix ie click */
10+
background: #fff;
11+
opacity: 0;
12+
font-size: 20em;
13+
z-index: 1;
14+
top: 0;
15+
left: 0;
16+
right: 0;
17+
bottom: 0;
18+
position: absolute;
19+
width: 100%;
20+
height: 100%;
21+
}
22+
.file-uploads.file-uploads-html5 input, .file-uploads.file-uploads-html4 label {
23+
/* background fix ie click */
24+
background: rgba(255, 255, 255, 0);
25+
overflow: hidden;
26+
position: fixed;
27+
width: 1px;
28+
height: 1px;
29+
z-index: -1;
30+
opacity: 0;
531
}
6-
.file-uploads.file-uploads-html4 label,.file-uploads.file-uploads-html5 input{background:rgba(255,255,255,0);overflow:hidden;position:fixed;width:1px;height:1px;z-index:-1;opacity:0
7-
}

0 commit comments

Comments
 (0)