@elliemae/ds-form 2.0.0-rc.9 → 2.1.0-rc.0

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 (207) hide show
  1. package/cjs/Checkbox/DSCheckbox.js +4 -4
  2. package/cjs/CheckboxGroup/DSCheckboxGroup.js +2 -2
  3. package/cjs/ComboBox/v1/DSComboBox.js +20 -24
  4. package/cjs/ComboBox/v1/components/AllOption.js +2 -2
  5. package/cjs/ComboBox/v1/components/Control.js +2 -2
  6. package/cjs/ComboBox/v1/components/CustomOption.js +2 -2
  7. package/cjs/ComboBox/v1/components/CustomOptionMulti.js +2 -2
  8. package/cjs/ComboBox/v1/components/DropdownIndicator.js +2 -2
  9. package/cjs/ComboBox/v1/components/MenuList.js +2 -2
  10. package/cjs/ComboBox/v1/components/MultiValueRemove.js +2 -2
  11. package/cjs/ComboBox/v1/components/SelectMenu.js +2 -2
  12. package/cjs/ComboBox/v1/components/ValueContainer.js +2 -2
  13. package/cjs/ComboBox/v1/withSelectStringValueConverter.js +5 -6
  14. package/cjs/ComboBox/v2/Combobox.js +2 -2
  15. package/cjs/ComboBox/v2/components/AllOption.js +2 -2
  16. package/cjs/ComboBox/v2/components/ClearIndicator.js +2 -2
  17. package/cjs/ComboBox/v2/components/Content.js +2 -2
  18. package/cjs/ComboBox/v2/components/Control.js +2 -2
  19. package/cjs/ComboBox/v2/components/CustomOption.js +2 -2
  20. package/cjs/ComboBox/v2/components/CustomOptionMulti.js +2 -2
  21. package/cjs/ComboBox/v2/components/DropdownIndicator.js +2 -2
  22. package/cjs/ComboBox/v2/components/GroupHeading.js +2 -2
  23. package/cjs/ComboBox/v2/components/IndicatorSeparator.js +2 -2
  24. package/cjs/ComboBox/v2/components/MenuList.js +2 -2
  25. package/cjs/ComboBox/v2/components/MultiValueRemove.js +2 -2
  26. package/cjs/ComboBox/v2/components/SelectMenu.js +2 -2
  27. package/cjs/ComboBox/v2/components/ValueContainer.js +2 -2
  28. package/cjs/ComboBox/v3/ComboBoxCTX.js +16 -17
  29. package/cjs/ComboBox/v3/config/useComboBox.js +8 -8
  30. package/cjs/ComboBox/v3/parts/container/Container.js +1 -1
  31. package/cjs/ComboBox/v3/parts/controls-input/ControlsInput.js +5 -3
  32. package/cjs/ComboBox/v3/parts/controls-input/useControlsInput.js +8 -8
  33. package/cjs/ComboBox/v3/parts/header-list/HeaderList.js +5 -3
  34. package/cjs/ComboBox/v3/parts/menu-list/MenuList.js +7 -8
  35. package/cjs/ComboBox/v3/parts/menu-list/styled.js +8 -4
  36. package/cjs/ComboBox/v3/parts/menu-list/useItemRenderer.js +12 -11
  37. package/cjs/ComboBox/v3/utils/hooks/useKeyboardNavigation.js +5 -5
  38. package/cjs/ComboBox/v3/utils/hooks/useOnElementResize.js +4 -4
  39. package/cjs/ComboBoxFreeSolo/ComboBoxFreeSolo.js +2 -2
  40. package/cjs/ComboBoxFreeSolo/components/MultiValueRemove.js +2 -2
  41. package/cjs/ComboBoxFreeSolo/components/SingleValue.js +2 -2
  42. package/cjs/ComboBoxFreeSolo/components/SingleValueRemove.js +2 -2
  43. package/cjs/DateInput/DSDateInput.js +2 -2
  44. package/cjs/DateInput/components/DateInputImpl.js +2 -2
  45. package/cjs/DateInput/components/DateInputs.js +2 -2
  46. package/cjs/DateInputV2/components/DateInputs.js +2 -2
  47. package/cjs/ExpandableInput/ExpandableInputImpl.js +2 -2
  48. package/cjs/FloatingLabelInput/FloatingLabelInputImpl.js +6 -9
  49. package/cjs/FormItem/DSFormItemLayout.js +2 -2
  50. package/cjs/FormItem/ValidationFieldWrapper.js +4 -5
  51. package/cjs/Input/DSInput.js +2 -2
  52. package/cjs/Input/InputAddonWrapper.js +4 -5
  53. package/cjs/Input/InputImpl.js +18 -20
  54. package/cjs/InputGroup/AddonWrapper.js +6 -8
  55. package/cjs/InputMask/DSInputMask.js +2 -2
  56. package/cjs/InputMask/DSInputMaskDeprecated.js +12 -14
  57. package/cjs/InputMask/MaskTypes.js +2 -2
  58. package/cjs/InputMask/mask_types/DateInputMask.js +2 -2
  59. package/cjs/InputMask/mask_types/DateTimeInputMask.js +2 -2
  60. package/cjs/InputMask/mask_types/DictionaryInputMask.js +2 -2
  61. package/cjs/InputMask/mask_types/NumberInputMask.js +2 -2
  62. package/cjs/InputMask/mask_types/PhoneInputMask.js +2 -2
  63. package/cjs/InputMask/mask_types/PhoneInternationalInputMask.js +2 -2
  64. package/cjs/InputMask/mask_types/SsnInputMask.js +2 -2
  65. package/cjs/InputMask/mask_types/UsZipCodeInputMask.js +2 -2
  66. package/cjs/InputMask/mask_types/ZipCodeSearchInputMask.js +2 -2
  67. package/cjs/InputMask/mask_types/index.js +2 -2
  68. package/cjs/InputProtected/DSInputProtected.js +2 -2
  69. package/cjs/LargeInputText/DSLargeInputText.js +2 -2
  70. package/cjs/MenuItem/components/SubmenuItem/index.js +2 -2
  71. package/cjs/Radio/DSRadio.js +11 -6
  72. package/cjs/RadioGroup/DSRadioGroup.js +2 -2
  73. package/cjs/SearchBox/NavSearchBox.js +5 -1
  74. package/cjs/SearchBox/SearchBoxToggle.js +2 -2
  75. package/cjs/SearchBox/withSearchable.js +5 -7
  76. package/cjs/TextBox/DSTextBox.js +2 -2
  77. package/cjs/TimeInput/DSTimeInput.js +2 -2
  78. package/cjs/TimeInput/TimeInputImpl.js +2 -2
  79. package/cjs/TimeInput/TimeInputs.js +2 -2
  80. package/cjs/Toggle/DSToggle.js +2 -2
  81. package/cjs/Toggle/DSToggleImpl.js +30 -30
  82. package/cjs/Toggle/DSToggleRender.js +2 -2
  83. package/esm/Checkbox/DSCheckbox.js +4 -4
  84. package/esm/CheckboxGroup/DSCheckboxGroup.js +2 -2
  85. package/esm/ComboBox/v1/DSComboBox.js +19 -23
  86. package/esm/ComboBox/v1/components/AllOption.js +2 -2
  87. package/esm/ComboBox/v1/components/Control.js +2 -2
  88. package/esm/ComboBox/v1/components/CustomOption.js +2 -2
  89. package/esm/ComboBox/v1/components/CustomOptionMulti.js +2 -2
  90. package/esm/ComboBox/v1/components/DropdownIndicator.js +2 -2
  91. package/esm/ComboBox/v1/components/MenuList.js +2 -2
  92. package/esm/ComboBox/v1/components/MultiValueRemove.js +2 -2
  93. package/esm/ComboBox/v1/components/SelectMenu.js +2 -2
  94. package/esm/ComboBox/v1/components/ValueContainer.js +2 -2
  95. package/esm/ComboBox/v1/withSelectStringValueConverter.js +5 -6
  96. package/esm/ComboBox/v2/Combobox.js +2 -2
  97. package/esm/ComboBox/v2/components/AllOption.js +2 -2
  98. package/esm/ComboBox/v2/components/ClearIndicator.js +2 -2
  99. package/esm/ComboBox/v2/components/Content.js +2 -2
  100. package/esm/ComboBox/v2/components/Control.js +2 -2
  101. package/esm/ComboBox/v2/components/CustomOption.js +2 -2
  102. package/esm/ComboBox/v2/components/CustomOptionMulti.js +2 -2
  103. package/esm/ComboBox/v2/components/DropdownIndicator.js +2 -2
  104. package/esm/ComboBox/v2/components/GroupHeading.js +2 -2
  105. package/esm/ComboBox/v2/components/IndicatorSeparator.js +2 -2
  106. package/esm/ComboBox/v2/components/MenuList.js +2 -2
  107. package/esm/ComboBox/v2/components/MultiValueRemove.js +2 -2
  108. package/esm/ComboBox/v2/components/SelectMenu.js +2 -2
  109. package/esm/ComboBox/v2/components/ValueContainer.js +2 -2
  110. package/esm/ComboBox/v3/ComboBoxCTX.js +5 -6
  111. package/esm/ComboBox/v3/config/useComboBox.js +8 -8
  112. package/esm/ComboBox/v3/parts/container/Container.js +1 -1
  113. package/esm/ComboBox/v3/parts/controls-input/ControlsInput.js +5 -3
  114. package/esm/ComboBox/v3/parts/controls-input/useControlsInput.js +8 -8
  115. package/esm/ComboBox/v3/parts/header-list/HeaderList.js +5 -3
  116. package/esm/ComboBox/v3/parts/menu-list/MenuList.js +8 -9
  117. package/esm/ComboBox/v3/parts/menu-list/styled.js +8 -4
  118. package/esm/ComboBox/v3/parts/menu-list/useItemRenderer.js +12 -11
  119. package/esm/ComboBox/v3/utils/hooks/useKeyboardNavigation.js +5 -5
  120. package/esm/ComboBox/v3/utils/hooks/useOnElementResize.js +4 -4
  121. package/esm/ComboBoxFreeSolo/ComboBoxFreeSolo.js +2 -2
  122. package/esm/ComboBoxFreeSolo/components/MultiValueRemove.js +2 -2
  123. package/esm/ComboBoxFreeSolo/components/SingleValue.js +2 -2
  124. package/esm/ComboBoxFreeSolo/components/SingleValueRemove.js +2 -2
  125. package/esm/DateInput/DSDateInput.js +2 -2
  126. package/esm/DateInput/components/DateInputImpl.js +2 -2
  127. package/esm/DateInput/components/DateInputs.js +2 -2
  128. package/esm/DateInputV2/components/DateInputs.js +2 -2
  129. package/esm/ExpandableInput/ExpandableInputImpl.js +2 -2
  130. package/esm/FloatingLabelInput/FloatingLabelInputImpl.js +6 -9
  131. package/esm/FormItem/DSFormItemLayout.js +2 -2
  132. package/esm/FormItem/ValidationFieldWrapper.js +4 -5
  133. package/esm/Input/DSInput.js +2 -2
  134. package/esm/Input/InputAddonWrapper.js +4 -5
  135. package/esm/Input/InputImpl.js +17 -19
  136. package/esm/InputGroup/AddonWrapper.js +7 -9
  137. package/esm/InputMask/DSInputMask.js +2 -2
  138. package/esm/InputMask/DSInputMaskDeprecated.js +12 -14
  139. package/esm/InputMask/MaskTypes.js +2 -2
  140. package/esm/InputMask/mask_types/DateInputMask.js +2 -2
  141. package/esm/InputMask/mask_types/DateTimeInputMask.js +2 -2
  142. package/esm/InputMask/mask_types/DictionaryInputMask.js +2 -2
  143. package/esm/InputMask/mask_types/NumberInputMask.js +2 -2
  144. package/esm/InputMask/mask_types/PhoneInputMask.js +2 -2
  145. package/esm/InputMask/mask_types/PhoneInternationalInputMask.js +2 -2
  146. package/esm/InputMask/mask_types/SsnInputMask.js +2 -2
  147. package/esm/InputMask/mask_types/UsZipCodeInputMask.js +2 -2
  148. package/esm/InputMask/mask_types/ZipCodeSearchInputMask.js +2 -2
  149. package/esm/InputMask/mask_types/index.js +2 -2
  150. package/esm/InputProtected/DSInputProtected.js +2 -2
  151. package/esm/LargeInputText/DSLargeInputText.js +2 -2
  152. package/esm/MenuItem/components/SubmenuItem/index.js +2 -2
  153. package/esm/Radio/DSRadio.js +11 -6
  154. package/esm/RadioGroup/DSRadioGroup.js +2 -2
  155. package/esm/SearchBox/NavSearchBox.js +5 -1
  156. package/esm/SearchBox/SearchBoxToggle.js +2 -2
  157. package/esm/SearchBox/withSearchable.js +4 -6
  158. package/esm/TextBox/DSTextBox.js +2 -2
  159. package/esm/TimeInput/DSTimeInput.js +2 -2
  160. package/esm/TimeInput/TimeInputImpl.js +2 -2
  161. package/esm/TimeInput/TimeInputs.js +2 -2
  162. package/esm/Toggle/DSToggle.js +2 -2
  163. package/esm/Toggle/DSToggleImpl.js +30 -30
  164. package/esm/Toggle/DSToggleRender.js +2 -2
  165. package/package.json +24 -28
  166. package/types/Checkbox/DSCheckbox.d.ts +36 -47
  167. package/types/Checkbox/props.d.ts +14 -14
  168. package/types/CheckboxGroup/DSCheckboxGroup.d.ts +12 -12
  169. package/types/CheckboxGroup/props.d.ts +12 -12
  170. package/types/ComboBox/v3/ComboBox.d.ts +2 -2
  171. package/types/ComboBox/v3/parts/controls-input/useControlsInput.d.ts +3 -3
  172. package/types/ComboBox/v3/parts/menu-list/styled.d.ts +4 -3
  173. package/types/ComboBox/v3/parts/menu-list/useItemRenderer.d.ts +1 -1
  174. package/types/ComboBox/v3/propTypes.d.ts +2 -2
  175. package/types/ComboBox/v3/utils/hooks/useKeyboardNavigation.d.ts +4 -1
  176. package/types/ComboBox/v3/utils/listHelper.d.ts +1 -1
  177. package/types/DateInput/DSDateInput.d.ts +32 -32
  178. package/types/DateInput/props.d.ts +64 -32
  179. package/types/DateInputV2/components/DSDateInput.d.ts +20 -20
  180. package/types/DateInputV2/components/props.d.ts +20 -20
  181. package/types/FloatingLabelInput/DSFloatingLabelInput.d.ts +38 -38
  182. package/types/FormItem/DSFormItemLayout.d.ts +112 -112
  183. package/types/FormItem/Error/DSError.d.ts +4 -4
  184. package/types/FormItem/defaultProps.d.ts +38 -38
  185. package/types/FormItem/props.d.ts +74 -74
  186. package/types/InputGroup/DSInputGroup.d.ts +14 -14
  187. package/types/InputGroup/props.d.ts +14 -14
  188. package/types/InputMask/DSInputMask.d.ts +54 -54
  189. package/types/InputMask/props.d.ts +54 -54
  190. package/types/InputProtected/DSInputProtected.d.ts +12 -12
  191. package/types/InputProtected/props.d.ts +12 -12
  192. package/types/LargeInputText/DSLargeInputText.d.ts +54 -54
  193. package/types/LargeInputText/props.d.ts +54 -54
  194. package/types/Radio/DSRadio.d.ts +56 -46
  195. package/types/RadioGroup/DSRadioGroup.d.ts +12 -12
  196. package/types/RadioGroup/props.d.ts +12 -12
  197. package/types/SearchBox/DSSearchBox.d.ts +40 -40
  198. package/types/SearchBox/NavSearchBox.d.ts +24 -7
  199. package/types/SearchBox/SButton.d.ts +4 -4
  200. package/types/SearchBox/index.d.ts +1 -1
  201. package/types/SearchBox/props.d.ts +44 -44
  202. package/types/TextBox/DSTextBox.d.ts +38 -38
  203. package/types/TimeInput/DSTimeInput.d.ts +22 -22
  204. package/types/Toggle/DSToggle.d.ts +22 -22
  205. package/cjs/ComboBox/v3/utils/hooks/useOnWindowResize.js +0 -31
  206. package/esm/ComboBox/v3/utils/hooks/useOnWindowResize.js +0 -27
  207. package/types/ComboBox/v3/utils/hooks/useOnWindowResize.d.ts +0 -5
