@elliemae/ds-form 2.0.0-rc.7 → 2.0.0-rc.8

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.
Files changed (55) hide show
  1. package/package.json +17 -17
  2. package/types/Checkbox/DSCheckbox.d.ts +78 -13
  3. package/types/Checkbox/props.d.ts +58 -12
  4. package/types/CheckboxGroup/DSCheckboxGroup.d.ts +51 -7
  5. package/types/CheckboxGroup/props.d.ts +37 -6
  6. package/types/ComboBox/v2/Combobox.d.ts +56 -1
  7. package/types/ComboBox/v3/ComboBox.d.ts +54 -16
  8. package/types/ComboBox/v3/parts/dropdown-indicator/styled.d.ts +1 -60
  9. package/types/ComboBox/v3/parts/header-list/styled.d.ts +4 -208
  10. package/types/ComboBox/v3/propTypes.d.ts +49 -15
  11. package/types/DateInput/DSDateInput.d.ts +97 -16
  12. package/types/DateInput/props.d.ts +97 -16
  13. package/types/DateInputV2/components/DSDateInput.d.ts +72 -5
  14. package/types/DateInputV2/components/props.d.ts +61 -10
  15. package/types/FloatingLabelInput/DSFloatingLabelInput.d.ts +118 -20
  16. package/types/FormItem/DSFormItemLayout.d.ts +390 -60
  17. package/types/FormItem/Error/DSError.d.ts +21 -3
  18. package/types/FormItem/defaultProps.d.ts +118 -20
  19. package/types/FormItem/props.d.ts +229 -39
  20. package/types/InputGroup/DSInputGroup.d.ts +56 -8
  21. package/types/InputGroup/props.d.ts +43 -7
  22. package/types/InputMask/DSInputMask.d.ts +172 -30
  23. package/types/InputMask/mask_types/DateInputMask.d.ts +34 -33
  24. package/types/InputMask/mask_types/DateTimeInputMask.d.ts +34 -33
  25. package/types/InputMask/mask_types/DictionaryInputMask.d.ts +37 -36
  26. package/types/InputMask/mask_types/NumberInputMask.d.ts +46 -45
  27. package/types/InputMask/mask_types/PhoneInputMask.d.ts +34 -33
  28. package/types/InputMask/mask_types/PhoneInternationalInputMask.d.ts +34 -33
  29. package/types/InputMask/mask_types/SsnInputMask.d.ts +34 -33
  30. package/types/InputMask/mask_types/UsZipCodeInputMask.d.ts +34 -33
  31. package/types/InputMask/mask_types/ZipCodeSearchInputMask.d.ts +34 -33
  32. package/types/InputMask/props.d.ts +172 -30
  33. package/types/InputProtected/DSInputProtected.d.ts +56 -7
  34. package/types/InputProtected/props.d.ts +43 -8
  35. package/types/LargeInputText/DSLargeInputText.d.ts +163 -27
  36. package/types/LargeInputText/props.d.ts +163 -27
  37. package/types/MenuItem/components/MenuItem/index.d.ts +12 -3
  38. package/types/MenuItem/components/MultiMenuItem/MultiMenuItem.d.ts +12 -3
  39. package/types/MenuItem/components/Section/index.d.ts +4 -1
  40. package/types/MenuItem/components/Section/props.d.ts +4 -1
  41. package/types/MenuItem/components/SingleMenuItem/SingleMenuItem.d.ts +7 -2
  42. package/types/MenuItem/components/SubmenuItem/index.d.ts +12 -3
  43. package/types/MenuItem/props.d.ts +7 -2
  44. package/types/Radio/DSRadio.d.ts +79 -13
  45. package/types/RadioGroup/DSRadioGroup.d.ts +51 -7
  46. package/types/RadioGroup/props.d.ts +37 -6
  47. package/types/SearchBox/DSSearchBox.d.ts +146 -21
  48. package/types/SearchBox/NavSearchBox.d.ts +18 -3
  49. package/types/SearchBox/SButton.d.ts +13 -2
  50. package/types/SearchBox/props.d.ts +133 -22
  51. package/types/SearchBox/styled.d.ts +1 -49
  52. package/types/TextBox/DSTextBox.d.ts +146 -21
  53. package/types/TimeInput/DSTimeInput.d.ts +83 -12
  54. package/types/TimeInput/utils.d.ts +1 -1
  55. package/types/Toggle/DSToggle.d.ts +84 -12
