@opencx/widget-core 4.0.40 → 4.0.42
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/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +443 -239
- package/dist/index.js.map +1 -1
- package/dist/src/translation/bn.d.ts +3 -0
- package/dist/src/translation/bn.d.ts.map +1 -0
- package/dist/src/translation/et.d.ts +3 -0
- package/dist/src/translation/et.d.ts.map +1 -0
- package/dist/src/translation/fil.d.ts +3 -0
- package/dist/src/translation/fil.d.ts.map +1 -0
- package/dist/src/translation/hi.d.ts +3 -0
- package/dist/src/translation/hi.d.ts.map +1 -0
- package/dist/src/translation/hr.d.ts +3 -0
- package/dist/src/translation/hr.d.ts.map +1 -0
- package/dist/src/translation/index.d.ts +12 -0
- package/dist/src/translation/index.d.ts.map +1 -1
- package/dist/src/translation/ja.d.ts +3 -0
- package/dist/src/translation/ja.d.ts.map +1 -0
- package/dist/src/translation/ko.d.ts +3 -0
- package/dist/src/translation/ko.d.ts.map +1 -0
- package/dist/src/translation/lb.d.ts +3 -0
- package/dist/src/translation/lb.d.ts.map +1 -0
- package/dist/src/translation/lv.d.ts +3 -0
- package/dist/src/translation/lv.d.ts.map +1 -0
- package/dist/src/translation/mt.d.ts +3 -0
- package/dist/src/translation/mt.d.ts.map +1 -0
- package/dist/src/translation/ur.d.ts +3 -0
- package/dist/src/translation/ur.d.ts.map +1 -0
- package/dist/src/translation/zh-cn.d.ts +3 -0
- package/dist/src/translation/zh-cn.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bn.d.ts","sourceRoot":"","sources":["../../../src/translation/bn.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,GAAG,CAAC;AAE9C,eAAO,MAAM,eAAe,EAAE,oBAiB7B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"et.d.ts","sourceRoot":"","sources":["../../../src/translation/et.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,GAAG,CAAC;AAE9C,eAAO,MAAM,gBAAgB,EAAE,oBAiB9B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fil.d.ts","sourceRoot":"","sources":["../../../src/translation/fil.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,GAAG,CAAC;AAE9C,eAAO,MAAM,gBAAgB,EAAE,oBAiB9B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hi.d.ts","sourceRoot":"","sources":["../../../src/translation/hi.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,GAAG,CAAC;AAE9C,eAAO,MAAM,aAAa,EAAE,oBAiB3B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hr.d.ts","sourceRoot":"","sources":["../../../src/translation/hr.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,GAAG,CAAC;AAE9C,eAAO,MAAM,gBAAgB,EAAE,oBAiB9B,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { WidgetConfig } from '../types/widget-config';
|
|
2
2
|
declare const languages: {
|
|
3
3
|
readonly ar: TranslationInterface;
|
|
4
|
+
readonly bn: TranslationInterface;
|
|
4
5
|
readonly bg: TranslationInterface;
|
|
5
6
|
readonly cs: TranslationInterface;
|
|
6
7
|
readonly da: TranslationInterface;
|
|
@@ -8,9 +9,18 @@ declare const languages: {
|
|
|
8
9
|
readonly el: TranslationInterface;
|
|
9
10
|
readonly en: TranslationInterface;
|
|
10
11
|
readonly es: TranslationInterface;
|
|
12
|
+
readonly et: TranslationInterface;
|
|
11
13
|
readonly fi: TranslationInterface;
|
|
14
|
+
readonly fil: TranslationInterface;
|
|
12
15
|
readonly fr: TranslationInterface;
|
|
16
|
+
readonly hi: TranslationInterface;
|
|
17
|
+
readonly hr: TranslationInterface;
|
|
13
18
|
readonly it: TranslationInterface;
|
|
19
|
+
readonly ja: TranslationInterface;
|
|
20
|
+
readonly ko: TranslationInterface;
|
|
21
|
+
readonly lb: TranslationInterface;
|
|
22
|
+
readonly lv: TranslationInterface;
|
|
23
|
+
readonly mt: TranslationInterface;
|
|
14
24
|
readonly nl: TranslationInterface;
|
|
15
25
|
readonly no: TranslationInterface;
|
|
16
26
|
readonly pl: TranslationInterface;
|
|
@@ -20,7 +30,9 @@ declare const languages: {
|
|
|
20
30
|
readonly sv: TranslationInterface;
|
|
21
31
|
readonly th: TranslationInterface;
|
|
22
32
|
readonly tr: TranslationInterface;
|
|
33
|
+
readonly ur: TranslationInterface;
|
|
23
34
|
readonly vi: TranslationInterface;
|
|
35
|
+
readonly 'zh-cn': TranslationInterface;
|
|
24
36
|
};
|
|
25
37
|
export declare const LANGUAGES: (keyof typeof languages)[];
|
|
26
38
|
export type Language = (typeof LANGUAGES)[number];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/translation/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/translation/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAmC3D,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkCL,CAAC;AAEX,eAAO,MAAM,SAAS,EAA6B,CAAC,MAAM,OAAO,SAAS,CAAC,EAAE,CAAC;AAC9E,MAAM,MAAM,QAAQ,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,CAAC,CAAC;AAElD,wBAAgB,mBAAmB,CACjC,IAAI,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAC9B,IAAI,IAAI,QAAQ,CAElB;AAED,wBAAgB,cAAc,CAC5B,GAAG,EAAE,eAAe,EACpB,IAAI,EAAE,QAAQ,EACd,SAAS,EAAE,YAAY,CAAC,sBAAsB,CAAC,GAC9C,MAAM,CAER;AAED,MAAM,MAAM,oBAAoB,GAAG;IACjC,gBAAgB,EAAE,MAAM,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,2BAA2B,EAAE,MAAM,CAAC;IACpC,4BAA4B,EAAE,MAAM,CAAC;IACrC,gBAAgB,EAAE,MAAM,CAAC;IACzB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,0BAA0B,EAAE,MAAM,CAAC;IACnC,qBAAqB,EAAE,MAAM,CAAC;IAC9B,sBAAsB,EAAE,MAAM,CAAC;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,yBAAyB,EAAE,MAAM,CAAC;CACnC,CAAC;AACF,MAAM,MAAM,eAAe,GAAG,MAAM,oBAAoB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ja.d.ts","sourceRoot":"","sources":["../../../src/translation/ja.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,GAAG,CAAC;AAE9C,eAAO,MAAM,gBAAgB,EAAE,oBAiB9B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ko.d.ts","sourceRoot":"","sources":["../../../src/translation/ko.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,GAAG,CAAC;AAE9C,eAAO,MAAM,cAAc,EAAE,oBAiB5B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lb.d.ts","sourceRoot":"","sources":["../../../src/translation/lb.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,GAAG,CAAC;AAE9C,eAAO,MAAM,qBAAqB,EAAE,oBAiBnC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lv.d.ts","sourceRoot":"","sources":["../../../src/translation/lv.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,GAAG,CAAC;AAE9C,eAAO,MAAM,eAAe,EAAE,oBAiB7B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mt.d.ts","sourceRoot":"","sources":["../../../src/translation/mt.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,GAAG,CAAC;AAE9C,eAAO,MAAM,eAAe,EAAE,oBAiB7B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ur.d.ts","sourceRoot":"","sources":["../../../src/translation/ur.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,GAAG,CAAC;AAE9C,eAAO,MAAM,YAAY,EAAE,oBAiB1B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"zh-cn.d.ts","sourceRoot":"","sources":["../../../src/translation/zh-cn.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,GAAG,CAAC;AAE9C,eAAO,MAAM,yBAAyB,EAAE,oBAiBvC,CAAC"}
|