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 CHANGED
@@ -10,7 +10,6 @@
10
10
  [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/viclafouch/mui-tel-input/blob/master/LICENSE)
11
11
  ![ts](https://badgen.net/badge/Built%20With/TypeScript/blue)
12
12
  [![npm](https://img.shields.io/npm/v/mui-tel-input)](https://www.npmjs.com/package/mui-tel-input)
13
- [![CircleCI](https://circleci.com/gh/viclafouch/mui-tel-input/tree/master.svg?style=svg)](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 { }