@@ -1,3 +1,4 @@
1
+ /// <reference path="../../../../../../shared/typings/react-desc.d.ts" />
1
2
  /// <reference types="react" />
2
3
  declare const DateInputMask: {
3
4
  ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
@@ -35,39 +36,39 @@ declare const DateInputMask: {
35
36
  value: any;
36
37
  }): JSX.Element;
37
38
  propTypes: {
38
- focus: any;
39
- setFocus: any;
40
- setRawMask: any;
41
- cursorPosition: any;
42
- setCursorPosition: any;
43
- lastkey: any;
44
- setLastkey: any;
45
- setRawValue: any;
46
- style: any;
47
- disabled: any;
48
- className: any;
49
- name: any;
50
- maxLength: any;
51
- minLength: any;
52
- fluidWidth: any;
53
- placeholder: any;
54
- value: any;
55
- onChange: any;
56
- onKeyDown: any;
57
- leftComponent: any;
58
- rightComponent: any;
59
- onFocus: any;
60
- onBlur: any;
61
- onPaste: any;
62
- onKeyUp: any;
63
- hasError: any;
64
- readOnly: any;
65
- onClick: any;
66
- clearable: any;
67
- type: any;
68
- innerRef: any;
69
- mask: any;
70
- placeholderChar: any;
39
+ focus: import("react-desc").PropTypesDescValue;
40
+ setFocus: import("react-desc").PropTypesDescValue;
41
+ setRawMask: import("react-desc").PropTypesDescValue;
42
+ cursorPosition: import("react-desc").PropTypesDescValue;
43
+ setCursorPosition: import("react-desc").PropTypesDescValue;
44
+ lastkey: import("react-desc").PropTypesDescValue;
45
+ setLastkey: import("react-desc").PropTypesDescValue;
46
+ setRawValue: import("react-desc").PropTypesDescValue;
47
+ style: import("react-desc").PropTypesDescValue;
48
+ disabled: import("react-desc").PropTypesDescValue;
49
+ className: import("react-desc").PropTypesDescValue;
50
+ name: import("react-desc").PropTypesDescValue;
51
+ maxLength: import("react-desc").PropTypesDescValue;
52
+ minLength: import("react-desc").PropTypesDescValue;
53
+ fluidWidth: import("react-desc").PropTypesDescValue;
54
+ placeholder: import("react-desc").PropTypesDescValue;
55
+ value: import("react-desc").PropTypesDescValue;
56
+ onChange: import("react-desc").PropTypesDescValue;
57
+ onKeyDown: import("react-desc").PropTypesDescValue;
58
+ leftComponent: import("react-desc").PropTypesDescValue;
59
+ rightComponent: import("react-desc").PropTypesDescValue;
60
+ onFocus: import("react-desc").PropTypesDescValue;
61
+ onBlur: import("react-desc").PropTypesDescValue;
62
+ onPaste: import("react-desc").PropTypesDescValue;
63
+ onKeyUp: import("react-desc").PropTypesDescValue;
64
+ hasError: import("react-desc").PropTypesDescValue;
65
+ readOnly: import("react-desc").PropTypesDescValue;
66
+ onClick: import("react-desc").PropTypesDescValue;
67
+ clearable: import("react-desc").PropTypesDescValue;
68
+ type: import("react-desc").PropTypesDescValue;
69
+ innerRef: import("react-desc").PropTypesDescValue;
70
+ mask: import("react-desc").PropTypesDescValue;
71
+ placeholderChar: import("react-desc").PropTypesDescValue;
71
72
  };
