vuefinder 1.1.15 → 1.1.17
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/README.md +10 -9
- package/dist/{en.7a04810c.js → en.70efd54a.js} +2 -1
- package/dist/{tr.818dacaf.js → tr.78307c97.js} +2 -1
- package/dist/vuefinder.js +986 -982
- package/dist/vuefinder.umd.cjs +9 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
Vuefinder is a file manager component for Vue.js version 3
|
|
12
12
|
|
|
13
13
|
### Demo
|
|
14
|
-
[Live Demo](https://vuefinder.ozdemir.be/)
|
|
14
|
+
[Live Demo](https://vuefinder.ozdemir.be/) [ [Source](https://github.com/n1crack/vuefinder.ozdemir.be) ]
|
|
15
15
|
|
|
16
16
|
### Installation
|
|
17
17
|
|
|
@@ -24,7 +24,7 @@ JS entry point (it can be index.js or main.js)
|
|
|
24
24
|
```js
|
|
25
25
|
import { createApp } from 'vue'
|
|
26
26
|
import App from './App.vue'
|
|
27
|
-
|
|
27
|
+
|
|
28
28
|
import 'vuefinder/dist/style.css'
|
|
29
29
|
import VueFinder from 'vuefinder/dist/vuefinder'
|
|
30
30
|
|
|
@@ -46,12 +46,13 @@ Html
|
|
|
46
46
|
|
|
47
47
|
### Props
|
|
48
48
|
|
|
49
|
-
| Prop
|
|
50
|
-
|
|
51
|
-
| id
|
|
52
|
-
| url
|
|
53
|
-
| locale
|
|
54
|
-
| dark
|
|
49
|
+
| Prop | Value | Default | Description |
|
|
50
|
+
|---------------|:-------:|---------|:---------------------------------------|
|
|
51
|
+
| id | string | _null_ | required |
|
|
52
|
+
| url | string | _null_ | required - backend url |
|
|
53
|
+
| locale | string | en | optional - default language code |
|
|
54
|
+
| dark | boolean | false | optional - makes theme dark as default |
|
|
55
|
+
| max-file-size | string | 10mb | optional - client side max file upload |
|
|
55
56
|
|
|
56
57
|
### Features
|
|
57
58
|
- Multi adapter/storage (see https://github.com/thephpleague/flysystem)
|
|
@@ -90,7 +91,7 @@ Html
|
|
|
90
91
|
### Roadmap
|
|
91
92
|
- [ ] code refactoring (cleanup the duplications, make reusable components)
|
|
92
93
|
- [ ] restyle the modals
|
|
93
|
-
- [ ] add more languages (only en/tr at the moment. PRs are welcomed.)
|
|
94
|
+
- [ ] add more languages (only en/tr/ru at the moment. PRs are welcomed.)
|
|
94
95
|
- [ ] copy/move to a folder (modal, treeview)
|
|
95
96
|
- [ ] transfer items between adapters
|
|
96
97
|
|
|
@@ -63,7 +63,8 @@ const e = `{
|
|
|
63
63
|
"File Size": "File Size",
|
|
64
64
|
"Last Modified": "Last Modified",
|
|
65
65
|
"Drag&Drop: on": "Drag&Drop: on",
|
|
66
|
-
"Drag&Drop: off": "Drag&Drop: off"
|
|
66
|
+
"Drag&Drop: off": "Drag&Drop: off",
|
|
67
|
+
"The selected file exceeds the maximum file size. You cannot upload files greater than %s": "The selected file exceeds the maximum file size. You cannot upload files greater than %s"
|
|
67
68
|
}
|
|
68
69
|
`;
|
|
69
70
|
export {
|
|
@@ -63,7 +63,8 @@ const e = `{
|
|
|
63
63
|
"File Size": "Dosya Boyutu",
|
|
64
64
|
"Last Modified": "Son De\u011Fi\u015Fiklik",
|
|
65
65
|
"Drag&Drop: on": "S\xFCr\xFCkle&B\u0131rak: etkin",
|
|
66
|
-
"Drag&Drop: off": "S\xFCr\xFCkle&B\u0131rak: devre d\u0131\u015F\u0131"
|
|
66
|
+
"Drag&Drop: off": "S\xFCr\xFCkle&B\u0131rak: devre d\u0131\u015F\u0131",
|
|
67
|
+
"The selected file exceeds the maximum file size. You cannot upload files greater than %s": "Se\xE7ilen dosya maksimum dosya boyutunu a\u015F\u0131yor. %s'den b\xFCy\xFCk dosyalar\u0131 y\xFCkleyemezsiniz."
|
|
67
68
|
}
|
|
68
69
|
`;
|
|
69
70
|
export {
|