@@ -2,140 +2,172 @@
2
2
  export declare const props: {
3
3
  /** props injected to date input wrapper node */
4
4
  containerProps: {
5
- defaultValue<T = unknown>(arg: T): {
5
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
6
6
  deprecated: import("react-desc").PropTypesDescValidator;
7
7
  };
8
- isRequired: import("react-desc").PropTypesDescValidator;
8
+ isRequired: import("react-desc").PropTypesDescValue; /**
9
+ * Triggers the onFocus when the component gets the focus
10
+ */
9
11
  };
10
12
  /** inner ref for input wrapper */
11
13
  innerRef: {
12
- defaultValue<T = unknown>(arg: T): {
14
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
13
15
  deprecated: import("react-desc").PropTypesDescValidator;
14
16
  };
15
- isRequired: import("react-desc").PropTypesDescValidator;
17
+ isRequired: import("react-desc").PropTypesDescValue; /**
18
+ * Triggers the onFocus when the component gets the focus
19
+ */
16
20
  };
17
21
  /** class for input */
18
22
  className: {
19
- defaultValue<T = unknown>(arg: T): {
23
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
20
24
  deprecated: import("react-desc").PropTypesDescValidator;
21
25
  };
22
- isRequired: import("react-desc").PropTypesDescValidator;
26
+ isRequired: import("react-desc").PropTypesDescValue; /**
27
+ * Triggers the onFocus when the component gets the focus
28
+ */
23
29
  };
24
30
  /**
25
31
  * Set style for the date input
26
32
  */
27
33
  style: {
28
- defaultValue<T = unknown>(arg: T): {
34
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
29
35
  deprecated: import("react-desc").PropTypesDescValidator;
30
36
  };
31
- isRequired: import("react-desc").PropTypesDescValidator;
37
+ isRequired: import("react-desc").PropTypesDescValue; /**
38
+ * Triggers the onFocus when the component gets the focus
39
+ */
32
40
  };
33
41
  /**
34
42
  * Triggers the onBlur when focus moves out of date input
35
43
  */
36
44
  onBlur: {
37
- defaultValue<T = unknown>(arg: T): {
45
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
38
46
  deprecated: import("react-desc").PropTypesDescValidator;
39
47
  };
40
- isRequired: import("react-desc").PropTypesDescValidator;
48
+ isRequired: import("react-desc").PropTypesDescValue; /**
49
+ * Triggers the onFocus when the component gets the focus
50
+ */
41
51
  };
42
52
  /**
43
53
  * Triggers the onFocus when the component gets the focus
44
54
  */
45
55
  onFocus: {
46
- defaultValue<T = unknown>(arg: T): {
56
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
47
57
  deprecated: import("react-desc").PropTypesDescValidator;
48
58
  };
49
- isRequired: import("react-desc").PropTypesDescValidator;
59
+ isRequired: import("react-desc").PropTypesDescValue; /**
60
+ * Triggers the onFocus when the component gets the focus
61
+ */
50
62
  };
51
63
  /**
52
64
  * Triggers the onClear
53
65
  */
54
66
  onClear: {
55
- defaultValue<T = unknown>(arg: T): {
67
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
56
68
  deprecated: import("react-desc").PropTypesDescValidator;
57
69
  };
58
- isRequired: import("react-desc").PropTypesDescValidator;
70
+ isRequired: import("react-desc").PropTypesDescValue; /**
71
+ * Triggers the onFocus when the component gets the focus
72
+ */
59
73
  };
60
74
  /**
61
75
  * Triggers the onKeyDown
62
76
  */
63
77
  onKeyDown: {
64
- defaultValue<T = unknown>(arg: T): {
78
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
65
79
  deprecated: import("react-desc").PropTypesDescValidator;
66
80
  };
67
- isRequired: import("react-desc").PropTypesDescValidator;
81
+ isRequired: import("react-desc").PropTypesDescValue; /**
82
+ * Triggers the onFocus when the component gets the focus
83
+ */
68
84
  };
69
85
  /**
70
86
  * Allows a function that is triggered once the date input changes
71
87
  */
72
88
  onChange: {
73
- defaultValue<T = unknown>(arg: T): {
89
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
74
90
  deprecated: import("react-desc").PropTypesDescValidator;
75
91
  };
76
- isRequired: import("react-desc").PropTypesDescValidator;
92
+ isRequired: import("react-desc").PropTypesDescValue; /**
93
+ * Triggers the onFocus when the component gets the focus
94
+ */
77
95
  };
78
96
  /**
79
97
  * Triggers the onError once one input date is wrong
80
98
  */
81
99
  onError: {
82
- defaultValue<T = unknown>(arg: T): {
100
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
83
101
  deprecated: import("react-desc").PropTypesDescValidator;
84
102
  };
85
- isRequired: import("react-desc").PropTypesDescValidator;
103
+ isRequired: import("react-desc").PropTypesDescValue; /**
104
+ * Triggers the onFocus when the component gets the focus
105
+ */
86
106
  };
87
107
  /**
88
108
  * Format type for date input
89
109
  */
90
110
  format: {
91
- defaultValue<T = unknown>(arg: T): {
111
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
92
112
  deprecated: import("react-desc").PropTypesDescValidator;
93
113
  };
94
- isRequired: import("react-desc").PropTypesDescValidator;
114
+ isRequired: import("react-desc").PropTypesDescValue; /**
115
+ * Triggers the onFocus when the component gets the focus
116
+ */
95
117
  };
96
118
  /**
97
119
  * Default value once the component is initialized
98
120
  */
99
121
  value: {
100
- defaultValue<T = unknown>(arg: T): {
122
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
101
123
  deprecated: import("react-desc").PropTypesDescValidator;
102
124
  };
103
- isRequired: import("react-desc").PropTypesDescValidator;
125
+ isRequired: import("react-desc").PropTypesDescValue; /**
126
+ * Triggers the onFocus when the component gets the focus
127
+ */
104
128
  };
105
129
  /**
106
130
  * Whether the date input is clearable or not
107
131
  */
108
132
  clearable: {
109
- defaultValue<T = unknown>(arg: T): {
133
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
110
134
  deprecated: import("react-desc").PropTypesDescValidator;
111
135
  };
112
- isRequired: import("react-desc").PropTypesDescValidator;
136
+ isRequired: import("react-desc").PropTypesDescValue; /**
137
+ * Triggers the onFocus when the component gets the focus
138
+ */
113
139
  };
114
140
  /**
115
141
  * Whether the date input is disabled or not
116
142
  */
117
143
  disabled: {
118
- defaultValue<T = unknown>(arg: T): {
144
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
119
145
  deprecated: import("react-desc").PropTypesDescValidator;
120
146
  };
121
- isRequired: import("react-desc").PropTypesDescValidator;
147
+ isRequired: import("react-desc").PropTypesDescValue; /**
148
+ * Triggers the onFocus when the component gets the focus
149
+ */
122
150
  };
123
151
  /**
124
152
  * Max year that can be accepted by the date input
125
153
  */
126
154
  yearMaxRange: {
127
- defaultValue<T = unknown>(arg: T): {
155
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
128
156
  deprecated: import("react-desc").PropTypesDescValidator;
129
157
  };
130
- isRequired: import("react-desc").PropTypesDescValidator;
158
+ isRequired: import("react-desc").PropTypesDescValue; /**
159
+ * Triggers the onFocus when the component gets the focus
160
+ */
131
161
  };
132
162
  /**
133
163
  * Min year that can be accepted by the date input
134
164
  */
135
165
  yearMinRange: {
136
- defaultValue<T = unknown>(arg: T): {
166
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
137
167
  deprecated: import("react-desc").PropTypesDescValidator;
138
168
  };
139
- isRequired: import("react-desc").PropTypesDescValidator;
169
+ isRequired: import("react-desc").PropTypesDescValue; /**
170
+ * Triggers the onFocus when the component gets the focus
171
+ */
140
172
  };
141
173
  };