72
73
  };
73
74
  export default DateInputMask;
@@ -1,3 +1,4 @@
1
+ /// <reference path="../../../../../../shared/typings/react-desc.d.ts" />
1
2
  /// <reference types="react" />
2
3
  declare const DateTimeInputMask: {
3
4
  ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
@@ -35,39 +36,39 @@ declare const DateTimeInputMask: {
35
36
  value: any;
36
37
  }): JSX.Element;
37
38
  propTypes: {
38
- focus: any;
39
- setFocus: any;
40
- setRawMask: any;
41
- cursorPosition: any;
42
- setCursorPosition: any;
43
- lastkey: any;
44
- setLastkey: any;
45
- setRawValue: any;
46
- style: any;
47
- disabled: any;
48
- className: any;
49
- name: any;
50
- maxLength: any;
51
- minLength: any;
52
- fluidWidth: any;
53
- placeholder: any;
54
- value: any;
55
- onChange: any;
56
- onKeyDown: any;
57
- leftComponent: any;
58
- rightComponent: any;
59
- onFocus: any;
60
- onBlur: any;
61
- onPaste: any;
62
- onKeyUp: any;
63
- hasError: any;
64
- readOnly: any;
65
- onClick: any;
66
- clearable: any;
67
- type: any;
68
- innerRef: any;
69
- mask: any;
70
- placeholderChar: any;
39
+ focus: import("react-desc").PropTypesDescValue;
40
+ setFocus: import("react-desc").PropTypesDescValue;
41
+ setRawMask: import("react-desc").PropTypesDescValue;
42
+ cursorPosition: import("react-desc").PropTypesDescValue;
43
+ setCursorPosition: import("react-desc").PropTypesDescValue;
44
+ lastkey: import("react-desc").PropTypesDescValue;
45
+ setLastkey: import("react-desc").PropTypesDescValue;
46
+ setRawValue: import("react-desc").PropTypesDescValue;
47
+ style: import("react-desc").PropTypesDescValue;
48
+ disabled: import("react-desc").PropTypesDescValue;
49
+ className: import("react-desc").PropTypesDescValue;
50
+ name: import("react-desc").PropTypesDescValue;
51
+ maxLength: import("react-desc").PropTypesDescValue;
52
+ minLength: import("react-desc").PropTypesDescValue;
53
+ fluidWidth: import("react-desc").PropTypesDescValue;
54
+ placeholder: import("react-desc").PropTypesDescValue;
55
+ value: import("react-desc").PropTypesDescValue;
56
+ onChange: import("react-desc").PropTypesDescValue;
57
+ onKeyDown: import("react-desc").PropTypesDescValue;
58
+ leftComponent: import("react-desc").PropTypesDescValue;
59
+ rightComponent: import("react-desc").PropTypesDescValue;
60
+ onFocus: import("react-desc").PropTypesDescValue;
61
+ onBlur: import("react-desc").PropTypesDescValue;
62
+ onPaste: import("react-desc").PropTypesDescValue;
63
+ onKeyUp: import("react-desc").PropTypesDescValue;
64
+ hasError: import("react-desc").PropTypesDescValue;
65
+ readOnly: import("react-desc").PropTypesDescValue;
66
+ onClick: import("react-desc").PropTypesDescValue;
67
+ clearable: import("react-desc").PropTypesDescValue;
68
+ type: import("react-desc").PropTypesDescValue;
69
+ innerRef: import("react-desc").PropTypesDescValue;
70
+ mask: import("react-desc").PropTypesDescValue;
71
+ placeholderChar: import("react-desc").PropTypesDescValue;
71
72
  };
72
73
  };
73
74
  export default DateTimeInputMask;
@@ -1,3 +1,4 @@
1
+ /// <reference path="../../../../../../shared/typings/react-desc.d.ts" />
1
2
  /// <reference types="react" />
2
3
  declare const DictionaryInputMask: {
3
4
  ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, allowedWords, ignoreCase, autoFocus, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
@@ -38,42 +39,42 @@ declare const DictionaryInputMask: {
38
39
  value: any;
39
40
  }): JSX.Element;
