@developer_tribe/react-native-comnyx 0.4.7 → 0.6.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/lib/commonjs/App.js +1 -1
- package/lib/commonjs/App.js.map +1 -1
- package/lib/commonjs/components/MessageInput.js +7 -1
- package/lib/commonjs/components/MessageInput.js.map +1 -1
- package/lib/commonjs/constants/rtl.js +24 -0
- package/lib/commonjs/constants/rtl.js.map +1 -0
- package/lib/commonjs/constants/translations.js +798 -0
- package/lib/commonjs/constants/translations.js.map +1 -1
- package/lib/commonjs/hooks/isRtl.js +14 -0
- package/lib/commonjs/hooks/isRtl.js.map +1 -0
- package/lib/module/App.js +1 -1
- package/lib/module/App.js.map +1 -1
- package/lib/module/components/MessageInput.js +7 -1
- package/lib/module/components/MessageInput.js.map +1 -1
- package/lib/module/constants/rtl.js +20 -0
- package/lib/module/constants/rtl.js.map +1 -0
- package/lib/module/constants/translations.js +798 -0
- package/lib/module/constants/translations.js.map +1 -1
- package/lib/module/hooks/isRtl.js +9 -0
- package/lib/module/hooks/isRtl.js.map +1 -0
- package/lib/typescript/commonjs/src/App.d.ts +1 -0
- package/lib/typescript/commonjs/src/App.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/MessageInput.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/constants/rtl.d.ts +2 -0
- package/lib/typescript/commonjs/src/constants/rtl.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/constants/translations.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/hooks/isRtl.d.ts +2 -0
- package/lib/typescript/commonjs/src/hooks/isRtl.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/Language.d.ts +1 -1
- package/lib/typescript/commonjs/src/types/Language.d.ts.map +1 -1
- package/lib/typescript/module/src/App.d.ts +1 -0
- package/lib/typescript/module/src/App.d.ts.map +1 -1
- package/lib/typescript/module/src/components/MessageInput.d.ts.map +1 -1
- package/lib/typescript/module/src/constants/rtl.d.ts +2 -0
- package/lib/typescript/module/src/constants/rtl.d.ts.map +1 -0
- package/lib/typescript/module/src/constants/translations.d.ts.map +1 -1
- package/lib/typescript/module/src/hooks/isRtl.d.ts +2 -0
- package/lib/typescript/module/src/hooks/isRtl.d.ts.map +1 -0
- package/lib/typescript/module/src/types/Language.d.ts +1 -1
- package/lib/typescript/module/src/types/Language.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/App.tsx +3 -1
- package/src/components/MessageInput.tsx +9 -1
- package/src/constants/rtl.ts +18 -0
- package/src/constants/translations.ts +880 -0
- package/src/hooks/isRtl.ts +7 -0
- package/src/types/Language.ts +23 -4
package/src/types/Language.ts
CHANGED
|
@@ -1,11 +1,30 @@
|
|
|
1
1
|
export type LanguageCode =
|
|
2
2
|
| 'en'
|
|
3
3
|
| 'tr'
|
|
4
|
-
| '
|
|
4
|
+
| 'ar'
|
|
5
5
|
| 'fr'
|
|
6
|
-
| 'de'
|
|
7
|
-
| 'it'
|
|
8
6
|
| 'pt'
|
|
7
|
+
| 'id'
|
|
9
8
|
| 'ru'
|
|
9
|
+
| 'vi'
|
|
10
|
+
| 'es'
|
|
11
|
+
| 'de'
|
|
12
|
+
| 'zh'
|
|
13
|
+
| 'sv'
|
|
14
|
+
| 'ko'
|
|
15
|
+
| 'it'
|
|
16
|
+
| 'hi'
|
|
17
|
+
| 'nl'
|
|
18
|
+
| 'he'
|
|
19
|
+
| 'uk'
|
|
20
|
+
| 'hu'
|
|
21
|
+
| 'ro'
|
|
10
22
|
| 'ja'
|
|
11
|
-
| '
|
|
23
|
+
| 'ms'
|
|
24
|
+
| 'az'
|
|
25
|
+
| 'hr'
|
|
26
|
+
| 'kk'
|
|
27
|
+
| 'af'
|
|
28
|
+
| 'yo'
|
|
29
|
+
| 'da'
|
|
30
|
+
| 'pl';
|