@taiga-ui/kit 2.98.0 → 2.99.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/bundles/taiga-ui-kit-components-input-phone-international.umd.js +25 -516
- package/bundles/taiga-ui-kit-components-input-phone-international.umd.js.map +1 -1
- package/bundles/taiga-ui-kit-components-input-phone-international.umd.min.js +1 -1
- package/bundles/taiga-ui-kit-components-input-phone-international.umd.min.js.map +1 -1
- package/bundles/taiga-ui-kit-constants.umd.js +275 -4
- package/bundles/taiga-ui-kit-constants.umd.js.map +1 -1
- package/bundles/taiga-ui-kit-constants.umd.min.js +1 -1
- package/bundles/taiga-ui-kit-constants.umd.min.js.map +1 -1
- package/bundles/taiga-ui-kit-pipes-iso-to-country-code.umd.js +339 -0
- package/bundles/taiga-ui-kit-pipes-iso-to-country-code.umd.js.map +1 -0
- package/bundles/taiga-ui-kit-pipes-iso-to-country-code.umd.min.js +2 -0
- package/bundles/taiga-ui-kit-pipes-iso-to-country-code.umd.min.js.map +1 -0
- package/bundles/taiga-ui-kit-pipes-to-country-code.umd.js +361 -0
- package/bundles/taiga-ui-kit-pipes-to-country-code.umd.js.map +1 -0
- package/bundles/taiga-ui-kit-pipes-to-country-code.umd.min.js +2 -0
- package/bundles/taiga-ui-kit-pipes-to-country-code.umd.min.js.map +1 -0
- package/bundles/taiga-ui-kit-pipes.umd.js +20 -4
- package/bundles/taiga-ui-kit-pipes.umd.js.map +1 -1
- package/bundles/taiga-ui-kit-pipes.umd.min.js +1 -1
- package/bundles/taiga-ui-kit-tokens.umd.js +9 -4
- package/bundles/taiga-ui-kit-tokens.umd.js.map +1 -1
- package/bundles/taiga-ui-kit-tokens.umd.min.js +1 -1
- package/bundles/taiga-ui-kit-tokens.umd.min.js.map +1 -1
- package/bundles/taiga-ui-kit-utils-phone.umd.js +27 -0
- package/bundles/taiga-ui-kit-utils-phone.umd.js.map +1 -0
- package/bundles/taiga-ui-kit-utils-phone.umd.min.js +2 -0
- package/bundles/taiga-ui-kit-utils-phone.umd.min.js.map +1 -0
- package/bundles/taiga-ui-kit-utils.umd.js +12 -4
- package/bundles/taiga-ui-kit-utils.umd.js.map +1 -1
- package/bundles/taiga-ui-kit-utils.umd.min.js +1 -1
- package/components/input-phone-international/index.d.ts +0 -4
- package/components/input-phone-international/input-phone-international.component.d.ts +7 -3
- package/components/input-phone-international/taiga-ui-kit-components-input-phone-international.metadata.json +1 -1
- package/{components/input-phone-international/const → constants}/countries.d.ts +1 -2
- package/constants/index.d.ts +2 -0
- package/constants/mask-after-code-regexp.d.ts +1 -0
- package/constants/taiga-ui-kit-constants.metadata.json +1 -1
- package/esm2015/components/input-phone-international/index.js +1 -4
- package/esm2015/components/input-phone-international/input-phone-international.component.js +24 -30
- package/esm2015/constants/countries.js +264 -0
- package/esm2015/constants/index.js +3 -1
- package/esm2015/constants/mask-after-code-regexp.js +2 -0
- package/esm2015/interfaces/country.js +1 -0
- package/esm2015/interfaces/index.js +1 -1
- package/esm2015/pipes/index.js +3 -1
- package/esm2015/pipes/iso-to-country-code/index.js +3 -0
- package/esm2015/pipes/iso-to-country-code/iso-to-country-code.module.js +13 -0
- package/esm2015/pipes/iso-to-country-code/iso-to-country-code.pipe.js +24 -0
- package/esm2015/pipes/iso-to-country-code/taiga-ui-kit-pipes-iso-to-country-code.js +5 -0
- package/esm2015/pipes/to-country-code/index.js +3 -0
- package/esm2015/pipes/to-country-code/taiga-ui-kit-pipes-to-country-code.js +5 -0
- package/esm2015/pipes/to-country-code/to-country-code.module.js +13 -0
- package/esm2015/pipes/to-country-code/to-country-code.pipe.js +47 -0
- package/esm2015/tokens/countries-masks.js +6 -0
- package/esm2015/tokens/index.js +2 -1
- package/esm2015/utils/index.js +2 -1
- package/esm2015/utils/phone/get-max-allowed-phone-length.js +4 -0
- package/esm2015/utils/phone/index.js +4 -0
- package/esm2015/utils/phone/iso-to-country-code.js +5 -0
- package/esm2015/utils/phone/not-kz-region.js +5 -0
- package/esm2015/utils/phone/taiga-ui-kit-utils-phone.js +5 -0
- package/esm5/components/input-phone-international/index.js +1 -4
- package/esm5/components/input-phone-international/input-phone-international.component.js +24 -31
- package/esm5/constants/countries.js +267 -0
- package/esm5/constants/index.js +3 -1
- package/esm5/constants/mask-after-code-regexp.js +2 -0
- package/esm5/interfaces/country.js +1 -0
- package/esm5/interfaces/index.js +1 -1
- package/esm5/pipes/index.js +3 -1
- package/esm5/pipes/iso-to-country-code/index.js +3 -0
- package/esm5/pipes/iso-to-country-code/iso-to-country-code.module.js +16 -0
- package/esm5/pipes/iso-to-country-code/iso-to-country-code.pipe.js +25 -0
- package/esm5/pipes/iso-to-country-code/taiga-ui-kit-pipes-iso-to-country-code.js +5 -0
- package/esm5/pipes/to-country-code/index.js +3 -0
- package/esm5/pipes/to-country-code/taiga-ui-kit-pipes-to-country-code.js +5 -0
- package/esm5/pipes/to-country-code/to-country-code.module.js +16 -0
- package/esm5/pipes/to-country-code/to-country-code.pipe.js +49 -0
- package/esm5/tokens/countries-masks.js +6 -0
- package/esm5/tokens/index.js +2 -1
- package/esm5/utils/index.js +2 -1
- package/esm5/utils/phone/get-max-allowed-phone-length.js +4 -0
- package/esm5/utils/phone/index.js +4 -0
- package/esm5/utils/phone/iso-to-country-code.js +5 -0
- package/esm5/utils/phone/not-kz-region.js +5 -0
- package/esm5/utils/phone/taiga-ui-kit-utils-phone.js +5 -0
- package/fesm2015/taiga-ui-kit-components-input-phone-international.js +26 -507
- package/fesm2015/taiga-ui-kit-components-input-phone-international.js.map +1 -1
- package/fesm2015/taiga-ui-kit-constants.js +267 -1
- package/fesm2015/taiga-ui-kit-constants.js.map +1 -1
- package/fesm2015/taiga-ui-kit-pipes-iso-to-country-code.js +39 -0
- package/fesm2015/taiga-ui-kit-pipes-iso-to-country-code.js.map +1 -0
- package/fesm2015/taiga-ui-kit-pipes-to-country-code.js +62 -0
- package/fesm2015/taiga-ui-kit-pipes-to-country-code.js.map +1 -0
- package/fesm2015/taiga-ui-kit-pipes.js +2 -0
- package/fesm2015/taiga-ui-kit-pipes.js.map +1 -1
- package/fesm2015/taiga-ui-kit-tokens.js +6 -1
- package/fesm2015/taiga-ui-kit-tokens.js.map +1 -1
- package/fesm2015/taiga-ui-kit-utils-phone.js +21 -0
- package/fesm2015/taiga-ui-kit-utils-phone.js.map +1 -0
- package/fesm2015/taiga-ui-kit-utils.js +1 -0
- package/fesm2015/taiga-ui-kit-utils.js.map +1 -1
- package/fesm5/taiga-ui-kit-components-input-phone-international.js +27 -511
- package/fesm5/taiga-ui-kit-components-input-phone-international.js.map +1 -1
- package/fesm5/taiga-ui-kit-constants.js +270 -2
- package/fesm5/taiga-ui-kit-constants.js.map +1 -1
- package/fesm5/taiga-ui-kit-pipes-iso-to-country-code.js +43 -0
- package/fesm5/taiga-ui-kit-pipes-iso-to-country-code.js.map +1 -0
- package/fesm5/taiga-ui-kit-pipes-to-country-code.js +67 -0
- package/fesm5/taiga-ui-kit-pipes-to-country-code.js.map +1 -0
- package/fesm5/taiga-ui-kit-pipes.js +2 -0
- package/fesm5/taiga-ui-kit-pipes.js.map +1 -1
- package/fesm5/taiga-ui-kit-tokens.js +6 -1
- package/fesm5/taiga-ui-kit-tokens.js.map +1 -1
- package/fesm5/taiga-ui-kit-utils-phone.js +21 -0
- package/fesm5/taiga-ui-kit-utils-phone.js.map +1 -0
- package/fesm5/taiga-ui-kit-utils.js +1 -0
- package/fesm5/taiga-ui-kit-utils.js.map +1 -1
- package/interfaces/index.d.ts +1 -0
- package/interfaces/taiga-ui-kit-interfaces.metadata.json +1 -1
- package/package.json +4 -4
- package/pipes/index.d.ts +2 -0
- package/pipes/iso-to-country-code/index.d.ts +2 -0
- package/pipes/iso-to-country-code/iso-to-country-code.module.d.ts +2 -0
- package/pipes/iso-to-country-code/iso-to-country-code.pipe.d.ts +7 -0
- package/pipes/iso-to-country-code/package.json +13 -0
- package/pipes/iso-to-country-code/taiga-ui-kit-pipes-iso-to-country-code.d.ts +4 -0
- package/pipes/iso-to-country-code/taiga-ui-kit-pipes-iso-to-country-code.metadata.json +1 -0
- package/pipes/taiga-ui-kit-pipes.metadata.json +1 -1
- package/pipes/to-country-code/index.d.ts +2 -0
- package/pipes/to-country-code/package.json +13 -0
- package/pipes/to-country-code/taiga-ui-kit-pipes-to-country-code.d.ts +4 -0
- package/pipes/to-country-code/taiga-ui-kit-pipes-to-country-code.metadata.json +1 -0
- package/pipes/to-country-code/to-country-code.module.d.ts +2 -0
- package/pipes/to-country-code/to-country-code.pipe.d.ts +7 -0
- package/tokens/index.d.ts +1 -0
- package/tokens/taiga-ui-kit-tokens.metadata.json +1 -1
- package/utils/index.d.ts +1 -0
- package/utils/phone/get-max-allowed-phone-length.d.ts +2 -0
- package/utils/phone/index.d.ts +3 -0
- package/utils/phone/iso-to-country-code.d.ts +2 -0
- package/utils/phone/not-kz-region.d.ts +1 -0
- package/utils/phone/package.json +13 -0
- package/utils/phone/taiga-ui-kit-utils-phone.d.ts +4 -0
- package/utils/phone/taiga-ui-kit-utils-phone.metadata.json +1 -0
- package/utils/taiga-ui-kit-utils.metadata.json +1 -1
- package/components/input-phone-international/country-iso-code.d.ts +0 -207
- package/esm2015/components/input-phone-international/const/countries.js +0 -265
- package/esm2015/components/input-phone-international/country-iso-code.js +0 -209
- package/esm2015/components/input-phone-international/interfaces/country.js +0 -1
- package/esm2015/components/input-phone-international/tokens/countries-masks.js +0 -6
- package/esm5/components/input-phone-international/const/countries.js +0 -268
- package/esm5/components/input-phone-international/country-iso-code.js +0 -209
- package/esm5/components/input-phone-international/interfaces/country.js +0 -1
- package/esm5/components/input-phone-international/tokens/countries-masks.js +0 -6
- /package/{components/input-phone-international/interfaces → interfaces}/country.d.ts +0 -0
- /package/{components/input-phone-international/tokens → tokens}/countries-masks.d.ts +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"__symbolic":"module","version":4,"metadata":{"TUI_CALENDAR_DATA_STREAM":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":4,"character":44},"arguments":["Stream that emits calendar data change"]},"TUI_DATE_VALUE_TRANSFORMER":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":3,"character":46},"arguments":["Control value transformer of TuiDay to custom value format for InputDate* components"]},"TUI_DATE_RANGE_VALUE_TRANSFORMER":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":7,"character":52},"arguments":["Control value transformer for InputDateRange component"]},"TUI_DATE_TIME_VALUE_TRANSFORMER":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":11,"character":51},"arguments":["Control value transformer for InputDateTime component"]},"TUI_CANCEL_WORD":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":5,"character":35},"arguments":["i18n 'cancel' word",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":6,"character":13},"arguments":["cancel"]}}]},"TUI_DONE_WORD":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":9,"character":33},"arguments":["i18n 'done' word",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":10,"character":13},"arguments":["done"]}}]},"TUI_MORE_WORD":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":13,"character":33},"arguments":["i18n 'more' word",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":14,"character":13},"arguments":["more"]}}]},"TUI_HIDE_TEXT":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":17,"character":33},"arguments":["i18n 'hide' word",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":18,"character":13},"arguments":["hide"]}}]},"TUI_SHOW_ALL_TEXT":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":21,"character":37},"arguments":["i18n 'show all' word",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":22,"character":13},"arguments":["showAll"]}}]},"TUI_OTHER_DATE_TEXT":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":25,"character":39},"arguments":["i18n 'Other date' text",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":26,"character":13},"arguments":["otherDate"]}}]},"TUI_CHOOSE_DAY_OR_RANGE_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":29,"character":49},"arguments":["choose day or range i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":32,"character":17},"arguments":["mobileCalendarTexts"]}}]},"TUI_FROM_TO_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":36,"character":37},"arguments":["from and to i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":37,"character":13},"arguments":["range"]}}]},"TUI_PLUS_MINUS_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":40,"character":40},"arguments":["plus and minus i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":41,"character":13},"arguments":["countTexts"]}}]},"TUI_TIME_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":44,"character":34},"arguments":["time i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":45,"character":13},"arguments":["time"]}}]},"TUI_DATE_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":48,"character":34},"arguments":["date format i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":51,"character":17},"arguments":["dateTexts"]}}]},"TUI_DIGITAL_INFORMATION_UNITS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":55,"character":49},"arguments":["short bytes, kilobytes and megabytes i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":58,"character":17},"arguments":["digitalInformationUnits"]}}]},"TUI_COPY_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":62,"character":34},"arguments":["copy i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":63,"character":13},"arguments":["copyTexts"]}}]},"TUI_PASSWORD_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":66,"character":38},"arguments":["password i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":67,"character":13},"arguments":["passwordTexts"]}}]},"TUI_CALENDAR_MONTHS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":70,"character":39},"arguments":["short calendar months i18n",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":71,"character":13},"arguments":["shortCalendarMonths"]}}]},"TUI_FILE_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":74,"character":34},"arguments":["file i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":75,"character":13},"arguments":["fileTexts"]}}]},"TUI_PAGINATION_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":78,"character":40},"arguments":["pagination i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":79,"character":13},"arguments":["pagination"]}}]},"TUI_INPUT_FILE_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":82,"character":40},"arguments":["tui-input-file i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":83,"character":13},"arguments":["inputFileTexts"]}}]},"TUI_COUNTRIES":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":88,"character":8},"arguments":["Localized countries names",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":89,"character":13},"arguments":["countries"]}}]},"TuiItemsHandlers":{"__symbolic":"interface"},"TUI_DEFAULT_ITEMS_HANDLERS":{"stringify":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"TUI_DEFAULT_STRINGIFY","line":17,"character":15},"identityMatcher":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"TUI_DEFAULT_IDENTITY_MATCHER","line":18,"character":21},"disabledItemHandler":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"ALWAYS_FALSE_HANDLER","line":19,"character":25}},"TUI_ITEMS_HANDLERS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":22,"character":38},"arguments":["Default items handlers for components",{"__symbolic":"error","message":"Lambda not supported","line":25,"character":17,"module":"./items-handlers"}]},"tuiItemsHandlersProvider":{"__symbolic":"error","message":"Lambda not supported","line":31,"character":21,"module":"./items-handlers"},"TUI_MOBILE_AWARE":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":3,"character":36},"arguments":["A flag enabling mobile-specific behavior for supporting components",{"__symbolic":"error","message":"Lambda not supported","line":6,"character":17,"module":"./mobile-aware"}]},"TUI_MOBILE_CALENDAR":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":2,"character":39},"arguments":["A component for mobile data picker"]},"TUI_MONTH_FORMATTER":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":4,"character":39},"arguments":["A function to get localized formatted month"]},"TUI_TAB_MARGIN":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":2,"character":34},"arguments":["Margin between tabs",{"__symbolic":"error","message":"Lambda not supported","line":3,"character":13,"module":"./tab-margin"}]},"TUI_TAG_STATUS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":4,"character":34},"arguments":["Status for tags inside InputTag component",{"__symbolic":"error","message":"Lambda not supported","line":7,"character":17,"module":"./tag-status"}]},"TUI_VALIDATION_ERRORS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":4,"character":41},"arguments":["Validation errors",{"__symbolic":"error","message":"Lambda not supported","line":7,"character":13,"module":"./validation-errors"}]}},"origins":{"TUI_CALENDAR_DATA_STREAM":"./calendar-data-stream","TUI_DATE_VALUE_TRANSFORMER":"./date-inputs-value-transformers","TUI_DATE_RANGE_VALUE_TRANSFORMER":"./date-inputs-value-transformers","TUI_DATE_TIME_VALUE_TRANSFORMER":"./date-inputs-value-transformers","TUI_CANCEL_WORD":"./i18n","TUI_DONE_WORD":"./i18n","TUI_MORE_WORD":"./i18n","TUI_HIDE_TEXT":"./i18n","TUI_SHOW_ALL_TEXT":"./i18n","TUI_OTHER_DATE_TEXT":"./i18n","TUI_CHOOSE_DAY_OR_RANGE_TEXTS":"./i18n","TUI_FROM_TO_TEXTS":"./i18n","TUI_PLUS_MINUS_TEXTS":"./i18n","TUI_TIME_TEXTS":"./i18n","TUI_DATE_TEXTS":"./i18n","TUI_DIGITAL_INFORMATION_UNITS":"./i18n","TUI_COPY_TEXTS":"./i18n","TUI_PASSWORD_TEXTS":"./i18n","TUI_CALENDAR_MONTHS":"./i18n","TUI_FILE_TEXTS":"./i18n","TUI_PAGINATION_TEXTS":"./i18n","TUI_INPUT_FILE_TEXTS":"./i18n","TUI_COUNTRIES":"./i18n","TuiItemsHandlers":"./items-handlers","TUI_DEFAULT_ITEMS_HANDLERS":"./items-handlers","TUI_ITEMS_HANDLERS":"./items-handlers","tuiItemsHandlersProvider":"./items-handlers","TUI_MOBILE_AWARE":"./mobile-aware","TUI_MOBILE_CALENDAR":"./mobile-calendar","TUI_MONTH_FORMATTER":"./month-formatter","TUI_TAB_MARGIN":"./tab-margin","TUI_TAG_STATUS":"./tag-status","TUI_VALIDATION_ERRORS":"./validation-errors"},"importAs":"@taiga-ui/kit/tokens"}
|
|
1
|
+
{"__symbolic":"module","version":4,"metadata":{"TUI_CALENDAR_DATA_STREAM":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":4,"character":44},"arguments":["Stream that emits calendar data change"]},"TUI_COUNTRIES_MASKS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":5,"character":8},"arguments":["Countries masks",{"__symbolic":"error","message":"Lambda not supported","line":6,"character":17,"module":"./countries-masks"}]},"TUI_DATE_VALUE_TRANSFORMER":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":3,"character":46},"arguments":["Control value transformer of TuiDay to custom value format for InputDate* components"]},"TUI_DATE_RANGE_VALUE_TRANSFORMER":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":7,"character":52},"arguments":["Control value transformer for InputDateRange component"]},"TUI_DATE_TIME_VALUE_TRANSFORMER":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":11,"character":51},"arguments":["Control value transformer for InputDateTime component"]},"TUI_CANCEL_WORD":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":5,"character":35},"arguments":["i18n 'cancel' word",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":6,"character":13},"arguments":["cancel"]}}]},"TUI_DONE_WORD":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":9,"character":33},"arguments":["i18n 'done' word",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":10,"character":13},"arguments":["done"]}}]},"TUI_MORE_WORD":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":13,"character":33},"arguments":["i18n 'more' word",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":14,"character":13},"arguments":["more"]}}]},"TUI_HIDE_TEXT":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":17,"character":33},"arguments":["i18n 'hide' word",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":18,"character":13},"arguments":["hide"]}}]},"TUI_SHOW_ALL_TEXT":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":21,"character":37},"arguments":["i18n 'show all' word",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":22,"character":13},"arguments":["showAll"]}}]},"TUI_OTHER_DATE_TEXT":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":25,"character":39},"arguments":["i18n 'Other date' text",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":26,"character":13},"arguments":["otherDate"]}}]},"TUI_CHOOSE_DAY_OR_RANGE_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":29,"character":49},"arguments":["choose day or range i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":32,"character":17},"arguments":["mobileCalendarTexts"]}}]},"TUI_FROM_TO_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":36,"character":37},"arguments":["from and to i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":37,"character":13},"arguments":["range"]}}]},"TUI_PLUS_MINUS_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":40,"character":40},"arguments":["plus and minus i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":41,"character":13},"arguments":["countTexts"]}}]},"TUI_TIME_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":44,"character":34},"arguments":["time i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":45,"character":13},"arguments":["time"]}}]},"TUI_DATE_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":48,"character":34},"arguments":["date format i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":51,"character":17},"arguments":["dateTexts"]}}]},"TUI_DIGITAL_INFORMATION_UNITS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":55,"character":49},"arguments":["short bytes, kilobytes and megabytes i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":58,"character":17},"arguments":["digitalInformationUnits"]}}]},"TUI_COPY_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":62,"character":34},"arguments":["copy i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":63,"character":13},"arguments":["copyTexts"]}}]},"TUI_PASSWORD_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":66,"character":38},"arguments":["password i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":67,"character":13},"arguments":["passwordTexts"]}}]},"TUI_CALENDAR_MONTHS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":70,"character":39},"arguments":["short calendar months i18n",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":71,"character":13},"arguments":["shortCalendarMonths"]}}]},"TUI_FILE_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":74,"character":34},"arguments":["file i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":75,"character":13},"arguments":["fileTexts"]}}]},"TUI_PAGINATION_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":78,"character":40},"arguments":["pagination i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":79,"character":13},"arguments":["pagination"]}}]},"TUI_INPUT_FILE_TEXTS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":82,"character":40},"arguments":["tui-input-file i18n texts",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":83,"character":13},"arguments":["inputFileTexts"]}}]},"TUI_COUNTRIES":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":88,"character":8},"arguments":["Localized countries names",{"factory":{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/i18n","name":"extractI18n","line":89,"character":13},"arguments":["countries"]}}]},"TuiItemsHandlers":{"__symbolic":"interface"},"TUI_DEFAULT_ITEMS_HANDLERS":{"stringify":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"TUI_DEFAULT_STRINGIFY","line":17,"character":15},"identityMatcher":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"TUI_DEFAULT_IDENTITY_MATCHER","line":18,"character":21},"disabledItemHandler":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"ALWAYS_FALSE_HANDLER","line":19,"character":25}},"TUI_ITEMS_HANDLERS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":22,"character":38},"arguments":["Default items handlers for components",{"__symbolic":"error","message":"Lambda not supported","line":25,"character":17,"module":"./items-handlers"}]},"tuiItemsHandlersProvider":{"__symbolic":"error","message":"Lambda not supported","line":31,"character":21,"module":"./items-handlers"},"TUI_MOBILE_AWARE":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":3,"character":36},"arguments":["A flag enabling mobile-specific behavior for supporting components",{"__symbolic":"error","message":"Lambda not supported","line":6,"character":17,"module":"./mobile-aware"}]},"TUI_MOBILE_CALENDAR":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":2,"character":39},"arguments":["A component for mobile data picker"]},"TUI_MONTH_FORMATTER":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":4,"character":39},"arguments":["A function to get localized formatted month"]},"TUI_TAB_MARGIN":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":2,"character":34},"arguments":["Margin between tabs",{"__symbolic":"error","message":"Lambda not supported","line":3,"character":13,"module":"./tab-margin"}]},"TUI_TAG_STATUS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":4,"character":34},"arguments":["Status for tags inside InputTag component",{"__symbolic":"error","message":"Lambda not supported","line":7,"character":17,"module":"./tag-status"}]},"TUI_VALIDATION_ERRORS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":4,"character":41},"arguments":["Validation errors",{"__symbolic":"error","message":"Lambda not supported","line":7,"character":13,"module":"./validation-errors"}]}},"origins":{"TUI_CALENDAR_DATA_STREAM":"./calendar-data-stream","TUI_COUNTRIES_MASKS":"./countries-masks","TUI_DATE_VALUE_TRANSFORMER":"./date-inputs-value-transformers","TUI_DATE_RANGE_VALUE_TRANSFORMER":"./date-inputs-value-transformers","TUI_DATE_TIME_VALUE_TRANSFORMER":"./date-inputs-value-transformers","TUI_CANCEL_WORD":"./i18n","TUI_DONE_WORD":"./i18n","TUI_MORE_WORD":"./i18n","TUI_HIDE_TEXT":"./i18n","TUI_SHOW_ALL_TEXT":"./i18n","TUI_OTHER_DATE_TEXT":"./i18n","TUI_CHOOSE_DAY_OR_RANGE_TEXTS":"./i18n","TUI_FROM_TO_TEXTS":"./i18n","TUI_PLUS_MINUS_TEXTS":"./i18n","TUI_TIME_TEXTS":"./i18n","TUI_DATE_TEXTS":"./i18n","TUI_DIGITAL_INFORMATION_UNITS":"./i18n","TUI_COPY_TEXTS":"./i18n","TUI_PASSWORD_TEXTS":"./i18n","TUI_CALENDAR_MONTHS":"./i18n","TUI_FILE_TEXTS":"./i18n","TUI_PAGINATION_TEXTS":"./i18n","TUI_INPUT_FILE_TEXTS":"./i18n","TUI_COUNTRIES":"./i18n","TuiItemsHandlers":"./items-handlers","TUI_DEFAULT_ITEMS_HANDLERS":"./items-handlers","TUI_ITEMS_HANDLERS":"./items-handlers","tuiItemsHandlersProvider":"./items-handlers","TUI_MOBILE_AWARE":"./mobile-aware","TUI_MOBILE_CALENDAR":"./mobile-calendar","TUI_MONTH_FORMATTER":"./month-formatter","TUI_TAB_MARGIN":"./tab-margin","TUI_TAG_STATUS":"./tag-status","TUI_VALIDATION_ERRORS":"./validation-errors"},"importAs":"@taiga-ui/kit/tokens"}
|
package/utils/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function tuiNotKzRegion(value: string): boolean;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"main": "../../bundles/taiga-ui-kit-utils-phone.umd.js",
|
|
3
|
+
"module": "../../fesm5/taiga-ui-kit-utils-phone.js",
|
|
4
|
+
"es2015": "../../fesm2015/taiga-ui-kit-utils-phone.js",
|
|
5
|
+
"esm5": "../../esm5/utils/phone/taiga-ui-kit-utils-phone.js",
|
|
6
|
+
"esm2015": "../../esm2015/utils/phone/taiga-ui-kit-utils-phone.js",
|
|
7
|
+
"fesm5": "../../fesm5/taiga-ui-kit-utils-phone.js",
|
|
8
|
+
"fesm2015": "../../fesm2015/taiga-ui-kit-utils-phone.js",
|
|
9
|
+
"typings": "taiga-ui-kit-utils-phone.d.ts",
|
|
10
|
+
"metadata": "taiga-ui-kit-utils-phone.metadata.json",
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"name": "@taiga-ui/kit/utils/phone"
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"__symbolic":"module","version":4,"metadata":{"tuiGetMaxAllowedPhoneLength":{"__symbolic":"function","parameters":["countries","isoCode"],"value":{"__symbolic":"select","expression":{"__symbolic":"call","expression":{"__symbolic":"select","expression":{"__symbolic":"index","expression":{"__symbolic":"reference","name":"countries"},"index":{"__symbolic":"reference","name":"isoCode"}},"member":"replace"},"arguments":[{"__symbolic":"error","message":"Expression form not supported","line":6,"character":38,"module":"./get-max-allowed-phone-length"},""]},"member":"length"}},"tuiIsoToCountryCode":{"__symbolic":"function","parameters":["countriesMasks","isoCode"],"value":{"__symbolic":"call","expression":{"__symbolic":"select","expression":{"__symbolic":"index","expression":{"__symbolic":"reference","name":"countriesMasks"},"index":{"__symbolic":"reference","name":"isoCode"}},"member":"replace"},"arguments":[{"__symbolic":"reference","module":"@taiga-ui/kit/constants","name":"MASK_AFTER_CODE_REGEXP","line":7,"character":43},""]}},"tuiNotKzRegion":{"__symbolic":"function"}},"origins":{"tuiGetMaxAllowedPhoneLength":"./get-max-allowed-phone-length","tuiIsoToCountryCode":"./iso-to-country-code","tuiNotKzRegion":"./not-kz-region"},"importAs":"@taiga-ui/kit/utils/phone"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"__symbolic":"module","version":4,"exports":[{"from":"@taiga-ui/kit/utils/dom"},{"from":"@taiga-ui/kit/utils/files"},{"from":"@taiga-ui/kit/utils/format"},{"from":"@taiga-ui/kit/utils/mask"},{"from":"@taiga-ui/kit/utils/math"},{"from":"@taiga-ui/kit/utils/miscellaneous"}],"metadata":{},"origins":{},"importAs":"@taiga-ui/kit/utils"}
|
|
1
|
+
{"__symbolic":"module","version":4,"exports":[{"from":"@taiga-ui/kit/utils/dom"},{"from":"@taiga-ui/kit/utils/files"},{"from":"@taiga-ui/kit/utils/format"},{"from":"@taiga-ui/kit/utils/mask"},{"from":"@taiga-ui/kit/utils/math"},{"from":"@taiga-ui/kit/utils/miscellaneous"},{"from":"@taiga-ui/kit/utils/phone"}],"metadata":{},"origins":{},"importAs":"@taiga-ui/kit/utils"}
|
|
@@ -1,207 +0,0 @@
|
|
|
1
|
-
/** @deprecated use `import {TuiCountryIsoCode} from '@taiga-ui/i18n'` */
|
|
2
|
-
export declare enum TuiCountryIsoCode {
|
|
3
|
-
AD = "AD",
|
|
4
|
-
AE = "AE",
|
|
5
|
-
AF = "AF",
|
|
6
|
-
AG = "AG",
|
|
7
|
-
AI = "AI",
|
|
8
|
-
AL = "AL",
|
|
9
|
-
AM = "AM",
|
|
10
|
-
AN = "AN",
|
|
11
|
-
AO = "AO",
|
|
12
|
-
AR = "AR",
|
|
13
|
-
AT = "AT",
|
|
14
|
-
AU = "AU",
|
|
15
|
-
AW = "AW",
|
|
16
|
-
AZ = "AZ",
|
|
17
|
-
BA = "BA",
|
|
18
|
-
BB = "BB",
|
|
19
|
-
BD = "BD",
|
|
20
|
-
BE = "BE",
|
|
21
|
-
BF = "BF",
|
|
22
|
-
BG = "BG",
|
|
23
|
-
BH = "BH",
|
|
24
|
-
BI = "BI",
|
|
25
|
-
BJ = "BJ",
|
|
26
|
-
BM = "BM",
|
|
27
|
-
BN = "BN",
|
|
28
|
-
BO = "BO",
|
|
29
|
-
BR = "BR",
|
|
30
|
-
BS = "BS",
|
|
31
|
-
BT = "BT",
|
|
32
|
-
BW = "BW",
|
|
33
|
-
BY = "BY",
|
|
34
|
-
BZ = "BZ",
|
|
35
|
-
CD = "CD",
|
|
36
|
-
CF = "CF",
|
|
37
|
-
CG = "CG",
|
|
38
|
-
CH = "CH",
|
|
39
|
-
CI = "CI",
|
|
40
|
-
CL = "CL",
|
|
41
|
-
CM = "CM",
|
|
42
|
-
CN = "CN",
|
|
43
|
-
CO = "CO",
|
|
44
|
-
CR = "CR",
|
|
45
|
-
CU = "CU",
|
|
46
|
-
CV = "CV",
|
|
47
|
-
CY = "CY",
|
|
48
|
-
CZ = "CZ",
|
|
49
|
-
DE = "DE",
|
|
50
|
-
DJ = "DJ",
|
|
51
|
-
DK = "DK",
|
|
52
|
-
DM = "DM",
|
|
53
|
-
DO = "DO",
|
|
54
|
-
DZ = "DZ",
|
|
55
|
-
EC = "EC",
|
|
56
|
-
EE = "EE",
|
|
57
|
-
EG = "EG",
|
|
58
|
-
ER = "ER",
|
|
59
|
-
ES = "ES",
|
|
60
|
-
ET = "ET",
|
|
61
|
-
FI = "FI",
|
|
62
|
-
FJ = "FJ",
|
|
63
|
-
FK = "FK",
|
|
64
|
-
FM = "FM",
|
|
65
|
-
FR = "FR",
|
|
66
|
-
GA = "GA",
|
|
67
|
-
GB = "GB",
|
|
68
|
-
GD = "GD",
|
|
69
|
-
GE = "GE",
|
|
70
|
-
GH = "GH",
|
|
71
|
-
GI = "GI",
|
|
72
|
-
GL = "GL",
|
|
73
|
-
GM = "GM",
|
|
74
|
-
GN = "GN",
|
|
75
|
-
GQ = "GQ",
|
|
76
|
-
GR = "GR",
|
|
77
|
-
GT = "GT",
|
|
78
|
-
GW = "GW",
|
|
79
|
-
GY = "GY",
|
|
80
|
-
HK = "HK",
|
|
81
|
-
HN = "HN",
|
|
82
|
-
HR = "HR",
|
|
83
|
-
HT = "HT",
|
|
84
|
-
HU = "HU",
|
|
85
|
-
ID = "ID",
|
|
86
|
-
IE = "IE",
|
|
87
|
-
IL = "IL",
|
|
88
|
-
IN = "IN",
|
|
89
|
-
IQ = "IQ",
|
|
90
|
-
IR = "IR",
|
|
91
|
-
IS = "IS",
|
|
92
|
-
IT = "IT",
|
|
93
|
-
JM = "JM",
|
|
94
|
-
JO = "JO",
|
|
95
|
-
JP = "JP",
|
|
96
|
-
KE = "KE",
|
|
97
|
-
KG = "KG",
|
|
98
|
-
KH = "KH",
|
|
99
|
-
KM = "KM",
|
|
100
|
-
KN = "KN",
|
|
101
|
-
KP = "KP",
|
|
102
|
-
KR = "KR",
|
|
103
|
-
KW = "KW",
|
|
104
|
-
KY = "KY",
|
|
105
|
-
KZ = "KZ",
|
|
106
|
-
LA = "LA",
|
|
107
|
-
LB = "LB",
|
|
108
|
-
LC = "LC",
|
|
109
|
-
LI = "LI",
|
|
110
|
-
LK = "LK",
|
|
111
|
-
LR = "LR",
|
|
112
|
-
LS = "LS",
|
|
113
|
-
LT = "LT",
|
|
114
|
-
LU = "LU",
|
|
115
|
-
LV = "LV",
|
|
116
|
-
LY = "LY",
|
|
117
|
-
MA = "MA",
|
|
118
|
-
MC = "MC",
|
|
119
|
-
MD = "MD",
|
|
120
|
-
ME = "ME",
|
|
121
|
-
MG = "MG",
|
|
122
|
-
MK = "MK",
|
|
123
|
-
ML = "ML",
|
|
124
|
-
MM = "MM",
|
|
125
|
-
MN = "MN",
|
|
126
|
-
MO = "MO",
|
|
127
|
-
MR = "MR",
|
|
128
|
-
MS = "MS",
|
|
129
|
-
MT = "MT",
|
|
130
|
-
MU = "MU",
|
|
131
|
-
MV = "MV",
|
|
132
|
-
MW = "MW",
|
|
133
|
-
MX = "MX",
|
|
134
|
-
MY = "MY",
|
|
135
|
-
MZ = "MZ",
|
|
136
|
-
NA = "NA",
|
|
137
|
-
NE = "NE",
|
|
138
|
-
NG = "NG",
|
|
139
|
-
NI = "NI",
|
|
140
|
-
NL = "NL",
|
|
141
|
-
NO = "NO",
|
|
142
|
-
NP = "NP",
|
|
143
|
-
NZ = "NZ",
|
|
144
|
-
OM = "OM",
|
|
145
|
-
PA = "PA",
|
|
146
|
-
PE = "PE",
|
|
147
|
-
PF = "PF",
|
|
148
|
-
PG = "PG",
|
|
149
|
-
PH = "PH",
|
|
150
|
-
PK = "PK",
|
|
151
|
-
PL = "PL",
|
|
152
|
-
PT = "PT",
|
|
153
|
-
PW = "PW",
|
|
154
|
-
PY = "PY",
|
|
155
|
-
QA = "QA",
|
|
156
|
-
RO = "RO",
|
|
157
|
-
RS = "RS",
|
|
158
|
-
RU = "RU",
|
|
159
|
-
RW = "RW",
|
|
160
|
-
SA = "SA",
|
|
161
|
-
SB = "SB",
|
|
162
|
-
SC = "SC",
|
|
163
|
-
SD = "SD",
|
|
164
|
-
SE = "SE",
|
|
165
|
-
SG = "SG",
|
|
166
|
-
SH = "SH",
|
|
167
|
-
SI = "SI",
|
|
168
|
-
SK = "SK",
|
|
169
|
-
SL = "SL",
|
|
170
|
-
SM = "SM",
|
|
171
|
-
SN = "SN",
|
|
172
|
-
SO = "SO",
|
|
173
|
-
SR = "SR",
|
|
174
|
-
ST = "ST",
|
|
175
|
-
SV = "SV",
|
|
176
|
-
SY = "SY",
|
|
177
|
-
SZ = "SZ",
|
|
178
|
-
TC = "TC",
|
|
179
|
-
TD = "TD",
|
|
180
|
-
TG = "TG",
|
|
181
|
-
TH = "TH",
|
|
182
|
-
TJ = "TJ",
|
|
183
|
-
TL = "TL",
|
|
184
|
-
TM = "TM",
|
|
185
|
-
TN = "TN",
|
|
186
|
-
TO = "TO",
|
|
187
|
-
TR = "TR",
|
|
188
|
-
TT = "TT",
|
|
189
|
-
TW = "TW",
|
|
190
|
-
TZ = "TZ",
|
|
191
|
-
UA = "UA",
|
|
192
|
-
UG = "UG",
|
|
193
|
-
UY = "UY",
|
|
194
|
-
UZ = "UZ",
|
|
195
|
-
VC = "VC",
|
|
196
|
-
VE = "VE",
|
|
197
|
-
VG = "VG",
|
|
198
|
-
VN = "VN",
|
|
199
|
-
VU = "VU",
|
|
200
|
-
WS = "WS",
|
|
201
|
-
YE = "YE",
|
|
202
|
-
ZA = "ZA",
|
|
203
|
-
ZM = "ZM",
|
|
204
|
-
ZW = "ZW",
|
|
205
|
-
US = "US",
|
|
206
|
-
CA = "CA"
|
|
207
|
-
}
|