40
41
  propTypes: {
41
- focus: any;
42
- setFocus: any;
43
- setRawMask: any;
44
- cursorPosition: any;
45
- setCursorPosition: any;
46
- lastkey: any;
47
- setLastkey: any;
48
- setRawValue: any;
49
- allowedWords: any;
50
- ignoreCase: any;
51
- autoFocus: any;
52
- style: any;
53
- disabled: any;
54
- className: any;
55
- name: any;
56
- maxLength: any;
57
- minLength: any;
58
- fluidWidth: any;
59
- placeholder: any;
60
- value: any;
61
- onChange: any;
62
- onKeyDown: any;
63
- leftComponent: any;
64
- rightComponent: any;
65
- onFocus: any;
66
- onBlur: any;
67
- onPaste: any;
68
- onKeyUp: any;
69
- hasError: any;
70
- readOnly: any;
71
- onClick: any;
72
- clearable: any;
73
- type: any;
74
- innerRef: any;
75
- mask: any;
76
- placeholderChar: any;
42
+ focus: import("react-desc").PropTypesDescValue;
43
+ setFocus: import("react-desc").PropTypesDescValue;
44
+ setRawMask: import("react-desc").PropTypesDescValue;
45
+ cursorPosition: import("react-desc").PropTypesDescValue;
46
+ setCursorPosition: import("react-desc").PropTypesDescValue;
47
+ lastkey: import("react-desc").PropTypesDescValue;
48
+ setLastkey: import("react-desc").PropTypesDescValue;
49
+ setRawValue: import("react-desc").PropTypesDescValue;
50
+ allowedWords: import("react-desc").PropTypesDescValue;
51
+ ignoreCase: import("react-desc").PropTypesDescValue;
52
+ autoFocus: import("react-desc").PropTypesDescValue;
53
+ style: import("react-desc").PropTypesDescValue;
54
+ disabled: import("react-desc").PropTypesDescValue;
55
+ className: import("react-desc").PropTypesDescValue;
56
+ name: import("react-desc").PropTypesDescValue;
57
+ maxLength: import("react-desc").PropTypesDescValue;
58
+ minLength: import("react-desc").PropTypesDescValue;
59
+ fluidWidth: import("react-desc").PropTypesDescValue;
60
+ placeholder: import("react-desc").PropTypesDescValue;
61
+ value: import("react-desc").PropTypesDescValue;
62
+ onChange: import("react-desc").PropTypesDescValue;
63
+ onKeyDown: import("react-desc").PropTypesDescValue;
64
+ leftComponent: import("react-desc").PropTypesDescValue;
65
+ rightComponent: import("react-desc").PropTypesDescValue;
66
+ onFocus: import("react-desc").PropTypesDescValue;
67
+ onBlur: import("react-desc").PropTypesDescValue;
68
+ onPaste: import("react-desc").PropTypesDescValue;
69
+ onKeyUp: import("react-desc").PropTypesDescValue;
70
+ hasError: import("react-desc").PropTypesDescValue;
71
+ readOnly: import("react-desc").PropTypesDescValue;
72
+ onClick: import("react-desc").PropTypesDescValue;
73
+ clearable: import("react-desc").PropTypesDescValue;
74
+ type: import("react-desc").PropTypesDescValue;
75
+ innerRef: import("react-desc").PropTypesDescValue;
76
+ mask: import("react-desc").PropTypesDescValue;
77
+ placeholderChar: import("react-desc").PropTypesDescValue;
77
78
  };
78
79
  };
79
80
  export default DictionaryInputMask;
@@ -1,3 +1,4 @@
1
+ /// <reference path="../../../../../../shared/typings/react-desc.d.ts" />
1
2
  /// <reference types="react" />
