Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
lian-yue committed Nov 8, 2022
1 parent f33402c commit 128da45
Show file tree
Hide file tree
Showing 16 changed files with 180 additions and 66 deletions.
9 changes: 6 additions & 3 deletions dist/vue-upload-component.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export interface Data {
uploading: number;
features: Features;
dropElement: null | HTMLElement;
dropTimeout: null | number;
reload: boolean;
}
export interface Features {
Expand Down Expand Up @@ -204,10 +205,12 @@ declare const _default: import("vue").DefineComponent<{
uploadHtml4(ufile: VueUploadItem | undefined | false): Promise<VueUploadItem>;
watchActive(active: boolean): void;
watchDrop(newDrop: boolean | string | HTMLElement | null, oldDrop?: boolean | string | HTMLElement | undefined): void;
onDragenter(e: DragEvent): void;
onDragleave(e: DragEvent): void;
onDragover(e: DragEvent): void;
watchDropActive(newDropActive: boolean, oldDropActive?: boolean | undefined): void;
onDocumentDragenter(e: DragEvent): void;
onDocumentDragleave(e: DragEvent): void;
onDocumentDragover(): void;
onDocumentDrop(): void;
onDragover(e: DragEvent): void;
onDrop(e: DragEvent): void;
inputOnChange(e: Event): Promise<any>;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "input-filter" | "input-file")[], "update:modelValue" | "input-filter" | "input-file", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
Expand Down
70 changes: 54 additions & 16 deletions dist/vue-upload-component.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/vue-upload-component.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/vue-upload-component.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vue-upload-component.min.js.map

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions dist/vue-upload-component.part.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
text-align: center;
display: inline-block;
}
.file-uploads.file-uploads-html4 input, .file-uploads.file-uploads-html5 label {

.file-uploads.file-uploads-html4 input,
.file-uploads.file-uploads-html5 label {
/* background fix ie click */
background: #fff;
opacity: 0;
Expand All @@ -19,7 +21,9 @@
width: 100%;
height: 100%;
}
.file-uploads.file-uploads-html5 input, .file-uploads.file-uploads-html4 label {

.file-uploads.file-uploads-html5 input,
.file-uploads.file-uploads-html4 label {
/* background fix ie click */
background: rgba(255, 255, 255, 0);
overflow: hidden;
Expand Down
68 changes: 53 additions & 15 deletions dist/vue-upload-component.part.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/vue-upload-component.part.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 128da45

Please sign in to comment.