@koredev/kore-web-sdk 11.19.1-rc.fe1f3a0 → 11.20.0-rc.aa79522
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 +1 -1
- package/dist/esm/kore-web-sdk-chat.min.js +1 -1
- package/dist/esm/plugins/answers-template.js +1 -1
- package/dist/esm/plugins/kore-i18n.js +1 -1
- package/dist/esm/plugins/multi-file-upload.js +1 -1
- package/dist/plugins/fileUploader/multiFileUploader.d.ts +1 -1
- package/dist/plugins/i18n.d.ts +10 -0
- package/dist/umd/kore-web-sdk-umd-chat.min.js +1 -1
- package/dist/umd/plugins/answers-template.js +1 -1
- package/dist/umd/plugins/kore-i18n.js +1 -1
- package/dist/umd/plugins/multi-file-upload.js +1 -1
- package/package.json +1 -1
|
@@ -81,7 +81,7 @@ declare class KoreMultiFileUploaderPlugin {
|
|
|
81
81
|
getHTTPConnecton(): any;
|
|
82
82
|
HttpRequest(): any;
|
|
83
83
|
isElementInDOM(el: any): boolean;
|
|
84
|
-
progressListener(_this: any, evt: any, ele: any): void;
|
|
84
|
+
progressListener(_this: any, evt: any, ele: any, me: any): void;
|
|
85
85
|
loadListener(_this: any, evt: {
|
|
86
86
|
target: {
|
|
87
87
|
response: string;
|
package/dist/plugins/i18n.d.ts
CHANGED
|
@@ -43,6 +43,8 @@ declare class Korei18nPlugin {
|
|
|
43
43
|
delivered: string;
|
|
44
44
|
sent: string;
|
|
45
45
|
you: string;
|
|
46
|
+
uploaded: string;
|
|
47
|
+
download: string;
|
|
46
48
|
};
|
|
47
49
|
ja: {
|
|
48
50
|
message: string;
|
|
@@ -83,6 +85,8 @@ declare class Korei18nPlugin {
|
|
|
83
85
|
delivered: string;
|
|
84
86
|
sent: string;
|
|
85
87
|
you: string;
|
|
88
|
+
uploaded: string;
|
|
89
|
+
download: string;
|
|
86
90
|
};
|
|
87
91
|
ko: {
|
|
88
92
|
message: string;
|
|
@@ -123,6 +127,8 @@ declare class Korei18nPlugin {
|
|
|
123
127
|
delivered: string;
|
|
124
128
|
sent: string;
|
|
125
129
|
you: string;
|
|
130
|
+
uploaded: string;
|
|
131
|
+
download: string;
|
|
126
132
|
};
|
|
127
133
|
zh: {
|
|
128
134
|
message: string;
|
|
@@ -163,6 +169,8 @@ declare class Korei18nPlugin {
|
|
|
163
169
|
delivered: string;
|
|
164
170
|
sent: string;
|
|
165
171
|
you: string;
|
|
172
|
+
uploaded: string;
|
|
173
|
+
download: string;
|
|
166
174
|
};
|
|
167
175
|
de: {
|
|
168
176
|
message: string;
|
|
@@ -203,6 +211,8 @@ declare class Korei18nPlugin {
|
|
|
203
211
|
delivered: string;
|
|
204
212
|
sent: string;
|
|
205
213
|
you: string;
|
|
214
|
+
uploaded: string;
|
|
215
|
+
download: string;
|
|
206
216
|
};
|
|
207
217
|
};
|
|
208
218
|
};
|