2
3
  declare const NumberInputMask: {
3
4
  ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, allowDecimal, allowLeadingZeroes, allowNegative, autoFocus, className, clearable, decimalLimit, decimalSymbol, disabled, fluidWidth, hasError, includeThousandsSeparator, innerRef, integerLimit, leftComponent, maxLength, minLength, name, onBlur, onChange, onClick, onFocus, onKeyDown, onKeyUp, onPaste, placeholder, prefix, readOnly, requireDecimal, rightComponent, style, suffix, thousandsSeparatorSymbol, type, value, ...rest }: {
@@ -47,51 +48,51 @@ declare const NumberInputMask: {
47
48
  value: any;
48
49
  }): JSX.Element;
49
50
  propTypes: {
50
- focus: any;
51
- setFocus: any;
52
- setRawMask: any;
53
- cursorPosition: any;
54
- setCursorPosition: any;
55
- lastkey: any;
56
- setLastkey: any;
57
- setRawValue: any;
58
- allowDecimal: any;
59
- allowLeadingZeroes: any;
60
- allowNegative: any;
61
- autoFocus: any;
62
- className: any;
63
- clearable: any;
64
- decimalLimit: any;
65
- decimalSymbol: any;
66
- disabled: any;
67
- fluidWidth: any;
68
- hasError: any;
69
- includeThousandsSeparator: any;
70
- innerRef: any;
71
- integerLimit: any;
72
- leftComponent: any;
73
- mask: any;
74
- maxLength: any;
75
- minLength: any;
76
- name: any;
77
- onBlur: any;
78
- onChange: any;
79
- onClick: any;
80
- onFocus: any;
81
- onKeyDown: any;
82
- onKeyUp: any;
83
- onPaste: any;
84
- placeholder: any;
85
- placeholderChar: any;
86
- prefix: any;
87
- readOnly: any;
88
- requireDecimal: any;
89
- rightComponent: any;
90
- style: any;
91
- suffix: any;
92
- thousandsSeparatorSymbol: any;
93
- type: any;
94
- value: any;
51
+ focus: import("react-desc").PropTypesDescValue;
52
+ setFocus: import("react-desc").PropTypesDescValue;
53
+ setRawMask: import("react-desc").PropTypesDescValue;
54
+ cursorPosition: import("react-desc").PropTypesDescValue;
55
+ setCursorPosition: import("react-desc").PropTypesDescValue;
56
+ lastkey: import("react-desc").PropTypesDescValue;
57
+ setLastkey: import("react-desc").PropTypesDescValue;
58
+ setRawValue: import("react-desc").PropTypesDescValue;
59
+ allowDecimal: import("react-desc").PropTypesDescValue;
60
+ allowLeadingZeroes: import("react-desc").PropTypesDescValue;
61
+ allowNegative: import("react-desc").PropTypesDescValue;
62
+ autoFocus: import("react-desc").PropTypesDescValue;
63
+ className: import("react-desc").PropTypesDescValue;
64
+ clearable: import("react-desc").PropTypesDescValue;
65
+ decimalLimit: import("react-desc").PropTypesDescValue;
66
+ decimalSymbol: import("react-desc").PropTypesDescValue;
67
+ disabled: import("react-desc").PropTypesDescValue;
68
+ fluidWidth: import("react-desc").PropTypesDescValue;
69
+ hasError: import("react-desc").PropTypesDescValue;
70
+ includeThousandsSeparator: import("react-desc").PropTypesDescValue;
71
+ innerRef: import("react-desc").PropTypesDescValue;
72
+ integerLimit: import("react-desc").PropTypesDescValue;
73
+ leftComponent: import("react-desc").PropTypesDescValue;
74
+ mask: import("react-desc").PropTypesDescValue;
75
+ maxLength: import("react-desc").PropTypesDescValue;
76
+ minLength: import("react-desc").PropTypesDescValue;
77
+ name: import("react-desc").PropTypesDescValue;
78
+ onBlur: import("react-desc").PropTypesDescValue;
79
+ onChange: import("react-desc").PropTypesDescValue;
80
+ onClick: import("react-desc").PropTypesDescValue;
81
+ onFocus: import("react-desc").PropTypesDescValue;
82
+ onKeyDown: import("react-desc").PropTypesDescValue;
83
+ onKeyUp: import("react-desc").PropTypesDescValue;
84
+ onPaste: import("react-desc").PropTypesDescValue;
85
+ placeholder: import("react-desc").PropTypesDescValue;
86
+ placeholderChar: import("react-desc").PropTypesDescValue;
87
+ prefix: import("react-desc").PropTypesDescValue;
88
+ readOnly: import("react-desc").PropTypesDescValue;
89
+ requireDecimal: import("react-desc").PropTypesDescValue;
90
+ rightComponent: import("react-desc").PropTypesDescValue;
91
+ style: import("react-desc").PropTypesDescValue;
92
+ suffix: import("react-desc").PropTypesDescValue;
93
+ thousandsSeparatorSymbol: import("react-desc").PropTypesDescValue;
94
+ type: import("react-desc").PropTypesDescValue;
95
+ value: import("react-desc").PropTypesDescValue;
95
96
  };
