@semcore/carousel 3.3.1 → 3.4.0
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/CHANGELOG.md +9 -1
- package/lib/cjs/Carousel.js +47 -37
- package/lib/cjs/Carousel.js.map +1 -1
- package/lib/cjs/index.d.js.map +1 -1
- package/lib/cjs/translations/__intergalactic-dynamic-locales.js +37 -0
- package/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/lib/cjs/translations/de.json +4 -0
- package/lib/cjs/translations/en.json +4 -0
- package/lib/cjs/translations/es.json +4 -0
- package/lib/cjs/translations/fr.json +4 -0
- package/lib/cjs/translations/it.json +4 -0
- package/lib/cjs/translations/ja.json +4 -0
- package/lib/cjs/translations/ko.json +4 -0
- package/lib/cjs/translations/pl.json +4 -0
- package/lib/cjs/translations/pt.json +4 -0
- package/lib/cjs/translations/sv.json +4 -0
- package/lib/cjs/translations/tr.json +4 -0
- package/lib/cjs/translations/vi.json +4 -0
- package/lib/cjs/translations/zh.json +4 -0
- package/lib/es6/Carousel.js +47 -37
- package/lib/es6/Carousel.js.map +1 -1
- package/lib/es6/index.d.js.map +1 -1
- package/lib/es6/translations/__intergalactic-dynamic-locales.js +29 -0
- package/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/lib/es6/translations/de.json +4 -0
- package/lib/es6/translations/en.json +4 -0
- package/lib/es6/translations/es.json +4 -0
- package/lib/es6/translations/fr.json +4 -0
- package/lib/es6/translations/it.json +4 -0
- package/lib/es6/translations/ja.json +4 -0
- package/lib/es6/translations/ko.json +4 -0
- package/lib/es6/translations/pl.json +4 -0
- package/lib/es6/translations/pt.json +4 -0
- package/lib/es6/translations/sv.json +4 -0
- package/lib/es6/translations/tr.json +4 -0
- package/lib/es6/translations/vi.json +4 -0
- package/lib/es6/translations/zh.json +4 -0
- package/lib/types/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/Carousel.jsx +27 -11
- package/src/index.d.ts +1 -0
- package/src/translations/__intergalactic-dynamic-locales.ts +29 -0
- package/src/translations/de.json +4 -0
- package/src/translations/en.json +4 -0
- package/src/translations/es.json +4 -0
- package/src/translations/fr.json +4 -0
- package/src/translations/it.json +4 -0
- package/src/translations/ja.json +4 -0
- package/src/translations/ko.json +4 -0
- package/src/translations/pl.json +4 -0
- package/src/translations/pt.json +4 -0
- package/src/translations/sv.json +4 -0
- package/src/translations/tr.json +4 -0
- package/src/translations/vi.json +4 -0
- package/src/translations/zh.json +4 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import de from './de.json';
|
|
2
|
+
import en from './en.json';
|
|
3
|
+
import es from './es.json';
|
|
4
|
+
import fr from './fr.json';
|
|
5
|
+
import it from './it.json';
|
|
6
|
+
import ja from './ja.json';
|
|
7
|
+
import ko from './ko.json';
|
|
8
|
+
import pt from './pt.json';
|
|
9
|
+
import tr from './tr.json';
|
|
10
|
+
import vi from './vi.json';
|
|
11
|
+
import zh from './zh.json';
|
|
12
|
+
import pl from './pl.json';
|
|
13
|
+
import sv from './sv.json';
|
|
14
|
+
|
|
15
|
+
export const localizedMessages = {
|
|
16
|
+
de,
|
|
17
|
+
en,
|
|
18
|
+
es,
|
|
19
|
+
fr,
|
|
20
|
+
it,
|
|
21
|
+
ja,
|
|
22
|
+
ko,
|
|
23
|
+
pt,
|
|
24
|
+
tr,
|
|
25
|
+
vi,
|
|
26
|
+
zh,
|
|
27
|
+
pl,
|
|
28
|
+
sv,
|
|
29
|
+
};
|