mui-tel-input 5.1.0 → 5.1.2

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,18 @@ 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 flagContainer: "MuiTelInput-Flag";
32
+ readonly flagImg: "MuiTelInput-FlagImg";
33
+ readonly flagButton: "MuiTelInput-IconButton";
34
+ readonly menu: "MuiTelInput-Menu";
35
+ readonly menuItem: "MuiTelInput-MenuItem";
36
+ readonly listItemIconFlag: "MuiTelInput-ListItemIcon-flag";
37
+ readonly listItemTextCountry: "MuiTelInput-ListItemText-country";
38
+ readonly callingCode: "MuiTelInput-Typography-calling-code";
39
+ };
40
+
29
41
  declare type ForceCallingCodeWithDefaultCountry = {
30
42
  forceCallingCode: true;
31
43
  defaultCountry: MuiTelInputCountry;
@@ -711,4 +723,6 @@ export declare type MuiTelInputProps = BaseTextFieldProps & ForceCallingCodeWith
711
723
 
712
724
  export declare type MuiTelInputReason = 'country' | 'input';
713
725
 
726
+ export declare const textFieldClass = "MuiTelInput-TextField";
727
+
714
728
  export { }