@sprinklrjs/spaceweb 12.14.4 → 12.33.2

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 (1474) hide show
  1. package/ClientOnly.d.ts +6 -0
  2. package/ClientOnly.js +19 -0
  3. package/allComponentsAndUtilities.d.ts +4 -1
  4. package/allComponentsAndUtilities.js +6 -2
  5. package/asyncSelect/asyncSelect.d.ts +1 -1
  6. package/asyncSelect/asyncSelect.js +5 -3
  7. package/asyncSelect/groupedAsyncSelect.d.ts +1 -1
  8. package/asyncSelect/groupedAsyncSelect.js +5 -2
  9. package/asyncSelect/helpers.d.ts +3 -2
  10. package/asyncSelect/helpers.js +4 -2
  11. package/asyncSelect/hooks/useAsyncOptionHandlers.d.ts +3 -2
  12. package/asyncSelect/hooks/useAsyncOptionHandlers.js +18 -8
  13. package/asyncSelect/hooks/useAsyncSelect.js +30 -16
  14. package/asyncSelect/hooks/useResolveSelectedOptions.d.ts +2 -1
  15. package/asyncSelect/hooks/useResolveSelectedOptions.js +3 -2
  16. package/asyncSelect/types.d.ts +1 -6
  17. package/avatar/avatar.js +19 -15
  18. package/avatar/styled-component.js +22 -10
  19. package/avatar/types.d.ts +1 -0
  20. package/badge/types.d.ts +1 -1
  21. package/banner/banner.js +3 -2
  22. package/banner/styled-component.js +1 -1
  23. package/baseui/accordion/accordion.d.ts +14 -0
  24. package/baseui/accordion/accordion.js +154 -0
  25. package/baseui/accordion/constants.d.ts +3 -0
  26. package/baseui/accordion/constants.js +12 -0
  27. package/baseui/accordion/index.d.ts +12 -0
  28. package/baseui/accordion/index.js +28 -0
  29. package/baseui/accordion/locale.d.ts +9 -0
  30. package/baseui/accordion/locale.js +7 -0
  31. package/baseui/accordion/panel.d.ts +17 -0
  32. package/baseui/accordion/panel.js +111 -0
  33. package/baseui/accordion/stateful-panel-container.d.ts +18 -0
  34. package/baseui/accordion/stateful-panel-container.js +44 -0
  35. package/baseui/accordion/stateful-panel.d.ts +2 -0
  36. package/baseui/accordion/stateful-panel.js +11 -0
  37. package/baseui/accordion/stateless-accordion.d.ts +3 -0
  38. package/baseui/accordion/stateless-accordion.js +59 -0
  39. package/baseui/accordion/styled-components.d.ts +10 -0
  40. package/baseui/accordion/styled-components.js +57 -0
  41. package/baseui/accordion/types.d.ts +143 -0
  42. package/baseui/accordion/types.js +8 -0
  43. package/baseui/button/button-internals.d.ts +2 -0
  44. package/baseui/button/button-internals.js +38 -0
  45. package/baseui/button/button.d.ts +10 -0
  46. package/baseui/button/button.js +96 -0
  47. package/baseui/button/constants.d.ts +18 -0
  48. package/baseui/button/constants.js +27 -0
  49. package/baseui/button/default-props.d.ts +9 -0
  50. package/baseui/button/default-props.js +19 -0
  51. package/baseui/button/index.d.ts +7 -0
  52. package/baseui/button/index.js +20 -0
  53. package/baseui/button/styled-components.d.ts +5 -0
  54. package/baseui/button/styled-components.js +72 -0
  55. package/baseui/button/types.d.ts +47 -0
  56. package/baseui/button/types.js +2 -0
  57. package/baseui/button/utils.d.ts +2 -0
  58. package/baseui/button/utils.js +16 -0
  59. package/baseui/card/styled-components.d.ts +0 -0
  60. package/baseui/card/styled-components.js +0 -0
  61. package/baseui/checkbox/checkbox.d.ts +23 -0
  62. package/baseui/checkbox/checkbox.js +144 -0
  63. package/baseui/checkbox/constants.d.ts +14 -0
  64. package/baseui/checkbox/constants.js +26 -0
  65. package/baseui/checkbox/index.d.ts +6 -0
  66. package/baseui/checkbox/index.js +31 -0
  67. package/baseui/checkbox/stateful-checkbox-container.d.ts +15 -0
  68. package/baseui/checkbox/stateful-checkbox-container.js +80 -0
  69. package/baseui/checkbox/stateful-checkbox.d.ts +6 -0
  70. package/baseui/checkbox/stateful-checkbox.js +14 -0
  71. package/baseui/checkbox/styled-components.d.ts +6 -0
  72. package/baseui/checkbox/styled-components.js +51 -0
  73. package/baseui/checkbox/types.d.ts +160 -0
  74. package/baseui/checkbox/types.js +2 -0
  75. package/baseui/datepicker/calendar-header.d.ts +61 -0
  76. package/baseui/datepicker/calendar-header.js +368 -0
  77. package/baseui/datepicker/calendar.d.ts +56 -0
  78. package/baseui/datepicker/calendar.js +534 -0
  79. package/baseui/datepicker/constants.d.ts +30 -0
  80. package/baseui/datepicker/constants.js +39 -0
  81. package/baseui/datepicker/day.d.ts +87 -0
  82. package/baseui/datepicker/day.js +348 -0
  83. package/baseui/datepicker/index.d.ts +10 -0
  84. package/baseui/datepicker/index.js +26 -0
  85. package/baseui/datepicker/locale.d.ts +65 -0
  86. package/baseui/datepicker/locale.js +35 -0
  87. package/baseui/datepicker/month.d.ts +32 -0
  88. package/baseui/datepicker/month.js +91 -0
  89. package/baseui/datepicker/styled-components.d.ts +25 -0
  90. package/baseui/datepicker/styled-components.js +287 -0
  91. package/baseui/datepicker/types.d.ts +354 -0
  92. package/baseui/datepicker/types.js +2 -0
  93. package/baseui/datepicker/utils/calendar-header-helpers.d.ts +12 -0
  94. package/baseui/datepicker/utils/calendar-header-helpers.js +35 -0
  95. package/baseui/datepicker/utils/date-fns-adapter.d.ts +3 -0
  96. package/baseui/datepicker/utils/date-fns-adapter.js +13 -0
  97. package/baseui/datepicker/utils/date-helpers.d.ts +98 -0
  98. package/baseui/datepicker/utils/date-helpers.js +366 -0
  99. package/baseui/datepicker/utils/day-state.d.ts +20 -0
  100. package/baseui/datepicker/utils/day-state.js +34 -0
  101. package/baseui/datepicker/utils/index.d.ts +67 -0
  102. package/baseui/datepicker/utils/index.js +81 -0
  103. package/baseui/datepicker/utils/types.d.ts +69 -0
  104. package/baseui/datepicker/utils/types.js +2 -0
  105. package/baseui/datepicker/week.d.ts +21 -0
  106. package/baseui/datepicker/week.js +61 -0
  107. package/baseui/header-navigation/constants.d.ts +5 -0
  108. package/baseui/header-navigation/constants.js +14 -0
  109. package/baseui/header-navigation/examples-icons.d.ts +1 -0
  110. package/baseui/header-navigation/examples-icons.js +14 -0
  111. package/baseui/header-navigation/header-navigation.d.ts +9 -0
  112. package/baseui/header-navigation/header-navigation.js +29 -0
  113. package/baseui/header-navigation/index.d.ts +4 -0
  114. package/baseui/header-navigation/index.js +20 -0
  115. package/baseui/header-navigation/styled-components.d.ts +3 -0
  116. package/baseui/header-navigation/styled-components.js +33 -0
  117. package/baseui/header-navigation/types.d.ts +8 -0
  118. package/baseui/header-navigation/types.js +2 -0
  119. package/baseui/helpers/i18n-interpolation.d.ts +3 -0
  120. package/baseui/helpers/i18n-interpolation.js +17 -0
  121. package/baseui/helpers/index.d.ts +1 -0
  122. package/baseui/helpers/index.js +4 -0
  123. package/baseui/helpers/overrides.d.ts +63 -0
  124. package/baseui/helpers/overrides.js +171 -0
  125. package/baseui/helpers/types.d.ts +7 -0
  126. package/baseui/helpers/types.js +2 -0
  127. package/baseui/index.d.ts +1 -0
  128. package/baseui/index.js +12 -0
  129. package/baseui/input/base-input.d.ts +64 -0
  130. package/baseui/input/base-input.js +249 -0
  131. package/baseui/input/constants.d.ts +22 -0
  132. package/baseui/input/constants.js +31 -0
  133. package/baseui/input/index.d.ts +8 -0
  134. package/baseui/input/index.js +28 -0
  135. package/baseui/input/input.d.ts +33 -0
  136. package/baseui/input/input.js +100 -0
  137. package/baseui/input/masked-input.d.ts +8 -0
  138. package/baseui/input/masked-input.js +56 -0
  139. package/baseui/input/stateful-container.d.ts +16 -0
  140. package/baseui/input/stateful-container.js +42 -0
  141. package/baseui/input/stateful-input.d.ts +2 -0
  142. package/baseui/input/stateful-input.js +10 -0
  143. package/baseui/input/styled-components.d.ts +15 -0
  144. package/baseui/input/styled-components.js +47 -0
  145. package/baseui/input/types.d.ts +170 -0
  146. package/baseui/input/types.js +2 -0
  147. package/baseui/input/utils.d.ts +2 -0
  148. package/baseui/input/utils.js +21 -0
  149. package/baseui/layer/constants.d.ts +15 -0
  150. package/baseui/layer/constants.js +24 -0
  151. package/baseui/layer/index.d.ts +5 -0
  152. package/baseui/layer/index.js +20 -0
  153. package/baseui/layer/layer.d.ts +2 -0
  154. package/baseui/layer/layer.js +162 -0
  155. package/baseui/layer/layers-manager.d.ts +28 -0
  156. package/baseui/layer/layers-manager.js +171 -0
  157. package/baseui/layer/tether.d.ts +30 -0
  158. package/baseui/layer/tether.js +163 -0
  159. package/baseui/layer/types.d.ts +148 -0
  160. package/baseui/layer/types.js +2 -0
  161. package/baseui/layer/utils.d.ts +6 -0
  162. package/baseui/layer/utils.js +17 -0
  163. package/baseui/locale/en_US.d.ts +3 -0
  164. package/baseui/locale/en_US.js +26 -0
  165. package/baseui/locale/es_AR.d.ts +3 -0
  166. package/baseui/locale/es_AR.js +128 -0
  167. package/baseui/locale/index.d.ts +26 -0
  168. package/baseui/locale/index.js +26 -0
  169. package/baseui/locale/tr_TR.d.ts +3 -0
  170. package/baseui/locale/tr_TR.js +124 -0
  171. package/baseui/locale/types.d.ts +10 -0
  172. package/baseui/locale/types.js +2 -0
  173. package/baseui/menu/constants.d.ts +27 -0
  174. package/baseui/menu/constants.js +36 -0
  175. package/baseui/menu/index.d.ts +1 -0
  176. package/baseui/menu/index.js +10 -0
  177. package/baseui/menu/styled-components.d.ts +0 -0
  178. package/baseui/menu/styled-components.js +0 -0
  179. package/baseui/menu/types.d.ts +284 -0
  180. package/baseui/menu/types.js +2 -0
  181. package/baseui/modal/close-icon.d.ts +1 -0
  182. package/baseui/modal/close-icon.js +10 -0
  183. package/baseui/modal/constants.d.ts +19 -0
  184. package/baseui/modal/constants.js +28 -0
  185. package/baseui/modal/focus-once.d.ts +10 -0
  186. package/baseui/modal/focus-once.js +21 -0
  187. package/baseui/modal/index.d.ts +7 -0
  188. package/baseui/modal/index.js +26 -0
  189. package/baseui/modal/locale.d.ts +7 -0
  190. package/baseui/modal/locale.js +6 -0
  191. package/baseui/modal/modal-button.d.ts +5 -0
  192. package/baseui/modal/modal-button.js +34 -0
  193. package/baseui/modal/modal.d.ts +41 -0
  194. package/baseui/modal/modal.js +239 -0
  195. package/baseui/modal/styled-components.d.ts +5 -0
  196. package/baseui/modal/styled-components.js +75 -0
  197. package/baseui/modal/types.d.ts +74 -0
  198. package/baseui/modal/types.js +2 -0
  199. package/baseui/package.json +4 -0
  200. package/baseui/payment-card/custom-cards.config.d.ts +11 -0
  201. package/baseui/payment-card/custom-cards.config.js +24 -0
  202. package/baseui/payment-card/icons/amex.d.ts +4 -0
  203. package/baseui/payment-card/icons/amex.js +9 -0
  204. package/baseui/payment-card/icons/dinersclub.d.ts +4 -0
  205. package/baseui/payment-card/icons/dinersclub.js +9 -0
  206. package/baseui/payment-card/icons/discover.d.ts +4 -0
  207. package/baseui/payment-card/icons/discover.js +9 -0
  208. package/baseui/payment-card/icons/elo.d.ts +4 -0
  209. package/baseui/payment-card/icons/elo.js +9 -0
  210. package/baseui/payment-card/icons/generic.d.ts +4 -0
  211. package/baseui/payment-card/icons/generic.js +9 -0
  212. package/baseui/payment-card/icons/jcb.d.ts +4 -0
  213. package/baseui/payment-card/icons/jcb.js +9 -0
  214. package/baseui/payment-card/icons/maestro.d.ts +4 -0
  215. package/baseui/payment-card/icons/maestro.js +9 -0
  216. package/baseui/payment-card/icons/mastercard.d.ts +4 -0
  217. package/baseui/payment-card/icons/mastercard.js +9 -0
  218. package/baseui/payment-card/icons/uatp.d.ts +4 -0
  219. package/baseui/payment-card/icons/uatp.js +9 -0
  220. package/baseui/payment-card/icons/unionpay.d.ts +4 -0
  221. package/baseui/payment-card/icons/unionpay.js +9 -0
  222. package/baseui/payment-card/icons/visa.d.ts +4 -0
  223. package/baseui/payment-card/icons/visa.js +9 -0
  224. package/baseui/payment-card/index.d.ts +7 -0
  225. package/baseui/payment-card/index.js +24 -0
  226. package/baseui/payment-card/payment-card.d.ts +24 -0
  227. package/baseui/payment-card/payment-card.js +113 -0
  228. package/baseui/payment-card/stateful-payment-card.d.ts +2 -0
  229. package/baseui/payment-card/stateful-payment-card.js +10 -0
  230. package/baseui/payment-card/styled-components.d.ts +1 -0
  231. package/baseui/payment-card/styled-components.js +12 -0
  232. package/baseui/payment-card/types.d.ts +11 -0
  233. package/baseui/payment-card/types.js +2 -0
  234. package/baseui/payment-card/utils.d.ts +3 -0
  235. package/baseui/payment-card/utils.js +50 -0
  236. package/baseui/popover/constants.d.ts +45 -0
  237. package/baseui/popover/constants.js +54 -0
  238. package/baseui/popover/default-props.d.ts +3 -0
  239. package/baseui/popover/default-props.js +26 -0
  240. package/baseui/popover/index.d.ts +6 -0
  241. package/baseui/popover/index.js +32 -0
  242. package/baseui/popover/popover.d.ts +15 -0
  243. package/baseui/popover/popover.js +370 -0
  244. package/baseui/popover/stateful-container.d.ts +32 -0
  245. package/baseui/popover/stateful-container.js +174 -0
  246. package/baseui/popover/stateful-popover.d.ts +19 -0
  247. package/baseui/popover/stateful-popover.js +27 -0
  248. package/baseui/popover/styled-components.d.ts +27 -0
  249. package/baseui/popover/styled-components.js +74 -0
  250. package/baseui/popover/types.d.ts +165 -0
  251. package/baseui/popover/types.js +2 -0
  252. package/baseui/popover/utils.d.ts +47 -0
  253. package/baseui/popover/utils.js +127 -0
  254. package/baseui/progress-bar/styled-components.d.ts +0 -0
  255. package/baseui/progress-bar/styled-components.js +0 -0
  256. package/baseui/radio/constants.d.ts +7 -0
  257. package/baseui/radio/constants.js +18 -0
  258. package/baseui/radio/index.d.ts +7 -0
  259. package/baseui/radio/index.js +30 -0
  260. package/baseui/radio/radio.d.ts +33 -0
  261. package/baseui/radio/radio.js +106 -0
  262. package/baseui/radio/radiogroup.d.ts +14 -0
  263. package/baseui/radio/radiogroup.js +84 -0
  264. package/baseui/radio/stateful-radiogroup-container.d.ts +11 -0
  265. package/baseui/radio/stateful-radiogroup-container.js +58 -0
  266. package/baseui/radio/stateful-radiogroup.d.ts +6 -0
  267. package/baseui/radio/stateful-radiogroup.js +15 -0
  268. package/baseui/radio/styled-components.d.ts +7 -0
  269. package/baseui/radio/styled-components.js +53 -0
  270. package/baseui/radio/types.d.ts +169 -0
  271. package/baseui/radio/types.js +2 -0
  272. package/baseui/select/autosize-input.d.ts +24 -0
  273. package/baseui/select/autosize-input.js +67 -0
  274. package/baseui/select/constants.d.ts +13 -0
  275. package/baseui/select/constants.js +23 -0
  276. package/baseui/select/default-props.d.ts +72 -0
  277. package/baseui/select/default-props.js +66 -0
  278. package/baseui/select/dropdown.d.ts +21 -0
  279. package/baseui/select/dropdown.js +138 -0
  280. package/baseui/select/index.d.ts +19 -0
  281. package/baseui/select/index.js +47 -0
  282. package/baseui/select/locale.d.ts +8 -0
  283. package/baseui/select/locale.js +10 -0
  284. package/baseui/select/multi-select.d.ts +3 -0
  285. package/baseui/select/multi-select.js +10 -0
  286. package/baseui/select/multi-value.d.ts +1 -0
  287. package/baseui/select/multi-value.js +12 -0
  288. package/baseui/select/select-component.d.ts +179 -0
  289. package/baseui/select/select-component.js +849 -0
  290. package/baseui/select/select.d.ts +4 -0
  291. package/baseui/select/select.js +11 -0
  292. package/baseui/select/single-select.d.ts +3 -0
  293. package/baseui/select/single-select.js +10 -0
  294. package/baseui/select/stateful-select-container.d.ts +19 -0
  295. package/baseui/select/stateful-select-container.js +48 -0
  296. package/baseui/select/stateful-select.d.ts +76 -0
  297. package/baseui/select/stateful-select.js +12 -0
  298. package/baseui/select/styled-components.d.ts +16 -0
  299. package/baseui/select/styled-components.js +98 -0
  300. package/baseui/select/types.d.ts +290 -0
  301. package/baseui/select/types.js +2 -0
  302. package/baseui/select/utils/default-filter-options.d.ts +23 -0
  303. package/baseui/select/utils/default-filter-options.js +54 -0
  304. package/baseui/select/utils/index.d.ts +3 -0
  305. package/baseui/select/utils/index.js +39 -0
  306. package/baseui/select/value.d.ts +1 -0
  307. package/baseui/select/value.js +13 -0
  308. package/baseui/slider/constants.d.ts +4 -0
  309. package/baseui/slider/constants.js +13 -0
  310. package/baseui/slider/index.d.ts +8 -0
  311. package/baseui/slider/index.js +22 -0
  312. package/baseui/slider/slider.d.ts +3 -0
  313. package/baseui/slider/slider.js +100 -0
  314. package/baseui/slider/stateful-slider-container.d.ts +23 -0
  315. package/baseui/slider/stateful-slider-container.js +59 -0
  316. package/baseui/slider/stateful-slider.d.ts +2 -0
  317. package/baseui/slider/stateful-slider.js +10 -0
  318. package/baseui/slider/styled-components.d.ts +9 -0
  319. package/baseui/slider/styled-components.js +58 -0
  320. package/baseui/slider/types.d.ts +74 -0
  321. package/baseui/slider/types.js +2 -0
  322. package/baseui/spinner/styled-components.d.ts +0 -0
  323. package/baseui/spinner/styled-components.js +0 -0
  324. package/baseui/table-semantic/constants.d.ts +11 -0
  325. package/baseui/table-semantic/constants.js +20 -0
  326. package/baseui/table-semantic/index.d.ts +4 -0
  327. package/baseui/table-semantic/index.js +29 -0
  328. package/baseui/table-semantic/styled-components.d.ts +11 -0
  329. package/baseui/table-semantic/styled-components.js +42 -0
  330. package/baseui/table-semantic/table-builder-column.d.ts +4 -0
  331. package/baseui/table-semantic/table-builder-column.js +18 -0
  332. package/baseui/table-semantic/table-builder.d.ts +17 -0
  333. package/baseui/table-semantic/table-builder.js +81 -0
  334. package/baseui/table-semantic/table.d.ts +10 -0
  335. package/baseui/table-semantic/table.js +45 -0
  336. package/baseui/table-semantic/types.d.ts +66 -0
  337. package/baseui/table-semantic/types.js +2 -0
  338. package/baseui/textarea/constants.d.ts +1 -0
  339. package/baseui/textarea/constants.js +13 -0
  340. package/baseui/textarea/index.d.ts +6 -0
  341. package/baseui/textarea/index.js +24 -0
  342. package/baseui/textarea/stateful-container.d.ts +2 -0
  343. package/baseui/textarea/stateful-container.js +10 -0
  344. package/baseui/textarea/stateful-textarea.d.ts +2 -0
  345. package/baseui/textarea/stateful-textarea.js +12 -0
  346. package/baseui/textarea/styled-components.d.ts +3 -0
  347. package/baseui/textarea/styled-components.js +19 -0
  348. package/baseui/textarea/textarea.d.ts +32 -0
  349. package/baseui/textarea/textarea.js +63 -0
  350. package/baseui/textarea/types.d.ts +44 -0
  351. package/baseui/textarea/types.js +2 -0
  352. package/baseui/timepicker/index.d.ts +2 -0
  353. package/baseui/timepicker/index.js +14 -0
  354. package/baseui/timepicker/timepicker.d.ts +34 -0
  355. package/baseui/timepicker/timepicker.js +260 -0
  356. package/baseui/timepicker/types.d.ts +54 -0
  357. package/baseui/timepicker/types.js +2 -0
  358. package/baseui/tooltip/constants.d.ts +1 -0
  359. package/baseui/tooltip/constants.js +14 -0
  360. package/baseui/tooltip/default-props.d.ts +3 -0
  361. package/baseui/tooltip/default-props.js +24 -0
  362. package/baseui/tooltip/index.d.ts +6 -0
  363. package/baseui/tooltip/index.js +29 -0
  364. package/baseui/tooltip/stateful-tooltip-container.d.ts +7 -0
  365. package/baseui/tooltip/stateful-tooltip-container.js +25 -0
  366. package/baseui/tooltip/stateful-tooltip.d.ts +6 -0
  367. package/baseui/tooltip/stateful-tooltip.js +12 -0
  368. package/baseui/tooltip/styled-components.d.ts +14 -0
  369. package/baseui/tooltip/styled-components.js +33 -0
  370. package/baseui/tooltip/tooltip.d.ts +7 -0
  371. package/baseui/tooltip/tooltip.js +33 -0
  372. package/baseui/tooltip/types.d.ts +8 -0
  373. package/baseui/tooltip/types.js +2 -0
  374. package/baseui/tree-view/index.d.ts +11 -0
  375. package/baseui/tree-view/index.js +20 -0
  376. package/baseui/tree-view/stateful-container.d.ts +11 -0
  377. package/baseui/tree-view/stateful-container.js +70 -0
  378. package/baseui/tree-view/stateful-tree-view.d.ts +2 -0
  379. package/baseui/tree-view/stateful-tree-view.js +10 -0
  380. package/baseui/tree-view/styled-components.d.ts +6 -0
  381. package/baseui/tree-view/styled-components.js +41 -0
  382. package/baseui/tree-view/tree-label-interactable.d.ts +8 -0
  383. package/baseui/tree-view/tree-label-interactable.js +20 -0
  384. package/baseui/tree-view/tree-label.d.ts +4 -0
  385. package/baseui/tree-view/tree-label.js +28 -0
  386. package/baseui/tree-view/tree-node.d.ts +11 -0
  387. package/baseui/tree-view/tree-node.js +54 -0
  388. package/baseui/tree-view/tree-view.d.ts +2 -0
  389. package/baseui/tree-view/tree-view.js +129 -0
  390. package/baseui/tree-view/types.d.ts +67 -0
  391. package/baseui/tree-view/types.js +2 -0
  392. package/baseui/tree-view/utils.d.ts +11 -0
  393. package/baseui/tree-view/utils.js +194 -0
  394. package/baseui/utils/create-event.d.ts +1 -0
  395. package/baseui/utils/create-event.js +14 -0
  396. package/baseui/utils/deep-merge.d.ts +1 -0
  397. package/baseui/utils/deep-merge.js +40 -0
  398. package/baseui/utils/focusVisible.d.ts +10 -0
  399. package/baseui/utils/focusVisible.js +169 -0
  400. package/baseui/utils/index.d.ts +0 -0
  401. package/baseui/utils/index.js +0 -0
  402. package/baseui/utils/react-18.d.ts +1 -0
  403. package/baseui/utils/react-18.js +14 -0
  404. package/breadcrumb/breadcrumb-item.d.ts +1 -2
  405. package/breadcrumb/breadcrumb.d.ts +1 -2
  406. package/breadcrumb/styled-components.d.ts +1 -2
  407. package/button/Button.d.ts +4 -3
  408. package/button/Button.js +25 -15
  409. package/button/IconButton/IconButton.js +7 -1
  410. package/button/IconButton/styled-components.d.ts +1 -0
  411. package/button/IconButton/styled-components.js +46 -13
  412. package/button/IconTextButton/IconTextButton.d.ts +1 -1
  413. package/button/IconTextButton/types.d.ts +1 -1
  414. package/button/basewebAdapter.d.ts +8 -7
  415. package/button/basewebAdapter.js +1 -1
  416. package/button/index.d.ts +1 -1
  417. package/button/index.js +1 -1
  418. package/button/styled-components.d.ts +27 -2
  419. package/button/styled-components.js +314 -47
  420. package/button/types.d.ts +8 -5
  421. package/button-group/styled-components.js +4 -5
  422. package/checkbox/basewebAdapters.d.ts +1 -1
  423. package/checkbox/basewebAdapters.js +31 -27
  424. package/checkbox/checkbox.js +1 -1
  425. package/checkbox/index.d.ts +3 -3
  426. package/checkbox/index.js +2 -2
  427. package/checkbox/styled-components.js +52 -15
  428. package/checkbox/types.d.ts +4 -3
  429. package/color-picker/ColorPalette.d.ts +2 -2
  430. package/color-picker/ColorPalette.js +7 -6
  431. package/color-picker/ColorPicker.d.ts +1 -1
  432. package/color-picker/ColorPicker.js +41 -6
  433. package/color-picker/ColorSelector.d.ts +6 -0
  434. package/color-picker/ColorSelector.js +33 -0
  435. package/color-picker/CustomColorSelector.d.ts +3 -0
  436. package/color-picker/CustomColorSelector.js +41 -0
  437. package/color-picker/GradientColorPicker.d.ts +6 -0
  438. package/color-picker/GradientColorPicker.js +68 -0
  439. package/color-picker/Swatch.js +3 -5
  440. package/color-picker/colors.d.ts +2 -0
  441. package/color-picker/colors.js +26 -1
  442. package/color-picker/constants.d.ts +13 -0
  443. package/color-picker/constants.js +12 -0
  444. package/color-picker/locale.d.ts +4 -0
  445. package/color-picker/types.d.ts +50 -1
  446. package/color-picker/utils.d.ts +17 -0
  447. package/color-picker/utils.js +39 -0
  448. package/date-input/DateInput.d.ts +1 -1
  449. package/date-input/DateInput.js +96 -85
  450. package/date-input/constants.d.ts +28 -0
  451. package/date-input/constants.js +31 -0
  452. package/date-input/index.d.ts +1 -0
  453. package/date-input/index.js +3 -1
  454. package/date-input/types.d.ts +13 -4
  455. package/date-input/utils.d.ts +2 -0
  456. package/date-input/utils.js +77 -0
  457. package/date-picker/Calendar.d.ts +4 -9
  458. package/date-picker/Calendar.js +112 -121
  459. package/date-picker/DateInput.d.ts +2 -2
  460. package/date-picker/DateInput.js +29 -45
  461. package/date-picker/DatePickerContent.js +8 -27
  462. package/date-picker/DateTimeContainer.d.ts +2 -2
  463. package/date-picker/DateTimeContainer.js +16 -10
  464. package/date-picker/StatelessDatePicker.js +5 -17
  465. package/date-picker/TimeInput.d.ts +2 -2
  466. package/date-picker/TimeInput.js +1 -1
  467. package/date-picker/index.d.ts +1 -1
  468. package/date-picker/index.js +1 -1
  469. package/date-picker/stateful-container.d.ts +1 -1
  470. package/date-picker/stateful-container.js +1 -1
  471. package/date-picker/styled-components.js +9 -6
  472. package/date-picker/types.d.ts +2 -1
  473. package/date-picker/utils.d.ts +2 -2
  474. package/date-picker/utils.js +3 -3
  475. package/esm/ClientOnly.d.ts +6 -0
  476. package/esm/ClientOnly.js +15 -0
  477. package/esm/allComponentsAndUtilities.d.ts +4 -1
  478. package/esm/allComponentsAndUtilities.js +8 -2
  479. package/esm/asyncSelect/asyncSelect.d.ts +1 -1
  480. package/esm/asyncSelect/asyncSelect.js +6 -4
  481. package/esm/asyncSelect/groupedAsyncSelect.d.ts +1 -1
  482. package/esm/asyncSelect/groupedAsyncSelect.js +5 -2
  483. package/esm/asyncSelect/helpers.d.ts +3 -2
  484. package/esm/asyncSelect/helpers.js +4 -2
  485. package/esm/asyncSelect/hooks/useAsyncOptionHandlers.d.ts +3 -2
  486. package/esm/asyncSelect/hooks/useAsyncOptionHandlers.js +19 -9
  487. package/esm/asyncSelect/hooks/useAsyncSelect.js +30 -16
  488. package/esm/asyncSelect/hooks/useResolveSelectedOptions.d.ts +2 -1
  489. package/esm/asyncSelect/hooks/useResolveSelectedOptions.js +3 -2
  490. package/esm/asyncSelect/types.d.ts +1 -6
  491. package/esm/avatar/avatar.js +19 -15
  492. package/esm/avatar/styled-component.js +22 -10
  493. package/esm/avatar/types.d.ts +1 -0
  494. package/esm/badge/types.d.ts +1 -1
  495. package/esm/banner/banner.js +3 -2
  496. package/esm/banner/styled-component.js +1 -1
  497. package/esm/baseui/accordion/accordion.d.ts +14 -0
  498. package/esm/baseui/accordion/accordion.js +152 -0
  499. package/esm/baseui/accordion/constants.d.ts +3 -0
  500. package/esm/baseui/accordion/constants.js +9 -0
  501. package/esm/baseui/accordion/index.d.ts +12 -0
  502. package/esm/baseui/accordion/index.js +11 -0
  503. package/esm/baseui/accordion/locale.d.ts +9 -0
  504. package/esm/baseui/accordion/locale.js +5 -0
  505. package/esm/baseui/accordion/panel.d.ts +17 -0
  506. package/esm/baseui/accordion/panel.js +109 -0
  507. package/esm/baseui/accordion/stateful-panel-container.d.ts +18 -0
  508. package/esm/baseui/accordion/stateful-panel-container.js +42 -0
  509. package/esm/baseui/accordion/stateful-panel.d.ts +2 -0
  510. package/esm/baseui/accordion/stateful-panel.js +8 -0
  511. package/esm/baseui/accordion/stateless-accordion.d.ts +3 -0
  512. package/esm/baseui/accordion/stateless-accordion.js +57 -0
  513. package/esm/baseui/accordion/styled-components.d.ts +10 -0
  514. package/esm/baseui/accordion/styled-components.js +54 -0
  515. package/esm/baseui/accordion/types.d.ts +143 -0
  516. package/esm/baseui/accordion/types.js +7 -0
  517. package/esm/baseui/button/button-internals.d.ts +2 -0
  518. package/esm/baseui/button/button-internals.js +35 -0
  519. package/esm/baseui/button/button.d.ts +10 -0
  520. package/esm/baseui/button/button.js +94 -0
  521. package/esm/baseui/button/constants.d.ts +18 -0
  522. package/esm/baseui/button/constants.js +24 -0
  523. package/esm/baseui/button/default-props.d.ts +9 -0
  524. package/esm/baseui/button/default-props.js +16 -0
  525. package/esm/baseui/button/index.d.ts +7 -0
  526. package/esm/baseui/button/index.js +7 -0
  527. package/esm/baseui/button/styled-components.d.ts +5 -0
  528. package/esm/baseui/button/styled-components.js +69 -0
  529. package/esm/baseui/button/types.d.ts +47 -0
  530. package/esm/baseui/button/types.js +1 -0
  531. package/esm/baseui/button/utils.d.ts +2 -0
  532. package/esm/baseui/button/utils.js +12 -0
  533. package/esm/baseui/card/styled-components.d.ts +0 -0
  534. package/esm/baseui/card/styled-components.js +0 -0
  535. package/esm/baseui/checkbox/checkbox.d.ts +23 -0
  536. package/esm/baseui/checkbox/checkbox.js +142 -0
  537. package/esm/baseui/checkbox/constants.d.ts +14 -0
  538. package/esm/baseui/checkbox/constants.js +23 -0
  539. package/esm/baseui/checkbox/index.d.ts +6 -0
  540. package/esm/baseui/checkbox/index.js +15 -0
  541. package/esm/baseui/checkbox/stateful-checkbox-container.d.ts +15 -0
  542. package/esm/baseui/checkbox/stateful-checkbox-container.js +78 -0
  543. package/esm/baseui/checkbox/stateful-checkbox.d.ts +6 -0
  544. package/esm/baseui/checkbox/stateful-checkbox.js +12 -0
  545. package/esm/baseui/checkbox/styled-components.d.ts +6 -0
  546. package/esm/baseui/checkbox/styled-components.js +48 -0
  547. package/esm/baseui/checkbox/types.d.ts +160 -0
  548. package/esm/baseui/checkbox/types.js +1 -0
  549. package/esm/baseui/datepicker/calendar-header.d.ts +61 -0
  550. package/esm/baseui/datepicker/calendar-header.js +366 -0
  551. package/esm/baseui/datepicker/calendar.d.ts +56 -0
  552. package/esm/baseui/datepicker/calendar.js +532 -0
  553. package/esm/baseui/datepicker/constants.d.ts +30 -0
  554. package/esm/baseui/datepicker/constants.js +36 -0
  555. package/esm/baseui/datepicker/day.d.ts +87 -0
  556. package/esm/baseui/datepicker/day.js +346 -0
  557. package/esm/baseui/datepicker/index.d.ts +10 -0
  558. package/esm/baseui/datepicker/index.js +16 -0
  559. package/esm/baseui/datepicker/locale.d.ts +65 -0
  560. package/esm/baseui/datepicker/locale.js +33 -0
  561. package/esm/baseui/datepicker/month.d.ts +32 -0
  562. package/esm/baseui/datepicker/month.js +89 -0
  563. package/esm/baseui/datepicker/styled-components.d.ts +25 -0
  564. package/esm/baseui/datepicker/styled-components.js +284 -0
  565. package/esm/baseui/datepicker/types.d.ts +354 -0
  566. package/esm/baseui/datepicker/types.js +1 -0
  567. package/esm/baseui/datepicker/utils/calendar-header-helpers.d.ts +12 -0
  568. package/esm/baseui/datepicker/utils/calendar-header-helpers.js +30 -0
  569. package/esm/baseui/datepicker/utils/date-fns-adapter.d.ts +3 -0
  570. package/esm/baseui/datepicker/utils/date-fns-adapter.js +10 -0
  571. package/esm/baseui/datepicker/utils/date-helpers.d.ts +98 -0
  572. package/esm/baseui/datepicker/utils/date-helpers.js +364 -0
  573. package/esm/baseui/datepicker/utils/day-state.d.ts +20 -0
  574. package/esm/baseui/datepicker/utils/day-state.js +31 -0
  575. package/esm/baseui/datepicker/utils/index.d.ts +67 -0
  576. package/esm/baseui/datepicker/utils/index.js +76 -0
  577. package/esm/baseui/datepicker/utils/types.d.ts +69 -0
  578. package/esm/baseui/datepicker/utils/types.js +1 -0
  579. package/esm/baseui/datepicker/week.d.ts +21 -0
  580. package/esm/baseui/datepicker/week.js +59 -0
  581. package/esm/baseui/header-navigation/constants.d.ts +5 -0
  582. package/esm/baseui/header-navigation/constants.js +11 -0
  583. package/esm/baseui/header-navigation/examples-icons.d.ts +1 -0
  584. package/esm/baseui/header-navigation/examples-icons.js +10 -0
  585. package/esm/baseui/header-navigation/header-navigation.d.ts +9 -0
  586. package/esm/baseui/header-navigation/header-navigation.js +27 -0
  587. package/esm/baseui/header-navigation/index.d.ts +4 -0
  588. package/esm/baseui/header-navigation/index.js +11 -0
  589. package/esm/baseui/header-navigation/styled-components.d.ts +3 -0
  590. package/esm/baseui/header-navigation/styled-components.js +30 -0
  591. package/esm/baseui/header-navigation/types.d.ts +8 -0
  592. package/esm/baseui/header-navigation/types.js +1 -0
  593. package/esm/baseui/helpers/i18n-interpolation.d.ts +3 -0
  594. package/esm/baseui/helpers/i18n-interpolation.js +14 -0
  595. package/esm/baseui/helpers/index.d.ts +1 -0
  596. package/esm/baseui/helpers/index.js +1 -0
  597. package/esm/baseui/helpers/overrides.d.ts +63 -0
  598. package/esm/baseui/helpers/overrides.js +160 -0
  599. package/esm/baseui/helpers/types.d.ts +7 -0
  600. package/esm/baseui/helpers/types.js +1 -0
  601. package/esm/baseui/index.d.ts +1 -0
  602. package/esm/baseui/index.js +7 -0
  603. package/esm/baseui/input/base-input.d.ts +64 -0
  604. package/esm/baseui/input/base-input.js +247 -0
  605. package/esm/baseui/input/constants.d.ts +22 -0
  606. package/esm/baseui/input/constants.js +28 -0
  607. package/esm/baseui/input/index.d.ts +8 -0
  608. package/esm/baseui/input/index.js +9 -0
  609. package/esm/baseui/input/input.d.ts +33 -0
  610. package/esm/baseui/input/input.js +96 -0
  611. package/esm/baseui/input/masked-input.d.ts +8 -0
  612. package/esm/baseui/input/masked-input.js +53 -0
  613. package/esm/baseui/input/stateful-container.d.ts +16 -0
  614. package/esm/baseui/input/stateful-container.js +40 -0
  615. package/esm/baseui/input/stateful-input.d.ts +2 -0
  616. package/esm/baseui/input/stateful-input.js +7 -0
  617. package/esm/baseui/input/styled-components.d.ts +15 -0
  618. package/esm/baseui/input/styled-components.js +41 -0
  619. package/esm/baseui/input/types.d.ts +170 -0
  620. package/esm/baseui/input/types.js +1 -0
  621. package/esm/baseui/input/utils.d.ts +2 -0
  622. package/esm/baseui/input/utils.js +17 -0
  623. package/esm/baseui/layer/constants.d.ts +15 -0
  624. package/esm/baseui/layer/constants.js +21 -0
  625. package/esm/baseui/layer/index.d.ts +5 -0
  626. package/esm/baseui/layer/index.js +11 -0
  627. package/esm/baseui/layer/layer.d.ts +2 -0
  628. package/esm/baseui/layer/layer.js +159 -0
  629. package/esm/baseui/layer/layers-manager.d.ts +28 -0
  630. package/esm/baseui/layer/layers-manager.js +168 -0
  631. package/esm/baseui/layer/tether.d.ts +30 -0
  632. package/esm/baseui/layer/tether.js +161 -0
  633. package/esm/baseui/layer/types.d.ts +148 -0
  634. package/esm/baseui/layer/types.js +1 -0
  635. package/esm/baseui/layer/utils.d.ts +6 -0
  636. package/esm/baseui/layer/utils.js +12 -0
  637. package/esm/baseui/locale/en_US.d.ts +3 -0
  638. package/esm/baseui/locale/en_US.js +23 -0
  639. package/esm/baseui/locale/es_AR.d.ts +3 -0
  640. package/esm/baseui/locale/es_AR.js +126 -0
  641. package/esm/baseui/locale/index.d.ts +26 -0
  642. package/esm/baseui/locale/index.js +23 -0
  643. package/esm/baseui/locale/tr_TR.d.ts +3 -0
  644. package/esm/baseui/locale/tr_TR.js +122 -0
  645. package/esm/baseui/locale/types.d.ts +10 -0
  646. package/esm/baseui/locale/types.js +1 -0
  647. package/esm/baseui/menu/constants.d.ts +27 -0
  648. package/esm/baseui/menu/constants.js +33 -0
  649. package/esm/baseui/menu/index.d.ts +1 -0
  650. package/esm/baseui/menu/index.js +7 -0
  651. package/esm/baseui/menu/styled-components.d.ts +0 -0
  652. package/esm/baseui/menu/styled-components.js +0 -0
  653. package/esm/baseui/menu/types.d.ts +284 -0
  654. package/esm/baseui/menu/types.js +1 -0
  655. package/esm/baseui/modal/close-icon.d.ts +1 -0
  656. package/esm/baseui/modal/close-icon.js +6 -0
  657. package/esm/baseui/modal/constants.d.ts +19 -0
  658. package/esm/baseui/modal/constants.js +25 -0
  659. package/esm/baseui/modal/focus-once.d.ts +10 -0
  660. package/esm/baseui/modal/focus-once.js +18 -0
  661. package/esm/baseui/modal/index.d.ts +7 -0
  662. package/esm/baseui/modal/index.js +12 -0
  663. package/esm/baseui/modal/locale.d.ts +7 -0
  664. package/esm/baseui/modal/locale.js +4 -0
  665. package/esm/baseui/modal/modal-button.d.ts +5 -0
  666. package/esm/baseui/modal/modal-button.js +32 -0
  667. package/esm/baseui/modal/modal.d.ts +41 -0
  668. package/esm/baseui/modal/modal.js +237 -0
  669. package/esm/baseui/modal/styled-components.d.ts +5 -0
  670. package/esm/baseui/modal/styled-components.js +72 -0
  671. package/esm/baseui/modal/types.d.ts +74 -0
  672. package/esm/baseui/modal/types.js +1 -0
  673. package/esm/baseui/payment-card/custom-cards.config.d.ts +11 -0
  674. package/esm/baseui/payment-card/custom-cards.config.js +21 -0
  675. package/esm/baseui/payment-card/icons/amex.d.ts +4 -0
  676. package/esm/baseui/payment-card/icons/amex.js +7 -0
  677. package/esm/baseui/payment-card/icons/dinersclub.d.ts +4 -0
  678. package/esm/baseui/payment-card/icons/dinersclub.js +7 -0
  679. package/esm/baseui/payment-card/icons/discover.d.ts +4 -0
  680. package/esm/baseui/payment-card/icons/discover.js +7 -0
  681. package/esm/baseui/payment-card/icons/elo.d.ts +4 -0
  682. package/esm/baseui/payment-card/icons/elo.js +7 -0
  683. package/esm/baseui/payment-card/icons/generic.d.ts +4 -0
  684. package/esm/baseui/payment-card/icons/generic.js +7 -0
  685. package/esm/baseui/payment-card/icons/jcb.d.ts +4 -0
  686. package/esm/baseui/payment-card/icons/jcb.js +7 -0
  687. package/esm/baseui/payment-card/icons/maestro.d.ts +4 -0
  688. package/esm/baseui/payment-card/icons/maestro.js +7 -0
  689. package/esm/baseui/payment-card/icons/mastercard.d.ts +4 -0
  690. package/esm/baseui/payment-card/icons/mastercard.js +7 -0
  691. package/esm/baseui/payment-card/icons/uatp.d.ts +4 -0
  692. package/esm/baseui/payment-card/icons/uatp.js +7 -0
  693. package/esm/baseui/payment-card/icons/unionpay.d.ts +4 -0
  694. package/esm/baseui/payment-card/icons/unionpay.js +7 -0
  695. package/esm/baseui/payment-card/icons/visa.d.ts +4 -0
  696. package/esm/baseui/payment-card/icons/visa.js +7 -0
  697. package/esm/baseui/payment-card/index.d.ts +7 -0
  698. package/esm/baseui/payment-card/index.js +14 -0
  699. package/esm/baseui/payment-card/payment-card.d.ts +24 -0
  700. package/esm/baseui/payment-card/payment-card.js +111 -0
  701. package/esm/baseui/payment-card/stateful-payment-card.d.ts +2 -0
  702. package/esm/baseui/payment-card/stateful-payment-card.js +7 -0
  703. package/esm/baseui/payment-card/styled-components.d.ts +1 -0
  704. package/esm/baseui/payment-card/styled-components.js +9 -0
  705. package/esm/baseui/payment-card/types.d.ts +11 -0
  706. package/esm/baseui/payment-card/types.js +1 -0
  707. package/esm/baseui/payment-card/utils.d.ts +3 -0
  708. package/esm/baseui/payment-card/utils.js +43 -0
  709. package/esm/baseui/popover/constants.d.ts +45 -0
  710. package/esm/baseui/popover/constants.js +51 -0
  711. package/esm/baseui/popover/default-props.d.ts +3 -0
  712. package/esm/baseui/popover/default-props.js +24 -0
  713. package/esm/baseui/popover/index.d.ts +6 -0
  714. package/esm/baseui/popover/index.js +15 -0
  715. package/esm/baseui/popover/popover.d.ts +15 -0
  716. package/esm/baseui/popover/popover.js +368 -0
  717. package/esm/baseui/popover/stateful-container.d.ts +32 -0
  718. package/esm/baseui/popover/stateful-container.js +172 -0
  719. package/esm/baseui/popover/stateful-popover.d.ts +19 -0
  720. package/esm/baseui/popover/stateful-popover.js +25 -0
  721. package/esm/baseui/popover/styled-components.d.ts +27 -0
  722. package/esm/baseui/popover/styled-components.js +68 -0
  723. package/esm/baseui/popover/types.d.ts +165 -0
  724. package/esm/baseui/popover/types.js +1 -0
  725. package/esm/baseui/popover/utils.d.ts +47 -0
  726. package/esm/baseui/popover/utils.js +115 -0
  727. package/esm/baseui/progress-bar/styled-components.d.ts +0 -0
  728. package/esm/baseui/progress-bar/styled-components.js +0 -0
  729. package/esm/baseui/radio/constants.d.ts +7 -0
  730. package/esm/baseui/radio/constants.js +15 -0
  731. package/esm/baseui/radio/index.d.ts +7 -0
  732. package/esm/baseui/radio/index.js +14 -0
  733. package/esm/baseui/radio/radio.d.ts +33 -0
  734. package/esm/baseui/radio/radio.js +104 -0
  735. package/esm/baseui/radio/radiogroup.d.ts +14 -0
  736. package/esm/baseui/radio/radiogroup.js +82 -0
  737. package/esm/baseui/radio/stateful-radiogroup-container.d.ts +11 -0
  738. package/esm/baseui/radio/stateful-radiogroup-container.js +56 -0
  739. package/esm/baseui/radio/stateful-radiogroup.d.ts +6 -0
  740. package/esm/baseui/radio/stateful-radiogroup.js +13 -0
  741. package/esm/baseui/radio/styled-components.d.ts +7 -0
  742. package/esm/baseui/radio/styled-components.js +50 -0
  743. package/esm/baseui/radio/types.d.ts +169 -0
  744. package/esm/baseui/radio/types.js +1 -0
  745. package/esm/baseui/select/autosize-input.d.ts +24 -0
  746. package/esm/baseui/select/autosize-input.js +65 -0
  747. package/esm/baseui/select/constants.d.ts +13 -0
  748. package/esm/baseui/select/constants.js +19 -0
  749. package/esm/baseui/select/default-props.d.ts +72 -0
  750. package/esm/baseui/select/default-props.js +63 -0
  751. package/esm/baseui/select/dropdown.d.ts +21 -0
  752. package/esm/baseui/select/dropdown.js +136 -0
  753. package/esm/baseui/select/index.d.ts +19 -0
  754. package/esm/baseui/select/index.js +14 -0
  755. package/esm/baseui/select/locale.d.ts +8 -0
  756. package/esm/baseui/select/locale.js +8 -0
  757. package/esm/baseui/select/multi-select.d.ts +3 -0
  758. package/esm/baseui/select/multi-select.js +8 -0
  759. package/esm/baseui/select/multi-value.d.ts +1 -0
  760. package/esm/baseui/select/multi-value.js +9 -0
  761. package/esm/baseui/select/select-component.d.ts +179 -0
  762. package/esm/baseui/select/select-component.js +845 -0
  763. package/esm/baseui/select/select.d.ts +4 -0
  764. package/esm/baseui/select/select.js +9 -0
  765. package/esm/baseui/select/single-select.d.ts +3 -0
  766. package/esm/baseui/select/single-select.js +8 -0
  767. package/esm/baseui/select/stateful-select-container.d.ts +19 -0
  768. package/esm/baseui/select/stateful-select-container.js +46 -0
  769. package/esm/baseui/select/stateful-select.d.ts +76 -0
  770. package/esm/baseui/select/stateful-select.js +9 -0
  771. package/esm/baseui/select/styled-components.d.ts +16 -0
  772. package/esm/baseui/select/styled-components.js +93 -0
  773. package/esm/baseui/select/types.d.ts +290 -0
  774. package/esm/baseui/select/types.js +1 -0
  775. package/esm/baseui/select/utils/default-filter-options.d.ts +23 -0
  776. package/esm/baseui/select/utils/default-filter-options.js +52 -0
  777. package/esm/baseui/select/utils/index.d.ts +3 -0
  778. package/esm/baseui/select/utils/index.js +34 -0
  779. package/esm/baseui/select/value.d.ts +1 -0
  780. package/esm/baseui/select/value.js +10 -0
  781. package/esm/baseui/slider/constants.d.ts +4 -0
  782. package/esm/baseui/slider/constants.js +10 -0
  783. package/esm/baseui/slider/index.d.ts +8 -0
  784. package/esm/baseui/slider/index.js +6 -0
  785. package/esm/baseui/slider/slider.d.ts +3 -0
  786. package/esm/baseui/slider/slider.js +98 -0
  787. package/esm/baseui/slider/stateful-slider-container.d.ts +23 -0
  788. package/esm/baseui/slider/stateful-slider-container.js +57 -0
  789. package/esm/baseui/slider/stateful-slider.d.ts +2 -0
  790. package/esm/baseui/slider/stateful-slider.js +7 -0
  791. package/esm/baseui/slider/styled-components.d.ts +9 -0
  792. package/esm/baseui/slider/styled-components.js +55 -0
  793. package/esm/baseui/slider/types.d.ts +74 -0
  794. package/esm/baseui/slider/types.js +1 -0
  795. package/esm/baseui/spinner/styled-components.d.ts +0 -0
  796. package/esm/baseui/spinner/styled-components.js +0 -0
  797. package/esm/baseui/table-semantic/constants.d.ts +11 -0
  798. package/esm/baseui/table-semantic/constants.js +17 -0
  799. package/esm/baseui/table-semantic/index.d.ts +4 -0
  800. package/esm/baseui/table-semantic/index.js +12 -0
  801. package/esm/baseui/table-semantic/styled-components.d.ts +11 -0
  802. package/esm/baseui/table-semantic/styled-components.js +39 -0
  803. package/esm/baseui/table-semantic/table-builder-column.d.ts +4 -0
  804. package/esm/baseui/table-semantic/table-builder-column.js +16 -0
  805. package/esm/baseui/table-semantic/table-builder.d.ts +17 -0
  806. package/esm/baseui/table-semantic/table-builder.js +79 -0
  807. package/esm/baseui/table-semantic/table.d.ts +10 -0
  808. package/esm/baseui/table-semantic/table.js +43 -0
  809. package/esm/baseui/table-semantic/types.d.ts +66 -0
  810. package/esm/baseui/table-semantic/types.js +1 -0
  811. package/esm/baseui/textarea/constants.d.ts +1 -0
  812. package/esm/baseui/textarea/constants.js +7 -0
  813. package/esm/baseui/textarea/index.d.ts +6 -0
  814. package/esm/baseui/textarea/index.js +13 -0
  815. package/esm/baseui/textarea/stateful-container.d.ts +2 -0
  816. package/esm/baseui/textarea/stateful-container.js +8 -0
  817. package/esm/baseui/textarea/stateful-textarea.d.ts +2 -0
  818. package/esm/baseui/textarea/stateful-textarea.js +9 -0
  819. package/esm/baseui/textarea/styled-components.d.ts +3 -0
  820. package/esm/baseui/textarea/styled-components.js +16 -0
  821. package/esm/baseui/textarea/textarea.d.ts +32 -0
  822. package/esm/baseui/textarea/textarea.js +61 -0
  823. package/esm/baseui/textarea/types.d.ts +44 -0
  824. package/esm/baseui/textarea/types.js +1 -0
  825. package/esm/baseui/timepicker/index.d.ts +2 -0
  826. package/esm/baseui/timepicker/index.js +9 -0
  827. package/esm/baseui/timepicker/timepicker.d.ts +34 -0
  828. package/esm/baseui/timepicker/timepicker.js +258 -0
  829. package/esm/baseui/timepicker/types.d.ts +54 -0
  830. package/esm/baseui/timepicker/types.js +1 -0
  831. package/esm/baseui/tooltip/constants.d.ts +1 -0
  832. package/esm/baseui/tooltip/constants.js +7 -0
  833. package/esm/baseui/tooltip/default-props.d.ts +3 -0
  834. package/esm/baseui/tooltip/default-props.js +22 -0
  835. package/esm/baseui/tooltip/index.d.ts +6 -0
  836. package/esm/baseui/tooltip/index.js +15 -0
  837. package/esm/baseui/tooltip/stateful-tooltip-container.d.ts +7 -0
  838. package/esm/baseui/tooltip/stateful-tooltip-container.js +23 -0
  839. package/esm/baseui/tooltip/stateful-tooltip.d.ts +6 -0
  840. package/esm/baseui/tooltip/stateful-tooltip.js +10 -0
  841. package/esm/baseui/tooltip/styled-components.d.ts +14 -0
  842. package/esm/baseui/tooltip/styled-components.js +30 -0
  843. package/esm/baseui/tooltip/tooltip.d.ts +7 -0
  844. package/esm/baseui/tooltip/tooltip.js +31 -0
  845. package/esm/baseui/tooltip/types.d.ts +8 -0
  846. package/esm/baseui/tooltip/types.js +1 -0
  847. package/esm/baseui/tree-view/index.d.ts +11 -0
  848. package/esm/baseui/tree-view/index.js +8 -0
  849. package/esm/baseui/tree-view/stateful-container.d.ts +11 -0
  850. package/esm/baseui/tree-view/stateful-container.js +68 -0
  851. package/esm/baseui/tree-view/stateful-tree-view.d.ts +2 -0
  852. package/esm/baseui/tree-view/stateful-tree-view.js +7 -0
  853. package/esm/baseui/tree-view/styled-components.d.ts +6 -0
  854. package/esm/baseui/tree-view/styled-components.js +38 -0
  855. package/esm/baseui/tree-view/tree-label-interactable.d.ts +8 -0
  856. package/esm/baseui/tree-view/tree-label-interactable.js +18 -0
  857. package/esm/baseui/tree-view/tree-label.d.ts +4 -0
  858. package/esm/baseui/tree-view/tree-label.js +26 -0
  859. package/esm/baseui/tree-view/tree-node.d.ts +11 -0
  860. package/esm/baseui/tree-view/tree-node.js +52 -0
  861. package/esm/baseui/tree-view/tree-view.d.ts +2 -0
  862. package/esm/baseui/tree-view/tree-view.js +126 -0
  863. package/esm/baseui/tree-view/types.d.ts +67 -0
  864. package/esm/baseui/tree-view/types.js +1 -0
  865. package/esm/baseui/tree-view/utils.d.ts +11 -0
  866. package/esm/baseui/tree-view/utils.js +181 -0
  867. package/esm/baseui/utils/create-event.d.ts +1 -0
  868. package/esm/baseui/utils/create-event.js +11 -0
  869. package/esm/baseui/utils/deep-merge.d.ts +1 -0
  870. package/esm/baseui/utils/deep-merge.js +37 -0
  871. package/esm/baseui/utils/focusVisible.d.ts +10 -0
  872. package/esm/baseui/utils/focusVisible.js +160 -0
  873. package/esm/baseui/utils/index.d.ts +0 -0
  874. package/esm/baseui/utils/index.js +0 -0
  875. package/esm/baseui/utils/react-18.d.ts +1 -0
  876. package/esm/baseui/utils/react-18.js +9 -0
  877. package/esm/breadcrumb/breadcrumb-item.d.ts +1 -2
  878. package/esm/breadcrumb/breadcrumb.d.ts +1 -2
  879. package/esm/breadcrumb/styled-components.d.ts +1 -2
  880. package/esm/button/Button.d.ts +4 -3
  881. package/esm/button/Button.js +26 -16
  882. package/esm/button/IconButton/IconButton.js +7 -1
  883. package/esm/button/IconButton/styled-components.d.ts +1 -0
  884. package/esm/button/IconButton/styled-components.js +45 -13
  885. package/esm/button/IconTextButton/IconTextButton.d.ts +1 -1
  886. package/esm/button/IconTextButton/types.d.ts +1 -1
  887. package/esm/button/basewebAdapter.d.ts +8 -7
  888. package/esm/button/basewebAdapter.js +1 -1
  889. package/esm/button/index.d.ts +1 -1
  890. package/esm/button/index.js +1 -1
  891. package/esm/button/styled-components.d.ts +27 -2
  892. package/esm/button/styled-components.js +309 -46
  893. package/esm/button/types.d.ts +8 -5
  894. package/esm/button-group/styled-components.js +4 -5
  895. package/esm/checkbox/basewebAdapters.d.ts +1 -1
  896. package/esm/checkbox/basewebAdapters.js +31 -27
  897. package/esm/checkbox/checkbox.js +1 -1
  898. package/esm/checkbox/index.d.ts +3 -3
  899. package/esm/checkbox/index.js +2 -2
  900. package/esm/checkbox/styled-components.js +52 -15
  901. package/esm/checkbox/types.d.ts +4 -3
  902. package/esm/color-picker/ColorPalette.d.ts +2 -2
  903. package/esm/color-picker/ColorPalette.js +9 -7
  904. package/esm/color-picker/ColorPicker.d.ts +1 -1
  905. package/esm/color-picker/ColorPicker.js +42 -7
  906. package/esm/color-picker/ColorSelector.d.ts +6 -0
  907. package/esm/color-picker/ColorSelector.js +30 -0
  908. package/esm/color-picker/CustomColorSelector.d.ts +3 -0
  909. package/esm/color-picker/CustomColorSelector.js +38 -0
  910. package/esm/color-picker/GradientColorPicker.d.ts +6 -0
  911. package/esm/color-picker/GradientColorPicker.js +66 -0
  912. package/esm/color-picker/Swatch.js +3 -5
  913. package/esm/color-picker/colors.d.ts +2 -0
  914. package/esm/color-picker/colors.js +24 -0
  915. package/esm/color-picker/constants.d.ts +13 -0
  916. package/esm/color-picker/constants.js +9 -0
  917. package/esm/color-picker/locale.d.ts +4 -0
  918. package/esm/color-picker/types.d.ts +50 -1
  919. package/esm/color-picker/utils.d.ts +17 -0
  920. package/esm/color-picker/utils.js +33 -0
  921. package/esm/date-input/DateInput.d.ts +1 -1
  922. package/esm/date-input/DateInput.js +98 -87
  923. package/esm/date-input/constants.d.ts +28 -0
  924. package/esm/date-input/constants.js +28 -0
  925. package/esm/date-input/index.d.ts +1 -0
  926. package/esm/date-input/index.js +1 -0
  927. package/esm/date-input/types.d.ts +13 -4
  928. package/esm/date-input/utils.d.ts +2 -0
  929. package/esm/date-input/utils.js +72 -0
  930. package/esm/date-picker/Calendar.d.ts +4 -9
  931. package/esm/date-picker/Calendar.js +110 -119
  932. package/esm/date-picker/DateInput.d.ts +2 -2
  933. package/esm/date-picker/DateInput.js +30 -46
  934. package/esm/date-picker/DatePickerContent.js +9 -28
  935. package/esm/date-picker/DateTimeContainer.d.ts +2 -2
  936. package/esm/date-picker/DateTimeContainer.js +16 -10
  937. package/esm/date-picker/StatelessDatePicker.js +4 -16
  938. package/esm/date-picker/TimeInput.d.ts +2 -2
  939. package/esm/date-picker/TimeInput.js +1 -1
  940. package/esm/date-picker/index.d.ts +1 -1
  941. package/esm/date-picker/index.js +1 -1
  942. package/esm/date-picker/stateful-container.d.ts +1 -1
  943. package/esm/date-picker/stateful-container.js +1 -1
  944. package/esm/date-picker/styled-components.js +9 -6
  945. package/esm/date-picker/types.d.ts +2 -1
  946. package/esm/date-picker/utils.d.ts +2 -2
  947. package/esm/date-picker/utils.js +3 -3
  948. package/esm/form-control/form-control.js +7 -6
  949. package/esm/form-control/types.d.ts +5 -3
  950. package/esm/grid/Col.js +30 -20
  951. package/esm/helpers/commonStyles.d.ts +1 -0
  952. package/esm/helpers/commonStyles.js +13 -0
  953. package/esm/helpers/styletron.d.ts +0 -23
  954. package/esm/helpers/styletron.js +0 -13
  955. package/esm/hooks/useFocusVisible.js +1 -1
  956. package/esm/hooks/useHasMounted.d.ts +2 -0
  957. package/esm/hooks/useHasMounted.js +11 -0
  958. package/esm/hooks/usePreferredReducedMotion.d.ts +2 -0
  959. package/esm/hooks/usePreferredReducedMotion.js +9 -0
  960. package/esm/hooks/useTransitionState.d.ts +4 -0
  961. package/esm/hooks/useTransitionState.js +21 -0
  962. package/esm/hooks/useUniqueId.d.ts +4 -1
  963. package/esm/hooks/useUniqueId.js +7 -5
  964. package/esm/icon/components/noPreview.d.ts +3 -0
  965. package/esm/icon/components/noPreview.js +8 -0
  966. package/esm/icon/components/overview.d.ts +3 -0
  967. package/esm/icon/components/overview.js +8 -0
  968. package/esm/icon/constants.d.ts +4 -0
  969. package/esm/icon/constants.js +4 -0
  970. package/esm/icon/icon.d.ts +1 -1
  971. package/esm/icon/icon.js +3 -2
  972. package/esm/icon/types.d.ts +3 -0
  973. package/esm/input/InputContainer.d.ts +12 -0
  974. package/esm/input/InputContainer.js +18 -0
  975. package/esm/input/basewebAdapters.d.ts +2 -2
  976. package/esm/input/basewebAdapters.js +45 -42
  977. package/esm/input/index.d.ts +4 -3
  978. package/esm/input/index.js +3 -2
  979. package/esm/input/input.js +1 -1
  980. package/esm/input/styled-components.js +1 -1
  981. package/esm/input/types.d.ts +1 -1
  982. package/esm/layer/LayersManager.js +3 -1
  983. package/esm/layer/useLayersContextValue.d.ts +1 -1
  984. package/esm/layer/useLayersContextValue.js +48 -3
  985. package/esm/list/list-item-text.d.ts +1 -2
  986. package/esm/list/list-item.d.ts +1 -1
  987. package/esm/list/list-item.js +1 -1
  988. package/esm/loader/loader.d.ts +3 -1
  989. package/esm/loader/loader.js +12 -3
  990. package/esm/loader/styled-component.d.ts +2 -0
  991. package/esm/loader/styled-component.js +61 -0
  992. package/esm/loader/types.d.ts +2 -1
  993. package/esm/locale/context.d.ts +1 -1
  994. package/esm/locale/en_US.js +5 -0
  995. package/esm/locale/types.d.ts +7 -7
  996. package/esm/menu/helpers.d.ts +8 -1
  997. package/esm/menu/helpers.js +4 -4
  998. package/esm/menu/menu-item.d.ts +3 -3
  999. package/esm/menu/menu-item.js +6 -2
  1000. package/esm/modal/adapter.d.ts +1 -1
  1001. package/esm/modal/adapter.js +1 -1
  1002. package/esm/modal/index.d.ts +1 -1
  1003. package/esm/modal/index.js +1 -1
  1004. package/esm/modal/modal-footer.d.ts +1 -1
  1005. package/esm/modal/modal-footer.js +4 -3
  1006. package/esm/modal/modal.js +16 -13
  1007. package/esm/modal/overrides.js +6 -13
  1008. package/esm/modal/styled-components.d.ts +2 -2
  1009. package/esm/modal/styled-components.js +3 -12
  1010. package/esm/modal/types.d.ts +3 -3
  1011. package/esm/modal/types.js +1 -1
  1012. package/esm/overrides/useOverrides.js +1 -1
  1013. package/esm/payment-card/basewebAdapters.d.ts +1 -1
  1014. package/esm/payment-card/basewebAdapters.js +2 -2
  1015. package/esm/payment-card/index.d.ts +1 -1
  1016. package/esm/payment-card/index.js +1 -1
  1017. package/esm/payment-card/paymentCard.js +1 -1
  1018. package/esm/payment-card/types.d.ts +1 -1
  1019. package/esm/phone-input/styled-components.d.ts +1 -1
  1020. package/esm/phone-input/styled-components.js +5 -13
  1021. package/esm/phone-input/types.d.ts +1 -1
  1022. package/esm/popover/PopoverEnahncer.d.ts +1 -1
  1023. package/esm/popover/adapter.d.ts +1 -1
  1024. package/esm/popover/adapter.js +1 -1
  1025. package/esm/popover/hooks.d.ts +1 -1
  1026. package/esm/popover/index.d.ts +1 -1
  1027. package/esm/popover/index.js +1 -1
  1028. package/esm/popover/popover.d.ts +1 -1
  1029. package/esm/popover/popover.js +16 -12
  1030. package/esm/popover/stateful-popover.js +1 -1
  1031. package/esm/popover/styled-components.d.ts +1 -1
  1032. package/esm/popover/styled-components.js +1 -1
  1033. package/esm/popover/types.d.ts +5 -5
  1034. package/esm/popover/types.js +2 -2
  1035. package/esm/radio/basewebAdapters.d.ts +1 -1
  1036. package/esm/radio/basewebAdapters.js +33 -29
  1037. package/esm/radio/index.d.ts +1 -1
  1038. package/esm/radio/index.js +1 -1
  1039. package/esm/radio/radio.js +1 -1
  1040. package/esm/radio/styled-components.js +2 -2
  1041. package/esm/radio/types.d.ts +1 -2
  1042. package/esm/select/adaptor.d.ts +1 -1
  1043. package/esm/select/adaptor.js +1 -1
  1044. package/esm/select/base-select.d.ts +6 -7
  1045. package/esm/select/base-select.js +23 -67
  1046. package/esm/select/constants.d.ts +1 -1
  1047. package/esm/select/constants.js +2 -2
  1048. package/esm/select/index.d.ts +2 -2
  1049. package/esm/select/index.js +1 -1
  1050. package/esm/select/locale.d.ts +1 -0
  1051. package/esm/select/mobileSelect/MobileSelect.js +9 -2
  1052. package/esm/select/mobileSelect/MobileSheet.js +1 -1
  1053. package/esm/select/mobileSelect/overrides.d.ts +1 -1
  1054. package/esm/select/overlaySelect/OverlaySelect.d.ts +2 -1
  1055. package/esm/select/overlaySelect/OverlaySelect.js +38 -8
  1056. package/esm/select/overlaySelect/hooks/useControlRef.d.ts +1 -1
  1057. package/esm/select/overlaySelect/hooks/useOverlaySelectOverrides.d.ts +1 -4
  1058. package/esm/select/overlaySelect/hooks/useOverlaySelectOverrides.js +2 -8
  1059. package/esm/select/overrides.d.ts +2 -2
  1060. package/esm/select/select.d.ts +4 -4
  1061. package/esm/select/select.js +0 -3
  1062. package/esm/select/selectMenuAdapter/CollapsibleSelectMenu.d.ts +14 -13
  1063. package/esm/select/selectMenuAdapter/CollapsibleSelectMenu.js +43 -12
  1064. package/esm/select/selectMenuAdapter/SelectMenuAdapter.js +1 -1
  1065. package/esm/select/selectMenuAdapter/SelectMenuItem.d.ts +3 -3
  1066. package/esm/select/selectMenuAdapter/hooks/useGetExpandedGroup.d.ts +1 -1
  1067. package/esm/select/selectMenuAdapter/hooks/useGetExpandedGroup.js +3 -2
  1068. package/esm/select/selectMenuAdapter/types.d.ts +3 -1
  1069. package/esm/select/stateful-select.d.ts +4 -4
  1070. package/esm/select/stateful-select.js +1 -1
  1071. package/esm/select/styled-component.d.ts +6 -6
  1072. package/esm/select/styled-component.js +21 -16
  1073. package/esm/select/types.d.ts +5 -14
  1074. package/esm/select/types.js +2 -1
  1075. package/esm/select/utils/default-create-option.d.ts +5 -0
  1076. package/esm/select/utils/default-create-option.js +6 -0
  1077. package/esm/select/utils/default-filter-options.d.ts +1 -1
  1078. package/esm/select/utils/default-filter-options.js +1 -1
  1079. package/esm/select/utils/merge-options.js +1 -1
  1080. package/esm/slider/mark.d.ts +3 -3
  1081. package/esm/slider/slider.js +12 -7
  1082. package/esm/slider/stateful-slider-container.js +1 -1
  1083. package/esm/slider/types.d.ts +1 -1
  1084. package/esm/snackbar/Snackbar.js +2 -2
  1085. package/esm/snackbar/constants.d.ts +1 -1
  1086. package/esm/snackbar/useSnackbar.js +16 -7
  1087. package/esm/spacewebProvider/AiIconLinearGradients.d.ts +2 -0
  1088. package/esm/spacewebProvider/AiIconLinearGradients.js +9 -0
  1089. package/esm/spacewebProvider/CustomBaseProvider.d.ts +2 -11
  1090. package/esm/spacewebProvider/CustomBaseProvider.js +4 -12
  1091. package/esm/spacewebProvider/SpacewebProvider.js +8 -6
  1092. package/esm/style/styled.d.ts +1 -1
  1093. package/esm/style/useMemoizedStyletron.d.ts +2 -1
  1094. package/esm/style/useMemoizedStyletron.js +3 -3
  1095. package/esm/switch/index.d.ts +1 -1
  1096. package/esm/switch/index.js +1 -1
  1097. package/esm/switch/styled-components.js +0 -2
  1098. package/esm/switch/switch.js +1 -1
  1099. package/esm/switch/types.d.ts +1 -1
  1100. package/esm/tabs/contexts.d.ts +2 -2
  1101. package/esm/tabs/styled-components.d.ts +1 -1
  1102. package/esm/tabs/tab-list.js +2 -1
  1103. package/esm/tag/intentStyles.d.ts +5 -1
  1104. package/esm/tag/intentStyles.js +31 -5
  1105. package/esm/tag/styled-components.js +5 -4
  1106. package/esm/tag/tag.js +3 -7
  1107. package/esm/tag/types.d.ts +1 -1
  1108. package/esm/textarea/basewebAdapters.js +17 -15
  1109. package/esm/textarea/index.d.ts +1 -1
  1110. package/esm/textarea/index.js +1 -1
  1111. package/esm/textarea/styled-components.d.ts +1 -1
  1112. package/esm/textarea/textarea.js +1 -1
  1113. package/esm/textarea/types.d.ts +1 -1
  1114. package/esm/theme/Provider.js +4 -10
  1115. package/esm/time-picker/TimePicker.js +15 -12
  1116. package/esm/time-picker/types.d.ts +2 -2
  1117. package/esm/time-range-picker/RangeSelector.js +7 -11
  1118. package/esm/time-range-picker/RangeSelectorContainer.js +2 -2
  1119. package/esm/time-range-picker/TimeRangeList.js +1 -1
  1120. package/esm/time-range-picker/TimeRangePicker.js +9 -3
  1121. package/esm/time-range-picker/constants.d.ts +0 -2
  1122. package/esm/time-range-picker/constants.js +0 -2
  1123. package/esm/time-range-picker/types.d.ts +1 -2
  1124. package/esm/time-range-picker/utils.d.ts +2 -6
  1125. package/esm/time-range-picker/utils.js +5 -16
  1126. package/esm/tooltip/disabled-tooltip-container.d.ts +2 -1
  1127. package/esm/tooltip/disabled-tooltip-container.js +1 -1
  1128. package/esm/tooltip/overrides.js +10 -4
  1129. package/esm/tooltip/stateful-tooltip-container.d.ts +2 -1
  1130. package/esm/tooltip/stateful-tooltip-container.js +1 -1
  1131. package/esm/tooltip/stateful-tooltip.d.ts +2 -1
  1132. package/esm/tooltip/stateful-tooltip.js +3 -5
  1133. package/esm/tooltip/styled-component.d.ts +1 -1
  1134. package/esm/tooltip/styled-component.js +1 -1
  1135. package/esm/tooltip/tooltip.d.ts +1 -1
  1136. package/esm/tooltip/tooltip.js +17 -13
  1137. package/esm/tooltip/types.d.ts +8 -4
  1138. package/esm/transitions/collapse/collapse.d.ts +7 -0
  1139. package/esm/transitions/collapse/collapse.js +64 -0
  1140. package/esm/transitions/collapse/index.d.ts +3 -0
  1141. package/esm/transitions/collapse/index.js +1 -0
  1142. package/esm/transitions/collapse/styled-components.d.ts +1 -0
  1143. package/esm/transitions/collapse/styled-components.js +23 -0
  1144. package/esm/transitions/collapse/types.d.ts +19 -0
  1145. package/esm/transitions/collapse/types.js +1 -0
  1146. package/esm/transitions/fade/fade.d.ts +7 -0
  1147. package/esm/transitions/fade/fade.js +27 -0
  1148. package/esm/transitions/fade/index.d.ts +3 -0
  1149. package/esm/transitions/fade/index.js +1 -0
  1150. package/esm/transitions/fade/types.d.ts +10 -0
  1151. package/esm/transitions/fade/types.js +1 -0
  1152. package/esm/transitions/grow/grow.d.ts +7 -0
  1153. package/esm/transitions/grow/grow.js +30 -0
  1154. package/esm/transitions/grow/index.d.ts +3 -0
  1155. package/esm/transitions/grow/index.js +1 -0
  1156. package/esm/transitions/grow/types.d.ts +9 -0
  1157. package/esm/transitions/grow/types.js +1 -0
  1158. package/esm/transitions/transition/constants.d.ts +6 -0
  1159. package/esm/transitions/transition/constants.js +6 -0
  1160. package/esm/transitions/transition/helperFunction.d.ts +1 -0
  1161. package/esm/transitions/transition/helperFunction.js +5 -0
  1162. package/esm/transitions/transition/index.d.ts +4 -0
  1163. package/esm/transitions/transition/index.js +3 -0
  1164. package/esm/transitions/transition/styled-component.d.ts +1 -0
  1165. package/esm/transitions/transition/styled-component.js +24 -0
  1166. package/esm/transitions/transition/transition.d.ts +7 -0
  1167. package/esm/transitions/transition/transition.js +34 -0
  1168. package/esm/transitions/transition/transitionGroup.d.ts +4 -0
  1169. package/esm/transitions/transition/transitionGroup.js +11 -0
  1170. package/esm/transitions/transition/types.d.ts +40 -0
  1171. package/esm/transitions/transition/types.js +1 -0
  1172. package/esm/truncateWithTooltip/TruncateWithTooltip.d.ts +4 -0
  1173. package/esm/truncateWithTooltip/TruncateWithTooltip.js +20 -0
  1174. package/esm/truncateWithTooltip/hooks/useTruncateWithTooltip.d.ts +7 -0
  1175. package/esm/truncateWithTooltip/hooks/useTruncateWithTooltip.js +26 -0
  1176. package/esm/truncateWithTooltip/index.d.ts +2 -0
  1177. package/esm/truncateWithTooltip/index.js +1 -0
  1178. package/esm/truncateWithTooltip/types.d.ts +20 -0
  1179. package/esm/truncateWithTooltip/types.js +1 -0
  1180. package/esm/types.d.ts +2 -5
  1181. package/esm/typography/Typography.d.ts +6 -0
  1182. package/esm/typography/Typography.js +8 -3
  1183. package/esm/typography/types.d.ts +7 -1
  1184. package/esm/utils/intlNumberFormatUtils/index.js +3 -1
  1185. package/esm/video/Video.js +3 -2
  1186. package/esm/video/types.d.ts +1 -0
  1187. package/form-control/form-control.js +7 -6
  1188. package/form-control/types.d.ts +5 -3
  1189. package/grid/Col.js +29 -19
  1190. package/helpers/commonStyles.d.ts +1 -0
  1191. package/helpers/commonStyles.js +14 -1
  1192. package/helpers/styletron.d.ts +0 -23
  1193. package/helpers/styletron.js +0 -16
  1194. package/hooks/useFocusVisible.js +1 -1
  1195. package/hooks/useHasMounted.d.ts +2 -0
  1196. package/hooks/useHasMounted.js +14 -0
  1197. package/hooks/usePreferredReducedMotion.d.ts +2 -0
  1198. package/hooks/usePreferredReducedMotion.js +11 -0
  1199. package/hooks/useTransitionState.d.ts +4 -0
  1200. package/hooks/useTransitionState.js +25 -0
  1201. package/hooks/useUniqueId.d.ts +4 -1
  1202. package/hooks/useUniqueId.js +9 -7
  1203. package/icon/components/noPreview.d.ts +3 -0
  1204. package/icon/components/noPreview.js +11 -0
  1205. package/icon/components/overview.d.ts +3 -0
  1206. package/icon/components/overview.js +11 -0
  1207. package/icon/constants.d.ts +4 -0
  1208. package/icon/constants.js +7 -0
  1209. package/icon/icon.d.ts +1 -1
  1210. package/icon/icon.js +3 -2
  1211. package/icon/types.d.ts +3 -0
  1212. package/input/InputContainer.d.ts +12 -0
  1213. package/input/InputContainer.js +22 -0
  1214. package/input/basewebAdapters.d.ts +2 -2
  1215. package/input/basewebAdapters.js +45 -42
  1216. package/input/index.d.ts +4 -3
  1217. package/input/index.js +5 -3
  1218. package/input/input.js +1 -1
  1219. package/input/styled-components.js +1 -1
  1220. package/input/types.d.ts +1 -1
  1221. package/layer/LayersManager.js +3 -1
  1222. package/layer/useLayersContextValue.d.ts +1 -1
  1223. package/layer/useLayersContextValue.js +48 -3
  1224. package/list/list-item-text.d.ts +1 -2
  1225. package/list/list-item.d.ts +1 -1
  1226. package/list/list-item.js +1 -1
  1227. package/loader/loader.d.ts +3 -1
  1228. package/loader/loader.js +11 -2
  1229. package/loader/styled-component.d.ts +2 -0
  1230. package/loader/styled-component.js +62 -1
  1231. package/loader/types.d.ts +2 -1
  1232. package/locale/context.d.ts +1 -1
  1233. package/locale/en_US.js +5 -0
  1234. package/locale/types.d.ts +7 -7
  1235. package/menu/helpers.d.ts +8 -1
  1236. package/menu/helpers.js +7 -4
  1237. package/menu/menu-item.d.ts +3 -3
  1238. package/menu/menu-item.js +6 -2
  1239. package/modal/adapter.d.ts +1 -1
  1240. package/modal/adapter.js +1 -1
  1241. package/modal/index.d.ts +1 -1
  1242. package/modal/index.js +1 -1
  1243. package/modal/modal-footer.d.ts +1 -1
  1244. package/modal/modal-footer.js +3 -2
  1245. package/modal/modal.js +16 -13
  1246. package/modal/overrides.js +6 -13
  1247. package/modal/styled-components.d.ts +2 -2
  1248. package/modal/styled-components.js +3 -13
  1249. package/modal/types.d.ts +3 -3
  1250. package/modal/types.js +1 -1
  1251. package/overrides/useOverrides.js +1 -1
  1252. package/package.json +31 -15
  1253. package/payment-card/basewebAdapters.d.ts +1 -1
  1254. package/payment-card/basewebAdapters.js +2 -2
  1255. package/payment-card/index.d.ts +1 -1
  1256. package/payment-card/index.js +1 -1
  1257. package/payment-card/paymentCard.js +1 -1
  1258. package/payment-card/types.d.ts +1 -1
  1259. package/phone-input/styled-components.d.ts +1 -1
  1260. package/phone-input/styled-components.js +5 -13
  1261. package/phone-input/types.d.ts +1 -1
  1262. package/popover/PopoverEnahncer.d.ts +1 -1
  1263. package/popover/adapter.d.ts +1 -1
  1264. package/popover/adapter.js +1 -1
  1265. package/popover/hooks.d.ts +1 -1
  1266. package/popover/index.d.ts +1 -1
  1267. package/popover/index.js +1 -1
  1268. package/popover/popover.d.ts +1 -1
  1269. package/popover/popover.js +15 -11
  1270. package/popover/stateful-popover.js +1 -1
  1271. package/popover/styled-components.d.ts +1 -1
  1272. package/popover/styled-components.js +1 -1
  1273. package/popover/types.d.ts +5 -5
  1274. package/popover/types.js +2 -2
  1275. package/radio/basewebAdapters.d.ts +1 -1
  1276. package/radio/basewebAdapters.js +32 -28
  1277. package/radio/index.d.ts +1 -1
  1278. package/radio/index.js +1 -1
  1279. package/radio/radio.js +1 -1
  1280. package/radio/styled-components.js +2 -2
  1281. package/radio/types.d.ts +1 -2
  1282. package/select/adaptor.d.ts +1 -1
  1283. package/select/adaptor.js +1 -1
  1284. package/select/base-select.d.ts +6 -7
  1285. package/select/base-select.js +35 -79
  1286. package/select/constants.d.ts +1 -1
  1287. package/select/constants.js +2 -2
  1288. package/select/index.d.ts +2 -2
  1289. package/select/index.js +1 -1
  1290. package/select/locale.d.ts +1 -0
  1291. package/select/mobileSelect/MobileSelect.js +9 -2
  1292. package/select/mobileSelect/MobileSheet.js +1 -1
  1293. package/select/mobileSelect/overrides.d.ts +1 -1
  1294. package/select/overlaySelect/OverlaySelect.d.ts +2 -1
  1295. package/select/overlaySelect/OverlaySelect.js +35 -5
  1296. package/select/overlaySelect/hooks/useControlRef.d.ts +1 -1
  1297. package/select/overlaySelect/hooks/useOverlaySelectOverrides.d.ts +1 -4
  1298. package/select/overlaySelect/hooks/useOverlaySelectOverrides.js +2 -8
  1299. package/select/overrides.d.ts +2 -2
  1300. package/select/select.d.ts +4 -4
  1301. package/select/select.js +0 -3
  1302. package/select/selectMenuAdapter/CollapsibleSelectMenu.d.ts +14 -13
  1303. package/select/selectMenuAdapter/CollapsibleSelectMenu.js +42 -11
  1304. package/select/selectMenuAdapter/SelectMenuAdapter.js +1 -1
  1305. package/select/selectMenuAdapter/SelectMenuItem.d.ts +3 -3
  1306. package/select/selectMenuAdapter/hooks/useGetExpandedGroup.d.ts +1 -1
  1307. package/select/selectMenuAdapter/hooks/useGetExpandedGroup.js +3 -2
  1308. package/select/selectMenuAdapter/types.d.ts +3 -1
  1309. package/select/stateful-select.d.ts +4 -4
  1310. package/select/stateful-select.js +1 -1
  1311. package/select/styled-component.d.ts +6 -6
  1312. package/select/styled-component.js +21 -16
  1313. package/select/types.d.ts +5 -14
  1314. package/select/types.js +3 -2
  1315. package/select/utils/default-create-option.d.ts +5 -0
  1316. package/select/utils/default-create-option.js +11 -0
  1317. package/select/utils/default-filter-options.d.ts +1 -1
  1318. package/select/utils/default-filter-options.js +1 -1
  1319. package/select/utils/merge-options.js +1 -1
  1320. package/slider/mark.d.ts +3 -3
  1321. package/slider/slider.js +12 -7
  1322. package/slider/stateful-slider-container.js +1 -1
  1323. package/slider/types.d.ts +1 -1
  1324. package/snackbar/Snackbar.js +2 -2
  1325. package/snackbar/constants.d.ts +1 -1
  1326. package/snackbar/useSnackbar.js +16 -7
  1327. package/spacewebProvider/AiIconLinearGradients.d.ts +2 -0
  1328. package/spacewebProvider/AiIconLinearGradients.js +11 -0
  1329. package/spacewebProvider/CustomBaseProvider.d.ts +2 -11
  1330. package/spacewebProvider/CustomBaseProvider.js +4 -12
  1331. package/spacewebProvider/SpacewebProvider.js +8 -6
  1332. package/style/styled.d.ts +1 -1
  1333. package/style/useMemoizedStyletron.d.ts +2 -1
  1334. package/style/useMemoizedStyletron.js +3 -3
  1335. package/switch/index.d.ts +1 -1
  1336. package/switch/index.js +1 -1
  1337. package/switch/styled-components.js +0 -2
  1338. package/switch/switch.js +1 -1
  1339. package/switch/types.d.ts +1 -1
  1340. package/tabs/contexts.d.ts +2 -2
  1341. package/tabs/styled-components.d.ts +1 -1
  1342. package/tabs/tab-list.js +2 -1
  1343. package/tag/intentStyles.d.ts +5 -1
  1344. package/tag/intentStyles.js +31 -5
  1345. package/tag/styled-components.js +5 -4
  1346. package/tag/tag.js +3 -7
  1347. package/tag/types.d.ts +1 -1
  1348. package/textarea/basewebAdapters.js +17 -15
  1349. package/textarea/index.d.ts +1 -1
  1350. package/textarea/index.js +1 -1
  1351. package/textarea/styled-components.d.ts +1 -1
  1352. package/textarea/textarea.js +1 -1
  1353. package/textarea/types.d.ts +1 -1
  1354. package/theme/Provider.js +2 -8
  1355. package/time-picker/TimePicker.js +15 -12
  1356. package/time-picker/types.d.ts +2 -2
  1357. package/time-range-picker/RangeSelector.js +5 -9
  1358. package/time-range-picker/RangeSelectorContainer.js +2 -2
  1359. package/time-range-picker/TimeRangeList.js +1 -1
  1360. package/time-range-picker/TimeRangePicker.js +9 -3
  1361. package/time-range-picker/constants.d.ts +0 -2
  1362. package/time-range-picker/constants.js +1 -3
  1363. package/time-range-picker/types.d.ts +1 -2
  1364. package/time-range-picker/utils.d.ts +2 -6
  1365. package/time-range-picker/utils.js +5 -17
  1366. package/tooltip/disabled-tooltip-container.d.ts +2 -1
  1367. package/tooltip/disabled-tooltip-container.js +1 -1
  1368. package/tooltip/overrides.js +10 -4
  1369. package/tooltip/stateful-tooltip-container.d.ts +2 -1
  1370. package/tooltip/stateful-tooltip-container.js +1 -1
  1371. package/tooltip/stateful-tooltip.d.ts +2 -1
  1372. package/tooltip/stateful-tooltip.js +3 -5
  1373. package/tooltip/styled-component.d.ts +1 -1
  1374. package/tooltip/styled-component.js +1 -1
  1375. package/tooltip/tooltip.d.ts +1 -1
  1376. package/tooltip/tooltip.js +16 -12
  1377. package/tooltip/types.d.ts +8 -4
  1378. package/transitions/collapse/collapse.d.ts +7 -0
  1379. package/transitions/collapse/collapse.js +66 -0
  1380. package/transitions/collapse/index.d.ts +3 -0
  1381. package/transitions/collapse/index.js +8 -0
  1382. package/transitions/collapse/styled-components.d.ts +1 -0
  1383. package/transitions/collapse/styled-components.js +26 -0
  1384. package/transitions/collapse/types.d.ts +19 -0
  1385. package/transitions/collapse/types.js +2 -0
  1386. package/transitions/fade/fade.d.ts +7 -0
  1387. package/transitions/fade/fade.js +29 -0
  1388. package/transitions/fade/index.d.ts +3 -0
  1389. package/transitions/fade/index.js +8 -0
  1390. package/transitions/fade/types.d.ts +10 -0
  1391. package/transitions/fade/types.js +2 -0
  1392. package/transitions/grow/grow.d.ts +7 -0
  1393. package/transitions/grow/grow.js +32 -0
  1394. package/transitions/grow/index.d.ts +3 -0
  1395. package/transitions/grow/index.js +8 -0
  1396. package/transitions/grow/types.d.ts +9 -0
  1397. package/transitions/grow/types.js +2 -0
  1398. package/transitions/package.json +4 -0
  1399. package/transitions/transition/constants.d.ts +6 -0
  1400. package/transitions/transition/constants.js +9 -0
  1401. package/transitions/transition/helperFunction.d.ts +1 -0
  1402. package/transitions/transition/helperFunction.js +9 -0
  1403. package/transitions/transition/index.d.ts +4 -0
  1404. package/transitions/transition/index.js +15 -0
  1405. package/transitions/transition/styled-component.d.ts +1 -0
  1406. package/transitions/transition/styled-component.js +27 -0
  1407. package/transitions/transition/transition.d.ts +7 -0
  1408. package/transitions/transition/transition.js +36 -0
  1409. package/transitions/transition/transitionGroup.d.ts +4 -0
  1410. package/transitions/transition/transitionGroup.js +13 -0
  1411. package/transitions/transition/types.d.ts +40 -0
  1412. package/transitions/transition/types.js +2 -0
  1413. package/truncateWithTooltip/TruncateWithTooltip.d.ts +4 -0
  1414. package/truncateWithTooltip/TruncateWithTooltip.js +22 -0
  1415. package/truncateWithTooltip/hooks/useTruncateWithTooltip.d.ts +7 -0
  1416. package/truncateWithTooltip/hooks/useTruncateWithTooltip.js +30 -0
  1417. package/truncateWithTooltip/index.d.ts +2 -0
  1418. package/truncateWithTooltip/index.js +8 -0
  1419. package/truncateWithTooltip/package.json +4 -0
  1420. package/truncateWithTooltip/types.d.ts +20 -0
  1421. package/truncateWithTooltip/types.js +2 -0
  1422. package/tsconfig.tsbuildinfo +1 -1
  1423. package/types.d.ts +2 -5
  1424. package/typography/Typography.d.ts +6 -0
  1425. package/typography/Typography.js +7 -2
  1426. package/typography/types.d.ts +7 -1
  1427. package/utils/intlNumberFormatUtils/index.js +3 -1
  1428. package/video/Video.js +3 -2
  1429. package/video/types.d.ts +1 -0
  1430. package/date-input/Before.d.ts +0 -19
  1431. package/date-input/Before.js +0 -27
  1432. package/date-input/CalendarIconButton.d.ts +0 -3
  1433. package/date-input/CalendarIconButton.js +0 -16
  1434. package/esm/date-input/Before.d.ts +0 -19
  1435. package/esm/date-input/Before.js +0 -23
  1436. package/esm/date-input/CalendarIconButton.d.ts +0 -3
  1437. package/esm/date-input/CalendarIconButton.js +0 -12
  1438. package/esm/helpers/baseui/useConvertOverrides.d.ts +0 -15
  1439. package/esm/helpers/baseui/useConvertOverrides.js +0 -35
  1440. package/esm/helpers/baseui/withThemeOverride.d.ts +0 -9
  1441. package/esm/helpers/baseui/withThemeOverride.js +0 -21
  1442. package/esm/style/__mocks__/CSS.mock.d.ts +0 -10
  1443. package/esm/style/__mocks__/CSS.mock.js +0 -9
  1444. package/esm/style/__mocks__/UseStyle.mock.d.ts +0 -10
  1445. package/esm/style/__mocks__/UseStyle.mock.js +0 -8
  1446. package/esm/themes/dark-theme.d.ts +0 -6
  1447. package/esm/themes/dark-theme.js +0 -9
  1448. package/esm/themes/index.d.ts +0 -10
  1449. package/esm/themes/index.js +0 -18
  1450. package/esm/themes/light-theme.d.ts +0 -6
  1451. package/esm/themes/light-theme.js +0 -9
  1452. package/esm/themes/responsive-theme.d.ts +0 -20
  1453. package/esm/themes/responsive-theme.js +0 -19
  1454. package/esm/themes/shared.d.ts +0 -4
  1455. package/esm/themes/shared.js +0 -4
  1456. package/helpers/baseui/useConvertOverrides.d.ts +0 -15
  1457. package/helpers/baseui/useConvertOverrides.js +0 -40
  1458. package/helpers/baseui/withThemeOverride.d.ts +0 -9
  1459. package/helpers/baseui/withThemeOverride.js +0 -23
  1460. package/style/__mocks__/CSS.mock.d.ts +0 -10
  1461. package/style/__mocks__/CSS.mock.js +0 -11
  1462. package/style/__mocks__/UseStyle.mock.d.ts +0 -10
  1463. package/style/__mocks__/UseStyle.mock.js +0 -11
  1464. package/themes/dark-theme.d.ts +0 -6
  1465. package/themes/dark-theme.js +0 -12
  1466. package/themes/index.d.ts +0 -10
  1467. package/themes/index.js +0 -23
  1468. package/themes/light-theme.d.ts +0 -6
  1469. package/themes/light-theme.js +0 -12
  1470. package/themes/package.json +0 -4
  1471. package/themes/responsive-theme.d.ts +0 -20
  1472. package/themes/responsive-theme.js +0 -23
  1473. package/themes/shared.d.ts +0 -4
  1474. package/themes/shared.js +0 -7
