@elliemae/ds-form 2.0.0-rc.5 → 2.0.0-rc.9

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 (114) hide show
  1. package/cjs/ComboBox/v3/ComboBox.js +1 -1
  2. package/cjs/ComboBox/v3/ComboBoxCTX.js +0 -1
  3. package/cjs/ComboBox/v3/parts/controls/styled.js +18 -18
  4. package/cjs/ComboBox/v3/parts/dropdown-indicator/DropdownIndicator.js +0 -3
  5. package/cjs/ComboBox/v3/parts/dropdown-indicator/styled.js +1 -1
  6. package/cjs/ComboBox/v3/parts/header-list/HeaderList.js +39 -36
  7. package/cjs/ComboBox/v3/parts/header-list/styled.js +10 -3
  8. package/cjs/ComboBox/v3/parts/header-list/useHeaderListHandlers.js +3 -4
  9. package/cjs/ComboBox/v3/parts/menu-list/MenuList.js +11 -6
  10. package/cjs/ComboBox/v3/parts/menu-list/styled.js +6 -5
  11. package/cjs/ComboBox/v3/parts/menu-list/useMenuList.js +3 -2
  12. package/cjs/ComboBox/v3/parts/multi-selected-values-container/MultiSelectedValuesContainer.js +13 -7
  13. package/cjs/ComboBox/v3/propTypes.js +12 -13
  14. package/cjs/ComboBox/v3/utils/hooks/useKeyboardNavigation.js +11 -11
  15. package/cjs/MenuItem/components/MenuItem/index.js +1 -1
  16. package/cjs/MenuItem/components/Section/index.js +1 -1
  17. package/cjs/MenuItem/components/SingleMenuItem/SingleMenuItem.js +4 -5
  18. package/cjs/MenuItem/components/SubmenuItem/index.js +1 -1
  19. package/cjs/MenuItem/components/styled.js +7 -2
  20. package/esm/ComboBox/v3/ComboBox.js +1 -1
  21. package/esm/ComboBox/v3/ComboBoxCTX.js +0 -1
  22. package/esm/ComboBox/v3/parts/controls/styled.js +18 -19
  23. package/esm/ComboBox/v3/parts/dropdown-indicator/DropdownIndicator.js +0 -3
  24. package/esm/ComboBox/v3/parts/dropdown-indicator/styled.js +1 -1
  25. package/esm/ComboBox/v3/parts/header-list/HeaderList.js +40 -37
  26. package/esm/ComboBox/v3/parts/header-list/styled.js +10 -5
  27. package/esm/ComboBox/v3/parts/header-list/useHeaderListHandlers.js +3 -4
  28. package/esm/ComboBox/v3/parts/menu-list/MenuList.js +11 -6
  29. package/esm/ComboBox/v3/parts/menu-list/styled.js +6 -5
  30. package/esm/ComboBox/v3/parts/menu-list/useMenuList.js +3 -2
  31. package/esm/ComboBox/v3/parts/multi-selected-values-container/MultiSelectedValuesContainer.js +13 -7
  32. package/esm/ComboBox/v3/propTypes.js +12 -13
  33. package/esm/ComboBox/v3/utils/hooks/useKeyboardNavigation.js +11 -11
  34. package/esm/MenuItem/components/MenuItem/index.js +1 -1
  35. package/esm/MenuItem/components/Section/index.js +1 -1
  36. package/esm/MenuItem/components/SingleMenuItem/SingleMenuItem.js +4 -5
  37. package/esm/MenuItem/components/SubmenuItem/index.js +1 -1
  38. package/esm/MenuItem/components/styled.js +7 -3
  39. package/package.json +32 -24
  40. package/types/Checkbox/DSCheckbox.d.ts +78 -13
  41. package/types/Checkbox/elements/CheckMark.d.ts +1 -1
  42. package/types/Checkbox/props.d.ts +58 -12
  43. package/types/CheckboxGroup/DSCheckboxGroup.d.ts +51 -7
  44. package/types/CheckboxGroup/props.d.ts +37 -6
  45. package/types/ComboBox/v2/Combobox.d.ts +56 -1
  46. package/types/ComboBox/v3/ComboBox.d.ts +54 -17
  47. package/types/ComboBox/v3/parts/a11y-messages/styled.d.ts +1 -1
  48. package/types/ComboBox/v3/parts/container/styled.d.ts +3 -3
  49. package/types/ComboBox/v3/parts/controls/styled.d.ts +5 -5
  50. package/types/ComboBox/v3/parts/controls-input/styled.d.ts +4 -4
  51. package/types/ComboBox/v3/parts/dropdown-indicator/styled.d.ts +1 -60
  52. package/types/ComboBox/v3/parts/empty-state/styled.d.ts +2 -2
  53. package/types/ComboBox/v3/parts/header-list/styled.d.ts +7 -210
  54. package/types/ComboBox/v3/parts/menu-list/styled.d.ts +5 -3
  55. package/types/ComboBox/v3/parts/multi-selected-values-container/styled.d.ts +3 -3
  56. package/types/ComboBox/v3/parts/single-selected-value-container/styled.d.ts +1 -1
  57. package/types/ComboBox/v3/propTypes.d.ts +49 -16
  58. package/types/DateInput/DSDateInput.d.ts +97 -16
  59. package/types/DateInput/props.d.ts +97 -16
  60. package/types/DateInputV2/components/DSDateInput.d.ts +72 -5
  61. package/types/DateInputV2/components/props.d.ts +61 -10
  62. package/types/DateInputV2/components/styled.d.ts +4 -4
  63. package/types/FloatingLabelInput/DSFloatingLabelInput.d.ts +118 -20
  64. package/types/FormItem/DSFormItemLayout.d.ts +390 -60
  65. package/types/FormItem/Error/DSError.d.ts +21 -3
  66. package/types/FormItem/Suffix/Suffix.d.ts +3 -3
  67. package/types/FormItem/defaultProps.d.ts +118 -20
  68. package/types/FormItem/props.d.ts +229 -39
  69. package/types/InputGroup/DSInputGroup.d.ts +56 -8
  70. package/types/InputGroup/props.d.ts +43 -7
  71. package/types/InputMask/DSInputMask.d.ts +172 -30
  72. package/types/InputMask/mask_types/DateInputMask.d.ts +34 -33
  73. package/types/InputMask/mask_types/DateTimeInputMask.d.ts +34 -33
  74. package/types/InputMask/mask_types/DictionaryInputMask.d.ts +37 -36
  75. package/types/InputMask/mask_types/NumberInputMask.d.ts +46 -45
  76. package/types/InputMask/mask_types/PhoneInputMask.d.ts +34 -33
  77. package/types/InputMask/mask_types/PhoneInternationalInputMask.d.ts +34 -33
  78. package/types/InputMask/mask_types/SsnInputMask.d.ts +34 -33
  79. package/types/InputMask/mask_types/UsZipCodeInputMask.d.ts +34 -33
  80. package/types/InputMask/mask_types/ZipCodeSearchInputMask.d.ts +34 -33
  81. package/types/InputMask/props.d.ts +172 -30
  82. package/types/InputProtected/DSInputProtected.d.ts +56 -7
  83. package/types/InputProtected/props.d.ts +43 -8
  84. package/types/LargeInputText/DSLargeInputText.d.ts +163 -27
  85. package/types/LargeInputText/props.d.ts +163 -27
  86. package/types/MenuItem/components/MenuItem/index.d.ts +12 -3
  87. package/types/MenuItem/components/MenuItem/styled.d.ts +1 -1
  88. package/types/MenuItem/components/MultiMenuItem/MultiMenuItem.d.ts +12 -3
  89. package/types/MenuItem/components/MultiMenuItem/styled.d.ts +1 -1
  90. package/types/MenuItem/components/Section/index.d.ts +4 -1
  91. package/types/MenuItem/components/Section/props.d.ts +4 -1
  92. package/types/MenuItem/components/Section/styled.d.ts +2 -2
  93. package/types/MenuItem/components/Separator/styled.d.ts +2 -2
  94. package/types/MenuItem/components/SingleMenuItem/SingleMenuItem.d.ts +7 -2
  95. package/types/MenuItem/components/SubmenuItem/index.d.ts +12 -3
  96. package/types/MenuItem/components/SubmenuItem/styled.d.ts +2 -2
  97. package/types/MenuItem/components/styled.d.ts +3 -3
  98. package/types/MenuItem/props.d.ts +7 -2
  99. package/types/Radio/Circle.d.ts +1 -1
  100. package/types/Radio/DSRadio.d.ts +79 -13
  101. package/types/RadioGroup/DSRadioGroup.d.ts +51 -7
  102. package/types/RadioGroup/props.d.ts +37 -6
  103. package/types/SearchBox/DSSearchBox.d.ts +146 -21
  104. package/types/SearchBox/NavSearchBox.d.ts +18 -3
  105. package/types/SearchBox/SButton.d.ts +13 -2
  106. package/types/SearchBox/props.d.ts +133 -22
  107. package/types/SearchBox/styled.d.ts +1 -49
  108. package/types/TextBox/DSTextBox.d.ts +146 -21
  109. package/types/TimeInput/DSTimeInput.d.ts +83 -12
  110. package/types/TimeInput/utils.d.ts +1 -1
  111. package/types/Toggle/DSToggle.d.ts +84 -12
  112. package/cjs/MenuItem/components/SingleMenuItem/styled.js +0 -19
  113. package/esm/MenuItem/components/SingleMenuItem/styled.js +0 -10
  114. package/types/MenuItem/components/SingleMenuItem/styled.d.ts +0 -2
@@ -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;