@@ -27,64 +27,64 @@ declare const DSDateInputV2: {
27
27
  };
28
28
  propTypes: {
29
29
  containerProps: {
30
- defaultValue<T = unknown>(arg: T): {
30
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
31
31
  deprecated: import("react-desc").PropTypesDescValidator;
32
32
  };
33
- isRequired: import("react-desc").PropTypesDescValidator;
33
+ isRequired: import("react-desc").PropTypesDescValue;
34
34
  };
35
35
  onBlur: {
36
- defaultValue<T = unknown>(arg: T): {
36
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
37
37
  deprecated: import("react-desc").PropTypesDescValidator;
38
38
  };
39
- isRequired: import("react-desc").PropTypesDescValidator;
39
+ isRequired: import("react-desc").PropTypesDescValue;
40
40
  };
41
41
  onFocus: {
42
- defaultValue<T = unknown>(arg: T): {
42
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
43
43
  deprecated: import("react-desc").PropTypesDescValidator;
44
44
  };
45
- isRequired: import("react-desc").PropTypesDescValidator;
45
+ isRequired: import("react-desc").PropTypesDescValue;
46
46
  };
47
47
  onKeyDown: {
48
- defaultValue<T = unknown>(arg: T): {
48
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
49
49
  deprecated: import("react-desc").PropTypesDescValidator;
50
50
  };
51
- isRequired: import("react-desc").PropTypesDescValidator;
51
+ isRequired: import("react-desc").PropTypesDescValue;
52
52
  };
53
53
  onChange: {
54
- defaultValue<T = unknown>(arg: T): {
54
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
55
55
  deprecated: import("react-desc").PropTypesDescValidator;
56
56
  };
57
- isRequired: import("react-desc").PropTypesDescValidator;
57
+ isRequired: import("react-desc").PropTypesDescValue;
58
58
  };
59
59
  onDateChange: {
60
- defaultValue<T = unknown>(arg: T): {
60
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
61
61
  deprecated: import("react-desc").PropTypesDescValidator;
62
62
  };
63
- isRequired: import("react-desc").PropTypesDescValidator;
63
+ isRequired: import("react-desc").PropTypesDescValue;
64
64
  };
65
65
  onError: {
66
- defaultValue<T = unknown>(arg: T): {
66
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
67
67
  deprecated: import("react-desc").PropTypesDescValidator;
68
68
  };
69
- isRequired: import("react-desc").PropTypesDescValidator;
69
+ isRequired: import("react-desc").PropTypesDescValue;
70
70
  };
71
71
  value: {
72
- defaultValue<T = unknown>(arg: T): {
72
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
73
73
  deprecated: import("react-desc").PropTypesDescValidator;
74
74
  };
75
- isRequired: import("react-desc").PropTypesDescValidator;
75
+ isRequired: import("react-desc").PropTypesDescValue;
76
76
  };
77
77
  disabled: {
78
- defaultValue<T = unknown>(arg: T): {
78
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
79
79
  deprecated: import("react-desc").PropTypesDescValidator;
80
80
  };
81
- isRequired: import("react-desc").PropTypesDescValidator;
81
+ isRequired: import("react-desc").PropTypesDescValue;
82
82
  };
83
83
  tabIndex: {
84
- defaultValue<T = unknown>(arg: T): {
84
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
85
85
  deprecated: import("react-desc").PropTypesDescValidator;
86
86
  };
87
- isRequired: import("react-desc").PropTypesDescValidator;
87
+ isRequired: import("react-desc").PropTypesDescValue;
88
88
  };
89
89
  };
