Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
antd-country-phone-input
Advanced tools
Country phone input component as standard Ant.Design form item
Country phone input component as standard Ant.Design form item.
npm install antd-country-phone-input world_countries_lists
or
yarn add antd-country-phone-input world_countries_lists
Breaking Changes:
- To avoid unnecessary encapsulation for different locales,
4.0
lifted 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 Shaking
is supported in4.1
, you need to installworld_countries_lists
explicitly. Thus, you could customize translation JSON and it is better thanareaMapper
inConfigProvider
.
import CountryPhoneInput, { ConfigProvider } from 'antd-country-phone-input';
import en from 'world_countries_lists/data/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/
Field | Type | Note |
---|---|---|
short | string | See ISO 3166-1 |
phoneCode | number | |
emoji | ReactNode | National flag |
name | string |
Have a look at this!
FAQs
Country phone input component as standard Ant.Design form item
The npm package antd-country-phone-input receives a total of 0 weekly downloads. As such, antd-country-phone-input popularity was classified as not popular.
We found that antd-country-phone-input demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.