@@ -0,0 +1,845 @@
1
+ import { __assign, __extends, __read, __rest, __spreadArray } from "tslib";
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ /*
4
+ Copyright (c) Uber Technologies, Inc.
5
+
6
+ This source code is licensed under the MIT license found in the
7
+ LICENSE file in the root directory of this source tree.
8
+ */
9
+ import * as React from 'react';
10
+ import memoizeOne from 'memoize-one';
11
+ import { getOverrides, mergeOverrides } from '../helpers/overrides';
12
+ import { LocaleContext } from '../locale';
13
+ import { Popover, PLACEMENT, ACCESSIBILITY_TYPE } from '../popover';
14
+ import { UIDConsumer } from 'react-uid';
15
+ import AutosizeInput from './autosize-input';
16
+ import { TYPE, STATE_CHANGE_TYPE, SIZE, SELECT_ALL_ID } from './constants';
17
+ import defaultProps from './default-props';
18
+ import SelectDropdown from './dropdown';
19
+ import { StyledRoot, StyledControlContainer, StyledPlaceholder, StyledValueContainer, StyledInputContainer, StyledIconsContainer, StyledSearchIconContainer, } from './styled-components';
20
+ import { expandValue, normalizeOptions } from './utils';
21
+ import { isServer } from '../../spacewebProvider';
22
+ import locale from './locale';
23
+ import { omit$props } from '../../helpers';
24
+ var __DEV__ = process.env.NODE_ENV !== 'production';
25
+ function Noop() {
26
+ return null;
27
+ }
28
+ var isClick = function (event) { return event.type === 'click'; };
29
+ var isLeftClick = function (event) { return event.button !== null && event.button !== undefined && event.button === 0; };
30
+ var containsNode = function (parent, child) {
31
+ if (!isServer) {
32
+ return child && parent && parent.contains(child);
33
+ }
34
+ return undefined;
35
+ };
36
+ export function isInteractive(rootTarget, rootElement) {
37
+ if (rootTarget instanceof Element) {
38
+ var target = rootTarget;
39
+ while (target && target !== rootElement) {
40
+ var role = target.getAttribute('role');
41
+ if (role === 'button' || role === 'link') {
42
+ return true;
43
+ }
44
+ if (target.tagName)
45
+ target = target.parentElement;
46
+ }
47
+ }
48
+ return false;
49
+ }
50
+ var Select = /** @class */ (function (_super) {
51
+ __extends(Select, _super);
52
+ function Select() {
53
+ var _this = _super !== null && _super.apply(this, arguments) || this;
54
+ // anchor is a ref that refers to the outermost element rendered when the dropdown menu is not
55
+ // open. This is required so that we can check if clicks are on/off the anchor element.
56
+ _this.anchor = React.createRef();
57
+ // dropdown is a ref that refers to the popover element. This is required so that we can check if
58
+ // clicks are on/off the dropdown element.
59
+ _this.dropdown = React.createRef();
60
+ // the select components can accept an array of options or an object where properties are optgroups
61
+ // and values are arrays of options. this class property is constructed and updated in a normalized
62
+ // shape where optgroup titles are stored on the option in the __optgroup field.
63
+ _this.options = [];
64
+ _this.state = {
65
+ activeDescendant: null,
66
+ inputValue: '',
67
+ isFocused: false,
68
+ isOpen: _this.props.startOpen || false,
69
+ isPseudoFocused: false,
70
+ };
71
+ _this.isItMounted = false;
72
+ // Handle touch outside on mobile to dismiss menu, ensures that the
73
+ // touch target is not within the anchor DOM node.
74
+ _this.handleTouchOutside = function (event) {
75
+ if (containsNode(_this.dropdown.current, event.target))
76
+ return;
77
+ if (!containsNode(_this.anchor.current, event.target)) {
78
+ _this.closeMenu();
79
+ }
80
+ };
81
+ // Track dragging state to filter false-positive actions where a user
82
+ // intends to drag/scroll the page.
83
+ _this.handleTouchMove = function () {
84
+ _this.dragging = true;
85
+ // to tackle arrow-function-should-not-return-assignment
86
+ return true;
87
+ };
88
+ _this.handleTouchStart = function () {
89
+ _this.dragging = false;
90
+ // to tackle arrow-function-should-not-return-assignment
91
+ return true;
92
+ };
93
+ _this.handleTouchEnd = function (event) {
94
+ if (_this.dragging)
95
+ return;
96
+ _this.handleClick(event);
97
+ };
98
+ _this.handleClick = function (event) {
99
+ if (_this.props.disabled || (!isClick(event) && !isLeftClick(event))) {
100
+ return;
101
+ }
102
+ // Case comes up when text has been typed into the input field. If no text provided,
103
+ // the 'input' element will have essentially 0 width therefore will not be clickable.
104
+ // When click outside does not reset input, text provided will stay rendered after clicks away
105
+ // from the select component. Upon subsequent clicks on the provided text, open the dropdown
106
+ // menu, in addition to text edit operations.
107
+ if (event.target === _this.input) {
108
+ // CHASE: not sure why this condition is here. I cannot replicate a situation where clicks
109
+ // on provided text break into here.
110
+ if (!_this.state.isFocused) {
111
+ _this.openAfterFocus = _this.props.openOnClick || false;
112
+ _this.focus();
113
+ }
114
+ if (!_this.state.isOpen) {
115
+ _this.setState({
116
+ isOpen: true,
117
+ isFocused: true,
118
+ isPseudoFocused: false,
119
+ });
120
+ }
121
+ return;
122
+ }
123
+ // Ensures that interactive elements within the Select component do not trigger the outer click
124
+ // handler. For example, after an option is selected clicks on the 'clear' icon call here. We
125
+ // should ignore those events. This comes after case where click is on input element, so that
126
+ // those are handled on their own.
127
+ if (_this.input && isInteractive(event.target, _this.input)) {
128
+ return;
129
+ }
130
+ // For the simple case where clicking on the Select does not allow for providing
131
+ // text input to filter the dropdown options.
132
+ if (!_this.props.searchable) {
133
+ _this.focus();
134
+ if (_this.state.isOpen) {
135
+ _this.setState({ isOpen: false, isFocused: false });
136
+ }
137
+ else {
138
+ _this.setState({ isOpen: true, isFocused: true });
139
+ }
140
+ return;
141
+ }
142
+ // Cases below only apply to searchable Select component.
143
+ if (_this.state.isFocused) {
144
+ // iOS ignores programmatic calls to input.focus() that were not triggered by a click event.
145
+ // This component can get into a state where isFocused is true, but the DOM node is not
146
+ // focused. Call focus here again to ensure.
147
+ _this.focus();
148
+ // Case comes up when click outside does not reset input - once text has been provided to
149
+ // the input, and the user closes the dropdown menu the provided text is maintained. After
150
+ // this, if the user focuses back into the select component then clicks on the component,
151
+ // the provided text highlights rather than position's the cursor at the end of the input.
152
+ if (_this.input)
153
+ _this.input.value = '';
154
+ _this.setState(function (prev) { return ({
155
+ isOpen: !_this.focusAfterClear && !prev.isOpen,
156
+ isPseudoFocused: false,
157
+ }); });
158
+ _this.focusAfterClear = false;
159
+ }
160
+ else {
161
+ // When clear button is clicked, need to click twice to open control container - https://github.com/uber/baseweb/issues/4285
162
+ // Setting focusAfterClear to false, resolves the issue
163
+ _this.focusAfterClear = false;
164
+ _this.openAfterFocus = _this.props.openOnClick || false;
165
+ _this.focus();
166
+ }
167
+ };
168
+ _this.handleInputFocus = function (event) {
169
+ if (_this.props.disabled)
170
+ return;
171
+ if (_this.props.onFocus)
172
+ _this.props.onFocus(event);
173
+ var toOpen = _this.state.isOpen || _this.openAfterFocus;
174
+ // if focus happens after clear values, don't open dropdown yet.
175
+ toOpen = !_this.focusAfterClear && toOpen;
176
+ _this.setState({
177
+ isFocused: true,
178
+ isOpen: !!toOpen,
179
+ });
180
+ _this.focusAfterClear = false;
181
+ _this.openAfterFocus = false;
182
+ };
183
+ _this.handleBlur = function (event) {
184
+ if (event.relatedTarget) {
185
+ if (containsNode(_this.anchor.current, event.relatedTarget) ||
186
+ containsNode(_this.dropdown.current, event.relatedTarget)) {
187
+ return;
188
+ }
189
+ }
190
+ else if (containsNode(_this.anchor.current, event.target)) {
191
+ return;
192
+ }
193
+ if (_this.props.onBlur) {
194
+ _this.props.onBlur(event);
195
+ }
196
+ if (_this.isItMounted) {
197
+ _this.setState({
198
+ isFocused: false,
199
+ isOpen: false,
200
+ isPseudoFocused: false,
201
+ inputValue: _this.props.onBlurResetsInput ? '' : _this.state.inputValue,
202
+ });
203
+ }
204
+ };
205
+ _this.handleClickOutside = function (event) {
206
+ if (_this.justSelected) {
207
+ _this.justSelected = false;
208
+ return;
209
+ }
210
+ if (containsNode(_this.dropdown.current, event.target))
211
+ return;
212
+ var isFocused = _this.state.isFocused || _this.state.isPseudoFocused;
213
+ if (isFocused && !containsNode(_this.anchor.current, event.target)) {
214
+ _this.handleBlur(event);
215
+ }
216
+ };
217
+ _this.handleInputChange = function (event) {
218
+ var newInputValue = event.target.value;
219
+ _this.setState({
220
+ inputValue: newInputValue,
221
+ isOpen: true,
222
+ isPseudoFocused: false,
223
+ });
224
+ if (_this.props.onInputChange) {
225
+ _this.props.onInputChange(event);
226
+ }
227
+ };
228
+ _this.handleKeyDown = function (event) {
229
+ if (_this.props.disabled)
230
+ return;
231
+ switch (event.key) {
232
+ case 'Backspace': // 8
233
+ if (!_this.state.inputValue && _this.props.backspaceRemoves) {
234
+ event.preventDefault();
235
+ _this.backspaceValue();
236
+ }
237
+ break;
238
+ case 'Tab': // 9
239
+ _this.setState(function (prevState) { return ({
240
+ isPseudoFocused: false,
241
+ isFocused: false,
242
+ isOpen: false,
243
+ inputValue: !_this.props.onCloseResetsInput || !_this.props.onBlurResetsInput ? prevState.inputValue : '',
244
+ }); });
245
+ break;
246
+ case 'Escape': // 27
247
+ if (!_this.state.isOpen && _this.props.clearable && _this.props.escapeClearsValue) {
248
+ _this.clearValue(event);
249
+ _this.setState({ isFocused: false, isPseudoFocused: false });
250
+ }
251
+ break;
252
+ case ' ': // space 32
253
+ if (_this.props.searchable) {
254
+ break;
255
+ }
256
+ event.preventDefault();
257
+ if (!_this.state.isOpen) {
258
+ _this.setState({ isOpen: true });
259
+ }
260
+ break;
261
+ case 'ArrowUp': // 38
262
+ event.preventDefault();
263
+ if (!_this.state.isOpen) {
264
+ _this.setState({ isOpen: true });
265
+ }
266
+ break;
267
+ case 'ArrowDown': // 40
268
+ event.preventDefault();
269
+ if (!_this.state.isOpen) {
270
+ _this.setState({ isOpen: true });
271
+ }
272
+ break;
273
+ case 'PageUp': // 33
274
+ event.preventDefault();
275
+ if (!_this.state.isOpen) {
276
+ _this.setState({ isOpen: true });
277
+ }
278
+ break;
279
+ case 'PageDown': // 34
280
+ event.preventDefault();
281
+ if (!_this.state.isOpen) {
282
+ _this.setState({ isOpen: true });
283
+ }
284
+ break;
285
+ case 'End': // 35
286
+ if (event.shiftKey) {
287
+ break;
288
+ }
289
+ event.preventDefault();
290
+ if (!_this.state.isOpen) {
291
+ _this.setState({ isOpen: true });
292
+ }
293
+ break;
294
+ case 'Home': // 36
295
+ if (event.shiftKey) {
296
+ break;
297
+ }
298
+ event.preventDefault();
299
+ if (!_this.state.isOpen) {
300
+ _this.setState({ isOpen: true });
301
+ }
302
+ break;
303
+ case 'Delete': // 46
304
+ if (!_this.state.inputValue && _this.props.deleteRemoves) {
305
+ event.preventDefault();
306
+ _this.popValue();
307
+ }
308
+ break;
309
+ default:
310
+ break;
311
+ }
312
+ };
313
+ _this.getOptionLabel = function (locale, _a) {
314
+ var option = _a.option;
315
+ return option.isCreatable
316
+ ? "".concat(locale.select.create, " \u201C").concat(_this.props.labelKey && option[_this.props.labelKey], "\u201D")
317
+ : _this.props.labelKey && option[_this.props.labelKey];
318
+ };
319
+ _this.getValueLabel = function (_a) {
320
+ var option = _a.option;
321
+ return _this.props.labelKey && option[_this.props.labelKey];
322
+ };
323
+ _this.handleActiveDescendantChange = function (id) {
324
+ if (id) {
325
+ _this.setState({ activeDescendant: id });
326
+ }
327
+ else {
328
+ _this.setState({ activeDescendant: null });
329
+ }
330
+ };
331
+ _this.handleInputRef = function (input) {
332
+ _this.input = input;
333
+ if (typeof _this.props.inputRef === 'function') {
334
+ _this.props.inputRef(input);
335
+ }
336
+ else if (_this.props.inputRef) {
337
+ // @ts-expect-error todo(flow->ts) MutableRefObject
338
+ _this.props.inputRef.current = input;
339
+ }
340
+ if (_this.props.controlRef && typeof _this.props.controlRef === 'function') {
341
+ // @ts-expect-error todo(flow->ts) according to types this code is not reachable
342
+ _this.props.controlRef(input);
343
+ }
344
+ };
345
+ _this.selectValue = function (_a) {
346
+ var item = _a.item;
347
+ if (item.disabled) {
348
+ return;
349
+ }
350
+ _this.justSelected = true;
351
+ // NOTE: we add/set the value in a callback to make sure the
352
+ // input value is empty to avoid styling issues in Chrome
353
+ var updatedValue = _this.props.onSelectResetsInput ? '' : _this.state.inputValue;
354
+ if (_this.props.multi) {
355
+ if (item[SELECT_ALL_ID]) {
356
+ var filteredOptionsWithoutSelectAllAndCreate_1 = _this.options.filter(function (val) { return !val[SELECT_ALL_ID] && !(val === null || val === void 0 ? void 0 : val.isCreatable) && !val.disabled; });
357
+ _this.setState({
358
+ inputValue: updatedValue,
359
+ isOpen: !_this.props.closeOnSelect,
360
+ }, function () {
361
+ var valueArray = _this.props.value || [];
362
+ var valueKey = _this.props.valueKey;
363
+ var selectedValueSet = new Set(valueArray === null || valueArray === void 0 ? void 0 : valueArray.map(function (val) { return val[valueKey]; }));
364
+ var selectAllChecked = _this.props.__selectAllShouldReturnAllOptions
365
+ ? _this.props.__selectAllSelected
366
+ : _this.getMemoizedSelectAllChecked(valueArray, filteredOptionsWithoutSelectAllAndCreate_1);
367
+ if (_this.props.__selectAllShouldReturnAllOptions) {
368
+ if (selectAllChecked) {
369
+ _this.setValue([], undefined, STATE_CHANGE_TYPE.clear);
370
+ }
371
+ else {
372
+ _this.setValue([], undefined, STATE_CHANGE_TYPE.selectAll);
373
+ }
374
+ }
375
+ else if (selectAllChecked) {
376
+ var optionsIdSet_1 = new Set(filteredOptionsWithoutSelectAllAndCreate_1 === null || filteredOptionsWithoutSelectAllAndCreate_1 === void 0 ? void 0 : filteredOptionsWithoutSelectAllAndCreate_1.map(function (val) { return val[valueKey]; }));
377
+ _this.setValue(valueArray === null || valueArray === void 0 ? void 0 : valueArray.filter(function (val) { return !optionsIdSet_1.has(val[valueKey]); }), undefined, STATE_CHANGE_TYPE.selectAll);
378
+ }
379
+ else {
380
+ var newValuesToAdd = filteredOptionsWithoutSelectAllAndCreate_1.filter(function (val) { return !selectedValueSet.has(val[valueKey]); });
381
+ _this.setValue(valueArray === null || valueArray === void 0 ? void 0 : valueArray.concat(newValuesToAdd), undefined, STATE_CHANGE_TYPE.selectAll);
382
+ }
383
+ });
384
+ }
385
+ else {
386
+ _this.setState({
387
+ inputValue: updatedValue,
388
+ isOpen: !_this.props.closeOnSelect,
389
+ }, function () {
390
+ var valueArray = _this.props.value || [];
391
+ if (valueArray.some(function (i) { return _this.props.valueKey && i[_this.props.valueKey] === item[_this.props.valueKey]; })) {
392
+ _this.removeValue(item);
393
+ }
394
+ else {
395
+ _this.addValue(item);
396
+ }
397
+ });
398
+ }
399
+ }
400
+ else {
401
+ _this.focus();
402
+ _this.setState({
403
+ inputValue: updatedValue,
404
+ isOpen: !_this.props.closeOnSelect,
405
+ isFocused: true,
406
+ isPseudoFocused: false,
407
+ }, function () {
408
+ _this.setValue([item], item, STATE_CHANGE_TYPE.select);
409
+ });
410
+ }
411
+ };
412
+ _this.addValue = function (item) {
413
+ var valueArray = __spreadArray([], __read((_this.props.value || [])), false);
414
+ _this.setValue(valueArray.concat(item), item, STATE_CHANGE_TYPE.select);
415
+ };
416
+ _this.backspaceValue = function () {
417
+ var _a;
418
+ var item = _this.popValue();
419
+ if (!item) {
420
+ return;
421
+ }
422
+ var valueLength = ((_a = _this.props.value) === null || _a === void 0 ? void 0 : _a.length) || 0;
423
+ var renderLabel = _this.props.getValueLabel || _this.getValueLabel;
424
+ var labelForInput = renderLabel({ option: item, index: valueLength - 1 });
425
+ // label might not be a string, it might be a Node of another kind.
426
+ if (!_this.props.backspaceClearsInputValue && typeof labelForInput === 'string') {
427
+ var remainingInput = labelForInput.slice(0, -1);
428
+ _this.setState({
429
+ inputValue: remainingInput,
430
+ isOpen: true,
431
+ });
432
+ }
433
+ };
434
+ _this.popValue = function () {
435
+ var valueArray = __spreadArray([], __read((_this.props.value || [])), false);
436
+ var valueLength = valueArray.length;
437
+ if (!valueLength)
438
+ return;
439
+ if (valueArray[valueLength - 1].clearableValue === false)
440
+ return;
441
+ var item = valueArray.pop();
442
+ _this.setValue(valueArray, item, STATE_CHANGE_TYPE.remove);
443
+ return item;
444
+ };
445
+ _this.removeValue = function (item) {
446
+ var valueArray = __spreadArray([], __read((_this.props.value || [])), false);
447
+ var valueArrayFiltered = !Array.isArray(item)
448
+ ? valueArray.filter(function (i) { return _this.props.valueKey && i[_this.props.valueKey] !== item[_this.props.valueKey]; })
449
+ : valueArray.filter(function (i) { return !item.some(function (itemObj) { return _this.props.valueKey && itemObj[_this.props.valueKey] === i[_this.props.valueKey]; }); });
450
+ _this.setValue(valueArrayFiltered, item, STATE_CHANGE_TYPE.remove);
451
+ _this.focus();
452
+ };
453
+ _this.clearValue = function (event) {
454
+ if (isClick(event) && !isLeftClick(event))
455
+ return;
456
+ if (_this.props.value) {
457
+ var resetValue = _this.props.value.filter(function (item) { return item.clearableValue === false; });
458
+ _this.setValue(resetValue, null, STATE_CHANGE_TYPE.clear);
459
+ }
460
+ _this.setState({
461
+ inputValue: '',
462
+ isOpen: false,
463
+ });
464
+ _this.focus();
465
+ _this.focusAfterClear = true;
466
+ };
467
+ _this.shouldShowPlaceholder = function () { return !(_this.state.inputValue || (_this.props.value && _this.props.value.length)); };
468
+ _this.shouldShowValue = function () { return !_this.state.inputValue; };
469
+ _this.isSelectAllChecked = function (valueArray, filteredOptions) {
470
+ var filteredOptionsWithoutSelectAll = filteredOptions.filter(function (val) { return !val[SELECT_ALL_ID] && !(val === null || val === void 0 ? void 0 : val.isCreatable) && !val.disabled; });
471
+ var selectedValueSet = new Set(valueArray.map(function (val) { return val[_this.props.valueKey]; }));
472
+ return filteredOptionsWithoutSelectAll.every(function (val) { return selectedValueSet.has(val[_this.props.valueKey]); });
473
+ };
474
+ _this.getMemoizedSelectAllChecked = memoizeOne(function (valueArray, filteredOptions) {
475
+ return _this.isSelectAllChecked(valueArray, filteredOptions);
476
+ });
477
+ _this.getMemoizedNormalizedOptions = memoizeOne(function (options) { return normalizeOptions(options); });
478
+ return _this;
479
+ }
480
+ Select.prototype.componentDidMount = function () {
481
+ if (this.props.autoFocus) {
482
+ this.focus();
483
+ }
484
+ this.isItMounted = true;
485
+ var controlRef = this.props.controlRef;
486
+ if (controlRef && typeof controlRef !== 'function') {
487
+ controlRef.current = {
488
+ setDropdownOpen: this.handleDropdownOpen.bind(this),
489
+ setInputValue: this.handleSetInputValue.bind(this),
490
+ setInputFocus: this.handleSetInputFocus.bind(this),
491
+ setInputBlur: this.handleSetInputBlur.bind(this),
492
+ // `focus` & `blur` below are for backwards compatibility and may be removed. Use setInputFocus and setInputBlur instead.
493
+ focus: this.handleSetInputFocus.bind(this),
494
+ blur: this.handleSetInputBlur.bind(this),
495
+ };
496
+ }
497
+ };
498
+ Select.prototype.componentDidUpdate = function (prevProps, prevState) {
499
+ var _this = this;
500
+ if (!isServer) {
501
+ if (prevState.isOpen !== this.state.isOpen) {
502
+ if (this.state.isOpen) {
503
+ this.props.onOpen && this.props.onOpen();
504
+ document.addEventListener('touchstart', this.handleTouchOutside);
505
+ }
506
+ else {
507
+ this.props.onClose && this.props.onClose();
508
+ document.removeEventListener('touchstart', this.handleTouchOutside);
509
+ }
510
+ }
511
+ if (!prevState.isFocused && this.state.isFocused) {
512
+ setTimeout(function () { return document.addEventListener('click', _this.handleClickOutside); }, 0);
513
+ }
514
+ }
515
+ };
516
+ Select.prototype.componentWillUnmount = function () {
517
+ if (!isServer) {
518
+ document.removeEventListener('touchstart', this.handleTouchOutside);
519
+ document.removeEventListener('click', this.handleClickOutside);
520
+ }
521
+ this.isItMounted = false;
522
+ };
523
+ Select.prototype.focus = function () {
524
+ if (!this.input)
525
+ return;
526
+ this.input.focus();
527
+ };
528
+ Select.prototype.handleDropdownOpen = function (nextOpenState) {
529
+ this.setState({
530
+ isOpen: nextOpenState,
531
+ });
532
+ };
533
+ Select.prototype.handleSetInputValue = function (newInputValue) {
534
+ this.setState({
535
+ inputValue: newInputValue,
536
+ });
537
+ };
538
+ Select.prototype.handleSetInputFocus = function () {
539
+ var _a;
540
+ (_a = this.input) === null || _a === void 0 ? void 0 : _a.focus();
541
+ };
542
+ Select.prototype.handleSetInputBlur = function () {
543
+ var _a;
544
+ (_a = this.input) === null || _a === void 0 ? void 0 : _a.blur();
545
+ };
546
+ Select.prototype.closeMenu = function () {
547
+ if (this.props.onCloseResetsInput) {
548
+ this.setState({
549
+ inputValue: '',
550
+ isOpen: false,
551
+ isPseudoFocused: this.state.isFocused && !this.props.multi,
552
+ });
553
+ }
554
+ else {
555
+ this.setState({
556
+ isOpen: false,
557
+ isPseudoFocused: this.state.isFocused && !this.props.multi,
558
+ });
559
+ }
560
+ };
561
+ /**
562
+ * Extends the value into an array from the given options
563
+ */
564
+ Select.prototype.getValueArray = function (value) {
565
+ var _this = this;
566
+ if (!Array.isArray(value)) {
567
+ if (value === null || value === undefined)
568
+ return [];
569
+ value = [value];
570
+ }
571
+ return value.map(function (value) { return expandValue(value, _this.props); });
572
+ };
573
+ Select.prototype.setValue = function (value, option, type) {
574
+ if (this.props.onChange) {
575
+ this.props.onChange({
576
+ value: value,
577
+ option: option,
578
+ type: type,
579
+ });
580
+ }
581
+ };
582
+ Select.prototype.renderLoading = function () {
583
+ if (!this.props.isLoading)
584
+ return;
585
+ var _a = this.props.overrides, overrides = _a === void 0 ? {} : _a;
586
+ var _b = __read(getOverrides(overrides.LoadingIndicator, function () { return null; }), 2), LoadingIndicator = _b[0], loadingIndicatorProps = _b[1];
587
+ return (_jsx(LoadingIndicator, __assign({ role: "status" }, loadingIndicatorProps, { children: _jsx("span", __assign({ style: {
588
+ position: 'absolute',
589
+ width: '1px',
590
+ height: '1px',
591
+ padding: 0,
592
+ margin: '-1px',
593
+ overflow: 'hidden',
594
+ clip: 'rect(0,0,0,0)',
595
+ whiteSpace: 'nowrap',
596
+ border: 0,
597
+ } }, { children: "Loading" }), void 0) }), void 0));
598
+ };
599
+ Select.prototype.renderValue = function (valueArray) {
600
+ var _this = this;
601
+ var _a = this.props.overrides, overrides = _a === void 0 ? {} : _a;
602
+ var sharedProps = this.getSharedProps();
603
+ var renderLabel = this.props.getValueLabel || this.getValueLabel;
604
+ var Value = this.props.valueComponent || Noop;
605
+ if (!valueArray.length) {
606
+ return null;
607
+ }
608
+ if (this.props.multi) {
609
+ return valueArray.map(function (value, i) {
610
+ var disabled = sharedProps.$disabled || value.clearableValue === false;
611
+ return (_jsx(Value, __assign({ value: value, removeValue: function () { return _this.removeValue(value); }, disabled: disabled, overrides: { Tag: overrides.Tag, MultiValue: overrides.MultiValue } }, sharedProps, { "$disabled": disabled }, { children: renderLabel({ option: value, index: i }) }), "value-".concat(i, "-").concat(_this.props.valueKey && value[_this.props.valueKey])));
612
+ });
613
+ }
614
+ if (this.shouldShowValue()) {
615
+ return (_jsx(Value, __assign({ value: this.props.valueKey && valueArray[0][this.props.valueKey], disabled: this.props.disabled, overrides: { SingleValue: overrides.SingleValue } }, sharedProps, { children: renderLabel({ option: valueArray[0] }) }), void 0));
616
+ }
617
+ return null;
618
+ };
619
+ Select.prototype.renderInput = function (listboxId) {
620
+ var _this = this;
621
+ var _a;
622
+ var _b = this.props.overrides, overrides = _b === void 0 ? {} : _b;
623
+ var _c = __read(getOverrides(overrides.InputContainer, StyledInputContainer), 2), InputContainer = _c[0], inputContainerProps = _c[1];
624
+ var sharedProps = this.getSharedProps();
625
+ var isOpen = this.state.isOpen;
626
+ var selected = this.getValueArray(this.props.value || [])
627
+ .map(function (v) { return _this.props.labelKey && v[_this.props.labelKey]; })
628
+ .join(', ');
629
+ var selectedLabel = selected.length ? "Selected ".concat(selected, ". ") : '';
630
+ var label = "".concat(selectedLabel).concat(this.props['aria-label'] || '');
631
+ if (!this.props.searchable) {
632
+ return (_jsx(InputContainer, __assign({ "aria-activedescendant": this.state.activeDescendant, "aria-describedby": this.props['aria-describedby'], "aria-errormessage": this.props['aria-errormessage'], "aria-disabled": this.props.disabled, "aria-labelledby": this.props['aria-labelledby'], "aria-owns": this.state.isOpen ? listboxId : null, "aria-required": this.props.required || null, onFocus: this.handleInputFocus, tabIndex: 0 }, sharedProps, inputContainerProps, { children: _jsx("input", __assign({ "aria-hidden": true, id: this.props.id || undefined, ref: this.handleInputRef, style: {
633
+ opacity: 0,
634
+ width: 0,
635
+ overflow: 'hidden',
636
+ border: 'none',
637
+ padding: 0,
638
+ }, tabIndex: -1 }, (overrides.Input
639
+ ? overrides.Input.props
640
+ ? // $FlowExpectedError[not-an-object]
641
+ // @ts-ignore
642
+ omit$props(overrides.Input.props)
643
+ : {}
644
+ : {})), void 0) }), void 0));
645
+ }
646
+ return (_jsx(InputContainer, __assign({}, sharedProps, inputContainerProps, { children: _jsx(AutosizeInput, __assign({ "aria-activedescendant": this.state.activeDescendant, "aria-autocomplete": "list", "aria-controls": this.state.isOpen ? listboxId : null, "aria-describedby": this.props['aria-describedby'], "aria-errormessage": this.props['aria-errormessage'], "aria-disabled": this.props.disabled || null, "aria-expanded": isOpen, "aria-haspopup": "listbox", "aria-label": label, "aria-labelledby": this.props['aria-labelledby'], "aria-required": this.props.required || null, disabled: this.props.disabled || null, id: this.props.id || null, inputRef: this.handleInputRef, onChange: this.handleInputChange, onFocus: this.handleInputFocus, overrides: { Input: overrides.Input }, required: (this.props.required && !((_a = this.props.value) === null || _a === void 0 ? void 0 : _a.length)) || null, role: "combobox", value: this.state.inputValue, tabIndex: 0 }, sharedProps), void 0) }), void 0));
647
+ };
648
+ Select.prototype.renderClear = function () {
649
+ var _a;
650
+ var isValueEntered = Boolean((this.props.value && this.props.value.length) || this.state.inputValue);
651
+ if (!this.props.clearable || this.props.disabled || this.props.isLoading || !isValueEntered) {
652
+ return null;
653
+ }
654
+ var _b = this.getSharedProps(), $size = _b.$size, sharedProps = __rest(_b, ["$size"]);
655
+ var _c = this.props.overrides, overrides = _c === void 0 ? {} : _c;
656
+ var _d = __read(getOverrides(overrides.ClearIcon, function () { return null; }), 2), ClearIcon = _d[0], clearIconProps = _d[1];
657
+ var ariaLabel = this.props.multi ? 'Clear all' : 'Clear value';
658
+ var sizes = (_a = {},
659
+ _a[SIZE.mini] = 15,
660
+ _a[SIZE.compact] = 15,
661
+ _a[SIZE.default] = 18,
662
+ _a[SIZE.large] = 22,
663
+ _a);
664
+ return (_jsx(ClearIcon, __assign({ title: ariaLabel, "aria-label": ariaLabel, onClick: this.clearValue, role: "button", size: sizes[this.props.size] || sizes[SIZE.default] }, sharedProps, clearIconProps), void 0));
665
+ };
666
+ Select.prototype.renderArrow = function () {
667
+ var _a;
668
+ if (this.props.type !== TYPE.select) {
669
+ return null;
670
+ }
671
+ var _b = this.getSharedProps(), $size = _b.$size, sharedProps = __rest(_b, ["$size"]);
672
+ var _c = this.props.overrides, overrides = _c === void 0 ? {} : _c;
673
+ var _d = __read(getOverrides(overrides.SelectArrow, function () { return null; }), 2), SelectArrow = _d[0], selectArrowProps = _d[1];
674
+ selectArrowProps.overrides = mergeOverrides({
675
+ Svg: {
676
+ style: function (_a) {
677
+ var $theme = _a.$theme, $disabled = _a.$disabled;
678
+ return ({
679
+ color: $disabled ? $theme.colors.inputTextDisabled : $theme.colors.contentPrimary,
680
+ });
681
+ },
682
+ },
683
+ }, selectArrowProps.overrides);
684
+ var sizes = (_a = {},
685
+ _a[SIZE.mini] = 16,
686
+ _a[SIZE.compact] = 16,
687
+ _a[SIZE.default] = 20,
688
+ _a[SIZE.large] = 24,
689
+ _a);
690
+ return (_jsx(SelectArrow, __assign({ size: (this.props.size && sizes[this.props.size]) || sizes[SIZE.default], title: "open" }, sharedProps, selectArrowProps), void 0));
691
+ };
692
+ Select.prototype.renderSearch = function () {
693
+ if (this.props.type !== TYPE.search) {
694
+ return null;
695
+ }
696
+ var _a = this.props.overrides, overrides = _a === void 0 ? {} : _a;
697
+ var _b = __read(getOverrides(overrides.SearchIconContainer, StyledSearchIconContainer), 2), SearchIconContainer = _b[0], searchIconContainerProps = _b[1];
698
+ var _c = __read(getOverrides(overrides.SearchIcon, function () { return null; }), 2), SearchIcon = _c[0], searchIconProps = _c[1];
699
+ var sharedProps = this.getSharedProps();
700
+ return (_jsx(SearchIconContainer, __assign({}, sharedProps, searchIconContainerProps, { children: _jsx(SearchIcon, __assign({ size: 16, title: "search" }, sharedProps, searchIconProps), void 0) }), void 0));
701
+ };
702
+ Select.prototype.filterOptions = function (excludeOptions, filterValue, options) {
703
+ var _a, _b;
704
+ var _this = this;
705
+ if (filterValue === void 0) { filterValue = this.state.inputValue.trim(); }
706
+ if (options === void 0) { options = this.props.options; }
707
+ var filteredOptions = this.getMemoizedNormalizedOptions(options);
708
+ // apply filter function
709
+ if (this.props.filterOptions) {
710
+ filteredOptions = this.props.filterOptions(filteredOptions, filterValue, excludeOptions, {
711
+ valueKey: this.props.valueKey || '',
712
+ labelKey: this.props.labelKey || '',
713
+ });
714
+ }
715
+ if (this.props.multi) {
716
+ if (!this.props.hideSelectAll && filteredOptions.length > 0) {
717
+ filteredOptions = __spreadArray([
718
+ (_a = {},
719
+ _a[this.props.valueKey] = SELECT_ALL_ID,
720
+ _a[this.props.labelKey] = "".concat(locale.selectAllLabel, " ").concat(this.props.__selectAllShouldReturnAllOptions ? '' : "(".concat(filteredOptions.length, ")")),
721
+ _a[SELECT_ALL_ID] = true,
722
+ _a)
723
+ ], __read(filteredOptions), false);
724
+ }
725
+ }
726
+ // can user create a new option + there's no exact match already
727
+ var filterDoesNotMatchOption = this.props.ignoreCase
728
+ ? // @ts-ignore
729
+ function (// @ts-ignore
730
+ opt) { return opt[_this.props.labelKey].toLowerCase() !== filterValue.toLowerCase().trim(); }
731
+ : // @ts-ignore
732
+ function (// @ts-ignore
733
+ opt) { return opt[_this.props.labelKey] !== filterValue.trim(); };
734
+ if (filterValue &&
735
+ this.props.creatable &&
736
+ filteredOptions.concat(this.props.value || []).every(filterDoesNotMatchOption)) {
737
+ return filteredOptions.concat((_b = {
738
+ id: filterValue
739
+ },
740
+ _b[this.props.labelKey || ''] = filterValue,
741
+ _b[this.props.valueKey || ''] = filterValue,
742
+ _b.isCreatable = true,
743
+ _b));
744
+ }
745
+ return filteredOptions;
746
+ };
747
+ Select.prototype.getSharedProps = function () {
748
+ var _a = this.props, clearable = _a.clearable, creatable = _a.creatable, disabled = _a.disabled, error = _a.error, positive = _a.positive, isLoading = _a.isLoading, multi = _a.multi, required = _a.required, size = _a.size, searchable = _a.searchable, type = _a.type, value = _a.value;
749
+ var _b = this.state, isOpen = _b.isOpen, isFocused = _b.isFocused, isPseudoFocused = _b.isPseudoFocused;
750
+ return {
751
+ $clearable: clearable,
752
+ $creatable: creatable,
753
+ $disabled: disabled,
754
+ $error: error,
755
+ $positive: positive,
756
+ $isFocused: isFocused,
757
+ $isLoading: isLoading,
758
+ $isOpen: isOpen,
759
+ $isPseudoFocused: isPseudoFocused,
760
+ $multi: multi,
761
+ $required: required,
762
+ $searchable: searchable,
763
+ $size: size,
764
+ $type: type,
765
+ $isEmpty: !this.getValueArray(value || []).length,
766
+ };
767
+ };
768
+ Select.prototype.render = function () {
769
+ var _this = this;
770
+ var _a;
771
+ var _b = this.props, _c = _b.overrides, overrides = _c === void 0 ? {} : _c, type = _b.type, multi = _b.multi, noResultsMsg = _b.noResultsMsg, value = _b.value, filterOutSelected = _b.filterOutSelected, __selectAllSelected = _b.__selectAllSelected, __selectAllShouldReturnAllOptions = _b.__selectAllShouldReturnAllOptions;
772
+ if (__DEV__) {
773
+ // value may be nullish, only warn if value is defined
774
+ if (value && !Array.isArray(value)) {
775
+ console.warn('The Select component expects an array as the value prop. For more information, please visit the docs at https://baseweb.design/components/select/');
776
+ }
777
+ }
778
+ var _d = __read(getOverrides(overrides.Root, StyledRoot), 2), Root = _d[0], rootProps = _d[1];
779
+ var _e = __read(getOverrides(overrides.ControlContainer, StyledControlContainer), 2), ControlContainer = _e[0], controlContainerProps = _e[1];
780
+ var _f = __read(getOverrides(overrides.ValueContainer, StyledValueContainer), 2), ValueContainer = _f[0], valueContainerProps = _f[1];
781
+ var _g = __read(getOverrides(overrides.IconsContainer, StyledIconsContainer), 2), IconsContainer = _g[0], iconsContainerProps = _g[1];
782
+ var _h = __read(getOverrides(overrides.Popover, Popover), 2), PopoverOverride = _h[0], popoverProps = _h[1];
783
+ var _j = __read(getOverrides(overrides.Placeholder, StyledPlaceholder), 2), Placeholder = _j[0], placeholderProps = _j[1];
784
+ var sharedProps = this.getSharedProps();
785
+ var valueArray = this.getValueArray(value || []);
786
+ this.options = this.filterOptions(multi && filterOutSelected ? valueArray : null, (_a = this.props.__inputValue) !== null && _a !== void 0 ? _a : this.state.inputValue.trim(), this.props.options);
787
+ var options = this.options;
788
+ var selectAllChecked = __selectAllShouldReturnAllOptions
789
+ ? __selectAllSelected
790
+ : this.getMemoizedSelectAllChecked(valueArray, options);
791
+ var isOpen = this.state.isOpen;
792
+ sharedProps.$isOpen = isOpen;
793
+ if (__DEV__) {
794
+ if (this.props.error && this.props.positive) {
795
+ console.warn('[Select] `error` and `positive` are both set to `true`. `error` will take precedence but this may not be what you want.');
796
+ }
797
+ }
798
+ return (_jsx(UIDConsumer, { children: function (listboxId) { return (_jsx(LocaleContext.Consumer, { children: function (locale) { return (_jsx(PopoverOverride
799
+ // Popover does not provide ability to forward refs through, and if we were to simply
800
+ // apply the ref to the Root component below it would be overwritten before the popover
801
+ // renders it. Using this strategy, we will get a ref to the popover, then reuse its
802
+ // anchorRef so we can check if clicks are on the select component or not.
803
+ , __assign({
804
+ // Popover does not provide ability to forward refs through, and if we were to simply
805
+ // apply the ref to the Root component below it would be overwritten before the popover
806
+ // renders it. Using this strategy, we will get a ref to the popover, then reuse its
807
+ // anchorRef so we can check if clicks are on the select component or not.
808
+ innerRef: function (ref) {
809
+ if (!ref)
810
+ return;
811
+ _this.anchor = ref.anchorRef;
812
+ }, accessibilityType: ACCESSIBILITY_TYPE.none, autoFocus: false, focusLock: false, mountNode: _this.props.mountNode, onEsc: function () { return _this.closeMenu(); }, isOpen: isOpen, popoverMargin: 0, content: function () {
813
+ var dropdownProps = {
814
+ error: _this.props.error || false,
815
+ positive: _this.props.positive,
816
+ getOptionLabel: _this.props.getOptionLabel || _this.getOptionLabel.bind(_this, locale),
817
+ id: listboxId,
818
+ isLoading: _this.props.isLoading || false,
819
+ labelKey: _this.props.labelKey || '',
820
+ maxDropdownHeight: _this.props.maxDropdownHeight || '',
821
+ multi: multi || false,
822
+ noResultsMsg: noResultsMsg,
823
+ onActiveDescendantChange: _this.handleActiveDescendantChange,
824
+ onItemSelect: _this.selectValue,
825
+ selectAllChecked: selectAllChecked,
826
+ options: options,
827
+ overrides: overrides,
828
+ required: _this.props.required || false,
829
+ searchable: _this.props.searchable || true,
830
+ size: _this.props.size || 'default',
831
+ type: type || 'select',
832
+ value: valueArray,
833
+ valueKey: _this.props.valueKey || '',
834
+ width: _this.anchor.current ? _this.anchor.current.clientWidth : null,
835
+ keyboardControlNode: _this.anchor,
836
+ };
837
+ return _jsx(SelectDropdown, __assign({ innerRef: _this.dropdown }, dropdownProps), void 0);
838
+ }, placement: PLACEMENT.bottom }, popoverProps, { children: _jsx(Root, __assign({ onBlur: _this.handleBlur, "data-baseweb": "select" }, sharedProps, rootProps, { children: _jsxs(ControlContainer, __assign({ onKeyDown: _this.handleKeyDown, onClick: _this.handleClick, onTouchEnd: _this.handleTouchEnd, onTouchMove: _this.handleTouchMove, onTouchStart: _this.handleTouchStart }, sharedProps, controlContainerProps, { children: [type === TYPE.search ? _this.renderSearch() : null, _jsxs(ValueContainer, __assign({}, sharedProps, valueContainerProps, { children: [_this.renderValue(valueArray), _this.renderInput(listboxId), _this.shouldShowPlaceholder() ? (_jsx(Placeholder, __assign({}, sharedProps, placeholderProps, { children: typeof _this.props.placeholder !== 'undefined'
839
+ ? _this.props.placeholder
840
+ : locale.select.placeholder }), void 0)) : null] }), void 0), _jsxs(IconsContainer, __assign({}, sharedProps, iconsContainerProps, { children: [_this.renderLoading(), _this.renderClear(), type === TYPE.select ? _this.renderArrow() : null] }), void 0)] }), void 0) }), void 0) }), void 0)); } }, void 0)); } }, void 0));
841
+ };
842
+ Select.defaultProps = defaultProps;
843
+ return Select;
844
+ }(React.Component));
845
+ export default Select;