mui-tel-input 3.2.0 → 3.2.1-alpha.1
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/README.md +3 -3
- package/dist/index.stories.d.ts +6 -0
- package/dist/index.test.d.ts +0 -0
- package/dist/mui-tel-input.es.js +449 -413
- package/dist/shared/helpers/__tests__/array.test.d.ts +1 -0
- package/dist/shared/helpers/__tests__/country.test.d.ts +1 -0
- package/dist/shared/helpers/__tests__/dom.test.d.ts +0 -0
- package/dist/shared/helpers/__tests__/intl.test.d.ts +0 -0
- package/dist/shared/helpers/__tests__/ref.test.d.ts +0 -0
- package/dist/shared/helpers/__tests__/string.test.d.ts +0 -0
- package/dist/shared/hooks/__tests__/useMissmatch.test.d.ts +1 -0
- package/dist/testUtils/index.d.ts +11 -0
- package/package.json +23 -22
- package/dist/mui-tel-input.umd.js +0 -16
package/README.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
<img src="https://viclafouch.github.io/mui-tel-input/img/logo.svg" width="80" />
|
|
3
3
|
</div>
|
|
4
4
|
<div align="center">
|
|
5
|
-
<h1>
|
|
6
|
-
<p>A phone number input designed for the React library <a href="https://
|
|
5
|
+
<h1>Material UI tel input</h1>
|
|
6
|
+
<p>A phone number input designed for the React library <a href="https://material-ui.com/">Material UI</a></p>
|
|
7
7
|
</div>
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
@@ -50,7 +50,7 @@ const MyComponent = () => {
|
|
|
50
50
|
|
|
51
51
|
## Changelog
|
|
52
52
|
|
|
53
|
-
Go to [
|
|
53
|
+
Go to [GitHub Releases](https://github.com/viclafouch/mui-tel-input/releases)
|
|
54
54
|
|
|
55
55
|
## TypeScript
|
|
56
56
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ComponentStory } from '@storybook/react';
|
|
3
|
+
import { MuiTelInput, MuiTelInputProps } from './index';
|
|
4
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, Omit<MuiTelInputProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const Primary: ComponentStory<typeof MuiTelInput>;
|
|
File without changes
|