@taiga-ui/addon-commerce 3.79.0 → 3.80.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/LICENSE +1 -1
- package/bundles/taiga-ui-addon-commerce-enums.umd.js +115 -0
- package/bundles/taiga-ui-addon-commerce-enums.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-commerce-utils.umd.js +30 -2
- package/bundles/taiga-ui-addon-commerce-utils.umd.js.map +1 -1
- package/enums/currency-code.d.ts +53 -0
- package/enums/currency.d.ts +62 -0
- package/esm2015/enums/currency-code.js +54 -1
- package/esm2015/enums/currency.js +63 -1
- package/esm2015/utils/get-code-by-currency.js +7 -1
- package/esm2015/utils/get-currency-by-code.js +7 -3
- package/esm2015/utils/get-currency-symbol.js +19 -1
- package/fesm2015/taiga-ui-addon-commerce-enums.js +115 -0
- package/fesm2015/taiga-ui-addon-commerce-enums.js.map +1 -1
- package/fesm2015/taiga-ui-addon-commerce-utils.js +30 -2
- package/fesm2015/taiga-ui-addon-commerce-utils.js.map +1 -1
- package/package.json +5 -5
package/LICENSE
CHANGED
|
@@ -187,4 +187,4 @@
|
|
|
187
187
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
188
188
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
189
189
|
See the License for the specific language governing permissions and
|
|
190
|
-
limitations under the License.
|
|
190
|
+
limitations under the License.
|
|
@@ -45,6 +45,23 @@
|
|
|
45
45
|
* @description Currency symbol: ฿
|
|
46
46
|
*/
|
|
47
47
|
TuiCurrency["Baht"] = "THB";
|
|
48
|
+
/**
|
|
49
|
+
* Bahraini Dinar
|
|
50
|
+
*
|
|
51
|
+
* @description Numeric code: 048
|
|
52
|
+
* @description Alphabetic code: BHD
|
|
53
|
+
* @description Countries and territories: Bahrain
|
|
54
|
+
* @description Currency symbol: BD
|
|
55
|
+
*/
|
|
56
|
+
TuiCurrency["BahrainiDinar"] = "BHD";
|
|
57
|
+
/**
|
|
58
|
+
* Belarusian ruble
|
|
59
|
+
*
|
|
60
|
+
* @description Numeric code: 933
|
|
61
|
+
* @description Alphabetic code: BYN
|
|
62
|
+
* @description Countries and territories: Belarus
|
|
63
|
+
* @description Currency symbol: Br
|
|
64
|
+
*/
|
|
48
65
|
TuiCurrency["BelarusianRuble"] = "BYN";
|
|
49
66
|
/**
|
|
50
67
|
* Brazilian Real
|
|
@@ -64,6 +81,15 @@
|
|
|
64
81
|
* @description Currency symbol: C$
|
|
65
82
|
*/
|
|
66
83
|
TuiCurrency["CanadianDollar"] = "CAD";
|
|
84
|
+
/**
|
|
85
|
+
* Czech Koruna
|
|
86
|
+
*
|
|
87
|
+
* @description Numeric code: 203
|
|
88
|
+
* @description Alphabetic code: СZK
|
|
89
|
+
* @description Countries and territories: Czech Republic
|
|
90
|
+
* @description Currency symbol: Kč
|
|
91
|
+
*/
|
|
92
|
+
TuiCurrency["CzechKoruna"] = "CZK";
|
|
67
93
|
/**
|
|
68
94
|
* United Arab Emirates dirham
|
|
69
95
|
*
|
|
@@ -82,6 +108,15 @@
|
|
|
82
108
|
* @description Currency symbol: $
|
|
83
109
|
*/
|
|
84
110
|
TuiCurrency["Dollar"] = "USD";
|
|
111
|
+
/**
|
|
112
|
+
* East Caribbean Dollar
|
|
113
|
+
*
|
|
114
|
+
* @description Numeric code: 951
|
|
115
|
+
* @description Alphabetic code: XCD
|
|
116
|
+
* @description Countries and territories: Anguilla, Antigua and Barbuda, Dominica, Grenada, Montserrat, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the Grenadines
|
|
117
|
+
* @description Currency symbol: EC$
|
|
118
|
+
*/
|
|
119
|
+
TuiCurrency["EastCaribbeanDollar"] = "XCD";
|
|
85
120
|
/**
|
|
86
121
|
* Euro
|
|
87
122
|
*
|
|
@@ -91,6 +126,15 @@
|
|
|
91
126
|
* @description Currency symbol: €
|
|
92
127
|
*/
|
|
93
128
|
TuiCurrency["Euro"] = "EUR";
|
|
129
|
+
/**
|
|
130
|
+
* Forint
|
|
131
|
+
*
|
|
132
|
+
* @description Numeric code: 348
|
|
133
|
+
* @description Alphabetic code: HUF
|
|
134
|
+
* @description Countries and territories: Hungray
|
|
135
|
+
* @description Currency symbol: Ft
|
|
136
|
+
*/
|
|
137
|
+
TuiCurrency["Forint"] = "HUF";
|
|
94
138
|
TuiCurrency["GeorgianLari"] = "GEL";
|
|
95
139
|
/**
|
|
96
140
|
* Hong Kong dollar
|
|
@@ -149,8 +193,26 @@
|
|
|
149
193
|
* @description Currency symbol: $
|
|
150
194
|
*/
|
|
151
195
|
TuiCurrency["MexicanPeso"] = "MXN";
|
|
196
|
+
/**
|
|
197
|
+
* Moldovan Leu
|
|
198
|
+
*
|
|
199
|
+
* @description Numeric code: 498
|
|
200
|
+
* @description Alphabetic code: MDL
|
|
201
|
+
* @description Countries and territories: Moldova
|
|
202
|
+
* @description Currency symbol: L
|
|
203
|
+
*/
|
|
204
|
+
TuiCurrency["MoldovanLeu"] = "MDL";
|
|
152
205
|
TuiCurrency["MongolianTugrik"] = "MNT";
|
|
153
206
|
TuiCurrency["NewTurkmenManat"] = "TMT";
|
|
207
|
+
/**
|
|
208
|
+
* Poland Zloty
|
|
209
|
+
*
|
|
210
|
+
* @description Numeric code: 985
|
|
211
|
+
* @description Alphabetic code: PLN
|
|
212
|
+
* @description Countries and territories: Poland
|
|
213
|
+
* @description Currency symbol: zł
|
|
214
|
+
*/
|
|
215
|
+
TuiCurrency["PolandZloty"] = "PLN";
|
|
154
216
|
/**
|
|
155
217
|
* Pound sterling
|
|
156
218
|
*
|
|
@@ -411,7 +473,15 @@
|
|
|
411
473
|
*/
|
|
412
474
|
TuiCurrencyCode["Baht"] = "764";
|
|
413
475
|
/**
|
|
476
|
+
* Bahraini Dinar
|
|
414
477
|
*
|
|
478
|
+
* @description Numeric code: 048
|
|
479
|
+
* @description Alphabetic code: BHD
|
|
480
|
+
* @description Countries and territories: Bahrain
|
|
481
|
+
* @description Currency symbol: BD
|
|
482
|
+
*/
|
|
483
|
+
TuiCurrencyCode["BahrainiDinar"] = "048";
|
|
484
|
+
/**
|
|
415
485
|
* Belarusian ruble
|
|
416
486
|
*
|
|
417
487
|
* @description Numeric code: 933
|
|
@@ -438,6 +508,15 @@
|
|
|
438
508
|
* @description Currency symbol: C$
|
|
439
509
|
*/
|
|
440
510
|
TuiCurrencyCode["CanadianDollar"] = "124";
|
|
511
|
+
/**
|
|
512
|
+
* Czech Koruna
|
|
513
|
+
*
|
|
514
|
+
* @description Numeric code: 203
|
|
515
|
+
* @description Alphabetic code: CZK
|
|
516
|
+
* @description Countries and territories: Czech Republic
|
|
517
|
+
* @description Currency symbol: Kč
|
|
518
|
+
*/
|
|
519
|
+
TuiCurrencyCode["CzechKoruna"] = "203";
|
|
441
520
|
/**
|
|
442
521
|
* United Arab Emirates dirham
|
|
443
522
|
*
|
|
@@ -456,6 +535,15 @@
|
|
|
456
535
|
* @description Currency symbol: $
|
|
457
536
|
*/
|
|
458
537
|
TuiCurrencyCode["Dollar"] = "840";
|
|
538
|
+
/**
|
|
539
|
+
* East Caribbean Dollar
|
|
540
|
+
*
|
|
541
|
+
* @description Numeric code: 951
|
|
542
|
+
* @description Alphabetic code: XCD
|
|
543
|
+
* @description Countries and territories: Anguilla, Antigua and Barbuda, Dominica, Grenada, Montserrat, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the Grenadines
|
|
544
|
+
* @description Currency symbol: EC$
|
|
545
|
+
*/
|
|
546
|
+
TuiCurrencyCode["EastCaribbeanDollar"] = "951";
|
|
459
547
|
/**
|
|
460
548
|
* Euro
|
|
461
549
|
*
|
|
@@ -465,6 +553,15 @@
|
|
|
465
553
|
* @description Currency symbol: €
|
|
466
554
|
*/
|
|
467
555
|
TuiCurrencyCode["Euro"] = "978";
|
|
556
|
+
/**
|
|
557
|
+
* Forint
|
|
558
|
+
*
|
|
559
|
+
* @description Numeric code: 348
|
|
560
|
+
* @description Alphabetic code: HUF
|
|
561
|
+
* @description Countries and territories: Hungray
|
|
562
|
+
* @description Currency symbol: Ft
|
|
563
|
+
*/
|
|
564
|
+
TuiCurrencyCode["Forint"] = "348";
|
|
468
565
|
/**
|
|
469
566
|
* Georgian lari
|
|
470
567
|
*
|
|
@@ -555,6 +652,15 @@
|
|
|
555
652
|
* @description Currency symbol: $
|
|
556
653
|
*/
|
|
557
654
|
TuiCurrencyCode["MexicanPeso"] = "484";
|
|
655
|
+
/**
|
|
656
|
+
* Moldovan Leu
|
|
657
|
+
*
|
|
658
|
+
* @description Numeric code: 498
|
|
659
|
+
* @description Alphabetic code: MDL
|
|
660
|
+
* @description Countries and territories: Moldova
|
|
661
|
+
* @description Currency symbol: L
|
|
662
|
+
*/
|
|
663
|
+
TuiCurrencyCode["MoldovanLeu"] = "498";
|
|
558
664
|
/**
|
|
559
665
|
* Mongolian tugrik
|
|
560
666
|
*
|
|
@@ -573,6 +679,15 @@
|
|
|
573
679
|
* @description Currency symbol: TMT
|
|
574
680
|
*/
|
|
575
681
|
TuiCurrencyCode["NewTurkmenManat"] = "934";
|
|
682
|
+
/**
|
|
683
|
+
* Poland Zloty
|
|
684
|
+
*
|
|
685
|
+
* @description Numeric code: 985
|
|
686
|
+
* @description Alphabetic code: PLN
|
|
687
|
+
* @description Countries and territories: Poland
|
|
688
|
+
* @description Currency symbol: zł
|
|
689
|
+
*/
|
|
690
|
+
TuiCurrencyCode["PolandZloty"] = "985";
|
|
576
691
|
/**
|
|
577
692
|
* Pound sterling
|
|
578
693
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taiga-ui-addon-commerce-enums.umd.js","sources":["../../../projects/addon-commerce/enums/currency.ts","../../../projects/addon-commerce/enums/currency-code.ts","../../../projects/addon-commerce/enums/taiga-ui-addon-commerce-enums.ts"],"sourcesContent":["// cspell:disable\n/**\n * **Active ISO 4217 alphabetic currency codes**\n *\n * @description The ISO 4217 classification is used to describe alphabetic and numeric currency codes.\n * @description Alphabetic code is also called \"alfa-3\".\n *\n * @link https://en.wikipedia.org/wiki/ISO_4217\n */\n// TODO: change type in v4.0\n// eslint-disable-next-line no-restricted-syntax\nexport enum TuiCurrency {\n /**\n * Armenian dram\n *\n * @description Numeric code: 051\n * @description Alphabetic code: AMD\n * @description Countries and territories: Armenia\n * @description Currency symbol: ֏\n */\n ArmenianDram = 'AMD',\n\n /**\n * Australian dollar\n *\n * @description Numeric code: 036\n * @description Alphabetic code: AUD\n * @description Countries and territories: Australia, Christmas Island (CX), Cocos (Keeling) Islands (CC), Heard Island and McDonald Islands (HM), Kiribati (KI), Nauru (NR), Norfolk Island (NF), Tuvalu (TV)\n * @description Currency symbol: A$\n */\n AustralianDollar = 'AUD',\n\n AzerbaijaniManat = 'AZN',\n\n /**\n * Thai baht\n *\n * @description Numeric code: 764\n * @description Alphabetic code: THB\n * @description Countries and territories: Thailand\n * @description Currency symbol: ฿\n */\n Baht = 'THB',\n\n BelarusianRuble = 'BYN',\n\n /**\n * Brazilian Real\n *\n * @description Numeric code: 986\n * @description Alphabetic code: BRL\n * @description Countries and territories: Brazilia\n * @description Currency symbol: R$\n */\n BrazilianReal = 'BRL',\n\n /**\n * Canadian dollar\n *\n * @description Numeric code: 124\n * @description Alphabetic code: CAD\n * @description Countries and territories: Canada\n * @description Currency symbol: C$\n */\n CanadianDollar = 'CAD',\n\n /**\n * United Arab Emirates dirham\n *\n * @description Numeric code: 784\n * @description Alphabetic code: AED\n * @description Countries and territories: United Arab Emirates\n * @description Currency symbol: Dh\n */\n Dirham = 'AED',\n\n /**\n * United States dollar\n *\n * @description Numeric code: 840\n * @description Alphabetic code: USD\n * @description Countries and territories: United States, American Samoa (AS), British Indian Ocean Territory (IO) (also uses GBP), British Virgin Islands (VG), Caribbean Netherlands (BQ – Bonaire, Sint Eustatius and Saba), Ecuador (EC), El Salvador (SV), Guam (GU), Marshall Islands (MH), Federated States of Micronesia (FM), Northern Mariana Islands (MP), Palau (PW), Panama (PA) (as well as Panamanian Balboa), Puerto Rico (PR), Timor-Leste (TL), Turks and Caicos Islands (TC), U.S. Virgin Islands (VI), United States Minor Outlying Islands (UM)\n * @description Currency symbol: $\n */\n Dollar = 'USD',\n\n /**\n * Euro\n *\n * @description Numeric code: 978\n * @description Alphabetic code: EUR\n * @description Countries and territories: Åland Islands (AX), European Union (EU), Andorra (AD), Austria (AT), Belgium (BE), Cyprus (CY), Estonia (EE), Finland (FI), France (FR), French Southern and Antarctic Lands (TF), Germany (DE), Greece (GR), Guadeloupe (GP), Ireland (IE), Italy (IT), Latvia (LV), Lithuania (LT), Luxembourg (LU), Malta (MT), French Guiana (GF), Martinique (MQ), Mayotte (YT), Monaco (MC), Montenegro (ME), Netherlands (NL), Portugal (PT), Réunion (RE), Saint Barthélemy (BL), Saint Martin (MF), Saint Pierre and Miquelon (PM), San Marino (SM), Slovakia (SK), Slovenia (SI), Spain (ES), Vatican City (VA)\n * @description Currency symbol: €\n */\n Euro = 'EUR',\n\n GeorgianLari = 'GEL',\n\n /**\n * Hong Kong dollar\n *\n * @description Numeric code: 344\n * @description Alphabetic code: HKD\n * @description Countries and territories: Hong Kong\n * @description Currency symbol: HK$\n */\n HongKongDollar = 'HKD',\n\n /**\n * Ukrainian hryvnia\n *\n * @description Numeric code: 980\n * @description Alphabetic code: UAH\n * @description Countries and territories: Ukraine\n * @description Currency symbol: ₴\n */\n Hryvnia = 'UAH',\n\n /**\n * Indian rupee\n *\n * @description Numeric code: 356\n * @description Alphabetic code: INR\n * @description Countries and territories: India, Bhutan\n * @description Currency symbol: ₹\n */\n IndianRupee = 'INR',\n\n IndonesianRupiah = 'IDR',\n\n IranianRial = 'IRR',\n\n /**\n * Israeli new shekel\n *\n * @description Numeric code: 376\n * @description Alphabetic code: ILS\n * @description Countries and territories: Israel\n * @description Currency symbol: ₪\n */\n IsraeliShekel = 'ILS',\n\n /**\n * Kyrgyzstani som\n *\n * @description Numeric code: 417\n * @description Alphabetic code: KGS\n * @description Countries and territories: Kyrgyzstan\n * @description Currency symbol: c\n */\n KyrgyzstanSom = 'KGS',\n\n MalaysianRinggit = 'MYR',\n\n /**\n * Mexican peso\n *\n * @description Numeric code: 484\n * @description Alphabetic code: MXN\n * @description Countries and territories: Mexico\n * @description Currency symbol: $\n */\n MexicanPeso = 'MXN',\n\n MongolianTugrik = 'MNT',\n\n NewTurkmenManat = 'TMT',\n\n /**\n * Pound sterling\n *\n * @description Numeric code: 826\n * @description Alphabetic code: GBP\n * @description Countries and territories: United Kingdom, Isle of Man (IM, see Manx pound), Jersey (JE, see Jersey pound), Guernsey (GG, see Guernsey pound), Tristan da Cunha (SH-TA)\n * @description Currency symbol: £\n */\n Pound = 'GBP',\n\n /**\n * Russian ruble\n *\n * @description Numeric code: 643\n * @description Alphabetic code: RUB\n * @description Countries and territories: Russia\n * @description Currency symbol: ₽\n */\n Ruble = 'RUB',\n\n /**\n * Malaysian ringgit\n *\n * @description Numeric code: 458\n * @description Alphabetic code: MYR\n * @description Countries and territories: Malaysia\n * @description Currency symbol: RM\n */\n\n SaudiRiyal = 'SAR',\n /**\n *\n * Belarusian ruble\n *\n * @description Numeric code: 933\n * @description Alphabetic code: BYN\n * @description Countries and territories: Belarus\n * @description Currency symbol: Rbl\n */\n\n SerbianDinar = 'RSD',\n /**\n * Georgian lari\n *\n * @description Numeric code: 981\n * @description Alphabetic code: GEL\n * @description Countries and territories: Georgia\n * @description Currency symbol: ₾\n */\n\n /**\n * Singapore dollar\n *\n * @description Numeric code: 702\n * @description Alphabetic code: SGD\n * @description Countries and territories: Singapore\n * @description Currency symbol: S$\n */\n SingaporeDollar = 'SGD',\n /**\n * Azerbaijani manat\n *\n * @description Numeric code: 944\n * @description Alphabetic code: AZN\n * @description Countries and territories: Azerbaijan\n * @description Currency symbol: ₼\n */\n\n SouthAfricanRand = 'ZAR',\n /**\n * Sri Lankan rupee\n *\n * @description Numeric code: 144\n * @description Alphabetic code: LKR\n * @description Countries and territories: Sri Lanka\n * @description Currency symbol: Rs.\n */\n\n SriLankanRupee = 'LKR',\n /**\n * Serbian dinar\n *\n * @description Numeric code: 941\n * @description Alphabetic code: RSD\n * @description Countries and territories: Serbia\n * @description Currency symbol: DIN\n */\n\n /**\n * Swiss franc\n *\n * @description Numeric code: 756\n * @description Alphabetic code: CHF\n * @description Countries and territories: Switzerland, Liechtenstein (LI)\n * @description Currency symbol: ₣\n */\n SwissFranc = 'CHF',\n /**\n * Saudi Riyal\n *\n * @description Numeric code: 682\n * @description Alphabetic code: SAR\n * @description Countries and territories: Saudi Arabia\n * @description Currency symbol: SR\n */\n\n /**\n * Tajikistani somoni\n *\n * @description Numeric code: 972\n * @description Alphabetic code: TJS\n * @description Countries and territories: Tajikistan\n * @description Currency symbol: SM\n */\n TajikistaniSomoni = 'TJS',\n /**\n * Mongolian tugrik\n *\n * @description Numeric code: 496\n * @description Alphabetic code: MNT\n * @description Countries and territories: Mongolia\n * @description Currency symbol: ₮\n */\n\n /**\n * Kazakhstani tenge\n *\n * @description Numeric code: 398\n * @description Alphabetic code: KZT\n * @description Countries and territories: Kazakhstan\n * @description Currency symbol: ₸\n */\n Tenge = 'KZT',\n /**\n * South African rand\n *\n * @description Numeric code: 710\n * @description Alphabetic code: ZAR\n * @description Countries and territories: South Africa\n * @description Currency symbol: R\n */\n\n /**\n * Turkish lira\n *\n * @description Numeric code: 949\n * @description Alphabetic code: TRY\n * @description Countries and territories: Turkey\n * @description Currency symbol: ₺\n */\n TurkishLira = 'TRY',\n /**\n * Iranian rial\n *\n * @description Numeric code: 364\n * @description Alphabetic code: IRR\n * @description Countries and territories: Iran\n * @description Currency symbol: IR\n */\n\n /**\n * Uzbek sum\n *\n * @description Numeric code: 860\n * @description Alphabetic code: UZS\n * @description Countries and territories: Uzbekistan\n * @description Currency symbol: So'm\n */\n UzbekSum = 'UZS',\n /**\n * Indonesian rupiah\n *\n * @description Numeric code: 360\n * @description Alphabetic code: IDR\n * @description Countries and territories: Indonesia\n * @description Currency symbol: Rp\n */\n\n VietnameseDong = 'VND',\n /**\n * Vietnamese dong\n *\n * @description Numeric code: 704\n * @description Alphabetic code: VND\n * @description Countries and territories: Vietnam\n * @description Currency symbol: đ\n */\n\n /**\n * South Korean won\n *\n * @description Numeric code: 410\n * @description Alphabetic code: KRW\n * @description Countries and territories: South Korea\n * @description Currency symbol: ₩\n */\n Won = 'KRW',\n /**\n * New Turkmen manat\n *\n * @description Numeric code: 934\n * @description Alphabetic code: TMT\n * @description Countries and territories: Turkmenistan\n * @description Currency symbol: TMT\n */\n\n /**\n * Japanese yen\n *\n * @description Numeric code: 392\n * @description Alphabetic code: JPY\n * @description Countries and territories: Japan\n * @description Currency symbol: ¥\n */\n Yen = 'JPY',\n /**\n * Chinese yuan\n *\n * @description Numeric code: 156\n * @description Alphabetic code: CNY\n * @description Countries and territories: China\n * @description Currency symbol: CN¥\n */\n YuanRenminbi = 'CNY',\n}\n","/**\n * **Active ISO 4217 numeric currency codes**\n *\n * @description The ISO 4217 classification is used to describe alphabetic and numeric currency codes.\n * @description Numeric code is also called \"number-3\".\n *\n * @link https://en.wikipedia.org/wiki/ISO_4217\n */\n// TODO: change type in v4.0\n// eslint-disable-next-line no-restricted-syntax\nexport enum TuiCurrencyCode {\n /**\n * Armenian dram\n *\n * @description Numeric code: 051\n * @description Alphabetic code: AMD\n * @description Countries and territories: Armenia\n * @description Currency symbol: ֏\n */\n ArmenianDram = '051',\n\n /**\n * Australian dollar\n *\n * @description Numeric code: 036\n * @description Alphabetic code: AUD\n * @description Countries and territories: Australia, Christmas Island (CX), Cocos (Keeling) Islands (CC), Heard Island and McDonald Islands (HM), Kiribati (KI), Nauru (NR), Norfolk Island (NF), Tuvalu (TV)\n * @description Currency symbol: A$\n */\n AustralianDollar = '036',\n\n /**\n * Azerbaijani manat\n *\n * @description Numeric code: 944\n * @description Alphabetic code: AZN\n * @description Countries and territories: Azerbaijan\n * @description Currency symbol: ₼\n */\n AzerbaijaniManat = '944',\n\n /**\n * Thai baht\n *\n * @description Numeric code: 764\n * @description Alphabetic code: THB\n * @description Countries and territories: Thailand\n * @description Currency symbol: ฿\n */\n Baht = '764',\n\n /**\n *\n * Belarusian ruble\n *\n * @description Numeric code: 933\n * @description Alphabetic code: BYN\n * @description Countries and territories: Belarus\n * @description Currency symbol: Rbl\n */\n BelarusianRuble = '933',\n\n /**\n * Brazilian Real\n *\n * @description Numeric code: 986\n * @description Alphabetic code: BRL\n * @description Countries and territories: Brazilia\n * @description Currency symbol: R$\n */\n BrazilianReal = '986',\n\n /**\n * Canadian dollar\n *\n * @description Numeric code: 124\n * @description Alphabetic code: CAD\n * @description Countries and territories: Canada\n * @description Currency symbol: C$\n */\n CanadianDollar = '124',\n\n /**\n * United Arab Emirates dirham\n *\n * @description Numeric code: 784\n * @description Alphabetic code: AED\n * @description Countries and territories: United Arab Emirates\n * @description Currency symbol: Dh\n */\n Dirham = '784',\n\n /**\n * United States dollar\n *\n * @description Numeric code: 840\n * @description Alphabetic code: USD\n * @description Countries and territories: United States, American Samoa (AS), British Indian Ocean Territory (IO) (also uses GBP), British Virgin Islands (VG), Caribbean Netherlands (BQ – Bonaire, Sint Eustatius and Saba), Ecuador (EC), El Salvador (SV), Guam (GU), Marshall Islands (MH), Federated States of Micronesia (FM), Northern Mariana Islands (MP), Palau (PW), Panama (PA) (as well as Panamanian Balboa), Puerto Rico (PR), Timor-Leste (TL), Turks and Caicos Islands (TC), U.S. Virgin Islands (VI), United States Minor Outlying Islands (UM)\n * @description Currency symbol: $\n */\n Dollar = '840',\n\n /**\n * Euro\n *\n * @description Numeric code: 978\n * @description Alphabetic code: EUR\n * @description Countries and territories: Åland Islands (AX), European Union (EU), Andorra (AD), Austria (AT), Belgium (BE), Cyprus (CY), Estonia (EE), Finland (FI), France (FR), French Southern and Antarctic Lands (TF), Germany (DE), Greece (GR), Guadeloupe (GP), Ireland (IE), Italy (IT), Latvia (LV), Lithuania (LT), Luxembourg (LU), Malta (MT), French Guiana (GF), Martinique (MQ), Mayotte (YT), Monaco (MC), Montenegro (ME), Netherlands (NL), Portugal (PT), Réunion (RE), Saint Barthélemy (BL), Saint Martin (MF), Saint Pierre and Miquelon (PM), San Marino (SM), Slovakia (SK), Slovenia (SI), Spain (ES), Vatican City (VA)\n * @description Currency symbol: €\n */\n Euro = '978',\n\n /**\n * Georgian lari\n *\n * @description Numeric code: 981\n * @description Alphabetic code: GEL\n * @description Countries and territories: Georgia\n * @description Currency symbol: ₾\n */\n GeorgianLari = '981',\n\n /**\n * Hong Kong dollar\n *\n * @description Numeric code: 344\n * @description Alphabetic code: HKD\n * @description Countries and territories: Hong Kong\n * @description Currency symbol: HK$\n */\n HongKongDollar = '344',\n\n /**\n * Ukrainian hryvnia\n *\n * @description Numeric code: 980\n * @description Alphabetic code: UAH\n * @description Countries and territories: Ukraine\n * @description Currency symbol: ₴\n */\n Hryvnia = '980',\n\n /**\n * Indian rupee\n *\n * @description Numeric code: 356\n * @description Alphabetic code: INR\n * @description Countries and territories: India, Bhutan\n * @description Currency symbol: ₹\n */\n IndianRupee = '356',\n\n /**\n * Indonesian rupiah\n *\n * @description Numeric code: 360\n * @description Alphabetic code: IDR\n * @description Countries and territories: Indonesia\n * @description Currency symbol: Rp\n */\n IndonesianRupiah = '360',\n\n /**\n * Iranian rial\n *\n * @description Numeric code: 364\n * @description Alphabetic code: IRR\n * @description Countries and territories: Iran\n * @description Currency symbol: IR\n */\n IranianRial = '364',\n\n /**\n * Israeli new shekel\n *\n * @description Numeric code: 376\n * @description Alphabetic code: ILS\n * @description Countries and territories: Israel\n * @description Currency symbol: ₪\n */\n IsraeliShekel = '376',\n\n /**\n * Kyrgyzstani som\n *\n * @description Numeric code: 417\n * @description Alphabetic code: KGS\n * @description Countries and territories: Kyrgyzstan\n * @description Currency symbol: c\n */\n KyrgyzstanSom = '417',\n\n /**\n * Malaysian ringgit\n *\n * @description Numeric code: 458\n * @description Alphabetic code: MYR\n * @description Countries and territories: Malaysia\n * @description Currency symbol: RM\n */\n MalaysianRinggit = '458',\n\n /**\n * Mexican peso\n *\n * @description Numeric code: 484\n * @description Alphabetic code: MXN\n * @description Countries and territories: Mexico\n * @description Currency symbol: $\n */\n MexicanPeso = '484',\n\n /**\n * Mongolian tugrik\n *\n * @description Numeric code: 496\n * @description Alphabetic code: MNT\n * @description Countries and territories: Mongolia\n * @description Currency symbol: ₮\n */\n MongolianTugrik = '496',\n\n /**\n * New Turkmen manat\n *\n * @description Numeric code: 934\n * @description Alphabetic code: TMT\n * @description Countries and territories: Turkmenistan\n * @description Currency symbol: TMT\n */\n NewTurkmenManat = '934',\n\n /**\n * Pound sterling\n *\n * @description Numeric code: 826\n * @description Alphabetic code: GBP\n * @description Countries and territories: United Kingdom, Isle of Man (IM, see Manx pound), Jersey (JE, see Jersey pound), Guernsey (GG, see Guernsey pound), Tristan da Cunha (SH-TA)\n * @description Currency symbol: £\n */\n Pound = '826',\n\n /**\n * Tajikistani somoni\n *\n * @description Numeric code: 972\n * @description Alphabetic code: TJS\n * @description Countries and territories: Tajikistan\n * @description Currency symbol: SM\n */\n\n /**\n * Russian ruble\n *\n * @description Numeric code: 643\n * @description Alphabetic code: RUB\n * @description Countries and territories: Russia\n * @description Currency symbol: ₽\n */\n Ruble = '643',\n\n /**\n * Saudi Riyal\n *\n * @description Numeric code: 682\n * @description Alphabetic code: SAR\n * @description Countries and territories: Saudi Arabia\n * @description Currency symbol: SR\n */\n SaudiRiyal = '682',\n\n /**\n * Serbian dinar\n *\n * @description Numeric code: 941\n * @description Alphabetic code: RSD\n * @description Countries and territories: Serbia\n * @description Currency symbol: DIN\n */\n SerbianDinar = '941',\n\n /**\n * Singapore dollar\n *\n * @description Numeric code: 702\n * @description Alphabetic code: SGD\n * @description Countries and territories: Singapore\n * @description Currency symbol: S$\n */\n SingaporeDollar = '702',\n\n /**\n * South African rand\n *\n * @description Numeric code: 710\n * @description Alphabetic code: ZAR\n * @description Countries and territories: South Africa\n * @description Currency symbol: R\n */\n SouthAfricanRand = '710',\n\n /**\n * Sri Lankan rupee\n *\n * @description Numeric code: 144\n * @description Alphabetic code: LKR\n * @description Countries and territories: Sri Lanka\n * @description Currency symbol: Rs.\n */\n SriLankanRupee = '144',\n\n /**\n * Swiss franc\n *\n * @description Numeric code: 756\n * @description Alphabetic code: CHF\n * @description Countries and territories: Switzerland, Liechtenstein (LI)\n * @description Currency symbol: ₣\n */\n SwissFranc = '756',\n\n TajikistaniSomoni = '972',\n\n /**\n * Kazakhstani tenge\n *\n * @description Numeric code: 398\n * @description Alphabetic code: KZT\n * @description Countries and territories: Kazakhstan\n * @description Currency symbol: ₸\n */\n Tenge = '398',\n\n /**\n * Turkish lira\n *\n * @description Numeric code: 949\n * @description Alphabetic code: TRY\n * @description Countries and territories: Turkey\n * @description Currency symbol: ₺\n */\n TurkishLira = '949',\n\n /**\n * Uzbek sum\n *\n * @description Numeric code: 860\n * @description Alphabetic code: UZS\n * @description Countries and territories: Uzbekistan\n * @description Currency symbol: So'm\n */\n UzbekSum = '860',\n\n /**\n * Vietnamese dong\n *\n * @description Numeric code: 704\n * @description Alphabetic code: VND\n * @description Countries and territories: Vietnam\n * @description Currency symbol: đ\n */\n VietnameseDong = '704',\n\n /**\n * South Korean won\n *\n * @description Numeric code: 410\n * @description Alphabetic code: KRW\n * @description Countries and territories: South Korea\n * @description Currency symbol: ₩\n */\n Won = '410',\n\n /**\n * Japanese yen\n *\n * @description Numeric code: 392\n * @description Alphabetic code: JPY\n * @description Countries and territories: Japan\n * @description Currency symbol: ¥\n */\n Yen = '392',\n\n /**\n * Chinese yuan\n *\n * @description Numeric code: 156\n * @description Alphabetic code: CNY\n * @description Countries and territories: China\n * @description Currency symbol: CN¥\n */\n YuanRenminbi = '156',\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["TuiCurrency","TuiCurrencyCode"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"taiga-ui-addon-commerce-enums.umd.js","sources":["../../../projects/addon-commerce/enums/currency.ts","../../../projects/addon-commerce/enums/currency-code.ts","../../../projects/addon-commerce/enums/taiga-ui-addon-commerce-enums.ts"],"sourcesContent":["// cspell:disable\n/**\n * **Active ISO 4217 alphabetic currency codes**\n *\n * @description The ISO 4217 classification is used to describe alphabetic and numeric currency codes.\n * @description Alphabetic code is also called \"alfa-3\".\n *\n * @link https://en.wikipedia.org/wiki/ISO_4217\n */\n// TODO: change type in v4.0\n// eslint-disable-next-line no-restricted-syntax\nexport enum TuiCurrency {\n /**\n * Armenian dram\n *\n * @description Numeric code: 051\n * @description Alphabetic code: AMD\n * @description Countries and territories: Armenia\n * @description Currency symbol: ֏\n */\n ArmenianDram = 'AMD',\n\n /**\n * Australian dollar\n *\n * @description Numeric code: 036\n * @description Alphabetic code: AUD\n * @description Countries and territories: Australia, Christmas Island (CX), Cocos (Keeling) Islands (CC), Heard Island and McDonald Islands (HM), Kiribati (KI), Nauru (NR), Norfolk Island (NF), Tuvalu (TV)\n * @description Currency symbol: A$\n */\n AustralianDollar = 'AUD',\n\n AzerbaijaniManat = 'AZN',\n\n /**\n * Thai baht\n *\n * @description Numeric code: 764\n * @description Alphabetic code: THB\n * @description Countries and territories: Thailand\n * @description Currency symbol: ฿\n */\n Baht = 'THB',\n\n /**\n * \tBahraini Dinar\n *\n * @description Numeric code: 048\n * @description Alphabetic code: BHD\n * @description Countries and territories: Bahrain\n * @description Currency symbol: BD\n */\n BahrainiDinar = 'BHD',\n\n /**\n * Belarusian ruble\n *\n * @description Numeric code: 933\n * @description Alphabetic code: BYN\n * @description Countries and territories: Belarus\n * @description Currency symbol: Br\n */\n BelarusianRuble = 'BYN',\n\n /**\n * Brazilian Real\n *\n * @description Numeric code: 986\n * @description Alphabetic code: BRL\n * @description Countries and territories: Brazilia\n * @description Currency symbol: R$\n */\n BrazilianReal = 'BRL',\n\n /**\n * Canadian dollar\n *\n * @description Numeric code: 124\n * @description Alphabetic code: CAD\n * @description Countries and territories: Canada\n * @description Currency symbol: C$\n */\n CanadianDollar = 'CAD',\n\n /**\n * Czech Koruna\n *\n * @description Numeric code: 203\n * @description Alphabetic code: СZK\n * @description Countries and territories: Czech Republic\n * @description Currency symbol: Kč\n */\n CzechKoruna = 'CZK',\n\n /**\n * United Arab Emirates dirham\n *\n * @description Numeric code: 784\n * @description Alphabetic code: AED\n * @description Countries and territories: United Arab Emirates\n * @description Currency symbol: Dh\n */\n Dirham = 'AED',\n\n /**\n * United States dollar\n *\n * @description Numeric code: 840\n * @description Alphabetic code: USD\n * @description Countries and territories: United States, American Samoa (AS), British Indian Ocean Territory (IO) (also uses GBP), British Virgin Islands (VG), Caribbean Netherlands (BQ – Bonaire, Sint Eustatius and Saba), Ecuador (EC), El Salvador (SV), Guam (GU), Marshall Islands (MH), Federated States of Micronesia (FM), Northern Mariana Islands (MP), Palau (PW), Panama (PA) (as well as Panamanian Balboa), Puerto Rico (PR), Timor-Leste (TL), Turks and Caicos Islands (TC), U.S. Virgin Islands (VI), United States Minor Outlying Islands (UM)\n * @description Currency symbol: $\n */\n Dollar = 'USD',\n\n /**\n * East Caribbean Dollar\n *\n * @description Numeric code: 951\n * @description Alphabetic code: XCD\n * @description Countries and territories: Anguilla, Antigua and Barbuda, Dominica, Grenada, Montserrat, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the Grenadines\n * @description Currency symbol: EC$\n */\n EastCaribbeanDollar = 'XCD',\n\n /**\n * Euro\n *\n * @description Numeric code: 978\n * @description Alphabetic code: EUR\n * @description Countries and territories: Åland Islands (AX), European Union (EU), Andorra (AD), Austria (AT), Belgium (BE), Cyprus (CY), Estonia (EE), Finland (FI), France (FR), French Southern and Antarctic Lands (TF), Germany (DE), Greece (GR), Guadeloupe (GP), Ireland (IE), Italy (IT), Latvia (LV), Lithuania (LT), Luxembourg (LU), Malta (MT), French Guiana (GF), Martinique (MQ), Mayotte (YT), Monaco (MC), Montenegro (ME), Netherlands (NL), Portugal (PT), Réunion (RE), Saint Barthélemy (BL), Saint Martin (MF), Saint Pierre and Miquelon (PM), San Marino (SM), Slovakia (SK), Slovenia (SI), Spain (ES), Vatican City (VA)\n * @description Currency symbol: €\n */\n Euro = 'EUR',\n\n /**\n * Forint\n *\n * @description Numeric code: 348\n * @description Alphabetic code: HUF\n * @description Countries and territories: Hungray\n * @description Currency symbol: Ft\n */\n Forint = 'HUF',\n\n GeorgianLari = 'GEL',\n\n /**\n * Hong Kong dollar\n *\n * @description Numeric code: 344\n * @description Alphabetic code: HKD\n * @description Countries and territories: Hong Kong\n * @description Currency symbol: HK$\n */\n HongKongDollar = 'HKD',\n\n /**\n * Ukrainian hryvnia\n *\n * @description Numeric code: 980\n * @description Alphabetic code: UAH\n * @description Countries and territories: Ukraine\n * @description Currency symbol: ₴\n */\n Hryvnia = 'UAH',\n\n /**\n * Indian rupee\n *\n * @description Numeric code: 356\n * @description Alphabetic code: INR\n * @description Countries and territories: India, Bhutan\n * @description Currency symbol: ₹\n */\n IndianRupee = 'INR',\n\n IndonesianRupiah = 'IDR',\n\n IranianRial = 'IRR',\n\n /**\n * Israeli new shekel\n *\n * @description Numeric code: 376\n * @description Alphabetic code: ILS\n * @description Countries and territories: Israel\n * @description Currency symbol: ₪\n */\n IsraeliShekel = 'ILS',\n\n /**\n * Kyrgyzstani som\n *\n * @description Numeric code: 417\n * @description Alphabetic code: KGS\n * @description Countries and territories: Kyrgyzstan\n * @description Currency symbol: c\n */\n KyrgyzstanSom = 'KGS',\n\n MalaysianRinggit = 'MYR',\n\n /**\n * Mexican peso\n *\n * @description Numeric code: 484\n * @description Alphabetic code: MXN\n * @description Countries and territories: Mexico\n * @description Currency symbol: $\n */\n MexicanPeso = 'MXN',\n\n /**\n * Moldovan Leu\n *\n * @description Numeric code: 498\n * @description Alphabetic code: MDL\n * @description Countries and territories: Moldova\n * @description Currency symbol: L\n */\n MoldovanLeu = 'MDL',\n\n MongolianTugrik = 'MNT',\n\n NewTurkmenManat = 'TMT',\n\n /**\n * Poland Zloty\n *\n * @description Numeric code: 985\n * @description Alphabetic code: PLN\n * @description Countries and territories: Poland\n * @description Currency symbol: zł\n */\n PolandZloty = 'PLN',\n\n /**\n * Pound sterling\n *\n * @description Numeric code: 826\n * @description Alphabetic code: GBP\n * @description Countries and territories: United Kingdom, Isle of Man (IM, see Manx pound), Jersey (JE, see Jersey pound), Guernsey (GG, see Guernsey pound), Tristan da Cunha (SH-TA)\n * @description Currency symbol: £\n */\n Pound = 'GBP',\n\n /**\n * Russian ruble\n *\n * @description Numeric code: 643\n * @description Alphabetic code: RUB\n * @description Countries and territories: Russia\n * @description Currency symbol: ₽\n */\n Ruble = 'RUB',\n\n /**\n * Malaysian ringgit\n *\n * @description Numeric code: 458\n * @description Alphabetic code: MYR\n * @description Countries and territories: Malaysia\n * @description Currency symbol: RM\n */\n\n SaudiRiyal = 'SAR',\n /**\n *\n * Belarusian ruble\n *\n * @description Numeric code: 933\n * @description Alphabetic code: BYN\n * @description Countries and territories: Belarus\n * @description Currency symbol: Rbl\n */\n\n SerbianDinar = 'RSD',\n /**\n * Georgian lari\n *\n * @description Numeric code: 981\n * @description Alphabetic code: GEL\n * @description Countries and territories: Georgia\n * @description Currency symbol: ₾\n */\n\n /**\n * Singapore dollar\n *\n * @description Numeric code: 702\n * @description Alphabetic code: SGD\n * @description Countries and territories: Singapore\n * @description Currency symbol: S$\n */\n SingaporeDollar = 'SGD',\n /**\n * Azerbaijani manat\n *\n * @description Numeric code: 944\n * @description Alphabetic code: AZN\n * @description Countries and territories: Azerbaijan\n * @description Currency symbol: ₼\n */\n\n SouthAfricanRand = 'ZAR',\n /**\n * Sri Lankan rupee\n *\n * @description Numeric code: 144\n * @description Alphabetic code: LKR\n * @description Countries and territories: Sri Lanka\n * @description Currency symbol: Rs.\n */\n\n SriLankanRupee = 'LKR',\n /**\n * Serbian dinar\n *\n * @description Numeric code: 941\n * @description Alphabetic code: RSD\n * @description Countries and territories: Serbia\n * @description Currency symbol: DIN\n */\n\n /**\n * Swiss franc\n *\n * @description Numeric code: 756\n * @description Alphabetic code: CHF\n * @description Countries and territories: Switzerland, Liechtenstein (LI)\n * @description Currency symbol: ₣\n */\n SwissFranc = 'CHF',\n /**\n * Saudi Riyal\n *\n * @description Numeric code: 682\n * @description Alphabetic code: SAR\n * @description Countries and territories: Saudi Arabia\n * @description Currency symbol: SR\n */\n\n /**\n * Tajikistani somoni\n *\n * @description Numeric code: 972\n * @description Alphabetic code: TJS\n * @description Countries and territories: Tajikistan\n * @description Currency symbol: SM\n */\n TajikistaniSomoni = 'TJS',\n /**\n * Mongolian tugrik\n *\n * @description Numeric code: 496\n * @description Alphabetic code: MNT\n * @description Countries and territories: Mongolia\n * @description Currency symbol: ₮\n */\n\n /**\n * Kazakhstani tenge\n *\n * @description Numeric code: 398\n * @description Alphabetic code: KZT\n * @description Countries and territories: Kazakhstan\n * @description Currency symbol: ₸\n */\n Tenge = 'KZT',\n /**\n * South African rand\n *\n * @description Numeric code: 710\n * @description Alphabetic code: ZAR\n * @description Countries and territories: South Africa\n * @description Currency symbol: R\n */\n\n /**\n * Turkish lira\n *\n * @description Numeric code: 949\n * @description Alphabetic code: TRY\n * @description Countries and territories: Turkey\n * @description Currency symbol: ₺\n */\n TurkishLira = 'TRY',\n /**\n * Iranian rial\n *\n * @description Numeric code: 364\n * @description Alphabetic code: IRR\n * @description Countries and territories: Iran\n * @description Currency symbol: IR\n */\n\n /**\n * Uzbek sum\n *\n * @description Numeric code: 860\n * @description Alphabetic code: UZS\n * @description Countries and territories: Uzbekistan\n * @description Currency symbol: So'm\n */\n UzbekSum = 'UZS',\n /**\n * Indonesian rupiah\n *\n * @description Numeric code: 360\n * @description Alphabetic code: IDR\n * @description Countries and territories: Indonesia\n * @description Currency symbol: Rp\n */\n\n VietnameseDong = 'VND',\n /**\n * Vietnamese dong\n *\n * @description Numeric code: 704\n * @description Alphabetic code: VND\n * @description Countries and territories: Vietnam\n * @description Currency symbol: đ\n */\n\n /**\n * South Korean won\n *\n * @description Numeric code: 410\n * @description Alphabetic code: KRW\n * @description Countries and territories: South Korea\n * @description Currency symbol: ₩\n */\n Won = 'KRW',\n /**\n * New Turkmen manat\n *\n * @description Numeric code: 934\n * @description Alphabetic code: TMT\n * @description Countries and territories: Turkmenistan\n * @description Currency symbol: TMT\n */\n\n /**\n * Japanese yen\n *\n * @description Numeric code: 392\n * @description Alphabetic code: JPY\n * @description Countries and territories: Japan\n * @description Currency symbol: ¥\n */\n Yen = 'JPY',\n /**\n * Chinese yuan\n *\n * @description Numeric code: 156\n * @description Alphabetic code: CNY\n * @description Countries and territories: China\n * @description Currency symbol: CN¥\n */\n YuanRenminbi = 'CNY',\n}\n","/**\n * **Active ISO 4217 numeric currency codes**\n *\n * @description The ISO 4217 classification is used to describe alphabetic and numeric currency codes.\n * @description Numeric code is also called \"number-3\".\n *\n * @link https://en.wikipedia.org/wiki/ISO_4217\n */\n// TODO: change type in v4.0\n// eslint-disable-next-line no-restricted-syntax\nexport enum TuiCurrencyCode {\n /**\n * Armenian dram\n *\n * @description Numeric code: 051\n * @description Alphabetic code: AMD\n * @description Countries and territories: Armenia\n * @description Currency symbol: ֏\n */\n ArmenianDram = '051',\n\n /**\n * Australian dollar\n *\n * @description Numeric code: 036\n * @description Alphabetic code: AUD\n * @description Countries and territories: Australia, Christmas Island (CX), Cocos (Keeling) Islands (CC), Heard Island and McDonald Islands (HM), Kiribati (KI), Nauru (NR), Norfolk Island (NF), Tuvalu (TV)\n * @description Currency symbol: A$\n */\n AustralianDollar = '036',\n\n /**\n * Azerbaijani manat\n *\n * @description Numeric code: 944\n * @description Alphabetic code: AZN\n * @description Countries and territories: Azerbaijan\n * @description Currency symbol: ₼\n */\n AzerbaijaniManat = '944',\n\n /**\n * Thai baht\n *\n * @description Numeric code: 764\n * @description Alphabetic code: THB\n * @description Countries and territories: Thailand\n * @description Currency symbol: ฿\n */\n Baht = '764',\n\n /**\n * \tBahraini Dinar\n *\n * @description Numeric code: 048\n * @description Alphabetic code: BHD\n * @description Countries and territories: Bahrain\n * @description Currency symbol: BD\n */\n BahrainiDinar = '048',\n\n /**\n * Belarusian ruble\n *\n * @description Numeric code: 933\n * @description Alphabetic code: BYN\n * @description Countries and territories: Belarus\n * @description Currency symbol: Rbl\n */\n BelarusianRuble = '933',\n\n /**\n * Brazilian Real\n *\n * @description Numeric code: 986\n * @description Alphabetic code: BRL\n * @description Countries and territories: Brazilia\n * @description Currency symbol: R$\n */\n BrazilianReal = '986',\n\n /**\n * Canadian dollar\n *\n * @description Numeric code: 124\n * @description Alphabetic code: CAD\n * @description Countries and territories: Canada\n * @description Currency symbol: C$\n */\n CanadianDollar = '124',\n\n /**\n * Czech Koruna\n *\n * @description Numeric code: 203\n * @description Alphabetic code: CZK\n * @description Countries and territories: Czech Republic\n * @description Currency symbol: Kč\n */\n CzechKoruna = '203',\n\n /**\n * United Arab Emirates dirham\n *\n * @description Numeric code: 784\n * @description Alphabetic code: AED\n * @description Countries and territories: United Arab Emirates\n * @description Currency symbol: Dh\n */\n Dirham = '784',\n\n /**\n * United States dollar\n *\n * @description Numeric code: 840\n * @description Alphabetic code: USD\n * @description Countries and territories: United States, American Samoa (AS), British Indian Ocean Territory (IO) (also uses GBP), British Virgin Islands (VG), Caribbean Netherlands (BQ – Bonaire, Sint Eustatius and Saba), Ecuador (EC), El Salvador (SV), Guam (GU), Marshall Islands (MH), Federated States of Micronesia (FM), Northern Mariana Islands (MP), Palau (PW), Panama (PA) (as well as Panamanian Balboa), Puerto Rico (PR), Timor-Leste (TL), Turks and Caicos Islands (TC), U.S. Virgin Islands (VI), United States Minor Outlying Islands (UM)\n * @description Currency symbol: $\n */\n Dollar = '840',\n\n /**\n * East Caribbean Dollar\n *\n * @description Numeric code: 951\n * @description Alphabetic code: XCD\n * @description Countries and territories: Anguilla, Antigua and Barbuda, Dominica, Grenada, Montserrat, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the Grenadines\n * @description Currency symbol: EC$\n */\n EastCaribbeanDollar = '951',\n\n /**\n * Euro\n *\n * @description Numeric code: 978\n * @description Alphabetic code: EUR\n * @description Countries and territories: Åland Islands (AX), European Union (EU), Andorra (AD), Austria (AT), Belgium (BE), Cyprus (CY), Estonia (EE), Finland (FI), France (FR), French Southern and Antarctic Lands (TF), Germany (DE), Greece (GR), Guadeloupe (GP), Ireland (IE), Italy (IT), Latvia (LV), Lithuania (LT), Luxembourg (LU), Malta (MT), French Guiana (GF), Martinique (MQ), Mayotte (YT), Monaco (MC), Montenegro (ME), Netherlands (NL), Portugal (PT), Réunion (RE), Saint Barthélemy (BL), Saint Martin (MF), Saint Pierre and Miquelon (PM), San Marino (SM), Slovakia (SK), Slovenia (SI), Spain (ES), Vatican City (VA)\n * @description Currency symbol: €\n */\n Euro = '978',\n\n /**\n * Forint\n *\n * @description Numeric code: 348\n * @description Alphabetic code: HUF\n * @description Countries and territories: Hungray\n * @description Currency symbol: Ft\n */\n Forint = '348',\n\n /**\n * Georgian lari\n *\n * @description Numeric code: 981\n * @description Alphabetic code: GEL\n * @description Countries and territories: Georgia\n * @description Currency symbol: ₾\n */\n GeorgianLari = '981',\n\n /**\n * Hong Kong dollar\n *\n * @description Numeric code: 344\n * @description Alphabetic code: HKD\n * @description Countries and territories: Hong Kong\n * @description Currency symbol: HK$\n */\n HongKongDollar = '344',\n\n /**\n * Ukrainian hryvnia\n *\n * @description Numeric code: 980\n * @description Alphabetic code: UAH\n * @description Countries and territories: Ukraine\n * @description Currency symbol: ₴\n */\n Hryvnia = '980',\n\n /**\n * Indian rupee\n *\n * @description Numeric code: 356\n * @description Alphabetic code: INR\n * @description Countries and territories: India, Bhutan\n * @description Currency symbol: ₹\n */\n IndianRupee = '356',\n\n /**\n * Indonesian rupiah\n *\n * @description Numeric code: 360\n * @description Alphabetic code: IDR\n * @description Countries and territories: Indonesia\n * @description Currency symbol: Rp\n */\n IndonesianRupiah = '360',\n\n /**\n * Iranian rial\n *\n * @description Numeric code: 364\n * @description Alphabetic code: IRR\n * @description Countries and territories: Iran\n * @description Currency symbol: IR\n */\n IranianRial = '364',\n\n /**\n * Israeli new shekel\n *\n * @description Numeric code: 376\n * @description Alphabetic code: ILS\n * @description Countries and territories: Israel\n * @description Currency symbol: ₪\n */\n IsraeliShekel = '376',\n\n /**\n * Kyrgyzstani som\n *\n * @description Numeric code: 417\n * @description Alphabetic code: KGS\n * @description Countries and territories: Kyrgyzstan\n * @description Currency symbol: c\n */\n KyrgyzstanSom = '417',\n\n /**\n * Malaysian ringgit\n *\n * @description Numeric code: 458\n * @description Alphabetic code: MYR\n * @description Countries and territories: Malaysia\n * @description Currency symbol: RM\n */\n MalaysianRinggit = '458',\n\n /**\n * Mexican peso\n *\n * @description Numeric code: 484\n * @description Alphabetic code: MXN\n * @description Countries and territories: Mexico\n * @description Currency symbol: $\n */\n MexicanPeso = '484',\n\n /**\n * Moldovan Leu\n *\n * @description Numeric code: 498\n * @description Alphabetic code: MDL\n * @description Countries and territories: Moldova\n * @description Currency symbol: L\n */\n MoldovanLeu = '498',\n\n /**\n * Mongolian tugrik\n *\n * @description Numeric code: 496\n * @description Alphabetic code: MNT\n * @description Countries and territories: Mongolia\n * @description Currency symbol: ₮\n */\n MongolianTugrik = '496',\n\n /**\n * New Turkmen manat\n *\n * @description Numeric code: 934\n * @description Alphabetic code: TMT\n * @description Countries and territories: Turkmenistan\n * @description Currency symbol: TMT\n */\n NewTurkmenManat = '934',\n\n /**\n * Poland Zloty\n *\n * @description Numeric code: 985\n * @description Alphabetic code: PLN\n * @description Countries and territories: Poland\n * @description Currency symbol: zł\n */\n PolandZloty = '985',\n\n /**\n * Pound sterling\n *\n * @description Numeric code: 826\n * @description Alphabetic code: GBP\n * @description Countries and territories: United Kingdom, Isle of Man (IM, see Manx pound), Jersey (JE, see Jersey pound), Guernsey (GG, see Guernsey pound), Tristan da Cunha (SH-TA)\n * @description Currency symbol: £\n */\n Pound = '826',\n\n /**\n * Tajikistani somoni\n *\n * @description Numeric code: 972\n * @description Alphabetic code: TJS\n * @description Countries and territories: Tajikistan\n * @description Currency symbol: SM\n */\n\n /**\n * Russian ruble\n *\n * @description Numeric code: 643\n * @description Alphabetic code: RUB\n * @description Countries and territories: Russia\n * @description Currency symbol: ₽\n */\n Ruble = '643',\n\n /**\n * Saudi Riyal\n *\n * @description Numeric code: 682\n * @description Alphabetic code: SAR\n * @description Countries and territories: Saudi Arabia\n * @description Currency symbol: SR\n */\n SaudiRiyal = '682',\n\n /**\n * Serbian dinar\n *\n * @description Numeric code: 941\n * @description Alphabetic code: RSD\n * @description Countries and territories: Serbia\n * @description Currency symbol: DIN\n */\n SerbianDinar = '941',\n\n /**\n * Singapore dollar\n *\n * @description Numeric code: 702\n * @description Alphabetic code: SGD\n * @description Countries and territories: Singapore\n * @description Currency symbol: S$\n */\n SingaporeDollar = '702',\n\n /**\n * South African rand\n *\n * @description Numeric code: 710\n * @description Alphabetic code: ZAR\n * @description Countries and territories: South Africa\n * @description Currency symbol: R\n */\n SouthAfricanRand = '710',\n\n /**\n * Sri Lankan rupee\n *\n * @description Numeric code: 144\n * @description Alphabetic code: LKR\n * @description Countries and territories: Sri Lanka\n * @description Currency symbol: Rs.\n */\n SriLankanRupee = '144',\n\n /**\n * Swiss franc\n *\n * @description Numeric code: 756\n * @description Alphabetic code: CHF\n * @description Countries and territories: Switzerland, Liechtenstein (LI)\n * @description Currency symbol: ₣\n */\n SwissFranc = '756',\n\n TajikistaniSomoni = '972',\n\n /**\n * Kazakhstani tenge\n *\n * @description Numeric code: 398\n * @description Alphabetic code: KZT\n * @description Countries and territories: Kazakhstan\n * @description Currency symbol: ₸\n */\n Tenge = '398',\n\n /**\n * Turkish lira\n *\n * @description Numeric code: 949\n * @description Alphabetic code: TRY\n * @description Countries and territories: Turkey\n * @description Currency symbol: ₺\n */\n TurkishLira = '949',\n\n /**\n * Uzbek sum\n *\n * @description Numeric code: 860\n * @description Alphabetic code: UZS\n * @description Countries and territories: Uzbekistan\n * @description Currency symbol: So'm\n */\n UzbekSum = '860',\n\n /**\n * Vietnamese dong\n *\n * @description Numeric code: 704\n * @description Alphabetic code: VND\n * @description Countries and territories: Vietnam\n * @description Currency symbol: đ\n */\n VietnameseDong = '704',\n\n /**\n * South Korean won\n *\n * @description Numeric code: 410\n * @description Alphabetic code: KRW\n * @description Countries and territories: South Korea\n * @description Currency symbol: ₩\n */\n Won = '410',\n\n /**\n * Japanese yen\n *\n * @description Numeric code: 392\n * @description Alphabetic code: JPY\n * @description Countries and territories: Japan\n * @description Currency symbol: ¥\n */\n Yen = '392',\n\n /**\n * Chinese yuan\n *\n * @description Numeric code: 156\n * @description Alphabetic code: CNY\n * @description Countries and territories: China\n * @description Currency symbol: CN¥\n */\n YuanRenminbi = '156',\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["TuiCurrency","TuiCurrencyCode"],"mappings":"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"}
|
|
@@ -65,15 +65,27 @@
|
|
|
65
65
|
case enums.TuiCurrency.AustralianDollar:
|
|
66
66
|
case enums.TuiCurrencyCode.AustralianDollar:
|
|
67
67
|
return 'A$';
|
|
68
|
+
case enums.TuiCurrency.BahrainiDinar:
|
|
69
|
+
case enums.TuiCurrencyCode.BahrainiDinar:
|
|
70
|
+
return 'BD';
|
|
71
|
+
case enums.TuiCurrency.CzechKoruna:
|
|
72
|
+
case enums.TuiCurrencyCode.CzechKoruna:
|
|
73
|
+
return 'Kč';
|
|
68
74
|
case enums.TuiCurrency.HongKongDollar:
|
|
69
75
|
case enums.TuiCurrencyCode.HongKongDollar:
|
|
70
76
|
return 'HK$';
|
|
71
77
|
case enums.TuiCurrency.CanadianDollar:
|
|
72
78
|
case enums.TuiCurrencyCode.CanadianDollar:
|
|
73
79
|
return 'C$';
|
|
80
|
+
case enums.TuiCurrency.EastCaribbeanDollar:
|
|
81
|
+
case enums.TuiCurrencyCode.EastCaribbeanDollar:
|
|
82
|
+
return 'EC$';
|
|
74
83
|
case enums.TuiCurrency.Euro:
|
|
75
84
|
case enums.TuiCurrencyCode.Euro:
|
|
76
85
|
return '€';
|
|
86
|
+
case enums.TuiCurrency.Forint:
|
|
87
|
+
case enums.TuiCurrencyCode.Forint:
|
|
88
|
+
return 'Ft';
|
|
77
89
|
case enums.TuiCurrency.Pound:
|
|
78
90
|
case enums.TuiCurrencyCode.Pound:
|
|
79
91
|
return '£';
|
|
@@ -143,9 +155,15 @@
|
|
|
143
155
|
case enums.TuiCurrency.SaudiRiyal:
|
|
144
156
|
case enums.TuiCurrencyCode.SaudiRiyal:
|
|
145
157
|
return 'SR';
|
|
158
|
+
case enums.TuiCurrency.MoldovanLeu:
|
|
159
|
+
case enums.TuiCurrencyCode.MoldovanLeu:
|
|
160
|
+
return 'L';
|
|
146
161
|
case enums.TuiCurrency.MongolianTugrik:
|
|
147
162
|
case enums.TuiCurrencyCode.MongolianTugrik:
|
|
148
163
|
return '₮';
|
|
164
|
+
case enums.TuiCurrency.PolandZloty:
|
|
165
|
+
case enums.TuiCurrencyCode.PolandZloty:
|
|
166
|
+
return 'zł';
|
|
149
167
|
case enums.TuiCurrency.SouthAfricanRand:
|
|
150
168
|
case enums.TuiCurrencyCode.SouthAfricanRand:
|
|
151
169
|
return 'R';
|
|
@@ -184,13 +202,19 @@
|
|
|
184
202
|
_b$1[enums.TuiCurrency.Ruble] = enums.TuiCurrencyCode.Ruble,
|
|
185
203
|
_b$1[enums.TuiCurrency.Dollar] = enums.TuiCurrencyCode.Dollar,
|
|
186
204
|
_b$1[enums.TuiCurrency.MexicanPeso] = enums.TuiCurrencyCode.MexicanPeso,
|
|
205
|
+
_b$1[enums.TuiCurrency.MoldovanLeu] = enums.TuiCurrencyCode.MoldovanLeu,
|
|
206
|
+
_b$1[enums.TuiCurrency.PolandZloty] = enums.TuiCurrencyCode.PolandZloty,
|
|
187
207
|
_b$1[enums.TuiCurrency.SingaporeDollar] = enums.TuiCurrencyCode.SingaporeDollar,
|
|
188
208
|
_b$1[enums.TuiCurrency.AustralianDollar] = enums.TuiCurrencyCode.AustralianDollar,
|
|
189
209
|
_b$1[enums.TuiCurrency.HongKongDollar] = enums.TuiCurrencyCode.HongKongDollar,
|
|
190
210
|
_b$1[enums.TuiCurrency.CanadianDollar] = enums.TuiCurrencyCode.CanadianDollar,
|
|
211
|
+
_b$1[enums.TuiCurrency.CzechKoruna] = enums.TuiCurrencyCode.CzechKoruna,
|
|
212
|
+
_b$1[enums.TuiCurrency.EastCaribbeanDollar] = enums.TuiCurrencyCode.EastCaribbeanDollar,
|
|
191
213
|
_b$1[enums.TuiCurrency.Euro] = enums.TuiCurrencyCode.Euro,
|
|
214
|
+
_b$1[enums.TuiCurrency.Forint] = enums.TuiCurrencyCode.Forint,
|
|
192
215
|
_b$1[enums.TuiCurrency.Pound] = enums.TuiCurrencyCode.Pound,
|
|
193
216
|
_b$1[enums.TuiCurrency.Baht] = enums.TuiCurrencyCode.Baht,
|
|
217
|
+
_b$1[enums.TuiCurrency.BahrainiDinar] = enums.TuiCurrencyCode.BahrainiDinar,
|
|
194
218
|
_b$1[enums.TuiCurrency.TurkishLira] = enums.TuiCurrencyCode.TurkishLira,
|
|
195
219
|
_b$1[enums.TuiCurrency.YuanRenminbi] = enums.TuiCurrencyCode.YuanRenminbi,
|
|
196
220
|
_b$1[enums.TuiCurrency.Yen] = enums.TuiCurrencyCode.Yen,
|
|
@@ -230,19 +254,23 @@
|
|
|
230
254
|
_b[enums.TuiCurrencyCode.Ruble] = enums.TuiCurrency.Ruble,
|
|
231
255
|
_b[enums.TuiCurrencyCode.Dollar] = enums.TuiCurrency.Dollar,
|
|
232
256
|
_b[enums.TuiCurrencyCode.MexicanPeso] = enums.TuiCurrency.MexicanPeso,
|
|
233
|
-
_b[enums.TuiCurrencyCode.
|
|
257
|
+
_b[enums.TuiCurrencyCode.MoldovanLeu] = enums.TuiCurrency.MoldovanLeu,
|
|
258
|
+
_b[enums.TuiCurrencyCode.PolandZloty] = enums.TuiCurrency.PolandZloty,
|
|
234
259
|
_b[enums.TuiCurrencyCode.SingaporeDollar] = enums.TuiCurrency.SingaporeDollar,
|
|
235
260
|
_b[enums.TuiCurrencyCode.AustralianDollar] = enums.TuiCurrency.AustralianDollar,
|
|
236
261
|
_b[enums.TuiCurrencyCode.HongKongDollar] = enums.TuiCurrency.HongKongDollar,
|
|
237
262
|
_b[enums.TuiCurrencyCode.CanadianDollar] = enums.TuiCurrency.CanadianDollar,
|
|
263
|
+
_b[enums.TuiCurrencyCode.CzechKoruna] = enums.TuiCurrency.CzechKoruna,
|
|
264
|
+
_b[enums.TuiCurrencyCode.EastCaribbeanDollar] = enums.TuiCurrency.EastCaribbeanDollar,
|
|
238
265
|
_b[enums.TuiCurrencyCode.Euro] = enums.TuiCurrency.Euro,
|
|
266
|
+
_b[enums.TuiCurrencyCode.Forint] = enums.TuiCurrency.Forint,
|
|
239
267
|
_b[enums.TuiCurrencyCode.Pound] = enums.TuiCurrency.Pound,
|
|
240
268
|
_b[enums.TuiCurrencyCode.Baht] = enums.TuiCurrency.Baht,
|
|
269
|
+
_b[enums.TuiCurrencyCode.BahrainiDinar] = enums.TuiCurrency.BahrainiDinar,
|
|
241
270
|
_b[enums.TuiCurrencyCode.TurkishLira] = enums.TuiCurrency.TurkishLira,
|
|
242
271
|
_b[enums.TuiCurrencyCode.YuanRenminbi] = enums.TuiCurrency.YuanRenminbi,
|
|
243
272
|
_b[enums.TuiCurrencyCode.Yen] = enums.TuiCurrency.Yen,
|
|
244
273
|
_b[enums.TuiCurrencyCode.IsraeliShekel] = enums.TuiCurrency.IsraeliShekel,
|
|
245
|
-
_b[enums.TuiCurrencyCode.IsraeliShekel] = enums.TuiCurrency.IsraeliShekel,
|
|
246
274
|
_b[enums.TuiCurrencyCode.IndianRupee] = enums.TuiCurrency.IndianRupee,
|
|
247
275
|
_b[enums.TuiCurrencyCode.SwissFranc] = enums.TuiCurrency.SwissFranc,
|
|
248
276
|
_b[enums.TuiCurrencyCode.ArmenianDram] = enums.TuiCurrency.ArmenianDram,
|