4.4.0 • Published 3 years ago
antd-country-phone-input-sorting-fix v4.4.0
antd-country-phone-input
This is a temporary publication of a fork of antd-country-phone-input created for a purpose of Pull Request.
Country phone input component as standard Ant.Design form item.

Installation
npm install antd-country-phone-input world_countries_listsor
yarn add antd-country-phone-input world_countries_listsUsage
Breaking Changes:
- To avoid unnecessary encapsulation for different locales,
4.0lifted areas state up toConfigProvider(based on React Context). You need to put it in the right place(index.js/App.js/...), then all components will have access to the provided config.Tree Shakingis supported in4.1, you need to installworld_countries_listsexplicitly. Thus, you could customize translation JSON and it is better thanareaMapperinConfigProvider.world_countries_listsupdated their file structure from 2.4.0:world_countries_lists/data/en/world.json->world_countries_lists/data/countries/en/world.json.
import CountryPhoneInput, { ConfigProvider } from 'antd-country-phone-input';
import en from 'world_countries_lists/data/countries/en/world.json';
// Usually you only need to import ConfigProvider & CSS once in App.js/App.tsx
// CSS order is important!
import 'antd/dist/antd.css';
import 'antd-country-phone-input/dist/index.css';
const App = () => {
return (
<ConfigProvider locale={en}>
<CountryPhoneInput />
</ConfigProvider>
);
};
export default App;Try it on our website: https://boyuai.github.io/antd-country-phone-input/demos/
Value
| Field | Type | Note |
|---|---|---|
| short | string | See ISO 3166-1 |
| phoneCode | number | |
| emoji | ReactNode | National flag |
| name | string |
Locale
Example
Have a look at this!
4.4.0
3 years ago