96
97
  };
97
98
  export default NumberInputMask;
@@ -1,3 +1,4 @@
1
+ /// <reference path="../../../../../../shared/typings/react-desc.d.ts" />
1
2
  /// <reference types="react" />
2
3
  declare const PhoneInputMask: {
3
4
  ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
@@ -35,39 +36,39 @@ declare const PhoneInputMask: {
35
36
  value: any;
36
37
  }): JSX.Element;
37
38
  propTypes: {
38
- focus: any;
39
- setFocus: any;
40
- setRawMask: any;
41
- cursorPosition: any;
42
- setCursorPosition: any;
43
- lastkey: any;
44
- setLastkey: any;
45
- setRawValue: any;
46
- style: any;
47
- disabled: any;
48
- className: any;
49
- name: any;
50
- maxLength: any;
51
- minLength: any;
52
- fluidWidth: any;
53
- placeholder: any;
54
- value: any;
55
- onChange: any;
56
- onKeyDown: any;
57
- leftComponent: any;
58
- rightComponent: any;
59
- onFocus: any;
60
- onBlur: any;
61
- onPaste: any;
62
- onKeyUp: any;
63
- hasError: any;
64
- readOnly: any;
65
- onClick: any;
66
- clearable: any;
67
- type: any;
68
- innerRef: any;
69
- mask: any;
70
- placeholderChar: any;
39
+ focus: import("react-desc").PropTypesDescValue;
40
+ setFocus: import("react-desc").PropTypesDescValue;
41
+ setRawMask: import("react-desc").PropTypesDescValue;
42
+ cursorPosition: import("react-desc").PropTypesDescValue;
43
+ setCursorPosition: import("react-desc").PropTypesDescValue;
44
+ lastkey: import("react-desc").PropTypesDescValue;
45
+ setLastkey: import("react-desc").PropTypesDescValue;
46
+ setRawValue: import("react-desc").PropTypesDescValue;
47
+ style: import("react-desc").PropTypesDescValue;
48
+ disabled: import("react-desc").PropTypesDescValue;
49
+ className: import("react-desc").PropTypesDescValue;
50
+ name: import("react-desc").PropTypesDescValue;
51
+ maxLength: import("react-desc").PropTypesDescValue;
52
+ minLength: import("react-desc").PropTypesDescValue;
53
+ fluidWidth: import("react-desc").PropTypesDescValue;
54
+ placeholder: import("react-desc").PropTypesDescValue;
55
+ value: import("react-desc").PropTypesDescValue;
56
+ onChange: import("react-desc").PropTypesDescValue;
57
+ onKeyDown: import("react-desc").PropTypesDescValue;
58
+ leftComponent: import("react-desc").PropTypesDescValue;
59
+ rightComponent: import("react-desc").PropTypesDescValue;
60
+ onFocus: import("react-desc").PropTypesDescValue;
61
+ onBlur: import("react-desc").PropTypesDescValue;
62
+ onPaste: import("react-desc").PropTypesDescValue;
63
+ onKeyUp: import("react-desc").PropTypesDescValue;
64
+ hasError: import("react-desc").PropTypesDescValue;
65
+ readOnly: import("react-desc").PropTypesDescValue;
66
+ onClick: import("react-desc").PropTypesDescValue;
67
+ clearable: import("react-desc").PropTypesDescValue;
68
+ type: import("react-desc").PropTypesDescValue;
69
+ innerRef: import("react-desc").PropTypesDescValue;
70
+ mask: import("react-desc").PropTypesDescValue;
71
+ placeholderChar: import("react-desc").PropTypesDescValue;
71
72
  };