90
90
  };
@@ -2,46 +2,46 @@
2
2
  export declare const props: {
3
3
  /** Props to inject to date input wrapper */
4
4
  containerProps: {
5
- defaultValue<T = unknown>(arg: T): {
5
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
6
6
  deprecated: import("react-desc").PropTypesDescValidator;
7
7
  };
8
- isRequired: import("react-desc").PropTypesDescValidator;
8
+ isRequired: import("react-desc").PropTypesDescValue;
9
9
  };
10
10
  /**
11
11
  * Triggers the onBlur when focus moves out of date input
12
12
  */
13
13
  onBlur: {
14
- defaultValue<T = unknown>(arg: T): {
14
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
15
15
  deprecated: import("react-desc").PropTypesDescValidator;
16
16
  };
17
- isRequired: import("react-desc").PropTypesDescValidator;
17
+ isRequired: import("react-desc").PropTypesDescValue;
18
18
  };
19
19
  /**
20
20
  * Triggers the onFocus when the component gets the focus
21
21
  */
22
22
  onFocus: {
23
- defaultValue<T = unknown>(arg: T): {
23
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
24
24
  deprecated: import("react-desc").PropTypesDescValidator;
25
25
  };
26
- isRequired: import("react-desc").PropTypesDescValidator;
26
+ isRequired: import("react-desc").PropTypesDescValue;
27
27
  };
28
28
  /**
29
29
  * Triggers the onKeyDown
30
30
  */
31
31
  onKeyDown: {
32
- defaultValue<T = unknown>(arg: T): {
32
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
33
33
  deprecated: import("react-desc").PropTypesDescValidator;
34
34
  };
35
- isRequired: import("react-desc").PropTypesDescValidator;
35
+ isRequired: import("react-desc").PropTypesDescValue;
36
36
  };
37
37
  /**
38
38
  * Allows a function that is triggered once the date input changes
39
39
  */
40
40
  onChange: {
41
- defaultValue<T = unknown>(arg: T): {
41
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
42
42
  deprecated: import("react-desc").PropTypesDescValidator;
43
43
  };
44
- isRequired: import("react-desc").PropTypesDescValidator;
44
+ isRequired: import("react-desc").PropTypesDescValue;
45
45
  };
46
46
  /**
47
47
  * Triggers when the date is completely set and only once you have blurred the
@@ -49,46 +49,46 @@ export declare const props: {
49
49
  * are already set, once you completely set the day it will trigger.
50
50
  */
51
51
  onDateChange: {
52
- defaultValue<T = unknown>(arg: T): {
52
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
53
53
  deprecated: import("react-desc").PropTypesDescValidator;
54
54
  };
55
- isRequired: import("react-desc").PropTypesDescValidator;
55
+ isRequired: import("react-desc").PropTypesDescValue;
56
56
  };
57
57
  /**
58
58
  * Triggers the onError once one input date is wrong
59
59
  */
60
60
  onError: {
61
- defaultValue<T = unknown>(arg: T): {
61
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
62
62
  deprecated: import("react-desc").PropTypesDescValidator;
63
63
  };
64
- isRequired: import("react-desc").PropTypesDescValidator;
64
+ isRequired: import("react-desc").PropTypesDescValue;
65
65
  };
66
66
  /**
67
67
  * Default value once the component is initialized MMDDYYYY
68
68
  */
69
69
  value: {
70
- defaultValue<T = unknown>(arg: T): {
70
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
71
71
  deprecated: import("react-desc").PropTypesDescValidator;
72
72
  };
73
- isRequired: import("react-desc").PropTypesDescValidator;
73
+ isRequired: import("react-desc").PropTypesDescValue;
74
74
  };
75
75
  /**
76
76
  * Whether the date input is disabled or not
77
77
  */
78
78
  disabled: {
79
- defaultValue<T = unknown>(arg: T): {
79
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
80
80
  deprecated: import("react-desc").PropTypesDescValidator;
81
81
  };
82
- isRequired: import("react-desc").PropTypesDescValidator;
82
+ isRequired: import("react-desc").PropTypesDescValue;
83
83
  };
84
84
  /**
85
85
  * tab index
86
86
  */
87
87
  tabIndex: {
88
- defaultValue<T = unknown>(arg: T): {
88
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
89
89
  deprecated: import("react-desc").PropTypesDescValidator;
90
90
  };
91
- isRequired: import("react-desc").PropTypesDescValidator;
91
+ isRequired: import("react-desc").PropTypesDescValue;
92
92
  };
93
93
  };
