@easypost/easy-ui 1.0.0-alpha.6 → 1.0.0-alpha.60

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 (853) hide show
  1. package/Badge/index.js +16 -16
  2. package/Badge/index.mjs +14 -14
  3. package/Banner/index.js +7 -7
  4. package/Banner/index.mjs +5 -5
  5. package/Button/Button.d.ts +11 -9
  6. package/Button/Button.d.ts.map +1 -1
  7. package/Button/Button.stories.d.ts +10 -9
  8. package/Button/Button.stories.d.ts.map +1 -1
  9. package/Button/index.js +2 -92
  10. package/Button/index.mjs +2 -92
  11. package/Button/utilities.d.ts +3 -0
  12. package/Button/utilities.d.ts.map +1 -1
  13. package/CHANGELOG.md +485 -0
  14. package/Calendar/Calendar.d.ts +67 -0
  15. package/Calendar/Calendar.d.ts.map +1 -0
  16. package/Calendar/Calendar.stories.d.ts +15 -0
  17. package/Calendar/Calendar.stories.d.ts.map +1 -0
  18. package/Calendar/Calendar.test.d.ts +2 -0
  19. package/Calendar/Calendar.test.d.ts.map +1 -0
  20. package/Calendar/CalendarBase.d.ts +57 -0
  21. package/Calendar/CalendarBase.d.ts.map +1 -0
  22. package/Calendar/CalendarCell.d.ts +12 -0
  23. package/Calendar/CalendarCell.d.ts.map +1 -0
  24. package/Calendar/CalendarGrid.d.ts +9 -0
  25. package/Calendar/CalendarGrid.d.ts.map +1 -0
  26. package/Calendar/CalendarHeader.d.ts +20 -0
  27. package/Calendar/CalendarHeader.d.ts.map +1 -0
  28. package/Calendar/index.d.ts +2 -0
  29. package/Calendar/index.d.ts.map +1 -0
  30. package/Calendar/index.js +42 -0
  31. package/Calendar/index.mjs +42 -0
  32. package/Card/Card.d.ts +62 -5
  33. package/Card/Card.d.ts.map +1 -1
  34. package/Card/Card.stories.d.ts +5 -0
  35. package/Card/Card.stories.d.ts.map +1 -1
  36. package/Card/index.js +3 -84
  37. package/Card/index.mjs +3 -84
  38. package/Checkbox/Checkbox.d.ts +1 -1
  39. package/Checkbox/Checkbox.d.ts.map +1 -1
  40. package/Checkbox/Checkbox.test.d.ts +1 -2
  41. package/Checkbox/Checkbox.test.d.ts.map +1 -1
  42. package/Checkbox/index.js +3 -231
  43. package/Checkbox/index.mjs +3 -215
  44. package/CodeBlock/CodeBlock.d.ts +55 -61
  45. package/CodeBlock/CodeBlock.d.ts.map +1 -1
  46. package/CodeBlock/CodeBlock.stories.d.ts +3 -2
  47. package/CodeBlock/CodeBlock.stories.d.ts.map +1 -1
  48. package/CodeBlock/CopyButton.d.ts +9 -0
  49. package/CodeBlock/CopyButton.d.ts.map +1 -0
  50. package/CodeBlock/LanguageMenu.d.ts +18 -0
  51. package/CodeBlock/LanguageMenu.d.ts.map +1 -0
  52. package/CodeBlock/context.d.ts +11 -0
  53. package/CodeBlock/context.d.ts.map +1 -0
  54. package/CodeBlock/index.js +309 -5334
  55. package/CodeBlock/index.mjs +299 -5340
  56. package/CodeSnippet/CodeSnippet.d.ts +82 -0
  57. package/CodeSnippet/CodeSnippet.d.ts.map +1 -0
  58. package/CodeSnippet/CodeSnippet.stories.d.ts +14 -0
  59. package/CodeSnippet/CodeSnippet.stories.d.ts.map +1 -0
  60. package/CodeSnippet/CodeSnippet.test.d.ts +2 -0
  61. package/CodeSnippet/CodeSnippet.test.d.ts.map +1 -0
  62. package/CodeSnippet/SyntaxHighlighter.d.ts +15 -0
  63. package/CodeSnippet/SyntaxHighlighter.d.ts.map +1 -0
  64. package/CodeSnippet/index.d.ts +2 -0
  65. package/CodeSnippet/index.d.ts.map +1 -0
  66. package/CodeSnippet/index.js +4 -0
  67. package/CodeSnippet/index.mjs +4 -0
  68. package/{CodeBlock → CodeSnippet}/theme.d.ts +0 -1
  69. package/CodeSnippet/theme.d.ts.map +1 -0
  70. package/CodeSnippet/useScrollbar.d.ts.map +1 -0
  71. package/DataGrid/ActionsCellContent.d.ts +8 -0
  72. package/DataGrid/ActionsCellContent.d.ts.map +1 -0
  73. package/DataGrid/Cell.d.ts +15 -0
  74. package/DataGrid/Cell.d.ts.map +1 -0
  75. package/DataGrid/ColumnHeader.d.ts +10 -0
  76. package/DataGrid/ColumnHeader.d.ts.map +1 -0
  77. package/DataGrid/DataGrid.d.ts +39 -0
  78. package/DataGrid/DataGrid.d.ts.map +1 -0
  79. package/DataGrid/DataGrid.stories.d.ts +19 -0
  80. package/DataGrid/DataGrid.stories.d.ts.map +1 -0
  81. package/DataGrid/DataGrid.test.d.ts +2 -0
  82. package/DataGrid/DataGrid.test.d.ts.map +1 -0
  83. package/DataGrid/ExpandCellContent.d.ts +8 -0
  84. package/DataGrid/ExpandCellContent.d.ts.map +1 -0
  85. package/DataGrid/ExpandedRowContent.d.ts +7 -0
  86. package/DataGrid/ExpandedRowContent.d.ts.map +1 -0
  87. package/DataGrid/HeaderRow.d.ts +11 -0
  88. package/DataGrid/HeaderRow.d.ts.map +1 -0
  89. package/DataGrid/Row.d.ts +16 -0
  90. package/DataGrid/Row.d.ts.map +1 -0
  91. package/DataGrid/RowGroup.d.ts +8 -0
  92. package/DataGrid/RowGroup.d.ts.map +1 -0
  93. package/DataGrid/SortIndicator.d.ts +7 -0
  94. package/DataGrid/SortIndicator.d.ts.map +1 -0
  95. package/DataGrid/Table.d.ts +8 -0
  96. package/DataGrid/Table.d.ts.map +1 -0
  97. package/DataGrid/VisuallyHiddenCellContent.d.ts +7 -0
  98. package/DataGrid/VisuallyHiddenCellContent.d.ts.map +1 -0
  99. package/DataGrid/constants.d.ts +5 -0
  100. package/DataGrid/constants.d.ts.map +1 -0
  101. package/DataGrid/context.d.ts +30 -0
  102. package/DataGrid/context.d.ts.map +1 -0
  103. package/DataGrid/index.d.ts +2 -0
  104. package/DataGrid/index.d.ts.map +1 -0
  105. package/DataGrid/index.js +2728 -0
  106. package/DataGrid/index.mjs +2728 -0
  107. package/DataGrid/useEdgeInterceptors.d.ts +15 -0
  108. package/DataGrid/useEdgeInterceptors.d.ts.map +1 -0
  109. package/DataGrid/useExpandedRow.d.ts +14 -0
  110. package/DataGrid/useExpandedRow.d.ts.map +1 -0
  111. package/DataGrid/useGridTemplate.d.ts +14 -0
  112. package/DataGrid/useGridTemplate.d.ts.map +1 -0
  113. package/Drawer/Drawer.d.ts +53 -0
  114. package/Drawer/Drawer.d.ts.map +1 -0
  115. package/Drawer/Drawer.stories.d.ts +14 -0
  116. package/Drawer/Drawer.stories.d.ts.map +1 -0
  117. package/Drawer/Drawer.test.d.ts +2 -0
  118. package/Drawer/Drawer.test.d.ts.map +1 -0
  119. package/Drawer/DrawerBanner.d.ts +9 -0
  120. package/Drawer/DrawerBanner.d.ts.map +1 -0
  121. package/Drawer/DrawerBody.d.ts +10 -0
  122. package/Drawer/DrawerBody.d.ts.map +1 -0
  123. package/Drawer/DrawerCloseButton.d.ts +3 -0
  124. package/Drawer/DrawerCloseButton.d.ts.map +1 -0
  125. package/Drawer/DrawerContainer.d.ts +18 -0
  126. package/Drawer/DrawerContainer.d.ts.map +1 -0
  127. package/Drawer/DrawerContentArea.d.ts +17 -0
  128. package/Drawer/DrawerContentArea.d.ts.map +1 -0
  129. package/Drawer/DrawerHeader.d.ts +12 -0
  130. package/Drawer/DrawerHeader.d.ts.map +1 -0
  131. package/Drawer/DrawerTrigger.d.ts +26 -0
  132. package/Drawer/DrawerTrigger.d.ts.map +1 -0
  133. package/Drawer/DrawerUnderlay.d.ts +23 -0
  134. package/Drawer/DrawerUnderlay.d.ts.map +1 -0
  135. package/Drawer/context.d.ts +21 -0
  136. package/Drawer/context.d.ts.map +1 -0
  137. package/Drawer/index.d.ts +2 -0
  138. package/Drawer/index.d.ts.map +1 -0
  139. package/Drawer/index.js +2069 -0
  140. package/Drawer/index.mjs +2053 -0
  141. package/Drawer/useIntersectionDetection.d.ts +10 -0
  142. package/Drawer/useIntersectionDetection.d.ts.map +1 -0
  143. package/DropdownButton/DropdownButton.d.ts +3 -3
  144. package/DropdownButton/DropdownButton.d.ts.map +1 -1
  145. package/DropdownButton/DropdownButton.stories.d.ts +5 -5
  146. package/DropdownButton/DropdownButton.stories.d.ts.map +1 -1
  147. package/DropdownButton/index.js +17 -20
  148. package/DropdownButton/index.mjs +14 -17
  149. package/EmptyStateCard/EmptyStateCard.d.ts +87 -0
  150. package/EmptyStateCard/EmptyStateCard.d.ts.map +1 -0
  151. package/EmptyStateCard/EmptyStateCard.stories.d.ts +10 -0
  152. package/EmptyStateCard/EmptyStateCard.stories.d.ts.map +1 -0
  153. package/EmptyStateCard/EmptyStateCard.test.d.ts +2 -0
  154. package/EmptyStateCard/EmptyStateCard.test.d.ts.map +1 -0
  155. package/EmptyStateCard/index.d.ts +2 -0
  156. package/EmptyStateCard/index.d.ts.map +1 -0
  157. package/EmptyStateCard/index.js +127 -0
  158. package/EmptyStateCard/index.mjs +127 -0
  159. package/EmptyStateCard/utilities.d.ts +3 -0
  160. package/EmptyStateCard/utilities.d.ts.map +1 -0
  161. package/FocusedProductLayout/BackArrow.d.ts +4 -0
  162. package/FocusedProductLayout/BackArrow.d.ts.map +1 -0
  163. package/FocusedProductLayout/Content.d.ts +10 -0
  164. package/FocusedProductLayout/Content.d.ts.map +1 -0
  165. package/FocusedProductLayout/FocusedProductLayout.d.ts +111 -0
  166. package/FocusedProductLayout/FocusedProductLayout.d.ts.map +1 -0
  167. package/FocusedProductLayout/FocusedProductLayout.stories.d.ts +12 -0
  168. package/FocusedProductLayout/FocusedProductLayout.stories.d.ts.map +1 -0
  169. package/FocusedProductLayout/FocusedProductLayout.test.d.ts +2 -0
  170. package/FocusedProductLayout/FocusedProductLayout.test.d.ts.map +1 -0
  171. package/FocusedProductLayout/HeaderAtTopOfPage.d.ts +11 -0
  172. package/FocusedProductLayout/HeaderAtTopOfPage.d.ts.map +1 -0
  173. package/FocusedProductLayout/HeaderInContentArea.d.ts +11 -0
  174. package/FocusedProductLayout/HeaderInContentArea.d.ts.map +1 -0
  175. package/FocusedProductLayout/SidePanel.d.ts +13 -0
  176. package/FocusedProductLayout/SidePanel.d.ts.map +1 -0
  177. package/FocusedProductLayout/WizardContent.d.ts +49 -0
  178. package/FocusedProductLayout/WizardContent.d.ts.map +1 -0
  179. package/FocusedProductLayout/index.d.ts +2 -0
  180. package/FocusedProductLayout/index.d.ts.map +1 -0
  181. package/FocusedProductLayout/index.js +239 -0
  182. package/FocusedProductLayout/index.mjs +223 -0
  183. package/ForgeLayout/ForgeLayout.d.ts +146 -0
  184. package/ForgeLayout/ForgeLayout.d.ts.map +1 -0
  185. package/ForgeLayout/ForgeLayout.stories.d.ts +9 -0
  186. package/ForgeLayout/ForgeLayout.stories.d.ts.map +1 -0
  187. package/ForgeLayout/ForgeLayout.test.d.ts +2 -0
  188. package/ForgeLayout/ForgeLayout.test.d.ts.map +1 -0
  189. package/ForgeLayout/ForgeLayoutActions.d.ts +50 -0
  190. package/ForgeLayout/ForgeLayoutActions.d.ts.map +1 -0
  191. package/ForgeLayout/ForgeLayoutNav.d.ts +35 -0
  192. package/ForgeLayout/ForgeLayoutNav.d.ts.map +1 -0
  193. package/ForgeLayout/index.d.ts +2 -0
  194. package/ForgeLayout/index.d.ts.map +1 -0
  195. package/ForgeLayout/index.js +326 -0
  196. package/ForgeLayout/index.mjs +326 -0
  197. package/FormLayout/FormLayout.d.ts +55 -0
  198. package/FormLayout/FormLayout.d.ts.map +1 -0
  199. package/FormLayout/FormLayout.stories.d.ts +13 -0
  200. package/FormLayout/FormLayout.stories.d.ts.map +1 -0
  201. package/FormLayout/FormLayout.test.d.ts +2 -0
  202. package/FormLayout/FormLayout.test.d.ts.map +1 -0
  203. package/FormLayout/Grid.d.ts +19 -0
  204. package/FormLayout/Grid.d.ts.map +1 -0
  205. package/FormLayout/Header.d.ts +9 -0
  206. package/FormLayout/Header.d.ts.map +1 -0
  207. package/FormLayout/HelperText.d.ts +13 -0
  208. package/FormLayout/HelperText.d.ts.map +1 -0
  209. package/FormLayout/Section.d.ts +12 -0
  210. package/FormLayout/Section.d.ts.map +1 -0
  211. package/FormLayout/Title.d.ts +23 -0
  212. package/FormLayout/Title.d.ts.map +1 -0
  213. package/FormLayout/context.d.ts +2 -0
  214. package/FormLayout/context.d.ts.map +1 -0
  215. package/FormLayout/index.d.ts +2 -0
  216. package/FormLayout/index.d.ts.map +1 -0
  217. package/FormLayout/index.js +126 -0
  218. package/FormLayout/index.mjs +126 -0
  219. package/HorizontalGrid/index.js +2 -62
  220. package/HorizontalGrid/index.mjs +2 -62
  221. package/HorizontalStack/index.js +2 -48
  222. package/HorizontalStack/index.mjs +2 -48
  223. package/Icon/Icon.d.ts +19 -4
  224. package/Icon/Icon.d.ts.map +1 -1
  225. package/Icon/Icon.stories.d.ts.map +1 -1
  226. package/Icon/index.js +2 -38
  227. package/Icon/index.mjs +2 -38
  228. package/IconButton/IconButton.d.ts +3 -3
  229. package/IconButton/IconButton.d.ts.map +1 -1
  230. package/IconButton/IconButton.stories.d.ts +5 -5
  231. package/IconButton/IconButton.stories.d.ts.map +1 -1
  232. package/IconButton/index.js +17 -20
  233. package/IconButton/index.mjs +13 -16
  234. package/InputField/InputField.d.ts +7 -4
  235. package/InputField/InputField.d.ts.map +1 -1
  236. package/InputField/InputField.test.d.ts.map +1 -1
  237. package/InputField/Label.d.ts +0 -5
  238. package/InputField/Label.d.ts.map +1 -1
  239. package/InputField/index.js +2 -283
  240. package/InputField/index.mjs +2 -267
  241. package/InputField/inputText.d.ts +24 -0
  242. package/InputField/inputText.d.ts.map +1 -0
  243. package/InputField/utilities.d.ts +3 -1
  244. package/InputField/utilities.d.ts.map +1 -1
  245. package/KebabButton/KebabButton.d.ts +19 -0
  246. package/KebabButton/KebabButton.d.ts.map +1 -0
  247. package/KebabButton/KebabButton.stories.d.ts +7 -0
  248. package/KebabButton/KebabButton.stories.d.ts.map +1 -0
  249. package/KebabButton/KebabButton.test.d.ts +2 -0
  250. package/KebabButton/KebabButton.test.d.ts.map +1 -0
  251. package/KebabButton/index.d.ts +2 -0
  252. package/KebabButton/index.d.ts.map +1 -0
  253. package/KebabButton/index.js +4 -0
  254. package/KebabButton/index.mjs +4 -0
  255. package/Menu/Menu.stories.d.ts +4 -0
  256. package/Menu/Menu.stories.d.ts.map +1 -1
  257. package/Menu/MenuItem.d.ts.map +1 -1
  258. package/Menu/MenuOverlay.d.ts +18 -2
  259. package/Menu/MenuOverlay.d.ts.map +1 -1
  260. package/Menu/MenuSection.d.ts +2 -0
  261. package/Menu/MenuSection.d.ts.map +1 -1
  262. package/Menu/MenuTrigger.d.ts.map +1 -1
  263. package/Menu/index.js +2 -394
  264. package/Menu/index.mjs +2 -394
  265. package/Menu/utilities.d.ts +14 -1
  266. package/Menu/utilities.d.ts.map +1 -1
  267. package/Modal/Modal.d.ts +53 -0
  268. package/Modal/Modal.d.ts.map +1 -0
  269. package/Modal/Modal.stories.d.ts +15 -0
  270. package/Modal/Modal.stories.d.ts.map +1 -0
  271. package/Modal/Modal.test.d.ts +2 -0
  272. package/Modal/Modal.test.d.ts.map +1 -0
  273. package/Modal/ModalBody.d.ts +10 -0
  274. package/Modal/ModalBody.d.ts.map +1 -0
  275. package/Modal/ModalContainer.d.ts +26 -0
  276. package/Modal/ModalContainer.d.ts.map +1 -0
  277. package/Modal/ModalFooter.d.ts +25 -0
  278. package/Modal/ModalFooter.d.ts.map +1 -0
  279. package/Modal/ModalHeader.d.ts +35 -0
  280. package/Modal/ModalHeader.d.ts.map +1 -0
  281. package/Modal/ModalTrigger.d.ts +26 -0
  282. package/Modal/ModalTrigger.d.ts.map +1 -0
  283. package/Modal/ModalUnderlay.d.ts +19 -0
  284. package/Modal/ModalUnderlay.d.ts.map +1 -0
  285. package/Modal/context.d.ts +23 -0
  286. package/Modal/context.d.ts.map +1 -0
  287. package/Modal/index.d.ts +2 -0
  288. package/Modal/index.d.ts.map +1 -0
  289. package/Modal/index.js +291 -0
  290. package/Modal/index.mjs +291 -0
  291. package/Modal/useIntersectionDetection.d.ts +10 -0
  292. package/Modal/useIntersectionDetection.d.ts.map +1 -0
  293. package/NexusLayout/NexusLayout.d.ts +97 -0
  294. package/NexusLayout/NexusLayout.d.ts.map +1 -0
  295. package/NexusLayout/NexusLayout.stories.d.ts +8 -0
  296. package/NexusLayout/NexusLayout.stories.d.ts.map +1 -0
  297. package/NexusLayout/NexusLayout.test.d.ts +2 -0
  298. package/NexusLayout/NexusLayout.test.d.ts.map +1 -0
  299. package/NexusLayout/NexusLayoutActions.d.ts +38 -0
  300. package/NexusLayout/NexusLayoutActions.d.ts.map +1 -0
  301. package/NexusLayout/NexusLayoutMultipage.d.ts +27 -0
  302. package/NexusLayout/NexusLayoutMultipage.d.ts.map +1 -0
  303. package/NexusLayout/NexusLayoutMultipageSidebarNav.d.ts +31 -0
  304. package/NexusLayout/NexusLayoutMultipageSidebarNav.d.ts.map +1 -0
  305. package/NexusLayout/NexusLayoutNav.d.ts +28 -0
  306. package/NexusLayout/NexusLayoutNav.d.ts.map +1 -0
  307. package/NexusLayout/index.d.ts +2 -0
  308. package/NexusLayout/index.d.ts.map +1 -0
  309. package/NexusLayout/index.js +353 -0
  310. package/NexusLayout/index.mjs +353 -0
  311. package/Notification/index.js +5 -1535
  312. package/Notification/index.mjs +5 -1519
  313. package/Pagination/Pagination.d.ts +81 -0
  314. package/Pagination/Pagination.d.ts.map +1 -0
  315. package/Pagination/Pagination.stories.d.ts +9 -0
  316. package/Pagination/Pagination.stories.d.ts.map +1 -0
  317. package/Pagination/Pagination.test.d.ts +2 -0
  318. package/Pagination/Pagination.test.d.ts.map +1 -0
  319. package/Pagination/PaginationButton.d.ts +9 -0
  320. package/Pagination/PaginationButton.d.ts.map +1 -0
  321. package/Pagination/PaginationDropdown.d.ts +24 -0
  322. package/Pagination/PaginationDropdown.d.ts.map +1 -0
  323. package/Pagination/index.d.ts +2 -0
  324. package/Pagination/index.d.ts.map +1 -0
  325. package/Pagination/index.js +119 -0
  326. package/Pagination/index.mjs +119 -0
  327. package/PillGroup/PillGroup.d.ts +80 -0
  328. package/PillGroup/PillGroup.d.ts.map +1 -0
  329. package/PillGroup/PillGroup.stories.d.ts +11 -0
  330. package/PillGroup/PillGroup.stories.d.ts.map +1 -0
  331. package/PillGroup/PillGroup.test.d.ts +2 -0
  332. package/PillGroup/PillGroup.test.d.ts.map +1 -0
  333. package/PillGroup/index.d.ts +2 -0
  334. package/PillGroup/index.d.ts.map +1 -0
  335. package/PillGroup/index.js +1682 -0
  336. package/PillGroup/index.mjs +1682 -0
  337. package/ProductLayout/HelpMenu.d.ts +8 -0
  338. package/ProductLayout/HelpMenu.d.ts.map +1 -0
  339. package/ProductLayout/LayoutScreenSizeRenderer.d.ts +21 -0
  340. package/ProductLayout/LayoutScreenSizeRenderer.d.ts.map +1 -0
  341. package/ProductLayout/ProductLayout.d.ts +75 -0
  342. package/ProductLayout/ProductLayout.d.ts.map +1 -0
  343. package/ProductLayout/ProductLayout.stories.d.ts +8 -0
  344. package/ProductLayout/ProductLayout.stories.d.ts.map +1 -0
  345. package/ProductLayout/ProductLayout.test.d.ts +2 -0
  346. package/ProductLayout/ProductLayout.test.d.ts.map +1 -0
  347. package/ProductLayout/ProductLayoutContent.d.ts +9 -0
  348. package/ProductLayout/ProductLayoutContent.d.ts.map +1 -0
  349. package/ProductLayout/ProductLayoutHeader.d.ts +44 -0
  350. package/ProductLayout/ProductLayoutHeader.d.ts.map +1 -0
  351. package/ProductLayout/ProductLayoutSidebar.d.ts +9 -0
  352. package/ProductLayout/ProductLayoutSidebar.d.ts.map +1 -0
  353. package/ProductLayout/ProductLayoutTabbedContent.d.ts +15 -0
  354. package/ProductLayout/ProductLayoutTabbedContent.d.ts.map +1 -0
  355. package/ProductLayout/constants.d.ts +2 -0
  356. package/ProductLayout/constants.d.ts.map +1 -0
  357. package/ProductLayout/context.d.ts +13 -0
  358. package/ProductLayout/context.d.ts.map +1 -0
  359. package/ProductLayout/index.d.ts +2 -0
  360. package/ProductLayout/index.d.ts.map +1 -0
  361. package/ProductLayout/index.js +277 -0
  362. package/ProductLayout/index.mjs +277 -0
  363. package/Provider/Provider.d.ts +22 -5
  364. package/Provider/Provider.d.ts.map +1 -1
  365. package/Provider/index.js +20 -18
  366. package/Provider/index.mjs +19 -17
  367. package/README.md +20 -14
  368. package/RadioButtonGroup/RadioButtonGroup.d.ts +103 -0
  369. package/RadioButtonGroup/RadioButtonGroup.d.ts.map +1 -0
  370. package/RadioButtonGroup/RadioButtonGroup.stories.d.ts +11 -0
  371. package/RadioButtonGroup/RadioButtonGroup.stories.d.ts.map +1 -0
  372. package/RadioButtonGroup/RadioButtonGroup.test.d.ts +2 -0
  373. package/RadioButtonGroup/RadioButtonGroup.test.d.ts.map +1 -0
  374. package/RadioButtonGroup/index.d.ts +2 -0
  375. package/RadioButtonGroup/index.d.ts.map +1 -0
  376. package/RadioButtonGroup/index.js +262 -0
  377. package/RadioButtonGroup/index.mjs +262 -0
  378. package/RadioGroup/index.js +134 -99
  379. package/RadioGroup/index.mjs +115 -80
  380. package/RangeCalendar/RangeCalendar.d.ts +71 -0
  381. package/RangeCalendar/RangeCalendar.d.ts.map +1 -0
  382. package/RangeCalendar/RangeCalendar.stories.d.ts +15 -0
  383. package/RangeCalendar/RangeCalendar.stories.d.ts.map +1 -0
  384. package/RangeCalendar/RangeCalendar.test.d.ts +2 -0
  385. package/RangeCalendar/RangeCalendar.test.d.ts.map +1 -0
  386. package/RangeCalendar/index.d.ts +2 -0
  387. package/RangeCalendar/index.d.ts.map +1 -0
  388. package/RangeCalendar/index.js +228 -0
  389. package/RangeCalendar/index.mjs +228 -0
  390. package/SearchNav/CTAGroup.d.ts +21 -0
  391. package/SearchNav/CTAGroup.d.ts.map +1 -0
  392. package/SearchNav/CondensedSearchNav.d.ts +9 -0
  393. package/SearchNav/CondensedSearchNav.d.ts.map +1 -0
  394. package/SearchNav/Logo.d.ts +13 -0
  395. package/SearchNav/Logo.d.ts.map +1 -0
  396. package/SearchNav/LogoGroup.d.ts +21 -0
  397. package/SearchNav/LogoGroup.d.ts.map +1 -0
  398. package/SearchNav/PrimaryCTAItem.d.ts +14 -0
  399. package/SearchNav/PrimaryCTAItem.d.ts.map +1 -0
  400. package/SearchNav/Search.d.ts +13 -0
  401. package/SearchNav/Search.d.ts.map +1 -0
  402. package/SearchNav/SearchNav.d.ts +105 -0
  403. package/SearchNav/SearchNav.d.ts.map +1 -0
  404. package/SearchNav/SearchNav.stories.d.ts +14 -0
  405. package/SearchNav/SearchNav.stories.d.ts.map +1 -0
  406. package/SearchNav/SearchNav.test.d.ts +2 -0
  407. package/SearchNav/SearchNav.test.d.ts.map +1 -0
  408. package/SearchNav/SecondaryCTAItem.d.ts +23 -0
  409. package/SearchNav/SecondaryCTAItem.d.ts.map +1 -0
  410. package/SearchNav/Selector.d.ts +15 -0
  411. package/SearchNav/Selector.d.ts.map +1 -0
  412. package/SearchNav/SelectorTrigger.d.ts +14 -0
  413. package/SearchNav/SelectorTrigger.d.ts.map +1 -0
  414. package/SearchNav/Separator.d.ts +9 -0
  415. package/SearchNav/Separator.d.ts.map +1 -0
  416. package/SearchNav/Title.d.ts +12 -0
  417. package/SearchNav/Title.d.ts.map +1 -0
  418. package/SearchNav/context.d.ts +20 -0
  419. package/SearchNav/context.d.ts.map +1 -0
  420. package/SearchNav/index.d.ts +2 -0
  421. package/SearchNav/index.d.ts.map +1 -0
  422. package/SearchNav/index.js +512 -0
  423. package/SearchNav/index.mjs +496 -0
  424. package/SearchNav/utilities.d.ts +14 -0
  425. package/SearchNav/utilities.d.ts.map +1 -0
  426. package/SectionCard/SectionCard.d.ts +53 -0
  427. package/SectionCard/SectionCard.d.ts.map +1 -0
  428. package/SectionCard/SectionCard.stories.d.ts +11 -0
  429. package/SectionCard/SectionCard.stories.d.ts.map +1 -0
  430. package/SectionCard/SectionCard.test.d.ts +2 -0
  431. package/SectionCard/SectionCard.test.d.ts.map +1 -0
  432. package/SectionCard/index.d.ts +2 -0
  433. package/SectionCard/index.d.ts.map +1 -0
  434. package/SectionCard/index.js +103 -0
  435. package/SectionCard/index.mjs +103 -0
  436. package/Select/Select.d.ts +4 -3
  437. package/Select/Select.d.ts.map +1 -1
  438. package/Select/Select.stories.d.ts.map +1 -1
  439. package/Select/SelectField.d.ts +3 -4
  440. package/Select/SelectField.d.ts.map +1 -1
  441. package/Select/SelectOverlay.d.ts.map +1 -1
  442. package/Select/index.js +26 -721
  443. package/Select/index.mjs +12 -707
  444. package/SelectorErrorTooltip/index.js +2 -104
  445. package/SelectorErrorTooltip/index.mjs +2 -88
  446. package/Spinner/Spinner.d.ts +73 -0
  447. package/Spinner/Spinner.d.ts.map +1 -0
  448. package/Spinner/Spinner.stories.d.ts +11 -0
  449. package/Spinner/Spinner.stories.d.ts.map +1 -0
  450. package/Spinner/Spinner.test.d.ts +2 -0
  451. package/Spinner/Spinner.test.d.ts.map +1 -0
  452. package/Spinner/index.d.ts +2 -0
  453. package/Spinner/index.d.ts.map +1 -0
  454. package/Spinner/index.js +4 -0
  455. package/Spinner/index.mjs +4 -0
  456. package/SplitToggleCard/SplitToggleCard.d.ts +57 -0
  457. package/SplitToggleCard/SplitToggleCard.d.ts.map +1 -0
  458. package/SplitToggleCard/SplitToggleCard.stories.d.ts +11 -0
  459. package/SplitToggleCard/SplitToggleCard.stories.d.ts.map +1 -0
  460. package/SplitToggleCard/SplitToggleCard.test.d.ts +2 -0
  461. package/SplitToggleCard/SplitToggleCard.test.d.ts.map +1 -0
  462. package/SplitToggleCard/index.d.ts +2 -0
  463. package/SplitToggleCard/index.d.ts.map +1 -0
  464. package/SplitToggleCard/index.js +50 -0
  465. package/SplitToggleCard/index.mjs +50 -0
  466. package/Stepper/Step.d.ts +33 -0
  467. package/Stepper/Step.d.ts.map +1 -0
  468. package/Stepper/StepButton.d.ts +25 -0
  469. package/Stepper/StepButton.d.ts.map +1 -0
  470. package/Stepper/Stepper.d.ts +104 -0
  471. package/Stepper/Stepper.d.ts.map +1 -0
  472. package/Stepper/Stepper.stories.d.ts +10 -0
  473. package/Stepper/Stepper.stories.d.ts.map +1 -0
  474. package/Stepper/Stepper.test.d.ts +2 -0
  475. package/Stepper/Stepper.test.d.ts.map +1 -0
  476. package/Stepper/StepperContext.d.ts +11 -0
  477. package/Stepper/StepperContext.d.ts.map +1 -0
  478. package/Stepper/index.d.ts +2 -0
  479. package/Stepper/index.d.ts.map +1 -0
  480. package/Stepper/index.js +4 -0
  481. package/Stepper/index.mjs +4 -0
  482. package/TabNav/TabNav.d.ts +29 -0
  483. package/TabNav/TabNav.d.ts.map +1 -0
  484. package/TabNav/TabNav.stories.d.ts +9 -0
  485. package/TabNav/TabNav.stories.d.ts.map +1 -0
  486. package/TabNav/TabNav.test.d.ts +2 -0
  487. package/TabNav/TabNav.test.d.ts.map +1 -0
  488. package/TabNav/TabNavItem.d.ts +12 -0
  489. package/TabNav/TabNavItem.d.ts.map +1 -0
  490. package/TabNav/index.d.ts +2 -0
  491. package/TabNav/index.d.ts.map +1 -0
  492. package/TabNav/index.js +4 -0
  493. package/TabNav/index.mjs +4 -0
  494. package/TabPanels/TabPanels.d.ts +68 -0
  495. package/TabPanels/TabPanels.d.ts.map +1 -0
  496. package/TabPanels/TabPanels.stories.d.ts +14 -0
  497. package/TabPanels/TabPanels.stories.d.ts.map +1 -0
  498. package/TabPanels/TabPanels.test.d.ts +2 -0
  499. package/TabPanels/TabPanels.test.d.ts.map +1 -0
  500. package/TabPanels/TabPanelsItem.d.ts +15 -0
  501. package/TabPanels/TabPanelsItem.d.ts.map +1 -0
  502. package/TabPanels/TabPanelsPanels.d.ts +14 -0
  503. package/TabPanels/TabPanelsPanels.d.ts.map +1 -0
  504. package/TabPanels/TabPanelsTabs.d.ts +15 -0
  505. package/TabPanels/TabPanelsTabs.d.ts.map +1 -0
  506. package/TabPanels/context.d.ts +10 -0
  507. package/TabPanels/context.d.ts.map +1 -0
  508. package/TabPanels/index.d.ts +2 -0
  509. package/TabPanels/index.d.ts.map +1 -0
  510. package/TabPanels/index.js +316 -0
  511. package/TabPanels/index.mjs +316 -0
  512. package/Tabs/Edge.d.ts +8 -0
  513. package/Tabs/Edge.d.ts.map +1 -0
  514. package/Tabs/Tabs.d.ts +23 -0
  515. package/Tabs/Tabs.d.ts.map +1 -0
  516. package/Tabs/TabsItem.d.ts +13 -0
  517. package/Tabs/TabsItem.d.ts.map +1 -0
  518. package/Tabs/context.d.ts +7 -0
  519. package/Tabs/context.d.ts.map +1 -0
  520. package/Tabs/index.d.ts +2 -0
  521. package/Tabs/index.d.ts.map +1 -0
  522. package/Tabs/index.js +4 -0
  523. package/Tabs/index.mjs +4 -0
  524. package/Tabs/useIndicatorSizing.d.ts +11 -0
  525. package/Tabs/useIndicatorSizing.d.ts.map +1 -0
  526. package/Tabs/useScrollIntoViewIfNeeded.d.ts +11 -0
  527. package/Tabs/useScrollIntoViewIfNeeded.d.ts.map +1 -0
  528. package/Tabs/useScrollbar.d.ts +6 -0
  529. package/Tabs/useScrollbar.d.ts.map +1 -0
  530. package/Tabs/util.d.ts +9 -0
  531. package/Tabs/util.d.ts.map +1 -0
  532. package/Text/Text.d.ts +10 -5
  533. package/Text/Text.d.ts.map +1 -1
  534. package/Text/Text.stories.d.ts.map +1 -1
  535. package/Text/index.js +2 -85
  536. package/Text/index.mjs +2 -85
  537. package/TextField/TextField.d.ts +3 -3
  538. package/TextField/TextField.d.ts.map +1 -1
  539. package/TextField/TextField.stories.d.ts +1 -0
  540. package/TextField/TextField.stories.d.ts.map +1 -1
  541. package/TextField/index.js +33 -23
  542. package/TextField/index.mjs +33 -23
  543. package/Textarea/Textarea.d.ts +3 -3
  544. package/Textarea/Textarea.d.ts.map +1 -1
  545. package/Textarea/Textarea.stories.d.ts.map +1 -1
  546. package/Textarea/index.js +32 -20
  547. package/Textarea/index.mjs +32 -20
  548. package/Theme/index.js +5 -145
  549. package/Theme/index.mjs +5 -145
  550. package/Toggle/Toggle.d.ts +34 -1
  551. package/Toggle/Toggle.d.ts.map +1 -1
  552. package/Toggle/index.js +2 -117
  553. package/Toggle/index.mjs +2 -117
  554. package/ToggleCard/ToggleCard.d.ts +88 -0
  555. package/ToggleCard/ToggleCard.d.ts.map +1 -0
  556. package/ToggleCard/ToggleCard.stories.d.ts +12 -0
  557. package/ToggleCard/ToggleCard.stories.d.ts.map +1 -0
  558. package/ToggleCard/ToggleCard.test.d.ts +2 -0
  559. package/ToggleCard/ToggleCard.test.d.ts.map +1 -0
  560. package/ToggleCard/index.d.ts +2 -0
  561. package/ToggleCard/index.d.ts.map +1 -0
  562. package/ToggleCard/index.js +47 -0
  563. package/ToggleCard/index.mjs +47 -0
  564. package/Tooltip/Tooltip.stories.d.ts +3 -0
  565. package/Tooltip/Tooltip.stories.d.ts.map +1 -1
  566. package/Tooltip/index.js +2 -300
  567. package/Tooltip/index.mjs +2 -300
  568. package/UnstyledButton/UnstyledButton.d.ts +2 -2
  569. package/UnstyledButton/UnstyledButton.d.ts.map +1 -1
  570. package/UnstyledButton/UnstyledPressButton.d.ts +10 -0
  571. package/UnstyledButton/UnstyledPressButton.d.ts.map +1 -0
  572. package/UnstyledButton/index.js +2 -7
  573. package/UnstyledButton/index.mjs +1 -6
  574. package/VerticalNav/Container.d.ts +4 -0
  575. package/VerticalNav/Container.d.ts.map +1 -0
  576. package/VerticalNav/ExpandButton.d.ts +7 -0
  577. package/VerticalNav/ExpandButton.d.ts.map +1 -0
  578. package/VerticalNav/Item.d.ts +37 -0
  579. package/VerticalNav/Item.d.ts.map +1 -0
  580. package/VerticalNav/ListVerticalNav.d.ts +29 -0
  581. package/VerticalNav/ListVerticalNav.d.ts.map +1 -0
  582. package/VerticalNav/NavItem.d.ts +13 -0
  583. package/VerticalNav/NavItem.d.ts.map +1 -0
  584. package/VerticalNav/Subnav.d.ts +18 -0
  585. package/VerticalNav/Subnav.d.ts.map +1 -0
  586. package/VerticalNav/SubnavItem.d.ts +9 -0
  587. package/VerticalNav/SubnavItem.d.ts.map +1 -0
  588. package/VerticalNav/SubnavItemDot.d.ts +7 -0
  589. package/VerticalNav/SubnavItemDot.d.ts.map +1 -0
  590. package/VerticalNav/SupplementaryAction.d.ts +26 -0
  591. package/VerticalNav/SupplementaryAction.d.ts.map +1 -0
  592. package/VerticalNav/TreeVerticalNav.d.ts +58 -0
  593. package/VerticalNav/TreeVerticalNav.d.ts.map +1 -0
  594. package/VerticalNav/VerticalNav.d.ts +29 -0
  595. package/VerticalNav/VerticalNav.d.ts.map +1 -0
  596. package/VerticalNav/VerticalNav.stories.d.ts +13 -0
  597. package/VerticalNav/VerticalNav.stories.d.ts.map +1 -0
  598. package/VerticalNav/VerticalNav.test.d.ts +2 -0
  599. package/VerticalNav/VerticalNav.test.d.ts.map +1 -0
  600. package/VerticalNav/context.d.ts +4 -0
  601. package/VerticalNav/context.d.ts.map +1 -0
  602. package/VerticalNav/index.d.ts +2 -0
  603. package/VerticalNav/index.d.ts.map +1 -0
  604. package/VerticalNav/index.js +293 -0
  605. package/VerticalNav/index.mjs +293 -0
  606. package/VerticalStack/VerticalStack.d.ts +2 -3
  607. package/VerticalStack/VerticalStack.d.ts.map +1 -1
  608. package/VerticalStack/index.js +2 -53
  609. package/VerticalStack/index.mjs +2 -53
  610. package/__chunks__/ArrowForwardIos-DSeLeLhY.mjs +41 -0
  611. package/__chunks__/ArrowForwardIos-DpRiDPNZ.js +57 -0
  612. package/__chunks__/Button-D0YAQvKG.mjs +158 -0
  613. package/__chunks__/Button-D8vjHIx8.js +157 -0
  614. package/__chunks__/Button-DuqSI9GS.js +90 -0
  615. package/__chunks__/Button-bGGT-c6v.mjs +91 -0
  616. package/__chunks__/CalendarBase-CiBPzvL4.js +3411 -0
  617. package/__chunks__/CalendarBase-DbXh9rhk.mjs +3412 -0
  618. package/__chunks__/Card-93kQP9IL.js +278 -0
  619. package/__chunks__/Card-DdHvpDEw.mjs +279 -0
  620. package/__chunks__/CheckCircle-C9h2PNWU.mjs +41 -0
  621. package/__chunks__/CheckCircle-lgmtkEe6.js +57 -0
  622. package/__chunks__/Checkbox-BRrfKcFE.mjs +239 -0
  623. package/__chunks__/Checkbox-MbPCVxqs.js +254 -0
  624. package/__chunks__/Close-BQ2IlPyf.js +57 -0
  625. package/__chunks__/Close-Cq6Q6MN6.mjs +41 -0
  626. package/__chunks__/CodeSnippet-D9ZZXVs3.js +5703 -0
  627. package/__chunks__/CodeSnippet-xb-psm_O.mjs +5704 -0
  628. package/__chunks__/{ExpandMore400-7c5263a4.mjs → ExpandMore400-CH7GNxqk.mjs} +9 -17
  629. package/__chunks__/{ExpandMore400-92646971.js → ExpandMore400-CJpvxyJm.js} +9 -17
  630. package/__chunks__/FocusScope-CEeqhVmO.mjs +703 -0
  631. package/__chunks__/FocusScope-Co1hHX8R.js +702 -0
  632. package/__chunks__/HelpMenu-CCHBb1Kr.mjs +110 -0
  633. package/__chunks__/HelpMenu-E6z6tRl8.js +125 -0
  634. package/__chunks__/HorizontalGrid-B7ijxURd.js +61 -0
  635. package/__chunks__/HorizontalGrid-vw7R2Tld.mjs +62 -0
  636. package/__chunks__/HorizontalStack-1g4N72TF.js +49 -0
  637. package/__chunks__/HorizontalStack-Dx9zYaH0.mjs +50 -0
  638. package/__chunks__/Icon-QGDwoR1f.mjs +40 -0
  639. package/__chunks__/Icon-oPEVg2C8.js +39 -0
  640. package/__chunks__/InputField-BGBRvVMR.js +321 -0
  641. package/__chunks__/InputField-BI73lSp6.mjs +306 -0
  642. package/__chunks__/{InputIcon-2317befd.mjs → InputIcon-BGgFAA4L.mjs} +54 -34
  643. package/__chunks__/{InputIcon-d3963cf8.js → InputIcon-CUOJRoq8.js} +56 -36
  644. package/__chunks__/Item-BhrTPNN2.mjs +80 -0
  645. package/__chunks__/Item-CfWjPrxx.js +79 -0
  646. package/__chunks__/KebabButton-C15-V-k2.js +121 -0
  647. package/__chunks__/KebabButton-DBLcfQI6.mjs +106 -0
  648. package/__chunks__/KeyboardDoubleArrowRight-AAMLvGk-.mjs +79 -0
  649. package/__chunks__/KeyboardDoubleArrowRight-Ber8mUIO.js +95 -0
  650. package/__chunks__/LiveAnnouncer-Bi_Y3tfX.mjs +77 -0
  651. package/__chunks__/LiveAnnouncer-Dwkwacle.js +76 -0
  652. package/__chunks__/Menu-BELtbX2b.mjs +531 -0
  653. package/__chunks__/Menu-Cuqxc1iw.js +530 -0
  654. package/__chunks__/Menu-OacI_98l.js +57 -0
  655. package/__chunks__/Menu-qMqvSorL.mjs +41 -0
  656. package/__chunks__/Notification-D90-75ZN.js +1382 -0
  657. package/__chunks__/Notification-lqESwByD.mjs +1367 -0
  658. package/__chunks__/Overlay-CuhLUuXt.mjs +109 -0
  659. package/__chunks__/Overlay-ZinDp2HW.js +108 -0
  660. package/__chunks__/SelectOverlay-CadnQpV0.mjs +572 -0
  661. package/__chunks__/SelectOverlay-pFcbx7UM.js +571 -0
  662. package/__chunks__/SelectionManager-DuX6geJg.js +707 -0
  663. package/__chunks__/SelectionManager-IO4G_cI2.mjs +708 -0
  664. package/__chunks__/SelectorErrorTooltip-CFlgzXu5.mjs +75 -0
  665. package/__chunks__/SelectorErrorTooltip-Cfzpo7X3.js +90 -0
  666. package/__chunks__/Spinner-D3LMSY80.js +231 -0
  667. package/__chunks__/Spinner-tHEG0z1g.mjs +232 -0
  668. package/__chunks__/Stepper-B0w3sKYh.mjs +169 -0
  669. package/__chunks__/Stepper-Bbihngk4.js +168 -0
  670. package/__chunks__/TabNav-2W0d3JQ0.mjs +58 -0
  671. package/__chunks__/TabNav-BHETvib0.js +57 -0
  672. package/__chunks__/Tabs-9dihRp0n.js +253 -0
  673. package/__chunks__/Tabs-C-D794Gi.mjs +254 -0
  674. package/__chunks__/Text-CEI17LPu.js +100 -0
  675. package/__chunks__/Text-D8wg72pq.mjs +101 -0
  676. package/__chunks__/Theme-BTOgcCP2.js +146 -0
  677. package/__chunks__/Theme-CKTfAcvs.mjs +147 -0
  678. package/__chunks__/Toggle-4oQhSggV.js +134 -0
  679. package/__chunks__/Toggle-DlIBs_Za.mjs +135 -0
  680. package/__chunks__/Tooltip-7wXzqEZl.js +291 -0
  681. package/__chunks__/Tooltip-Cxv7qnVD.mjs +292 -0
  682. package/__chunks__/{index-29d7bca9.mjs → UnstyledButton-B7BScs8i.mjs} +15 -72
  683. package/__chunks__/UnstyledButton-Dn8KZHdh.js +75 -0
  684. package/__chunks__/VerticalStack-BTB8fX9P.js +54 -0
  685. package/__chunks__/VerticalStack-HnwP17N3.mjs +55 -0
  686. package/__chunks__/VisuallyHidden-BttNIgVC.mjs +75 -0
  687. package/__chunks__/VisuallyHidden-CVfjb1YY.js +74 -0
  688. package/__chunks__/_commonjsHelpers-Bc2YnDe1.js +7 -0
  689. package/__chunks__/_commonjsHelpers-DWwsNxpa.mjs +8 -0
  690. package/__chunks__/ariaHideOutside-DNGR3Fo6.js +410 -0
  691. package/__chunks__/ariaHideOutside-DcIkumuG.mjs +411 -0
  692. package/__chunks__/context-C6CFGY_J.js +108 -0
  693. package/__chunks__/context-CgOWZch5.mjs +109 -0
  694. package/__chunks__/context-D3NeXov7.js +91 -0
  695. package/__chunks__/context-DEwqildc.mjs +92 -0
  696. package/__chunks__/filterDOMProps-D3iOHP0H.js +27 -0
  697. package/__chunks__/filterDOMProps-EDDcM64A.mjs +28 -0
  698. package/__chunks__/focusSafely-Dw7K4rnX.mjs +15 -0
  699. package/__chunks__/focusSafely-sLifanM7.js +14 -0
  700. package/__chunks__/getScrollParent-B5CCP-yO.mjs +10 -0
  701. package/__chunks__/getScrollParent-DNz2ReWu.js +9 -0
  702. package/__chunks__/index-CTw89HMx.js +198 -0
  703. package/__chunks__/index-CUcRN4NO.js +311 -0
  704. package/__chunks__/index-DCSYt1ke.mjs +199 -0
  705. package/__chunks__/index-Izk6uvQC.mjs +312 -0
  706. package/__chunks__/isScrollable-CE3Xdlg4.js +9 -0
  707. package/__chunks__/isScrollable-DwbLAiO0.mjs +10 -0
  708. package/__chunks__/isVirtualEvent-BFRy7P_p.mjs +74 -0
  709. package/__chunks__/isVirtualEvent-DwoP1rNI.js +73 -0
  710. package/__chunks__/lodash-Cu2-TIbX.mjs +5492 -0
  711. package/__chunks__/lodash-DfTCP3Dk.js +5491 -0
  712. package/__chunks__/mergeProps-DniMwM6P.js +226 -0
  713. package/__chunks__/mergeProps-T961Q1yJ.mjs +227 -0
  714. package/__chunks__/mergeRefs-CCV6itCY.mjs +12 -0
  715. package/__chunks__/mergeRefs-CQsNYO0P.js +11 -0
  716. package/__chunks__/number-C4N6pKyl.js +6 -0
  717. package/__chunks__/number-CLRm_tTs.mjs +7 -0
  718. package/__chunks__/objectWithoutPropertiesLoose-3GpnIKeG.js +29 -0
  719. package/__chunks__/objectWithoutPropertiesLoose-ij10PUAf.mjs +30 -0
  720. package/__chunks__/omit-B_jU3Uog.mjs +2248 -0
  721. package/__chunks__/omit-jjOwwbdQ.js +2247 -0
  722. package/__chunks__/{overlayscrollbars-react.es-7f332a3b.mjs → overlayscrollbars-react-0TIZYR5k.mjs} +982 -880
  723. package/__chunks__/{overlayscrollbars-react.es-f2a0bcff.js → overlayscrollbars-react-D154NPCl.js} +982 -880
  724. package/__chunks__/scrollIntoView-DkcUbB3D.js +110 -0
  725. package/__chunks__/scrollIntoView-GfnXaOCE.mjs +111 -0
  726. package/__chunks__/{tokens-e696ca96.js → tokens-BmCk-Bk0.js} +153 -125
  727. package/__chunks__/{tokens-6be8e137.mjs → tokens-BolVbjJp.mjs} +153 -125
  728. package/__chunks__/useButton-B1CurEpI.mjs +71 -0
  729. package/__chunks__/useButton-DvulUoU2.js +70 -0
  730. package/__chunks__/{import-6a831ca1.mjs → useControlledState-CFWhSD5C.mjs} +5 -14
  731. package/__chunks__/{import-dea5a24d.js → useControlledState-mnKBd6Uc.js} +4 -13
  732. package/__chunks__/useDialog-DAYxqkKY.mjs +96 -0
  733. package/__chunks__/useDialog-Dsqz1M_N.js +95 -0
  734. package/__chunks__/useEdgeInterceptors-BCHFmpf_.js +48 -0
  735. package/__chunks__/useEdgeInterceptors-CVxwDmQ0.mjs +49 -0
  736. package/__chunks__/useEvent-C5RCZjKr.mjs +23 -0
  737. package/__chunks__/useEvent-DY7dR7Mi.js +22 -0
  738. package/__chunks__/useField-BJW_bXVD.js +38 -0
  739. package/__chunks__/useField-DWmSslhe.mjs +39 -0
  740. package/__chunks__/useFocus-B4oRb1dU.js +37 -0
  741. package/__chunks__/useFocus-DDj4i8Xy.mjs +38 -0
  742. package/__chunks__/useFocusRing-BE_dgxH5.mjs +43 -0
  743. package/__chunks__/useFocusRing-DFRFvht_.js +42 -0
  744. package/__chunks__/useFocusVisible-CXSIZSY_.mjs +272 -0
  745. package/__chunks__/useFocusVisible-PBQuklI8.js +271 -0
  746. package/__chunks__/useFocusWithin-C1ioGWec.js +47 -0
  747. package/__chunks__/useFocusWithin-CDX8m0Wu.mjs +48 -0
  748. package/__chunks__/useFocusable-BfXLORiH.js +95 -0
  749. package/__chunks__/useFocusable-DD5dAIXt.mjs +96 -0
  750. package/__chunks__/useFormReset-Bgj93eR3.js +21 -0
  751. package/__chunks__/useFormReset-CmXMJVpO.mjs +22 -0
  752. package/__chunks__/useFormValidation-C2DoIczP.js +240 -0
  753. package/__chunks__/useFormValidation-gwcVryr8.mjs +241 -0
  754. package/__chunks__/useHasTabbableChild-C34XhtMr.js +36 -0
  755. package/__chunks__/useHasTabbableChild-CRCY1COZ.mjs +37 -0
  756. package/__chunks__/useHighlightSelectionDescription-CsB-ufoX.js +570 -0
  757. package/__chunks__/useHighlightSelectionDescription-DnW5KkSs.mjs +572 -0
  758. package/__chunks__/useHover-BIKwjrCT.js +109 -0
  759. package/__chunks__/useHover-BOYR4wqI.mjs +110 -0
  760. package/__chunks__/useIntersectionDetection-BvUmtDgl.mjs +22 -0
  761. package/__chunks__/useIntersectionDetection-DI5n4zwA.js +21 -0
  762. package/__chunks__/useLabel-C0Q8946u.mjs +27 -0
  763. package/__chunks__/useLabel-t-N6anB8.js +26 -0
  764. package/__chunks__/useLabels-Bly436JP.mjs +23 -0
  765. package/__chunks__/useLabels-KmwewLTv.js +22 -0
  766. package/__chunks__/useLink-BOdtE_Mk.js +94 -0
  767. package/__chunks__/useLink-B__d3N9L.mjs +95 -0
  768. package/__chunks__/useListState-CH1PXfc5.mjs +182 -0
  769. package/__chunks__/useListState-I5rva0Fq.js +181 -0
  770. package/__chunks__/useLocalizedStringFormatter-B5ons_mh.mjs +119 -0
  771. package/__chunks__/useLocalizedStringFormatter-D74_5d4h.js +118 -0
  772. package/__chunks__/useOverlayPosition-B31NgShQ.mjs +473 -0
  773. package/__chunks__/useOverlayPosition-ucZjuzzI.js +472 -0
  774. package/__chunks__/usePress-Dz8YYpge.js +799 -0
  775. package/__chunks__/usePress-lFMUra6S.mjs +800 -0
  776. package/__chunks__/useResizeObserver-BsbT3mjh.js +34 -0
  777. package/__chunks__/useResizeObserver-Dyb4wvuA.mjs +35 -0
  778. package/__chunks__/useSelectableItem-BGvBbIwY.js +538 -0
  779. package/__chunks__/useSelectableItem-BdD2_J2D.mjs +539 -0
  780. package/__chunks__/useSelectableList-D0uxeze4.mjs +275 -0
  781. package/__chunks__/useSelectableList-DlkRkps4.js +274 -0
  782. package/__chunks__/useSingleSelectListState-5RB1w9vv.js +55 -0
  783. package/__chunks__/useSingleSelectListState-BuqfjUxj.mjs +56 -0
  784. package/__chunks__/useSyncRef-CPg4onT-.js +13 -0
  785. package/__chunks__/useSyncRef-CpaiKz0R.mjs +14 -0
  786. package/__chunks__/useToggle-D7gzXCXF.js +74 -0
  787. package/__chunks__/{import-0561e1ba.mjs → useToggle-b0GY9dCM.mjs} +22 -29
  788. package/__chunks__/useToggleState-CdbEMLRz.js +18 -0
  789. package/__chunks__/useToggleState-kFojjzgV.mjs +19 -0
  790. package/__chunks__/useTreeState-BZxhJy4m.mjs +143 -0
  791. package/__chunks__/useTreeState-D6aHf9kN.js +142 -0
  792. package/__chunks__/useTriggerWidth-C7OT3WI9.js +719 -0
  793. package/__chunks__/useTriggerWidth-DEToHKD3.mjs +720 -0
  794. package/__chunks__/useUpdateEffect-BLgGnNgL.mjs +19 -0
  795. package/__chunks__/useUpdateEffect-CssYIsWI.js +18 -0
  796. package/__chunks__/utils-DXO9zsKE.js +154 -0
  797. package/__chunks__/utils-XuD3IFpv.mjs +155 -0
  798. package/package.json +18 -14
  799. package/style.css +5689 -2517
  800. package/styles/_accessibility.scss +48 -0
  801. package/styles/_common.scss +8 -0
  802. package/styles/_media-queries.scss +25 -0
  803. package/styles/_poppins-fallback.scss +73 -0
  804. package/styles/_responsive-props.scss +90 -0
  805. package/styles/_scrollbars.scss +52 -0
  806. package/styles/_string-functions.scss +26 -0
  807. package/styles/_token-helpers.scss +41 -0
  808. package/styles/_typography.scss +53 -0
  809. package/styles/_unstyled.scss +32 -0
  810. package/styles/global.scss +32 -0
  811. package/types.d.ts +10 -4
  812. package/types.d.ts.map +1 -1
  813. package/utilities/EasyPostLogo.d.ts +3 -0
  814. package/utilities/EasyPostLogo.d.ts.map +1 -0
  815. package/utilities/css.d.ts +1 -0
  816. package/utilities/css.d.ts.map +1 -1
  817. package/utilities/css.js +20 -1
  818. package/utilities/css.mjs +20 -1
  819. package/utilities/react.d.ts +31 -0
  820. package/utilities/react.d.ts.map +1 -0
  821. package/utilities/react.js +70 -0
  822. package/utilities/react.mjs +70 -0
  823. package/utilities/storybook.d.ts +51 -2
  824. package/utilities/storybook.d.ts.map +1 -1
  825. package/utilities/test.d.ts +21 -3
  826. package/utilities/test.d.ts.map +1 -1
  827. package/utilities/tokens.d.ts.map +1 -1
  828. package/{Menu → utilities}/useScrollbar.d.ts +2 -4
  829. package/utilities/useScrollbar.d.ts.map +1 -0
  830. package/utilities/useScrollbar.js +22 -0
  831. package/utilities/useScrollbar.mjs +22 -0
  832. package/CodeBlock/SyntaxHighlighter.d.ts +0 -5
  833. package/CodeBlock/SyntaxHighlighter.d.ts.map +0 -1
  834. package/CodeBlock/theme.d.ts.map +0 -1
  835. package/CodeBlock/useScrollbar.d.ts.map +0 -1
  836. package/Menu/useScrollbar.d.ts.map +0 -1
  837. package/__chunks__/import-19bc38ac.mjs +0 -679
  838. package/__chunks__/import-24a482e1.js +0 -59
  839. package/__chunks__/import-29af6941.mjs +0 -60
  840. package/__chunks__/import-2b302763.js +0 -1435
  841. package/__chunks__/import-3d962a94.mjs +0 -1436
  842. package/__chunks__/import-8b6c0bc7.js +0 -81
  843. package/__chunks__/import-a1e0f814.js +0 -678
  844. package/__chunks__/import-a2023d8f.js +0 -1121
  845. package/__chunks__/import-f1f4792a.mjs +0 -1122
  846. package/__chunks__/index-3985350a.js +0 -132
  847. package/__chunks__/omit-f17deb8f.mjs +0 -1296
  848. package/__chunks__/omit-fca26542.js +0 -1295
  849. package/__chunks__/real-module-515df21d.mjs +0 -216
  850. package/__chunks__/real-module-e36b1436.js +0 -215
  851. package/__chunks__/useTriggerWidth-156b038a.js +0 -2030
  852. package/__chunks__/useTriggerWidth-addcd1d6.mjs +0 -2031
  853. /package/{CodeBlock → CodeSnippet}/useScrollbar.d.ts +0 -0
