@elliemae/ds-form 2.0.0-next.7 → 2.0.0-rc.10

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 (455) hide show
  1. package/cjs/Checkbox/DSCheckbox.js +7 -2
  2. package/cjs/CheckboxGroup/DSCheckboxGroup.js +18 -10
  3. package/cjs/ComboBox/index.js +3 -0
  4. package/cjs/ComboBox/v1/DSComboBox.js +31 -26
  5. package/cjs/ComboBox/v1/components/AllOption.js +5 -0
  6. package/cjs/ComboBox/v1/components/ClearIndicator.js +2 -3
  7. package/cjs/ComboBox/v1/components/Control.js +14 -6
  8. package/cjs/ComboBox/v1/components/CustomOption.js +12 -6
  9. package/cjs/ComboBox/v1/components/CustomOptionMulti.js +12 -6
  10. package/cjs/ComboBox/v1/components/DropdownIndicator.js +7 -3
  11. package/cjs/ComboBox/v1/components/MenuList.js +5 -0
  12. package/cjs/ComboBox/v1/components/MultiSelectHeader.js +3 -0
  13. package/cjs/ComboBox/v1/components/MultiValueLabel.js +4 -3
  14. package/cjs/ComboBox/v1/components/MultiValueRemove.js +5 -0
  15. package/cjs/ComboBox/v1/components/SelectMenu.js +26 -18
  16. package/cjs/ComboBox/v1/components/SingleValueLabel.js +4 -3
  17. package/cjs/ComboBox/v1/components/ValueContainer.js +5 -0
  18. package/cjs/ComboBox/v1/components/calculateWidth.js +4 -0
  19. package/cjs/ComboBox/v1/components/getoptions.js +9 -6
  20. package/cjs/ComboBox/v1/withSelectStringValueConverter.js +27 -16
  21. package/cjs/ComboBox/v2/Combobox.js +13 -8
  22. package/cjs/ComboBox/v2/components/AllOption.js +5 -0
  23. package/cjs/ComboBox/v2/components/ClearIndicator.js +7 -3
  24. package/cjs/ComboBox/v2/components/Content.js +5 -0
  25. package/cjs/ComboBox/v2/components/Control.js +14 -6
  26. package/cjs/ComboBox/v2/components/CustomOption.js +12 -6
  27. package/cjs/ComboBox/v2/components/CustomOptionMulti.js +14 -6
  28. package/cjs/ComboBox/v2/components/DropdownIndicator.js +7 -3
  29. package/cjs/ComboBox/v2/components/GroupHeading.js +5 -0
  30. package/cjs/ComboBox/v2/components/IndicatorSeparator.js +11 -3
  31. package/cjs/ComboBox/v2/components/MenuList.js +5 -0
  32. package/cjs/ComboBox/v2/components/MultiSelectHeader.js +3 -0
  33. package/cjs/ComboBox/v2/components/MultiValueLabel.js +4 -3
  34. package/cjs/ComboBox/v2/components/MultiValueRemove.js +5 -0
  35. package/cjs/ComboBox/v2/components/SelectMenu.js +5 -0
  36. package/cjs/ComboBox/v2/components/SingleValueLabel.js +4 -3
  37. package/cjs/ComboBox/v2/components/ValueContainer.js +7 -2
  38. package/cjs/ComboBox/v2/components/calculateWidth.js +4 -0
  39. package/cjs/ComboBox/v2/components/getoptions.js +9 -6
  40. package/cjs/ComboBox/v2/components/useMenuListHeight.js +3 -0
  41. package/cjs/ComboBox/v3/ComboBox.js +33 -0
  42. package/cjs/ComboBox/v3/ComboBoxCTX.js +55 -0
  43. package/cjs/ComboBox/v3/ComboboxDataTestids.js +17 -0
  44. package/cjs/ComboBox/v3/config/constants.js +14 -0
  45. package/cjs/ComboBox/v3/config/useComboBox.js +122 -0
  46. package/cjs/ComboBox/v3/config/useGetPropsWithDefault.js +11 -0
  47. package/cjs/ComboBox/v3/index.d.js +2 -0
  48. package/cjs/ComboBox/v3/index.js +10 -0
  49. package/cjs/ComboBox/v3/parts/a11y-messages/MultiAllyMessages.js +33 -0
  50. package/cjs/ComboBox/v3/parts/a11y-messages/SingleAllyMessages.js +28 -0
  51. package/cjs/ComboBox/v3/parts/a11y-messages/index.js +11 -0
  52. package/cjs/ComboBox/v3/parts/a11y-messages/styled.js +15 -0
  53. package/cjs/ComboBox/v3/parts/container/Container.js +67 -0
  54. package/cjs/ComboBox/v3/parts/container/index.js +9 -0
  55. package/cjs/ComboBox/v3/parts/container/styled.js +23 -0
  56. package/cjs/ComboBox/v3/parts/controls/Controls.js +71 -0
  57. package/cjs/ComboBox/v3/parts/controls/index.js +9 -0
  58. package/cjs/ComboBox/v3/parts/controls/styled.js +65 -0
  59. package/cjs/ComboBox/v3/parts/controls-input/ControlsInput.js +67 -0
  60. package/cjs/ComboBox/v3/parts/controls-input/styled.js +27 -0
  61. package/cjs/ComboBox/v3/parts/controls-input/useControlsInput.js +77 -0
  62. package/cjs/ComboBox/v3/parts/dropdown-indicator/DropdownIndicator.js +33 -0
  63. package/cjs/ComboBox/v3/parts/dropdown-indicator/index.js +2 -0
  64. package/cjs/ComboBox/v3/parts/dropdown-indicator/styled.js +17 -0
  65. package/cjs/ComboBox/v3/parts/empty-state/index.js +27 -0
  66. package/cjs/ComboBox/v3/parts/empty-state/styled.js +19 -0
  67. package/cjs/ComboBox/v3/parts/header-list/HeaderList.js +113 -0
  68. package/cjs/ComboBox/v3/parts/header-list/index.js +9 -0
  69. package/cjs/ComboBox/v3/parts/header-list/styled.js +58 -0
  70. package/cjs/ComboBox/v3/parts/header-list/useHeaderListHandlers.js +73 -0
  71. package/cjs/ComboBox/v3/parts/menu-list/MenuList.js +81 -0
  72. package/cjs/ComboBox/v3/parts/menu-list/index.js +9 -0
  73. package/cjs/ComboBox/v3/parts/menu-list/styled.js +34 -0
  74. package/cjs/ComboBox/v3/parts/menu-list/useItemRenderer.js +105 -0
  75. package/cjs/ComboBox/v3/parts/menu-list/useMenuList.js +61 -0
  76. package/cjs/ComboBox/v3/parts/multi-selected-values-container/MultiSelectedValuesContainer.js +63 -0
  77. package/cjs/ComboBox/v3/parts/multi-selected-values-container/index.js +9 -0
  78. package/cjs/ComboBox/v3/parts/multi-selected-values-container/styled.js +23 -0
  79. package/cjs/ComboBox/v3/parts/multi-selected-values-container/useGroupPills.js +71 -0
  80. package/cjs/ComboBox/v3/parts/single-selected-value-container/SingleSelectedValueContainer.js +28 -0
  81. package/cjs/ComboBox/v3/parts/single-selected-value-container/index.js +9 -0
  82. package/cjs/ComboBox/v3/parts/single-selected-value-container/styled.js +15 -0
  83. package/cjs/ComboBox/v3/propTypes.js +25 -0
  84. package/cjs/ComboBox/v3/utils/hooks/useKeyboardNavigation.js +152 -0
  85. package/cjs/ComboBox/v3/utils/hooks/useOnElementResize.js +37 -0
  86. package/cjs/ComboBox/v3/utils/listHelper.js +39 -0
  87. package/cjs/ComboBoxFreeSolo/ComboBoxFreeSolo.js +23 -16
  88. package/cjs/ComboBoxFreeSolo/components/MultiValueLabel.js +22 -16
  89. package/cjs/ComboBoxFreeSolo/components/MultiValueRemove.js +7 -3
  90. package/cjs/ComboBoxFreeSolo/components/SingleValue.js +5 -0
  91. package/cjs/ComboBoxFreeSolo/components/SingleValueRemove.js +7 -3
  92. package/cjs/DateInput/DSDateInput.js +32 -26
  93. package/cjs/DateInput/components/DateInputImpl.js +23 -17
  94. package/cjs/DateInput/components/DateInputs.js +56 -44
  95. package/cjs/DateInput/components/utils.js +29 -16
  96. package/cjs/DateInputV2/components/DSDateInput.js +39 -33
  97. package/cjs/DateInputV2/components/DateInputs.js +18 -10
  98. package/cjs/DateInputV2/components/styled.js +22 -13
  99. package/cjs/DateInputV2/components/utils.js +34 -21
  100. package/cjs/ExpandableInput/DSExpandableInput.js +27 -24
  101. package/cjs/ExpandableInput/ExpandableInputImpl.js +21 -10
  102. package/cjs/FloatingLabelInput/DSFloatingLabelInput.js +121 -118
  103. package/cjs/FloatingLabelInput/FloatingLabelInputImpl.js +25 -20
  104. package/cjs/FloatingLabelInput/getSvgPath.js +9 -8
  105. package/cjs/FormItem/DSFormItemLayout.js +24 -17
  106. package/cjs/FormItem/Error/DSError.js +5 -4
  107. package/cjs/FormItem/Feedback.js +5 -4
  108. package/cjs/FormItem/Label/DSLabel.js +10 -9
  109. package/cjs/FormItem/ValidationFieldWrapper.js +9 -3
  110. package/cjs/Input/DSInput.js +5 -0
  111. package/cjs/Input/InputAddonWrapper.js +26 -15
  112. package/cjs/Input/InputImpl.js +43 -35
  113. package/cjs/InputGroup/AddonWrapper.js +11 -8
  114. package/cjs/InputGroup/DSInputGroup.js +20 -17
  115. package/cjs/InputMask/DSInputMask.js +5 -0
  116. package/cjs/InputMask/DSInputMaskDeprecated.js +36 -24
  117. package/cjs/InputMask/MaskTypes.js +5 -0
  118. package/cjs/InputMask/addons/AutoCorrectedDatePipe.js +11 -4
  119. package/cjs/InputMask/mask_types/DateInputMask.js +22 -12
  120. package/cjs/InputMask/mask_types/DateTimeInputMask.js +22 -12
  121. package/cjs/InputMask/mask_types/DictionaryInputMask.js +12 -6
  122. package/cjs/InputMask/mask_types/NumberInputMask.js +31 -24
  123. package/cjs/InputMask/mask_types/PhoneInputMask.js +22 -12
  124. package/cjs/InputMask/mask_types/PhoneInternationalInputMask.js +22 -12
  125. package/cjs/InputMask/mask_types/SsnInputMask.js +22 -12
  126. package/cjs/InputMask/mask_types/UsZipCodeInputMask.js +12 -6
  127. package/cjs/InputMask/mask_types/ZipCodeSearchInputMask.js +22 -12
  128. package/cjs/InputMask/mask_types/index.js +5 -0
  129. package/cjs/InputProtected/DSInputProtected.js +14 -17
  130. package/cjs/InputProtected/index.js +3 -2
  131. package/cjs/LargeInputText/DSLargeInputText.js +45 -36
  132. package/cjs/MenuItem/components/MenuItem/index.js +55 -0
  133. package/cjs/MenuItem/components/MenuItem/styled.js +15 -0
  134. package/cjs/MenuItem/components/MultiMenuItem/MultiMenuItem.js +71 -0
  135. package/cjs/MenuItem/components/MultiMenuItem/styled.js +15 -0
  136. package/cjs/MenuItem/components/Section/index.js +38 -0
  137. package/cjs/MenuItem/components/Section/props.js +16 -0
  138. package/cjs/MenuItem/components/Section/styled.js +20 -0
  139. package/cjs/MenuItem/components/Separator/index.js +29 -0
  140. package/cjs/MenuItem/components/Separator/styled.js +20 -0
  141. package/cjs/MenuItem/components/SingleMenuItem/SingleMenuItem.js +70 -0
  142. package/cjs/MenuItem/components/SubmenuItem/index.js +142 -0
  143. package/cjs/MenuItem/components/SubmenuItem/styled.js +20 -0
  144. package/cjs/MenuItem/components/index.js +22 -0
  145. package/cjs/MenuItem/components/styled.js +45 -0
  146. package/cjs/MenuItem/index.js +22 -0
  147. package/cjs/MenuItem/props.js +28 -0
  148. package/cjs/Radio/Circle.js +5 -4
  149. package/cjs/Radio/DSRadio.js +6 -1
  150. package/cjs/RadioGroup/DSRadioGroup.js +18 -10
  151. package/cjs/RequiredMark/RequiredMark.js +5 -4
  152. package/cjs/SearchBox/DSSearchBox.js +25 -27
  153. package/cjs/SearchBox/NavSearchBox.js +11 -15
  154. package/cjs/SearchBox/SButton.js +14 -11
  155. package/cjs/SearchBox/SearchBoxToggle.js +8 -4
  156. package/cjs/SearchBox/useSearch.js +12 -7
  157. package/cjs/SearchBox/withSearchable.js +18 -12
  158. package/cjs/TextBox/DSTextBox.js +5 -0
  159. package/cjs/TimeInput/DSTimeInput.js +45 -37
  160. package/cjs/TimeInput/TimeInputImpl.js +18 -12
  161. package/cjs/TimeInput/TimeInputs.js +46 -29
  162. package/cjs/TimeInput/utils.js +13 -11
  163. package/cjs/Toggle/DSToggle.js +5 -0
  164. package/cjs/Toggle/DSToggleImpl.js +33 -28
  165. package/cjs/Toggle/DSToggleRender.js +38 -33
  166. package/cjs/Toggle/toggleHelper.js +21 -18
  167. package/cjs/index.js +61 -15
  168. package/esm/Checkbox/DSCheckbox.js +6 -1
  169. package/esm/CheckboxGroup/DSCheckboxGroup.js +18 -10
  170. package/esm/ComboBox/index.js +1 -0
  171. package/esm/ComboBox/v1/DSComboBox.js +29 -24
  172. package/esm/ComboBox/v1/components/AllOption.js +5 -0
  173. package/esm/ComboBox/v1/components/ClearIndicator.js +1 -1
  174. package/esm/ComboBox/v1/components/Control.js +14 -6
  175. package/esm/ComboBox/v1/components/CustomOption.js +12 -6
  176. package/esm/ComboBox/v1/components/CustomOptionMulti.js +12 -6
  177. package/esm/ComboBox/v1/components/DropdownIndicator.js +6 -1
  178. package/esm/ComboBox/v1/components/MenuList.js +5 -0
  179. package/esm/ComboBox/v1/components/MultiSelectHeader.js +3 -0
  180. package/esm/ComboBox/v1/components/MultiValueLabel.js +4 -3
  181. package/esm/ComboBox/v1/components/MultiValueRemove.js +5 -0
  182. package/esm/ComboBox/v1/components/SelectMenu.js +26 -18
  183. package/esm/ComboBox/v1/components/SingleValueLabel.js +4 -3
  184. package/esm/ComboBox/v1/components/ValueContainer.js +5 -0
  185. package/esm/ComboBox/v1/components/calculateWidth.js +4 -0
  186. package/esm/ComboBox/v1/components/getoptions.js +9 -6
  187. package/esm/ComboBox/v1/withSelectStringValueConverter.js +27 -16
  188. package/esm/ComboBox/v2/Combobox.js +10 -3
  189. package/esm/ComboBox/v2/components/AllOption.js +5 -0
  190. package/esm/ComboBox/v2/components/ClearIndicator.js +6 -1
  191. package/esm/ComboBox/v2/components/Content.js +5 -0
  192. package/esm/ComboBox/v2/components/Control.js +14 -6
  193. package/esm/ComboBox/v2/components/CustomOption.js +12 -6
  194. package/esm/ComboBox/v2/components/CustomOptionMulti.js +14 -6
  195. package/esm/ComboBox/v2/components/DropdownIndicator.js +6 -1
  196. package/esm/ComboBox/v2/components/GroupHeading.js +5 -0
  197. package/esm/ComboBox/v2/components/IndicatorSeparator.js +11 -3
  198. package/esm/ComboBox/v2/components/MenuList.js +5 -0
  199. package/esm/ComboBox/v2/components/MultiSelectHeader.js +3 -0
  200. package/esm/ComboBox/v2/components/MultiValueLabel.js +4 -3
  201. package/esm/ComboBox/v2/components/MultiValueRemove.js +5 -0
  202. package/esm/ComboBox/v2/components/SelectMenu.js +5 -0
  203. package/esm/ComboBox/v2/components/SingleValueLabel.js +4 -3
  204. package/esm/ComboBox/v2/components/ValueContainer.js +6 -1
  205. package/esm/ComboBox/v2/components/calculateWidth.js +4 -0
  206. package/esm/ComboBox/v2/components/getoptions.js +9 -6
  207. package/esm/ComboBox/v2/components/useMenuListHeight.js +3 -0
  208. package/esm/ComboBox/v3/ComboBox.js +24 -0
  209. package/esm/ComboBox/v3/ComboBoxCTX.js +49 -0
  210. package/esm/ComboBox/v3/ComboboxDataTestids.js +13 -0
  211. package/esm/ComboBox/v3/config/constants.js +10 -0
  212. package/esm/ComboBox/v3/config/useComboBox.js +114 -0
  213. package/esm/ComboBox/v3/config/useGetPropsWithDefault.js +7 -0
  214. package/esm/ComboBox/v3/index.d.js +1 -0
  215. package/esm/ComboBox/v3/index.js +1 -0
  216. package/esm/ComboBox/v3/parts/a11y-messages/MultiAllyMessages.js +25 -0
  217. package/esm/ComboBox/v3/parts/a11y-messages/SingleAllyMessages.js +20 -0
  218. package/esm/ComboBox/v3/parts/a11y-messages/index.js +2 -0
  219. package/esm/ComboBox/v3/parts/a11y-messages/styled.js +7 -0
  220. package/esm/ComboBox/v3/parts/container/Container.js +59 -0
  221. package/esm/ComboBox/v3/parts/container/index.js +1 -0
  222. package/esm/ComboBox/v3/parts/container/styled.js +13 -0
  223. package/esm/ComboBox/v3/parts/controls/Controls.js +63 -0
  224. package/esm/ComboBox/v3/parts/controls/index.js +1 -0
  225. package/esm/ComboBox/v3/parts/controls/styled.js +52 -0
  226. package/esm/ComboBox/v3/parts/controls-input/ControlsInput.js +59 -0
  227. package/esm/ComboBox/v3/parts/controls-input/styled.js +16 -0
  228. package/esm/ComboBox/v3/parts/controls-input/useControlsInput.js +73 -0
  229. package/esm/ComboBox/v3/parts/dropdown-indicator/DropdownIndicator.js +26 -0
  230. package/esm/ComboBox/v3/parts/dropdown-indicator/index.js +1 -0
  231. package/esm/ComboBox/v3/parts/dropdown-indicator/styled.js +8 -0
  232. package/esm/ComboBox/v3/parts/empty-state/index.js +19 -0
  233. package/esm/ComboBox/v3/parts/empty-state/styled.js +10 -0
  234. package/esm/ComboBox/v3/parts/header-list/HeaderList.js +105 -0
  235. package/esm/ComboBox/v3/parts/header-list/index.js +1 -0
  236. package/esm/ComboBox/v3/parts/header-list/styled.js +41 -0
  237. package/esm/ComboBox/v3/parts/header-list/useHeaderListHandlers.js +69 -0
  238. package/esm/ComboBox/v3/parts/menu-list/MenuList.js +73 -0
  239. package/esm/ComboBox/v3/parts/menu-list/index.js +1 -0
  240. package/esm/ComboBox/v3/parts/menu-list/styled.js +24 -0
  241. package/esm/ComboBox/v3/parts/menu-list/useItemRenderer.js +97 -0
  242. package/esm/ComboBox/v3/parts/menu-list/useMenuList.js +57 -0
  243. package/esm/ComboBox/v3/parts/multi-selected-values-container/MultiSelectedValuesContainer.js +54 -0
  244. package/esm/ComboBox/v3/parts/multi-selected-values-container/index.js +1 -0
  245. package/esm/ComboBox/v3/parts/multi-selected-values-container/styled.js +13 -0
  246. package/esm/ComboBox/v3/parts/multi-selected-values-container/useGroupPills.js +67 -0
  247. package/esm/ComboBox/v3/parts/single-selected-value-container/SingleSelectedValueContainer.js +20 -0
  248. package/esm/ComboBox/v3/parts/single-selected-value-container/index.js +1 -0
  249. package/esm/ComboBox/v3/parts/single-selected-value-container/styled.js +7 -0
  250. package/esm/ComboBox/v3/propTypes.js +21 -0
  251. package/esm/ComboBox/v3/utils/hooks/useKeyboardNavigation.js +148 -0
  252. package/esm/ComboBox/v3/utils/hooks/useOnElementResize.js +33 -0
  253. package/esm/ComboBox/v3/utils/listHelper.js +30 -0
  254. package/esm/ComboBoxFreeSolo/ComboBoxFreeSolo.js +23 -16
  255. package/esm/ComboBoxFreeSolo/components/MultiValueLabel.js +21 -15
  256. package/esm/ComboBoxFreeSolo/components/MultiValueRemove.js +6 -1
  257. package/esm/ComboBoxFreeSolo/components/SingleValue.js +5 -0
  258. package/esm/ComboBoxFreeSolo/components/SingleValueRemove.js +6 -1
  259. package/esm/DateInput/DSDateInput.js +31 -25
  260. package/esm/DateInput/components/DateInputImpl.js +23 -17
  261. package/esm/DateInput/components/DateInputs.js +55 -42
  262. package/esm/DateInput/components/utils.js +23 -10
  263. package/esm/DateInputV2/components/DSDateInput.js +39 -33
  264. package/esm/DateInputV2/components/DateInputs.js +18 -10
  265. package/esm/DateInputV2/components/styled.js +19 -10
  266. package/esm/DateInputV2/components/utils.js +23 -10
  267. package/esm/ExpandableInput/DSExpandableInput.js +27 -24
  268. package/esm/ExpandableInput/ExpandableInputImpl.js +21 -10
  269. package/esm/FloatingLabelInput/DSFloatingLabelInput.js +121 -118
  270. package/esm/FloatingLabelInput/FloatingLabelInputImpl.js +24 -18
  271. package/esm/FloatingLabelInput/getSvgPath.js +9 -8
  272. package/esm/FormItem/DSFormItemLayout.js +23 -15
  273. package/esm/FormItem/Error/DSError.js +5 -4
  274. package/esm/FormItem/Feedback.js +5 -4
  275. package/esm/FormItem/Label/DSLabel.js +10 -9
  276. package/esm/FormItem/ValidationFieldWrapper.js +9 -3
  277. package/esm/Input/DSInput.js +5 -0
  278. package/esm/Input/InputAddonWrapper.js +26 -15
  279. package/esm/Input/InputImpl.js +41 -32
  280. package/esm/InputGroup/AddonWrapper.js +10 -7
  281. package/esm/InputGroup/DSInputGroup.js +20 -17
  282. package/esm/InputMask/DSInputMask.js +5 -0
  283. package/esm/InputMask/DSInputMaskDeprecated.js +36 -24
  284. package/esm/InputMask/MaskTypes.js +5 -0
  285. package/esm/InputMask/addons/AutoCorrectedDatePipe.js +11 -4
  286. package/esm/InputMask/mask_types/DateInputMask.js +22 -12
  287. package/esm/InputMask/mask_types/DateTimeInputMask.js +22 -12
  288. package/esm/InputMask/mask_types/DictionaryInputMask.js +12 -6
  289. package/esm/InputMask/mask_types/NumberInputMask.js +31 -24
  290. package/esm/InputMask/mask_types/PhoneInputMask.js +22 -12
  291. package/esm/InputMask/mask_types/PhoneInternationalInputMask.js +22 -12
  292. package/esm/InputMask/mask_types/SsnInputMask.js +22 -12
  293. package/esm/InputMask/mask_types/UsZipCodeInputMask.js +12 -6
  294. package/esm/InputMask/mask_types/ZipCodeSearchInputMask.js +22 -12
  295. package/esm/InputMask/mask_types/index.js +5 -0
  296. package/esm/InputProtected/DSInputProtected.js +9 -8
  297. package/esm/InputProtected/index.js +1 -1
  298. package/esm/LargeInputText/DSLargeInputText.js +45 -36
  299. package/esm/MenuItem/components/MenuItem/index.js +45 -0
  300. package/esm/MenuItem/components/MenuItem/styled.js +7 -0
  301. package/esm/MenuItem/components/MultiMenuItem/MultiMenuItem.js +62 -0
  302. package/esm/MenuItem/components/MultiMenuItem/styled.js +7 -0
  303. package/esm/MenuItem/components/Section/index.js +29 -0
  304. package/esm/MenuItem/components/Section/props.js +11 -0
  305. package/esm/MenuItem/components/Section/styled.js +11 -0
  306. package/esm/MenuItem/components/Separator/index.js +21 -0
  307. package/esm/MenuItem/components/Separator/styled.js +11 -0
  308. package/esm/MenuItem/components/SingleMenuItem/SingleMenuItem.js +61 -0
  309. package/esm/MenuItem/components/SubmenuItem/index.js +129 -0
  310. package/esm/MenuItem/components/SubmenuItem/styled.js +11 -0
  311. package/esm/MenuItem/components/index.js +6 -0
  312. package/esm/MenuItem/components/styled.js +34 -0
  313. package/esm/MenuItem/index.js +6 -0
  314. package/esm/MenuItem/props.js +23 -0
  315. package/esm/Radio/Circle.js +5 -4
  316. package/esm/Radio/DSRadio.js +6 -1
  317. package/esm/RadioGroup/DSRadioGroup.js +18 -10
  318. package/esm/RequiredMark/RequiredMark.js +5 -4
  319. package/esm/SearchBox/DSSearchBox.js +24 -24
  320. package/esm/SearchBox/NavSearchBox.js +8 -8
  321. package/esm/SearchBox/SButton.js +14 -11
  322. package/esm/SearchBox/SearchBoxToggle.js +8 -3
  323. package/esm/SearchBox/useSearch.js +11 -6
  324. package/esm/SearchBox/withSearchable.js +17 -11
  325. package/esm/TextBox/DSTextBox.js +5 -0
  326. package/esm/TimeInput/DSTimeInput.js +45 -37
  327. package/esm/TimeInput/TimeInputImpl.js +17 -11
  328. package/esm/TimeInput/TimeInputs.js +46 -29
  329. package/esm/TimeInput/utils.js +9 -7
  330. package/esm/Toggle/DSToggle.js +5 -0
  331. package/esm/Toggle/DSToggleImpl.js +34 -29
  332. package/esm/Toggle/DSToggleRender.js +37 -31
  333. package/esm/Toggle/toggleHelper.js +21 -18
  334. package/esm/index.js +26 -13
  335. package/package.json +282 -22
  336. package/types/Checkbox/DSCheckbox.d.ts +78 -13
  337. package/types/Checkbox/elements/CheckMark.d.ts +1 -1
  338. package/types/Checkbox/props.d.ts +58 -12
  339. package/types/CheckboxGroup/DSCheckboxGroup.d.ts +51 -7
  340. package/types/CheckboxGroup/props.d.ts +37 -6
  341. package/types/ComboBox/index.d.ts +1 -0
  342. package/types/ComboBox/v2/Combobox.d.ts +56 -1
  343. package/types/ComboBox/v3/ComboBox.d.ts +62 -0
  344. package/types/ComboBox/v3/ComboBoxCTX.d.ts +6 -0
  345. package/types/ComboBox/v3/ComboboxDataTestids.d.ts +11 -0
  346. package/types/ComboBox/v3/config/constants.d.ts +8 -0
  347. package/types/ComboBox/v3/config/useComboBox.d.ts +2 -0
  348. package/types/ComboBox/v3/config/useGetPropsWithDefault.d.ts +2 -0
  349. package/types/ComboBox/v3/index.d.ts +1 -0
  350. package/types/ComboBox/v3/parts/a11y-messages/MultiAllyMessages.d.ts +3 -0
  351. package/types/ComboBox/v3/parts/a11y-messages/SingleAllyMessages.d.ts +3 -0
  352. package/types/ComboBox/v3/parts/a11y-messages/index.d.ts +2 -0
  353. package/types/ComboBox/v3/parts/a11y-messages/styled.d.ts +1 -0
  354. package/types/ComboBox/v3/parts/container/Container.d.ts +3 -0
  355. package/types/ComboBox/v3/parts/container/index.d.ts +1 -0
  356. package/types/ComboBox/v3/parts/container/styled.d.ts +3 -0
  357. package/types/ComboBox/v3/parts/controls/Controls.d.ts +3 -0
  358. package/types/ComboBox/v3/parts/controls/index.d.ts +1 -0
  359. package/types/ComboBox/v3/parts/controls/styled.d.ts +7 -0
  360. package/types/ComboBox/v3/parts/controls-input/ControlsInput.d.ts +3 -0
  361. package/types/ComboBox/v3/parts/controls-input/styled.d.ts +4 -0
  362. package/types/ComboBox/v3/parts/controls-input/useControlsInput.d.ts +12 -0
  363. package/types/ComboBox/v3/parts/dropdown-indicator/DropdownIndicator.d.ts +3 -0
  364. package/types/ComboBox/v3/parts/dropdown-indicator/index.d.ts +0 -0
  365. package/types/ComboBox/v3/parts/dropdown-indicator/styled.d.ts +1 -0
  366. package/types/ComboBox/v3/parts/empty-state/index.d.ts +3 -0
  367. package/types/ComboBox/v3/parts/empty-state/styled.d.ts +2 -0
  368. package/types/ComboBox/v3/parts/header-list/HeaderList.d.ts +3 -0
  369. package/types/ComboBox/v3/parts/header-list/index.d.ts +1 -0
  370. package/types/ComboBox/v3/parts/header-list/styled.d.ts +7 -0
  371. package/types/ComboBox/v3/parts/header-list/useHeaderListHandlers.d.ts +12 -0
  372. package/types/ComboBox/v3/parts/menu-list/MenuList.d.ts +3 -0
  373. package/types/ComboBox/v3/parts/menu-list/index.d.ts +1 -0
  374. package/types/ComboBox/v3/parts/menu-list/styled.d.ts +10 -0
  375. package/types/ComboBox/v3/parts/menu-list/useItemRenderer.d.ts +2 -0
  376. package/types/ComboBox/v3/parts/menu-list/useMenuList.d.ts +2 -0
  377. package/types/ComboBox/v3/parts/multi-selected-values-container/MultiSelectedValuesContainer.d.ts +3 -0
  378. package/types/ComboBox/v3/parts/multi-selected-values-container/index.d.ts +1 -0
  379. package/types/ComboBox/v3/parts/multi-selected-values-container/styled.d.ts +3 -0
  380. package/types/ComboBox/v3/parts/multi-selected-values-container/useGroupPills.d.ts +2 -0
  381. package/types/ComboBox/v3/parts/single-selected-value-container/SingleSelectedValueContainer.d.ts +3 -0
  382. package/types/ComboBox/v3/parts/single-selected-value-container/index.d.ts +1 -0
  383. package/types/ComboBox/v3/parts/single-selected-value-container/styled.d.ts +1 -0
  384. package/types/ComboBox/v3/propTypes.d.ts +51 -0
  385. package/types/ComboBox/v3/tests/combobox-general.test.d.ts +1 -0
  386. package/types/ComboBox/v3/tests/combobox-multi-select.test.d.ts +1 -0
  387. package/types/ComboBox/v3/tests/combobox-single-select.test.d.ts +1 -0
  388. package/types/ComboBox/v3/tests/combobox-special-keys.test.d.ts +1 -0
  389. package/types/ComboBox/v3/tests/utils.d.ts +22 -0
  390. package/types/ComboBox/v3/utils/hooks/useKeyboardNavigation.d.ts +4 -0
  391. package/types/ComboBox/v3/utils/hooks/useOnElementResize.d.ts +3 -0
  392. package/types/ComboBox/v3/utils/listHelper.d.ts +7 -0
  393. package/types/DateInput/DSDateInput.d.ts +97 -16
  394. package/types/DateInput/components/utils.d.ts +8 -8
  395. package/types/DateInput/props.d.ts +97 -16
  396. package/types/DateInputV2/components/DSDateInput.d.ts +72 -5
  397. package/types/DateInputV2/components/DateInputs.d.ts +1 -1
  398. package/types/DateInputV2/components/props.d.ts +61 -10
  399. package/types/DateInputV2/components/styled.d.ts +4 -4
  400. package/types/DateInputV2/components/utils.d.ts +8 -8
  401. package/types/FloatingLabelInput/DSFloatingLabelInput.d.ts +118 -20
  402. package/types/FormItem/DSFormItemLayout.d.ts +390 -60
  403. package/types/FormItem/Error/DSError.d.ts +21 -3
  404. package/types/FormItem/Suffix/Suffix.d.ts +3 -3
  405. package/types/FormItem/defaultProps.d.ts +118 -20
  406. package/types/FormItem/index.d.ts +1 -1
  407. package/types/FormItem/props.d.ts +229 -39
  408. package/types/InputGroup/DSInputGroup.d.ts +56 -8
  409. package/types/InputGroup/props.d.ts +43 -7
  410. package/types/InputMask/DSInputMask.d.ts +172 -30
  411. package/types/InputMask/mask_types/DateInputMask.d.ts +34 -33
  412. package/types/InputMask/mask_types/DateTimeInputMask.d.ts +34 -33
  413. package/types/InputMask/mask_types/DictionaryInputMask.d.ts +37 -36
  414. package/types/InputMask/mask_types/NumberInputMask.d.ts +46 -45
  415. package/types/InputMask/mask_types/PhoneInputMask.d.ts +34 -33
  416. package/types/InputMask/mask_types/PhoneInternationalInputMask.d.ts +34 -33
  417. package/types/InputMask/mask_types/SsnInputMask.d.ts +34 -33
  418. package/types/InputMask/mask_types/UsZipCodeInputMask.d.ts +34 -33
  419. package/types/InputMask/mask_types/ZipCodeSearchInputMask.d.ts +34 -33
  420. package/types/InputMask/props.d.ts +172 -30
  421. package/types/InputProtected/DSInputProtected.d.ts +57 -10
  422. package/types/InputProtected/index.d.ts +1 -0
  423. package/types/InputProtected/props.d.ts +43 -8
  424. package/types/LargeInputText/DSLargeInputText.d.ts +163 -27
  425. package/types/LargeInputText/props.d.ts +163 -27
  426. package/types/MenuItem/components/MenuItem/index.d.ts +20 -0
  427. package/types/MenuItem/components/MenuItem/styled.d.ts +1 -0
  428. package/types/MenuItem/components/MultiMenuItem/MultiMenuItem.d.ts +21 -0
  429. package/types/MenuItem/components/MultiMenuItem/styled.d.ts +1 -0
  430. package/types/MenuItem/components/Section/index.d.ts +12 -0
  431. package/types/MenuItem/components/Section/props.d.ts +14 -0
  432. package/types/MenuItem/components/Section/styled.d.ts +2 -0
  433. package/types/MenuItem/components/Separator/index.d.ts +8 -0
  434. package/types/MenuItem/components/Separator/styled.d.ts +2 -0
  435. package/types/MenuItem/components/SingleMenuItem/SingleMenuItem.d.ts +16 -0
  436. package/types/MenuItem/components/SubmenuItem/index.d.ts +20 -0
  437. package/types/MenuItem/components/SubmenuItem/styled.d.ts +2 -0
  438. package/types/MenuItem/components/index.d.ts +6 -0
  439. package/types/MenuItem/components/styled.d.ts +3 -0
  440. package/types/MenuItem/index.d.ts +1 -0
  441. package/types/MenuItem/props.d.ts +37 -0
  442. package/types/Radio/Circle.d.ts +1 -1
  443. package/types/Radio/DSRadio.d.ts +79 -13
  444. package/types/RadioGroup/DSRadioGroup.d.ts +51 -7
  445. package/types/RadioGroup/props.d.ts +37 -6
  446. package/types/SearchBox/DSSearchBox.d.ts +146 -21
  447. package/types/SearchBox/NavSearchBox.d.ts +18 -3
  448. package/types/SearchBox/SButton.d.ts +13 -2
  449. package/types/SearchBox/props.d.ts +133 -22
  450. package/types/SearchBox/styled.d.ts +1 -49
  451. package/types/TextBox/DSTextBox.d.ts +146 -21
  452. package/types/TimeInput/DSTimeInput.d.ts +83 -12
  453. package/types/TimeInput/utils.d.ts +8 -8
  454. package/types/Toggle/DSToggle.d.ts +84 -12
  455. package/types/index.d.ts +29 -10
