mui-tel-input 5.0.1 → 5.1.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 +0 -1
- package/dist/index.d.ts +13 -0
- package/dist/mui-tel-input.es.js +684 -673
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
[](https://github.com/viclafouch/mui-tel-input/blob/master/LICENSE)
|
|
11
11
|

|
|
12
12
|
[](https://www.npmjs.com/package/mui-tel-input)
|
|
13
|
-
[](https://circleci.com/gh/viclafouch/mui-tel-input/tree/master)
|
|
14
13
|
|
|
15
14
|
<div align="center">
|
|
16
15
|
<img src="https://github.com/viclafouch/mui-tel-input/blob/master/mui-tel-input.gif" width="100%" />
|
package/dist/index.d.ts
CHANGED
|
@@ -26,6 +26,17 @@ export { AsYouType }
|
|
|
26
26
|
|
|
27
27
|
declare type BaseTextFieldProps = Omit<TextFieldProps, 'onChange' | 'select' | 'type' | 'multiline' | 'defaultValue'>;
|
|
28
28
|
|
|
29
|
+
export declare const classes: {
|
|
30
|
+
readonly textField: "MuiTelInput-TextField";
|
|
31
|
+
readonly flag: "MuiTelInput-Flag";
|
|
32
|
+
readonly flagButton: "MuiTelInput-IconButton";
|
|
33
|
+
readonly menu: "MuiTelInput-Menu";
|
|
34
|
+
readonly menuItem: "MuiTelInput-MenuItem";
|
|
35
|
+
readonly listItemIconFlag: "MuiTelInput-ListItemIcon-flag";
|
|
36
|
+
readonly listItemTextCountry: "MuiTelInput-ListItemText-country";
|
|
37
|
+
readonly callingCode: "MuiTelInput-Typography-calling-code";
|
|
38
|
+
};
|
|
39
|
+
|
|
29
40
|
declare type ForceCallingCodeWithDefaultCountry = {
|
|
30
41
|
forceCallingCode: true;
|
|
31
42
|
defaultCountry: MuiTelInputCountry;
|
|
@@ -711,4 +722,6 @@ export declare type MuiTelInputProps = BaseTextFieldProps & ForceCallingCodeWith
|
|
|
711
722
|
|
|
712
723
|
export declare type MuiTelInputReason = 'country' | 'input';
|
|
713
724
|
|
|
725
|
+
export declare const textFieldClass = "MuiTelInput-TextField";
|
|
726
|
+
|
|
714
727
|
export { }
|