94
94
  export declare const defaultProps: {
@@ -33,118 +33,118 @@ declare const DSFloatingLabelInput: ({ containerProps, arialLabel, innerRef, cla
33
33
  }): JSX.Element;
34
34
  propTypes: {
35
35
  containerProps: {
36
- defaultValue<T = unknown>(arg: T): {
36
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
37
37
  deprecated: import("react-desc").PropTypesDescValidator;
38
38
  };
39
- isRequired: import("react-desc").PropTypesDescValidator;
39
+ isRequired: import("react-desc").PropTypesDescValue;
40
40
  };
41
41
  autoFocus: {
42
- defaultValue<T = unknown>(arg: T): {
42
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
43
43
  deprecated: import("react-desc").PropTypesDescValidator;
44
44
  };
45
- isRequired: import("react-desc").PropTypesDescValidator;
45
+ isRequired: import("react-desc").PropTypesDescValue;
46
46
  };
47
47
  disabled: {
48
- defaultValue<T = unknown>(arg: T): {
48
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
49
49
  deprecated: import("react-desc").PropTypesDescValidator;
50
50
  };
51
- isRequired: import("react-desc").PropTypesDescValidator;
51
+ isRequired: import("react-desc").PropTypesDescValue;
52
52
  };
53
53
  maxLength: {
54
- defaultValue<T = unknown>(arg: T): {
54
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
55
55
  deprecated: import("react-desc").PropTypesDescValidator;
56
56
  };
57
- isRequired: import("react-desc").PropTypesDescValidator;
57
+ isRequired: import("react-desc").PropTypesDescValue;
58
58
  };
59
59
  minLength: {
60
- defaultValue<T = unknown>(arg: T): {
60
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
61
61
  deprecated: import("react-desc").PropTypesDescValidator;
62
62
  };
63
- isRequired: import("react-desc").PropTypesDescValidator;
63
+ isRequired: import("react-desc").PropTypesDescValue;
64
64
  };
65
65
  fluidWidth: {
66
- defaultValue<T = unknown>(arg: T): {
66
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
67
67
  deprecated: import("react-desc").PropTypesDescValidator;
68
68
  };
69
- isRequired: import("react-desc").PropTypesDescValidator;
69
+ isRequired: import("react-desc").PropTypesDescValue;
70
70
  };
71
71
  placeholder: {
72
- defaultValue<T = unknown>(arg: T): {
72
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
73
73
  deprecated: import("react-desc").PropTypesDescValidator;
74
74
  };
75
- isRequired: import("react-desc").PropTypesDescValidator;
75
+ isRequired: import("react-desc").PropTypesDescValue;
76
76
  };
77
77
  value: {
78
- defaultValue<T = unknown>(arg: T): {
78
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
79
79
  deprecated: import("react-desc").PropTypesDescValidator;
80
80
  };
81
- isRequired: import("react-desc").PropTypesDescValidator;
81
+ isRequired: import("react-desc").PropTypesDescValue;
82
82
  };
83
83
  hasError: {
84
- defaultValue<T = unknown>(arg: T): {
84
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
85
85
  deprecated: import("react-desc").PropTypesDescValidator;
86
86
  };
87
- isRequired: import("react-desc").PropTypesDescValidator;
87
+ isRequired: import("react-desc").PropTypesDescValue;
88
88
  };
89
89
  readOnly: {
90
- defaultValue<T = unknown>(arg: T): {
90
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
91
91
  deprecated: import("react-desc").PropTypesDescValidator;
92
92
  };
93
- isRequired: import("react-desc").PropTypesDescValidator;
93
+ isRequired: import("react-desc").PropTypesDescValue;
94
94
  };
95
95
  min: {
96
- defaultValue<T = unknown>(arg: T): {
96
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
97
97
  deprecated: import("react-desc").PropTypesDescValidator;
98
98
  };
99
- isRequired: import("react-desc").PropTypesDescValidator;
99
+ isRequired: import("react-desc").PropTypesDescValue;
100
100
  };
101
101
  max: {
102
- defaultValue<T = unknown>(arg: T): {
102
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
103
103
  deprecated: import("react-desc").PropTypesDescValidator;
104
104
  };
105
- isRequired: import("react-desc").PropTypesDescValidator;
105
+ isRequired: import("react-desc").PropTypesDescValue;
106
106
  };
107
107
  clearable: {
108
- defaultValue<T = unknown>(arg: T): {
108
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
109
109
  deprecated: import("react-desc").PropTypesDescValidator;
110
110
  };
111
- isRequired: import("react-desc").PropTypesDescValidator;
111
+ isRequired: import("react-desc").PropTypesDescValue;
112
112
  };
113
113
  leftComponent: {
114
- defaultValue<T = unknown>(arg: T): {
114
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
115
115
  deprecated: import("react-desc").PropTypesDescValidator;
116
116
  };
117
- isRequired: import("react-desc").PropTypesDescValidator;
117
+ isRequired: import("react-desc").PropTypesDescValue;
118
118
  };
119
119
  rightComponent: {
120
- defaultValue<T = unknown>(arg: T): {
120
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
121
121
  deprecated: import("react-desc").PropTypesDescValidator;
122
122
  };
123
- isRequired: import("react-desc").PropTypesDescValidator;
123
+ isRequired: import("react-desc").PropTypesDescValue;
124
124
  };
125
125
  required: {
126
- defaultValue<T = unknown>(arg: T): {
126
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
127
127
  deprecated: import("react-desc").PropTypesDescValidator;
128
128
  };
129
- isRequired: import("react-desc").PropTypesDescValidator;
129
+ isRequired: import("react-desc").PropTypesDescValue;
130
130
  };
131
131
  variant: {
132
- defaultValue<T = unknown>(arg: T): {
132
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
133
133
  deprecated: import("react-desc").PropTypesDescValidator;
134
134
  };
135
- isRequired: import("react-desc").PropTypesDescValidator;
135
+ isRequired: import("react-desc").PropTypesDescValue;
136
136
  };
137
137
  type: {
138
- defaultValue<T = unknown>(arg: T): {
138
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
139
139
  deprecated: import("react-desc").PropTypesDescValidator;
140
140
  };
141
- isRequired: import("react-desc").PropTypesDescValidator;
141
+ isRequired: import("react-desc").PropTypesDescValue;
142
142
  };
143
143
  innerRef: {
144
- defaultValue<T = unknown>(arg: T): {
144
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
145
145
  deprecated: import("react-desc").PropTypesDescValidator;
146
146
  };
147
- isRequired: import("react-desc").PropTypesDescValidator;
147
+ isRequired: import("react-desc").PropTypesDescValue;
148
148
  };
149
149
  disableTooltip: {
150
150
  deprecated: import("react-desc").PropTypesDescValidator;