72
73
  };
73
74
  export default PhoneInputMask;
@@ -1,3 +1,4 @@
1
+ /// <reference path="../../../../../../shared/typings/react-desc.d.ts" />
1
2
  /// <reference types="react" />
2
3
  declare const PhoneInternationalInputMask: {
3
4
  ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
@@ -35,39 +36,39 @@ declare const PhoneInternationalInputMask: {
35
36
  value: any;
36
37
  }): JSX.Element;
37
38
  propTypes: {
38
- focus: any;
39
- setFocus: any;
40
- setRawMask: any;
41
- cursorPosition: any;
42
- setCursorPosition: any;
43
- lastkey: any;
44
- setLastkey: any;
45
- setRawValue: any;
46
- style: any;
47
- disabled: any;
48
- className: any;
49
- name: any;
50
- maxLength: any;
51
- minLength: any;
52
- fluidWidth: any;
53
- placeholder: any;
54
- value: any;
55
- onChange: any;
56
- onKeyDown: any;
57
- leftComponent: any;
58
- rightComponent: any;
59
- onFocus: any;
60
- onBlur: any;
61
- onPaste: any;
62
- onKeyUp: any;
63
- hasError: any;
64
- readOnly: any;
65
- onClick: any;
66
- clearable: any;
67
- type: any;
68
- innerRef: any;
69
- mask: any;
70
- placeholderChar: any;
39
+ focus: import("react-desc").PropTypesDescValue;
40
+ setFocus: import("react-desc").PropTypesDescValue;
41
+ setRawMask: import("react-desc").PropTypesDescValue;
42
+ cursorPosition: import("react-desc").PropTypesDescValue;
43
+ setCursorPosition: import("react-desc").PropTypesDescValue;
44
+ lastkey: import("react-desc").PropTypesDescValue;
45
+ setLastkey: import("react-desc").PropTypesDescValue;
46
+ setRawValue: import("react-desc").PropTypesDescValue;
47
+ style: import("react-desc").PropTypesDescValue;
48
+ disabled: import("react-desc").PropTypesDescValue;
49
+ className: import("react-desc").PropTypesDescValue;
50
+ name: import("react-desc").PropTypesDescValue;
51
+ maxLength: import("react-desc").PropTypesDescValue;
52
+ minLength: import("react-desc").PropTypesDescValue;
53
+ fluidWidth: import("react-desc").PropTypesDescValue;
54
+ placeholder: import("react-desc").PropTypesDescValue;
55
+ value: import("react-desc").PropTypesDescValue;
56
+ onChange: import("react-desc").PropTypesDescValue;
57
+ onKeyDown: import("react-desc").PropTypesDescValue;
58
+ leftComponent: import("react-desc").PropTypesDescValue;
59
+ rightComponent: import("react-desc").PropTypesDescValue;
60
+ onFocus: import("react-desc").PropTypesDescValue;
61
+ onBlur: import("react-desc").PropTypesDescValue;
62
+ onPaste: import("react-desc").PropTypesDescValue;
63
+ onKeyUp: import("react-desc").PropTypesDescValue;
64
+ hasError: import("react-desc").PropTypesDescValue;
65
+ readOnly: import("react-desc").PropTypesDescValue;
66
+ onClick: import("react-desc").PropTypesDescValue;
67
+ clearable: import("react-desc").PropTypesDescValue;
68
+ type: import("react-desc").PropTypesDescValue;
69
+ innerRef: import("react-desc").PropTypesDescValue;
70
+ mask: import("react-desc").PropTypesDescValue;
71
+ placeholderChar: import("react-desc").PropTypesDescValue;
71
72
  };
