Skip to content

Commit

Permalink
fixed bug in table headers rtlSupport 2020-11-07
Browse files Browse the repository at this point in the history
  • Loading branch information
ali jahanpak committed Nov 7, 2020
1 parent 4b429b5 commit 6ab8fa5
Show file tree
Hide file tree
Showing 4 changed files with 1,955 additions and 902 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "handy-uploader",
"version": "1.1.3",
"version": "1.1.4",
"description": "Complete and simple file uploader with image compressor in Vue.js. Choice Theme : Thumbnail, Simple, Table, Add custom fields, Image compressor, Manage files count, Manage files size, Multi language support , ...",
"author": "ali jahanpak",
"license": "MIT",
Expand Down
51 changes: 25 additions & 26 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
:changeFileName="true"
:addFileDescription="true"
:addFileTag="true"
:lang= "'en'"
:tags= "['Tag 1', 'Tag 2', 'Tag 3', 'Tag 4']"
:lang="'en'"
:tags="['Tag 1', 'Tag 2', 'Tag 3', 'Tag 4']"
>
</handy-uploader>
</v-main>
Expand All @@ -32,39 +32,38 @@ export default {
data: () => ({
registryDocFile: [],
customLang : {
custom : {
insertFile: 'Insert File1',
insertNewFile: 'Insert New File1',
add: 'Add',
delete: 'Delete',
customLang: {
custom: {
insertFile: "Insert File1",
insertNewFile: "Insert New File1",
add: "Add",
delete: "Delete",
deleteDialog: {
message: 'Are you sure you want to delete the file?',
cancel: 'cancel',
message: "Are you sure you want to delete the file?",
cancel: "cancel"
},
table: {
thumb: 'Thumb',
name: 'Name',
size: 'Size',
tags: 'tags',
thumb: "Thumb",
name: "Name",
size: "Size",
tags: "tags",
action: {
action: 'Action',
deleteTooltip: 'Delete'
action: "Action",
deleteTooltip: "Delete"
}
},
size: {
kb: 'KB',
mb: 'MB',
kb: "KB",
mb: "MB"
},
maxFileSizeAlert: 'Max file Size is',
maxFileCountAlert: 'Max file Count is',
fileName: 'File Name',
fileDescription: 'File Description',
fileTags: 'File Tags',
maxFileSizeAlert: "Max file Size is",
maxFileCountAlert: "Max file Count is",
fileName: "File Name",
fileDescription: "File Description",
fileTags: "File Tags"
}
},
}
}),
methods: {
}
methods: {}
};
</script>
Loading

0 comments on commit 6ab8fa5

Please sign in to comment.