myrta-ui 1.1.15 → 1.1.16

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.
@@ -1,4 +1,4 @@
1
- export declare enum CountryISO {
1
+ export declare enum CountriesISO {
2
2
  Afghanistan = "af",
3
3
  Albania = "al",
4
4
  Algeria = "dz",
@@ -1,6 +1,6 @@
1
1
  import { OnInit, EventEmitter } from '@angular/core';
2
2
  import { ParsedPhoneNumber } from 'awesome-phonenumber';
3
- import { CountryISO } from './data/country-iso.enum';
3
+ import { CountriesISO } from './data/country-iso.enum';
4
4
  import { SearchCountryField } from './data/search-country-field.enum';
5
5
  import { PhoneNumberFormatType } from './data/phone-number-format.enum';
6
6
  import { Country, InputValue } from './models/country.model';
@@ -19,8 +19,8 @@ export declare class InputTelComponent implements ControlValueAccessor, OnInit {
19
19
  customClasses: string;
20
20
  size: InputTelSizesTypes;
21
21
  cssClass: string;
22
- preferredCountries: (CountryISO)[];
23
- onlyCountries: (CountryISO)[];
22
+ preferredCountries: (CountriesISO)[];
23
+ onlyCountries: (CountriesISO)[];
24
24
  enableAutoCountrySelect: boolean;
25
25
  enablePlaceholder: boolean;
26
26
  customPlaceholder: string | null;
@@ -31,7 +31,7 @@ export declare class InputTelComponent implements ControlValueAccessor, OnInit {
31
31
  selectFirstCountry: boolean;
32
32
  phoneValidation: boolean;
33
33
  inputId: string;
34
- selectedCountryISO: CountryISO | null;
34
+ selectedCountryISO: CountriesISO | null;
35
35
  separateDialCode: boolean;
36
36
  autoDealCode: boolean;
37
37
  autoCloseDropdown: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myrta-ui",
3
- "version": "1.1.15",
3
+ "version": "1.1.16",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^13.3.0",
6
6
  "@angular/core": "^13.3.0",
package/public-api.d.ts CHANGED
@@ -174,3 +174,5 @@ export * from './lib/helpers/index';
174
174
  export * from './lib/models/index';
175
175
  export * from './lib/components/form/input-tel/input-tel.module';
176
176
  export * from './lib/components/form/input-tel/input-tel.component';
177
+ export * from './lib/components/form/input-tel/data/all-countries';
178
+ export * from './lib/components/form/input-tel/data/country-iso.enum';