@elliemae/ds-form 2.3.0-alpha.8 → 2.3.0-alpha.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 (261) hide show
  1. package/dist/cjs/ComboBox/v3/parts/menu-list/useItemRenderer.js +4 -4
  2. package/dist/cjs/ComboBox/v3/parts/menu-list/useItemRenderer.js.map +2 -2
  3. package/dist/esm/ComboBox/v3/parts/menu-list/useItemRenderer.js +1 -1
  4. package/dist/esm/ComboBox/v3/parts/menu-list/useItemRenderer.js.map +1 -1
  5. package/dist/types/Checkbox/DSCheckbox.d.ts +102 -0
  6. package/dist/types/Checkbox/defaultProps.d.ts +11 -0
  7. package/dist/types/Checkbox/elements/CheckMark.d.ts +2 -0
  8. package/dist/types/Checkbox/index.d.ts +1 -0
  9. package/dist/types/Checkbox/props.d.ts +60 -0
  10. package/dist/types/Checkbox/tests/DSCheckbox.events.test.d.ts +1 -0
  11. package/dist/types/CheckboxGroup/DSCheckboxGroup.d.ts +72 -0
  12. package/dist/types/CheckboxGroup/defaultProps.d.ts +14 -0
  13. package/dist/types/CheckboxGroup/index.d.ts +1 -0
  14. package/dist/types/CheckboxGroup/props.d.ts +57 -0
  15. package/dist/types/CheckboxGroup/tests/DSCheckboxGroup.events.test.d.ts +1 -0
  16. package/dist/types/ComboBox/DSComboBox.d.ts +3 -0
  17. package/dist/types/ComboBox/index.d.ts +2 -0
  18. package/dist/types/ComboBox/v1/DSComboBox.d.ts +67 -0
  19. package/dist/types/ComboBox/v1/components/AllOption.d.ts +6 -0
  20. package/dist/types/ComboBox/v1/components/ClearIndicator.d.ts +4 -0
  21. package/dist/types/ComboBox/v1/components/Control.d.ts +4 -0
  22. package/dist/types/ComboBox/v1/components/CustomOption.d.ts +9 -0
  23. package/dist/types/ComboBox/v1/components/CustomOptionMulti.d.ts +9 -0
  24. package/dist/types/ComboBox/v1/components/DropdownIndicator.d.ts +21 -0
  25. package/dist/types/ComboBox/v1/components/MenuList.d.ts +4 -0
  26. package/dist/types/ComboBox/v1/components/MultiSelectHeader.d.ts +4 -0
  27. package/dist/types/ComboBox/v1/components/MultiValueLabel.d.ts +6 -0
  28. package/dist/types/ComboBox/v1/components/MultiValueRemove.d.ts +4 -0
  29. package/dist/types/ComboBox/v1/components/SelectMenu.d.ts +4 -0
  30. package/dist/types/ComboBox/v1/components/SingleValueLabel.d.ts +12 -0
  31. package/dist/types/ComboBox/v1/components/ValueContainer.d.ts +6 -0
  32. package/dist/types/ComboBox/v1/components/calculateWidth.d.ts +1 -0
  33. package/dist/types/ComboBox/v1/components/getoptions.d.ts +6 -0
  34. package/dist/types/ComboBox/v1/index.d.ts +2 -0
  35. package/dist/types/ComboBox/v1/withSelectStringValueConverter.d.ts +64 -0
  36. package/dist/types/ComboBox/v2/Combobox.d.ts +70 -0
  37. package/dist/types/ComboBox/v2/components/AllOption.d.ts +6 -0
  38. package/dist/types/ComboBox/v2/components/ClearIndicator.d.ts +4 -0
  39. package/dist/types/ComboBox/v2/components/Content.d.ts +15 -0
  40. package/dist/types/ComboBox/v2/components/Control.d.ts +4 -0
  41. package/dist/types/ComboBox/v2/components/CustomOption.d.ts +9 -0
  42. package/dist/types/ComboBox/v2/components/CustomOptionMulti.d.ts +9 -0
  43. package/dist/types/ComboBox/v2/components/DropdownIndicator.d.ts +24 -0
  44. package/dist/types/ComboBox/v2/components/GroupHeading.d.ts +4 -0
  45. package/dist/types/ComboBox/v2/components/IndicatorSeparator.d.ts +5 -0
  46. package/dist/types/ComboBox/v2/components/LoadingIndicator.d.ts +4 -0
  47. package/dist/types/ComboBox/v2/components/MenuList.d.ts +4 -0
  48. package/dist/types/ComboBox/v2/components/MultiSelectHeader.d.ts +10 -0
  49. package/dist/types/ComboBox/v2/components/MultiValueLabel.d.ts +6 -0
  50. package/dist/types/ComboBox/v2/components/MultiValueRemove.d.ts +7 -0
  51. package/dist/types/ComboBox/v2/components/SelectMenu.d.ts +4 -0
  52. package/dist/types/ComboBox/v2/components/SingleValueLabel.d.ts +12 -0
  53. package/dist/types/ComboBox/v2/components/ValueContainer.d.ts +6 -0
  54. package/dist/types/ComboBox/v2/components/calculateWidth.d.ts +1 -0
  55. package/dist/types/ComboBox/v2/components/getoptions.d.ts +6 -0
  56. package/dist/types/ComboBox/v2/components/tests/ClearIndicator.test.d.ts +1 -0
  57. package/dist/types/ComboBox/v2/components/useMenuListHeight.d.ts +1 -0
  58. package/dist/types/ComboBox/v2/components/utils.d.ts +1 -0
  59. package/dist/types/ComboBox/v2/context.d.ts +2 -0
  60. package/dist/types/ComboBox/v2/index.d.ts +2 -0
  61. package/dist/types/ComboBox/v2/mockOptions.d.ts +5 -0
  62. package/dist/types/ComboBox/v2/tests/Combobox.test.d.ts +1 -0
  63. package/dist/types/ComboBox/v3/ComboBox.d.ts +62 -0
  64. package/dist/types/ComboBox/v3/ComboBoxCTX.d.ts +6 -0
  65. package/dist/types/ComboBox/v3/ComboboxDataTestids.d.ts +11 -0
  66. package/dist/types/ComboBox/v3/config/constants.d.ts +8 -0
  67. package/dist/types/ComboBox/v3/config/useComboBox.d.ts +2 -0
  68. package/dist/types/ComboBox/v3/config/useGetPropsWithDefault.d.ts +2 -0
  69. package/dist/types/ComboBox/v3/index.d.ts +1 -0
  70. package/dist/types/ComboBox/v3/parts/a11y-messages/MultiAllyMessages.d.ts +3 -0
  71. package/dist/types/ComboBox/v3/parts/a11y-messages/SingleAllyMessages.d.ts +3 -0
  72. package/dist/types/ComboBox/v3/parts/a11y-messages/index.d.ts +2 -0
  73. package/dist/types/ComboBox/v3/parts/a11y-messages/styled.d.ts +1 -0
  74. package/dist/types/ComboBox/v3/parts/container/Container.d.ts +3 -0
  75. package/dist/types/ComboBox/v3/parts/container/index.d.ts +1 -0
  76. package/dist/types/ComboBox/v3/parts/container/styled.d.ts +3 -0
  77. package/dist/types/ComboBox/v3/parts/controls/Controls.d.ts +3 -0
  78. package/dist/types/ComboBox/v3/parts/controls/index.d.ts +1 -0
  79. package/dist/types/ComboBox/v3/parts/controls/styled.d.ts +7 -0
  80. package/dist/types/ComboBox/v3/parts/controls-input/ControlsInput.d.ts +3 -0
  81. package/dist/types/ComboBox/v3/parts/controls-input/styled.d.ts +4 -0
  82. package/dist/types/ComboBox/v3/parts/controls-input/useControlsInput.d.ts +12 -0
  83. package/dist/types/ComboBox/v3/parts/dropdown-indicator/DropdownIndicator.d.ts +3 -0
  84. package/dist/types/ComboBox/v3/parts/dropdown-indicator/index.d.ts +0 -0
  85. package/dist/types/ComboBox/v3/parts/dropdown-indicator/styled.d.ts +1 -0
  86. package/dist/types/ComboBox/v3/parts/empty-state/index.d.ts +3 -0
  87. package/dist/types/ComboBox/v3/parts/empty-state/styled.d.ts +2 -0
  88. package/dist/types/ComboBox/v3/parts/header-list/HeaderList.d.ts +3 -0
  89. package/dist/types/ComboBox/v3/parts/header-list/index.d.ts +1 -0
  90. package/dist/types/ComboBox/v3/parts/header-list/styled.d.ts +7 -0
  91. package/dist/types/ComboBox/v3/parts/header-list/useHeaderListHandlers.d.ts +12 -0
  92. package/dist/types/ComboBox/v3/parts/menu-list/MenuList.d.ts +3 -0
  93. package/dist/types/ComboBox/v3/parts/menu-list/index.d.ts +1 -0
  94. package/dist/types/ComboBox/v3/parts/menu-list/styled.d.ts +10 -0
  95. package/dist/types/ComboBox/v3/parts/menu-list/useItemRenderer.d.ts +2 -0
  96. package/dist/types/ComboBox/v3/parts/menu-list/useMenuList.d.ts +2 -0
  97. package/dist/types/ComboBox/v3/parts/multi-selected-values-container/MultiSelectedValuesContainer.d.ts +3 -0
  98. package/dist/types/ComboBox/v3/parts/multi-selected-values-container/index.d.ts +1 -0
  99. package/dist/types/ComboBox/v3/parts/multi-selected-values-container/styled.d.ts +3 -0
  100. package/dist/types/ComboBox/v3/parts/multi-selected-values-container/useGroupPills.d.ts +2 -0
  101. package/dist/types/ComboBox/v3/parts/single-selected-value-container/SingleSelectedValueContainer.d.ts +3 -0
  102. package/dist/types/ComboBox/v3/parts/single-selected-value-container/index.d.ts +1 -0
  103. package/dist/types/ComboBox/v3/parts/single-selected-value-container/styled.d.ts +1 -0
  104. package/dist/types/ComboBox/v3/propTypes.d.ts +51 -0
  105. package/dist/types/ComboBox/v3/tests/combobox-general.test.d.ts +1 -0
  106. package/dist/types/ComboBox/v3/tests/combobox-multi-select.test.d.ts +1 -0
  107. package/dist/types/ComboBox/v3/tests/combobox-single-select.test.d.ts +1 -0
  108. package/dist/types/ComboBox/v3/tests/combobox-special-keys.test.d.ts +1 -0
  109. package/dist/types/ComboBox/v3/tests/utils.d.ts +22 -0
  110. package/dist/types/ComboBox/v3/utils/hooks/useKeyboardNavigation.d.ts +4 -0
  111. package/dist/types/ComboBox/v3/utils/hooks/useOnElementResize.d.ts +3 -0
  112. package/dist/types/ComboBox/v3/utils/listHelper.d.ts +7 -0
  113. package/dist/types/ComboBoxFreeSolo/ComboBoxFreeSolo.d.ts +78 -0
  114. package/dist/types/ComboBoxFreeSolo/components/MultiValueLabel.d.ts +6 -0
  115. package/dist/types/ComboBoxFreeSolo/components/MultiValueRemove.d.ts +6 -0
  116. package/dist/types/ComboBoxFreeSolo/components/SingleValue.d.ts +3 -0
  117. package/dist/types/ComboBoxFreeSolo/components/SingleValueRemove.d.ts +6 -0
  118. package/dist/types/ComboBoxFreeSolo/index.d.ts +1 -0
  119. package/dist/types/DateInput/DSDateInput.d.ts +143 -0
  120. package/dist/types/DateInput/components/DateInputImpl.d.ts +41 -0
  121. package/dist/types/DateInput/components/DateInputs.d.ts +41 -0
  122. package/dist/types/DateInput/components/utils.d.ts +40 -0
  123. package/dist/types/DateInput/defaultProps.d.ts +18 -0
  124. package/dist/types/DateInput/index.d.ts +1 -0
  125. package/dist/types/DateInput/props.d.ts +173 -0
  126. package/dist/types/DateInput/tests/DSDateInput.events.test.d.ts +1 -0
  127. package/dist/types/DateInputV2/components/DSDateInput.d.ts +97 -0
  128. package/dist/types/DateInputV2/components/DateInputs.d.ts +33 -0
  129. package/dist/types/DateInputV2/components/helpers.d.ts +1 -0
  130. package/dist/types/DateInputV2/components/props.d.ts +104 -0
  131. package/dist/types/DateInputV2/components/propsTypes.d.ts +21 -0
  132. package/dist/types/DateInputV2/components/styled.d.ts +5 -0
  133. package/dist/types/DateInputV2/components/utils.d.ts +42 -0
  134. package/dist/types/DateInputV2/index.d.ts +2 -0
  135. package/dist/types/DateInputV2/tests/DateInput.test.d.ts +1 -0
  136. package/dist/types/ExpandableInput/DSExpandableInput.d.ts +16 -0
  137. package/dist/types/ExpandableInput/ExpandableInputImpl.d.ts +7 -0
  138. package/dist/types/ExpandableInput/index.d.ts +1 -0
  139. package/dist/types/FloatingLabelInput/DSFloatingLabelInput.d.ts +193 -0
  140. package/dist/types/FloatingLabelInput/FloatingLabelInputImpl.d.ts +27 -0
  141. package/dist/types/FloatingLabelInput/getSvgPath.d.ts +10 -0
  142. package/dist/types/FloatingLabelInput/index.d.ts +1 -0
  143. package/dist/types/FormItem/DSFormItemLayout.d.ts +479 -0
  144. package/dist/types/FormItem/Error/DSError.d.ts +31 -0
  145. package/dist/types/FormItem/Feedback.d.ts +7 -0
  146. package/dist/types/FormItem/Label/DSLabel.d.ts +24 -0
  147. package/dist/types/FormItem/Suffix/Suffix.d.ts +4 -0
  148. package/dist/types/FormItem/ValidationFieldWrapper.d.ts +19 -0
  149. package/dist/types/FormItem/defaultProps.d.ts +197 -0
  150. package/dist/types/FormItem/index.d.ts +2 -0
  151. package/dist/types/FormItem/props.d.ts +270 -0
  152. package/dist/types/FormItem/tests/DSFormItem.events.test.d.ts +1 -0
  153. package/dist/types/FormItem/variants.d.ts +8 -0
  154. package/dist/types/Input/DSInput.d.ts +32 -0
  155. package/dist/types/Input/InputAddonWrapper.d.ts +15 -0
  156. package/dist/types/Input/InputImpl.d.ts +74 -0
  157. package/dist/types/Input/index.d.ts +1 -0
  158. package/dist/types/Input/tests/Input.test.d.ts +1 -0
  159. package/dist/types/InputGroup/AddonWrapper.d.ts +8 -0
  160. package/dist/types/InputGroup/DSInputGroup.d.ts +72 -0
  161. package/dist/types/InputGroup/defaultProps.d.ts +8 -0
  162. package/dist/types/InputGroup/index.d.ts +1 -0
  163. package/dist/types/InputGroup/props.d.ts +60 -0
  164. package/dist/types/InputGroup/tests/DSInputGroup.events.test.d.ts +1 -0
  165. package/dist/types/InputMask/DSInputMask.d.ts +218 -0
  166. package/dist/types/InputMask/DSInputMaskDeprecated.d.ts +18 -0
  167. package/dist/types/InputMask/InputMaskContext.d.ts +18 -0
  168. package/dist/types/InputMask/MaskPipes.d.ts +18 -0
  169. package/dist/types/InputMask/MaskTypes.d.ts +15 -0
  170. package/dist/types/InputMask/addons/AutoCorrectedDatePipe.d.ts +8 -0
  171. package/dist/types/InputMask/defaultProps.d.ts +28 -0
  172. package/dist/types/InputMask/index.d.ts +1 -0
  173. package/dist/types/InputMask/mask_types/DateInputMask.d.ts +75 -0
  174. package/dist/types/InputMask/mask_types/DateTimeInputMask.d.ts +75 -0
  175. package/dist/types/InputMask/mask_types/DictionaryInputMask.d.ts +81 -0
  176. package/dist/types/InputMask/mask_types/NumberInputMask.d.ts +99 -0
  177. package/dist/types/InputMask/mask_types/PhoneInputMask.d.ts +75 -0
  178. package/dist/types/InputMask/mask_types/PhoneInternationalInputMask.d.ts +75 -0
  179. package/dist/types/InputMask/mask_types/SsnInputMask.d.ts +75 -0
  180. package/dist/types/InputMask/mask_types/UsZipCodeInputMask.d.ts +75 -0
  181. package/dist/types/InputMask/mask_types/ZipCodeSearchInputMask.d.ts +75 -0
  182. package/dist/types/InputMask/mask_types/index.d.ts +42 -0
  183. package/dist/types/InputMask/props.d.ts +254 -0
  184. package/dist/types/InputMask/tests/DSInputMask.test.d.ts +1 -0
  185. package/dist/types/InputMask/tests/NumberInputMask.test.d.ts +1 -0
  186. package/dist/types/InputMask/tests/events/DateInputMask.events.test.d.ts +1 -0
  187. package/dist/types/InputMask/tests/events/DateTimeInputMask.events.test.d.ts +1 -0
  188. package/dist/types/InputMask/tests/events/NumberInputMask.events.test.d.ts +1 -0
  189. package/dist/types/InputMask/tests/events/PercentInputMask.events.test.d.ts +1 -0
  190. package/dist/types/InputMask/tests/events/PhoneInputMask.events.test.d.ts +1 -0
  191. package/dist/types/InputMask/tests/events/PhoneInternationalInputMask.events.test.d.ts +1 -0
  192. package/dist/types/InputMask/tests/events/SsnInputMask.events.test.d.ts +1 -0
  193. package/dist/types/InputMask/tests/events/UsZipCodeInputMask.events.test.d.ts +1 -0
  194. package/dist/types/InputMask/tests/events/ZipCodeSearchInputMask.events.test.d.ts +1 -0
  195. package/dist/types/InputMask/types/index.d.ts +5 -0
  196. package/dist/types/InputMask/utils/setCaretPosition.d.ts +3 -0
  197. package/dist/types/InputProtected/DSInputProtected.d.ts +70 -0
  198. package/dist/types/InputProtected/defaultProps.d.ts +4 -0
  199. package/dist/types/InputProtected/index.d.ts +2 -0
  200. package/dist/types/InputProtected/options.d.ts +8 -0
  201. package/dist/types/InputProtected/props.d.ts +49 -0
  202. package/dist/types/InputProtected/tests/DSInputProtected.events.test.d.ts +1 -0
  203. package/dist/types/InputProtected/tests/DSInputProtected.test.d.ts +1 -0
  204. package/dist/types/LargeInputText/DSLargeInputText.d.ts +233 -0
  205. package/dist/types/LargeInputText/defaultProps.d.ts +31 -0
  206. package/dist/types/LargeInputText/index.d.ts +1 -0
  207. package/dist/types/LargeInputText/props.d.ts +231 -0
  208. package/dist/types/LargeInputText/tests/DSLargeInputText.events.test.d.ts +1 -0
  209. package/dist/types/LargeInputText/tests/DSLargeInputText.test.d.ts +1 -0
  210. package/dist/types/MenuItem/components/MenuItem/index.d.ts +20 -0
  211. package/dist/types/MenuItem/components/MenuItem/styled.d.ts +1 -0
  212. package/dist/types/MenuItem/components/MultiMenuItem/MultiMenuItem.d.ts +21 -0
  213. package/dist/types/MenuItem/components/MultiMenuItem/styled.d.ts +1 -0
  214. package/dist/types/MenuItem/components/Section/index.d.ts +12 -0
  215. package/dist/types/MenuItem/components/Section/props.d.ts +14 -0
  216. package/dist/types/MenuItem/components/Section/styled.d.ts +2 -0
  217. package/dist/types/MenuItem/components/Separator/index.d.ts +8 -0
  218. package/dist/types/MenuItem/components/Separator/styled.d.ts +2 -0
  219. package/dist/types/MenuItem/components/SingleMenuItem/SingleMenuItem.d.ts +16 -0
  220. package/dist/types/MenuItem/components/SubmenuItem/index.d.ts +20 -0
  221. package/dist/types/MenuItem/components/index.d.ts +6 -0
  222. package/dist/types/MenuItem/index.d.ts +1 -0
  223. package/dist/types/MenuItem/props.d.ts +38 -0
  224. package/dist/types/Radio/Circle.d.ts +8 -0
  225. package/dist/types/Radio/DSRadio.d.ts +157 -0
  226. package/dist/types/Radio/index.d.ts +1 -0
  227. package/dist/types/RadioGroup/DSRadioGroup.d.ts +72 -0
  228. package/dist/types/RadioGroup/defaultProps.d.ts +12 -0
  229. package/dist/types/RadioGroup/index.d.ts +1 -0
  230. package/dist/types/RadioGroup/props.d.ts +56 -0
  231. package/dist/types/RadioGroup/tests/DSRadioGroup.events.test.d.ts +1 -0
  232. package/dist/types/RequiredMark/RequiredMark.d.ts +7 -0
  233. package/dist/types/RequiredMark/index.d.ts +1 -0
  234. package/dist/types/SearchBox/DSSearchBox.d.ts +176 -0
  235. package/dist/types/SearchBox/NavSearchBox.d.ts +53 -0
  236. package/dist/types/SearchBox/SButton.d.ts +30 -0
  237. package/dist/types/SearchBox/SearchBoxToggle.d.ts +13 -0
  238. package/dist/types/SearchBox/defaultProps.d.ts +26 -0
  239. package/dist/types/SearchBox/index.d.ts +3 -0
  240. package/dist/types/SearchBox/props.d.ts +173 -0
  241. package/dist/types/SearchBox/styled.d.ts +1 -0
  242. package/dist/types/SearchBox/tests/DSNavSearchBox.events.test.d.ts +1 -0
  243. package/dist/types/SearchBox/tests/DSSearchBox.events.test.d.ts +1 -0
  244. package/dist/types/SearchBox/tests/DSSearchBox.test.d.ts +1 -0
  245. package/dist/types/SearchBox/useSearch.d.ts +9 -0
  246. package/dist/types/TextBox/DSTextBox.d.ts +207 -0
  247. package/dist/types/TextBox/index.d.ts +1 -0
  248. package/dist/types/TextBox/tests/DSTextBox.test.d.ts +1 -0
  249. package/dist/types/TimeInput/DSTimeInput.d.ts +122 -0
  250. package/dist/types/TimeInput/TimeInputImpl.d.ts +56 -0
  251. package/dist/types/TimeInput/TimeInputs.d.ts +18 -0
  252. package/dist/types/TimeInput/index.d.ts +1 -0
  253. package/dist/types/TimeInput/utils.d.ts +39 -0
  254. package/dist/types/Toggle/DSToggle.d.ts +134 -0
  255. package/dist/types/Toggle/DSToggleImpl.d.ts +57 -0
  256. package/dist/types/Toggle/DSToggleRender.d.ts +33 -0
  257. package/dist/types/Toggle/index.d.ts +1 -0
  258. package/dist/types/Toggle/props.d.ts +47 -0
  259. package/dist/types/Toggle/toggleHelper.d.ts +24 -0
  260. package/dist/types/index.d.ts +22 -0
  261. package/package.json +23 -23
