@veeqo/ui 13.0.0 → 13.1.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/dist/components/PhoneInput/PhoneInput.cjs +50 -0
- package/dist/components/PhoneInput/PhoneInput.cjs.map +1 -0
- package/dist/components/PhoneInput/PhoneInput.d.ts +3 -0
- package/dist/components/PhoneInput/PhoneInput.js +44 -0
- package/dist/components/PhoneInput/PhoneInput.js.map +1 -0
- package/dist/components/PhoneInput/PhoneInput.module.scss.cjs +9 -0
- package/dist/components/PhoneInput/PhoneInput.module.scss.cjs.map +1 -0
- package/dist/components/PhoneInput/PhoneInput.module.scss.js +7 -0
- package/dist/components/PhoneInput/PhoneInput.module.scss.js.map +1 -0
- package/dist/components/PhoneInput/components/SelectedCountry.cjs +18 -0
- package/dist/components/PhoneInput/components/SelectedCountry.cjs.map +1 -0
- package/dist/components/PhoneInput/components/SelectedCountry.d.ts +5 -0
- package/dist/components/PhoneInput/components/SelectedCountry.js +12 -0
- package/dist/components/PhoneInput/components/SelectedCountry.js.map +1 -0
- package/dist/components/PhoneInput/constants.cjs +1243 -0
- package/dist/components/PhoneInput/constants.cjs.map +1 -0
- package/dist/components/PhoneInput/constants.d.ts +4 -0
- package/dist/components/PhoneInput/constants.js +1239 -0
- package/dist/components/PhoneInput/constants.js.map +1 -0
- package/dist/components/PhoneInput/hooks/useApplyCountryCode.cjs +48 -0
- package/dist/components/PhoneInput/hooks/useApplyCountryCode.cjs.map +1 -0
- package/dist/components/PhoneInput/hooks/useApplyCountryCode.d.ts +11 -0
- package/dist/components/PhoneInput/hooks/useApplyCountryCode.js +46 -0
- package/dist/components/PhoneInput/hooks/useApplyCountryCode.js.map +1 -0
- package/dist/components/PhoneInput/index.cjs +11 -0
- package/dist/components/PhoneInput/index.cjs.map +1 -0
- package/dist/components/PhoneInput/index.d.ts +308 -0
- package/dist/components/PhoneInput/index.js +9 -0
- package/dist/components/PhoneInput/index.js.map +1 -0
- package/dist/components/PhoneInput/types.d.ts +25 -0
- package/dist/components/PhoneInput/utils/utils.cjs +69 -0
- package/dist/components/PhoneInput/utils/utils.cjs.map +1 -0
- package/dist/components/PhoneInput/utils/utils.d.ts +14 -0
- package/dist/components/PhoneInput/utils/utils.js +60 -0
- package/dist/components/PhoneInput/utils/utils.js.map +1 -0
- package/dist/components/SelectDropdown/SelectDropdown.cjs +2 -3
- package/dist/components/SelectDropdown/SelectDropdown.cjs.map +1 -1
- package/dist/components/SelectDropdown/SelectDropdown.d.ts +1 -1
- package/dist/components/SelectDropdown/SelectDropdown.js +2 -3
- package/dist/components/SelectDropdown/SelectDropdown.js.map +1 -1
- package/dist/components/SelectDropdown/components/ItemContent/ItemContent.cjs +2 -2
- package/dist/components/SelectDropdown/components/ItemContent/ItemContent.cjs.map +1 -1
- package/dist/components/SelectDropdown/components/ItemContent/ItemContent.d.ts +1 -1
- package/dist/components/SelectDropdown/components/ItemContent/ItemContent.js +2 -2
- package/dist/components/SelectDropdown/components/ItemContent/ItemContent.js.map +1 -1
- package/dist/components/SelectDropdown/components/ItemContent/SelectionType.cjs +5 -3
- package/dist/components/SelectDropdown/components/ItemContent/SelectionType.cjs.map +1 -1
- package/dist/components/SelectDropdown/components/ItemContent/SelectionType.d.ts +2 -1
- package/dist/components/SelectDropdown/components/ItemContent/SelectionType.js +5 -3
- package/dist/components/SelectDropdown/components/ItemContent/SelectionType.js.map +1 -1
- package/dist/components/SelectDropdown/components/ListItem/ListItem.cjs +2 -2
- package/dist/components/SelectDropdown/components/ListItem/ListItem.cjs.map +1 -1
- package/dist/components/SelectDropdown/components/ListItem/ListItem.d.ts +1 -1
- package/dist/components/SelectDropdown/components/ListItem/ListItem.js +2 -2
- package/dist/components/SelectDropdown/components/ListItem/ListItem.js.map +1 -1
- package/dist/components/SelectDropdown/components/types.d.ts +1 -0
- package/dist/components/SelectDropdown/types.d.ts +2 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.js","sources":["../../../src/components/PhoneInput/constants.ts"],"sourcesContent":["import { InternationalCodes } from './types';\n\nexport const SVG_BASE_URL = 'https://static.veeqo.com/static_content/country_flags/';\nexport const DEBOUNCE_TIME = 250;\n\n// codes gathered from https://en.wikipedia.org/wiki/List_of_country_calling_codes\n// if length == 0, means country does not have a max length\nexport const InternationalCodesMap: InternationalCodes = {\n '+1': {\n countryCode: 'US',\n country: 'United States',\n countryFlag: 'United-States-of-America',\n length: 10,\n },\n '+44': {\n countryCode: 'UK',\n country: 'United Kingdom',\n countryFlag: 'United-Kingdom',\n length: 10,\n },\n '+93': {\n countryCode: 'AF',\n country: 'Afghanistan',\n countryFlag: 'Afghanistan',\n length: 0,\n },\n '+355': {\n countryCode: 'AL',\n country: 'Albania',\n countryFlag: 'Albania',\n length: 0,\n },\n '+213': {\n countryCode: 'DZ',\n country: 'Algeria',\n countryFlag: 'Algeria',\n length: 0,\n },\n '+376': {\n countryCode: 'AD',\n country: 'Andorra',\n countryFlag: 'Andorra',\n length: 0,\n },\n '+244': {\n countryCode: 'AO',\n country: 'Angola',\n countryFlag: 'Angola',\n length: 0,\n },\n '+54': {\n countryCode: 'AR',\n country: 'Argentina',\n countryFlag: 'Argentina',\n length: 10,\n },\n '+374': {\n countryCode: 'AM',\n country: 'Armenia',\n countryFlag: 'Armenia',\n length: 8,\n },\n '+297': {\n countryCode: 'AW',\n country: 'Aruba',\n countryFlag: 'Aruba',\n length: 0,\n },\n '+61': {\n countryCode: 'AU',\n country: 'Australia',\n countryFlag: 'Australia',\n length: 9,\n },\n '+43': {\n countryCode: 'AT',\n country: 'Austria',\n countryFlag: 'Austria',\n length: 0,\n },\n '+994': {\n countryCode: 'AZ',\n country: 'Azerbaijan',\n countryFlag: 'Azerbaijan',\n length: 9,\n },\n '+973': {\n countryCode: 'BH',\n country: 'Bahrain',\n countryFlag: 'Bahrain',\n length: 0,\n },\n '+880': {\n countryCode: 'BD',\n country: 'Bangladesh',\n countryFlag: 'Bangladesh',\n length: 0,\n },\n '+375': {\n countryCode: 'BY',\n country: 'Belarus',\n countryFlag: 'Belarus',\n length: 9,\n },\n '+32': {\n countryCode: 'BE',\n country: 'Belgium',\n countryFlag: 'Belgium',\n length: 9,\n },\n '+501': {\n countryCode: 'BZ',\n country: 'Belize',\n countryFlag: 'Belize',\n length: 0,\n },\n '+229': {\n countryCode: 'BJ',\n country: 'Benin',\n countryFlag: 'Benin',\n length: 0,\n },\n '+975': {\n countryCode: 'BT',\n country: 'Bhutan',\n countryFlag: 'Bhutan',\n length: 0,\n },\n '+591': {\n countryCode: 'BO',\n country: 'Bolivia',\n countryFlag: 'Bolivia',\n length: 0,\n },\n '+599': {\n countryCode: 'BQ',\n country: 'Bonaire',\n countryFlag: 'Bonaire',\n length: 0,\n },\n '+387': {\n countryCode: 'BA',\n country: 'Bosnia and Herzegovina',\n countryFlag: 'Bosnia-and-Herzegovina',\n length: 0,\n },\n '+267': {\n countryCode: 'BW',\n country: 'Botswana',\n countryFlag: 'Botswana',\n length: 0,\n },\n '+55': {\n countryCode: 'BR',\n country: 'Brazil',\n countryFlag: 'Brazil',\n length: 11,\n },\n '+246': {\n countryCode: 'IO',\n country: 'British Indian Ocean Territory',\n countryFlag: 'British-Indian-Ocean-Territory',\n length: 0,\n },\n '+673': {\n countryCode: 'BN',\n country: 'Brunei Darussalam',\n countryFlag: 'Brunei',\n length: 0,\n },\n '+359': {\n countryCode: 'BG',\n country: 'Bulgaria',\n countryFlag: 'Bulgaria',\n length: 0,\n },\n '+226': {\n countryCode: 'BF',\n country: 'Burkina Faso',\n countryFlag: 'Burkina-Faso',\n length: 0,\n },\n '+257': {\n countryCode: 'BI',\n country: 'Burundi',\n countryFlag: 'Burundi',\n length: 0,\n },\n '+238': {\n countryCode: 'CV',\n country: 'Cabo Verde',\n countryFlag: 'Cape-Verde',\n length: 0,\n },\n '+855': {\n countryCode: 'KH',\n country: 'Cambodia',\n countryFlag: 'Cambodia',\n length: 0,\n },\n '+237': {\n countryCode: 'CM',\n country: 'Cameroon',\n countryFlag: 'Cameroon',\n length: 0,\n },\n '+236': {\n countryCode: 'CF',\n country: 'Central African Republic',\n countryFlag: 'Central-African-Republic',\n length: 0,\n },\n '+235': {\n countryCode: 'TD',\n country: 'Chad',\n countryFlag: 'Chad',\n length: 0,\n },\n '+56': {\n countryCode: 'CL',\n country: 'Chile',\n countryFlag: 'Chile',\n length: 0,\n },\n '+86': {\n countryCode: 'CN',\n country: 'China',\n countryFlag: 'China',\n length: 11,\n },\n '+57': {\n countryCode: 'CO',\n country: 'Colombia',\n countryFlag: 'Colombia',\n length: 10,\n },\n '+269': {\n countryCode: 'KM',\n country: 'Comoros',\n countryFlag: 'Comoros',\n length: 0,\n },\n '+242': {\n countryCode: 'CG',\n country: 'Congo',\n countryFlag: 'Republic-of-the-Congo',\n length: 0,\n },\n '+682': {\n countryCode: 'CK',\n country: 'Cook Islands',\n countryFlag: 'Cook-Islands',\n length: 0,\n },\n '+506': {\n countryCode: 'CR',\n country: 'Costa Rica',\n countryFlag: 'Costa-Rica',\n length: 8,\n },\n '+385': {\n countryCode: 'HR',\n country: 'Croatia',\n countryFlag: 'Croatia',\n length: 0,\n },\n '+53': {\n countryCode: 'CU',\n country: 'Cuba',\n countryFlag: 'Cuba',\n length: 0,\n },\n '+357': {\n countryCode: 'CY',\n country: 'Cyprus',\n countryFlag: 'Cyprus',\n length: 8,\n },\n '+420': {\n countryCode: 'CZ',\n country: 'Czechia',\n countryFlag: 'Czech-Republic',\n length: 9,\n },\n '+225': {\n countryCode: 'CI',\n country: \"Côte d'Ivoire\",\n countryFlag: 'Ivory-Coast',\n length: 10,\n },\n '+243': {\n countryCode: 'CD',\n country: 'Democratic Republic of the Congo',\n countryFlag: 'Democratic-Republic-of-Congo',\n length: 0,\n },\n '+45': {\n countryCode: 'DK',\n country: 'Denmark',\n countryFlag: 'Denmark',\n length: 8,\n },\n '+253': {\n countryCode: 'DJ',\n country: 'Djibouti',\n countryFlag: 'Djibouti',\n length: 8,\n },\n '+593': {\n countryCode: 'EC',\n country: 'Ecuador',\n countryFlag: 'Ecuador',\n length: 0,\n },\n '+20': {\n countryCode: 'EG',\n country: 'Egypt',\n countryFlag: 'Egypt',\n length: 0,\n },\n '+503': {\n countryCode: 'SV',\n country: 'El Salvador',\n countryFlag: 'El-Salvador',\n length: 8,\n },\n '+240': {\n countryCode: 'GQ',\n country: 'Equatorial Guinea',\n countryFlag: 'Equatorial-Guinea',\n length: 0,\n },\n '+291': {\n countryCode: 'ER',\n country: 'Eritrea',\n countryFlag: 'Eritrea',\n length: 0,\n },\n '+372': {\n countryCode: 'EE',\n country: 'Estonia',\n countryFlag: 'Estonia',\n length: 10,\n },\n '+268': {\n countryCode: 'SZ',\n country: 'Eswatini',\n countryFlag: 'Swaziland',\n length: 0,\n },\n '+251': {\n countryCode: 'ET',\n country: 'Ethiopia',\n countryFlag: 'Ethiopia',\n length: 9,\n },\n '+500': {\n countryCode: 'FK',\n country: 'Falkland Islands',\n countryFlag: 'Falkland-Islands',\n length: 0,\n },\n '+298': {\n countryCode: 'FO',\n country: 'Faroe Islands',\n countryFlag: 'Faroe-Islands',\n length: 6,\n },\n '+679': {\n countryCode: 'FJ',\n country: 'Fiji',\n countryFlag: 'Fiji',\n length: 0,\n },\n '+358': {\n countryCode: 'FI',\n country: 'Finland',\n countryFlag: 'Finland',\n length: 9,\n },\n '+33': {\n countryCode: 'FR',\n country: 'France',\n countryFlag: 'France',\n length: 9,\n },\n '+594': {\n countryCode: 'GF',\n country: 'French Guiana',\n countryFlag: 'France',\n length: 9,\n },\n '+689': {\n countryCode: 'PF',\n country: 'French Polynesia',\n countryFlag: 'French-Polynesia',\n length: 8,\n },\n '+241': {\n countryCode: 'GA',\n country: 'Gabon',\n countryFlag: 'Gabon',\n length: 0,\n },\n '+220': {\n countryCode: 'GM',\n country: 'Gambia',\n countryFlag: 'Gambia',\n length: 0,\n },\n '+995': {\n countryCode: 'GE',\n country: 'Georgia',\n countryFlag: 'Georgia',\n length: 0,\n },\n '+49': {\n countryCode: 'DE',\n country: 'Germany',\n countryFlag: 'Germany',\n length: 11,\n },\n '+233': {\n countryCode: 'GH',\n country: 'Ghana',\n countryFlag: 'Ghana',\n length: 0,\n },\n '+350': {\n countryCode: 'GI',\n country: 'Gibraltar',\n countryFlag: 'Gibraltar',\n length: 0,\n },\n '+30': {\n countryCode: 'GR',\n country: 'Greece',\n countryFlag: 'Greece',\n length: 0,\n },\n '+299': {\n countryCode: 'GL',\n country: 'Greenland',\n countryFlag: 'Greenland',\n length: 6,\n },\n '+590': {\n countryCode: 'GP',\n country: 'Guadeloupe',\n countryFlag: 'France',\n length: 9,\n },\n '+502': {\n countryCode: 'GT',\n country: 'Guatemala',\n countryFlag: 'Guatemala',\n length: 8,\n },\n '+224': {\n countryCode: 'GN',\n country: 'Guinea',\n countryFlag: 'Guinea',\n length: 0,\n },\n '+245': {\n countryCode: 'GW',\n country: 'Guinea-Bissau',\n countryFlag: 'Guinea-Bissau',\n length: 0,\n },\n '+592': {\n countryCode: 'GY',\n country: 'Guyana',\n countryFlag: 'Guyana',\n length: 0,\n },\n '+509': {\n countryCode: 'HT',\n country: 'Haiti',\n countryFlag: 'Haiti',\n length: 8,\n },\n '+379': {\n countryCode: 'VA',\n country: 'Holy See',\n countryFlag: 'Vatican-City',\n length: 0,\n },\n '+504': {\n countryCode: 'HN',\n country: 'Honduras',\n countryFlag: 'Honduras',\n length: 8,\n },\n '+852': {\n countryCode: 'HK',\n country: 'Hong Kong',\n countryFlag: 'Hong-Kong',\n length: 8,\n },\n '+36': {\n countryCode: 'HU',\n country: 'Hungary',\n countryFlag: 'Hungary',\n length: 0,\n },\n '+354': {\n countryCode: 'IS',\n country: 'Iceland',\n countryFlag: 'Iceland',\n length: 7,\n },\n '+91': {\n countryCode: 'IN',\n country: 'India',\n countryFlag: 'India',\n length: 10,\n },\n '+62': {\n countryCode: 'ID',\n country: 'Indonesia',\n countryFlag: 'Indonesia',\n length: 0,\n },\n '+98': {\n countryCode: 'IR',\n country: 'Iran',\n countryFlag: 'Iran',\n length: 10,\n },\n '+964': {\n countryCode: 'IQ',\n country: 'Iraq',\n countryFlag: 'Iraq',\n length: 0,\n },\n '+353': {\n countryCode: 'IE',\n country: 'Ireland',\n countryFlag: 'Ireland',\n length: 9,\n },\n '+972': {\n countryCode: 'IL',\n country: 'Israel',\n countryFlag: 'Israel',\n length: 9,\n },\n '+39': {\n countryCode: 'IT',\n country: 'Italy',\n countryFlag: 'Italy',\n length: 10,\n },\n '+81': {\n countryCode: 'JP',\n country: 'Japan',\n countryFlag: 'Japan',\n length: 10,\n },\n '+962': {\n countryCode: 'JO',\n country: 'Jordan',\n countryFlag: 'Jordan',\n length: 0,\n },\n '+997': {\n countryCode: 'KZ',\n country: 'Kazakhstan',\n countryFlag: 'Kazakhstan',\n length: 10,\n },\n '+254': {\n countryCode: 'KE',\n country: 'Kenya',\n countryFlag: 'Kenya',\n length: 0,\n },\n '+686': {\n countryCode: 'KI',\n country: 'Kiribati',\n countryFlag: 'Kiribati',\n length: 0,\n },\n '+965': {\n countryCode: 'KW',\n country: 'Kuwait',\n countryFlag: 'Kuwait',\n length: 0,\n },\n '+996': {\n countryCode: 'KG',\n country: 'Kyrgyzstan',\n countryFlag: 'Kyrgyzstan',\n length: 9,\n },\n '+856': {\n countryCode: 'LA',\n country: 'Lao',\n countryFlag: 'Laos',\n length: 0,\n },\n '+371': {\n countryCode: 'LV',\n country: 'Latvia',\n countryFlag: 'Latvia',\n length: 8,\n },\n '+961': {\n countryCode: 'LB',\n country: 'Lebanon',\n countryFlag: 'Lebanon',\n length: 0,\n },\n '+266': {\n countryCode: 'LS',\n country: 'Lesotho',\n countryFlag: 'Lesotho',\n length: 0,\n },\n '+231': {\n countryCode: 'LR',\n country: 'Liberia',\n countryFlag: 'Liberia',\n length: 0,\n },\n '+218': {\n countryCode: 'LY',\n country: 'Libya',\n countryFlag: 'Libya',\n length: 0,\n },\n '+423': {\n countryCode: 'LI',\n country: 'Liechtenstein',\n countryFlag: 'Liechtenstein',\n length: 0,\n },\n '+370': {\n countryCode: 'LT',\n country: 'Lithuania',\n countryFlag: 'Lithuania',\n length: 0,\n },\n '+352': {\n countryCode: 'LU',\n country: 'Luxembourg',\n countryFlag: 'Luxembourg',\n length: 0,\n },\n '+853': {\n countryCode: 'MO',\n country: 'Macao',\n countryFlag: 'Macao',\n length: 0,\n },\n '+389': {\n countryCode: 'MK',\n country: 'Macedonia',\n countryFlag: 'Republic-of-Macedonia',\n length: 0,\n },\n '+261': {\n countryCode: 'MG',\n country: 'Madagascar',\n countryFlag: 'Madagascar',\n length: 0,\n },\n '+265': {\n countryCode: 'MW',\n country: 'Malawi',\n countryFlag: 'Malawi',\n length: 0,\n },\n '+60': {\n countryCode: 'MY',\n country: 'Malaysia',\n countryFlag: 'Malaysia',\n length: 10,\n },\n '+960': {\n countryCode: 'MV',\n country: 'Maldives',\n countryFlag: 'Maldives',\n length: 0,\n },\n '+223': {\n countryCode: 'ML',\n country: 'Mali',\n countryFlag: 'Mali',\n length: 0,\n },\n '+356': {\n countryCode: 'MT',\n country: 'Malta',\n countryFlag: 'Malta',\n length: 0,\n },\n '+692': {\n countryCode: 'MH',\n country: 'Marshall Islands',\n countryFlag: 'Marshall-Island',\n length: 0,\n },\n '+596': {\n countryCode: 'MQ',\n country: 'Martinique',\n countryFlag: 'Martinique',\n length: 9,\n },\n '+222': {\n countryCode: 'MR',\n country: 'Mauritania',\n countryFlag: 'Mauritania',\n length: 0,\n },\n '+230': {\n countryCode: 'MU',\n country: 'Mauritius',\n countryFlag: 'Mauritius',\n length: 0,\n },\n '+52': {\n countryCode: 'MX',\n country: 'Mexico',\n countryFlag: 'Mexico',\n length: 10,\n },\n '+691': {\n countryCode: 'FM',\n country: 'Micronesia',\n countryFlag: 'Micronesia',\n length: 0,\n },\n '+373': {\n countryCode: 'MD',\n country: 'Moldova',\n countryFlag: 'Moldova',\n length: 8,\n },\n '+377': {\n countryCode: 'MC',\n country: 'Monaco',\n countryFlag: 'Monaco',\n length: 0,\n },\n '+976': {\n countryCode: 'MN',\n country: 'Mongolia',\n countryFlag: 'Mongolia',\n length: 0,\n },\n '+382': {\n countryCode: 'ME',\n country: 'Montenegro',\n countryFlag: 'Montenegro',\n length: 0,\n },\n '+212': {\n countryCode: 'MA',\n country: 'Morocco',\n countryFlag: 'Morocco',\n length: 0,\n },\n '+258': {\n countryCode: 'MZ',\n country: 'Mozambique',\n countryFlag: 'Mozambique',\n length: 0,\n },\n '+95': {\n countryCode: 'MM',\n country: 'Myanmar',\n countryFlag: 'Myanmar',\n length: 0,\n },\n '+264': {\n countryCode: 'NA',\n country: 'Namibia',\n countryFlag: 'Namibia',\n length: 0,\n },\n '+674': {\n countryCode: 'NR',\n country: 'Nauru',\n countryFlag: 'Nauru',\n length: 0,\n },\n '+977': {\n countryCode: 'NP',\n country: 'Nepal',\n countryFlag: 'Nepal',\n length: 0,\n },\n '+31': {\n countryCode: 'NL',\n country: 'Netherlands',\n countryFlag: 'Netherlands',\n length: 9,\n },\n '+687': {\n countryCode: 'NC',\n country: 'New Caledonia',\n countryFlag: 'France',\n length: 0,\n },\n '+64': {\n countryCode: 'NZ',\n country: 'New Zealand',\n countryFlag: 'New-Zealand',\n length: 10,\n },\n '+505': {\n countryCode: 'NI',\n country: 'Nicaragua',\n countryFlag: 'Nicaragua',\n length: 0,\n },\n '+227': {\n countryCode: 'NE',\n country: 'Niger',\n countryFlag: 'Niger',\n length: 0,\n },\n '+234': {\n countryCode: 'NG',\n country: 'Nigeria',\n countryFlag: 'Nigeria',\n length: 0,\n },\n '+683': {\n countryCode: 'NU',\n country: 'Niue',\n countryFlag: 'Niue',\n length: 0,\n },\n '+672': {\n countryCode: 'NF',\n country: 'Norfolk Island',\n countryFlag: 'Norfolk-Island',\n length: 0,\n },\n '+850': {\n countryCode: 'KP',\n country: 'North Korea',\n countryFlag: 'North-Korea',\n length: 0,\n },\n '+47': {\n countryCode: 'NO',\n country: 'Norway',\n countryFlag: 'Norway',\n length: 8,\n },\n '+968': {\n countryCode: 'OM',\n country: 'Oman',\n countryFlag: 'Oman',\n length: 0,\n },\n '+92': {\n countryCode: 'PK',\n country: 'Pakistan',\n countryFlag: 'Pakistan',\n length: 10,\n },\n '+680': {\n countryCode: 'PW',\n country: 'Palau',\n countryFlag: 'Palau',\n length: 0,\n },\n '+507': {\n countryCode: 'PA',\n country: 'Panama',\n countryFlag: 'Panama',\n length: 0,\n },\n '+675': {\n countryCode: 'PG',\n country: 'Papua New Guinea',\n countryFlag: 'Papua-New-Guinea',\n length: 0,\n },\n '+595': {\n countryCode: 'PY',\n country: 'Paraguay',\n countryFlag: 'Paraguay',\n length: 0,\n },\n '+51': {\n countryCode: 'PE',\n country: 'Peru',\n countryFlag: 'Peru',\n length: 0,\n },\n '+63': {\n countryCode: 'PH',\n country: 'Philippines',\n countryFlag: 'Philippines',\n length: 10,\n },\n '+48': {\n countryCode: 'PL',\n country: 'Poland',\n countryFlag: 'Poland',\n length: 9,\n },\n '+351': {\n countryCode: 'PT',\n country: 'Portugal',\n countryFlag: 'Portugal',\n length: 0,\n },\n '+974': {\n countryCode: 'QA',\n country: 'Qatar',\n countryFlag: 'Qatar',\n length: 0,\n },\n '+40': {\n countryCode: 'RO',\n country: 'Romania',\n countryFlag: 'Romania',\n length: 0,\n },\n '+7': {\n countryCode: 'RU',\n country: 'Russia',\n countryFlag: 'Russia',\n length: 10,\n },\n '+250': {\n countryCode: 'RW',\n country: 'Rwanda',\n countryFlag: 'Rwanda',\n length: 0,\n },\n '+262': {\n countryCode: 'RE',\n country: 'Réunion',\n countryFlag: 'France',\n length: 0,\n },\n '+290': {\n countryCode: 'SH',\n country: 'Saint Helena',\n countryFlag: '',\n length: 0,\n },\n '+508': {\n countryCode: 'PM',\n country: 'Saint Pierre and Miquelon',\n countryFlag: 'France',\n length: 6,\n },\n '+685': {\n countryCode: 'WS',\n country: 'Samoa',\n countryFlag: 'Samoa',\n length: 0,\n },\n '+378': {\n countryCode: 'SM',\n country: 'San Marino',\n countryFlag: 'San-Marino',\n length: 0,\n },\n '+239': {\n countryCode: 'ST',\n country: 'Sao Tome and Principe',\n countryFlag: 'Sao-Tome-and-Principe',\n length: 0,\n },\n '+966': {\n countryCode: 'SA',\n country: 'Saudi Arabia',\n countryFlag: 'Saudi-Arabia',\n length: 0,\n },\n '+221': {\n countryCode: 'SN',\n country: 'Senegal',\n countryFlag: 'Senegal',\n length: 0,\n },\n '+381': {\n countryCode: 'RS',\n country: 'Serbia',\n countryFlag: 'Serbia',\n length: 0,\n },\n '+248': {\n countryCode: 'SC',\n country: 'Seychelles',\n countryFlag: 'Seychelles',\n length: 0,\n },\n '+232': {\n countryCode: 'SL',\n country: 'Sierra Leone',\n countryFlag: 'Sierra-Leone',\n length: 0,\n },\n '+65': {\n countryCode: 'SG',\n country: 'Singapore',\n countryFlag: 'Singapore',\n length: 8,\n },\n '+421': {\n countryCode: 'SK',\n country: 'Slovakia',\n countryFlag: 'Slovakia',\n length: 0,\n },\n '+386': {\n countryCode: 'SI',\n country: 'Slovenia',\n countryFlag: 'Slovenia',\n length: 0,\n },\n '+677': {\n countryCode: 'SB',\n country: 'Solomon Islands',\n countryFlag: 'Solomon-Islands',\n length: 0,\n },\n '+252': {\n countryCode: 'SO',\n country: 'Somalia',\n countryFlag: 'Somalia',\n length: 0,\n },\n '+27': {\n countryCode: 'ZA',\n country: 'South Africa',\n countryFlag: 'South-Africa',\n length: 0,\n },\n '+82': {\n countryCode: 'KR',\n country: 'South Korea',\n countryFlag: 'South-Korea',\n length: 11,\n },\n '+211': {\n countryCode: 'SS',\n country: 'South Sudan',\n countryFlag: 'South-Sudan',\n length: 0,\n },\n '+34': {\n countryCode: 'ES',\n country: 'Spain',\n countryFlag: 'Spain',\n length: 9,\n },\n '+94': {\n countryCode: 'LK',\n country: 'Sri Lanka',\n countryFlag: 'Sri-Lanka',\n length: 0,\n },\n '+249': {\n countryCode: 'SD',\n country: 'Sudan',\n countryFlag: 'Sudan',\n length: 0,\n },\n '+597': {\n countryCode: 'SR',\n country: 'Suriname',\n countryFlag: 'Suriname',\n length: 0,\n },\n '+46': {\n countryCode: 'SE',\n country: 'Sweden',\n countryFlag: 'Sweden',\n length: 9,\n },\n '+41': {\n countryCode: 'CH',\n country: 'Switzerland',\n countryFlag: 'Switzerland',\n length: 9,\n },\n '+963': {\n countryCode: 'SY',\n country: 'Syrian Arab Republic',\n countryFlag: 'Syria',\n length: 0,\n },\n '+886': {\n countryCode: 'TW',\n country: 'Taiwan',\n countryFlag: 'Taiwan',\n length: 0,\n },\n '+992': {\n countryCode: 'TJ',\n country: 'Tajikistan',\n countryFlag: 'Tajikistan',\n length: 0,\n },\n '+255': {\n countryCode: 'TZ',\n country: 'Tanzania',\n countryFlag: 'Tanzania',\n length: 0,\n },\n '+66': {\n countryCode: 'TH',\n country: 'Thailand',\n countryFlag: 'Thailand',\n length: 0,\n },\n '+670': {\n countryCode: 'TL',\n country: 'Timor-Leste',\n countryFlag: 'East-Timor',\n length: 0,\n },\n '+228': {\n countryCode: 'TG',\n country: 'Togo',\n countryFlag: 'Togo',\n length: 0,\n },\n '+690': {\n countryCode: 'TK',\n country: 'Tokelau',\n countryFlag: 'Tokelau',\n length: 0,\n },\n '+676': {\n countryCode: 'TO',\n country: 'Tonga',\n countryFlag: 'Tonga',\n length: 0,\n },\n '+216': {\n countryCode: 'TN',\n country: 'Tunisia',\n countryFlag: 'Tunisia',\n length: 0,\n },\n '+90': {\n countryCode: 'TR',\n country: 'Turkey',\n countryFlag: 'Turkey',\n length: 10,\n },\n '+993': {\n countryCode: 'TM',\n country: 'Turkmenistan',\n countryFlag: 'Turkmenistan',\n length: 0,\n },\n '+688': {\n countryCode: 'TV',\n country: 'Tuvalu',\n countryFlag: 'Tuvalu',\n length: 0,\n },\n '+256': {\n countryCode: 'UG',\n country: 'Uganda',\n countryFlag: 'Uganda',\n length: 0,\n },\n '+380': {\n countryCode: 'UA',\n country: 'Ukraine',\n countryFlag: 'Ukraine',\n length: 9,\n },\n '+971': {\n countryCode: 'AE',\n country: 'United Arab Emirates',\n countryFlag: 'United-Arab-Emirates',\n length: 0,\n },\n '+598': {\n countryCode: 'UY',\n country: 'Uruguay',\n countryFlag: 'Uruguay',\n length: 0,\n },\n '+998': {\n countryCode: 'UZ',\n country: 'Uzbekistan',\n countryFlag: 'Uzbekistan',\n length: 9,\n },\n '+678': {\n countryCode: 'VU',\n country: 'Vanuatu',\n countryFlag: 'Vanuatu',\n length: 0,\n },\n '+58': {\n countryCode: 'VE',\n country: 'Venezuela',\n countryFlag: 'Venezuela',\n length: 0,\n },\n '+84': {\n countryCode: 'VN',\n country: 'Vietnam',\n countryFlag: 'Vietnam',\n length: 0,\n },\n '+681': {\n countryCode: 'WF',\n country: 'Wallis',\n countryFlag: 'France',\n length: 0,\n },\n '+967': {\n countryCode: 'YE',\n country: 'Yemen',\n countryFlag: 'Yemen',\n length: 0,\n },\n '+260': {\n countryCode: 'ZM',\n country: 'Zambia',\n countryFlag: 'Zambia',\n length: 0,\n },\n '+263': {\n countryCode: 'ZW',\n country: 'Zimbabwe',\n countryFlag: 'Zimbabwe',\n length: 0,\n },\n};\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var utils = require('../utils/utils.cjs');
|
|
5
|
+
|
|
6
|
+
const useApplyCountryCode = ({ value, onChange }) => {
|
|
7
|
+
const [selectedCountryCode, setSelectedCountryCode] = React.useState('+1');
|
|
8
|
+
const getDisplayValue = () => {
|
|
9
|
+
if (!value)
|
|
10
|
+
return `${selectedCountryCode}`;
|
|
11
|
+
const detectedCountryCode = utils.extractCountryCodeFromPhoneNumber(value);
|
|
12
|
+
if (detectedCountryCode) {
|
|
13
|
+
const remainingDigits = utils.applyLengthLimit(value, detectedCountryCode);
|
|
14
|
+
return remainingDigits ? `${detectedCountryCode} ${remainingDigits}` : detectedCountryCode;
|
|
15
|
+
}
|
|
16
|
+
return value;
|
|
17
|
+
};
|
|
18
|
+
const handlePhoneNumberChange = (inputValue) => {
|
|
19
|
+
const detectedCountryCode = utils.extractCountryCodeFromPhoneNumber(inputValue);
|
|
20
|
+
if (detectedCountryCode) {
|
|
21
|
+
setSelectedCountryCode(detectedCountryCode);
|
|
22
|
+
// allow deleting just the country code without space
|
|
23
|
+
if (inputValue === detectedCountryCode) {
|
|
24
|
+
onChange === null || onChange === undefined ? undefined : onChange(inputValue);
|
|
25
|
+
return;
|
|
26
|
+
}
|
|
27
|
+
const remainingDigits = utils.applyLengthLimit(inputValue, detectedCountryCode);
|
|
28
|
+
const numberWithAddedCountryCode = `${detectedCountryCode} ${remainingDigits}`;
|
|
29
|
+
onChange === null || onChange === undefined ? undefined : onChange(numberWithAddedCountryCode);
|
|
30
|
+
return;
|
|
31
|
+
}
|
|
32
|
+
onChange === null || onChange === undefined ? undefined : onChange(inputValue);
|
|
33
|
+
};
|
|
34
|
+
const handleCountryChange = (countryId) => {
|
|
35
|
+
setSelectedCountryCode(countryId);
|
|
36
|
+
const newCountryCode = `${countryId} `;
|
|
37
|
+
onChange === null || onChange === undefined ? undefined : onChange(newCountryCode);
|
|
38
|
+
};
|
|
39
|
+
return {
|
|
40
|
+
selectedCountryCode,
|
|
41
|
+
phoneNumber: getDisplayValue(),
|
|
42
|
+
handlePhoneNumberChange,
|
|
43
|
+
handleCountryChange,
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
exports.useApplyCountryCode = useApplyCountryCode;
|
|
48
|
+
//# sourceMappingURL=useApplyCountryCode.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useApplyCountryCode.cjs","sources":["../../../../src/components/PhoneInput/hooks/useApplyCountryCode.ts"],"sourcesContent":["import { useState } from 'react';\nimport { extractCountryCodeFromPhoneNumber, applyLengthLimit } from '../utils/utils';\n\ninterface ApplyCountryCodeProps {\n value?: string;\n onChange?: (value: string) => void;\n}\n\nexport const useApplyCountryCode = ({ value, onChange }: ApplyCountryCodeProps) => {\n const [selectedCountryCode, setSelectedCountryCode] = useState('+1');\n\n const getDisplayValue = () => {\n if (!value) return `${selectedCountryCode}`;\n\n const detectedCountryCode = extractCountryCodeFromPhoneNumber(value);\n if (detectedCountryCode) {\n const remainingDigits = applyLengthLimit(value, detectedCountryCode);\n return remainingDigits ? `${detectedCountryCode} ${remainingDigits}` : detectedCountryCode;\n }\n return value;\n };\n\n const handlePhoneNumberChange = (inputValue: string) => {\n const detectedCountryCode = extractCountryCodeFromPhoneNumber(inputValue);\n\n if (detectedCountryCode) {\n setSelectedCountryCode(detectedCountryCode);\n\n // allow deleting just the country code without space\n if (inputValue === detectedCountryCode) {\n onChange?.(inputValue);\n return;\n }\n\n const remainingDigits = applyLengthLimit(inputValue, detectedCountryCode);\n const numberWithAddedCountryCode = `${detectedCountryCode} ${remainingDigits}`;\n onChange?.(numberWithAddedCountryCode);\n return;\n }\n\n onChange?.(inputValue);\n };\n\n const handleCountryChange = (countryId: string) => {\n setSelectedCountryCode(countryId);\n const newCountryCode = `${countryId} `;\n\n onChange?.(newCountryCode);\n };\n\n return {\n selectedCountryCode,\n phoneNumber: getDisplayValue(),\n handlePhoneNumberChange,\n handleCountryChange,\n };\n};\n"],"names":["useState","extractCountryCodeFromPhoneNumber","applyLengthLimit"],"mappings":";;;;;AAQa,MAAA,mBAAmB,GAAG,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAyB,KAAI;IAChF,MAAM,CAAC,mBAAmB,EAAE,sBAAsB,CAAC,GAAGA,cAAQ,CAAC,IAAI,CAAC;IAEpE,MAAM,eAAe,GAAG,MAAK;AAC3B,QAAA,IAAI,CAAC,KAAK;YAAE,OAAO,CAAA,EAAG,mBAAmB,CAAA,CAAE;AAE3C,QAAA,MAAM,mBAAmB,GAAGC,uCAAiC,CAAC,KAAK,CAAC;AACpE,QAAA,IAAI,mBAAmB,EAAE;YACvB,MAAM,eAAe,GAAGC,sBAAgB,CAAC,KAAK,EAAE,mBAAmB,CAAC;AACpE,YAAA,OAAO,eAAe,GAAG,CAAG,EAAA,mBAAmB,CAAI,CAAA,EAAA,eAAe,CAAE,CAAA,GAAG,mBAAmB;AAC3F;AACD,QAAA,OAAO,KAAK;AACd,KAAC;AAED,IAAA,MAAM,uBAAuB,GAAG,CAAC,UAAkB,KAAI;AACrD,QAAA,MAAM,mBAAmB,GAAGD,uCAAiC,CAAC,UAAU,CAAC;AAEzE,QAAA,IAAI,mBAAmB,EAAE;YACvB,sBAAsB,CAAC,mBAAmB,CAAC;;YAG3C,IAAI,UAAU,KAAK,mBAAmB,EAAE;AACtC,gBAAA,QAAQ,aAAR,QAAQ,KAAA,SAAA,GAAA,SAAA,GAAR,QAAQ,CAAG,UAAU,CAAC;gBACtB;AACD;YAED,MAAM,eAAe,GAAGC,sBAAgB,CAAC,UAAU,EAAE,mBAAmB,CAAC;AACzE,YAAA,MAAM,0BAA0B,GAAG,CAAA,EAAG,mBAAmB,CAAI,CAAA,EAAA,eAAe,EAAE;AAC9E,YAAA,QAAQ,aAAR,QAAQ,KAAA,SAAA,GAAA,SAAA,GAAR,QAAQ,CAAG,0BAA0B,CAAC;YACtC;AACD;AAED,QAAA,QAAQ,aAAR,QAAQ,KAAA,SAAA,GAAA,SAAA,GAAR,QAAQ,CAAG,UAAU,CAAC;AACxB,KAAC;AAED,IAAA,MAAM,mBAAmB,GAAG,CAAC,SAAiB,KAAI;QAChD,sBAAsB,CAAC,SAAS,CAAC;AACjC,QAAA,MAAM,cAAc,GAAG,CAAG,EAAA,SAAS,GAAG;AAEtC,QAAA,QAAQ,aAAR,QAAQ,KAAA,SAAA,GAAA,SAAA,GAAR,QAAQ,CAAG,cAAc,CAAC;AAC5B,KAAC;IAED,OAAO;QACL,mBAAmB;QACnB,WAAW,EAAE,eAAe,EAAE;QAC9B,uBAAuB;QACvB,mBAAmB;KACpB;AACH;;;;"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface ApplyCountryCodeProps {
|
|
2
|
+
value?: string;
|
|
3
|
+
onChange?: (value: string) => void;
|
|
4
|
+
}
|
|
5
|
+
export declare const useApplyCountryCode: ({ value, onChange }: ApplyCountryCodeProps) => {
|
|
6
|
+
selectedCountryCode: string;
|
|
7
|
+
phoneNumber: string;
|
|
8
|
+
handlePhoneNumberChange: (inputValue: string) => void;
|
|
9
|
+
handleCountryChange: (countryId: string) => void;
|
|
10
|
+
};
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { useState } from 'react';
|
|
2
|
+
import { extractCountryCodeFromPhoneNumber, applyLengthLimit } from '../utils/utils.js';
|
|
3
|
+
|
|
4
|
+
const useApplyCountryCode = ({ value, onChange }) => {
|
|
5
|
+
const [selectedCountryCode, setSelectedCountryCode] = useState('+1');
|
|
6
|
+
const getDisplayValue = () => {
|
|
7
|
+
if (!value)
|
|
8
|
+
return `${selectedCountryCode}`;
|
|
9
|
+
const detectedCountryCode = extractCountryCodeFromPhoneNumber(value);
|
|
10
|
+
if (detectedCountryCode) {
|
|
11
|
+
const remainingDigits = applyLengthLimit(value, detectedCountryCode);
|
|
12
|
+
return remainingDigits ? `${detectedCountryCode} ${remainingDigits}` : detectedCountryCode;
|
|
13
|
+
}
|
|
14
|
+
return value;
|
|
15
|
+
};
|
|
16
|
+
const handlePhoneNumberChange = (inputValue) => {
|
|
17
|
+
const detectedCountryCode = extractCountryCodeFromPhoneNumber(inputValue);
|
|
18
|
+
if (detectedCountryCode) {
|
|
19
|
+
setSelectedCountryCode(detectedCountryCode);
|
|
20
|
+
// allow deleting just the country code without space
|
|
21
|
+
if (inputValue === detectedCountryCode) {
|
|
22
|
+
onChange === null || onChange === undefined ? undefined : onChange(inputValue);
|
|
23
|
+
return;
|
|
24
|
+
}
|
|
25
|
+
const remainingDigits = applyLengthLimit(inputValue, detectedCountryCode);
|
|
26
|
+
const numberWithAddedCountryCode = `${detectedCountryCode} ${remainingDigits}`;
|
|
27
|
+
onChange === null || onChange === undefined ? undefined : onChange(numberWithAddedCountryCode);
|
|
28
|
+
return;
|
|
29
|
+
}
|
|
30
|
+
onChange === null || onChange === undefined ? undefined : onChange(inputValue);
|
|
31
|
+
};
|
|
32
|
+
const handleCountryChange = (countryId) => {
|
|
33
|
+
setSelectedCountryCode(countryId);
|
|
34
|
+
const newCountryCode = `${countryId} `;
|
|
35
|
+
onChange === null || onChange === undefined ? undefined : onChange(newCountryCode);
|
|
36
|
+
};
|
|
37
|
+
return {
|
|
38
|
+
selectedCountryCode,
|
|
39
|
+
phoneNumber: getDisplayValue(),
|
|
40
|
+
handlePhoneNumberChange,
|
|
41
|
+
handleCountryChange,
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
export { useApplyCountryCode };
|
|
46
|
+
//# sourceMappingURL=useApplyCountryCode.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useApplyCountryCode.js","sources":["../../../../src/components/PhoneInput/hooks/useApplyCountryCode.ts"],"sourcesContent":["import { useState } from 'react';\nimport { extractCountryCodeFromPhoneNumber, applyLengthLimit } from '../utils/utils';\n\ninterface ApplyCountryCodeProps {\n value?: string;\n onChange?: (value: string) => void;\n}\n\nexport const useApplyCountryCode = ({ value, onChange }: ApplyCountryCodeProps) => {\n const [selectedCountryCode, setSelectedCountryCode] = useState('+1');\n\n const getDisplayValue = () => {\n if (!value) return `${selectedCountryCode}`;\n\n const detectedCountryCode = extractCountryCodeFromPhoneNumber(value);\n if (detectedCountryCode) {\n const remainingDigits = applyLengthLimit(value, detectedCountryCode);\n return remainingDigits ? `${detectedCountryCode} ${remainingDigits}` : detectedCountryCode;\n }\n return value;\n };\n\n const handlePhoneNumberChange = (inputValue: string) => {\n const detectedCountryCode = extractCountryCodeFromPhoneNumber(inputValue);\n\n if (detectedCountryCode) {\n setSelectedCountryCode(detectedCountryCode);\n\n // allow deleting just the country code without space\n if (inputValue === detectedCountryCode) {\n onChange?.(inputValue);\n return;\n }\n\n const remainingDigits = applyLengthLimit(inputValue, detectedCountryCode);\n const numberWithAddedCountryCode = `${detectedCountryCode} ${remainingDigits}`;\n onChange?.(numberWithAddedCountryCode);\n return;\n }\n\n onChange?.(inputValue);\n };\n\n const handleCountryChange = (countryId: string) => {\n setSelectedCountryCode(countryId);\n const newCountryCode = `${countryId} `;\n\n onChange?.(newCountryCode);\n };\n\n return {\n selectedCountryCode,\n phoneNumber: getDisplayValue(),\n handlePhoneNumberChange,\n handleCountryChange,\n };\n};\n"],"names":[],"mappings":";;;AAQa,MAAA,mBAAmB,GAAG,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAyB,KAAI;IAChF,MAAM,CAAC,mBAAmB,EAAE,sBAAsB,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC;IAEpE,MAAM,eAAe,GAAG,MAAK;AAC3B,QAAA,IAAI,CAAC,KAAK;YAAE,OAAO,CAAA,EAAG,mBAAmB,CAAA,CAAE;AAE3C,QAAA,MAAM,mBAAmB,GAAG,iCAAiC,CAAC,KAAK,CAAC;AACpE,QAAA,IAAI,mBAAmB,EAAE;YACvB,MAAM,eAAe,GAAG,gBAAgB,CAAC,KAAK,EAAE,mBAAmB,CAAC;AACpE,YAAA,OAAO,eAAe,GAAG,CAAG,EAAA,mBAAmB,CAAI,CAAA,EAAA,eAAe,CAAE,CAAA,GAAG,mBAAmB;AAC3F;AACD,QAAA,OAAO,KAAK;AACd,KAAC;AAED,IAAA,MAAM,uBAAuB,GAAG,CAAC,UAAkB,KAAI;AACrD,QAAA,MAAM,mBAAmB,GAAG,iCAAiC,CAAC,UAAU,CAAC;AAEzE,QAAA,IAAI,mBAAmB,EAAE;YACvB,sBAAsB,CAAC,mBAAmB,CAAC;;YAG3C,IAAI,UAAU,KAAK,mBAAmB,EAAE;AACtC,gBAAA,QAAQ,aAAR,QAAQ,KAAA,SAAA,GAAA,SAAA,GAAR,QAAQ,CAAG,UAAU,CAAC;gBACtB;AACD;YAED,MAAM,eAAe,GAAG,gBAAgB,CAAC,UAAU,EAAE,mBAAmB,CAAC;AACzE,YAAA,MAAM,0BAA0B,GAAG,CAAA,EAAG,mBAAmB,CAAI,CAAA,EAAA,eAAe,EAAE;AAC9E,YAAA,QAAQ,aAAR,QAAQ,KAAA,SAAA,GAAA,SAAA,GAAR,QAAQ,CAAG,0BAA0B,CAAC;YACtC;AACD;AAED,QAAA,QAAQ,aAAR,QAAQ,KAAA,SAAA,GAAA,SAAA,GAAR,QAAQ,CAAG,UAAU,CAAC;AACxB,KAAC;AAED,IAAA,MAAM,mBAAmB,GAAG,CAAC,SAAiB,KAAI;QAChD,sBAAsB,CAAC,SAAS,CAAC;AACjC,QAAA,MAAM,cAAc,GAAG,CAAG,EAAA,SAAS,GAAG;AAEtC,QAAA,QAAQ,aAAR,QAAQ,KAAA,SAAA,GAAA,SAAA,GAAR,QAAQ,CAAG,cAAc,CAAC;AAC5B,KAAC;IAED,OAAO;QACL,mBAAmB;QACnB,WAAW,EAAE,eAAe,EAAE;QAC9B,uBAAuB;QACvB,mBAAmB;KACpB;AACH;;;;"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var withLabels = require('../../hoc/withLabels/withLabels.cjs');
|
|
4
|
+
require('react');
|
|
5
|
+
var PhoneInput$1 = require('./PhoneInput.cjs');
|
|
6
|
+
|
|
7
|
+
const PhoneInput = withLabels.withLabels(PhoneInput$1.PhoneInput);
|
|
8
|
+
PhoneInput.displayName = 'PhoneInput';
|
|
9
|
+
|
|
10
|
+
exports.PhoneInput = PhoneInput;
|
|
11
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":["../../../src/components/PhoneInput/index.ts"],"sourcesContent":["import { withLabels } from '../../hoc';\nimport { PhoneInput as StandardPhoneInput } from './PhoneInput';\n\nexport const PhoneInput = withLabels(StandardPhoneInput);\n\nPhoneInput.displayName = 'PhoneInput';\n"],"names":["withLabels","StandardPhoneInput"],"mappings":";;;;;;MAGa,UAAU,GAAGA,qBAAU,CAACC,uBAAkB;AAEvD,UAAU,CAAC,WAAW,GAAG,YAAY;;;;"}
|
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const PhoneInput: import("react").FC<{
|
|
3
|
+
form?: string | undefined;
|
|
4
|
+
slot?: string | undefined;
|
|
5
|
+
style?: import("react").CSSProperties | undefined;
|
|
6
|
+
title?: string | undefined;
|
|
7
|
+
pattern?: string | undefined;
|
|
8
|
+
placeholder?: string | undefined;
|
|
9
|
+
name?: string | undefined;
|
|
10
|
+
defaultChecked?: boolean | undefined;
|
|
11
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
12
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
13
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
14
|
+
accessKey?: string | undefined;
|
|
15
|
+
autoFocus?: boolean | undefined;
|
|
16
|
+
className?: string | undefined;
|
|
17
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
18
|
+
contextMenu?: string | undefined;
|
|
19
|
+
dir?: string | undefined;
|
|
20
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
21
|
+
hidden?: boolean | undefined;
|
|
22
|
+
id?: string | undefined;
|
|
23
|
+
lang?: string | undefined;
|
|
24
|
+
nonce?: string | undefined;
|
|
25
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
26
|
+
tabIndex?: number | undefined;
|
|
27
|
+
translate?: "no" | "yes" | undefined;
|
|
28
|
+
radioGroup?: string | undefined;
|
|
29
|
+
role?: import("react").AriaRole | undefined;
|
|
30
|
+
about?: string | undefined;
|
|
31
|
+
content?: string | undefined;
|
|
32
|
+
datatype?: string | undefined;
|
|
33
|
+
inlist?: any;
|
|
34
|
+
prefix?: string | undefined;
|
|
35
|
+
property?: string | undefined;
|
|
36
|
+
rel?: string | undefined;
|
|
37
|
+
resource?: string | undefined;
|
|
38
|
+
rev?: string | undefined;
|
|
39
|
+
typeof?: string | undefined;
|
|
40
|
+
vocab?: string | undefined;
|
|
41
|
+
autoCapitalize?: string | undefined;
|
|
42
|
+
autoCorrect?: string | undefined;
|
|
43
|
+
autoSave?: string | undefined;
|
|
44
|
+
color?: string | undefined;
|
|
45
|
+
itemProp?: string | undefined;
|
|
46
|
+
itemScope?: boolean | undefined;
|
|
47
|
+
itemType?: string | undefined;
|
|
48
|
+
itemID?: string | undefined;
|
|
49
|
+
itemRef?: string | undefined;
|
|
50
|
+
results?: number | undefined;
|
|
51
|
+
security?: string | undefined;
|
|
52
|
+
unselectable?: "on" | "off" | undefined;
|
|
53
|
+
inputMode?: "text" | "none" | "search" | "email" | "tel" | "url" | "numeric" | "decimal" | undefined;
|
|
54
|
+
is?: string | undefined;
|
|
55
|
+
'aria-activedescendant'?: string | undefined;
|
|
56
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
57
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
58
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
59
|
+
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
60
|
+
'aria-colcount'?: number | undefined;
|
|
61
|
+
'aria-colindex'?: number | undefined;
|
|
62
|
+
'aria-colspan'?: number | undefined;
|
|
63
|
+
'aria-controls'?: string | undefined;
|
|
64
|
+
'aria-current'?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
65
|
+
'aria-describedby'?: string | undefined;
|
|
66
|
+
'aria-details'?: string | undefined;
|
|
67
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
68
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
69
|
+
'aria-errormessage'?: string | undefined;
|
|
70
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
71
|
+
'aria-flowto'?: string | undefined;
|
|
72
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
73
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
74
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
75
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
76
|
+
'aria-keyshortcuts'?: string | undefined;
|
|
77
|
+
'aria-label'?: string | undefined;
|
|
78
|
+
'aria-labelledby'?: string | undefined;
|
|
79
|
+
'aria-level'?: number | undefined;
|
|
80
|
+
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
|
81
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
82
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
83
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
84
|
+
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
85
|
+
'aria-owns'?: string | undefined;
|
|
86
|
+
'aria-placeholder'?: string | undefined;
|
|
87
|
+
'aria-posinset'?: number | undefined;
|
|
88
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
89
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
90
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
91
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
92
|
+
'aria-roledescription'?: string | undefined;
|
|
93
|
+
'aria-rowcount'?: number | undefined;
|
|
94
|
+
'aria-rowindex'?: number | undefined;
|
|
95
|
+
'aria-rowspan'?: number | undefined;
|
|
96
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
97
|
+
'aria-setsize'?: number | undefined;
|
|
98
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
99
|
+
'aria-valuemax'?: number | undefined;
|
|
100
|
+
'aria-valuemin'?: number | undefined;
|
|
101
|
+
'aria-valuenow'?: number | undefined;
|
|
102
|
+
'aria-valuetext'?: string | undefined;
|
|
103
|
+
children?: import("react").ReactNode;
|
|
104
|
+
dangerouslySetInnerHTML?: {
|
|
105
|
+
__html: string | TrustedHTML;
|
|
106
|
+
} | undefined;
|
|
107
|
+
onCopy?: (import("react").ClipboardEventHandler<HTMLInputElement> & import("react").ClipboardEventHandler<HTMLTextAreaElement>) | undefined;
|
|
108
|
+
onCopyCapture?: (import("react").ClipboardEventHandler<HTMLInputElement> & import("react").ClipboardEventHandler<HTMLTextAreaElement>) | undefined;
|
|
109
|
+
onCut?: (import("react").ClipboardEventHandler<HTMLInputElement> & import("react").ClipboardEventHandler<HTMLTextAreaElement>) | undefined;
|
|
110
|
+
onCutCapture?: (import("react").ClipboardEventHandler<HTMLInputElement> & import("react").ClipboardEventHandler<HTMLTextAreaElement>) | undefined;
|
|
111
|
+
onPaste?: (import("react").ClipboardEventHandler<HTMLInputElement> & import("react").ClipboardEventHandler<HTMLTextAreaElement>) | undefined;
|
|
112
|
+
onPasteCapture?: (import("react").ClipboardEventHandler<HTMLInputElement> & import("react").ClipboardEventHandler<HTMLTextAreaElement>) | undefined;
|
|
113
|
+
onCompositionEnd?: (import("react").CompositionEventHandler<HTMLInputElement> & import("react").CompositionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
114
|
+
onCompositionEndCapture?: (import("react").CompositionEventHandler<HTMLInputElement> & import("react").CompositionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
115
|
+
onCompositionStart?: (import("react").CompositionEventHandler<HTMLInputElement> & import("react").CompositionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
116
|
+
onCompositionStartCapture?: (import("react").CompositionEventHandler<HTMLInputElement> & import("react").CompositionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
117
|
+
onCompositionUpdate?: (import("react").CompositionEventHandler<HTMLInputElement> & import("react").CompositionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
118
|
+
onCompositionUpdateCapture?: (import("react").CompositionEventHandler<HTMLInputElement> & import("react").CompositionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
119
|
+
onFocus?: (import("react").FocusEventHandler<HTMLInputElement> & import("react").FocusEventHandler<HTMLTextAreaElement>) | undefined;
|
|
120
|
+
onFocusCapture?: (import("react").FocusEventHandler<HTMLInputElement> & import("react").FocusEventHandler<HTMLTextAreaElement>) | undefined;
|
|
121
|
+
onBlur?: (import("react").FocusEventHandler<HTMLInputElement> & import("react").FocusEventHandler<HTMLTextAreaElement>) | undefined;
|
|
122
|
+
onBlurCapture?: (import("react").FocusEventHandler<HTMLInputElement> & import("react").FocusEventHandler<HTMLTextAreaElement>) | undefined;
|
|
123
|
+
onChangeCapture?: (import("react").FormEventHandler<HTMLInputElement> & import("react").FormEventHandler<HTMLTextAreaElement>) | undefined;
|
|
124
|
+
onBeforeInput?: (import("react").FormEventHandler<HTMLInputElement> & import("react").FormEventHandler<HTMLTextAreaElement>) | undefined;
|
|
125
|
+
onBeforeInputCapture?: (import("react").FormEventHandler<HTMLInputElement> & import("react").FormEventHandler<HTMLTextAreaElement>) | undefined;
|
|
126
|
+
onInput?: (import("react").FormEventHandler<HTMLInputElement> & import("react").FormEventHandler<HTMLTextAreaElement>) | undefined;
|
|
127
|
+
onInputCapture?: (import("react").FormEventHandler<HTMLInputElement> & import("react").FormEventHandler<HTMLTextAreaElement>) | undefined;
|
|
128
|
+
onReset?: (import("react").FormEventHandler<HTMLInputElement> & import("react").FormEventHandler<HTMLTextAreaElement>) | undefined;
|
|
129
|
+
onResetCapture?: (import("react").FormEventHandler<HTMLInputElement> & import("react").FormEventHandler<HTMLTextAreaElement>) | undefined;
|
|
130
|
+
onSubmit?: (import("react").FormEventHandler<HTMLInputElement> & import("react").FormEventHandler<HTMLTextAreaElement>) | undefined;
|
|
131
|
+
onSubmitCapture?: (import("react").FormEventHandler<HTMLInputElement> & import("react").FormEventHandler<HTMLTextAreaElement>) | undefined;
|
|
132
|
+
onInvalid?: (import("react").FormEventHandler<HTMLInputElement> & import("react").FormEventHandler<HTMLTextAreaElement>) | undefined;
|
|
133
|
+
onInvalidCapture?: (import("react").FormEventHandler<HTMLInputElement> & import("react").FormEventHandler<HTMLTextAreaElement>) | undefined;
|
|
134
|
+
onLoad?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
135
|
+
onLoadCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
136
|
+
onError?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
137
|
+
onErrorCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
138
|
+
onKeyDown?: (import("react").KeyboardEventHandler<HTMLInputElement> & import("react").KeyboardEventHandler<HTMLTextAreaElement>) | undefined;
|
|
139
|
+
onKeyDownCapture?: (import("react").KeyboardEventHandler<HTMLInputElement> & import("react").KeyboardEventHandler<HTMLTextAreaElement>) | undefined;
|
|
140
|
+
onKeyPress?: (import("react").KeyboardEventHandler<HTMLInputElement> & import("react").KeyboardEventHandler<HTMLTextAreaElement>) | undefined;
|
|
141
|
+
onKeyPressCapture?: (import("react").KeyboardEventHandler<HTMLInputElement> & import("react").KeyboardEventHandler<HTMLTextAreaElement>) | undefined;
|
|
142
|
+
onKeyUp?: (import("react").KeyboardEventHandler<HTMLInputElement> & import("react").KeyboardEventHandler<HTMLTextAreaElement>) | undefined;
|
|
143
|
+
onKeyUpCapture?: (import("react").KeyboardEventHandler<HTMLInputElement> & import("react").KeyboardEventHandler<HTMLTextAreaElement>) | undefined;
|
|
144
|
+
onAbort?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
145
|
+
onAbortCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
146
|
+
onCanPlay?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
147
|
+
onCanPlayCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
148
|
+
onCanPlayThrough?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
149
|
+
onCanPlayThroughCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
150
|
+
onDurationChange?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
151
|
+
onDurationChangeCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
152
|
+
onEmptied?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
153
|
+
onEmptiedCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
154
|
+
onEncrypted?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
155
|
+
onEncryptedCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
156
|
+
onEnded?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
157
|
+
onEndedCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
158
|
+
onLoadedData?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
159
|
+
onLoadedDataCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
160
|
+
onLoadedMetadata?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
161
|
+
onLoadedMetadataCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
162
|
+
onLoadStart?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
163
|
+
onLoadStartCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
164
|
+
onPause?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
165
|
+
onPauseCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
166
|
+
onPlay?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
167
|
+
onPlayCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
168
|
+
onPlaying?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
169
|
+
onPlayingCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
170
|
+
onProgress?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
171
|
+
onProgressCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
172
|
+
onRateChange?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
173
|
+
onRateChangeCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
174
|
+
onSeeked?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
175
|
+
onSeekedCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
176
|
+
onSeeking?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
177
|
+
onSeekingCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
178
|
+
onStalled?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
179
|
+
onStalledCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
180
|
+
onSuspend?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
181
|
+
onSuspendCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
182
|
+
onTimeUpdate?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
183
|
+
onTimeUpdateCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
184
|
+
onVolumeChange?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
185
|
+
onVolumeChangeCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
186
|
+
onWaiting?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
187
|
+
onWaitingCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
188
|
+
onAuxClick?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
189
|
+
onAuxClickCapture?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
190
|
+
onClick?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
191
|
+
onClickCapture?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
192
|
+
onContextMenu?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
193
|
+
onContextMenuCapture?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
194
|
+
onDoubleClick?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
195
|
+
onDoubleClickCapture?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
196
|
+
onDrag?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
197
|
+
onDragCapture?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
198
|
+
onDragEnd?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
199
|
+
onDragEndCapture?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
200
|
+
onDragEnter?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
201
|
+
onDragEnterCapture?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
202
|
+
onDragExit?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
203
|
+
onDragExitCapture?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
204
|
+
onDragLeave?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
205
|
+
onDragLeaveCapture?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
206
|
+
onDragOver?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
207
|
+
onDragOverCapture?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
208
|
+
onDragStart?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
209
|
+
onDragStartCapture?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
210
|
+
onDrop?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
211
|
+
onDropCapture?: (import("react").DragEventHandler<HTMLInputElement> & import("react").DragEventHandler<HTMLTextAreaElement>) | undefined;
|
|
212
|
+
onMouseDown?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
213
|
+
onMouseDownCapture?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
214
|
+
onMouseEnter?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
215
|
+
onMouseLeave?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
216
|
+
onMouseMove?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
217
|
+
onMouseMoveCapture?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
218
|
+
onMouseOut?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
219
|
+
onMouseOutCapture?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
220
|
+
onMouseOver?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
221
|
+
onMouseOverCapture?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
222
|
+
onMouseUp?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
223
|
+
onMouseUpCapture?: (import("react").MouseEventHandler<HTMLInputElement> & import("react").MouseEventHandler<HTMLTextAreaElement>) | undefined;
|
|
224
|
+
onSelect?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
225
|
+
onSelectCapture?: (import("react").ReactEventHandler<HTMLInputElement> & import("react").ReactEventHandler<HTMLTextAreaElement>) | undefined;
|
|
226
|
+
onTouchCancel?: (import("react").TouchEventHandler<HTMLInputElement> & import("react").TouchEventHandler<HTMLTextAreaElement>) | undefined;
|
|
227
|
+
onTouchCancelCapture?: (import("react").TouchEventHandler<HTMLInputElement> & import("react").TouchEventHandler<HTMLTextAreaElement>) | undefined;
|
|
228
|
+
onTouchEnd?: (import("react").TouchEventHandler<HTMLInputElement> & import("react").TouchEventHandler<HTMLTextAreaElement>) | undefined;
|
|
229
|
+
onTouchEndCapture?: (import("react").TouchEventHandler<HTMLInputElement> & import("react").TouchEventHandler<HTMLTextAreaElement>) | undefined;
|
|
230
|
+
onTouchMove?: (import("react").TouchEventHandler<HTMLInputElement> & import("react").TouchEventHandler<HTMLTextAreaElement>) | undefined;
|
|
231
|
+
onTouchMoveCapture?: (import("react").TouchEventHandler<HTMLInputElement> & import("react").TouchEventHandler<HTMLTextAreaElement>) | undefined;
|
|
232
|
+
onTouchStart?: (import("react").TouchEventHandler<HTMLInputElement> & import("react").TouchEventHandler<HTMLTextAreaElement>) | undefined;
|
|
233
|
+
onTouchStartCapture?: (import("react").TouchEventHandler<HTMLInputElement> & import("react").TouchEventHandler<HTMLTextAreaElement>) | undefined;
|
|
234
|
+
onPointerDown?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
235
|
+
onPointerDownCapture?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
236
|
+
onPointerMove?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
237
|
+
onPointerMoveCapture?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
238
|
+
onPointerUp?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
239
|
+
onPointerUpCapture?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
240
|
+
onPointerCancel?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
241
|
+
onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
242
|
+
onPointerEnter?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
243
|
+
onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
244
|
+
onPointerLeave?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
245
|
+
onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
246
|
+
onPointerOver?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
247
|
+
onPointerOverCapture?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
248
|
+
onPointerOut?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
249
|
+
onPointerOutCapture?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
250
|
+
onGotPointerCapture?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
251
|
+
onGotPointerCaptureCapture?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
252
|
+
onLostPointerCapture?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
253
|
+
onLostPointerCaptureCapture?: (import("react").PointerEventHandler<HTMLInputElement> & import("react").PointerEventHandler<HTMLTextAreaElement>) | undefined;
|
|
254
|
+
onScroll?: (import("react").UIEventHandler<HTMLInputElement> & import("react").UIEventHandler<HTMLTextAreaElement>) | undefined;
|
|
255
|
+
onScrollCapture?: (import("react").UIEventHandler<HTMLInputElement> & import("react").UIEventHandler<HTMLTextAreaElement>) | undefined;
|
|
256
|
+
onWheel?: (import("react").WheelEventHandler<HTMLInputElement> & import("react").WheelEventHandler<HTMLTextAreaElement>) | undefined;
|
|
257
|
+
onWheelCapture?: (import("react").WheelEventHandler<HTMLInputElement> & import("react").WheelEventHandler<HTMLTextAreaElement>) | undefined;
|
|
258
|
+
onAnimationStart?: (import("react").AnimationEventHandler<HTMLInputElement> & import("react").AnimationEventHandler<HTMLTextAreaElement>) | undefined;
|
|
259
|
+
onAnimationStartCapture?: (import("react").AnimationEventHandler<HTMLInputElement> & import("react").AnimationEventHandler<HTMLTextAreaElement>) | undefined;
|
|
260
|
+
onAnimationEnd?: (import("react").AnimationEventHandler<HTMLInputElement> & import("react").AnimationEventHandler<HTMLTextAreaElement>) | undefined;
|
|
261
|
+
onAnimationEndCapture?: (import("react").AnimationEventHandler<HTMLInputElement> & import("react").AnimationEventHandler<HTMLTextAreaElement>) | undefined;
|
|
262
|
+
onAnimationIteration?: (import("react").AnimationEventHandler<HTMLInputElement> & import("react").AnimationEventHandler<HTMLTextAreaElement>) | undefined;
|
|
263
|
+
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLInputElement> & import("react").AnimationEventHandler<HTMLTextAreaElement>) | undefined;
|
|
264
|
+
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLInputElement> & import("react").TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
265
|
+
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLInputElement> & import("react").TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
266
|
+
height?: string | number | undefined;
|
|
267
|
+
max?: string | number | undefined;
|
|
268
|
+
min?: string | number | undefined;
|
|
269
|
+
width?: string | number | undefined;
|
|
270
|
+
alt?: string | undefined;
|
|
271
|
+
src?: string | undefined;
|
|
272
|
+
disabled?: boolean | undefined;
|
|
273
|
+
formAction?: string | undefined;
|
|
274
|
+
formEncType?: string | undefined;
|
|
275
|
+
formMethod?: string | undefined;
|
|
276
|
+
formNoValidate?: boolean | undefined;
|
|
277
|
+
formTarget?: string | undefined;
|
|
278
|
+
autoComplete?: string | undefined;
|
|
279
|
+
accept?: string | undefined;
|
|
280
|
+
capture?: boolean | "user" | "environment" | undefined;
|
|
281
|
+
checked?: boolean | undefined;
|
|
282
|
+
enterKeyHint?: "search" | "previous" | "next" | "enter" | "done" | "go" | "send" | undefined;
|
|
283
|
+
list?: string | undefined;
|
|
284
|
+
maxLength?: number | undefined;
|
|
285
|
+
minLength?: number | undefined;
|
|
286
|
+
multiple?: boolean | undefined;
|
|
287
|
+
readOnly?: boolean | undefined;
|
|
288
|
+
required?: boolean | undefined;
|
|
289
|
+
step?: string | number | undefined;
|
|
290
|
+
cols?: number | undefined;
|
|
291
|
+
dirName?: string | undefined;
|
|
292
|
+
rows?: number | undefined;
|
|
293
|
+
wrap?: string | undefined;
|
|
294
|
+
} & {
|
|
295
|
+
value?: string | undefined;
|
|
296
|
+
type?: import("../TextField").TextFieldType | undefined;
|
|
297
|
+
onChange?: ((value: string) => void) | undefined;
|
|
298
|
+
hasError?: boolean | undefined;
|
|
299
|
+
size?: "base" | "sm" | undefined;
|
|
300
|
+
multiline?: boolean | undefined;
|
|
301
|
+
} & {
|
|
302
|
+
value?: string | undefined;
|
|
303
|
+
onChange?: ((value: string) => void) | undefined;
|
|
304
|
+
hasError?: boolean | undefined;
|
|
305
|
+
disabled?: boolean | undefined;
|
|
306
|
+
error?: string | undefined;
|
|
307
|
+
className?: string | undefined;
|
|
308
|
+
} & import("../../hoc/withLabels/withLabels").WithLabelsProps>;
|