72
73
  };
73
74
  export default PhoneInternationalInputMask;
@@ -1,3 +1,4 @@
1
+ /// <reference path="../../../../../../shared/typings/react-desc.d.ts" />
1
2
  /// <reference types="react" />
2
3
  declare const SsnInputMask: {
3
4
  ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
@@ -35,39 +36,39 @@ declare const SsnInputMask: {
35
36
  value: any;
36
37
  }): JSX.Element;
37
38
  propTypes: {
38
- focus: any;
39
- setFocus: any;
40
- setRawMask: any;
41
- cursorPosition: any;
42
- setCursorPosition: any;
43
- lastkey: any;
44
- setLastkey: any;
45
- setRawValue: any;
46
- style: any;
47
- disabled: any;
48
- className: any;
49
- name: any;
50
- maxLength: any;
51
- minLength: any;
52
- fluidWidth: any;
53
- placeholder: any;
54
- value: any;
55
- onChange: any;
56
- onKeyDown: any;
57
- leftComponent: any;
58
- rightComponent: any;
59
- onFocus: any;
60
- onBlur: any;
61
- onPaste: any;
62
- onKeyUp: any;
63
- hasError: any;
64
- readOnly: any;
65
- onClick: any;
66
- clearable: any;
67
- type: any;
68
- innerRef: any;
69
- mask: any;
70
- placeholderChar: any;
39
+ focus: import("react-desc").PropTypesDescValue;
40
+ setFocus: import("react-desc").PropTypesDescValue;
41
+ setRawMask: import("react-desc").PropTypesDescValue;
42
+ cursorPosition: import("react-desc").PropTypesDescValue;
43
+ setCursorPosition: import("react-desc").PropTypesDescValue;
44
+ lastkey: import("react-desc").PropTypesDescValue;
45
+ setLastkey: import("react-desc").PropTypesDescValue;
46
+ setRawValue: import("react-desc").PropTypesDescValue;
47
+ style: import("react-desc").PropTypesDescValue;
48
+ disabled: import("react-desc").PropTypesDescValue;
49
+ className: import("react-desc").PropTypesDescValue;
50
+ name: import("react-desc").PropTypesDescValue;
51
+ maxLength: import("react-desc").PropTypesDescValue;
52
+ minLength: import("react-desc").PropTypesDescValue;
53
+ fluidWidth: import("react-desc").PropTypesDescValue;
54
+ placeholder: import("react-desc").PropTypesDescValue;
55
+ value: import("react-desc").PropTypesDescValue;
56
+ onChange: import("react-desc").PropTypesDescValue;
57
+ onKeyDown: import("react-desc").PropTypesDescValue;
58
+ leftComponent: import("react-desc").PropTypesDescValue;
59
+ rightComponent: import("react-desc").PropTypesDescValue;
60
+ onFocus: import("react-desc").PropTypesDescValue;
61
+ onBlur: import("react-desc").PropTypesDescValue;
62
+ onPaste: import("react-desc").PropTypesDescValue;
63
+ onKeyUp: import("react-desc").PropTypesDescValue;
64
+ hasError: import("react-desc").PropTypesDescValue;
65
+ readOnly: import("react-desc").PropTypesDescValue;
66
+ onClick: import("react-desc").PropTypesDescValue;
67
+ clearable: import("react-desc").PropTypesDescValue;
68
+ type: import("react-desc").PropTypesDescValue;
69
+ innerRef: import("react-desc").PropTypesDescValue;
70
+ mask: import("react-desc").PropTypesDescValue;
71
+ placeholderChar: import("react-desc").PropTypesDescValue;
71
72
  };
72
73
  };
73
74
  export default SsnInputMask;