@@ -0,0 +1,72 @@
1
+ /// <reference path="../../../../../shared/typings/react-desc.d.ts" />
2
+ /// <reference types="react" />
3
+ declare const DSInputGroup: {
4
+ ({ containerProps, innerRef, className, style, leftAddon, rightAddon, children: InputComponents, }: {
5
+ containerProps: any;
6
+ innerRef: any;
7
+ className: any;
8
+ style: any;
9
+ leftAddon: any;
10
+ rightAddon: any;
11
+ children: any;
12
+ }): JSX.Element;
13
+ propTypes: {
14
+ containerProps: {
15
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
16
+ deprecated: import("react-desc").PropTypesDescValidator;
17
+ };
18
+ isRequired: import("react-desc").PropTypesDescValue;
19
+ };
20
+ innerRef: {
21
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
22
+ deprecated: import("react-desc").PropTypesDescValidator;
23
+ };
24
+ isRequired: import("react-desc").PropTypesDescValue;
25
+ };
26
+ className: {
27
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
28
+ deprecated: import("react-desc").PropTypesDescValidator;
29
+ };
30
+ isRequired: import("react-desc").PropTypesDescValue;
31
+ };
32
+ style: {
33
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
34
+ deprecated: import("react-desc").PropTypesDescValidator;
35
+ };
36
+ isRequired: import("react-desc").PropTypesDescValue;
37
+ };
38
+ leftAddon: {
39
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
40
+ deprecated: import("react-desc").PropTypesDescValidator;
41
+ };
42
+ isRequired: import("react-desc").PropTypesDescValue;
43
+ };
44
+ rightAddon: {
45
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
46
+ deprecated: import("react-desc").PropTypesDescValidator;
47
+ };
48
+ isRequired: import("react-desc").PropTypesDescValue;
49
+ };
50
+ children: {
51
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
52
+ deprecated: import("react-desc").PropTypesDescValidator;
53
+ };
54
+ isRequired: import("react-desc").PropTypesDescValue;
55
+ };
56
+ };
57
+ defaultProps: {
58
+ containerProps: {};
59
+ innerRef: null;
60
+ className: string;
61
+ style: {};
62
+ leftAddon: null;
63
+ rightAddon: null;
64
+ };
65
+ };
66
+ declare const DSInputGroupWithSchema: {
67
+ (props?: unknown): JSX.Element;
68
+ propTypes: unknown;
69
+ toTypescript: () => import("react-desc").TypescriptSchema;
70
+ };
71
+ export default DSInputGroup;
72
+ export { DSInputGroupWithSchema, DSInputGroup };
@@ -0,0 +1,8 @@
1
+ export declare const defaultProps: {
2
+ containerProps: {};
3
+ innerRef: null;
4
+ className: string;
5
+ style: {};
6
+ leftAddon: null;
7
+ rightAddon: null;
8
+ };
@@ -0,0 +1 @@
1
+ export { default, DSInputGroupWithSchema, DSInputGroup } from './DSInputGroup';
@@ -0,0 +1,60 @@
1
+ /// <reference path="../../../../../shared/typings/react-desc.d.ts" />
2
+ export declare const props: {
3
+ /** props injected to wrapper of page header */
4
+ containerProps: {
5
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
6
+ deprecated: import("react-desc").PropTypesDescValidator;
7
+ };
8
+ isRequired: import("react-desc").PropTypesDescValue;
9
+ };
10
+ /** inner ref for input group wrapper */
11
+ innerRef: {
12
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
13
+ deprecated: import("react-desc").PropTypesDescValidator;
14
+ };
15
+ isRequired: import("react-desc").PropTypesDescValue;
16
+ };
17
+ /** class for input group wrapper */
18
+ className: {
19
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
20
+ deprecated: import("react-desc").PropTypesDescValidator;
21
+ };
22
+ isRequired: import("react-desc").PropTypesDescValue;
23
+ };
24
+ /**
25
+ * Set style for the input group
26
+ */
27
+ style: {
28
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
29
+ deprecated: import("react-desc").PropTypesDescValidator;
30
+ };
31
+ isRequired: import("react-desc").PropTypesDescValue;
32
+ };
33
+ /**
34
+ * Component to be added at the left side of the input
35
+ */
36
+ leftAddon: {
37
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
38
+ deprecated: import("react-desc").PropTypesDescValidator;
39
+ };
40
+ isRequired: import("react-desc").PropTypesDescValue;
41
+ };
42
+ /**
43
+ * Component to be added at the right side of the input
44
+ */
45
+ rightAddon: {
46
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
47
+ deprecated: import("react-desc").PropTypesDescValidator;
48
+ };
49
+ isRequired: import("react-desc").PropTypesDescValue;
50
+ };
51
+ /**
52
+ * Input components to show
53
+ */
54
+ children: {
55
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
56
+ deprecated: import("react-desc").PropTypesDescValidator;
57
+ };
58
+ isRequired: import("react-desc").PropTypesDescValue;
59
+ };
60
+ };
@@ -0,0 +1,218 @@
1
+ /// <reference path="../../../../../shared/typings/react-desc.d.ts" />
2
+ import { MASK_TYPES } from './MaskTypes';
3
+ import { MASK_PIPES } from './MaskPipes';
4
+ declare const DSInputMask: {
5
+ ({ "aria-label": ariaLabel, autoFocus, innerRef, mask, pipe, value: valueOrEvent, ...rest }: {
6
+ [x: string]: any;
7
+ "aria-label"?: string | undefined;
8
+ autoFocus: any;
9
+ innerRef: any;
10
+ mask: any;
11
+ pipe: any;
12
+ value: any;
13
+ }): any;
14
+ propTypes: {
15
+ autoFocus: {
16
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
17
+ deprecated: import("react-desc").PropTypesDescValidator;
18
+ };
19
+ isRequired: import("react-desc").PropTypesDescValue;
20
+ };
21
+ style: {
22
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
23
+ deprecated: import("react-desc").PropTypesDescValidator;
24
+ };
25
+ isRequired: import("react-desc").PropTypesDescValue;
26
+ };
27
+ disabled: {
28
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
29
+ deprecated: import("react-desc").PropTypesDescValidator;
30
+ };
31
+ isRequired: import("react-desc").PropTypesDescValue;
32
+ };
33
+ disableTooltip: {
34
+ deprecated: import("react-desc").PropTypesDescValidator;
35
+ };
36
+ className: {
37
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
38
+ deprecated: import("react-desc").PropTypesDescValidator;
39
+ };
40
+ isRequired: import("react-desc").PropTypesDescValue;
41
+ };
42
+ name: {
43
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
44
+ deprecated: import("react-desc").PropTypesDescValidator;
45
+ };
46
+ isRequired: import("react-desc").PropTypesDescValue;
47
+ };
48
+ maxLength: {
49
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
50
+ deprecated: import("react-desc").PropTypesDescValidator;
51
+ };
52
+ isRequired: import("react-desc").PropTypesDescValue;
53
+ };
54
+ minLength: {
55
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
56
+ deprecated: import("react-desc").PropTypesDescValidator;
57
+ };
58
+ isRequired: import("react-desc").PropTypesDescValue;
59
+ };
60
+ fluidWidth: {
61
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
62
+ deprecated: import("react-desc").PropTypesDescValidator;
63
+ };
64
+ isRequired: import("react-desc").PropTypesDescValue;
65
+ };
66
+ isShowElipsisActive: {
67
+ deprecated: import("react-desc").PropTypesDescValidator;
68
+ };
69
+ placeholder: {
70
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
71
+ deprecated: import("react-desc").PropTypesDescValidator;
72
+ };
73
+ isRequired: import("react-desc").PropTypesDescValue;
74
+ };
75
+ onKeyDown: {
76
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
77
+ deprecated: import("react-desc").PropTypesDescValidator;
78
+ };
79
+ isRequired: import("react-desc").PropTypesDescValue;
80
+ };
81
+ onClick: {
82
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
83
+ deprecated: import("react-desc").PropTypesDescValidator;
84
+ };
85
+ isRequired: import("react-desc").PropTypesDescValue;
86
+ };
87
+ onChange: {
88
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
89
+ deprecated: import("react-desc").PropTypesDescValidator;
90
+ };
91
+ isRequired: import("react-desc").PropTypesDescValue;
92
+ };
93
+ onFocus: {
94
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
95
+ deprecated: import("react-desc").PropTypesDescValidator;
96
+ };
97
+ isRequired: import("react-desc").PropTypesDescValue;
98
+ };
99
+ onBlur: {
100
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
101
+ deprecated: import("react-desc").PropTypesDescValidator;
102
+ };
103
+ isRequired: import("react-desc").PropTypesDescValue;
104
+ };
105
+ onPaste: {
106
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
107
+ deprecated: import("react-desc").PropTypesDescValidator;
108
+ };
109
+ isRequired: import("react-desc").PropTypesDescValue;
110
+ };
111
+ onKeyUp: {
112
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
113
+ deprecated: import("react-desc").PropTypesDescValidator;
114
+ };
115
+ isRequired: import("react-desc").PropTypesDescValue;
116
+ };
117
+ value: {
118
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
119
+ deprecated: import("react-desc").PropTypesDescValidator;
120
+ };
121
+ isRequired: import("react-desc").PropTypesDescValue;
122
+ };
123
+ hasError: {
124
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
125
+ deprecated: import("react-desc").PropTypesDescValidator;
126
+ };
127
+ isRequired: import("react-desc").PropTypesDescValue;
128
+ };
129
+ readOnly: {
130
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
131
+ deprecated: import("react-desc").PropTypesDescValidator;
132
+ };
133
+ isRequired: import("react-desc").PropTypesDescValue;
134
+ };
135
+ innerRef: {
136
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
137
+ deprecated: import("react-desc").PropTypesDescValidator;
138
+ };
139
+ isRequired: import("react-desc").PropTypesDescValue;
140
+ };
141
+ type: {
142
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
143
+ deprecated: import("react-desc").PropTypesDescValidator;
144
+ };
145
+ isRequired: import("react-desc").PropTypesDescValue;
146
+ };
147
+ clearable: {
148
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
149
+ deprecated: import("react-desc").PropTypesDescValidator;
150
+ };
151
+ isRequired: import("react-desc").PropTypesDescValue;
152
+ };
153
+ leftComponent: {
154
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
155
+ deprecated: import("react-desc").PropTypesDescValidator;
156
+ };
157
+ isRequired: import("react-desc").PropTypesDescValue;
158
+ };
159
+ rightComponent: {
160
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
161
+ deprecated: import("react-desc").PropTypesDescValidator;
162
+ };
163
+ isRequired: import("react-desc").PropTypesDescValue;
164
+ };
165
+ mask: {
166
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
167
+ deprecated: import("react-desc").PropTypesDescValidator;
168
+ };
169
+ isRequired: import("react-desc").PropTypesDescValue;
170
+ };
171
+ pipe: {
172
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
173
+ deprecated: import("react-desc").PropTypesDescValidator;
174
+ };
175
+ isRequired: import("react-desc").PropTypesDescValue;
176
+ };
177
+ useSubfix: {
178
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
179
+ deprecated: import("react-desc").PropTypesDescValidator;
180
+ };
181
+ isRequired: import("react-desc").PropTypesDescValue;
182
+ };
183
+ placeholderChar: {
184
+ deprecated: import("react-desc").PropTypesDescValidator;
185
+ };
186
+ };
187
+ defaultProps: {
188
+ autoFocus: boolean;
189
+ style: {};
190
+ disabled: boolean;
191
+ className: string;
192
+ name: string;
193
+ maxLength: number;
194
+ minLength: number;
195
+ fluidWidth: boolean;
196
+ onKeyDown: () => null;
197
+ onClick: () => null;
198
+ onChange: () => null;
199
+ onFocus: () => null;
200
+ onBlur: () => null;
201
+ onPaste: () => null;
202
+ onKeyUp: () => null;
203
+ value: string;
204
+ hasError: boolean;
205
+ readOnly: boolean;
206
+ innerRef: null;
207
+ type: string;
208
+ clearable: boolean;
209
+ leftComponent: null;
210
+ rightComponent: null;
211
+ mask: string;
212
+ pipe: null;
213
+ useSubfix: string;
214
+ };
215
+ };
216
+ declare const DSInputMaskWithSchema: any;
217
+ export { MASK_TYPES, MASK_PIPES, DSInputMaskWithSchema, DSInputMask };
218
+ export default DSInputMask;
@@ -0,0 +1,18 @@
1
+ import { Component } from 'react';
2
+ declare class DSInputMaskDeprecated extends Component {
3
+ lastkey: null;
4
+ lastkeycode: null;
5
+ constructor(props: any);
6
+ conformValue: (rawValueOrEvent: any, currentCaretPosition: any, { skipCaretPositioning, skipOnChangeCallback }?: {
7
+ skipCaretPositioning?: boolean | undefined;
8
+ skipOnChangeCallback?: boolean | undefined;
9
+ }) => void;
10
+ handleOnChange: (e: any) => void;
11
+ handleKeyDown: (e: any) => void;
12
+ handleBlur: (e: any) => void;
13
+ componentDidMount(): void;
14
+ componentDidUpdate(prevProps: any): void;
15
+ render(): JSX.Element;
16
+ }
17
+ export { DSInputMaskDeprecated };
18
+ export default DSInputMaskDeprecated;
@@ -0,0 +1,18 @@
1
+ import React from 'react';
2
+ import { TLastkey } from './types';
3
+ export declare const InputMaskContext: React.Context<{
4
+ rawValue: string;
5
+ setRawValue: React.Dispatch<string>;
6
+ rawMask: any;
7
+ setRawMask: React.Dispatch<any>;
8
+ focus: boolean;
9
+ setFocus: React.Dispatch<boolean>;
10
+ lastkey: TLastkey;
11
+ setLastkey: React.Dispatch<TLastkey>;
12
+ cursorPosition: {
13
+ current: number;
14
+ };
15
+ setCursorPosition: React.Dispatch<{
16
+ current: number;
17
+ }>;
18
+ }>;
@@ -0,0 +1,18 @@
1
+ export declare const MASK_PIPES: {
2
+ AUTO_CORRECT_DATE: (dateFormat?: string, { minYear, maxYear }?: {
3
+ minYear?: number | undefined;
4
+ maxYear?: number | undefined;
5
+ }) => (conformedValue: any) => {
6
+ value: any;
7
+ valid: boolean;
8
+ indexesOfPipedChars: any[];
9
+ };
10
+ };
11
+ export declare const maskPipes: ((dateFormat?: string, { minYear, maxYear }?: {
12
+ minYear?: number | undefined;
13
+ maxYear?: number | undefined;
14
+ }) => (conformedValue: any) => {
15
+ value: any;
16
+ valid: boolean;
17
+ indexesOfPipedChars: any[];
18
+ })[];
@@ -0,0 +1,15 @@
1
+ export declare const MASK_TYPES: {
2
+ DATE: string;
3
+ DATE_DEPRECATED: (string | RegExp)[];
4
+ DATE_TIME: string;
5
+ DATE_TIME_DEPRECATED: (string | RegExp)[];
6
+ DICTIONARY: (props: any) => any;
7
+ PHONE: string;
8
+ PHONE_INTENATIONAL: string;
9
+ SSN: string;
10
+ US_ZIP_CODE: string;
11
+ ZIP_CODE_SEARCH: string;
12
+ NUMBER: (props: any) => (_number: any) => any;
13
+ PERCENT: (props: any) => (_number: any) => any;
14
+ };
15
+ export declare const maskTypes: (string | (string | RegExp)[] | ((props: any) => (_number: any) => any))[];
@@ -0,0 +1,8 @@
1
+ export declare const autoCorrectedDatePipe: (dateFormat?: string, { minYear, maxYear }?: {
2
+ minYear?: number | undefined;
3
+ maxYear?: number | undefined;
4
+ }) => (conformedValue: any) => {
5
+ value: any;
6
+ valid: boolean;
7
+ indexesOfPipedChars: any[];
8
+ };
@@ -0,0 +1,28 @@
1
+ export declare const defaultProps: {
2
+ autoFocus: boolean;
3
+ style: {};
4
+ disabled: boolean;
5
+ className: string;
6
+ name: string;
7
+ maxLength: number;
8
+ minLength: number;
9
+ fluidWidth: boolean;
10
+ onKeyDown: () => null;
11
+ onClick: () => null;
12
+ onChange: () => null;
13
+ onFocus: () => null;
14
+ onBlur: () => null;
15
+ onPaste: () => null;
16
+ onKeyUp: () => null;
17
+ value: string;
18
+ hasError: boolean;
19
+ readOnly: boolean;
20
+ innerRef: null;
21
+ type: string;
22
+ clearable: boolean;
23
+ leftComponent: null;
24
+ rightComponent: null;
25
+ mask: string;
26
+ pipe: null;
27
+ useSubfix: string;
28
+ };
@@ -0,0 +1 @@
1
+ export * from './DSInputMask';
@@ -0,0 +1,75 @@
1
+ /// <reference path="../../../../../../shared/typings/react-desc.d.ts" />
2
+ /// <reference types="react" />
3
+ declare const DateInputMask: {
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 }: {
5
+ [x: string]: any;
6
+ focus: any;
7
+ setFocus: any;
8
+ setRawMask: any;
9
+ cursorPosition: any;
10
+ setCursorPosition: any;
11
+ lastkey: any;
12
+ setLastkey: any;
13
+ setRawValue: any;
14
+ style: any;
15
+ disabled: any;
16
+ className: any;
17
+ name: any;
18
+ maxLength: any;
19
+ minLength: any;
20
+ fluidWidth: any;
21
+ placeholder: any;
22
+ onKeyDown: any;
23
+ onClick: any;
24
+ onChange: any;
25
+ onFocus: any;
26
+ onBlur: any;
27
+ onPaste: any;
28
+ onKeyUp: any;
29
+ hasError: any;
30
+ readOnly: any;
31
+ type: any;
32
+ innerRef: any;
33
+ clearable?: boolean | undefined;
34
+ leftComponent: any;
35
+ rightComponent: any;
36
+ value: any;
37
+ }): JSX.Element;
38
+ propTypes: {
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;
72
+ };
73
+ };
74
+ export { DateInputMask };
75
+ export default DateInputMask;
@@ -0,0 +1,75 @@
1
+ /// <reference path="../../../../../../shared/typings/react-desc.d.ts" />
2
+ /// <reference types="react" />
3
+ declare const DateTimeInputMask: {
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 }: {
5
+ [x: string]: any;
6
+ focus: any;
7
+ setFocus: any;
8
+ setRawMask: any;
9
+ cursorPosition: any;
10
+ setCursorPosition: any;
11
+ lastkey: any;
12
+ setLastkey: any;
13
+ setRawValue: any;
14
+ style: any;
15
+ disabled: any;
16
+ className: any;
17
+ name: any;
18
+ maxLength: any;
19
+ minLength: any;
20
+ fluidWidth: any;
21
+ placeholder: any;
22
+ onKeyDown: any;
23
+ onClick: any;
24
+ onChange: any;
25
+ onFocus: any;
26
+ onBlur: any;
27
+ onPaste: any;
28
+ onKeyUp: any;
29
+ hasError: any;
30
+ readOnly: any;
31
+ type: any;
32
+ innerRef: any;
33
+ clearable?: boolean | undefined;
34
+ leftComponent: any;
35
+ rightComponent: any;
36
+ value: any;
37
+ }): JSX.Element;
38
+ propTypes: {
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;
72
+ };
73
+ };
74
+ export { DateTimeInputMask };
75
+ export default DateTimeInputMask;