@@ -0,0 +1,13 @@
1
+ import React, { ComponentProps, ElementType, MutableRefObject, ReactNode } from "react";
2
+ export declare const SCROLL_PADDING = 32;
3
+ type TabsItemProps<T extends ElementType = "span"> = ComponentProps<T> & {
4
+ containerComponent: "span" | "div" | "li";
5
+ tabComponent?: T;
6
+ tabRef?: MutableRefObject<null>;
7
+ children: ReactNode;
8
+ isSelected?: boolean;
9
+ isDisabled?: boolean;
10
+ };
11
+ export declare function TabsItem<T extends ElementType = "span">(props: TabsItemProps<T>): React.JSX.Element;
12
+ export {};
13
+ //# sourceMappingURL=TabsItem.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TabsItem.d.ts","sourceRoot":"","sources":["../../src/Tabs/TabsItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EACZ,cAAc,EACd,WAAW,EACX,gBAAgB,EAChB,SAAS,EAEV,MAAM,OAAO,CAAC;AASf,eAAO,MAAM,cAAc,KAAK,CAAC;AAEjC,KAAK,aAAa,CAAC,CAAC,SAAS,WAAW,GAAG,MAAM,IAAI,cAAc,CAAC,CAAC,CAAC,GAAG;IACvE,kBAAkB,EAAE,MAAM,GAAG,KAAK,GAAG,IAAI,CAAC;IAC1C,YAAY,CAAC,EAAE,CAAC,CAAC;IACjB,MAAM,CAAC,EAAE,gBAAgB,CAAC,IAAI,CAAC,CAAC;IAChC,QAAQ,EAAE,SAAS,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;AAEF,wBAAgB,QAAQ,CAAC,CAAC,SAAS,WAAW,GAAG,MAAM,EACrD,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,qBA+CxB"}
@@ -0,0 +1,7 @@
1
+ export type TabsContextType = {
2
+ setIndicatorPosition: (value: number) => void;
3
+ setIndicatorWidth: (value: number) => void;
4
+ };
5
+ export declare const TabsContext: import("react").Context<TabsContextType | null>;
6
+ export declare const useTabs: () => TabsContextType;
7
+ //# sourceMappingURL=context.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../src/Tabs/context.tsx"],"names":[],"mappings":"AAEA,MAAM,MAAM,eAAe,GAAG;IAC5B,oBAAoB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9C,iBAAiB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CAC5C,CAAC;AAEF,eAAO,MAAM,WAAW,iDAA8C,CAAC;AAEvE,eAAO,MAAM,OAAO,uBAMnB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from "./Tabs";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Tabs/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC"}
package/Tabs/index.js ADDED
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const Tabs = require("../__chunks__/Tabs-9dihRp0n.js");
4
+ exports.Tabs = Tabs.Tabs;
package/Tabs/index.mjs ADDED
@@ -0,0 +1,4 @@
1
+ import { T } from "../__chunks__/Tabs-C-D794Gi.mjs";
2
+ export {
3
+ T as Tabs
4
+ };
@@ -0,0 +1,11 @@
1
+ import { MutableRefObject } from "react";
2
+ import { TabsContextType } from "./context";
3
+ /**
4
+ * Sets the width and position for the indicator (underline) based on the size
5
+ * of the currently selected tab.
6
+ */
7
+ export declare function useIndicatorSizing({ isSelected, itemRef, setIndicatorPosition, setIndicatorWidth, }: TabsContextType & {
8
+ isSelected: boolean;
9
+ itemRef: MutableRefObject<HTMLElement | null>;
10
+ }): void;
11
+ //# sourceMappingURL=useIndicatorSizing.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useIndicatorSizing.d.ts","sourceRoot":"","sources":["../../src/Tabs/useIndicatorSizing.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAA0B,MAAM,OAAO,CAAC;AACjE,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAG5C;;;GAGG;AACH,wBAAgB,kBAAkB,CAAC,EACjC,UAAU,EACV,OAAO,EACP,oBAAoB,EACpB,iBAAiB,GAClB,EAAE,eAAe,GAAG;IACnB,UAAU,EAAE,OAAO,CAAC;IACpB,OAAO,EAAE,gBAAgB,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;CAC/C,QAmBA"}
@@ -0,0 +1,11 @@
1
+ import { MutableRefObject } from "react";
2
+ export declare const SCROLL_PADDING = 24;
3
+ /**
4
+ * Manages scrolling the tab into view if it's scrolled out of the horizontal
5
+ * line of sight.
6
+ */
7
+ export declare function useScrollIntoViewIfNeeded({ isSelected, itemRef, }: {
8
+ isSelected: boolean;
9
+ itemRef: MutableRefObject<HTMLElement | null>;
10
+ }): void;
11
+ //# sourceMappingURL=useScrollIntoViewIfNeeded.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useScrollIntoViewIfNeeded.d.ts","sourceRoot":"","sources":["../../src/Tabs/useScrollIntoViewIfNeeded.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAA0B,MAAM,OAAO,CAAC;AAGjE,eAAO,MAAM,cAAc,KAAK,CAAC;AAEjC;;;GAGG;AACH,wBAAgB,yBAAyB,CAAC,EACxC,UAAU,EACV,OAAO,GACR,EAAE;IACD,UAAU,EAAE,OAAO,CAAC;IACpB,OAAO,EAAE,gBAAgB,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;CAC/C,QAmCA"}
@@ -0,0 +1,6 @@
1
+ import { MutableRefObject } from "react";
2
+ export declare function useScrollbar({ navRef, containerRef, }: {
3
+ navRef: MutableRefObject<HTMLElement | null>;
4
+ containerRef: MutableRefObject<HTMLElement | null>;
5
+ }): void;
6
+ //# sourceMappingURL=useScrollbar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useScrollbar.d.ts","sourceRoot":"","sources":["../../src/Tabs/useScrollbar.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAmB,MAAM,OAAO,CAAC;AAE1D,wBAAgB,YAAY,CAAC,EAC3B,MAAM,EACN,YAAY,GACb,EAAE;IACD,MAAM,EAAE,gBAAgB,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;IAC7C,YAAY,EAAE,gBAAgB,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;CACpD,QAiBA"}
package/Tabs/util.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ export declare function getSharedMeasurementsForTabNavItem($item: HTMLElement): {
2
+ $nav: Element;
3
+ itemRect: DOMRect;
4
+ navRect: DOMRect;
5
+ navScrollLeft: number;
6
+ itemWidth: number;
7
+ itemPosition: number;
8
+ };
9
+ //# sourceMappingURL=util.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../src/Tabs/util.ts"],"names":[],"mappings":"AAAA,wBAAgB,kCAAkC,CAAC,KAAK,EAAE,WAAW;;;;;;;EAqBpE"}
package/Text/Text.d.ts CHANGED
@@ -1,9 +1,10 @@
1
- import React, { ReactNode } from "react";
2
- import { ThemeTokenNamespace, DesignTokenNamespace } from "../types";
1
+ import React, { HTMLAttributes, ReactNode } from "react";
2
+ import { DesignTokenNamespace, ThemeColorAliases } from "../types";
3
3
  export type TextAs = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "legend" | "p" | "span" | "strong";
