@live-change/upload-frontend 0.9.131 → 0.9.132
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/front/locales/en.json +14 -0
- package/front/locales/pl.json +14 -0
- package/index.js +5 -0
- package/package.json +16 -16
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"upload": {
|
|
3
|
+
"uploadFile": "Upload File",
|
|
4
|
+
"uploaded": "Uploaded",
|
|
5
|
+
"dragFilesHere": "Drag files here",
|
|
6
|
+
"orClickToSelect": "or click to select",
|
|
7
|
+
"selectFiles": "Select Files",
|
|
8
|
+
"dropZone": "Drop Zone",
|
|
9
|
+
"fileInput": "File Input",
|
|
10
|
+
"uploadView": "Upload View",
|
|
11
|
+
"chooseFile": "Choose File",
|
|
12
|
+
"noFileSelected": "No file selected"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"upload": {
|
|
3
|
+
"uploadFile": "Wgraj plik",
|
|
4
|
+
"uploaded": "Wgrano",
|
|
5
|
+
"dragFilesHere": "Przeciągnij pliki tutaj",
|
|
6
|
+
"orClickToSelect": "lub kliknij aby wybrać",
|
|
7
|
+
"selectFiles": "Wybierz pliki",
|
|
8
|
+
"dropZone": "Strefa upuszczania",
|
|
9
|
+
"fileInput": "Wprowadzanie pliku",
|
|
10
|
+
"uploadView": "Widok wgrywania",
|
|
11
|
+
"chooseFile": "Wybierz plik",
|
|
12
|
+
"noFileSelected": "Nie wybrano pliku"
|
|
13
|
+
}
|
|
14
|
+
}
|
package/index.js
CHANGED
|
@@ -4,3 +4,8 @@ import UploadView from "./front/src/UploadView.vue"
|
|
|
4
4
|
import Upload from "./front/src/Upload.js"
|
|
5
5
|
|
|
6
6
|
export { FileInput, DropZone, UploadView, Upload }
|
|
7
|
+
|
|
8
|
+
import en from "./front/locales/en.json"
|
|
9
|
+
import pl from "./front/locales/pl.json"
|
|
10
|
+
const locales = { en, pl }
|
|
11
|
+
export { locales }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/upload-frontend",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.132",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "node server/start.js memDev --enableSessions --initScript ./init.js --dbAccess",
|
|
6
6
|
"localDevInit": "rm tmp.db; lcli localDev --enableSessions --initScript ./init.js",
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
"type": "module",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@fortawesome/fontawesome-free": "^6.7.2",
|
|
25
|
-
"@live-change/cli": "^0.9.
|
|
26
|
-
"@live-change/dao": "^0.9.
|
|
27
|
-
"@live-change/dao-vue3": "^0.9.
|
|
28
|
-
"@live-change/dao-websocket": "^0.9.
|
|
29
|
-
"@live-change/framework": "^0.9.
|
|
30
|
-
"@live-change/password-authentication-service": "^0.9.
|
|
31
|
-
"@live-change/secret-code-service": "^0.9.
|
|
32
|
-
"@live-change/secret-link-service": "^0.9.
|
|
33
|
-
"@live-change/security-frontend": "^0.9.
|
|
34
|
-
"@live-change/session-service": "^0.9.
|
|
35
|
-
"@live-change/user-service": "^0.9.
|
|
36
|
-
"@live-change/vue3-components": "^0.9.
|
|
37
|
-
"@live-change/vue3-ssr": "^0.9.
|
|
25
|
+
"@live-change/cli": "^0.9.132",
|
|
26
|
+
"@live-change/dao": "^0.9.132",
|
|
27
|
+
"@live-change/dao-vue3": "^0.9.132",
|
|
28
|
+
"@live-change/dao-websocket": "^0.9.132",
|
|
29
|
+
"@live-change/framework": "^0.9.132",
|
|
30
|
+
"@live-change/password-authentication-service": "^0.9.132",
|
|
31
|
+
"@live-change/secret-code-service": "^0.9.132",
|
|
32
|
+
"@live-change/secret-link-service": "^0.9.132",
|
|
33
|
+
"@live-change/security-frontend": "^0.9.132",
|
|
34
|
+
"@live-change/session-service": "^0.9.132",
|
|
35
|
+
"@live-change/user-service": "^0.9.132",
|
|
36
|
+
"@live-change/vue3-components": "^0.9.132",
|
|
37
|
+
"@live-change/vue3-ssr": "^0.9.132",
|
|
38
38
|
"@vueuse/core": "^12.3.0",
|
|
39
39
|
"codeceptjs-assert": "^0.0.5",
|
|
40
40
|
"compression": "^1.7.5",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"vue3-scroll-border": "0.1.7"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@live-change/codeceptjs-helper": "^0.9.
|
|
56
|
+
"@live-change/codeceptjs-helper": "^0.9.132",
|
|
57
57
|
"codeceptjs": "^3.6.10",
|
|
58
58
|
"generate-password": "1.7.1",
|
|
59
59
|
"playwright": "1.49.1",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"author": "Michał Łaszczewski <michal@laszczewski.pl>",
|
|
65
65
|
"license": "BSD-3-Clause",
|
|
66
66
|
"description": "",
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "f9627117660732245586a784be1a21455c1c3bd2"
|
|
68
68
|
}
|