@@ -2,13 +2,14 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const isValidDrag = ({
6
- inside,
7
- circleWidth,
8
- drag,
9
- checked,
10
- boxWidth
11
- }) => {
5
+ const isValidDrag = _ref => {
6
+ let {
7
+ inside,
8
+ circleWidth,
9
+ drag,
10
+ checked,
11
+ boxWidth
12
+ } = _ref;
12
13
  const difference = boxWidth - circleWidth;
13
14
  return checked ? !inside && -drag > difference / 2 : !inside && drag > boxWidth / 3;
14
15
  };
@@ -17,13 +18,14 @@ const cleanDrag = () => ({
17
18
  isDragging: false
18
19
  }); // eslint-disable-next-line complexity
19
20
 
20
- const calculateDrag = (clientX, {
21
- startPoint,
22
- checked,
23
- isDragging,
24
- boxWidth,
25
- circleWidth
26
- }) => {
21
+ const calculateDrag = (clientX, _ref2) => {
22
+ let {
23
+ startPoint,
24
+ checked,
25
+ isDragging,
26
+ boxWidth,
27
+ circleWidth
28
+ } = _ref2;
27
29
  if (!isDragging) return null;
28
30
  const move = startPoint - clientX;
29
31
  const drag = !checked ? clientX - startPoint : boxWidth - circleWidth - move;
@@ -31,10 +33,11 @@ const calculateDrag = (clientX, {
31
33
  if (checked && clientX > 0 && clientX < startPoint && move < boxWidth * 0.7) return drag;
32
34
  return null;
33
35
  };
34
- const dragStartingPoints = checked => ({
35
- circleWidth,
36
- boxWidth
37
- }) => {
36
+ const dragStartingPoints = checked => _ref3 => {
37
+ let {
38
+ circleWidth,
39
+ boxWidth
40
+ } = _ref3;
38
41
  if (checked) return {
39
42
  drag: boxWidth - circleWidth
40
43
  };
package/cjs/index.js CHANGED
@@ -2,18 +2,31 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var ComboBoxFreeSolo = require('./ComboBoxFreeSolo/ComboBoxFreeSolo.js');
5
+ var DSCheckbox = require('./Checkbox/DSCheckbox.js');
6
6
  var DSCheckboxGroup = require('./CheckboxGroup/DSCheckboxGroup.js');
7
7
  require('./ComboBox/v1/DSComboBox.js');
8
8
  var Combobox = require('./ComboBox/v2/Combobox.js');
9
+ var ComboBox = require('./ComboBox/v3/ComboBox.js');
10
+ var ComboBoxFreeSolo = require('./ComboBoxFreeSolo/ComboBoxFreeSolo.js');
9
11
  var DSDateInput = require('./DateInput/DSDateInput.js');
12
+ var DateInputs = require('./DateInputV2/components/DateInputs.js');
13
+ var DSDateInput$1 = require('./DateInputV2/components/DSDateInput.js');
10
14
  var DSExpandableInput = require('./ExpandableInput/DSExpandableInput.js');
11
15
  var DSFloatingLabelInput = require('./FloatingLabelInput/DSFloatingLabelInput.js');
12
16
  var DSFormItemLayout = require('./FormItem/DSFormItemLayout.js');
13
- require('./FormItem/Error/DSError.js');
17
+ var DSError = require('./FormItem/Error/DSError.js');
14
18
  var DSInput = require('./Input/DSInput.js');
15
19
  var DSInputGroup = require('./InputGroup/DSInputGroup.js');
20
+ var DSInputMask = require('./InputMask/DSInputMask.js');
21
+ var DSInputProtected = require('./InputProtected/DSInputProtected.js');
22
+ var options = require('./InputProtected/options.js');
16
23
  var DSLargeInputText = require('./LargeInputText/DSLargeInputText.js');
24
+ var SingleMenuItem = require('./MenuItem/components/SingleMenuItem/SingleMenuItem.js');
25
+ var MultiMenuItem = require('./MenuItem/components/MultiMenuItem/MultiMenuItem.js');
26
+ var index = require('./MenuItem/components/MenuItem/index.js');
27
+ var index$1 = require('./MenuItem/components/SubmenuItem/index.js');
28
+ var index$2 = require('./MenuItem/components/Section/index.js');
29
+ var index$3 = require('./MenuItem/components/Separator/index.js');
17
30
  var DSRadio = require('./Radio/DSRadio.js');
18
31
  var DSRadioGroup = require('./RadioGroup/DSRadioGroup.js');
19
32
  var RequiredMark = require('./RequiredMark/RequiredMark.js');
@@ -23,28 +36,57 @@ var NavSearchBox = require('./SearchBox/NavSearchBox.js');
23
36
  var DSTextBox = require('./TextBox/DSTextBox.js');
24
37
  var DSTimeInput = require('./TimeInput/DSTimeInput.js');
25
38
  var DSToggle = require('./Toggle/DSToggle.js');
26
- var DSInputProtected = require('./InputProtected/DSInputProtected.js');
27
- var DSCheckbox = require('./Checkbox/DSCheckbox.js');
28
39
  var TimeInputImpl = require('./TimeInput/TimeInputImpl.js');
29
40
  var propTypes = require('@elliemae/ds-shared/prop-types');
30
41
  var Select = require('react-select');
42
+ var DateInputImpl = require('./DateInput/components/DateInputImpl.js');
31
43
  var variants = require('./FormItem/variants.js');
32
44
  var InputAddonWrapper = require('./Input/InputAddonWrapper.js');
33
- var options = require('./InputProtected/options.js');
45
+ var MaskTypes = require('./InputMask/MaskTypes.js');
46
+ var MaskPipes = require('./InputMask/MaskPipes.js');
34
47
 
35
48
 
36
49
 
37
- exports.ComboBoxFreeSolo = ComboBoxFreeSolo;
50
+ exports.CheckboxWithSchema = DSCheckbox.CheckboxWithSchema;
51
+ exports.DSCheckbox = DSCheckbox.DSCheckbox;
38
52
  exports.DSCheckboxGroup = DSCheckboxGroup.DSCheckboxGroup;
53
+ exports.DSCheckboxGroupWithSchema = DSCheckboxGroup.DSCheckboxGroupWithSchema;
54
+ exports.ComboBoxWithSchema = Combobox.ComboBoxWithSchema;
39
55
  exports.DSComboBox = Combobox.DSComboBox2;
56
+ exports.DSComboBox2 = Combobox.DSComboBox2;
57
+ exports.DSComboBoxWithSchema = ComboBox.DSComboBoxWithSchema;
58
+ exports.ComboBoxFreeSolo = ComboBoxFreeSolo;
40
59
  exports.DSDateInput = DSDateInput["default"];
60
+ exports.DSDateInputWithSchema = DSDateInput.DSDateInputWithSchema;
61
+ exports.DateInputsV2Impl = DateInputs.DateInputs;
62
+ exports.DSDateInputV2 = DSDateInput$1.DSDateInputV2;
63
+ exports.DSDateInputV2WithSchema = DSDateInput$1.DSDateInputV2WithSchema;
41
64
  exports.DSExpandableInput = DSExpandableInput;
42
65
  exports.DSFloatingLabelInput = DSFloatingLabelInput;
43
66
  exports.DSFormItemLayout = DSFormItemLayout["default"];
67
+ exports.DSFormItemLayoutWithSchema = DSFormItemLayout.DSFormItemLayoutWithSchema;
68
+ exports.DSError = DSError["default"];
69
+ exports.DSErrorWithSchema = DSError.DSErrorWithSchema;
44
70
  exports.DSInput = DSInput["default"];
45
71
  exports.DSInputGroup = DSInputGroup["default"];
72
+ exports.DSInputGroupWithSchema = DSInputGroup.DSInputGroupWithSchema;
73
+ exports.DSInputMask = DSInputMask.DSInputMask;
74
+ exports.DSInputMaskWithSchema = DSInputMask.DSInputMaskWithSchema;
75
+ exports.DSInputProtected = DSInputProtected.DSInputProtected;
76
+ exports.DSInputProtectedWithSchema = DSInputProtected.DSInputProtectedWithSchema;
77
+ exports.LEFT_ADDON_OPTIONS = options.LEFT_ADDON_OPTIONS;
78
+ exports.RIGHT_ADDON_OPTIONS = options.RIGHT_ADDON_OPTIONS;
46
79
  exports.DSLargeInputText = DSLargeInputText["default"];
47
80
  exports.DSLargeInputTextWithSchema = DSLargeInputText.DSLargeInputTextWithSchema;
81
+ exports.SingleMenuItem = SingleMenuItem.SingleMenuItem;
82
+ exports.MultiMenuItem = MultiMenuItem.MultiMenuItem;
83
+ exports.MultiMenuItemWithSchema = MultiMenuItem.MultiMenuItemWithSchema;
84
+ exports.MenuItem = index.MenuItem;
85
+ exports.MenuItemWithSchema = index.MenuItemWithSchema;
86
+ exports.SubmenuItem = index$1.SubmenuItem;
87
+ exports.SubmenuItemWithSchema = index$1.SubmenuItemWithSchema;
88
+ exports.Section = index$2.Section;
89
+ exports.Separator = index$3.Separator;
48
90
  exports.DSRadio = DSRadio["default"];
49
91
  exports.DSRadioWithSchema = DSRadio.DSRadioWithSchema;
50
92
  exports.DSRadioGroup = DSRadioGroup["default"];
@@ -55,22 +97,26 @@ exports.SearchBoxWithSchema = DSSearchBox.SearchBoxWithSchema;
55
97
  exports.DSNavSearchBox = NavSearchBox.NavSearchBox;
56
98
  exports.DSNavSearchBoxWithSchema = NavSearchBox.DSNavSearchBoxWithSchema;
57
99
  exports.DSTextBox = DSTextBox["default"];
100
+ exports.DSTextBoxWithSchema = DSTextBox.DSTextBoxWithSchema;
58
101
  exports.DSTimeInput = DSTimeInput["default"];
102
+ exports.DSTimeInputWithSchema = DSTimeInput.DSTimeInputWithSchema;
59
103
  exports.DSToggle = DSToggle["default"];
60
104
  exports.DSToggleWithSchema = DSToggle.DSToggleWithSchema;
61
- exports.DSInputProtected = DSInputProtected["default"];
62
- exports.InputProtectedWithSchema = DSInputProtected.InputProtectedWithSchema;
63
- exports.DSCheckbox = DSCheckbox.DSCheckbox;
64
105
  exports.TimeInputImpl = TimeInputImpl;
106
+ Object.defineProperty(exports, 'CHECKBOX_VARIANT', {
107
+ enumerable: true,
108
+ get: function () { return propTypes.CHECKBOX_VARIANT; }
109
+ });
65
110
  Object.defineProperty(exports, 'COMBOBOX_VARIANT', {
66
- enumerable: true,
67
- get: function () { return propTypes.COMBOBOX_VARIANT; }
111
+ enumerable: true,
112
+ get: function () { return propTypes.COMBOBOX_VARIANT; }
68
113
  });
69
114
  Object.defineProperty(exports, 'components', {
70
- enumerable: true,
71
- get: function () { return Select.components; }
115
+ enumerable: true,
116
+ get: function () { return Select.components; }
72
117
  });
118
+ exports.DateInputImpl = DateInputImpl;
73
119
  exports.FORMITEM_LAYOUT_VARIANTS = variants.FORMITEM_LAYOUT_VARIANTS;
74
120
  exports.InputAddonWrapper = InputAddonWrapper;
75
- exports.LEFT_ADDON_OPTIONS = options.LEFT_ADDON_OPTIONS;
76
- exports.RIGHT_ADDON_OPTIONS = options.RIGHT_ADDON_OPTIONS;
121
+ exports.MASK_TYPES = MaskTypes.MASK_TYPES;
122
+ exports.MASK_PIPES = MaskPipes.MASK_PIPES;
@@ -1,3 +1,8 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
5
+ import 'core-js/modules/esnext.iterator.for-each.js';
1
6
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
7
  import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
3
8
  import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
@@ -5,7 +10,7 @@ import { useMemo, useRef, useCallback } from 'react';
5
10
  import { describe } from 'react-desc';
6
11
  import { uid } from 'uid';
7
12
  import { convertPropToCssClassName } from '@elliemae/ds-classnames';
8
- import { cx } from '@elliemae/ds-utilities/utils';
13
+ import { cx } from '@elliemae/ds-utilities';
9
14
  import CheckMark from './elements/CheckMark.js';
10
15
  import { defaultProps } from './defaultProps.js';
11
16
  import { checkboxProps } from './props.js';
@@ -1,5 +1,12 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
5
+ import 'core-js/modules/esnext.iterator.for-each.js';
1
6
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
7
  import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
8
+ import 'core-js/modules/esnext.async-iterator.map.js';
9
+ import 'core-js/modules/esnext.iterator.map.js';
3
10
  import React from 'react';
4
11
  import { describe } from 'react-desc';
5
12
  import GroupItem from '@elliemae/ds-shared/GroupContext/GroupItem';
@@ -25,16 +32,17 @@ const CheckboxItem = props => /*#__PURE__*/_jsx(GroupItem, {
25
32
  }))
26
33
  });
27
34
 
28
- const DSCheckboxGroup = ({
29
- onChange,
30
- activeValue,
31
- children,
32
- disabled,
33
- orientation,
34
- truncateText,
35
- labelProps,
36
- containerProps
37
- }) => {
35
+ const DSCheckboxGroup = _ref => {
36
+ let {
37
+ onChange,
38
+ activeValue,
39
+ children,
40
+ disabled,
41
+ orientation,
42
+ truncateText,
43
+ labelProps,
44
+ containerProps
45
+ } = _ref;
38
46
  const checkRefs = [];
39
47
  const count = React.Children.count(children);
40
48
 
@@ -1,4 +1,5 @@
1
1
  import './v1/DSComboBox.js';
2
2
  export { ComboBoxWithSchema, DSComboBox2, DSComboBox2 as default } from './v2/Combobox.js';
3
+ export { DSComboBox, DSComboBoxWithSchema } from './v3/ComboBox.js';
3
4
  export { components } from 'react-select';
4
5
  export { COMBOBOX_VARIANT } from '@elliemae/ds-shared/prop-types';
@@ -1,14 +1,23 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.filter.js';
3
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
4
+ import 'core-js/modules/esnext.iterator.for-each.js';
5
+ import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
1
6
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
7
  import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
3
- import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
8
+ import 'core-js/modules/esnext.async-iterator.map.js';
9
+ import 'core-js/modules/esnext.iterator.map.js';
4
10
  import 'core-js/modules/web.dom-collections.iterator.js';
11
+ import 'core-js/modules/esnext.async-iterator.find.js';
12
+ import 'core-js/modules/esnext.iterator.constructor.js';
13
+ import 'core-js/modules/esnext.iterator.find.js';
5
14
  import React from 'react';
6
15
  import { debounce, throttle } from 'lodash';
7
16
  import Select from 'react-select';
8
17
  export { components } from 'react-select';
9
18
  import { Manager } from 'react-popper';
10
19
  import { withContentRect } from 'react-measure';
11
- import { cx } from '@elliemae/ds-utilities/utils';
20
+ import { cx } from '@elliemae/ds-utilities';
12
21
  import withSelectStringValueConverter from './withSelectStringValueConverter.js';
13
22
  import { COMBOBOX_VARIANT } from '@elliemae/ds-shared/prop-types';
14
23
  export { COMBOBOX_VARIANT } from '@elliemae/ds-shared/prop-types';
@@ -48,36 +57,32 @@ const getValues = (option, isMulti, valueProperty) => {
48
57
  class DSComboBox extends React.Component {
49
58
  constructor(props) {
50
59
  super(props);
51
-
52
- _defineProperty(this, "forceFocus", false);
53
-
54
- _defineProperty(this, "isHover", undefined);
55
-
56
- _defineProperty(this, "handleHover", debounce(value => {
60
+ this.forceFocus = false;
61
+ this.isHover = undefined;
62
+ this.handleHover = debounce(value => {
57
63
  if (this.state.isHover === this.isHover) return;
58
64
  if (!this.unmount) this.setState({
59
65
  isHover: value
60
66
  });
61
- }, 0));
62
-
63
- _defineProperty(this, "state", {
67
+ }, 0);
68
+ this.state = {
64
69
  focus: null,
65
70
  isHover: undefined
66
- });
71
+ };
67
72
 
68
- _defineProperty(this, "handleOutsideScroll", () => {
73
+ this.handleOutsideScroll = () => {
69
74
  if (this.isHover !== true && !this.unmount) {
70
75
  this.isHover = false;
71
76
  this.handleHover(false);
72
77
  }
73
- });
78
+ };
74
79
 
75
- _defineProperty(this, "handleHoverRef", value => {
80
+ this.handleHoverRef = value => {
76
81
  this.isHover = value;
77
82
  this.handleHover(value);
78
- });
83
+ };
79
84
 
80
- _defineProperty(this, "onKeyDownClear", e => {
85
+ this.onKeyDownClear = e => {
81
86
  // if (e.key === 'ArrowRight') {
82
87
  // this.arrow.focus()
83
88
  // } else if (e.key === 'ArrowLeft') {
@@ -86,9 +91,9 @@ class DSComboBox extends React.Component {
86
91
  if (e.keyCode === 32 || e.keyCode === 13) {
87
92
  this.select.focus();
88
93
  }
89
- });
94
+ };
90
95
 
91
- _defineProperty(this, "handleKeyDown", e => {
96
+ this.handleKeyDown = e => {
92
97
  // if (e.key === 'ArrowRight') e.preventDefault()
93
98
  // if (e.target.type === 'text' && e.key === 'ArrowRight') {
94
99
  // if (this.clear && this.clear.focus) {
@@ -108,7 +113,7 @@ class DSComboBox extends React.Component {
108
113
  if (!value && e.key === ' ') e.preventDefault();
109
114
  this.props.onKeyDown(e);
110
115
  };
111
- });
116
+ };
112
117
 
113
118
  this.clear = /*#__PURE__*/React.createRef();
114
119
  this.arrow = /*#__PURE__*/React.createRef();
@@ -250,8 +255,8 @@ class DSComboBox extends React.Component {
250
255
  isRtl: isRtl,
251
256
  isSearchable: readOnly ? false : searchable,
252
257
  menuIsOpen: menuIsOpen === undefined ? this.isHover : menuIsOpen,
253
- noOptionsMessage: (...args) => {
254
- noOptionsMessage(...args);
258
+ noOptionsMessage: function () {
259
+ noOptionsMessage(...arguments);
255
260
  },
256
261
  onBlur: onBlur,
257
262
  onChange: returnValue ? (option, action) => {
@@ -319,9 +324,9 @@ class DSComboBox extends React.Component {
319
324
 
320
325
  }
321
326
 
322
- _defineProperty(DSComboBox, "defaultProps", {
327
+ DSComboBox.defaultProps = {
323
328
  showAllOption: false
324
- });
329
+ };
325
330
  var DSComboBox$1 = withSelectStringValueConverter(withContentRect('bounds')(DSComboBox));
326
331
 
327
332
  export { DSComboBox$1 as default };
@@ -1,3 +1,8 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
5
+ import 'core-js/modules/esnext.iterator.for-each.js';
1
6
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
7
  import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
3
8
  import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
@@ -1,6 +1,6 @@
1
1
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
2
  import 'react';
3
- import CloseCircle from '@elliemae/ds-icons/CloseCircle';
3
+ import { CloseCircle } from '@elliemae/ds-icons';
4
4
  import DSButton from '@elliemae/ds-button';
5
5
  import { jsx } from 'react/jsx-runtime';
6
6
 
@@ -1,3 +1,8 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
5
+ import 'core-js/modules/esnext.iterator.for-each.js';
1
6
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
7
  import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
3
8
  import 'react';
@@ -9,11 +14,14 @@ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (O
9
14
 
10
15
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
11
16
 
12
- const Control = props => /*#__PURE__*/_jsx(Reference, {}, void 0, ({
13
- ref
14
- }) => /*#__PURE__*/jsx("div", {
15
- ref: ref,
16
- children: /*#__PURE__*/jsx(components.Control, _objectSpread({}, props))
17
- }));
17
+ const Control = props => /*#__PURE__*/_jsx(Reference, {}, void 0, _ref => {
18
+ let {
19
+ ref
20
+ } = _ref;
21
+ return /*#__PURE__*/jsx("div", {
22
+ ref: ref,
23
+ children: /*#__PURE__*/jsx(components.Control, _objectSpread({}, props))
24
+ });
25
+ });
18
26
 
19
27
  export { Control as default };
@@ -1,3 +1,8 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
5
+ import 'core-js/modules/esnext.iterator.for-each.js';
1
6
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
7
  import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
3
8
  import React from 'react';
@@ -8,12 +13,13 @@ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (O
8
13
 
9
14
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
10
15
 
11
- const CustomOption = ({
12
- index,
13
- data,
14
- style,
15
- isScrolling
16
- }) => {
16
+ const CustomOption = _ref => {
17
+ let {
18
+ index,
19
+ data,
20
+ style,
21
+ isScrolling
22
+ } = _ref;
17
23
  const {
18
24
  items,
19
25
  options: {
@@ -1,3 +1,8 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
5
+ import 'core-js/modules/esnext.iterator.for-each.js';
1
6
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
7
  import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
3
8
  import React from 'react';
@@ -8,12 +13,13 @@ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (O
8
13
 
9
14
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
10
15
 
11
- const CustomOptionMulti = ({
12
- index,
13
- data,
14
- style,
15
- isScrolling
16
- }) => {
16
+ const CustomOptionMulti = _ref => {
17
+ let {
18
+ index,
19
+ data,
20
+ style,
21
+ isScrolling
22
+ } = _ref;
17
23
  const {
18
24
  items,
19
25
  options: {
@@ -1,8 +1,13 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
5
+ import 'core-js/modules/esnext.iterator.for-each.js';
1
6
  import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
2
7
  import _jsx from '@babel/runtime/helpers/esm/jsx';
3
8
  import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
4
9
  import 'react';
5
- import ChevronSmallDown from '@elliemae/ds-icons/ChevronSmallDown';
10
+ import { ChevronSmallDown } from '@elliemae/ds-icons';
6
11
  import DSButton from '@elliemae/ds-button';
7
12
  import { jsx } from 'react/jsx-runtime';
8
13
 
@@ -1,3 +1,8 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
5
+ import 'core-js/modules/esnext.iterator.for-each.js';
1
6
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
7
  import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
3
8
  import 'core-js/modules/web.dom-collections.iterator.js';
@@ -1,4 +1,7 @@
1
1
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
+ import 'core-js/modules/esnext.async-iterator.filter.js';
3
+ import 'core-js/modules/esnext.iterator.constructor.js';
4
+ import 'core-js/modules/esnext.iterator.filter.js';
2
5
  import 'react';
3
6
 
4
7
  const MultiSelectHeader = props => {
@@ -3,9 +3,10 @@ import 'react';
3
3
  import { PopperPositions } from '@elliemae/ds-popper';
4
4
  import DSTruncatedTooltipText from '@elliemae/ds-truncated-tooltip-text';
5
5
 
6
- function MultiValueLabel({
7
- children
8
- }) {
6
+ function MultiValueLabel(_ref) {
7
+ let {
8
+ children
9
+ } = _ref;
9
10
  return /*#__PURE__*/_jsx(DSTruncatedTooltipText, {
10
11
  tooltipPlacement: PopperPositions.TOP,
11
12
  value: children
@@ -1,3 +1,8 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
5
+ import 'core-js/modules/esnext.iterator.for-each.js';
1
6
  import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
2
7
  import 'react';
3
8
  import { get } from 'lodash';
@@ -1,7 +1,12 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
5
+ import 'core-js/modules/esnext.iterator.for-each.js';
1
6
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
7
  import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
3
8
  import React from 'react';
4
- import { cx } from '@elliemae/ds-utilities/utils';
9
+ import { cx } from '@elliemae/ds-utilities';
5
10
  import DSOverlay from '@elliemae/ds-overlay';
6
11
  import { Menu } from '@elliemae/ds-menu';
7
12
  import { PopperPositions } from '@elliemae/ds-popper';
@@ -52,23 +57,26 @@ const SelectMenu = /*#__PURE__*/React.memo(props => {
52
57
  }
53
58
  },
54
59
  placement: PopperPositions.BOTTOM_START
55
- }, void 0, ({
56
- ref,
57
- style
58
- }) => /*#__PURE__*/jsx("div", {
59
- ref: ref,
60
- className: cx('combobox-menu-wrapper-external', expandMenuOutsideContainer && 'combobox-menu-wrapper-external-outside-container'),
61
- style: _objectSpread(_objectSpread({
62
- zIndex
63
- }, style), expandMenuOutsideContainer ? {
64
- width: 'auto'
65
- } : {}),
66
- children: /*#__PURE__*/_jsx(Menu, {
67
- className: cx('combobox-menu-menu', expandMenuOutsideContainer && 'combobox-menu-menu-external-outside-container'),
68
- style: styleMenu,
69
- visible: true
70
- }, void 0, /*#__PURE__*/jsx(components.Menu, _objectSpread({}, props)))
71
- })));
60
+ }, void 0, _ref => {
61
+ let {
62
+ ref,
63
+ style
64
+ } = _ref;
65
+ return /*#__PURE__*/jsx("div", {
66
+ ref: ref,
67
+ className: cx('combobox-menu-wrapper-external', expandMenuOutsideContainer && 'combobox-menu-wrapper-external-outside-container'),
68
+ style: _objectSpread(_objectSpread({
69
+ zIndex
70
+ }, style), expandMenuOutsideContainer ? {
71
+ width: 'auto'
72
+ } : {}),
73
+ children: /*#__PURE__*/_jsx(Menu, {
74
+ className: cx('combobox-menu-menu', expandMenuOutsideContainer && 'combobox-menu-menu-external-outside-container'),
75
+ style: styleMenu,
76
+ visible: true
77
+ }, void 0, /*#__PURE__*/jsx(components.Menu, _objectSpread({}, props)))
78
+ });
79
+ }));
72
80
  });
73
81
 
74
82
  export { SelectMenu as default };
@@ -3,9 +3,10 @@ import 'react';
3
3
  import { PopperPositions } from '@elliemae/ds-popper';
4
4
  import DSTruncatedTooltipText from '@elliemae/ds-truncated-tooltip-text';
5
5
 
6
- function SingleValueLabel({
7
- children
8
- }) {
6
+ function SingleValueLabel(_ref) {
7
+ let {
8
+ children
9
+ } = _ref;
9
10
  return /*#__PURE__*/_jsx(DSTruncatedTooltipText, {
10
11
  tooltipPlacement: PopperPositions.TOP,
11
12
  value: children
@@ -1,3 +1,8 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
5
+ import 'core-js/modules/esnext.iterator.for-each.js';
1
6
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
7
  import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
3
8
  import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
@@ -1,3 +1,7 @@
1
+ import 'core-js/modules/esnext.async-iterator.reduce.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.reduce.js';
4
+
1
5
  const letterFactor = 6;
2
6
  const fixedSpace = 48;
3
7
  function calculateWidth(options) {