ablok-components 0.3.55 → 0.3.57
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/dist/ablok-components.css +1 -1
- package/dist/ablok-components.es.js +787 -784
- package/dist/ablok-components.umd.js +4 -4
- package/dist/i18n.d.ts +4 -0
- package/dist/locales/en.d.ts +4 -0
- package/package.json +1 -1
package/dist/i18n.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ declare const i18n: import('vue-i18n').I18n<{
|
|
|
31
31
|
undo: string;
|
|
32
32
|
redo: string;
|
|
33
33
|
forward: string;
|
|
34
|
+
backward: string;
|
|
34
35
|
rewind: string;
|
|
35
36
|
time: string;
|
|
36
37
|
moves: string;
|
|
@@ -188,6 +189,9 @@ declare const i18n: import('vue-i18n').I18n<{
|
|
|
188
189
|
qrlink: {
|
|
189
190
|
download: string;
|
|
190
191
|
};
|
|
192
|
+
thumbnails: {
|
|
193
|
+
thumbnail: string;
|
|
194
|
+
};
|
|
191
195
|
};
|
|
192
196
|
}, {}, {}, string, false>;
|
|
193
197
|
export default i18n;
|
package/dist/locales/en.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ export declare const messages: {
|
|
|
30
30
|
undo: string;
|
|
31
31
|
redo: string;
|
|
32
32
|
forward: string;
|
|
33
|
+
backward: string;
|
|
33
34
|
rewind: string;
|
|
34
35
|
time: string;
|
|
35
36
|
moves: string;
|
|
@@ -187,5 +188,8 @@ export declare const messages: {
|
|
|
187
188
|
qrlink: {
|
|
188
189
|
download: string;
|
|
189
190
|
};
|
|
191
|
+
thumbnails: {
|
|
192
|
+
thumbnail: string;
|
|
193
|
+
};
|
|
190
194
|
};
|
|
191
195
|
export default messages;
|