4
- export type TextColor = ThemeTokenNamespace<"color.text">;
4
+ export type TextColor = ThemeColorAliases | "action" | "danger" | "disabled" | "gray.bold" | "gray.resting" | "inverse" | "primary" | "subdued";
5
5
  export type TextVariant = DesignTokenNamespace<"font.style", "family">;
6
6
  export type TextWeight = "normal" | "medium" | "semibold" | "bold";
7
+ export type TextTransform = "none" | "capitalize" | "uppercase" | "lowercase";
7
8
  export type TextProps = {
8
9
  /** Adjusts horizontal alignment of text */
9
10
  alignment?: "start" | "center" | "end" | "justify";
@@ -16,6 +17,10 @@ export type TextProps = {
16
17
  color?: TextColor;
17
18
  /** HTML id attribute */
18
19
  id?: string;
20
+ /** HTML role attribute */
21
+ role?: HTMLAttributes<"span">["role"];
22
+ /** Transform text */
23
+ transform?: TextTransform;
19
24
  /** Truncate text overflow with ellipsis */
20
25
  truncate?: boolean;
21
26
  /** Adjusts the style of text that's rendered */
@@ -45,7 +50,7 @@ export type TextProps = {
45
50
  * @example
46
51
  * Working with alignment and color:
47
52
  * ```tsx
48
- * <Text variant="body1" alignment="center" color="blue-500">
53
+ * <Text variant="body1" alignment="center" color="primary.800">
49
54
  * Standard body text rendered as a span, centered, and colored blue 500
50
55
  * </Text>
51
56
  * ```
@@ -66,5 +71,5 @@ export type TextProps = {
66
71
  * </Text>
67
72
  * ```
68
73
  */
69
- export declare function Text({ alignment, as: Component, breakWord, children, color, id, truncate, variant, visuallyHidden, weight, }: TextProps): React.JSX.Element;
74
+ export declare function Text({ alignment, as: Component, breakWord, children, color, id, transform, truncate, variant, visuallyHidden, weight, }: TextProps): React.JSX.Element;
70
75
  //# sourceMappingURL=Text.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../src/Text/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAKrE,MAAM,MAAM,MAAM,GACd,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,QAAQ,GACR,GAAG,GACH,MAAM,GACN,QAAQ,CAAC;AACb,MAAM,MAAM,SAAS,GAAG,mBAAmB,CAAC,YAAY,CAAC,CAAC;AAC1D,MAAM,MAAM,WAAW,GAAG,oBAAoB,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;AACvE,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,QAAQ,GAAG,UAAU,GAAG,MAAM,CAAC;AAEnE,MAAM,MAAM,SAAS,GAAG;IACtB,2CAA2C;IAC3C,SAAS,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,GAAG,SAAS,CAAC;IAEnD,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,qDAAqD;IACrD,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,sBAAsB;IACtB,QAAQ,EAAE,SAAS,CAAC;IACpB,2BAA2B;IAC3B,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,wBAAwB;IACxB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,2CAA2C;IAC3C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,gDAAgD;IAChD,OAAO,CAAC,EAAE,WAAW,CAAC;IACtB,oDAAoD;IACpD,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,4BAA4B;IAC5B,MAAM,CAAC,EAAE,UAAU,CAAC;CACrB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCG;AACH,wBAAgB,IAAI,CAAC,EACnB,SAAS,EACT,EAAE,EAAE,SAAkB,EACtB,SAAiB,EACjB,QAAQ,EACR,KAAK,EACL,EAAE,EACF,QAAgB,EAChB,OAAO,EACP,cAAsB,EACtB,MAAM,GACP,EAAE,SAAS,qBAqBX"}
1
+ {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../src/Text/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACzD,OAAO,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAUnE,MAAM,MAAM,MAAM,GACd,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,QAAQ,GACR,GAAG,GACH,MAAM,GACN,QAAQ,CAAC;AACb,MAAM,MAAM,SAAS,GACjB,iBAAiB,GACjB,QAAQ,GACR,QAAQ,GACR,UAAU,GACV,WAAW,GACX,cAAc,GACd,SAAS,GACT,SAAS,GACT,SAAS,CAAC;AACd,MAAM,MAAM,WAAW,GAAG,oBAAoB,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;AACvE,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,QAAQ,GAAG,UAAU,GAAG,MAAM,CAAC;AACnE,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,YAAY,GAAG,WAAW,GAAG,WAAW,CAAC;AAE9E,MAAM,MAAM,SAAS,GAAG;IACtB,2CAA2C;IAC3C,SAAS,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,GAAG,SAAS,CAAC;IAEnD,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,qDAAqD;IACrD,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,sBAAsB;IACtB,QAAQ,EAAE,SAAS,CAAC;IACpB,2BAA2B;IAC3B,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,wBAAwB;IACxB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,0BAA0B;IAC1B,IAAI,CAAC,EAAE,cAAc,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC;IACtC,qBAAqB;IACrB,SAAS,CAAC,EAAE,aAAa,CAAC;IAC1B,2CAA2C;IAC3C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,gDAAgD;IAChD,OAAO,CAAC,EAAE,WAAW,CAAC;IACtB,oDAAoD;IACpD,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,4BAA4B;IAC5B,MAAM,CAAC,EAAE,UAAU,CAAC;CACrB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCG;AACH,wBAAgB,IAAI,CAAC,EACnB,SAAS,EACT,EAAE,EAAE,SAAkB,EACtB,SAAiB,EACjB,QAAQ,EACR,KAAK,EACL,EAAE,EACF,SAAkB,EAClB,QAAgB,EAChB,OAAO,EACP,cAAsB,EACtB,MAAM,GACP,EAAE,SAAS,qBA2BX"}
@@ -1 +1 @@
1
- {"version":3,"file":"Text.stories.d.ts","sourceRoot":"","sources":["../../src/Text/Text.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAMlD,OAAO,EAAE,IAAI,EAAa,MAAM,QAAQ,CAAC;AAEzC,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAInC,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,IAAI,CAO3B,CAAC;AAEF,eAAe,IAAI,CAAC;AAEpB,eAAO,MAAM,QAAQ,EAAE,KAKtB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAmBtB,CAAC"}
1
+ {"version":3,"file":"Text.stories.d.ts","sourceRoot":"","sources":["../../src/Text/Text.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAMlD,OAAO,EAAE,IAAI,EAAa,MAAM,QAAQ,CAAC;AAEzC,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAInC,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,IAAI,CAY3B,CAAC;AAEF,eAAe,IAAI,CAAC;AAEpB,eAAO,MAAM,QAAQ,EAAE,KAKtB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAmBtB,CAAC"}
package/Text/index.js CHANGED
@@ -1,87 +1,4 @@
1
1
  "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropSymbols = Object.getOwnPropertySymbols;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __propIsEnum = Object.prototype.propertyIsEnumerable;
6
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
7
- var __spreadValues = (a, b) => {
8
- for (var prop in b || (b = {}))
9
- if (__hasOwnProp.call(b, prop))
10
- __defNormalProp(a, prop, b[prop]);
11
- if (__getOwnPropSymbols)
12
- for (var prop of __getOwnPropSymbols(b)) {
13
- if (__propIsEnum.call(b, prop))
14
- __defNormalProp(a, prop, b[prop]);
15
- }
16
- return a;
17
- };
18
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
19
- const React = require("react");
20
- const utilities_css = require("../utilities/css.js");
21
- const Text$1 = "_Text_wcfiy_5";
22
- const heading1 = "_heading1_wcfiy_13";
23
- const heading2 = "_heading2_wcfiy_30";
24
- const heading3 = "_heading3_wcfiy_47";
25
- const heading4 = "_heading4_wcfiy_64";
26
- const heading5 = "_heading5_wcfiy_72";
27
- const subtitle1 = "_subtitle1_wcfiy_80";
28
- const subtitle2 = "_subtitle2_wcfiy_88";
29
- const body1 = "_body1_wcfiy_96";
30
- const body2 = "_body2_wcfiy_104";
31
- const caption = "_caption_wcfiy_112";
32
- const overline = "_overline_wcfiy_120";
33
- const button = "_button_wcfiy_128";
34
- const normal = "_normal_wcfiy_144";
35
- const medium = "_medium_wcfiy_148";
36
- const semibold = "_semibold_wcfiy_152";
37
- const bold = "_bold_wcfiy_156";
38
- const truncate = "_truncate_wcfiy_160";
39
- const block = "_block_wcfiy_166";
40
- const visuallyHidden = "_visuallyHidden_wcfiy_170";
41
- const start = "_start_wcfiy_183";
42
- const center = "_center_wcfiy_187";
43
- const end = "_end_wcfiy_191";
44
- const justify = "_justify_wcfiy_195";
45
- const numeric = "_numeric_wcfiy_203";
46
- const styles = {
47
- Text: Text$1,
48
- heading1,
49
- heading2,
50
- heading3,
51
- heading4,
52
- heading5,
53
- subtitle1,
54
- subtitle2,
55
- body1,
56
- body2,
57
- caption,
58
- overline,
59
- button,
60
- "small-button": "_small-button_wcfiy_136",
61
- normal,
62
- medium,
63
- semibold,
64
- bold,
65
- truncate,
66
- block,
67
- visuallyHidden,
68
- start,
69
- center,
70
- end,
71
- justify,
72
- "break": "_break_wcfiy_199",
73
- numeric
74
- };
75
- function Text({ alignment, as: Component = "span", breakWord = false, children, color, id, truncate: truncate2 = false, variant, visuallyHidden: visuallyHidden2 = false, weight }) {
76
- const className = utilities_css.classNames(styles.Text, variant && styles[cleanVariant(variant)], weight && styles[weight], (alignment || truncate2) && styles.block, alignment && styles[alignment], breakWord && styles.break, truncate2 && styles.truncate, visuallyHidden2 && styles.visuallyHidden);
77
- const style = __spreadValues({}, utilities_css.getComponentThemeToken("text", "color", "color.text", color));
78
- return React.createElement(Component, {
79
- className,
80
- style,
81
- id: id ? id : void 0
82
- }, children);
83
- }
84
- function cleanVariant(variant) {
85
- return variant.replace(/_/, "-");
86
- }
87
- exports.Text = Text;
3
+ const Text = require("../__chunks__/Text-CEI17LPu.js");
4
+ exports.Text = Text.Text;
package/Text/index.mjs CHANGED
@@ -1,87 +1,4 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropSymbols = Object.getOwnPropertySymbols;
3
- var __hasOwnProp = Object.prototype.hasOwnProperty;
4
- var __propIsEnum = Object.prototype.propertyIsEnumerable;
5
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
6
- var __spreadValues = (a, b) => {
7
- for (var prop in b || (b = {}))
8
- if (__hasOwnProp.call(b, prop))
9
- __defNormalProp(a, prop, b[prop]);
10
- if (__getOwnPropSymbols)
11
- for (var prop of __getOwnPropSymbols(b)) {
12
- if (__propIsEnum.call(b, prop))
13
- __defNormalProp(a, prop, b[prop]);
14
- }
15
- return a;
16
- };
17
- import React__default from "react";
18
- import { classNames, getComponentThemeToken } from "../utilities/css.mjs";
19
- const Text$1 = "_Text_wcfiy_5";
20
- const heading1 = "_heading1_wcfiy_13";
21
- const heading2 = "_heading2_wcfiy_30";
22
- const heading3 = "_heading3_wcfiy_47";
23
- const heading4 = "_heading4_wcfiy_64";
24
- const heading5 = "_heading5_wcfiy_72";
25
- const subtitle1 = "_subtitle1_wcfiy_80";
26
- const subtitle2 = "_subtitle2_wcfiy_88";
27
- const body1 = "_body1_wcfiy_96";
28
- const body2 = "_body2_wcfiy_104";
29
- const caption = "_caption_wcfiy_112";
30
- const overline = "_overline_wcfiy_120";
31
- const button = "_button_wcfiy_128";
32
- const normal = "_normal_wcfiy_144";
33
- const medium = "_medium_wcfiy_148";
34
- const semibold = "_semibold_wcfiy_152";
35
- const bold = "_bold_wcfiy_156";
36
- const truncate = "_truncate_wcfiy_160";
37
- const block = "_block_wcfiy_166";
38
- const visuallyHidden = "_visuallyHidden_wcfiy_170";
39
- const start = "_start_wcfiy_183";
40
- const center = "_center_wcfiy_187";
41
- const end = "_end_wcfiy_191";
42
- const justify = "_justify_wcfiy_195";
43
- const numeric = "_numeric_wcfiy_203";
44
- const styles = {
45
- Text: Text$1,
46
- heading1,
47
- heading2,
48
- heading3,
49
- heading4,
50
- heading5,
51
- subtitle1,
52
- subtitle2,
53
- body1,
54
- body2,
55
- caption,
56
- overline,
57
- button,
58
- "small-button": "_small-button_wcfiy_136",
59
- normal,
60
- medium,
61
- semibold,
62
- bold,
63
- truncate,
64
- block,
65
- visuallyHidden,
66
- start,
67
- center,
68
- end,
69
- justify,
70
- "break": "_break_wcfiy_199",
71
- numeric
72
- };
73
- function Text({ alignment, as: Component = "span", breakWord = false, children, color, id, truncate: truncate2 = false, variant, visuallyHidden: visuallyHidden2 = false, weight }) {
74
- const className = classNames(styles.Text, variant && styles[cleanVariant(variant)], weight && styles[weight], (alignment || truncate2) && styles.block, alignment && styles[alignment], breakWord && styles.break, truncate2 && styles.truncate, visuallyHidden2 && styles.visuallyHidden);
75
- const style = __spreadValues({}, getComponentThemeToken("text", "color", "color.text", color));
76
- return React__default.createElement(Component, {
77
- className,
78
- style,
79
- id: id ? id : void 0
80
- }, children);
81
- }
82
- function cleanVariant(variant) {
83
- return variant.replace(/_/, "-");
84
- }
1
+ import { T } from "../__chunks__/Text-D8wg72pq.mjs";
85
2
  export {
86
- Text
3
+ T as Text
87
4
  };
@@ -15,7 +15,8 @@ export type TextFieldProps = Omit<InputFieldProps, "isMultiline" | "rows">;
15
15
  * When `errorText` is supplied with `validationState="invalid"`, `helperText` is overriden.
16
16
  *
17
17
  * Labels should be included on all text fields as they describe the purpose of the form control.
18
- * In situations when you may want the label to be visually hidden, use the `isLabelVisuallyHidden` prop.
18
+ * In situations when you may want the label to be visually hidden, omit the label and provide an
19
+ * `aria-label`.
19
20
  *
20
21
  * @example
21
22
  * _Email with autoFocus:_
@@ -71,8 +72,7 @@ export type TextFieldProps = Omit<InputFieldProps, "isMultiline" | "rows">;
71
72
  * <>
72
73
  * <TextField
73
74
  * type="search"
74
- * label="Search for carriers" // visually hidden but still accessible via isLabelVisuallyHidden prop
75
- * isLabelVisuallyHidden
75
+ * aria-label="Search for carriers"
76
76
  * iconAtStart={SearchIcon}
77
77
  * value={searchedValue}
78
78
  * onChange={(inputValue) => setSearchedValue(inputValue)} // value is returned automatically via react-aria
@@ -1 +1 @@
1
- {"version":3,"file":"TextField.d.ts","sourceRoot":"","sources":["../../src/TextField/TextField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAc,eAAe,EAAE,MAAM,eAAe,CAAC;AAE5D,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,eAAe,EAAE,aAAa,GAAG,MAAM,CAAC,CAAC;AAE3E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwGG;AACH,wBAAgB,SAAS,CAAC,KAAK,EAAE,cAAc,qBAwC9C"}
1
+ {"version":3,"file":"TextField.d.ts","sourceRoot":"","sources":["../../src/TextField/TextField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAc,eAAe,EAAE,MAAM,eAAe,CAAC;AAE5D,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,eAAe,EAAE,aAAa,GAAG,MAAM,CAAC,CAAC;AAE3E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwGG;AACH,wBAAgB,SAAS,CAAC,KAAK,EAAE,cAAc,qBAuB9C"}
@@ -6,6 +6,7 @@ export default meta;
6
6
  export declare const Standard: Story;
7
7
  export declare const Password: Story;
8
8
  export declare const Icon: Story;
9
+ export declare const PrefixAndSuffix: Story;
9
10
  export declare const SmallTextFields: Story;
10
11
  export declare const LargeTextFields: Story;
11
12
  export declare const LabelWithEmphasis: Story;
@@ -1 +1 @@
1
- {"version":3,"file":"TextField.stories.d.ts","sourceRoot":"","sources":["../../src/TextField/TextField.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAQlD,OAAO,EAAE,SAAS,EAAkB,MAAM,aAAa,CAAC;AAExD,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,SAAS,CAAC,CAAC;AAIxC,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,SAAS,CAIhC,CAAC;AAEF,eAAe,IAAI,CAAC;AAEpB,eAAO,MAAM,QAAQ,EAAE,KAOtB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAQtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,KAQlB,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,KAyB7B,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,KAyB7B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,KAO/B,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,KAOnB,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KAMjC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAsEtB,CAAC"}
1
+ {"version":3,"file":"TextField.stories.d.ts","sourceRoot":"","sources":["../../src/TextField/TextField.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAQlD,OAAO,EAAE,SAAS,EAAkB,MAAM,aAAa,CAAC;AAExD,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,SAAS,CAAC,CAAC;AAIxC,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,SAAS,CAIhC,CAAC;AAEF,eAAe,IAAI,CAAC;AAEpB,eAAO,MAAM,QAAQ,EAAE,KAOtB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAQtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,KAQlB,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,KAS7B,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,KAiC7B,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,KAiC7B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,KAO/B,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,KAOnB,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KAKjC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAqEtB,CAAC"}
@@ -1,35 +1,45 @@
1
1
  "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
6
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
7
+ var __spreadValues = (a, b) => {
8
+ for (var prop in b || (b = {}))
9
+ if (__hasOwnProp.call(b, prop))
10
+ __defNormalProp(a, prop, b[prop]);
11
+ if (__getOwnPropSymbols)
12
+ for (var prop of __getOwnPropSymbols(b)) {
13
+ if (__propIsEnum.call(b, prop))
14
+ __defNormalProp(a, prop, b[prop]);
15
+ }
16
+ return a;
17
+ };
18
+ var __objRest = (source, exclude) => {
19
+ var target = {};
20
+ for (var prop in source)
21
+ if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
22
+ target[prop] = source[prop];
23
+ if (source != null && __getOwnPropSymbols)
24
+ for (var prop of __getOwnPropSymbols(source)) {
25
+ if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
26
+ target[prop] = source[prop];
27
+ }
28
+ return target;
29
+ };
2
30
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
31
  const React = require("react");
4
- const InputField_index = require("../InputField/index.js");
5
- require("../utilities/css.js");
6
- require("../__chunks__/InputIcon-d3963cf8.js");
7
- require("../Text/index.js");
8
- require("../Icon/index.js");
9
- require("../__chunks__/index-3985350a.js");
10
- require("../__chunks__/import-a1e0f814.js");
11
- require("../__chunks__/omit-fca26542.js");
12
- require("../__chunks__/import-2b302763.js");
13
- require("../__chunks__/import-24a482e1.js");
32
+ const InputField = require("../__chunks__/InputField-BGBRvVMR.js");
14
33
  function TextField(props) {
15
- const { type = "text", size = "md", isLabelVisuallyHidden = false, isDisabled = false, isRequired = false, validationState = "valid", isLabelEmphasized = false, autoFocus = false, label, errorText, helperText, placeholder, value, defaultValue, iconAtStart, iconAtEnd } = props;
16
- return React.createElement(InputField_index.InputField, {
34
+ const _a = props, { type = "text", size = "md", isDisabled = false, isRequired = false, validationState = "valid", isLabelEmphasized = false, autoFocus = false } = _a, restProps = __objRest(_a, ["type", "size", "isDisabled", "isRequired", "validationState", "isLabelEmphasized", "autoFocus"]);
35
+ return React.createElement(InputField.InputField, __spreadValues({
17
36
  type,
18
37
  size,
19
- isLabelVisuallyHidden,
20
38
  isDisabled,
21
39
  isRequired,
22
40
  validationState,
23
41
  isLabelEmphasized,
24
- autoFocus,
25
- label,
26
- errorText,
27
- helperText,
28
- placeholder,
29
- value,
30
- defaultValue,
31
- iconAtStart,
32
- iconAtEnd
33
- });
42
+ autoFocus
43
+ }, restProps));
34
44
  }
35
45
  exports.TextField = TextField;
@@ -1,34 +1,44 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
3
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
4
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
5
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
6
+ var __spreadValues = (a, b) => {
7
+ for (var prop in b || (b = {}))
8
+ if (__hasOwnProp.call(b, prop))
9
+ __defNormalProp(a, prop, b[prop]);
10
+ if (__getOwnPropSymbols)
11
+ for (var prop of __getOwnPropSymbols(b)) {
12
+ if (__propIsEnum.call(b, prop))
13
+ __defNormalProp(a, prop, b[prop]);
14
+ }
15
+ return a;
16
+ };
17
+ var __objRest = (source, exclude) => {
18
+ var target = {};
19
+ for (var prop in source)
20
+ if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
21
+ target[prop] = source[prop];
22
+ if (source != null && __getOwnPropSymbols)
23
+ for (var prop of __getOwnPropSymbols(source)) {
24
+ if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
25
+ target[prop] = source[prop];
26
+ }
27
+ return target;
28
+ };
1
29
  import React__default from "react";
2
- import { InputField } from "../InputField/index.mjs";
3
- import "../utilities/css.mjs";
4
- import "../__chunks__/InputIcon-2317befd.mjs";
5
- import "../Text/index.mjs";
6
- import "../Icon/index.mjs";
7
- import "../__chunks__/index-29d7bca9.mjs";
8
- import "../__chunks__/import-19bc38ac.mjs";
9
- import "../__chunks__/omit-f17deb8f.mjs";
10
- import "../__chunks__/import-3d962a94.mjs";
11
- import "../__chunks__/import-29af6941.mjs";
30
+ import { I as InputField } from "../__chunks__/InputField-BI73lSp6.mjs";
12
31
  function TextField(props) {
13
- const { type = "text", size = "md", isLabelVisuallyHidden = false, isDisabled = false, isRequired = false, validationState = "valid", isLabelEmphasized = false, autoFocus = false, label, errorText, helperText, placeholder, value, defaultValue, iconAtStart, iconAtEnd } = props;
14
- return React__default.createElement(InputField, {
32
+ const _a = props, { type = "text", size = "md", isDisabled = false, isRequired = false, validationState = "valid", isLabelEmphasized = false, autoFocus = false } = _a, restProps = __objRest(_a, ["type", "size", "isDisabled", "isRequired", "validationState", "isLabelEmphasized", "autoFocus"]);
33
+ return React__default.createElement(InputField, __spreadValues({
15
34
  type,
16
35
  size,
17
- isLabelVisuallyHidden,
18
36
  isDisabled,
19
37
  isRequired,
20
38
  validationState,
21
39
  isLabelEmphasized,
22
- autoFocus,
23
- label,
24
- errorText,
25
- helperText,
26
- placeholder,
27
- value,
28
- defaultValue,
29
- iconAtStart,
30
- iconAtEnd
31
- });
40
+ autoFocus
41
+ }, restProps));
32
42
  }
33
43
  export {
34
44
  TextField
@@ -15,7 +15,8 @@ export type TextareaProps = Omit<InputFieldProps, "type" | "iconAtStart" | "icon
15
15
  * Use this component when you want to allow users to enter a sizeable amount of free-form text.
16
16
  *
17
17
  * Labels should always be included as they describe the purpose of the textarea.
18
- * In situations when you may want the label to be visually hidden, use the `isLabelVisuallyHidden` prop.
18
+ * In situations when you may want the label to be visually hidden, omit the label and provide an
19
+ * `aria-label`.
19
20
  *
20
21
  * @example
21
22
  * _Description with helper text:_
@@ -48,8 +49,7 @@ export type TextareaProps = Omit<InputFieldProps, "type" | "iconAtStart" | "icon
48
49
  * return (
49
50
  * <>
50
51
  * <Textarea
51
- * label="Label" // visually hidden but still accessible via isLabelVisuallyHidden prop
52
- * isLabelVisuallyHidden
52
+ * aria-label="Label"
53
53
  * value={description}
54
54
  * onChange={(inputValue) => setDescription(inputValue)} // value is returned automatically via react-aria
55
55
  * placeholder="Enter free-form text"
@@ -1 +1 @@
1
- {"version":3,"file":"Textarea.d.ts","sourceRoot":"","sources":["../../src/Textarea/Textarea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAc,eAAe,EAAE,MAAM,eAAe,CAAC;AAE5D,MAAM,MAAM,YAAY,GAAG,IAAI,GAAG,IAAI,CAAC;AAEvC,MAAM,MAAM,aAAa,GAAG,IAAI,CAC9B,eAAe,EACf,MAAM,GAAG,aAAa,GAAG,WAAW,CACrC,GAAG;IACF;;;OAGG;IACH,IAAI,CAAC,EAAE,YAAY,CAAC;CACrB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0EG;AACH,wBAAgB,QAAQ,CAAC,KAAK,EAAE,aAAa,qBAoC5C"}
1
+ {"version":3,"file":"Textarea.d.ts","sourceRoot":"","sources":["../../src/Textarea/Textarea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAc,eAAe,EAAE,MAAM,eAAe,CAAC;AAE5D,MAAM,MAAM,YAAY,GAAG,IAAI,GAAG,IAAI,CAAC;AAEvC,MAAM,MAAM,aAAa,GAAG,IAAI,CAC9B,eAAe,EACf,MAAM,GAAG,aAAa,GAAG,WAAW,CACrC,GAAG;IACF;;;OAGG;IACH,IAAI,CAAC,EAAE,YAAY,CAAC;CACrB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0EG;AACH,wBAAgB,QAAQ,CAAC,KAAK,EAAE,aAAa,qBAwB5C"}
@@ -1 +1 @@
1
- {"version":3,"file":"Textarea.stories.d.ts","sourceRoot":"","sources":["../../src/Textarea/Textarea.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAGlD,OAAO,EAAE,QAAQ,EAAiB,MAAM,YAAY,CAAC;AAErD,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,QAAQ,CAAC,CAAC;AAIvC,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,QAAQ,CAS/B,CAAC;AAEF,eAAe,IAAI,CAAC;AAEpB,eAAO,MAAM,QAAQ,EAAE,KAOtB,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,KAQ7B,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,KAQ3B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,KAO/B,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,KAOnB,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KAMjC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAuDtB,CAAC"}
1
+ {"version":3,"file":"Textarea.stories.d.ts","sourceRoot":"","sources":["../../src/Textarea/Textarea.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAGlD,OAAO,EAAE,QAAQ,EAAiB,MAAM,YAAY,CAAC;AAErD,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,QAAQ,CAAC,CAAC;AAIvC,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,QAAQ,CAS/B,CAAC;AAEF,eAAe,IAAI,CAAC;AAEpB,eAAO,MAAM,QAAQ,EAAE,KAOtB,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,KAQ7B,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,KAQ3B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,KAO/B,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,KAOnB,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KAKjC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAsDtB,CAAC"}
package/Textarea/index.js CHANGED
@@ -1,34 +1,46 @@
1
1
  "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
6
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
7
+ var __spreadValues = (a, b) => {
8
+ for (var prop in b || (b = {}))
9
+ if (__hasOwnProp.call(b, prop))
10
+ __defNormalProp(a, prop, b[prop]);
11
+ if (__getOwnPropSymbols)
12
+ for (var prop of __getOwnPropSymbols(b)) {
13
+ if (__propIsEnum.call(b, prop))
14
+ __defNormalProp(a, prop, b[prop]);
15
+ }
16
+ return a;
17
+ };
18
+ var __objRest = (source, exclude) => {
19
+ var target = {};
20
+ for (var prop in source)
21
+ if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
22
+ target[prop] = source[prop];
23
+ if (source != null && __getOwnPropSymbols)
24
+ for (var prop of __getOwnPropSymbols(source)) {
25
+ if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
26
+ target[prop] = source[prop];
27
+ }
28
+ return target;
29
+ };
2
30
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
31
  const React = require("react");
4
- const InputField_index = require("../InputField/index.js");
5
- require("../utilities/css.js");
6
- require("../__chunks__/InputIcon-d3963cf8.js");
7
- require("../Text/index.js");
8
- require("../Icon/index.js");
9
- require("../__chunks__/index-3985350a.js");
10
- require("../__chunks__/import-a1e0f814.js");
11
- require("../__chunks__/omit-fca26542.js");
12
- require("../__chunks__/import-2b302763.js");
13
- require("../__chunks__/import-24a482e1.js");
32
+ const InputField = require("../__chunks__/InputField-BGBRvVMR.js");
14
33
  function Textarea(props) {
15
- const { size = "md", isLabelVisuallyHidden = false, isDisabled = false, isRequired = false, validationState = "valid", isLabelEmphasized = false, autoFocus = false, label, errorText, helperText, placeholder, value, defaultValue, rows = 1 } = props;
16
- return React.createElement(InputField_index.InputField, {
34
+ const _a = props, { size = "md", isDisabled = false, isRequired = false, validationState = "valid", isLabelEmphasized = false, autoFocus = false, rows = 1 } = _a, restProps = __objRest(_a, ["size", "isDisabled", "isRequired", "validationState", "isLabelEmphasized", "autoFocus", "rows"]);
35
+ return React.createElement(InputField.InputField, __spreadValues({
17
36
  isMultiline: true,
18
37
  size,
19
- isLabelVisuallyHidden,
20
38
  isDisabled,
21
39
  isRequired,
22
40
  validationState,
23
41
  isLabelEmphasized,
24
42
  autoFocus,
25
- label,
26
- errorText,
27
- helperText,
28
- placeholder,
29
- value,
30
- defaultValue,
31
43
  rows
32
- });
44
+ }, restProps));
33
45
  }
34
46
  exports.Textarea = Textarea;