@pingux/astro 2.155.1 → 2.157.1-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1576) hide show
  1. package/lib/cjs/api/users.js +3 -5
  2. package/lib/cjs/components/AIComponents/AIPanel/AIPanel.d.ts +1 -2
  3. package/lib/cjs/components/AIComponents/AIPanel/AIPanel.js +1 -2
  4. package/lib/cjs/components/AIComponents/AIPanel/AIPanel.stories.d.ts +3 -3
  5. package/lib/cjs/components/AIComponents/AIPanel/AIPanel.stories.js +4 -7
  6. package/lib/cjs/components/AIComponents/AIPanel/AIPanel.test.js +1 -2
  7. package/lib/cjs/components/AIComponents/AIPanel/AIPanelHeader.d.ts +1 -2
  8. package/lib/cjs/components/AIComponents/AIPanel/AIPanelHeader.js +1 -2
  9. package/lib/cjs/components/AIComponents/Attachment/Attachment.d.ts +1 -2
  10. package/lib/cjs/components/AIComponents/Attachment/Attachment.js +4 -6
  11. package/lib/cjs/components/AIComponents/Attachment/Attachment.styles.js +2 -3
  12. package/lib/cjs/components/AIComponents/Attachment/Attachment.test.js +3 -2
  13. package/lib/cjs/components/AIComponents/Attachment/constants.js +2 -3
  14. package/lib/cjs/components/AIComponents/Prompt/Prompt.d.ts +1 -2
  15. package/lib/cjs/components/AIComponents/Prompt/Prompt.js +1 -2
  16. package/lib/cjs/components/AIComponents/Prompt/Prompt.stories.d.ts +3 -3
  17. package/lib/cjs/components/AIComponents/Prompt/Prompt.stories.js +3 -5
  18. package/lib/cjs/components/AIComponents/PromptInput/PromptInput.js +4 -6
  19. package/lib/cjs/components/AIComponents/PromptInput/PromptInput.stories.d.ts +3 -3
  20. package/lib/cjs/components/AIComponents/PromptInput/PromptInput.stories.js +6 -9
  21. package/lib/cjs/components/AIComponents/PromptInput/PromptInput.test.js +38 -29
  22. package/lib/cjs/components/AIComponents/PromptInput/PromptUploadButton.d.ts +1 -2
  23. package/lib/cjs/components/AIComponents/PromptInput/PromptUploadButton.js +3 -4
  24. package/lib/cjs/components/AIComponents/Response/Response.d.ts +1 -2
  25. package/lib/cjs/components/AIComponents/Response/Response.js +2 -4
  26. package/lib/cjs/components/AIComponents/Response/Response.stories.d.ts +4 -4
  27. package/lib/cjs/components/AIComponents/Response/Response.stories.js +4 -7
  28. package/lib/cjs/components/AIComponents/Response/Response.test.js +256 -0
  29. package/lib/cjs/components/AIComponents/Response/ResponseAttachment.d.ts +1 -2
  30. package/lib/cjs/components/AIComponents/Response/ResponseAttachment.js +2 -4
  31. package/lib/cjs/components/AIComponents/Response/ResponseList.d.ts +1 -2
  32. package/lib/cjs/components/AIComponents/Response/ResponseList.js +2 -4
  33. package/lib/cjs/components/AIComponents/Response/ResponseLoader.js +2 -4
  34. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/MarkdownContainer.d.ts +1 -2
  35. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/MarkdownContainer.js +2 -4
  36. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/MarkdownListWrapper.d.ts +1 -2
  37. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/MarkdownListWrapper.js +3 -4
  38. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/MarkdownTextContainer.d.ts +1 -2
  39. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/MarkdownTextContainer.js +3 -6
  40. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/MarkdownTextWrapper.d.ts +1 -2
  41. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/MarkdownTextWrapper.js +3 -4
  42. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/MarkdownWrapper.d.ts +1 -2
  43. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/MarkdownWrapper.js +2 -4
  44. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/ResponseListItem.d.ts +1 -2
  45. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/ResponseListItem.js +2 -4
  46. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/ResponseMarkdown.d.ts +1 -1
  47. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/ResponseMarkdown.js +6 -10
  48. package/lib/cjs/components/AIComponents/Response/ResponseText.d.ts +1 -2
  49. package/lib/cjs/components/AIComponents/Response/ResponseText.js +1 -2
  50. package/lib/cjs/components/AIComponents/Response/ResponseToolbar.d.ts +1 -2
  51. package/lib/cjs/components/AIComponents/Response/ResponseToolbar.js +2 -4
  52. package/lib/cjs/components/AIComponents/Response/ResponseToolbarIcon.d.ts +1 -2
  53. package/lib/cjs/components/AIComponents/Response/ResponseToolbarIcon.js +2 -4
  54. package/lib/cjs/components/AIComponents/Suggestions/Suggestion.d.ts +1 -2
  55. package/lib/cjs/components/AIComponents/Suggestions/Suggestion.js +1 -2
  56. package/lib/cjs/components/AIComponents/Suggestions/Suggestions.d.ts +1 -2
  57. package/lib/cjs/components/AIComponents/Suggestions/Suggestions.js +2 -4
  58. package/lib/cjs/components/AIComponents/Suggestions/Suggestions.stories.d.ts +4 -4
  59. package/lib/cjs/components/AIComponents/Suggestions/Suggestions.stories.js +4 -7
  60. package/lib/cjs/components/AccordionGridGroup/AccordionGrid.styles.js +4 -5
  61. package/lib/cjs/components/AccordionGridGroup/AccordionGridGroup.js +5 -8
  62. package/lib/cjs/components/AccordionGridGroup/AccordionGridGroup.stories.js +16 -17
  63. package/lib/cjs/components/AccordionGridGroup/AccordionGridGroup.test.js +169 -93
  64. package/lib/cjs/components/AccordionGridItem/AccordionGridItem.js +4 -5
  65. package/lib/cjs/components/AccordionGridItem/AccordionGridItemBody.js +2 -4
  66. package/lib/cjs/components/AccordionGridItem/AccordionGridItemHeader.js +2 -4
  67. package/lib/cjs/components/AccordionGroup/Accordion.styles.js +5 -7
  68. package/lib/cjs/components/AccordionGroup/AccordionGroup.js +4 -6
  69. package/lib/cjs/components/AccordionGroup/AccordionGroup.stories.d.ts +11 -11
  70. package/lib/cjs/components/AccordionGroup/AccordionGroup.stories.js +13 -24
  71. package/lib/cjs/components/AccordionGroup/AccordionGroup.test.js +209 -99
  72. package/lib/cjs/components/AccordionItem/AccordionItem.d.ts +1 -1
  73. package/lib/cjs/components/AccordionItem/AccordionItem.js +3 -6
  74. package/lib/cjs/components/ArrayField/ArrayField.js +4 -6
  75. package/lib/cjs/components/ArrayField/ArrayField.stories.d.ts +4 -5
  76. package/lib/cjs/components/ArrayField/ArrayField.stories.js +9 -15
  77. package/lib/cjs/components/ArrayField/ArrayFieldDeleteButton.js +1 -2
  78. package/lib/cjs/components/AstroProvider/AstroProvider.js +7 -12
  79. package/lib/cjs/components/AstroProvider/AstroProvider.stories.js +3 -6
  80. package/lib/cjs/components/AstroProvider/index.js +1 -2
  81. package/lib/cjs/components/Avatar/Avatar.js +5 -8
  82. package/lib/cjs/components/Avatar/Avatar.stories.d.ts +2 -2
  83. package/lib/cjs/components/Avatar/Avatar.stories.js +9 -17
  84. package/lib/cjs/components/Avatar/stories/Avatar.chromatic.stories.js +3 -5
  85. package/lib/cjs/components/Avatar/stories/AvatarNextGen.chromatic.stories.d.ts +1 -2
  86. package/lib/cjs/components/Avatar/stories/AvatarNextGen.chromatic.stories.js +3 -5
  87. package/lib/cjs/components/Avatar/stories/AvatarNextGen.d.ts +1 -2
  88. package/lib/cjs/components/Avatar/stories/AvatarNextGen.js +1 -2
  89. package/lib/cjs/components/Avatar/stories/AvatarNextGenDark.chromatic.stories.d.ts +1 -2
  90. package/lib/cjs/components/Avatar/stories/AvatarNextGenDark.chromatic.stories.js +3 -5
  91. package/lib/cjs/components/Badge/Badge.js +3 -4
  92. package/lib/cjs/components/Badge/Badge.stories.js +7 -14
  93. package/lib/cjs/components/Badge/Badge.styles.js +8 -13
  94. package/lib/cjs/components/Badge/Convenience/ConvenienceBadges.stories.js +5 -10
  95. package/lib/cjs/components/Badge/Convenience/DefaultBadge.js +1 -2
  96. package/lib/cjs/components/Badge/Convenience/ErrorCalloutBadge.js +1 -2
  97. package/lib/cjs/components/Badge/Convenience/InfoCalloutBadge.js +1 -2
  98. package/lib/cjs/components/Badge/Convenience/RemovableBadge.js +1 -2
  99. package/lib/cjs/components/Badge/Convenience/RemovableBadge.test.js +32 -10
  100. package/lib/cjs/components/Badge/Convenience/SuccessCalloutBadge.js +1 -2
  101. package/lib/cjs/components/Badge/Convenience/WarningCalloutBadge.js +1 -2
  102. package/lib/cjs/components/Box/Box.js +5 -7
  103. package/lib/cjs/components/Box/Box.stories.d.ts +6 -6
  104. package/lib/cjs/components/Box/Box.stories.js +6 -11
  105. package/lib/cjs/components/Box/Box.styles.js +2 -3
  106. package/lib/cjs/components/Bracket/Bracket.js +2 -4
  107. package/lib/cjs/components/Bracket/Bracket.stories.d.ts +3 -4
  108. package/lib/cjs/components/Bracket/Bracket.stories.js +3 -6
  109. package/lib/cjs/components/Bracket/Bracket.styles.js +2 -3
  110. package/lib/cjs/components/Breadcrumbs/Breadcrumb.styles.js +4 -5
  111. package/lib/cjs/components/Breadcrumbs/BreadcrumbItem.js +5 -8
  112. package/lib/cjs/components/Breadcrumbs/Breadcrumbs.js +2 -4
  113. package/lib/cjs/components/Breadcrumbs/Breadcrumbs.stories.d.ts +2 -2
  114. package/lib/cjs/components/Breadcrumbs/Breadcrumbs.stories.js +3 -6
  115. package/lib/cjs/components/Breadcrumbs/Breadcrumbs.test.js +31 -9
  116. package/lib/cjs/components/Button/Button.js +10 -8
  117. package/lib/cjs/components/Button/Button.stories.d.ts +10 -11
  118. package/lib/cjs/components/Button/Button.stories.js +13 -23
  119. package/lib/cjs/components/Button/Button.test.js +65 -38
  120. package/lib/cjs/components/Button/Buttons.styles.d.ts +66 -27
  121. package/lib/cjs/components/Button/Buttons.styles.js +12 -21
  122. package/lib/cjs/components/Button/buttonAttributes.js +4 -5
  123. package/lib/cjs/components/Button/constants.js +2 -3
  124. package/lib/cjs/components/ButtonBar/ButtonBar.js +12 -6
  125. package/lib/cjs/components/ButtonBar/ButtonBar.stories.d.ts +2 -2
  126. package/lib/cjs/components/ButtonBar/ButtonBar.stories.js +5 -10
  127. package/lib/cjs/components/ButtonBar/ButtonBar.styles.js +4 -5
  128. package/lib/cjs/components/ButtonBar/ButtonBar.test.js +3 -3
  129. package/lib/cjs/components/Calendar/Calendar.js +6 -8
  130. package/lib/cjs/components/Calendar/Calendar.styles.js +4 -5
  131. package/lib/cjs/components/Calendar/Calendar.test.js +324 -180
  132. package/lib/cjs/components/Calendar/CalendarCell.js +2 -4
  133. package/lib/cjs/components/Calendar/CalendarGrid.d.ts +1 -2
  134. package/lib/cjs/components/Calendar/CalendarGrid.js +1 -2
  135. package/lib/cjs/components/Callout/Callout.js +8 -12
  136. package/lib/cjs/components/Callout/Callout.stories.d.ts +4 -5
  137. package/lib/cjs/components/Callout/Callout.stories.js +14 -19
  138. package/lib/cjs/components/Callout/Callout.styles.js +2 -3
  139. package/lib/cjs/components/Callout/Callout.test.js +2 -4
  140. package/lib/cjs/components/Callout/stories/CalloutNextGenComponent.d.ts +1 -2
  141. package/lib/cjs/components/Callout/stories/CalloutNextGenComponent.js +2 -3
  142. package/lib/cjs/components/Callout/stories/NextGenCallout.chromatic.stories.d.ts +1 -2
  143. package/lib/cjs/components/Callout/stories/NextGenCallout.chromatic.stories.js +3 -5
  144. package/lib/cjs/components/Callout/stories/NextGenDarkCallout.chomatic.stories.d.ts +1 -2
  145. package/lib/cjs/components/Callout/stories/NextGenDarkCallout.chomatic.stories.js +3 -5
  146. package/lib/cjs/components/Card/Card.js +4 -6
  147. package/lib/cjs/components/Card/Card.stories.d.ts +9 -10
  148. package/lib/cjs/components/Card/Card.stories.js +12 -21
  149. package/lib/cjs/components/Card/Card.styles.js +5 -7
  150. package/lib/cjs/components/Card/Card.test.js +107 -63
  151. package/lib/cjs/components/Card/cardAttributes.js +4 -5
  152. package/lib/cjs/components/Checkbox/Checkbox.js +2 -4
  153. package/lib/cjs/components/Checkbox/Checkbox.styles.js +2 -3
  154. package/lib/cjs/components/Checkbox/CheckboxBase.js +2 -4
  155. package/lib/cjs/components/CheckboxField/CheckboxField.js +6 -7
  156. package/lib/cjs/components/CheckboxField/CheckboxField.stories.d.ts +2 -2
  157. package/lib/cjs/components/CheckboxField/CheckboxField.stories.js +28 -38
  158. package/lib/cjs/components/CheckboxField/CheckboxField.test.js +235 -132
  159. package/lib/cjs/components/CodeEditor/CodeEditor.chromatic.stories.js +6 -11
  160. package/lib/cjs/components/CodeEditor/CodeEditor.js +4 -6
  161. package/lib/cjs/components/CodeEditor/CodeEditor.stories.d.ts +1 -1
  162. package/lib/cjs/components/CodeEditor/CodeEditor.stories.js +7 -13
  163. package/lib/cjs/components/CodeEditor/CodeEditor.styles.js +4 -5
  164. package/lib/cjs/components/CodeView/CodeView.js +24 -15
  165. package/lib/cjs/components/CodeView/CodeView.stories.d.ts +2 -2
  166. package/lib/cjs/components/CodeView/CodeView.stories.js +8 -16
  167. package/lib/cjs/components/CodeView/CodeView.styles.js +2 -3
  168. package/lib/cjs/components/CodeView/CodeView.test.js +117 -81
  169. package/lib/cjs/components/CollapsiblePanel/CollapsiblePanel.js +2 -4
  170. package/lib/cjs/components/CollapsiblePanel/CollapsiblePanel.stories.d.ts +2 -2
  171. package/lib/cjs/components/CollapsiblePanel/CollapsiblePanel.stories.js +2 -4
  172. package/lib/cjs/components/CollapsiblePanel/CollapsiblePanel.styles.js +36 -8
  173. package/lib/cjs/components/CollapsiblePanelContainer/CollapsiblePanelBadge.js +2 -4
  174. package/lib/cjs/components/CollapsiblePanelContainer/CollapsiblePanelContainer.js +2 -4
  175. package/lib/cjs/components/CollapsiblePanelContainer/CollapsiblePanelContainer.test.js +57 -20
  176. package/lib/cjs/components/CollapsiblePanelItem/CollapsiblePanelItem.js +2 -4
  177. package/lib/cjs/components/ColorField/ColorField.js +4 -6
  178. package/lib/cjs/components/ColorField/ColorField.stories.d.ts +2 -2
  179. package/lib/cjs/components/ColorField/ColorField.stories.js +7 -11
  180. package/lib/cjs/components/ColorField/ColorField.styles.js +5 -7
  181. package/lib/cjs/components/ColorField/ColorField.test.js +92 -39
  182. package/lib/cjs/components/ColorField/ColorFieldPreviewButton.js +2 -4
  183. package/lib/cjs/components/ComboBox/ComboBox.styles.js +4 -5
  184. package/lib/cjs/components/ComboBox/ComboBoxInput.js +6 -7
  185. package/lib/cjs/components/ComboBoxField/ComboBoxField.js +6 -7
  186. package/lib/cjs/components/ComboBoxField/ComboBoxField.stories.js +60 -83
  187. package/lib/cjs/components/ComboBoxField/ComboBoxField.test.js +967 -579
  188. package/lib/cjs/components/CopyText/CopyButton.js +2 -4
  189. package/lib/cjs/components/CopyText/CopyText.js +2 -4
  190. package/lib/cjs/components/CopyText/CopyText.stories.d.ts +2 -2
  191. package/lib/cjs/components/CopyText/CopyText.stories.js +5 -9
  192. package/lib/cjs/components/CopyText/CopyText.styles.js +5 -7
  193. package/lib/cjs/components/CopyText/CopyText.test.js +147 -120
  194. package/lib/cjs/components/DataTable/DataTable.js +7 -9
  195. package/lib/cjs/components/DataTable/DataTable.stories.d.ts +9 -9
  196. package/lib/cjs/components/DataTable/DataTable.stories.js +28 -38
  197. package/lib/cjs/components/DataTable/DataTable.styles.js +4 -5
  198. package/lib/cjs/components/DataTable/DataTable.test.js +360 -285
  199. package/lib/cjs/components/DataTable/DataTableBadge.js +2 -5
  200. package/lib/cjs/components/DataTable/DataTableMenu.js +2 -4
  201. package/lib/cjs/components/DataTable/DataTableMultiLine.js +2 -8
  202. package/lib/cjs/components/DataTable/DataTableVirtualizer.js +5 -8
  203. package/lib/cjs/components/DataTable/stories/DataTableNextGenComponent.d.ts +1 -2
  204. package/lib/cjs/components/DataTable/stories/DataTableNextGenComponent.js +2 -3
  205. package/lib/cjs/components/DataTable/stories/NextGenDarkDataTable.chomatic.stories.d.ts +13 -2
  206. package/lib/cjs/components/DataTable/stories/NextGenDarkDataTable.chomatic.stories.js +12 -4
  207. package/lib/cjs/components/DataTable/stories/NextGenDataTable.chromatic.stories.d.ts +1 -2
  208. package/lib/cjs/components/DataTable/stories/NextGenDataTable.chromatic.stories.js +3 -5
  209. package/lib/cjs/components/DatePicker/DateField.js +4 -6
  210. package/lib/cjs/components/DatePicker/DatePicker.js +7 -9
  211. package/lib/cjs/components/DatePicker/DatePicker.stories.js +18 -33
  212. package/lib/cjs/components/DatePicker/DatePicker.styles.js +5 -7
  213. package/lib/cjs/components/DatePicker/DatePicker.test.js +452 -265
  214. package/lib/cjs/components/DatePicker/DateSegment.js +2 -4
  215. package/lib/cjs/components/EditButton/EditButton.js +5 -8
  216. package/lib/cjs/components/EditButton/EditButton.stories.js +8 -13
  217. package/lib/cjs/components/EditButton/EditButton.test.js +34 -13
  218. package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +5 -9
  219. package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.stories.d.ts +6 -7
  220. package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.stories.js +20 -27
  221. package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +355 -176
  222. package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentalBreadcrumb.styles.js +4 -5
  223. package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentalBreadcrumbUniversal.test.js +6 -38
  224. package/lib/cjs/components/ExpandableText/ExpandableText.js +3 -4
  225. package/lib/cjs/components/ExpandableText/ExpandableText.stories.d.ts +2 -2
  226. package/lib/cjs/components/ExpandableText/ExpandableText.stories.js +3 -5
  227. package/lib/cjs/components/ExpandableText/ExpandableText.styles.js +2 -3
  228. package/lib/cjs/components/ExpandableText/ExpandableText.test.js +0 -1
  229. package/lib/cjs/components/FieldHelperText/FieldHelperText.js +4 -6
  230. package/lib/cjs/components/FieldHelperText/FieldHelperText.stories.d.ts +5 -6
  231. package/lib/cjs/components/FieldHelperText/FieldHelperText.stories.js +8 -13
  232. package/lib/cjs/components/FieldHelperText/FieldHelperText.styles.d.ts +66 -27
  233. package/lib/cjs/components/FieldHelperText/FieldHelperText.styles.js +4 -5
  234. package/lib/cjs/components/FileInputField/FileInputField.js +5 -8
  235. package/lib/cjs/components/FileInputField/FileInputField.stories.js +14 -25
  236. package/lib/cjs/components/FileInputField/FileInputField.styles.js +4 -5
  237. package/lib/cjs/components/FileInputField/FileInputField.test.js +174 -92
  238. package/lib/cjs/components/FileInputField/FileItem.js +4 -6
  239. package/lib/cjs/components/FileInputField/FileSelect.js +3 -4
  240. package/lib/cjs/components/FileInputField/FileSelectIcon.d.ts +1 -2
  241. package/lib/cjs/components/FileInputField/FileSelectIcon.js +1 -3
  242. package/lib/cjs/components/Footer/CopyrightText.d.ts +1 -2
  243. package/lib/cjs/components/Footer/CopyrightText.js +1 -2
  244. package/lib/cjs/components/Footer/Footer.js +2 -4
  245. package/lib/cjs/components/Footer/Footer.stories.d.ts +2 -2
  246. package/lib/cjs/components/Footer/Footer.stories.js +3 -5
  247. package/lib/cjs/components/Footer/Footer.styles.js +1 -2
  248. package/lib/cjs/components/Footer/Footer.test.js +1 -2
  249. package/lib/cjs/components/Footer/FooterNav.d.ts +1 -2
  250. package/lib/cjs/components/Footer/FooterNav.js +1 -2
  251. package/lib/cjs/components/Footer/FooterNavItem.d.ts +1 -1
  252. package/lib/cjs/components/Footer/FooterNavItem.js +1 -2
  253. package/lib/cjs/components/Footer/stories/FooterNextGenComponent.d.ts +1 -2
  254. package/lib/cjs/components/Footer/stories/FooterNextGenComponent.js +2 -3
  255. package/lib/cjs/components/Footer/stories/NextGenDarkFooterStory.chomatic.stories.d.ts +1 -2
  256. package/lib/cjs/components/Footer/stories/NextGenDarkFooterStory.chomatic.stories.js +3 -5
  257. package/lib/cjs/components/Footer/stories/NextGenFooterStory.chromatic.stories.d.ts +1 -2
  258. package/lib/cjs/components/Footer/stories/NextGenFooterStory.chromatic.stories.js +3 -5
  259. package/lib/cjs/components/Grid/Grid.js +2 -4
  260. package/lib/cjs/components/Grid/Grid.stories.d.ts +2 -2
  261. package/lib/cjs/components/Grid/Grid.stories.js +3 -5
  262. package/lib/cjs/components/Grid/Grid.styles.js +1 -2
  263. package/lib/cjs/components/GridList/GridList.d.ts +1 -2
  264. package/lib/cjs/components/GridList/GridList.js +4 -6
  265. package/lib/cjs/components/GridList/GridList.stories.d.ts +3 -4
  266. package/lib/cjs/components/GridList/GridList.stories.js +6 -9
  267. package/lib/cjs/components/GridList/GridList.styles.js +2 -3
  268. package/lib/cjs/components/GridList/GridList.test.js +65 -41
  269. package/lib/cjs/components/GridList/GridListRow.js +7 -9
  270. package/lib/cjs/components/GridList/gridListAttributes.js +2 -3
  271. package/lib/cjs/components/HelpHint/HelpHint.js +6 -8
  272. package/lib/cjs/components/HelpHint/HelpHint.stories.d.ts +2 -2
  273. package/lib/cjs/components/HelpHint/HelpHint.stories.js +7 -13
  274. package/lib/cjs/components/HelpHint/HelpHint.styles.js +5 -7
  275. package/lib/cjs/components/HelpHint/HelpHint.test.js +33 -26
  276. package/lib/cjs/components/Icon/Icon.js +4 -6
  277. package/lib/cjs/components/Icon/Icon.stories.d.ts +2 -2
  278. package/lib/cjs/components/Icon/Icon.stories.js +8 -13
  279. package/lib/cjs/components/Icon/Icon.test.js +1 -2
  280. package/lib/cjs/components/Icon/NoticeIcon.js +7 -10
  281. package/lib/cjs/components/IconBadge/IconBadge.js +4 -6
  282. package/lib/cjs/components/IconBadge/IconBadge.stories.d.ts +2 -2
  283. package/lib/cjs/components/IconBadge/IconBadge.stories.js +2 -4
  284. package/lib/cjs/components/IconButton/IconButton.js +10 -8
  285. package/lib/cjs/components/IconButton/IconButton.stories.d.ts +6 -7
  286. package/lib/cjs/components/IconButton/IconButton.stories.js +7 -14
  287. package/lib/cjs/components/IconButton/IconButton.styles.js +6 -9
  288. package/lib/cjs/components/IconButton/IconButton.test.js +139 -62
  289. package/lib/cjs/components/IconButton/iconButtonAttributes.d.ts +10 -9
  290. package/lib/cjs/components/IconButton/iconButtonAttributes.js +6 -9
  291. package/lib/cjs/components/IconButtonToggle/IconButtonToggle.js +2 -4
  292. package/lib/cjs/components/IconButtonToggle/IconButtonToggle.stories.d.ts +2 -2
  293. package/lib/cjs/components/IconButtonToggle/IconButtonToggle.stories.js +5 -9
  294. package/lib/cjs/components/IconWrapper/IconWrapper.js +4 -6
  295. package/lib/cjs/components/IconWrapper/IconWrapper.stories.d.ts +3 -3
  296. package/lib/cjs/components/IconWrapper/IconWrapper.stories.js +5 -7
  297. package/lib/cjs/components/IconWrapper/iconWrapperAttributes.js +2 -3
  298. package/lib/cjs/components/Image/Image.js +2 -4
  299. package/lib/cjs/components/Image/Image.stories.d.ts +2 -2
  300. package/lib/cjs/components/Image/Image.stories.js +11 -21
  301. package/lib/cjs/components/Image/Image.styles.js +2 -3
  302. package/lib/cjs/components/Image/Image.test.js +4 -3
  303. package/lib/cjs/components/ImageUploadField/ImagePreviewButton.js +2 -4
  304. package/lib/cjs/components/ImageUploadField/ImageUploadField.js +4 -6
  305. package/lib/cjs/components/ImageUploadField/ImageUploadField.stories.js +25 -37
  306. package/lib/cjs/components/ImageUploadField/ImageUploadField.test.js +97 -70
  307. package/lib/cjs/components/ImageUploadField/ImageUploadFieldBase.js +4 -6
  308. package/lib/cjs/components/ImageUploadField/imageUpload.js +4 -5
  309. package/lib/cjs/components/Input/Input.js +24 -9
  310. package/lib/cjs/components/Input/Input.stories.d.ts +2 -2
  311. package/lib/cjs/components/Input/Input.stories.js +5 -9
  312. package/lib/cjs/components/Input/Input.styles.js +15 -18
  313. package/lib/cjs/components/Input/Input.test.js +49 -16
  314. package/lib/cjs/components/Label/Label.js +3 -5
  315. package/lib/cjs/components/Label/Label.stories.d.ts +2 -2
  316. package/lib/cjs/components/Label/Label.stories.js +5 -9
  317. package/lib/cjs/components/Label/Label.styles.js +4 -5
  318. package/lib/cjs/components/Link/Link.js +2 -4
  319. package/lib/cjs/components/Link/Link.stories.d.ts +2 -2
  320. package/lib/cjs/components/Link/Link.stories.js +10 -4
  321. package/lib/cjs/components/Link/Link.styles.js +4 -5
  322. package/lib/cjs/components/Link/Link.test.js +85 -38
  323. package/lib/cjs/components/LinkSelectField/LinkSelectField.js +4 -6
  324. package/lib/cjs/components/LinkSelectField/LinkSelectField.stories.js +25 -38
  325. package/lib/cjs/components/LinkSelectField/LinkSelectField.test.js +79 -35
  326. package/lib/cjs/components/ListBox/ListBox.js +10 -12
  327. package/lib/cjs/components/ListBox/ListBox.styles.js +3 -4
  328. package/lib/cjs/components/ListBox/ListBox.test.js +34 -13
  329. package/lib/cjs/components/ListBox/ListBoxContext.js +1 -2
  330. package/lib/cjs/components/ListBox/ListBoxSection.d.ts +13 -4
  331. package/lib/cjs/components/ListBox/ListBoxSection.js +2 -4
  332. package/lib/cjs/components/ListBox/Option.js +5 -7
  333. package/lib/cjs/components/ListItem/ListItem.js +2 -4
  334. package/lib/cjs/components/ListItem/ListItem.styles.js +4 -5
  335. package/lib/cjs/components/ListItem/ListItem.test.js +67 -23
  336. package/lib/cjs/components/ListView/ListView.js +6 -9
  337. package/lib/cjs/components/ListView/ListView.stories.d.ts +8 -7
  338. package/lib/cjs/components/ListView/ListView.stories.js +28 -38
  339. package/lib/cjs/components/ListView/ListView.styles.js +2 -3
  340. package/lib/cjs/components/ListView/ListView.test.js +273 -158
  341. package/lib/cjs/components/ListView/ListViewContext.js +1 -2
  342. package/lib/cjs/components/ListView/ListViewExpandableItem.d.ts +1 -2
  343. package/lib/cjs/components/ListView/ListViewExpandableItem.js +5 -4
  344. package/lib/cjs/components/ListView/ListViewFocusWrapper.d.ts +4 -4
  345. package/lib/cjs/components/ListView/ListViewFocusWrapper.js +3 -6
  346. package/lib/cjs/components/ListView/ListViewItem.d.ts +16 -5
  347. package/lib/cjs/components/ListView/ListViewItem.js +8 -7
  348. package/lib/cjs/components/ListView/listViewAttributes.js +4 -5
  349. package/lib/cjs/components/ListView/stories/ListView.chromatic.stories.d.ts +1 -2
  350. package/lib/cjs/components/ListView/stories/ListView.chromatic.stories.js +3 -5
  351. package/lib/cjs/components/ListView/stories/ListViewNextGenComponent.d.ts +1 -2
  352. package/lib/cjs/components/ListView/stories/ListViewNextGenComponent.js +3 -5
  353. package/lib/cjs/components/ListView/stories/ListViewOnyxDark.stories.d.ts +1 -2
  354. package/lib/cjs/components/ListView/stories/ListViewOnyxDark.stories.js +3 -5
  355. package/lib/cjs/components/ListViewItem/ListViewItem.js +3 -6
  356. package/lib/cjs/components/ListViewItem/ListViewItem.stories.js +10 -20
  357. package/lib/cjs/components/ListViewItem/ListViewItem.styles.js +4 -5
  358. package/lib/cjs/components/ListViewItem/ListViewItem.test.js +2 -2
  359. package/lib/cjs/components/ListViewItem/controls/ListViewItemEditButton.js +2 -4
  360. package/lib/cjs/components/ListViewItem/controls/ListViewItemEditButton.stories.js +3 -5
  361. package/lib/cjs/components/ListViewItem/controls/ListViewItemEditButton.test.js +31 -9
  362. package/lib/cjs/components/ListViewItem/controls/ListViewItemMenu.js +2 -4
  363. package/lib/cjs/components/ListViewItem/controls/ListViewItemMenu.stories.js +5 -7
  364. package/lib/cjs/components/ListViewItem/controls/ListViewItemMenu.test.js +3 -4
  365. package/lib/cjs/components/ListViewItem/controls/ListViewItemSwitchField.js +2 -4
  366. package/lib/cjs/components/ListViewItem/controls/ListViewItemSwitchField.stories.js +5 -7
  367. package/lib/cjs/components/ListViewItem/controls/ListViewItemSwitchField.test.js +31 -9
  368. package/lib/cjs/components/ListViewItem/controls/chart/ListViewItemChart.js +6 -9
  369. package/lib/cjs/components/ListViewItem/controls/chart/ListViewItemChart.stories.js +4 -7
  370. package/lib/cjs/components/ListViewItem/controls/chart/ListViewItemChart.styles.js +4 -5
  371. package/lib/cjs/components/ListViewItem/controls/chart/ListViewItemChart.test.js +17 -3
  372. package/lib/cjs/components/ListViewItem/controls/chart/ListViewItemChartAttributes.js +5 -7
  373. package/lib/cjs/components/ListViewItem/controls/chart/chartData.js +2 -3
  374. package/lib/cjs/components/ListViewItem/listViewItemAttributes.js +7 -11
  375. package/lib/cjs/components/Loader/Loader.js +4 -6
  376. package/lib/cjs/components/Loader/Loader.stories.d.ts +2 -2
  377. package/lib/cjs/components/Loader/Loader.stories.js +9 -15
  378. package/lib/cjs/components/Loader/Loader.styles.js +4 -5
  379. package/lib/cjs/components/Loader/stories/LoaderOnyxComponent.d.ts +1 -2
  380. package/lib/cjs/components/Loader/stories/LoaderOnyxComponent.js +2 -3
  381. package/lib/cjs/components/Loader/stories/OnyxDarkLoader.chomatic.stories.d.ts +1 -2
  382. package/lib/cjs/components/Loader/stories/OnyxDarkLoader.chomatic.stories.js +3 -5
  383. package/lib/cjs/components/Loader/stories/OnyxLoader.chromatic.stories.d.ts +1 -2
  384. package/lib/cjs/components/Loader/stories/OnyxLoader.chromatic.stories.js +3 -5
  385. package/lib/cjs/components/Menu/Menu.js +4 -6
  386. package/lib/cjs/components/Menu/Menu.styles.js +2 -3
  387. package/lib/cjs/components/Menu/Menu.test.js +157 -90
  388. package/lib/cjs/components/Menu/menuAttributes.js +5 -7
  389. package/lib/cjs/components/MenuItem/MenuItem.js +5 -5
  390. package/lib/cjs/components/MenuItem/MenuItem.styles.js +2 -3
  391. package/lib/cjs/components/MenuItem/MenuItem.test.js +129 -57
  392. package/lib/cjs/components/MenuSection/MenuSection.js +2 -4
  393. package/lib/cjs/components/MenuSection/MenuSection.styles.js +4 -5
  394. package/lib/cjs/components/MenuSection/MenuSection.test.js +28 -6
  395. package/lib/cjs/components/Messages/Message.js +3 -6
  396. package/lib/cjs/components/Messages/Message.styles.js +3 -5
  397. package/lib/cjs/components/Messages/Messages.js +4 -6
  398. package/lib/cjs/components/Messages/Messages.stories.d.ts +11 -11
  399. package/lib/cjs/components/Messages/Messages.stories.js +16 -24
  400. package/lib/cjs/components/Messages/Messages.test.js +92 -40
  401. package/lib/cjs/components/Messages/utils/messagesReducer.d.ts +26 -26
  402. package/lib/cjs/components/Messages/utils/messagesReducer.js +10 -18
  403. package/lib/cjs/components/Messages/utils/multiMessagesReducer.d.ts +25 -26
  404. package/lib/cjs/components/Messages/utils/multiMessagesReducer.js +10 -18
  405. package/lib/cjs/components/Messages/utils/tests/messagesReducer.test.js +1 -2
  406. package/lib/cjs/components/Messages/utils/tests/multiMessagesReducer.test.js +1 -2
  407. package/lib/cjs/components/Modal/Convenience/ModalBody.stories.d.ts +2 -2
  408. package/lib/cjs/components/Modal/Convenience/ModalBody.stories.js +3 -5
  409. package/lib/cjs/components/Modal/Convenience/ModalFooter.stories.d.ts +2 -2
  410. package/lib/cjs/components/Modal/Convenience/ModalFooter.stories.js +3 -5
  411. package/lib/cjs/components/Modal/Convenience/ModalHeader.stories.d.ts +2 -2
  412. package/lib/cjs/components/Modal/Convenience/ModalHeader.stories.js +3 -5
  413. package/lib/cjs/components/Modal/Modal.js +5 -8
  414. package/lib/cjs/components/Modal/Modal.stories.d.ts +2 -2
  415. package/lib/cjs/components/Modal/Modal.stories.js +8 -15
  416. package/lib/cjs/components/Modal/Modal.styles.js +6 -9
  417. package/lib/cjs/components/Modal/ModalBody.js +2 -4
  418. package/lib/cjs/components/Modal/ModalFooter.js +2 -4
  419. package/lib/cjs/components/Modal/ModalFooter.test.js +3 -4
  420. package/lib/cjs/components/Modal/ModalHeader.js +4 -6
  421. package/lib/cjs/components/Modal/ModalHeader.test.js +34 -12
  422. package/lib/cjs/components/Modal/tests/Modal.integration.test.js +85 -33
  423. package/lib/cjs/components/Modal/tests/Modal.unit.test.js +198 -116
  424. package/lib/cjs/components/MultivaluesField/CondensedMultivaluesField.js +11 -13
  425. package/lib/cjs/components/MultivaluesField/DefaultMultivaluesField.js +15 -17
  426. package/lib/cjs/components/MultivaluesField/MultivaluesField.js +4 -6
  427. package/lib/cjs/components/MultivaluesField/MultivaluesField.stories.js +110 -128
  428. package/lib/cjs/components/MultivaluesField/MultivaluesField.test.js +1565 -909
  429. package/lib/cjs/components/NavBar/NavBar.js +2 -4
  430. package/lib/cjs/components/NavBar/NavBar.stories.d.ts +2 -2
  431. package/lib/cjs/components/NavBar/NavBar.stories.js +7 -13
  432. package/lib/cjs/components/NavBar/NavBar.styles.js +4 -5
  433. package/lib/cjs/components/NavBar/NavBar.test.js +213 -97
  434. package/lib/cjs/components/NavBar/stories/NavBar.chromatic.stories.js +3 -5
  435. package/lib/cjs/components/NavBar/stories/NavBarNextGenComponent.d.ts +1 -2
  436. package/lib/cjs/components/NavBar/stories/NavBarNextGenComponent.js +2 -3
  437. package/lib/cjs/components/NavBar/stories/NextGenDarkNavStory.chomatic.stories.d.ts +1 -2
  438. package/lib/cjs/components/NavBar/stories/NextGenDarkNavStory.chomatic.stories.js +3 -5
  439. package/lib/cjs/components/NavBar/stories/NextGenNavBar.chromatic.stories.d.ts +1 -2
  440. package/lib/cjs/components/NavBar/stories/NextGenNavBar.chromatic.stories.js +3 -5
  441. package/lib/cjs/components/NavBarSection/NavBarItem.js +2 -4
  442. package/lib/cjs/components/NavBarSection/NavBarItemBody.js +4 -6
  443. package/lib/cjs/components/NavBarSection/NavBarItemButton.d.ts +1 -2
  444. package/lib/cjs/components/NavBarSection/NavBarItemButton.js +1 -2
  445. package/lib/cjs/components/NavBarSection/NavBarItemHeader.d.ts +1 -2
  446. package/lib/cjs/components/NavBarSection/NavBarItemHeader.js +2 -4
  447. package/lib/cjs/components/NavBarSection/NavBarItemHeader.test.js +2 -2
  448. package/lib/cjs/components/NavBarSection/NavBarItemLink.d.ts +1 -2
  449. package/lib/cjs/components/NavBarSection/NavBarItemLink.js +3 -5
  450. package/lib/cjs/components/NavBarSection/NavBarSection.js +2 -4
  451. package/lib/cjs/components/NavSideBar/Icon.test.js +1 -2
  452. package/lib/cjs/components/NavSideBar/NavSideBar.js +2 -4
  453. package/lib/cjs/components/NavSideBar/NavSideBar.stories.d.ts +2 -2
  454. package/lib/cjs/components/NavSideBar/NavSideBar.stories.js +7 -13
  455. package/lib/cjs/components/NavSideBar/NavSideBar.test.js +239 -149
  456. package/lib/cjs/components/NavSideBar/NavSideBarHeader.js +2 -4
  457. package/lib/cjs/components/NavSideBar/NavSideBarItem.d.ts +1 -2
  458. package/lib/cjs/components/NavSideBar/NavSideBarItem.js +2 -4
  459. package/lib/cjs/components/NavSideBar/NavSideBarSection.js +2 -4
  460. package/lib/cjs/components/NavSideBar/NavSideBarSectionHeader.d.ts +1 -2
  461. package/lib/cjs/components/NavSideBar/NavSideBarSectionHeader.js +2 -4
  462. package/lib/cjs/components/NavSideBar/NavSideBarSectionItem.js +4 -6
  463. package/lib/cjs/components/NavSideBar/NavSideBarSubTitle.js +1 -2
  464. package/lib/cjs/components/NavSideBar/icons.d.ts +3 -4
  465. package/lib/cjs/components/NavSideBar/icons.js +4 -7
  466. package/lib/cjs/components/NavigationHeader/HeaderAccountMenu.d.ts +1 -2
  467. package/lib/cjs/components/NavigationHeader/HeaderAccountMenu.js +1 -2
  468. package/lib/cjs/components/NavigationHeader/NavigationHeader.js +4 -6
  469. package/lib/cjs/components/NavigationHeader/NavigationHeader.stories.d.ts +3 -3
  470. package/lib/cjs/components/NavigationHeader/NavigationHeader.stories.js +3 -5
  471. package/lib/cjs/components/NavigationHeader/NavigationHeader.test.js +95 -49
  472. package/lib/cjs/components/NumberField/NumberField.js +4 -6
  473. package/lib/cjs/components/NumberField/NumberField.stories.js +14 -25
  474. package/lib/cjs/components/NumberField/NumberField.styles.js +8 -10
  475. package/lib/cjs/components/NumberField/NumberField.test.js +157 -62
  476. package/lib/cjs/components/OverlayPanel/OverlayPanel.js +2 -4
  477. package/lib/cjs/components/OverlayPanel/OverlayPanel.stories.d.ts +2 -2
  478. package/lib/cjs/components/OverlayPanel/OverlayPanel.stories.js +7 -13
  479. package/lib/cjs/components/OverlayPanel/OverlayPanel.styles.js +2 -3
  480. package/lib/cjs/components/PageHeader/PageHeader.js +2 -4
  481. package/lib/cjs/components/PageHeader/PageHeader.stories.js +35 -10
  482. package/lib/cjs/components/PageHeader/PageHeader.test.js +37 -17
  483. package/lib/cjs/components/Pagination/Pagination.js +2 -4
  484. package/lib/cjs/components/Pagination/Pagination.stories.d.ts +6 -6
  485. package/lib/cjs/components/Pagination/Pagination.stories.js +7 -13
  486. package/lib/cjs/components/Pagination/Pagination.styles.js +2 -3
  487. package/lib/cjs/components/Pagination/Pagination.test.js +250 -121
  488. package/lib/cjs/components/Pagination/PaginationProvider.d.ts +1 -2
  489. package/lib/cjs/components/Pagination/PaginationProvider.js +2 -4
  490. package/lib/cjs/components/Pagination/index.js +1 -2
  491. package/lib/cjs/components/PanelHeader/PanelHeader.js +5 -8
  492. package/lib/cjs/components/PanelHeader/PanelHeader.stories.js +8 -16
  493. package/lib/cjs/components/PanelHeader/PanelHeader.styles.js +4 -5
  494. package/lib/cjs/components/PanelHeader/PanelHeader.test.js +8 -8
  495. package/lib/cjs/components/PanelHeader/controls/PanelHeaderCloseButton.js +2 -4
  496. package/lib/cjs/components/PanelHeader/controls/PanelHeaderCloseButton.stories.js +3 -5
  497. package/lib/cjs/components/PanelHeader/controls/PanelHeaderCloseButton.test.js +31 -9
  498. package/lib/cjs/components/PanelHeader/controls/PanelHeaderMenu.js +2 -4
  499. package/lib/cjs/components/PanelHeader/controls/PanelHeaderMenu.stories.js +3 -5
  500. package/lib/cjs/components/PanelHeader/controls/PanelHeaderMenu.test.js +39 -15
  501. package/lib/cjs/components/PanelHeader/controls/PanelHeaderSwitchField.js +2 -4
  502. package/lib/cjs/components/PanelHeader/controls/PanelHeaderSwitchField.stories.js +5 -7
  503. package/lib/cjs/components/PanelHeader/controls/PanelHeaderSwitchField.test.js +31 -9
  504. package/lib/cjs/components/PanelHeader/stories/OnyxDarkPanelHeader.chromatic.stories.js +3 -5
  505. package/lib/cjs/components/PanelHeader/stories/OnyxPanelHeader.chromatic.stories.js +3 -5
  506. package/lib/cjs/components/PanelHeader/stories/OnyxPanelHeaderComponent.js +1 -2
  507. package/lib/cjs/components/PasswordField/PasswordField.js +5 -7
  508. package/lib/cjs/components/PasswordField/PasswordField.stories.d.ts +2 -2
  509. package/lib/cjs/components/PasswordField/PasswordField.stories.js +67 -82
  510. package/lib/cjs/components/PasswordField/PasswordField.test.js +138 -74
  511. package/lib/cjs/components/Popover/Popover.d.ts +1 -2
  512. package/lib/cjs/components/Popover/Popover.js +4 -6
  513. package/lib/cjs/components/PopoverContainer/PopoverContainer.js +6 -12
  514. package/lib/cjs/components/PopoverContainer/index.js +1 -2
  515. package/lib/cjs/components/PopoverMenu/PopoverMenu.js +4 -6
  516. package/lib/cjs/components/PopoverMenu/PopoverMenu.stories.d.ts +2 -2
  517. package/lib/cjs/components/PopoverMenu/PopoverMenu.stories.js +11 -21
  518. package/lib/cjs/components/PopoverMenu/PopoverMenu.styles.js +2 -3
  519. package/lib/cjs/components/PopoverMenu/PopoverMenu.test.js +262 -148
  520. package/lib/cjs/components/ProgressBar/ProgressBar.js +3 -6
  521. package/lib/cjs/components/ProgressBar/ProgressBar.stories.d.ts +2 -2
  522. package/lib/cjs/components/ProgressBar/ProgressBar.stories.js +3 -5
  523. package/lib/cjs/components/ProgressBar/ProgressBar.styles.js +4 -5
  524. package/lib/cjs/components/ProgressBar/ProgressBar.test.js +1 -2
  525. package/lib/cjs/components/ProgressBar/index.js +1 -2
  526. package/lib/cjs/components/Radio/Radio.js +2 -4
  527. package/lib/cjs/components/Radio/Radio.styles.js +2 -3
  528. package/lib/cjs/components/RadioField/RadioField.js +5 -8
  529. package/lib/cjs/components/RadioField/RadioField.test.js +19 -16
  530. package/lib/cjs/components/RadioField/index.js +1 -2
  531. package/lib/cjs/components/RadioGroupField/RadioGroupField.js +2 -4
  532. package/lib/cjs/components/RadioGroupField/RadioGroupField.stories.d.ts +8 -8
  533. package/lib/cjs/components/RadioGroupField/RadioGroupField.stories.js +11 -19
  534. package/lib/cjs/components/RadioGroupField/RadioGroupField.test.js +84 -48
  535. package/lib/cjs/components/RangeCalendar/RangeCalendar.js +6 -10
  536. package/lib/cjs/components/RangeCalendar/RangeCalendar.stories.d.ts +2 -2
  537. package/lib/cjs/components/RangeCalendar/RangeCalendar.stories.js +12 -21
  538. package/lib/cjs/components/RangeCalendar/RangeCalendar.styles.js +2 -3
  539. package/lib/cjs/components/RangeCalendar/RangeCalendar.test.js +146 -77
  540. package/lib/cjs/components/RangeCalendar/RangeCalendarCell.js +2 -4
  541. package/lib/cjs/components/RangeCalendar/RangeCalendarGrid.d.ts +1 -2
  542. package/lib/cjs/components/RangeCalendar/RangeCalendarGrid.js +1 -2
  543. package/lib/cjs/components/RangeCalendar/RangeCalendarHeader.js +1 -2
  544. package/lib/cjs/components/RangeCalendar/index.js +1 -2
  545. package/lib/cjs/components/RequirementsList/RequirementsList.js +2 -4
  546. package/lib/cjs/components/RequirementsList/RequirementsList.stories.d.ts +2 -2
  547. package/lib/cjs/components/RequirementsList/RequirementsList.stories.js +4 -7
  548. package/lib/cjs/components/RockerButton/RockerButton.js +5 -8
  549. package/lib/cjs/components/RockerButton/RockerButton.styles.js +4 -5
  550. package/lib/cjs/components/RockerButtonGroup/RockerButtonGroup.js +4 -6
  551. package/lib/cjs/components/RockerButtonGroup/RockerButtonGroup.stories.d.ts +2 -2
  552. package/lib/cjs/components/RockerButtonGroup/RockerButtonGroup.stories.js +8 -15
  553. package/lib/cjs/components/RockerButtonGroup/RockerButtonGroup.test.js +77 -54
  554. package/lib/cjs/components/RockerButtonGroup/stories/NextGenDarkRockerButtonGroup.chromatic.stories.d.ts +1 -2
  555. package/lib/cjs/components/RockerButtonGroup/stories/NextGenDarkRockerButtonGroup.chromatic.stories.js +3 -5
  556. package/lib/cjs/components/RockerButtonGroup/stories/NextGenRockerButtonGroup.chromatic.stories.d.ts +1 -2
  557. package/lib/cjs/components/RockerButtonGroup/stories/NextGenRockerButtonGroup.chromatic.stories.js +3 -5
  558. package/lib/cjs/components/RockerButtonGroup/stories/RockerButtonGroup.chromatic.stories.js +3 -5
  559. package/lib/cjs/components/RockerButtonGroup/stories/RockerButtonGroupNextGen.d.ts +1 -2
  560. package/lib/cjs/components/RockerButtonGroup/stories/RockerButtonGroupNextGen.js +1 -2
  561. package/lib/cjs/components/ScrollBox/ScrollBox.js +4 -6
  562. package/lib/cjs/components/ScrollBox/ScrollBox.stories.d.ts +2 -2
  563. package/lib/cjs/components/ScrollBox/ScrollBox.stories.js +2 -4
  564. package/lib/cjs/components/ScrollBox/ScrollBox.styles.js +2 -3
  565. package/lib/cjs/components/SearchField/Search.styles.js +5 -9
  566. package/lib/cjs/components/SearchField/SearchAutoComplete.js +11 -11
  567. package/lib/cjs/components/SearchField/SearchField.js +2 -4
  568. package/lib/cjs/components/SearchField/SearchField.stories.d.ts +2 -2
  569. package/lib/cjs/components/SearchField/SearchField.stories.js +12 -21
  570. package/lib/cjs/components/SearchField/SearchField.test.js +333 -175
  571. package/lib/cjs/components/SearchField/SearchFieldBase.js +5 -7
  572. package/lib/cjs/components/SearchNav/MoreItemsPopover.d.ts +1 -2
  573. package/lib/cjs/components/SearchNav/MoreItemsPopover.js +2 -4
  574. package/lib/cjs/components/SearchNav/SearchNav.chromatic.stories.d.ts +1 -2
  575. package/lib/cjs/components/SearchNav/SearchNav.chromatic.stories.js +4 -7
  576. package/lib/cjs/components/SearchNav/SearchNav.js +10 -8
  577. package/lib/cjs/components/SearchNav/SearchNav.stories.d.ts +1 -2
  578. package/lib/cjs/components/SearchNav/SearchNav.stories.js +4 -7
  579. package/lib/cjs/components/SearchNav/SearchNav.styles.js +4 -5
  580. package/lib/cjs/components/SearchNav/SearchNav.test.js +45 -46
  581. package/lib/cjs/components/SearchNav/SearchNavTab.d.ts +1 -2
  582. package/lib/cjs/components/SearchNav/SearchNavTab.js +2 -4
  583. package/lib/cjs/components/SelectField/Select.styles.js +3 -4
  584. package/lib/cjs/components/SelectField/SelectField.js +4 -6
  585. package/lib/cjs/components/SelectField/SelectField.stories.d.ts +19 -18
  586. package/lib/cjs/components/SelectField/SelectField.stories.js +35 -54
  587. package/lib/cjs/components/SelectField/SelectField.test.js +46 -15
  588. package/lib/cjs/components/SelectFieldBase/HiddenSelect.d.ts +1 -2
  589. package/lib/cjs/components/SelectFieldBase/HiddenSelect.js +3 -4
  590. package/lib/cjs/components/SelectFieldBase/HiddenSelect.test.js +5 -7
  591. package/lib/cjs/components/SelectFieldBase/SelectFieldBase.js +4 -6
  592. package/lib/cjs/components/SelectFieldBase/SelectFieldBase.test.js +395 -225
  593. package/lib/cjs/components/Separator/Separator.js +2 -4
  594. package/lib/cjs/components/Separator/Separator.stories.d.ts +3 -4
  595. package/lib/cjs/components/Separator/Separator.stories.js +4 -7
  596. package/lib/cjs/components/Separator/Separator.styles.js +4 -5
  597. package/lib/cjs/components/ServerErrorBoundary/ServerErrorBoundary.js +2 -4
  598. package/lib/cjs/components/ServerErrorBoundary/ServerErrorBoundary.stories.d.ts +2 -2
  599. package/lib/cjs/components/ServerErrorBoundary/ServerErrorBoundary.stories.js +5 -9
  600. package/lib/cjs/components/ServerErrorBoundary/ServerErrorBoundary.styles.js +2 -3
  601. package/lib/cjs/components/ServerErrorBoundary/ServerErrorBoundary.test.js +59 -28
  602. package/lib/cjs/components/Skeleton/Skeleton.js +7 -8
  603. package/lib/cjs/components/Skeleton/Skeleton.stories.d.ts +3 -4
  604. package/lib/cjs/components/Skeleton/Skeleton.stories.js +4 -7
  605. package/lib/cjs/components/Skeleton/Skeleton.styles.js +4 -5
  606. package/lib/cjs/components/Skeleton/Skeleton.test.js +3 -3
  607. package/lib/cjs/components/SliderField/Slider.styles.js +4 -5
  608. package/lib/cjs/components/SliderField/SliderActiveTrack.js +4 -6
  609. package/lib/cjs/components/SliderField/SliderField.js +4 -6
  610. package/lib/cjs/components/SliderField/SliderField.stories.d.ts +8 -8
  611. package/lib/cjs/components/SliderField/SliderField.stories.js +9 -17
  612. package/lib/cjs/components/SliderField/SliderField.test.js +221 -159
  613. package/lib/cjs/components/SliderField/SliderLabelContainer.js +2 -4
  614. package/lib/cjs/components/SliderField/SliderThumb.js +2 -4
  615. package/lib/cjs/components/StatusIcon/StatusIcon.d.ts +1 -2
  616. package/lib/cjs/components/StatusIcon/StatusIcon.js +3 -5
  617. package/lib/cjs/components/StatusIcon/StatusIcon.stories.d.ts +2 -2
  618. package/lib/cjs/components/StatusIcon/StatusIcon.stories.js +3 -6
  619. package/lib/cjs/components/StatusIcon/StatusIcon.styles.js +2 -3
  620. package/lib/cjs/components/StatusIcon/stories/NextGenDarkStatusIcon.chromatic.stories.d.ts +1 -2
  621. package/lib/cjs/components/StatusIcon/stories/NextGenDarkStatusIcon.chromatic.stories.js +3 -5
  622. package/lib/cjs/components/StatusIcon/stories/NextGenStatusIcon.chromatic.stories.d.ts +1 -2
  623. package/lib/cjs/components/StatusIcon/stories/NextGenStatusIcon.chromatic.stories.js +3 -5
  624. package/lib/cjs/components/StatusIcon/stories/NextGenStatusIcon.d.ts +1 -2
  625. package/lib/cjs/components/StatusIcon/stories/NextGenStatusIcon.js +1 -2
  626. package/lib/cjs/components/Stepper/Line.js +1 -2
  627. package/lib/cjs/components/Stepper/Step.js +2 -4
  628. package/lib/cjs/components/Stepper/Stepper.constants.js +2 -3
  629. package/lib/cjs/components/Stepper/Stepper.js +4 -6
  630. package/lib/cjs/components/Stepper/Stepper.stories.js +9 -17
  631. package/lib/cjs/components/Stepper/Stepper.styles.js +5 -7
  632. package/lib/cjs/components/Stepper/Stepper.test.js +26 -17
  633. package/lib/cjs/components/Switch/Switch.js +2 -4
  634. package/lib/cjs/components/Switch/Switch.styles.js +7 -11
  635. package/lib/cjs/components/SwitchField/SwitchField.js +4 -6
  636. package/lib/cjs/components/SwitchField/SwitchField.stories.d.ts +2 -2
  637. package/lib/cjs/components/SwitchField/SwitchField.stories.js +12 -21
  638. package/lib/cjs/components/SwitchField/SwitchField.test.js +102 -43
  639. package/lib/cjs/components/SwitchField/switchFieldAttributes.js +5 -7
  640. package/lib/cjs/components/Tab/Tab.d.ts +1 -1
  641. package/lib/cjs/components/Tab/Tab.js +4 -8
  642. package/lib/cjs/components/Tab/index.js +1 -2
  643. package/lib/cjs/components/TabPicker/TabPicker.js +2 -4
  644. package/lib/cjs/components/Table/Table.js +2 -4
  645. package/lib/cjs/components/Table/Table.stories.d.ts +2 -2
  646. package/lib/cjs/components/Table/Table.stories.js +3 -5
  647. package/lib/cjs/components/Table/Table.styles.js +4 -5
  648. package/lib/cjs/components/TableBase/TableBase.js +5 -7
  649. package/lib/cjs/components/TableBase/TableBase.stories.d.ts +3 -4
  650. package/lib/cjs/components/TableBase/TableBase.stories.js +11 -19
  651. package/lib/cjs/components/TableBase/TableBase.styles.js +4 -5
  652. package/lib/cjs/components/TableBase/TableBase.test.js +273 -194
  653. package/lib/cjs/components/TableBase/stories/NextGenDarkTableBase.chromatic.stories.d.ts +1 -2
  654. package/lib/cjs/components/TableBase/stories/NextGenDarkTableBase.chromatic.stories.js +3 -5
  655. package/lib/cjs/components/TableBase/stories/NextGenTableBase.chromatic.stories.d.ts +1 -2
  656. package/lib/cjs/components/TableBase/stories/NextGenTableBase.chromatic.stories.js +3 -5
  657. package/lib/cjs/components/TableBase/stories/NextGenTableBase.d.ts +1 -2
  658. package/lib/cjs/components/TableBase/stories/NextGenTableBase.js +1 -2
  659. package/lib/cjs/components/TableBody/TableBody.js +2 -4
  660. package/lib/cjs/components/TableCaption/TableCaption.js +2 -4
  661. package/lib/cjs/components/TableCell/TableCell.js +2 -4
  662. package/lib/cjs/components/TableHead/TableHead.js +2 -4
  663. package/lib/cjs/components/TableRow/TableRow.js +2 -4
  664. package/lib/cjs/components/Tabs/Tabs.js +5 -8
  665. package/lib/cjs/components/Tabs/Tabs.stories.d.ts +2 -2
  666. package/lib/cjs/components/Tabs/Tabs.stories.js +33 -25
  667. package/lib/cjs/components/Tabs/Tabs.style.js +8 -14
  668. package/lib/cjs/components/Tabs/Tabs.test.js +134 -99
  669. package/lib/cjs/components/Tabs/index.js +1 -2
  670. package/lib/cjs/components/Text/Text.js +2 -3
  671. package/lib/cjs/components/Text/Text.stories.d.ts +2 -2
  672. package/lib/cjs/components/Text/Text.stories.js +41 -46
  673. package/lib/cjs/components/Text/Text.styles.d.ts +533 -216
  674. package/lib/cjs/components/Text/Text.styles.js +10 -15
  675. package/lib/cjs/components/Text/Text.test.js +2 -2
  676. package/lib/cjs/components/TextArea/TextArea.js +2 -4
  677. package/lib/cjs/components/TextArea/TextArea.styles.js +5 -7
  678. package/lib/cjs/components/TextAreaField/TextAreaField.js +5 -7
  679. package/lib/cjs/components/TextAreaField/TextAreaField.stories.d.ts +14 -14
  680. package/lib/cjs/components/TextAreaField/TextAreaField.stories.js +17 -31
  681. package/lib/cjs/components/TextAreaField/TextAreaField.test.js +29 -7
  682. package/lib/cjs/components/TextField/TextField.js +4 -6
  683. package/lib/cjs/components/TextField/TextField.stories.d.ts +2 -2
  684. package/lib/cjs/components/TextField/TextField.stories.js +23 -43
  685. package/lib/cjs/components/TextField/TextField.test.js +38 -14
  686. package/lib/cjs/components/TimeField/TimeField.js +5 -8
  687. package/lib/cjs/components/TimeField/TimeField.stories.d.ts +2 -2
  688. package/lib/cjs/components/TimeField/TimeField.stories.js +11 -21
  689. package/lib/cjs/components/TimeField/TimeField.styles.d.ts +66 -27
  690. package/lib/cjs/components/TimeField/TimeField.styles.js +4 -5
  691. package/lib/cjs/components/TimeField/TimeSegment.js +2 -4
  692. package/lib/cjs/components/TimeField/index.js +1 -2
  693. package/lib/cjs/components/TimeZonePicker/TimeZone.styles.js +2 -3
  694. package/lib/cjs/components/TimeZonePicker/TimeZonePicker.js +5 -7
  695. package/lib/cjs/components/TimeZonePicker/TimeZonePicker.stories.js +4 -7
  696. package/lib/cjs/components/TimeZonePicker/TimeZonePicker.test.js +68 -24
  697. package/lib/cjs/components/TimeZonePicker/timezones.js +2 -4
  698. package/lib/cjs/components/TooltipTrigger/Tooltip.js +2 -4
  699. package/lib/cjs/components/TooltipTrigger/Tooltip.styles.js +7 -11
  700. package/lib/cjs/components/TooltipTrigger/TooltipTrigger.js +5 -7
  701. package/lib/cjs/components/TooltipTrigger/TooltipTrigger.stories.d.ts +2 -2
  702. package/lib/cjs/components/TooltipTrigger/TooltipTrigger.stories.js +23 -25
  703. package/lib/cjs/components/TooltipTrigger/TooltipTrigger.test.js +120 -78
  704. package/lib/cjs/components/TreeView/InsertionIndicator.js +1 -2
  705. package/lib/cjs/components/TreeView/TreeView.js +14 -20
  706. package/lib/cjs/components/TreeView/TreeView.stories.js +9 -14
  707. package/lib/cjs/components/TreeView/TreeView.styles.js +2 -3
  708. package/lib/cjs/components/TreeView/TreeView.test.js +226 -129
  709. package/lib/cjs/components/TreeView/TreeViewItem.js +3 -6
  710. package/lib/cjs/components/TreeView/TreeViewKeyboardDelegate.js +20 -36
  711. package/lib/cjs/components/TreeView/TreeViewKeyboardDelegate.test.js +3 -6
  712. package/lib/cjs/components/TreeView/TreeViewRow.js +4 -6
  713. package/lib/cjs/components/TreeView/TreeViewSection.js +5 -10
  714. package/lib/cjs/components/TreeView/TreeViewWrapper.js +1 -2
  715. package/lib/cjs/context/AccordionContext/index.js +3 -5
  716. package/lib/cjs/context/AccordionGridContext/index.js +3 -5
  717. package/lib/cjs/context/BadgeContext/index.d.ts +0 -1
  718. package/lib/cjs/context/BadgeContext/index.js +1 -2
  719. package/lib/cjs/context/DataTableContext/index.js +4 -7
  720. package/lib/cjs/context/MenuContext/index.js +1 -2
  721. package/lib/cjs/context/MultivaluesContext/index.js +3 -5
  722. package/lib/cjs/context/NavBarContext/index.js +3 -5
  723. package/lib/cjs/context/PaginationContext/index.js +3 -5
  724. package/lib/cjs/context/RadioContext/index.d.ts +2 -0
  725. package/lib/cjs/context/RadioContext/index.js +10 -0
  726. package/lib/cjs/context/RockerButtonGroupContext/index.d.ts +0 -1
  727. package/lib/cjs/context/RockerButtonGroupContext/index.js +1 -2
  728. package/lib/cjs/context/TooltipContext/index.d.ts +0 -1
  729. package/lib/cjs/context/TooltipContext/index.js +3 -5
  730. package/lib/cjs/context/TreeViewContext/index.js +3 -5
  731. package/lib/cjs/docs/design/ColorDocumentation.stories.js +12 -4
  732. package/lib/cjs/docs/design/ContainerSizes.stories.js +3 -5
  733. package/lib/cjs/docs/design/Spacing.stories.js +3 -5
  734. package/lib/cjs/docs/design/Typography.stories.js +3 -5
  735. package/lib/cjs/docs/theme/ThemeView.js +2 -3
  736. package/lib/cjs/fonts.js +2 -4
  737. package/lib/cjs/hooks/useAriaLabelWarning/useAriaLabelWarning.js +1 -2
  738. package/lib/cjs/hooks/useAriaLabelWarning/useAriaLabelWarning.test.js +1 -2
  739. package/lib/cjs/hooks/useCircularLoader/useCircularLoader.js +4 -6
  740. package/lib/cjs/hooks/useCircularLoader/useCircularLoader.test.js +5 -8
  741. package/lib/cjs/hooks/useColumnStyles/useColumnStyles.js +1 -2
  742. package/lib/cjs/hooks/useComponentToggle/useComponentToggle.d.ts +0 -1
  743. package/lib/cjs/hooks/useComponentToggle/useComponentToggle.js +1 -2
  744. package/lib/cjs/hooks/useComponentToggle/useComponentToggle.test.js +9 -9
  745. package/lib/cjs/hooks/useCopyToClipboard/useCopyToClipboard.d.ts +0 -1
  746. package/lib/cjs/hooks/useCopyToClipboard/useCopyToClipboard.js +4 -6
  747. package/lib/cjs/hooks/useCopyToClipboard/useCopyToClipboard.test.js +4 -5
  748. package/lib/cjs/hooks/useDebounce/useDebounce.js +1 -2
  749. package/lib/cjs/hooks/useDeprecationWarning/useDeprecationWarning.js +1 -2
  750. package/lib/cjs/hooks/useDeprecationWarning/useDeprecationWarning.test.js +2 -2
  751. package/lib/cjs/hooks/useDevelopmentWarning/useDevelopmentWarning.js +1 -2
  752. package/lib/cjs/hooks/useDevelopmentWarning/useDevelopmentWarning.test.js +1 -2
  753. package/lib/cjs/hooks/useExpandableListViewItem/useExpandableListViewItem.js +6 -7
  754. package/lib/cjs/hooks/useFallbackImage/useFallbackImage.js +1 -2
  755. package/lib/cjs/hooks/useFallbackImage/useFallbackImage.test.js +2 -2
  756. package/lib/cjs/hooks/useField/useField.d.ts +3891 -246
  757. package/lib/cjs/hooks/useField/useField.js +7 -7
  758. package/lib/cjs/hooks/useField/useField.test.js +10 -4
  759. package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +37 -39
  760. package/lib/cjs/hooks/useGetTheme/useGetTheme.js +4 -6
  761. package/lib/cjs/hooks/useGetTheme/useGetTheme.test.js +3 -4
  762. package/lib/cjs/hooks/useGridList/useGridList.d.ts +0 -1
  763. package/lib/cjs/hooks/useGridList/useGridList.js +3 -4
  764. package/lib/cjs/hooks/useGridListItem/useGridListItem.d.ts +253 -246
  765. package/lib/cjs/hooks/useGridListItem/useGridListItem.js +4 -4
  766. package/lib/cjs/hooks/useImageUploadState/useImageUploadState.js +2 -3
  767. package/lib/cjs/hooks/useInputLoader/useInputLoader.js +1 -2
  768. package/lib/cjs/hooks/useLabelHeight/useLabelHeight.js +1 -2
  769. package/lib/cjs/hooks/useLoadPrev/useLoadPrev.js +1 -2
  770. package/lib/cjs/hooks/useLoadPrev/useLoadPrev.test.js +1 -2
  771. package/lib/cjs/hooks/useLocalOrForwardRef/useLocalOrForwardRef.d.ts +1 -2
  772. package/lib/cjs/hooks/useLocalOrForwardRef/useLocalOrForwardRef.js +1 -2
  773. package/lib/cjs/hooks/useLocalOrForwardRef/useLocalOrForwardRef.test.js +1 -2
  774. package/lib/cjs/hooks/useModalState/useModalState.js +3 -4
  775. package/lib/cjs/hooks/useMountTransition/useMountTransition.js +2 -3
  776. package/lib/cjs/hooks/useMountTransition/useMountTransition.test.js +35 -14
  777. package/lib/cjs/hooks/useNavBarPress/useNavBarPress.js +1 -2
  778. package/lib/cjs/hooks/useNavBarStyling/useNavBarStyling.js +1 -2
  779. package/lib/cjs/hooks/useOverlappingMenuHoverState/useOverlappingMenuHoverState.d.ts +0 -1
  780. package/lib/cjs/hooks/useOverlappingMenuHoverState/useOverlappingMenuHoverState.js +1 -2
  781. package/lib/cjs/hooks/useOverlappingMenuHoverState/useOverlappingMenuHoverState.test.js +10 -12
  782. package/lib/cjs/hooks/useOverlayPanelState/useOverlayPanelState.d.ts +0 -1
  783. package/lib/cjs/hooks/useOverlayPanelState/useOverlayPanelState.js +3 -4
  784. package/lib/cjs/hooks/usePagination/usePagination.d.ts +153 -161
  785. package/lib/cjs/hooks/usePagination/usePagination.js +3 -4
  786. package/lib/cjs/hooks/usePaginationState/usePaginationState.js +1 -2
  787. package/lib/cjs/hooks/useProgressiveState/useProgressiveState.d.ts +0 -1
  788. package/lib/cjs/hooks/useProgressiveState/useProgressiveState.js +1 -2
  789. package/lib/cjs/hooks/useProgressiveState/useProgressiveState.test.js +59 -23
  790. package/lib/cjs/hooks/usePropWarning/usePropWarning.d.ts +0 -1
  791. package/lib/cjs/hooks/usePropWarning/usePropWarning.js +1 -2
  792. package/lib/cjs/hooks/usePropWarning/usePropWarning.test.js +1 -2
  793. package/lib/cjs/hooks/useReorderableCollection/useReorderableCollection.js +5 -7
  794. package/lib/cjs/hooks/useSelectField/useSelectField.d.ts +8 -4
  795. package/lib/cjs/hooks/useSelectField/useSelectField.js +4 -6
  796. package/lib/cjs/hooks/useSliderField/useSliderField.d.ts +613 -491
  797. package/lib/cjs/hooks/useSliderField/useSliderField.js +7 -12
  798. package/lib/cjs/hooks/useSliderField/useSliderField.test.js +3 -4
  799. package/lib/cjs/hooks/useStatusClasses/useStatusClasses.js +1 -2
  800. package/lib/cjs/hooks/useTShirtSize/useTShirtSize.js +1 -2
  801. package/lib/cjs/hooks/useTShirtSize/useTShirtSize.test.js +1 -2
  802. package/lib/cjs/hooks/useTypeAnimation/useTypeAnimation.js +1 -2
  803. package/lib/cjs/hooks/useTypeAnimation/useTypeAnimation.test.js +7 -7
  804. package/lib/cjs/hooks/useTypeAnimationWrapper/useTypeAnimationWrapper.js +1 -2
  805. package/lib/cjs/hooks/useTypeAnimationWrapper/useTypeAnimationWrapper.test.js +6 -6
  806. package/lib/cjs/index.js +78 -79
  807. package/lib/cjs/mocks/browser.js +1 -2
  808. package/lib/cjs/mocks/constants/index.js +3 -6
  809. package/lib/cjs/mocks/handlers/users.d.ts +1 -1
  810. package/lib/cjs/mocks/handlers/users.js +6 -8
  811. package/lib/cjs/mocks/handlers.d.ts +1 -1
  812. package/lib/cjs/mocks/handlers.js +1 -2
  813. package/lib/cjs/mocks/responses/users.js +2 -3
  814. package/lib/cjs/mocks/types/users.d.ts +0 -1
  815. package/lib/cjs/patterns/AttributeMappingDisplayViewPattern.stories.hidden.js +3 -5
  816. package/lib/cjs/patterns/AttributeMappingEditViewPattern.stories.hidden.js +3 -5
  817. package/lib/cjs/patterns/ListAndPanelPattern.stories.hidden.js +4 -7
  818. package/lib/cjs/patterns/MessagesPattern.stories.hidden.js +4 -7
  819. package/lib/cjs/patterns/SaveBarPattern.stories.hidden.js +4 -7
  820. package/lib/cjs/patterns/UnsavedChangesPattern.stories.hidden.js +4 -7
  821. package/lib/cjs/recipes/AccordionCard.stories.js +4 -6
  822. package/lib/cjs/recipes/ApplicationSearchDropdown.stories.hidden.js +6 -9
  823. package/lib/cjs/recipes/AttributeMapping.stories.js +18 -15
  824. package/lib/cjs/recipes/CollapsiblePanel.stories.js +6 -9
  825. package/lib/cjs/recipes/ConditionFilter.stories.js +7 -12
  826. package/lib/cjs/recipes/CopyToClipboard.stories.js +3 -5
  827. package/lib/cjs/recipes/CountryPicker.stories.js +3 -6
  828. package/lib/cjs/recipes/DataVisualization.stories.js +7 -11
  829. package/lib/cjs/recipes/DateTimeRangePicker.stories.js +3 -6
  830. package/lib/cjs/recipes/InlineEditing.stories.js +8 -11
  831. package/lib/cjs/recipes/ListAndPanel.stories.js +10 -16
  832. package/lib/cjs/recipes/LogoTabs.stories.js +6 -9
  833. package/lib/cjs/recipes/MaskedValue.stories.js +3 -6
  834. package/lib/cjs/recipes/MultipagePopup.stories.js +5 -8
  835. package/lib/cjs/recipes/NoAccess.stories.d.ts +5 -5
  836. package/lib/cjs/recipes/NoAccess.stories.js +4 -8
  837. package/lib/cjs/recipes/OneWayToBidirectionalArrow.stories.js +2 -4
  838. package/lib/cjs/recipes/PanelContent.stories.js +13 -17
  839. package/lib/cjs/recipes/ScrollableListView.stories.js +4 -7
  840. package/lib/cjs/recipes/Slider.stories.js +4 -6
  841. package/lib/cjs/recipes/TrialExperienceIndustryButtons.stories.js +2 -4
  842. package/lib/cjs/recipes/TrialExperienceStatusBar.stories.js +3 -6
  843. package/lib/cjs/recipes/items.js +5 -9
  844. package/lib/cjs/styles/ColorDocumentation.js +9 -19
  845. package/lib/cjs/styles/breakpoints.js +1 -2
  846. package/lib/cjs/styles/colors.js +24 -44
  847. package/lib/cjs/styles/forms/index.js +5 -7
  848. package/lib/cjs/styles/safariAgent.js +1 -2
  849. package/lib/cjs/styles/sizes.js +2 -3
  850. package/lib/cjs/styles/spacing.js +2 -5
  851. package/lib/cjs/styles/templates/Nav/HeaderBar.js +2 -4
  852. package/lib/cjs/styles/templates/Nav/Nav.stories.js +3 -6
  853. package/lib/cjs/styles/templates/Nav/NavData.js +6 -11
  854. package/lib/cjs/styles/text.js +4 -8
  855. package/lib/cjs/styles/theme.js +5 -7
  856. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.js +5 -7
  857. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/icons.d.ts +1 -2
  858. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/icons.js +4 -5
  859. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +1 -2
  860. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.js +4 -5
  861. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/nextGenDarkModeOverride.js +1 -2
  862. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/stories/NextGenDarkStickerSheet.chromatic.stories.d.ts +13 -2
  863. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/stories/NextGenDarkStickerSheet.chromatic.stories.js +12 -4
  864. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/avatar.js +2 -3
  865. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/badges.js +3 -4
  866. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +3 -4
  867. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/callout.js +2 -3
  868. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/cards.js +1 -2
  869. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/footer.js +2 -3
  870. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/forms.js +7 -11
  871. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/iconBadge.js +3 -4
  872. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/input.js +4 -6
  873. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/links.js +4 -5
  874. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/listview.js +4 -7
  875. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/menu.js +3 -5
  876. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/message.js +2 -3
  877. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/navbar.js +4 -5
  878. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/skeleton.js +3 -4
  879. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/text.js +2 -3
  880. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.js +2 -3
  881. package/lib/cjs/styles/themeOverrides/stories/AccordionGroup.chromatic.stories.js +3 -5
  882. package/lib/cjs/styles/themeOverrides/stories/Button.chromatic.stories.js +8 -15
  883. package/lib/cjs/styles/themeOverrides/stories/EnvironmentBreadcrumb.chromatic.stories.js +6 -9
  884. package/lib/cjs/styles/themeOverrides/stories/IconButton.chromatic.stories.js +4 -7
  885. package/lib/cjs/styles/themeOverrides/stories/Label.chromatic.stories.js +3 -5
  886. package/lib/cjs/styles/themeOverrides/stories/Link.chromatic.stories.js +3 -5
  887. package/lib/cjs/styles/themeOverrides/stories/NumberField.chromatic.stories.js +3 -5
  888. package/lib/cjs/styles/themeOverrides/stories/OverlayPanel.chromatic.stories.d.ts +1 -1
  889. package/lib/cjs/styles/themeOverrides/stories/OverlayPanel.chromatic.stories.js +4 -7
  890. package/lib/cjs/styles/themeOverrides/stories/SearchField.chromatic.stories.js +3 -5
  891. package/lib/cjs/styles/themeOverrides/stories/SelectField.chromatic.stories.js +3 -5
  892. package/lib/cjs/styles/themeOverrides/uiLibraryOverride.js +4 -5
  893. package/lib/cjs/styles/themeOverrides/withUiLibraryCss.js +2 -4
  894. package/lib/cjs/styles/themes/astro/customProperties/icons.d.ts +1 -2
  895. package/lib/cjs/styles/themes/astro/customProperties/icons.js +3 -5
  896. package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +1 -2
  897. package/lib/cjs/styles/themes/astro/customProperties/index.js +3 -5
  898. package/lib/cjs/styles/themes/astro/customProperties/styles.js +2 -3
  899. package/lib/cjs/styles/themes/astro/customProperties/tShirtSizes.js +3 -5
  900. package/lib/cjs/styles/themes/astro-nano/astro-nano.js +3 -4
  901. package/lib/cjs/styles/themes/end-user/end-user.js +4 -6
  902. package/lib/cjs/styles/themes/next-gen/codeView/codeView.js +5 -7
  903. package/lib/cjs/styles/themes/next-gen/colors/colors.js +7 -12
  904. package/lib/cjs/styles/themes/next-gen/colors/iconWrapper.js +4 -5
  905. package/lib/cjs/styles/themes/next-gen/colors/twoTone.js +1 -2
  906. package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +4 -8
  907. package/lib/cjs/styles/themes/next-gen/customProperties/customSizes.js +2 -3
  908. package/lib/cjs/styles/themes/next-gen/customProperties/icons.d.ts +1 -2
  909. package/lib/cjs/styles/themes/next-gen/customProperties/icons.js +3 -5
  910. package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +1 -2
  911. package/lib/cjs/styles/themes/next-gen/customProperties/index.js +5 -7
  912. package/lib/cjs/styles/themes/next-gen/customProperties/styles.js +2 -3
  913. package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.js +3 -5
  914. package/lib/cjs/styles/themes/next-gen/forms.js +10 -17
  915. package/lib/cjs/styles/themes/next-gen/next-gen.js +5 -6
  916. package/lib/cjs/styles/themes/next-gen/sizes.js +2 -3
  917. package/lib/cjs/styles/themes/next-gen/spacing.js +1 -2
  918. package/lib/cjs/styles/themes/next-gen/stories/NextGenStickerSheet.chromatic.stories.d.ts +13 -2
  919. package/lib/cjs/styles/themes/next-gen/stories/NextGenStickerSheet.chromatic.stories.js +12 -4
  920. package/lib/cjs/styles/themes/next-gen/stories/OnyxInputPatterns.chromatic.stories.d.ts +5 -5
  921. package/lib/cjs/styles/themes/next-gen/stories/OnyxInputPatterns.chromatic.stories.js +8 -15
  922. package/lib/cjs/styles/themes/next-gen/stories/StickerSheetComponent.d.ts +1 -2
  923. package/lib/cjs/styles/themes/next-gen/stories/StickerSheetComponent.js +1 -2
  924. package/lib/cjs/styles/themes/next-gen/text.js +2 -5
  925. package/lib/cjs/styles/themes/next-gen/tokens/colorTokens.js +2 -3
  926. package/lib/cjs/styles/themes/next-gen/variants/accordion.js +2 -3
  927. package/lib/cjs/styles/themes/next-gen/variants/avatar.js +2 -3
  928. package/lib/cjs/styles/themes/next-gen/variants/badges.js +5 -7
  929. package/lib/cjs/styles/themes/next-gen/variants/box.js +5 -7
  930. package/lib/cjs/styles/themes/next-gen/variants/button.js +4 -6
  931. package/lib/cjs/styles/themes/next-gen/variants/callout.js +2 -3
  932. package/lib/cjs/styles/themes/next-gen/variants/cards.js +4 -5
  933. package/lib/cjs/styles/themes/next-gen/variants/dataTable.js +4 -5
  934. package/lib/cjs/styles/themes/next-gen/variants/footer.js +2 -3
  935. package/lib/cjs/styles/themes/next-gen/variants/iconWrapper.js +3 -4
  936. package/lib/cjs/styles/themes/next-gen/variants/images.js +2 -3
  937. package/lib/cjs/styles/themes/next-gen/variants/input.js +4 -6
  938. package/lib/cjs/styles/themes/next-gen/variants/label.js +2 -3
  939. package/lib/cjs/styles/themes/next-gen/variants/links.js +5 -7
  940. package/lib/cjs/styles/themes/next-gen/variants/listview.js +6 -11
  941. package/lib/cjs/styles/themes/next-gen/variants/menu.js +3 -5
  942. package/lib/cjs/styles/themes/next-gen/variants/messages.js +2 -3
  943. package/lib/cjs/styles/themes/next-gen/variants/navbar.js +6 -9
  944. package/lib/cjs/styles/themes/next-gen/variants/navigationHeader.js +3 -4
  945. package/lib/cjs/styles/themes/next-gen/variants/panelHeader.js +2 -3
  946. package/lib/cjs/styles/themes/next-gen/variants/popoverMenu.js +2 -3
  947. package/lib/cjs/styles/themes/next-gen/variants/prompt.js +2 -3
  948. package/lib/cjs/styles/themes/next-gen/variants/response.js +2 -3
  949. package/lib/cjs/styles/themes/next-gen/variants/searchNav.js +2 -3
  950. package/lib/cjs/styles/themes/next-gen/variants/stepper.js +4 -5
  951. package/lib/cjs/styles/themes/next-gen/variants/suggestion.js +2 -3
  952. package/lib/cjs/styles/themes/next-gen/variants/suggestions.js +2 -3
  953. package/lib/cjs/styles/themes/next-gen/variants/switch.js +2 -3
  954. package/lib/cjs/styles/themes/next-gen/variants/table.js +4 -5
  955. package/lib/cjs/styles/themes/next-gen/variants/tableBase.js +4 -5
  956. package/lib/cjs/styles/themes/next-gen/variants/tabs.js +4 -7
  957. package/lib/cjs/styles/themes/next-gen/variants/text.js +4 -5
  958. package/lib/cjs/styles/themes/next-gen/variants/tooltip.js +2 -3
  959. package/lib/cjs/styles/themes/next-gen/variants/variants.js +6 -9
  960. package/lib/cjs/styles/useAstroTheme.js +2 -4
  961. package/lib/cjs/styles/variants/index.js +4 -5
  962. package/lib/cjs/styles/variants/variants.js +5 -7
  963. package/lib/cjs/types/aiPanel.d.ts +0 -1
  964. package/lib/cjs/types/badge.d.ts +0 -1
  965. package/lib/cjs/types/callout.d.ts +0 -1
  966. package/lib/cjs/types/card.d.ts +1 -0
  967. package/lib/cjs/types/cell.d.ts +0 -1
  968. package/lib/cjs/types/collapsiblePanel.d.ts +0 -1
  969. package/lib/cjs/types/footer.d.ts +0 -1
  970. package/lib/cjs/types/index.js +54 -54
  971. package/lib/cjs/types/input.d.ts +1 -1
  972. package/lib/cjs/types/item.d.ts +2 -1
  973. package/lib/cjs/types/label.d.ts +0 -1
  974. package/lib/cjs/types/link.d.ts +1 -0
  975. package/lib/cjs/types/listBox.d.ts +5 -4
  976. package/lib/cjs/types/menu.d.ts +0 -1
  977. package/lib/cjs/types/navSideBar.d.ts +2 -1
  978. package/lib/cjs/types/overlayPanel.d.ts +0 -1
  979. package/lib/cjs/types/passwordField.d.ts +0 -1
  980. package/lib/cjs/types/popoverContainer.d.ts +0 -1
  981. package/lib/cjs/types/popoverMenu.d.ts +0 -1
  982. package/lib/cjs/types/promptInput.d.ts +0 -1
  983. package/lib/cjs/types/searchField.d.ts +1 -1
  984. package/lib/cjs/types/selectField.d.ts +0 -1
  985. package/lib/cjs/types/shared/events.d.ts +3 -1
  986. package/lib/cjs/types/switchField.d.ts +0 -1
  987. package/lib/cjs/types/textField.d.ts +0 -1
  988. package/lib/cjs/types/timefield.d.ts +3 -2
  989. package/lib/cjs/utils/designUtils/figmaLinks.js +2 -3
  990. package/lib/cjs/utils/devUtils/constants/animals.js +2 -3
  991. package/lib/cjs/utils/devUtils/constants/firstNames.js +1 -2
  992. package/lib/cjs/utils/devUtils/constants/htmlElements.js +3 -6
  993. package/lib/cjs/utils/devUtils/constants/images.js +8 -16
  994. package/lib/cjs/utils/devUtils/constants/items.js +2 -3
  995. package/lib/cjs/utils/devUtils/constants/labelModes.js +2 -3
  996. package/lib/cjs/utils/devUtils/constants/languageMapping.js +2 -3
  997. package/lib/cjs/utils/devUtils/constants/loadingStates.js +2 -3
  998. package/lib/cjs/utils/devUtils/constants/logos.d.ts +2 -3
  999. package/lib/cjs/utils/devUtils/constants/logos.js +3 -5
  1000. package/lib/cjs/utils/devUtils/constants/modalSizes.js +1 -2
  1001. package/lib/cjs/utils/devUtils/constants/orientation.js +2 -3
  1002. package/lib/cjs/utils/devUtils/constants/panelSizes.js +1 -2
  1003. package/lib/cjs/utils/devUtils/constants/pendoID.js +2 -3
  1004. package/lib/cjs/utils/devUtils/constants/statuses.js +2 -4
  1005. package/lib/cjs/utils/devUtils/constants/tShirtSizes.js +3 -5
  1006. package/lib/cjs/utils/devUtils/constants/text.js +1 -2
  1007. package/lib/cjs/utils/devUtils/constants/themes.js +2 -3
  1008. package/lib/cjs/utils/devUtils/constants/variants.js +4 -5
  1009. package/lib/cjs/utils/devUtils/createMockData.js +4 -5
  1010. package/lib/cjs/utils/devUtils/decorators/withDeprecationWarning.js +1 -2
  1011. package/lib/cjs/utils/devUtils/props/isDateWithinRanges.js +2 -3
  1012. package/lib/cjs/utils/devUtils/props/isIterable.js +2 -4
  1013. package/lib/cjs/utils/devUtils/props/isValidPositiveInt.js +1 -2
  1014. package/lib/cjs/utils/devUtils/shouldReturnComingSoon.js +3 -5
  1015. package/lib/cjs/utils/devUtils/styledSystemUtils.js +5 -8
  1016. package/lib/cjs/utils/docUtils/ariaAttributes.d.ts +11 -7
  1017. package/lib/cjs/utils/docUtils/ariaAttributes.js +8 -13
  1018. package/lib/cjs/utils/docUtils/ariaAttributes.test.js +2 -2
  1019. package/lib/cjs/utils/docUtils/docArgTypes.js +5 -9
  1020. package/lib/cjs/utils/docUtils/fieldAttributes.js +6 -9
  1021. package/lib/cjs/utils/docUtils/hoverProps.js +6 -9
  1022. package/lib/cjs/utils/docUtils/iconSizeProps.d.ts +2 -1
  1023. package/lib/cjs/utils/docUtils/iconSizeProps.js +3 -5
  1024. package/lib/cjs/utils/docUtils/pressAttributes.js +4 -5
  1025. package/lib/cjs/utils/docUtils/statusProp.js +7 -11
  1026. package/lib/cjs/utils/styleUtils/index.js +2 -3
  1027. package/lib/cjs/utils/testUtils/dndMocks.js +25 -39
  1028. package/lib/cjs/utils/testUtils/testAxe.js +5 -7
  1029. package/lib/cjs/utils/testUtils/testTheme.js +2 -3
  1030. package/lib/cjs/utils/testUtils/testWrapper.js +5 -7
  1031. package/lib/cjs/utils/testUtils/universalComponentTest.js +7 -10
  1032. package/lib/cjs/utils/testUtils/universalFormSubmitTest.d.ts +1 -0
  1033. package/lib/cjs/utils/testUtils/universalFormSubmitTest.js +105 -60
  1034. package/lib/components/AIComponents/Attachment/Attachment.js +2 -2
  1035. package/lib/components/AIComponents/Attachment/Attachment.test.js +3 -2
  1036. package/lib/components/AIComponents/PromptInput/PromptInput.js +2 -2
  1037. package/lib/components/AIComponents/PromptInput/PromptInput.stories.js +2 -2
  1038. package/lib/components/AIComponents/PromptInput/PromptInput.test.js +38 -29
  1039. package/lib/components/AIComponents/PromptInput/PromptUploadButton.js +2 -2
  1040. package/lib/components/AIComponents/Response/Response.test.js +252 -0
  1041. package/lib/components/AIComponents/Response/ResponseMarkdown/MarkdownListWrapper.js +2 -2
  1042. package/lib/components/AIComponents/Response/ResponseMarkdown/MarkdownTextWrapper.js +2 -2
  1043. package/lib/components/AIComponents/Response/ResponseMarkdown/ResponseMarkdown.js +2 -2
  1044. package/lib/components/AccordionGridGroup/AccordionGrid.styles.js +2 -2
  1045. package/lib/components/AccordionGridGroup/AccordionGridGroup.js +2 -2
  1046. package/lib/components/AccordionGridGroup/AccordionGridGroup.stories.js +10 -6
  1047. package/lib/components/AccordionGridGroup/AccordionGridGroup.test.js +169 -93
  1048. package/lib/components/AccordionGridItem/AccordionGridItem.js +2 -1
  1049. package/lib/components/AccordionGroup/Accordion.styles.js +2 -2
  1050. package/lib/components/AccordionGroup/AccordionGroup.js +2 -2
  1051. package/lib/components/AccordionGroup/AccordionGroup.stories.js +1 -1
  1052. package/lib/components/AccordionGroup/AccordionGroup.test.js +208 -99
  1053. package/lib/components/ArrayField/ArrayField.js +2 -2
  1054. package/lib/components/ArrayField/ArrayField.stories.js +2 -2
  1055. package/lib/components/AstroProvider/AstroProvider.js +3 -4
  1056. package/lib/components/Avatar/Avatar.js +3 -4
  1057. package/lib/components/Badge/Badge.js +2 -2
  1058. package/lib/components/Badge/Badge.styles.js +2 -2
  1059. package/lib/components/Badge/Convenience/RemovableBadge.test.js +32 -10
  1060. package/lib/components/Box/Box.js +3 -3
  1061. package/lib/components/Breadcrumbs/Breadcrumb.styles.js +2 -2
  1062. package/lib/components/Breadcrumbs/BreadcrumbItem.js +2 -2
  1063. package/lib/components/Breadcrumbs/Breadcrumbs.test.js +31 -9
  1064. package/lib/components/Button/Button.js +8 -4
  1065. package/lib/components/Button/Button.stories.js +2 -2
  1066. package/lib/components/Button/Button.test.js +65 -38
  1067. package/lib/components/Button/Buttons.styles.js +2 -2
  1068. package/lib/components/Button/buttonAttributes.js +2 -2
  1069. package/lib/components/ButtonBar/ButtonBar.js +10 -2
  1070. package/lib/components/ButtonBar/ButtonBar.styles.js +2 -2
  1071. package/lib/components/ButtonBar/ButtonBar.test.js +3 -3
  1072. package/lib/components/Calendar/Calendar.js +4 -4
  1073. package/lib/components/Calendar/Calendar.styles.js +2 -2
  1074. package/lib/components/Calendar/Calendar.test.js +324 -180
  1075. package/lib/components/Callout/Callout.js +5 -6
  1076. package/lib/components/Callout/Callout.stories.js +5 -2
  1077. package/lib/components/Callout/Callout.test.js +1 -2
  1078. package/lib/components/Card/Card.js +2 -2
  1079. package/lib/components/Card/Card.stories.js +2 -2
  1080. package/lib/components/Card/Card.styles.js +2 -2
  1081. package/lib/components/Card/Card.test.js +107 -63
  1082. package/lib/components/Card/cardAttributes.js +2 -2
  1083. package/lib/components/CheckboxField/CheckboxField.js +4 -3
  1084. package/lib/components/CheckboxField/CheckboxField.stories.js +17 -17
  1085. package/lib/components/CheckboxField/CheckboxField.test.js +235 -132
  1086. package/lib/components/CodeEditor/CodeEditor.chromatic.stories.js +0 -1
  1087. package/lib/components/CodeEditor/CodeEditor.js +2 -2
  1088. package/lib/components/CodeEditor/CodeEditor.styles.js +2 -2
  1089. package/lib/components/CodeView/CodeView.js +22 -11
  1090. package/lib/components/CodeView/CodeView.test.js +117 -81
  1091. package/lib/components/CollapsiblePanel/CollapsiblePanel.styles.js +34 -4
  1092. package/lib/components/CollapsiblePanelContainer/CollapsiblePanelContainer.test.js +57 -20
  1093. package/lib/components/ColorField/ColorField.js +2 -2
  1094. package/lib/components/ColorField/ColorField.stories.js +2 -2
  1095. package/lib/components/ColorField/ColorField.styles.js +2 -2
  1096. package/lib/components/ColorField/ColorField.test.js +92 -39
  1097. package/lib/components/ComboBox/ComboBox.styles.js +2 -2
  1098. package/lib/components/ComboBox/ComboBoxInput.js +4 -3
  1099. package/lib/components/ComboBoxField/ComboBoxField.js +4 -3
  1100. package/lib/components/ComboBoxField/ComboBoxField.stories.js +37 -38
  1101. package/lib/components/ComboBoxField/ComboBoxField.test.js +966 -577
  1102. package/lib/components/CopyText/CopyText.styles.js +2 -2
  1103. package/lib/components/CopyText/CopyText.test.js +142 -115
  1104. package/lib/components/DataTable/DataTable.js +5 -5
  1105. package/lib/components/DataTable/DataTable.stories.js +19 -20
  1106. package/lib/components/DataTable/DataTable.styles.js +2 -2
  1107. package/lib/components/DataTable/DataTable.test.js +359 -284
  1108. package/lib/components/DataTable/DataTableBadge.js +0 -1
  1109. package/lib/components/DataTable/DataTableMultiLine.js +0 -4
  1110. package/lib/components/DataTable/DataTableVirtualizer.js +3 -4
  1111. package/lib/components/DataTable/stories/NextGenDarkDataTable.chomatic.stories.js +10 -0
  1112. package/lib/components/DatePicker/DateField.js +2 -2
  1113. package/lib/components/DatePicker/DatePicker.js +2 -2
  1114. package/lib/components/DatePicker/DatePicker.stories.js +2 -2
  1115. package/lib/components/DatePicker/DatePicker.styles.js +2 -2
  1116. package/lib/components/DatePicker/DatePicker.test.js +451 -263
  1117. package/lib/components/EditButton/EditButton.js +2 -2
  1118. package/lib/components/EditButton/EditButton.stories.js +2 -2
  1119. package/lib/components/EditButton/EditButton.test.js +34 -13
  1120. package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +2 -3
  1121. package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.stories.js +12 -12
  1122. package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +353 -172
  1123. package/lib/components/EnvironmentBreadcrumb/EnvironmentalBreadcrumb.styles.js +2 -2
  1124. package/lib/components/EnvironmentBreadcrumb/EnvironmentalBreadcrumbUniversal.test.js +6 -37
  1125. package/lib/components/ExpandableText/ExpandableText.js +1 -0
  1126. package/lib/components/ExpandableText/ExpandableText.test.js +0 -1
  1127. package/lib/components/FieldHelperText/FieldHelperText.js +2 -2
  1128. package/lib/components/FieldHelperText/FieldHelperText.stories.js +2 -2
  1129. package/lib/components/FieldHelperText/FieldHelperText.styles.js +2 -2
  1130. package/lib/components/FileInputField/FileInputField.js +2 -2
  1131. package/lib/components/FileInputField/FileInputField.stories.js +2 -2
  1132. package/lib/components/FileInputField/FileInputField.styles.js +2 -2
  1133. package/lib/components/FileInputField/FileInputField.test.js +174 -90
  1134. package/lib/components/FileInputField/FileItem.js +2 -2
  1135. package/lib/components/FileInputField/FileSelect.js +2 -2
  1136. package/lib/components/FileInputField/FileSelectIcon.js +0 -1
  1137. package/lib/components/GridList/GridList.js +2 -2
  1138. package/lib/components/GridList/GridList.stories.js +2 -2
  1139. package/lib/components/GridList/GridList.test.js +65 -41
  1140. package/lib/components/GridList/GridListRow.js +5 -5
  1141. package/lib/components/HelpHint/HelpHint.js +4 -4
  1142. package/lib/components/HelpHint/HelpHint.styles.js +2 -2
  1143. package/lib/components/HelpHint/HelpHint.test.js +33 -26
  1144. package/lib/components/Icon/Icon.js +2 -2
  1145. package/lib/components/Icon/Icon.stories.js +2 -2
  1146. package/lib/components/Icon/NoticeIcon.js +5 -6
  1147. package/lib/components/IconBadge/IconBadge.js +2 -2
  1148. package/lib/components/IconButton/IconButton.js +8 -4
  1149. package/lib/components/IconButton/IconButton.styles.js +2 -2
  1150. package/lib/components/IconButton/IconButton.test.js +139 -62
  1151. package/lib/components/IconButton/iconButtonAttributes.js +2 -2
  1152. package/lib/components/IconWrapper/IconWrapper.js +2 -2
  1153. package/lib/components/IconWrapper/IconWrapper.stories.js +2 -2
  1154. package/lib/components/Image/Image.test.js +4 -3
  1155. package/lib/components/ImageUploadField/ImageUploadField.js +2 -2
  1156. package/lib/components/ImageUploadField/ImageUploadField.stories.js +15 -18
  1157. package/lib/components/ImageUploadField/ImageUploadField.test.js +97 -70
  1158. package/lib/components/ImageUploadField/ImageUploadFieldBase.js +2 -2
  1159. package/lib/components/ImageUploadField/imageUpload.js +2 -2
  1160. package/lib/components/Input/Input.js +22 -3
  1161. package/lib/components/Input/Input.styles.js +13 -14
  1162. package/lib/components/Input/Input.test.js +49 -16
  1163. package/lib/components/Label/Label.js +1 -1
  1164. package/lib/components/Label/Label.styles.js +2 -3
  1165. package/lib/components/Link/Link.stories.js +8 -0
  1166. package/lib/components/Link/Link.styles.js +2 -2
  1167. package/lib/components/Link/Link.test.js +85 -38
  1168. package/lib/components/LinkSelectField/LinkSelectField.js +2 -2
  1169. package/lib/components/LinkSelectField/LinkSelectField.stories.js +12 -13
  1170. package/lib/components/LinkSelectField/LinkSelectField.test.js +79 -35
  1171. package/lib/components/ListBox/ListBox.js +7 -6
  1172. package/lib/components/ListBox/ListBox.styles.js +2 -2
  1173. package/lib/components/ListBox/ListBox.test.js +34 -10
  1174. package/lib/components/ListBox/Option.js +3 -3
  1175. package/lib/components/ListItem/ListItem.styles.js +2 -2
  1176. package/lib/components/ListItem/ListItem.test.js +67 -23
  1177. package/lib/components/ListView/ListView.js +3 -3
  1178. package/lib/components/ListView/ListView.stories.js +19 -21
  1179. package/lib/components/ListView/ListView.test.js +272 -156
  1180. package/lib/components/ListView/ListViewExpandableItem.js +3 -0
  1181. package/lib/components/ListView/ListViewItem.js +6 -3
  1182. package/lib/components/ListView/listViewAttributes.js +2 -2
  1183. package/lib/components/ListViewItem/ListViewItem.styles.js +2 -2
  1184. package/lib/components/ListViewItem/ListViewItem.test.js +2 -2
  1185. package/lib/components/ListViewItem/controls/ListViewItemEditButton.test.js +31 -9
  1186. package/lib/components/ListViewItem/controls/ListViewItemMenu.stories.js +2 -2
  1187. package/lib/components/ListViewItem/controls/ListViewItemMenu.test.js +3 -4
  1188. package/lib/components/ListViewItem/controls/ListViewItemSwitchField.stories.js +2 -2
  1189. package/lib/components/ListViewItem/controls/ListViewItemSwitchField.test.js +31 -9
  1190. package/lib/components/ListViewItem/controls/chart/ListViewItemChart.js +4 -5
  1191. package/lib/components/ListViewItem/controls/chart/ListViewItemChart.styles.js +2 -2
  1192. package/lib/components/ListViewItem/controls/chart/ListViewItemChart.test.js +17 -3
  1193. package/lib/components/ListViewItem/controls/chart/ListViewItemChartAttributes.js +2 -2
  1194. package/lib/components/ListViewItem/listViewItemAttributes.js +2 -2
  1195. package/lib/components/Loader/Loader.js +2 -2
  1196. package/lib/components/Loader/Loader.stories.js +2 -2
  1197. package/lib/components/Loader/Loader.styles.js +2 -2
  1198. package/lib/components/Menu/Menu.js +2 -2
  1199. package/lib/components/Menu/Menu.test.js +156 -90
  1200. package/lib/components/Menu/menuAttributes.js +2 -2
  1201. package/lib/components/MenuItem/MenuItem.js +3 -1
  1202. package/lib/components/MenuItem/MenuItem.test.js +128 -57
  1203. package/lib/components/MenuSection/MenuSection.styles.js +2 -2
  1204. package/lib/components/MenuSection/MenuSection.test.js +28 -6
  1205. package/lib/components/Messages/Messages.js +2 -2
  1206. package/lib/components/Messages/Messages.stories.js +5 -2
  1207. package/lib/components/Messages/Messages.test.js +92 -37
  1208. package/lib/components/Messages/utils/messagesReducer.js +2 -2
  1209. package/lib/components/Messages/utils/multiMessagesReducer.js +2 -2
  1210. package/lib/components/Modal/Modal.js +3 -4
  1211. package/lib/components/Modal/Modal.styles.js +2 -2
  1212. package/lib/components/Modal/ModalFooter.test.js +3 -4
  1213. package/lib/components/Modal/ModalHeader.js +2 -2
  1214. package/lib/components/Modal/ModalHeader.test.js +34 -12
  1215. package/lib/components/Modal/tests/Modal.integration.test.js +83 -31
  1216. package/lib/components/Modal/tests/Modal.unit.test.js +198 -116
  1217. package/lib/components/MultivaluesField/CondensedMultivaluesField.js +9 -9
  1218. package/lib/components/MultivaluesField/DefaultMultivaluesField.js +13 -13
  1219. package/lib/components/MultivaluesField/MultivaluesField.js +2 -2
  1220. package/lib/components/MultivaluesField/MultivaluesField.stories.js +92 -93
  1221. package/lib/components/MultivaluesField/MultivaluesField.test.js +1564 -907
  1222. package/lib/components/NavBar/NavBar.styles.js +2 -2
  1223. package/lib/components/NavBar/NavBar.test.js +213 -94
  1224. package/lib/components/NavBarSection/NavBarItemBody.js +2 -2
  1225. package/lib/components/NavBarSection/NavBarItemHeader.test.js +2 -2
  1226. package/lib/components/NavBarSection/NavBarItemLink.js +2 -3
  1227. package/lib/components/NavSideBar/NavSideBar.test.js +238 -149
  1228. package/lib/components/NavSideBar/NavSideBarSectionItem.js +2 -2
  1229. package/lib/components/NavigationHeader/NavigationHeader.js +2 -2
  1230. package/lib/components/NavigationHeader/NavigationHeader.test.js +94 -47
  1231. package/lib/components/NumberField/NumberField.js +2 -2
  1232. package/lib/components/NumberField/NumberField.stories.js +2 -2
  1233. package/lib/components/NumberField/NumberField.styles.js +6 -7
  1234. package/lib/components/NumberField/NumberField.test.js +157 -62
  1235. package/lib/components/PageHeader/PageHeader.stories.js +30 -0
  1236. package/lib/components/PageHeader/PageHeader.test.js +37 -17
  1237. package/lib/components/Pagination/Pagination.test.js +250 -121
  1238. package/lib/components/PanelHeader/PanelHeader.js +2 -2
  1239. package/lib/components/PanelHeader/PanelHeader.styles.js +2 -2
  1240. package/lib/components/PanelHeader/PanelHeader.test.js +8 -8
  1241. package/lib/components/PanelHeader/controls/PanelHeaderCloseButton.test.js +31 -9
  1242. package/lib/components/PanelHeader/controls/PanelHeaderMenu.test.js +39 -15
  1243. package/lib/components/PanelHeader/controls/PanelHeaderSwitchField.stories.js +2 -2
  1244. package/lib/components/PanelHeader/controls/PanelHeaderSwitchField.test.js +31 -9
  1245. package/lib/components/PasswordField/PasswordField.js +3 -3
  1246. package/lib/components/PasswordField/PasswordField.stories.js +55 -55
  1247. package/lib/components/PasswordField/PasswordField.test.js +139 -75
  1248. package/lib/components/Popover/Popover.js +2 -2
  1249. package/lib/components/PopoverContainer/PopoverContainer.js +2 -4
  1250. package/lib/components/PopoverMenu/PopoverMenu.js +2 -2
  1251. package/lib/components/PopoverMenu/PopoverMenu.test.js +263 -149
  1252. package/lib/components/ProgressBar/ProgressBar.styles.js +2 -2
  1253. package/lib/components/RadioField/RadioField.js +2 -2
  1254. package/lib/components/RadioField/RadioField.test.js +19 -10
  1255. package/lib/components/RadioGroupField/RadioGroupField.stories.js +2 -2
  1256. package/lib/components/RadioGroupField/RadioGroupField.test.js +84 -48
  1257. package/lib/components/RangeCalendar/RangeCalendar.js +2 -2
  1258. package/lib/components/RangeCalendar/RangeCalendar.stories.js +2 -2
  1259. package/lib/components/RangeCalendar/RangeCalendar.test.js +144 -74
  1260. package/lib/components/RockerButton/RockerButton.js +2 -2
  1261. package/lib/components/RockerButton/RockerButton.styles.js +2 -2
  1262. package/lib/components/RockerButtonGroup/RockerButtonGroup.js +2 -2
  1263. package/lib/components/RockerButtonGroup/RockerButtonGroup.test.js +77 -54
  1264. package/lib/components/ScrollBox/ScrollBox.js +2 -2
  1265. package/lib/components/SearchField/SearchAutoComplete.js +8 -6
  1266. package/lib/components/SearchField/SearchField.stories.js +2 -5
  1267. package/lib/components/SearchField/SearchField.test.js +333 -175
  1268. package/lib/components/SearchField/SearchFieldBase.js +2 -2
  1269. package/lib/components/SearchNav/SearchNav.js +5 -0
  1270. package/lib/components/SearchNav/SearchNav.styles.js +2 -2
  1271. package/lib/components/SearchNav/SearchNav.test.js +43 -43
  1272. package/lib/components/SelectField/Select.styles.js +2 -2
  1273. package/lib/components/SelectField/SelectField.js +2 -2
  1274. package/lib/components/SelectField/SelectField.stories.js +16 -17
  1275. package/lib/components/SelectField/SelectField.test.js +46 -15
  1276. package/lib/components/SelectFieldBase/HiddenSelect.js +2 -2
  1277. package/lib/components/SelectFieldBase/HiddenSelect.test.js +4 -5
  1278. package/lib/components/SelectFieldBase/SelectFieldBase.js +2 -2
  1279. package/lib/components/SelectFieldBase/SelectFieldBase.test.js +394 -223
  1280. package/lib/components/Separator/Separator.styles.js +2 -2
  1281. package/lib/components/ServerErrorBoundary/ServerErrorBoundary.test.js +59 -28
  1282. package/lib/components/Skeleton/Skeleton.js +5 -4
  1283. package/lib/components/Skeleton/Skeleton.styles.js +2 -2
  1284. package/lib/components/Skeleton/Skeleton.test.js +3 -3
  1285. package/lib/components/SliderField/Slider.styles.js +2 -2
  1286. package/lib/components/SliderField/SliderActiveTrack.js +2 -2
  1287. package/lib/components/SliderField/SliderField.js +2 -2
  1288. package/lib/components/SliderField/SliderField.test.js +221 -159
  1289. package/lib/components/StatusIcon/StatusIcon.js +2 -3
  1290. package/lib/components/Stepper/Stepper.js +2 -2
  1291. package/lib/components/Stepper/Stepper.styles.js +2 -2
  1292. package/lib/components/Stepper/Stepper.test.js +32 -23
  1293. package/lib/components/Switch/Switch.styles.js +2 -2
  1294. package/lib/components/SwitchField/SwitchField.js +2 -2
  1295. package/lib/components/SwitchField/SwitchField.stories.js +2 -2
  1296. package/lib/components/SwitchField/SwitchField.test.js +102 -43
  1297. package/lib/components/SwitchField/switchFieldAttributes.js +2 -2
  1298. package/lib/components/Table/Table.styles.js +2 -2
  1299. package/lib/components/TableBase/TableBase.js +3 -3
  1300. package/lib/components/TableBase/TableBase.stories.js +4 -5
  1301. package/lib/components/TableBase/TableBase.styles.js +2 -2
  1302. package/lib/components/TableBase/TableBase.test.js +273 -194
  1303. package/lib/components/Tabs/Tabs.js +2 -2
  1304. package/lib/components/Tabs/Tabs.stories.js +20 -0
  1305. package/lib/components/Tabs/Tabs.style.js +2 -2
  1306. package/lib/components/Tabs/Tabs.test.js +134 -99
  1307. package/lib/components/Text/Text.js +1 -1
  1308. package/lib/components/Text/Text.stories.js +36 -36
  1309. package/lib/components/Text/Text.styles.js +3 -3
  1310. package/lib/components/Text/Text.test.js +2 -2
  1311. package/lib/components/TextArea/TextArea.styles.js +2 -2
  1312. package/lib/components/TextAreaField/TextAreaField.js +3 -3
  1313. package/lib/components/TextAreaField/TextAreaField.stories.js +2 -2
  1314. package/lib/components/TextAreaField/TextAreaField.test.js +28 -7
  1315. package/lib/components/TextField/TextField.js +2 -2
  1316. package/lib/components/TextField/TextField.stories.js +2 -2
  1317. package/lib/components/TextField/TextField.test.js +37 -14
  1318. package/lib/components/TimeField/TimeField.js +2 -2
  1319. package/lib/components/TimeField/TimeField.styles.js +2 -2
  1320. package/lib/components/TimeZonePicker/TimeZonePicker.js +3 -3
  1321. package/lib/components/TimeZonePicker/TimeZonePicker.test.js +68 -24
  1322. package/lib/components/TooltipTrigger/Tooltip.styles.js +2 -2
  1323. package/lib/components/TooltipTrigger/TooltipTrigger.js +3 -3
  1324. package/lib/components/TooltipTrigger/TooltipTrigger.stories.js +10 -0
  1325. package/lib/components/TooltipTrigger/TooltipTrigger.test.js +120 -78
  1326. package/lib/components/TreeView/TreeView.js +8 -8
  1327. package/lib/components/TreeView/TreeView.stories.js +4 -5
  1328. package/lib/components/TreeView/TreeView.test.js +225 -127
  1329. package/lib/components/TreeView/TreeViewKeyboardDelegate.js +3 -3
  1330. package/lib/components/TreeView/TreeViewRow.js +2 -2
  1331. package/lib/context/RadioContext/index.js +3 -0
  1332. package/lib/docs/design/ColorDocumentation.stories.js +10 -0
  1333. package/lib/hooks/useAriaLabelWarning/useAriaLabelWarning.test.js +1 -2
  1334. package/lib/hooks/useCircularLoader/useCircularLoader.js +2 -2
  1335. package/lib/hooks/useCircularLoader/useCircularLoader.test.js +4 -6
  1336. package/lib/hooks/useComponentToggle/useComponentToggle.test.js +8 -7
  1337. package/lib/hooks/useCopyToClipboard/useCopyToClipboard.js +3 -4
  1338. package/lib/hooks/useCopyToClipboard/useCopyToClipboard.test.js +4 -5
  1339. package/lib/hooks/useDeprecationWarning/useDeprecationWarning.test.js +2 -2
  1340. package/lib/hooks/useDevelopmentWarning/useDevelopmentWarning.test.js +1 -2
  1341. package/lib/hooks/useExpandableListViewItem/useExpandableListViewItem.js +5 -5
  1342. package/lib/hooks/useFallbackImage/useFallbackImage.test.js +2 -2
  1343. package/lib/hooks/useField/useField.js +6 -5
  1344. package/lib/hooks/useField/useField.test.js +10 -4
  1345. package/lib/hooks/useGetTheme/useGetTheme.js +2 -4
  1346. package/lib/hooks/useGetTheme/useGetTheme.test.js +2 -2
  1347. package/lib/hooks/useGridList/useGridList.js +2 -2
  1348. package/lib/hooks/useGridListItem/useGridListItem.js +3 -2
  1349. package/lib/hooks/useImageUploadState/useImageUploadState.js +1 -1
  1350. package/lib/hooks/useInputLoader/useInputLoader.js +0 -1
  1351. package/lib/hooks/useModalState/useModalState.js +2 -2
  1352. package/lib/hooks/useMountTransition/useMountTransition.js +1 -1
  1353. package/lib/hooks/useMountTransition/useMountTransition.test.js +35 -11
  1354. package/lib/hooks/useOverlappingMenuHoverState/useOverlappingMenuHoverState.test.js +9 -10
  1355. package/lib/hooks/useOverlayPanelState/useOverlayPanelState.js +2 -2
  1356. package/lib/hooks/usePagination/usePagination.js +2 -2
  1357. package/lib/hooks/useProgressiveState/useProgressiveState.test.js +58 -22
  1358. package/lib/hooks/usePropWarning/usePropWarning.test.js +1 -2
  1359. package/lib/hooks/useReorderableCollection/useReorderableCollection.js +4 -5
  1360. package/lib/hooks/useSelectField/useSelectField.js +2 -2
  1361. package/lib/hooks/useSliderField/useSliderField.js +2 -2
  1362. package/lib/hooks/useSliderField/useSliderField.test.js +2 -2
  1363. package/lib/hooks/useTShirtSize/useTShirtSize.test.js +1 -2
  1364. package/lib/hooks/useTypeAnimation/useTypeAnimation.test.js +3 -3
  1365. package/lib/hooks/useTypeAnimationWrapper/useTypeAnimationWrapper.test.js +1 -1
  1366. package/lib/mocks/handlers/users.js +4 -5
  1367. package/lib/recipes/AccordionCard.stories.js +2 -2
  1368. package/lib/recipes/ApplicationSearchDropdown.stories.hidden.js +2 -2
  1369. package/lib/recipes/AttributeMapping.stories.js +10 -0
  1370. package/lib/recipes/CollapsiblePanel.stories.js +2 -2
  1371. package/lib/recipes/ConditionFilter.stories.js +2 -2
  1372. package/lib/recipes/DataVisualization.stories.js +3 -4
  1373. package/lib/recipes/InlineEditing.stories.js +5 -5
  1374. package/lib/recipes/ListAndPanel.stories.js +4 -5
  1375. package/lib/recipes/LogoTabs.stories.js +2 -2
  1376. package/lib/recipes/MultipagePopup.stories.js +2 -2
  1377. package/lib/recipes/PanelContent.stories.js +5 -2
  1378. package/lib/recipes/Slider.stories.js +2 -2
  1379. package/lib/styles/ColorDocumentation.js +8 -17
  1380. package/lib/styles/colors.js +3 -3
  1381. package/lib/styles/forms/index.js +2 -2
  1382. package/lib/styles/spacing.js +0 -1
  1383. package/lib/styles/text.js +1 -2
  1384. package/lib/styles/theme.js +2 -2
  1385. package/lib/styles/themeOverrides/nextGenDarkMode/colors.js +2 -2
  1386. package/lib/styles/themeOverrides/nextGenDarkMode/customProperties/icons.js +2 -2
  1387. package/lib/styles/themeOverrides/nextGenDarkMode/customProperties/index.js +2 -2
  1388. package/lib/styles/themeOverrides/nextGenDarkMode/stories/NextGenDarkStickerSheet.chromatic.stories.js +10 -0
  1389. package/lib/styles/themeOverrides/nextGenDarkMode/variants/badges.js +2 -2
  1390. package/lib/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +2 -2
  1391. package/lib/styles/themeOverrides/nextGenDarkMode/variants/forms.js +2 -2
  1392. package/lib/styles/themeOverrides/nextGenDarkMode/variants/iconBadge.js +2 -2
  1393. package/lib/styles/themeOverrides/nextGenDarkMode/variants/input.js +2 -2
  1394. package/lib/styles/themeOverrides/nextGenDarkMode/variants/links.js +2 -2
  1395. package/lib/styles/themeOverrides/nextGenDarkMode/variants/navbar.js +2 -2
  1396. package/lib/styles/themeOverrides/nextGenDarkMode/variants/skeleton.js +2 -2
  1397. package/lib/styles/themeOverrides/stories/EnvironmentBreadcrumb.chromatic.stories.js +2 -2
  1398. package/lib/styles/themeOverrides/uiLibraryOverride.js +2 -2
  1399. package/lib/styles/themes/astro/customProperties/icons.js +1 -1
  1400. package/lib/styles/themes/astro-nano/astro-nano.js +2 -2
  1401. package/lib/styles/themes/end-user/end-user.js +2 -3
  1402. package/lib/styles/themes/next-gen/codeView/codeView.js +2 -2
  1403. package/lib/styles/themes/next-gen/colors/colors.js +2 -2
  1404. package/lib/styles/themes/next-gen/colors/iconWrapper.js +2 -2
  1405. package/lib/styles/themes/next-gen/customProperties/icons.js +1 -1
  1406. package/lib/styles/themes/next-gen/customProperties/index.js +2 -2
  1407. package/lib/styles/themes/next-gen/forms.js +2 -2
  1408. package/lib/styles/themes/next-gen/next-gen.js +3 -3
  1409. package/lib/styles/themes/next-gen/stories/NextGenStickerSheet.chromatic.stories.js +10 -0
  1410. package/lib/styles/themes/next-gen/text.js +1 -2
  1411. package/lib/styles/themes/next-gen/variants/badges.js +2 -2
  1412. package/lib/styles/themes/next-gen/variants/box.js +2 -2
  1413. package/lib/styles/themes/next-gen/variants/button.js +2 -2
  1414. package/lib/styles/themes/next-gen/variants/cards.js +2 -2
  1415. package/lib/styles/themes/next-gen/variants/dataTable.js +2 -2
  1416. package/lib/styles/themes/next-gen/variants/iconWrapper.js +2 -2
  1417. package/lib/styles/themes/next-gen/variants/input.js +2 -2
  1418. package/lib/styles/themes/next-gen/variants/links.js +2 -2
  1419. package/lib/styles/themes/next-gen/variants/navbar.js +2 -2
  1420. package/lib/styles/themes/next-gen/variants/navigationHeader.js +2 -2
  1421. package/lib/styles/themes/next-gen/variants/stepper.js +2 -2
  1422. package/lib/styles/themes/next-gen/variants/table.js +2 -2
  1423. package/lib/styles/themes/next-gen/variants/tableBase.js +2 -2
  1424. package/lib/styles/themes/next-gen/variants/text.js +2 -2
  1425. package/lib/styles/themes/next-gen/variants/variants.js +2 -2
  1426. package/lib/styles/variants/index.js +2 -2
  1427. package/lib/styles/variants/variants.js +2 -2
  1428. package/lib/tsconfig.lib.tsbuildinfo +1 -0
  1429. package/lib/utils/devUtils/createMockData.js +2 -2
  1430. package/lib/utils/devUtils/styledSystemUtils.js +2 -2
  1431. package/lib/utils/docUtils/ariaAttributes.js +2 -2
  1432. package/lib/utils/docUtils/ariaAttributes.test.js +2 -2
  1433. package/lib/utils/docUtils/fieldAttributes.js +2 -2
  1434. package/lib/utils/docUtils/hoverProps.js +2 -2
  1435. package/lib/utils/docUtils/pressAttributes.js +2 -2
  1436. package/lib/utils/docUtils/statusProp.js +2 -2
  1437. package/lib/utils/testUtils/dndMocks.js +20 -28
  1438. package/lib/utils/testUtils/testAxe.js +4 -5
  1439. package/lib/utils/testUtils/testWrapper.js +3 -4
  1440. package/lib/utils/testUtils/universalComponentTest.js +4 -5
  1441. package/lib/utils/testUtils/universalFormSubmitTest.js +102 -55
  1442. package/package.json +74 -47
  1443. package/LICENSE +0 -202
  1444. package/README.md +0 -103
  1445. package/lib/cjs/components/AIComponents/AIPanel/AIPanel.test.d.ts +0 -1
  1446. package/lib/cjs/components/AIComponents/Attachment/Attachment.test.d.ts +0 -1
  1447. package/lib/cjs/components/AIComponents/Prompt/Prompt.test.d.ts +0 -1
  1448. package/lib/cjs/components/AIComponents/PromptInput/PromptInput.test.d.ts +0 -1
  1449. package/lib/cjs/components/AIComponents/PromptInput/PromptUploadButton.test.d.ts +0 -1
  1450. package/lib/cjs/components/AIComponents/Response/Response.test.jsx +0 -191
  1451. package/lib/cjs/components/AIComponents/Response/ResponseMarkdown/ResponseMarkdown.test.d.ts +0 -1
  1452. package/lib/cjs/components/AIComponents/Suggestions/Suggestions.test.d.ts +0 -1
  1453. package/lib/cjs/components/AccordionGroup/AccordionGroup.test.d.ts +0 -1
  1454. package/lib/cjs/components/ArrayField/ArrayField.test.d.ts +0 -1
  1455. package/lib/cjs/components/Avatar/Avatar.test.d.ts +0 -1
  1456. package/lib/cjs/components/Badge/Badge.test.d.ts +0 -1
  1457. package/lib/cjs/components/Box/Box.test.d.ts +0 -1
  1458. package/lib/cjs/components/Bracket/Bracket.test.d.ts +0 -1
  1459. package/lib/cjs/components/Breadcrumbs/Breadcrumbs.test.d.ts +0 -1
  1460. package/lib/cjs/components/Button/Button.test.d.ts +0 -1
  1461. package/lib/cjs/components/ButtonBar/ButtonBar.test.d.ts +0 -1
  1462. package/lib/cjs/components/Calendar/Calendar.test.d.ts +0 -1
  1463. package/lib/cjs/components/Callout/Callout.test.d.ts +0 -1
  1464. package/lib/cjs/components/Card/Card.test.d.ts +0 -1
  1465. package/lib/cjs/components/CheckboxField/CheckboxField.test.d.ts +0 -1
  1466. package/lib/cjs/components/CodeEditor/CodeEditor.test.d.ts +0 -1
  1467. package/lib/cjs/components/CodeView/CodeView.test.d.ts +0 -1
  1468. package/lib/cjs/components/CollapsiblePanel/CollapsiblePanel.test.d.ts +0 -1
  1469. package/lib/cjs/components/CollapsiblePanelContainer/CollapsiblePanelBadge.test.d.ts +0 -1
  1470. package/lib/cjs/components/CollapsiblePanelContainer/CollapsiblePanelContainer.test.d.ts +0 -1
  1471. package/lib/cjs/components/CollapsiblePanelItem/CollapsiblePanelItem.test.d.ts +0 -1
  1472. package/lib/cjs/components/ColorField/ColorField.test.d.ts +0 -1
  1473. package/lib/cjs/components/CopyText/CopyText.test.d.ts +0 -1
  1474. package/lib/cjs/components/DataTable/DataTable.test.d.ts +0 -1
  1475. package/lib/cjs/components/DataTable/DataTableBadge.test.d.ts +0 -1
  1476. package/lib/cjs/components/DataTable/DataTableMenu.test.d.ts +0 -1
  1477. package/lib/cjs/components/DataTable/DataTableMultiLine.test.d.ts +0 -1
  1478. package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.d.ts +0 -4
  1479. package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentalBreadcrumbUniversal.test.d.ts +0 -1
  1480. package/lib/cjs/components/ExpandableText/ExpandableText.test.d.ts +0 -1
  1481. package/lib/cjs/components/FieldHelperText/FieldHelperText.test.d.ts +0 -1
  1482. package/lib/cjs/components/Footer/Footer.test.d.ts +0 -1
  1483. package/lib/cjs/components/Grid/Grid.test.d.ts +0 -1
  1484. package/lib/cjs/components/GridList/GridList.test.d.ts +0 -1
  1485. package/lib/cjs/components/HelpHint/HelpHint.test.d.ts +0 -1
  1486. package/lib/cjs/components/Icon/Icon.test.d.ts +0 -1
  1487. package/lib/cjs/components/Icon/NoticeIcon.test.d.ts +0 -1
  1488. package/lib/cjs/components/IconBadge/IconBadge.test.d.ts +0 -1
  1489. package/lib/cjs/components/IconButton/IconButton.test.d.ts +0 -1
  1490. package/lib/cjs/components/IconButtonToggle/IconButtonToggle.test.d.ts +0 -1
  1491. package/lib/cjs/components/IconWrapper/IconWrapper.test.d.ts +0 -1
  1492. package/lib/cjs/components/Image/Image.test.d.ts +0 -1
  1493. package/lib/cjs/components/Input/Input.test.d.ts +0 -1
  1494. package/lib/cjs/components/Label/Label.test.d.ts +0 -1
  1495. package/lib/cjs/components/Link/Link.test.d.ts +0 -1
  1496. package/lib/cjs/components/ListBox/ListBox.test.d.ts +0 -1
  1497. package/lib/cjs/components/ListItem/ListItem.test.d.ts +0 -1
  1498. package/lib/cjs/components/ListView/ListView.test.d.ts +0 -1
  1499. package/lib/cjs/components/Loader/Loader.test.d.ts +0 -1
  1500. package/lib/cjs/components/Menu/Menu.test.d.ts +0 -1
  1501. package/lib/cjs/components/MenuItem/MenuItem.test.d.ts +0 -1
  1502. package/lib/cjs/components/MenuSection/MenuSection.test.d.ts +0 -1
  1503. package/lib/cjs/components/Messages/Messages.test.d.ts +0 -1
  1504. package/lib/cjs/components/Messages/utils/tests/messagesReducer.test.d.ts +0 -1
  1505. package/lib/cjs/components/Messages/utils/tests/multiMessagesReducer.test.d.ts +0 -1
  1506. package/lib/cjs/components/Modal/ModalBody.test.d.ts +0 -1
  1507. package/lib/cjs/components/Modal/ModalFooter.test.d.ts +0 -1
  1508. package/lib/cjs/components/Modal/ModalHeader.test.d.ts +0 -1
  1509. package/lib/cjs/components/Modal/tests/Modal.integration.test.d.ts +0 -1
  1510. package/lib/cjs/components/Modal/tests/Modal.unit.test.d.ts +0 -1
  1511. package/lib/cjs/components/NavBar/NavBar.test.d.ts +0 -1
  1512. package/lib/cjs/components/NavBarSection/NavBarItemBody.test.d.ts +0 -1
  1513. package/lib/cjs/components/NavBarSection/NavBarItemHeader.test.d.ts +0 -1
  1514. package/lib/cjs/components/NavSideBar/Icon.test.d.ts +0 -1
  1515. package/lib/cjs/components/NavSideBar/NavSideBar.test.d.ts +0 -1
  1516. package/lib/cjs/components/NavigationHeader/NavigationHeader.test.d.ts +0 -1
  1517. package/lib/cjs/components/OverlayPanel/OverlayPanel.test.d.ts +0 -1
  1518. package/lib/cjs/components/Pagination/Pagination.test.d.ts +0 -1
  1519. package/lib/cjs/components/PasswordField/PasswordField.test.d.ts +0 -1
  1520. package/lib/cjs/components/Popover/Popover.test.d.ts +0 -1
  1521. package/lib/cjs/components/PopoverMenu/PopoverMenu.test.d.ts +0 -1
  1522. package/lib/cjs/components/ProgressBar/ProgressBar.test.d.ts +0 -1
  1523. package/lib/cjs/components/RadioField/RadioField.test.d.ts +0 -1
  1524. package/lib/cjs/components/RadioGroupField/RadioGroupField.test.d.ts +0 -1
  1525. package/lib/cjs/components/RangeCalendar/RangeCalendar.test.d.ts +0 -1
  1526. package/lib/cjs/components/RequirementsList/RequirementsList.test.d.ts +0 -1
  1527. package/lib/cjs/components/RockerButtonGroup/RockerButtonGroup.test.d.ts +0 -1
  1528. package/lib/cjs/components/ScrollBox/ScrollBox.test.d.ts +0 -1
  1529. package/lib/cjs/components/SearchField/SearchField.test.d.ts +0 -1
  1530. package/lib/cjs/components/SearchNav/SearchNav.test.d.ts +0 -1
  1531. package/lib/cjs/components/SelectField/SelectField.test.d.ts +0 -1
  1532. package/lib/cjs/components/SelectFieldBase/HiddenSelect.test.d.ts +0 -1
  1533. package/lib/cjs/components/SelectFieldBase/SelectFieldBase.test.d.ts +0 -1
  1534. package/lib/cjs/components/Separator/Separator.test.d.ts +0 -1
  1535. package/lib/cjs/components/ServerErrorBoundary/ServerErrorBoundary.test.d.ts +0 -1
  1536. package/lib/cjs/components/Skeleton/Skeleton.test.d.ts +0 -1
  1537. package/lib/cjs/components/SliderField/SliderField.test.d.ts +0 -1
  1538. package/lib/cjs/components/StatusIcon/StatusIcon.test.d.ts +0 -1
  1539. package/lib/cjs/components/SwitchField/SwitchField.test.d.ts +0 -1
  1540. package/lib/cjs/components/Table/Table.test.d.ts +0 -1
  1541. package/lib/cjs/components/TableBase/TableBase.test.d.ts +0 -1
  1542. package/lib/cjs/components/TableBody/TableBody.test.d.ts +0 -1
  1543. package/lib/cjs/components/TableCaption/TableCaption.test.d.ts +0 -1
  1544. package/lib/cjs/components/TableCell/TableCell.test.d.ts +0 -1
  1545. package/lib/cjs/components/TableHead/TableHead.test.d.ts +0 -1
  1546. package/lib/cjs/components/TableRow/TableRow.test.d.ts +0 -1
  1547. package/lib/cjs/components/Tabs/Tabs.test.d.ts +0 -1
  1548. package/lib/cjs/components/Text/Text.test.d.ts +0 -1
  1549. package/lib/cjs/components/TextAreaField/TextAreaField.test.d.ts +0 -1
  1550. package/lib/cjs/components/TextField/TextField.test.d.ts +0 -1
  1551. package/lib/cjs/components/TimeField/TimeField.test.d.ts +0 -1
  1552. package/lib/cjs/components/TooltipTrigger/TooltipTrigger.test.d.ts +0 -1
  1553. package/lib/cjs/hooks/useAriaLabelWarning/useAriaLabelWarning.test.d.ts +0 -1
  1554. package/lib/cjs/hooks/useCircularLoader/useCircularLoader.test.d.ts +0 -1
  1555. package/lib/cjs/hooks/useComponentToggle/useComponentToggle.test.d.ts +0 -1
  1556. package/lib/cjs/hooks/useCopyToClipboard/useCopyToClipboard.test.d.ts +0 -1
  1557. package/lib/cjs/hooks/useDevelopmentWarning/useDevelopmentWarning.test.d.ts +0 -1
  1558. package/lib/cjs/hooks/useFallbackImage/useFallbackImage.test.d.ts +0 -1
  1559. package/lib/cjs/hooks/useField/useField.test.d.ts +0 -1
  1560. package/lib/cjs/hooks/useGetTheme/useGetTheme.test.d.ts +0 -1
  1561. package/lib/cjs/hooks/useLoadPrev/useLoadPrev.test.d.ts +0 -1
  1562. package/lib/cjs/hooks/useLocalOrForwardRef/useLocalOrForwardRef.test.d.ts +0 -1
  1563. package/lib/cjs/hooks/useModalState/useModalState.test.d.ts +0 -1
  1564. package/lib/cjs/hooks/useMountTransition/useMountTransition.test.d.ts +0 -1
  1565. package/lib/cjs/hooks/useNavBarPress/useNavBarPress.test.d.ts +0 -1
  1566. package/lib/cjs/hooks/useNavBarStyling/useNavBarStyling.test.d.ts +0 -1
  1567. package/lib/cjs/hooks/useOverlappingMenuHoverState/useOverlappingMenuHoverState.test.d.ts +0 -1
  1568. package/lib/cjs/hooks/useOverlayPanelState/useOverlayPanelState.test.d.ts +0 -1
  1569. package/lib/cjs/hooks/useProgressiveState/useProgressiveState.test.d.ts +0 -1
  1570. package/lib/cjs/hooks/usePropWarning/usePropWarning.test.d.ts +0 -1
  1571. package/lib/cjs/hooks/useSliderField/useSliderField.test.d.ts +0 -1
  1572. package/lib/cjs/hooks/useStatusClasses/useStatusClasses.test.d.ts +0 -1
  1573. package/lib/cjs/hooks/useTShirtSize/useTShirtSize.test.d.ts +0 -1
  1574. package/lib/cjs/hooks/useTypeAnimation/useTypeAnimation.test.d.ts +0 -1
  1575. package/lib/cjs/hooks/useTypeAnimationWrapper/useTypeAnimationWrapper.test.d.ts +0 -1
  1576. package/lib/components/AIComponents/Response/Response.test.jsx +0 -191
@@ -1,6 +1,16 @@
1
+ import _Symbol from "@babel/runtime-corejs3/core-js-stable/symbol";
2
+ import _Object$defineProperty from "@babel/runtime-corejs3/core-js-stable/object/define-property";
3
+ import _Object$create from "@babel/runtime-corejs3/core-js-stable/object/create";
4
+ import _Object$getPrototypeOf from "@babel/runtime-corejs3/core-js-stable/object/get-prototype-of";
5
+ import _forEachInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/for-each";
6
+ import _Object$setPrototypeOf from "@babel/runtime-corejs3/core-js-stable/object/set-prototype-of";
7
+ import _Promise from "@babel/runtime-corejs3/core-js-stable/promise";
8
+ import _typeof from "@babel/runtime-corejs3/helpers/esm/typeof";
1
9
  import _slicedToArray from "@babel/runtime-corejs3/helpers/esm/slicedToArray";
10
+ import _asyncToGenerator from "@babel/runtime-corejs3/helpers/esm/asyncToGenerator";
2
11
  import _extends from "@babel/runtime-corejs3/helpers/esm/extends";
3
12
  import _sliceInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/slice";
13
+ function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return r; }; var t, r = {}, e = Object.prototype, n = e.hasOwnProperty, o = "function" == typeof _Symbol ? _Symbol : {}, i = o.iterator || "@@iterator", a = o.asyncIterator || "@@asyncIterator", u = o.toStringTag || "@@toStringTag"; function c(t, r, e, n) { return _Object$defineProperty(t, r, { value: e, enumerable: !n, configurable: !n, writable: !n }); } try { c({}, ""); } catch (t) { c = function c(t, r, e) { return t[r] = e; }; } function h(r, e, n, o) { var i = e && e.prototype instanceof Generator ? e : Generator, a = _Object$create(i.prototype); return c(a, "_invoke", function (r, e, n) { var o = 1; return function (i, a) { if (3 === o) throw Error("Generator is already running"); if (4 === o) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var u = n.delegate; if (u) { var c = d(u, n); if (c) { if (c === f) continue; return c; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (1 === o) throw o = 4, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = 3; var h = s(r, e, n); if ("normal" === h.type) { if (o = n.done ? 4 : 2, h.arg === f) continue; return { value: h.arg, done: n.done }; } "throw" === h.type && (o = 4, n.method = "throw", n.arg = h.arg); } }; }(r, n, new Context(o || [])), !0), a; } function s(t, r, e) { try { return { type: "normal", arg: t.call(r, e) }; } catch (t) { return { type: "throw", arg: t }; } } r.wrap = h; var f = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var l = {}; c(l, i, function () { return this; }); var p = _Object$getPrototypeOf, y = p && p(p(x([]))); y && y !== e && n.call(y, i) && (l = y); var v = GeneratorFunctionPrototype.prototype = Generator.prototype = _Object$create(l); function g(t) { var _context8; _forEachInstanceProperty(_context8 = ["next", "throw", "return"]).call(_context8, function (r) { c(t, r, function (t) { return this._invoke(r, t); }); }); } function AsyncIterator(t, r) { function e(o, i, a, u) { var c = s(t[o], t, i); if ("throw" !== c.type) { var h = c.arg, f = h.value; return f && "object" == _typeof(f) && n.call(f, "__await") ? r.resolve(f.__await).then(function (t) { e("next", t, a, u); }, function (t) { e("throw", t, a, u); }) : r.resolve(f).then(function (t) { h.value = t, a(h); }, function (t) { return e("throw", t, a, u); }); } u(c.arg); } var o; c(this, "_invoke", function (t, n) { function i() { return new r(function (r, o) { e(t, n, r, o); }); } return o = o ? o.then(i, i) : i(); }, !0); } function d(r, e) { var n = e.method, o = r.i[n]; if (o === t) return e.delegate = null, "throw" === n && r.i["return"] && (e.method = "return", e.arg = t, d(r, e), "throw" === e.method) || "return" !== n && (e.method = "throw", e.arg = new TypeError("The iterator does not provide a '" + n + "' method")), f; var i = s(o, r.i, e.arg); if ("throw" === i.type) return e.method = "throw", e.arg = i.arg, e.delegate = null, f; var a = i.arg; return a ? a.done ? (e[r.r] = a.value, e.next = r.n, "return" !== e.method && (e.method = "next", e.arg = t), e.delegate = null, f) : a : (e.method = "throw", e.arg = new TypeError("iterator result is not an object"), e.delegate = null, f); } function w(t) { this.tryEntries.push(t); } function m(r) { var e = r[4] || {}; e.type = "normal", e.arg = t, r[4] = e; } function Context(t) { this.tryEntries = [[-1]], _forEachInstanceProperty(t).call(t, w, this), this.reset(!0); } function x(r) { if (null != r) { var e = r[i]; if (e) return e.call(r); if ("function" == typeof r.next) return r; if (!isNaN(r.length)) { var o = -1, a = function e() { for (; ++o < r.length;) if (n.call(r, o)) return e.value = r[o], e.done = !1, e; return e.value = t, e.done = !0, e; }; return a.next = a; } } throw new TypeError(_typeof(r) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, c(v, "constructor", GeneratorFunctionPrototype), c(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = c(GeneratorFunctionPrototype, u, "GeneratorFunction"), r.isGeneratorFunction = function (t) { var r = "function" == typeof t && t.constructor; return !!r && (r === GeneratorFunction || "GeneratorFunction" === (r.displayName || r.name)); }, r.mark = function (t) { return _Object$setPrototypeOf ? _Object$setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, c(t, u, "GeneratorFunction")), t.prototype = _Object$create(v), t; }, r.awrap = function (t) { return { __await: t }; }, g(AsyncIterator.prototype), c(AsyncIterator.prototype, a, function () { return this; }), r.AsyncIterator = AsyncIterator, r.async = function (t, e, n, o, i) { void 0 === i && (i = _Promise); var a = new AsyncIterator(h(t, e, n, o), i); return r.isGeneratorFunction(e) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, g(v), c(v, u, "Generator"), c(v, i, function () { return this; }), c(v, "toString", function () { return "[object Generator]"; }), r.keys = function (t) { var r = Object(t), e = []; for (var n in r) e.unshift(n); return function t() { for (; e.length;) if ((n = e.pop()) in r) return t.value = n, t.done = !1, t; return t.done = !0, t; }; }, r.values = x, Context.prototype = { constructor: Context, reset: function reset(r) { var _context9; if (this.prev = this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, _forEachInstanceProperty(_context9 = this.tryEntries).call(_context9, m), !r) for (var e in this) "t" === e.charAt(0) && n.call(this, e) && !isNaN(+_sliceInstanceProperty(e).call(e, 1)) && (this[e] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0][4]; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(r) { if (this.done) throw r; var e = this; function n(t) { a.type = "throw", a.arg = r, e.next = t; } for (var o = e.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i[4], u = this.prev, c = i[1], h = i[2]; if (-1 === i[0]) return n("end"), !1; if (!c && !h) throw Error("try statement without catch or finally"); if (null != i[0] && i[0] <= u) { if (u < c) return this.method = "next", this.arg = t, n(c), !0; if (u < h) return n(h), !1; } } }, abrupt: function abrupt(t, r) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var n = this.tryEntries[e]; if (n[0] > -1 && n[0] <= this.prev && this.prev < n[2]) { var o = n; break; } } o && ("break" === t || "continue" === t) && o[0] <= r && r <= o[2] && (o = null); var i = o ? o[4] : {}; return i.type = t, i.arg = r, o ? (this.method = "next", this.next = o[2], f) : this.complete(i); }, complete: function complete(t, r) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && r && (this.next = r), f; }, finish: function finish(t) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var e = this.tryEntries[r]; if (e[2] === t) return this.complete(e[4], e[3]), m(e), f; } }, "catch": function _catch(t) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var e = this.tryEntries[r]; if (e[0] === t) { var n = e[4]; if ("throw" === n.type) { var o = n.arg; m(e); } return o; } } throw Error("illegal catch attempt"); }, delegateYield: function delegateYield(r, e, n) { return this.delegate = { i: x(r), r: e, n: n }, "next" === this.method && (this.arg = t), f; } }, r; }
4
14
  import React from 'react';
5
15
  import { Item } from 'react-stately';
6
16
  import userEvent from '@testing-library/user-event';
@@ -170,31 +180,54 @@ var getComponentWithSlot = function getComponentWithSlot(props) {
170
180
  slots: props.slots
171
181
  }, ___EmotionJSX(Text, null, "Render me!"))));
172
182
  };
173
- test('button press uses callback', function () {
174
- var onPress = jest.fn();
175
- getComponent({
176
- onExpandedChange: onPress
177
- });
178
- var buttons = screen.getAllByRole('button');
179
- var selectedItem = buttons[0];
180
- expect(selectedItem).not.toHaveClass('is-pressed');
181
- expect(onPress).not.toHaveBeenCalled();
183
+ test('button press uses callback', /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
184
+ var onPress, buttons, selectedItem;
185
+ return _regeneratorRuntime().wrap(function _callee$(_context) {
186
+ while (1) switch (_context.prev = _context.next) {
187
+ case 0:
188
+ onPress = jest.fn();
189
+ getComponent({
190
+ onExpandedChange: onPress
191
+ });
192
+ buttons = screen.getAllByRole('button');
193
+ selectedItem = buttons[0];
194
+ expect(selectedItem).not.toHaveClass('is-pressed');
195
+ expect(onPress).not.toHaveBeenCalled();
182
196
 
183
- // Hold down the button to see pressed styles
184
- fireEvent.mouseDown(selectedItem);
185
- fireEvent.mouseUp(selectedItem);
186
- expect(onPress).toHaveBeenCalled();
187
- });
188
- test('toggle accordion on mouse click', function () {
189
- getComponent();
190
- var buttons = screen.getAllByRole('button');
191
- var selectedItem = buttons[0];
192
- expect(selectedItem).toHaveAttribute('aria-expanded', 'false');
193
- userEvent.click(selectedItem);
194
- expect(selectedItem).toHaveAttribute('aria-expanded', 'true');
195
- userEvent.click(selectedItem);
196
- expect(selectedItem).toHaveAttribute('aria-expanded', 'false');
197
- });
197
+ // Hold down the button to see pressed styles
198
+ _context.next = 8;
199
+ return userEvent.click(selectedItem);
200
+ case 8:
201
+ expect(onPress).toHaveBeenCalled();
202
+ case 9:
203
+ case "end":
204
+ return _context.stop();
205
+ }
206
+ }, _callee);
207
+ })));
208
+ test('toggle accordion on mouse click', /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
209
+ var buttons, selectedItem;
210
+ return _regeneratorRuntime().wrap(function _callee2$(_context2) {
211
+ while (1) switch (_context2.prev = _context2.next) {
212
+ case 0:
213
+ getComponent();
214
+ buttons = screen.getAllByRole('button');
215
+ selectedItem = buttons[0];
216
+ expect(selectedItem).toHaveAttribute('aria-expanded', 'false');
217
+ _context2.next = 6;
218
+ return userEvent.click(selectedItem);
219
+ case 6:
220
+ expect(selectedItem).toHaveAttribute('aria-expanded', 'true');
221
+ _context2.next = 9;
222
+ return userEvent.click(selectedItem);
223
+ case 9:
224
+ expect(selectedItem).toHaveAttribute('aria-expanded', 'false');
225
+ case 10:
226
+ case "end":
227
+ return _context2.stop();
228
+ }
229
+ }, _callee2);
230
+ })));
198
231
  test('allows users to open and close accordion item with enter / space key', function () {
199
232
  getComponent();
200
233
  var buttons = screen.getAllByRole('button');
@@ -251,34 +284,54 @@ test('allows users to naviagte accordion headers through arrow keys', function (
251
284
  });
252
285
  expect(secondItem).toHaveFocus();
253
286
  });
254
- test('allows users to navigate accordion headers through the tab key', function () {
255
- getComponent();
256
- var buttons = screen.getAllByRole('button');
257
- var _buttons2 = _slicedToArray(buttons, 3),
258
- firstItem = _buttons2[0],
259
- secondItem = _buttons2[1],
260
- thirdItem = _buttons2[2];
261
- userEvent.tab();
262
- expect(firstItem).toHaveFocus();
263
- userEvent.tab();
264
- expect(secondItem).toHaveFocus();
265
- userEvent.tab({
266
- shift: true
267
- });
268
- expect(firstItem).toHaveFocus();
269
- userEvent.tab();
270
- expect(secondItem).toHaveFocus();
271
- userEvent.tab();
272
- expect(thirdItem).toHaveFocus();
273
- userEvent.tab();
274
- expect(firstItem).not.toHaveFocus();
275
- expect(secondItem).not.toHaveFocus();
276
- expect(thirdItem).not.toHaveFocus();
277
- userEvent.tab({
278
- shift: true
279
- });
280
- expect(thirdItem).toHaveFocus();
281
- });
287
+ test('allows users to navigate accordion headers through the tab key', /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee3() {
288
+ var buttons, _buttons2, firstItem, secondItem, thirdItem;
289
+ return _regeneratorRuntime().wrap(function _callee3$(_context3) {
290
+ while (1) switch (_context3.prev = _context3.next) {
291
+ case 0:
292
+ getComponent();
293
+ buttons = screen.getAllByRole('button');
294
+ _buttons2 = _slicedToArray(buttons, 3), firstItem = _buttons2[0], secondItem = _buttons2[1], thirdItem = _buttons2[2];
295
+ _context3.next = 5;
296
+ return userEvent.tab();
297
+ case 5:
298
+ expect(firstItem).toHaveFocus();
299
+ _context3.next = 8;
300
+ return userEvent.tab();
301
+ case 8:
302
+ expect(secondItem).toHaveFocus();
303
+ _context3.next = 11;
304
+ return userEvent.tab({
305
+ shift: true
306
+ });
307
+ case 11:
308
+ expect(firstItem).toHaveFocus();
309
+ _context3.next = 14;
310
+ return userEvent.tab();
311
+ case 14:
312
+ expect(secondItem).toHaveFocus();
313
+ _context3.next = 17;
314
+ return userEvent.tab();
315
+ case 17:
316
+ expect(thirdItem).toHaveFocus();
317
+ _context3.next = 20;
318
+ return userEvent.tab();
319
+ case 20:
320
+ expect(firstItem).not.toHaveFocus();
321
+ expect(secondItem).not.toHaveFocus();
322
+ expect(thirdItem).not.toHaveFocus();
323
+ _context3.next = 25;
324
+ return userEvent.tab({
325
+ shift: true
326
+ });
327
+ case 25:
328
+ expect(thirdItem).toHaveFocus();
329
+ case 26:
330
+ case "end":
331
+ return _context3.stop();
332
+ }
333
+ }, _callee3);
334
+ })));
282
335
  test('disabled keys prop disables an accordion item', function () {
283
336
  getComponent({
284
337
  disabledKeys: ['first']
@@ -302,25 +355,49 @@ test('expanded keys expands an accordion item', function () {
302
355
  var selectedItem = buttons[0];
303
356
  expect(selectedItem).toHaveAttribute('aria-expanded', 'true');
304
357
  });
305
- test('input recives focus in expanded accordion item when click', function () {
306
- getComponentWithInput({
307
- expandedKeys: ['second']
308
- });
309
- var input = screen.getByTestId('testInput');
310
- expect(input).not.toHaveFocus();
311
- userEvent.click(input);
312
- expect(input).toHaveFocus();
313
- });
314
- test('able to click a textfield that is the rendered child of an accordion', function () {
315
- getComponent({
316
- expandedKeys: ['third']
317
- });
318
- var field = screen.getByTestId('testField');
319
- var input = screen.getByRole('form');
320
- userEvent.click(input);
321
- userEvent.type(input, 'banana');
322
- expect(field).toHaveClass('has-focus-within');
323
- });
358
+ test('input recives focus in expanded accordion item when click', /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee4() {
359
+ var input;
360
+ return _regeneratorRuntime().wrap(function _callee4$(_context4) {
361
+ while (1) switch (_context4.prev = _context4.next) {
362
+ case 0:
363
+ getComponentWithInput({
364
+ expandedKeys: ['second']
365
+ });
366
+ input = screen.getByTestId('testInput');
367
+ expect(input).not.toHaveFocus();
368
+ _context4.next = 5;
369
+ return userEvent.click(input);
370
+ case 5:
371
+ expect(input).toHaveFocus();
372
+ case 6:
373
+ case "end":
374
+ return _context4.stop();
375
+ }
376
+ }, _callee4);
377
+ })));
378
+ test('able to click a textfield that is the rendered child of an accordion', /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee5() {
379
+ var field, input;
380
+ return _regeneratorRuntime().wrap(function _callee5$(_context5) {
381
+ while (1) switch (_context5.prev = _context5.next) {
382
+ case 0:
383
+ getComponent({
384
+ expandedKeys: ['third']
385
+ });
386
+ field = screen.getByTestId('testField');
387
+ input = screen.getByRole('form');
388
+ _context5.next = 5;
389
+ return userEvent.click(input);
390
+ case 5:
391
+ _context5.next = 7;
392
+ return userEvent.type(input, 'banana');
393
+ case 7:
394
+ expect(field).toHaveClass('has-focus-within');
395
+ case 8:
396
+ case "end":
397
+ return _context5.stop();
398
+ }
399
+ }, _callee5);
400
+ })));
324
401
  test('Item accepts a data-id and the data-id can be found in the DOM', function () {
325
402
  getComponent();
326
403
  var buttons = screen.getAllByText('Accordion item');
@@ -334,34 +411,66 @@ test('items do not automatically expand if wrapped in an open OverlayPanel', fun
334
411
  var selectedItem = buttons[0];
335
412
  expect(selectedItem).not.toHaveAttribute('aria-expanded', 'true');
336
413
  });
337
- test('accordion is compatible with another component that uses an overlay', function () {
338
- getComponentWithPopover();
339
- var buttons = screen.getAllByRole('button');
340
- var popoverButton = screen.getByTestId('popoverbutton');
341
- userEvent.click(popoverButton);
342
- var selectedItem = buttons[0];
343
- expect(selectedItem).toHaveAttribute('aria-expanded', 'true');
344
- userEvent.click(selectedItem);
345
- expect(selectedItem).toHaveAttribute('aria-expanded', 'false');
346
- userEvent.click(selectedItem);
347
- expect(selectedItem).toHaveAttribute('aria-expanded', 'true');
348
- });
349
- test('accordion works if there are multiple, controlled on the same implementation', function () {
350
- getComponentWithMultipleAccordion();
351
- var buttons = screen.getAllByRole('button');
352
- var selectedItem = buttons[0];
353
- var secondSelectedItem = buttons[1];
354
- expect(selectedItem).toHaveAttribute('aria-expanded', 'true');
355
- userEvent.click(selectedItem);
356
- expect(selectedItem).toHaveAttribute('aria-expanded', 'false');
357
- userEvent.click(selectedItem);
358
- expect(selectedItem).toHaveAttribute('aria-expanded', 'true');
359
- expect(secondSelectedItem).toHaveAttribute('aria-expanded', 'false');
360
- userEvent.click(secondSelectedItem);
361
- expect(secondSelectedItem).toHaveAttribute('aria-expanded', 'true');
362
- userEvent.click(secondSelectedItem);
363
- expect(secondSelectedItem).toHaveAttribute('aria-expanded', 'false');
364
- });
414
+ test('accordion is compatible with another component that uses an overlay', /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee6() {
415
+ var buttons, popoverButton, selectedItem;
416
+ return _regeneratorRuntime().wrap(function _callee6$(_context6) {
417
+ while (1) switch (_context6.prev = _context6.next) {
418
+ case 0:
419
+ getComponentWithPopover();
420
+ buttons = screen.getAllByRole('button');
421
+ popoverButton = screen.getByTestId('popoverbutton');
422
+ _context6.next = 5;
423
+ return userEvent.click(popoverButton);
424
+ case 5:
425
+ selectedItem = buttons[0];
426
+ expect(selectedItem).toHaveAttribute('aria-expanded', 'true');
427
+ _context6.next = 9;
428
+ return userEvent.click(selectedItem);
429
+ case 9:
430
+ expect(selectedItem).toHaveAttribute('aria-expanded', 'false');
431
+ _context6.next = 12;
432
+ return userEvent.click(selectedItem);
433
+ case 12:
434
+ expect(selectedItem).toHaveAttribute('aria-expanded', 'true');
435
+ case 13:
436
+ case "end":
437
+ return _context6.stop();
438
+ }
439
+ }, _callee6);
440
+ })));
441
+ test('accordion works if there are multiple, controlled on the same implementation', /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee7() {
442
+ var buttons, selectedItem, secondSelectedItem;
443
+ return _regeneratorRuntime().wrap(function _callee7$(_context7) {
444
+ while (1) switch (_context7.prev = _context7.next) {
445
+ case 0:
446
+ getComponentWithMultipleAccordion();
447
+ buttons = screen.getAllByRole('button');
448
+ selectedItem = buttons[0];
449
+ secondSelectedItem = buttons[1];
450
+ expect(selectedItem).toHaveAttribute('aria-expanded', 'true');
451
+ _context7.next = 7;
452
+ return userEvent.click(selectedItem);
453
+ case 7:
454
+ expect(selectedItem).toHaveAttribute('aria-expanded', 'false');
455
+ _context7.next = 10;
456
+ return userEvent.click(selectedItem);
457
+ case 10:
458
+ expect(selectedItem).toHaveAttribute('aria-expanded', 'true');
459
+ expect(secondSelectedItem).toHaveAttribute('aria-expanded', 'false');
460
+ _context7.next = 14;
461
+ return userEvent.click(secondSelectedItem);
462
+ case 14:
463
+ expect(secondSelectedItem).toHaveAttribute('aria-expanded', 'true');
464
+ _context7.next = 17;
465
+ return userEvent.click(secondSelectedItem);
466
+ case 17:
467
+ expect(secondSelectedItem).toHaveAttribute('aria-expanded', 'false');
468
+ case 18:
469
+ case "end":
470
+ return _context7.stop();
471
+ }
472
+ }, _callee7);
473
+ })));
365
474
 
366
475
  // get the last char of heading tag and convert to number, 'h1' => 1
367
476
  var getLabelHeadingLevel = function getLabelHeadingLevel(labelHeading) {
@@ -11,8 +11,8 @@ import _slicedToArray from "@babel/runtime-corejs3/helpers/esm/slicedToArray";
11
11
  import _objectWithoutProperties from "@babel/runtime-corejs3/helpers/esm/objectWithoutProperties";
12
12
  var _excluded = ["addButtonLabel", "addButtonProps", "defaultValue", "fieldControlWrapperProps", "value", "label", "helperText", "status", "onAdd", "onChange", "onDelete", "renderField", "labelProps", "maxSize", "maxSizeText", "slots"],
13
13
  _excluded2 = ["id", "onComponentRender", "fieldValue"];
14
- function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
15
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context3, _context4; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context3 = ownKeys(Object(source), !0)).call(_context3, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context4 = ownKeys(Object(source))).call(_context4, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
14
+ function ownKeys(e, r) { var t = _Object$keys(e); if (_Object$getOwnPropertySymbols) { var o = _Object$getOwnPropertySymbols(e); r && (o = _filterInstanceProperty(o).call(o, function (r) { return _Object$getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
15
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var _context3, _context4; var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? _forEachInstanceProperty(_context3 = ownKeys(Object(t), !0)).call(_context3, function (r) { _defineProperty(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(e, _Object$getOwnPropertyDescriptors(t)) : _forEachInstanceProperty(_context4 = ownKeys(Object(t))).call(_context4, function (r) { _Object$defineProperty(e, r, _Object$getOwnPropertyDescriptor(t, r)); }); } return e; }
16
16
  import _mapInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/map";
17
17
  import _filterInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/filter";
18
18
  import _concatInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/concat";
@@ -11,8 +11,8 @@ import _extends from "@babel/runtime-corejs3/helpers/esm/extends";
11
11
  import _defineProperty from "@babel/runtime-corejs3/helpers/esm/defineProperty";
12
12
  import _concatInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/concat";
13
13
  import _filterInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/filter";
14
- function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
15
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context2, _context3; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context2 = ownKeys(Object(source), !0)).call(_context2, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context3 = ownKeys(Object(source))).call(_context3, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
14
+ function ownKeys(e, r) { var t = _Object$keys(e); if (_Object$getOwnPropertySymbols) { var o = _Object$getOwnPropertySymbols(e); r && (o = _filterInstanceProperty(o).call(o, function (r) { return _Object$getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
15
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var _context2, _context3; var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? _forEachInstanceProperty(_context2 = ownKeys(Object(t), !0)).call(_context2, function (r) { _defineProperty(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(e, _Object$getOwnPropertyDescriptors(t)) : _forEachInstanceProperty(_context3 = ownKeys(Object(t))).call(_context3, function (r) { _Object$defineProperty(e, r, _Object$getOwnPropertyDescriptor(t, r)); }); } return e; }
16
16
  import React from 'react';
17
17
  import { OverlayProvider } from 'react-aria';
18
18
  import { v4 as uuid } from 'uuid';
@@ -22,7 +22,7 @@ export var GlobalStyles = function GlobalStyles(_ref2) {
22
22
  isOnyx = _useGetTheme$themeSta.isOnyx,
23
23
  isOnyxDark = _useGetTheme$themeSta.isOnyxDark;
24
24
  return ___EmotionJSX(Global, {
25
- styles: /*#__PURE__*/css("@import url(\"https://use.typekit.net/icz8cni.css\");{}", emotionNormalize, " ", pingitoFont, " ", openSansFont, " *{box-sizing:border-box;}html,body{padding:0;margin:0;background:white;min-height:100%;font-family:", isEndUserTheme && 'pingito, ', " ", isOnyx && 'Open Sans, ', " \"Helvetica Neue\",Helvetica,sans-serif;}.is-disabled{opacity:", isOnyx || isOnyxDark ? 0.65 : 0.5, ";pointer-events:none;}[data-live-announcer]{display:none;}button:focus-visible,[type=\"button\"]:focus-visible,[type=\"reset\"]:focus-visible,[type=\"submit\"]:focus-visible{outline:0;}" + (process.env.NODE_ENV === "production" ? "" : ";label:GlobalStyles;"), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0FzdHJvUHJvdmlkZXIvQXN0cm9Qcm92aWRlci5qcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFlaUIiLCJmaWxlIjoiLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvQXN0cm9Qcm92aWRlci9Bc3Ryb1Byb3ZpZGVyLmpzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IFJlYWN0LCB7IGZvcndhcmRSZWYsIHVzZU1lbW8gfSBmcm9tICdyZWFjdCc7XG5pbXBvcnQgeyBjc3MsIEdsb2JhbCwgVGhlbWVQcm92aWRlciB9IGZyb20gJ0BlbW90aW9uL3JlYWN0JztcbmltcG9ydCBlbW90aW9uTm9ybWFsaXplIGZyb20gJ2Vtb3Rpb24tbm9ybWFsaXplJztcbmltcG9ydCBQcm9wVHlwZXMgZnJvbSAncHJvcC10eXBlcyc7XG5pbXBvcnQgeyBtZXJnZSB9IGZyb20gJ3RoZW1lLXVpJztcblxuaW1wb3J0IHsgb3BlblNhbnNGb250LCBwaW5naXRvRm9udCB9IGZyb20gJy4uLy4uL2ZvbnRzJztcbmltcG9ydCB1c2VHZXRUaGVtZSBmcm9tICcuLi8uLi9ob29rcy91c2VHZXRUaGVtZSc7XG5pbXBvcnQgYXN0cm9UaGVtZSBmcm9tICcuLi8uLi9zdHlsZXMvdGhlbWUnO1xuaW1wb3J0IEJveCBmcm9tICcuLi9Cb3gnO1xuXG5leHBvcnQgY29uc3QgR2xvYmFsU3R5bGVzID0gKHsgaXNFbmRVc2VyVGhlbWUgPSBmYWxzZSB9KSA9PiB7XG4gIGNvbnN0IHsgdGhlbWVTdGF0ZTogeyBpc09ueXgsIGlzT255eERhcmsgfSB9ID0gdXNlR2V0VGhlbWUoKTtcbiAgcmV0dXJuIChcbiAgICA8R2xvYmFsXG4gICAgICBzdHlsZXM9e2Nzc2BcbiAgICAgICAgQGltcG9ydCB1cmwoXCJodHRwczovL3VzZS50eXBla2l0Lm5ldC9pY3o4Y25pLmNzc1wiKTtcbiAgICAgICAgJHtlbW90aW9uTm9ybWFsaXplfVxuICAgICAgICAke3BpbmdpdG9Gb250fVxuICAgICAgICAke29wZW5TYW5zRm9udH1cbiAgICAgICAgKiB7XG4gICAgICAgICAgYm94LXNpemluZzogYm9yZGVyLWJveDtcbiAgICAgICAgfVxuICAgICAgICBodG1sLFxuICAgICAgICBib2R5IHtcbiAgICAgICAgICBwYWRkaW5nOiAwO1xuICAgICAgICAgIG1hcmdpbjogMDtcbiAgICAgICAgICBiYWNrZ3JvdW5kOiB3aGl0ZTtcbiAgICAgICAgICBtaW4taGVpZ2h0OiAxMDAlO1xuICAgICAgICAgIGZvbnQtZmFtaWx5OiAke2lzRW5kVXNlclRoZW1lICYmICdwaW5naXRvLCAnfSAke2lzT255eCAmJiAnT3BlbiBTYW5zLCAnfSBcIkhlbHZldGljYSBOZXVlXCIsIEhlbHZldGljYSwgc2Fucy1zZXJpZjtcbiAgICAgICAgfVxuICAgICAgICAuaXMtZGlzYWJsZWQge1xuICAgICAgICAgIG9wYWNpdHk6ICR7aXNPbnl4IHx8IGlzT255eERhcmsgPyAwLjY1IDogMC41fTtcbiAgICAgICAgICBwb2ludGVyLWV2ZW50czogbm9uZTtcbiAgICAgICAgfVxuICAgICAgICBbZGF0YS1saXZlLWFubm91bmNlcl0ge1xuICAgICAgICAgIGRpc3BsYXk6IG5vbmU7XG4gICAgICAgIH1cbiAgICAgICAgYnV0dG9uOmZvY3VzLXZpc2libGUsXG4gICAgICAgIFt0eXBlPVwiYnV0dG9uXCJdOmZvY3VzLXZpc2libGUsXG4gICAgICAgIFt0eXBlPVwicmVzZXRcIl06Zm9jdXMtdmlzaWJsZSxcbiAgICAgICAgW3R5cGU9XCJzdWJtaXRcIl06Zm9jdXMtdmlzaWJsZSB7XG4gICAgICAgICAgb3V0bGluZTogMDtcbiAgICAgICAgfVxuICAgICAgYH1cbiAgICAvPlxuICApO1xufTtcblxuR2xvYmFsU3R5bGVzLnByb3BUeXBlcyA9IHtcbiAgaXNFbmRVc2VyVGhlbWU6IFByb3BUeXBlcy5ib29sLFxufTtcblxuLyoqXG4gKiBfTm90ZTogRm9yIFVJIExpYnJhcnkgYW5kIEFzdHJvIENTUyBjb25mbGljdHMsIHdlIHN1cHBseSBhIHRoZW1lIG92ZXJyaWRlIGxvY2F0ZWQgYXRfXG4gKiBgQHBpbmd1eC9hc3Ryby9saWIvc3R5bGVzL3RoZW1lT3ZlcnJpZGVzL3VpTGlicmFyeU92ZXJyaWRlLmpzYFxuICovXG5jb25zdCBBc3Ryb1Byb3ZpZGVyID0gZm9yd2FyZFJlZigocHJvcHMsIHJlZikgPT4ge1xuICBjb25zdCB7IGRlZmF1bHRUaGVtZSA9IGFzdHJvVGhlbWUsIHRoZW1lT3ZlcnJpZGVzID0gW3t9XSwgY2hpbGRyZW4sIC4uLm90aGVycyB9ID0gcHJvcHM7XG5cbiAgLy8gVW5mb3J0dW5hdGVseSBiZWNhdXNlIHRoaXMgaXMgYWRkaW5nIHN0eWxlcywgd2UgY2Fubm90IHdyaXRlIGEgcHJvcGVyIHRlc3QgZm9yIHRoaXMuXG4gIC8qIGlzdGFuYnVsIGlnbm9yZSBuZXh0ICovXG4gIGNvbnN0IHRoZW1lID0gdXNlTWVtbyhcbiAgICAoKSA9PiBtZXJnZShkZWZhdWx0VGhlbWUsIC4uLnRoZW1lT3ZlcnJpZGVzKSxcbiAgICBbZGVmYXVsdFRoZW1lLCB0aGVtZU92ZXJyaWRlc10sXG4gICk7XG4gIGNvbnN0IGlzRW5kVXNlclRoZW1lID0gdGhlbWUgJiYgdGhlbWUubmFtZSA9PT0gJ0VuZCBVc2VyJztcblxuICByZXR1cm4gKFxuICAgIDxUaGVtZVByb3ZpZGVyIHRoZW1lPXt0aGVtZX0gey4uLm90aGVyc30+XG4gICAgICA8R2xvYmFsU3R5bGVzIGlzRW5kVXNlclRoZW1lPXtpc0VuZFVzZXJUaGVtZX0gLz5cbiAgICAgIDxCb3ggcmVmPXtyZWZ9IGJnPVwiYmFja2dyb3VuZEJhc2VcIiBoZWlnaHQ9XCIxMDAlXCIgey4uLnByb3BzfT5cbiAgICAgICAge2NoaWxkcmVufVxuICAgICAgPC9Cb3g+XG4gICAgPC9UaGVtZVByb3ZpZGVyPlxuICApO1xufSk7XG5cbkFzdHJvUHJvdmlkZXIucHJvcFR5cGVzID0ge1xuICAvKiogQXJyYXkgb2YgdGhlbWUgb2JqZWN0cyB3aGljaCB3aWxsIGJlIG1lcmdlZCB3aXRoIHRoZSBkZWZhdWx0IHRoZW1lLlxuICAgKiBJbiB0aGUgY2FzZSBvZiBjbGFzaGVzLCB0aGVzZSB3aWxsIHRha2UgcHJpb3JpdHkuXG4gICAqIFVzZWZ1bCBmb3IgY3VzdG9taXppbmcgdGhlIGRlZmF1bHQgdmFyaWFudHMsIGFkZGluZyBuZXcgb25lcyxcbiAgICogIG9yIG92ZXJyaWRpbmcgb3RoZXIgdGhlbWUgdmFsdWVzLiAqL1xuICB0aGVtZU92ZXJyaWRlczogUHJvcFR5cGVzLmFycmF5T2YoUHJvcFR5cGVzLnNoYXBlKHt9KSksXG4gIC8qKiBUaGUgZGVmYXVsdCB0aGVtZSBhcHBsaWVkIHRvIHRoZSBBc3RybyBjb21wb25lbnRzLlxuICAgKiBPdmVycmlkaW5nIHRoaXMgaXMgYW4gYWR2YW5jZWQgdXNlIGNhc2Ugc29cbiAgICogcGxlYXNlIHVuZGVyc3RhbmQgcG90ZW50aWFsIHJlcHJlY3Vzc2lvbnMgYmVmb3JlIGVkaXRpbmcgKi9cbiAgZGVmYXVsdFRoZW1lOiBQcm9wVHlwZXMuc2hhcGUoe30pLFxufTtcblxuLyoqXG4gKiBXcmFwcGVyIGZvciB0aGUgQXN0cm8gYXBwbGljYXRpb24gdy9vIGdsb2JhbCBzdHlsZXMuXG4gKiBJdCBwcm92aWRlcyB0aGUgc3RhbmRhcmQgYmFja2dyb3VuZCBhbmQgdGhlIEFzdHJvIHRoZW1lLlxuICovXG5leHBvcnQgY29uc3QgUGFnZVdyYXBwZXIgPSBmb3J3YXJkUmVmKChwcm9wcywgcmVmKSA9PiB7XG4gIGNvbnN0IHsgZGVmYXVsdFRoZW1lID0gYXN0cm9UaGVtZSwgdGhlbWVPdmVycmlkZXMgPSBbe31dLCBjaGlsZHJlbiwgLi4ub3RoZXJzIH0gPSBwcm9wcztcblxuICBjb25zdCB0aGVtZSA9IHVzZU1lbW8oXG4gICAgKCkgPT4gbWVyZ2UoZGVmYXVsdFRoZW1lLCAuLi50aGVtZU92ZXJyaWRlcyksXG4gICAgW2RlZmF1bHRUaGVtZSwgdGhlbWVPdmVycmlkZXNdLFxuICApO1xuXG4gIHJldHVybiAoXG4gICAgPFRoZW1lUHJvdmlkZXIgcmVmPXtyZWZ9IHRoZW1lPXt0aGVtZX0gey4uLm90aGVyc30+XG4gICAgICA8R2xvYmFsXG4gICAgICAgIHN0eWxlcz17Y3NzYFxuICAgICAgICAgIEBpbXBvcnQgdXJsKFwiaHR0cHM6Ly91c2UudHlwZWtpdC5uZXQvaWN6OGNuaS5jc3NcIik7XG5cbiAgICAgICAgICBbZGF0YS10aXBweS1yb290XSB7XG4gICAgICAgICAgICBtYXgtd2lkdGg6IGNhbGMoMTAwdncgLSAxMHB4KTtcbiAgICAgICAgICB9XG4gICAgICAgIGB9XG4gICAgICAvPlxuICAgICAgPEJveFxuICAgICAgICBjc3M9e2Nzc2BcbiAgICAgICAgICAke2Vtb3Rpb25Ob3JtYWxpemV9XG5cbiAgICAgICAgICAqIHtcbiAgICAgICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gICAgICAgICAgICBmb250LWZhbWlseTogXCJIZWx2ZXRpY2EgTmV1ZVwiLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7XG5cbiAgICAgICAgICAgIC5pcy1kaXNhYmxlZCB7XG4gICAgICAgICAgICAgIG9wYWNpdHk6IDAuNTtcbiAgICAgICAgICAgICAgcG9pbnRlci1ldmVudHM6IG5vbmU7XG4gICAgICAgICAgICB9XG4gICAgICAgICAgfVxuICAgICAgICBgfVxuICAgICAgICB7Li4ucHJvcHN9XG4gICAgICA+XG4gICAgICAgIHtjaGlsZHJlbn1cbiAgICAgIDwvQm94PlxuICAgIDwvVGhlbWVQcm92aWRlcj5cbiAgKTtcbn0pO1xuXG5QYWdlV3JhcHBlci5wcm9wVHlwZXMgPSB7XG4gIC8qKiBBcnJheSBvZiB0aGVtZSBvYmplY3RzIHdoaWNoIHdpbGwgYmUgbWVyZ2VkIHdpdGggdGhlIGRlZmF1bHQgdGhlbWUuXG4gICAqIEluIHRoZSBjYXNlIG9mIGNsYXNoZXMsIHRoZXNlIHdpbGwgdGFrZSBwcmlvcml0eS5cbiAgICogVXNlZnVsIGZvciBjdXN0b21pemluZyB0aGUgZGVmYXVsdCB2YXJpYW50cywgYWRkaW5nIG5ldyBvbmVzLFxuICAgKiAgb3Igb3ZlcnJpZGluZyBvdGhlciB0aGVtZSB2YWx1ZXMuICovXG4gIHRoZW1lT3ZlcnJpZGVzOiBQcm9wVHlwZXMuYXJyYXlPZihQcm9wVHlwZXMuc2hhcGUoe30pKSxcbiAgLyoqIFRoZSBkZWZhdWx0IHRoZW1lIGFwcGxpZWQgdG8gdGhlIEFzdHJvIGNvbXBvbmVudHMuXG4gICAqIE92ZXJyaWRpbmcgdGhpcyBpcyBhbiBhZHZhbmNlZCB1c2UgY2FzZSBzb1xuICAgKiBwbGVhc2UgdW5kZXJzdGFuZCBwb3RlbnRpYWwgcmVwcmVjdXNzaW9ucyBiZWZvcmUgZWRpdGluZyAqL1xuICBkZWZhdWx0VGhlbWU6IFByb3BUeXBlcy5zaGFwZSh7fSksXG59O1xuXG5leHBvcnQgeyBUaGVtZVByb3ZpZGVyIH07XG5leHBvcnQgZGVmYXVsdCBBc3Ryb1Byb3ZpZGVyO1xuIl19 */")
25
+ styles: /*#__PURE__*/css("@import url(\"https://use.typekit.net/icz8cni.css\");{}", emotionNormalize, " ", pingitoFont, " ", openSansFont, " *{box-sizing:border-box;}html,body{padding:0;margin:0;background:white;min-height:100%;font-family:", isEndUserTheme && 'pingito, ', " ", isOnyx && 'Open Sans, ', " \"Helvetica Neue\",Helvetica,sans-serif;}.is-disabled{opacity:", isOnyx || isOnyxDark ? 0.65 : 0.5, ";pointer-events:none;}[data-live-announcer]{display:none;}button:focus-visible,[type=\"button\"]:focus-visible,[type=\"reset\"]:focus-visible,[type=\"submit\"]:focus-visible{outline:0;}" + (process.env.NODE_ENV === "production" ? "" : ";label:GlobalStyles;"), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvYXN0cm8vc3JjL2NvbXBvbmVudHMvQXN0cm9Qcm92aWRlci9Bc3Ryb1Byb3ZpZGVyLmpzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFlaUIiLCJmaWxlIjoiLi4vLi4vLi4vLi4vLi4vbGlicy9hc3Ryby9zcmMvY29tcG9uZW50cy9Bc3Ryb1Byb3ZpZGVyL0FzdHJvUHJvdmlkZXIuanN4Iiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IFJlYWN0LCB7IGZvcndhcmRSZWYsIHVzZU1lbW8gfSBmcm9tICdyZWFjdCc7XG5pbXBvcnQgeyBjc3MsIEdsb2JhbCwgVGhlbWVQcm92aWRlciB9IGZyb20gJ0BlbW90aW9uL3JlYWN0JztcbmltcG9ydCBlbW90aW9uTm9ybWFsaXplIGZyb20gJ2Vtb3Rpb24tbm9ybWFsaXplJztcbmltcG9ydCBQcm9wVHlwZXMgZnJvbSAncHJvcC10eXBlcyc7XG5pbXBvcnQgeyBtZXJnZSB9IGZyb20gJ3RoZW1lLXVpJztcblxuaW1wb3J0IHsgb3BlblNhbnNGb250LCBwaW5naXRvRm9udCB9IGZyb20gJy4uLy4uL2ZvbnRzJztcbmltcG9ydCB1c2VHZXRUaGVtZSBmcm9tICcuLi8uLi9ob29rcy91c2VHZXRUaGVtZSc7XG5pbXBvcnQgYXN0cm9UaGVtZSBmcm9tICcuLi8uLi9zdHlsZXMvdGhlbWUnO1xuaW1wb3J0IEJveCBmcm9tICcuLi9Cb3gnO1xuXG5leHBvcnQgY29uc3QgR2xvYmFsU3R5bGVzID0gKHsgaXNFbmRVc2VyVGhlbWUgPSBmYWxzZSB9KSA9PiB7XG4gIGNvbnN0IHsgdGhlbWVTdGF0ZTogeyBpc09ueXgsIGlzT255eERhcmsgfSB9ID0gdXNlR2V0VGhlbWUoKTtcbiAgcmV0dXJuIChcbiAgICA8R2xvYmFsXG4gICAgICBzdHlsZXM9e2Nzc2BcbiAgICAgICAgQGltcG9ydCB1cmwoXCJodHRwczovL3VzZS50eXBla2l0Lm5ldC9pY3o4Y25pLmNzc1wiKTtcbiAgICAgICAgJHtlbW90aW9uTm9ybWFsaXplfVxuICAgICAgICAke3BpbmdpdG9Gb250fVxuICAgICAgICAke29wZW5TYW5zRm9udH1cbiAgICAgICAgKiB7XG4gICAgICAgICAgYm94LXNpemluZzogYm9yZGVyLWJveDtcbiAgICAgICAgfVxuICAgICAgICBodG1sLFxuICAgICAgICBib2R5IHtcbiAgICAgICAgICBwYWRkaW5nOiAwO1xuICAgICAgICAgIG1hcmdpbjogMDtcbiAgICAgICAgICBiYWNrZ3JvdW5kOiB3aGl0ZTtcbiAgICAgICAgICBtaW4taGVpZ2h0OiAxMDAlO1xuICAgICAgICAgIGZvbnQtZmFtaWx5OiAke2lzRW5kVXNlclRoZW1lICYmICdwaW5naXRvLCAnfSAke2lzT255eCAmJiAnT3BlbiBTYW5zLCAnfSBcIkhlbHZldGljYSBOZXVlXCIsIEhlbHZldGljYSwgc2Fucy1zZXJpZjtcbiAgICAgICAgfVxuICAgICAgICAuaXMtZGlzYWJsZWQge1xuICAgICAgICAgIG9wYWNpdHk6ICR7aXNPbnl4IHx8IGlzT255eERhcmsgPyAwLjY1IDogMC41fTtcbiAgICAgICAgICBwb2ludGVyLWV2ZW50czogbm9uZTtcbiAgICAgICAgfVxuICAgICAgICBbZGF0YS1saXZlLWFubm91bmNlcl0ge1xuICAgICAgICAgIGRpc3BsYXk6IG5vbmU7XG4gICAgICAgIH1cbiAgICAgICAgYnV0dG9uOmZvY3VzLXZpc2libGUsXG4gICAgICAgIFt0eXBlPVwiYnV0dG9uXCJdOmZvY3VzLXZpc2libGUsXG4gICAgICAgIFt0eXBlPVwicmVzZXRcIl06Zm9jdXMtdmlzaWJsZSxcbiAgICAgICAgW3R5cGU9XCJzdWJtaXRcIl06Zm9jdXMtdmlzaWJsZSB7XG4gICAgICAgICAgb3V0bGluZTogMDtcbiAgICAgICAgfVxuICAgICAgYH1cbiAgICAvPlxuICApO1xufTtcblxuR2xvYmFsU3R5bGVzLnByb3BUeXBlcyA9IHtcbiAgaXNFbmRVc2VyVGhlbWU6IFByb3BUeXBlcy5ib29sLFxufTtcblxuLyoqXG4gKiBfTm90ZTogRm9yIFVJIExpYnJhcnkgYW5kIEFzdHJvIENTUyBjb25mbGljdHMsIHdlIHN1cHBseSBhIHRoZW1lIG92ZXJyaWRlIGxvY2F0ZWQgYXRfXG4gKiBgQHBpbmd1eC9hc3Ryby9saWIvc3R5bGVzL3RoZW1lT3ZlcnJpZGVzL3VpTGlicmFyeU92ZXJyaWRlLmpzYFxuICovXG5jb25zdCBBc3Ryb1Byb3ZpZGVyID0gZm9yd2FyZFJlZigocHJvcHMsIHJlZikgPT4ge1xuICBjb25zdCB7IGRlZmF1bHRUaGVtZSA9IGFzdHJvVGhlbWUsIHRoZW1lT3ZlcnJpZGVzID0gW3t9XSwgY2hpbGRyZW4sIC4uLm90aGVycyB9ID0gcHJvcHM7XG5cbiAgLy8gVW5mb3J0dW5hdGVseSBiZWNhdXNlIHRoaXMgaXMgYWRkaW5nIHN0eWxlcywgd2UgY2Fubm90IHdyaXRlIGEgcHJvcGVyIHRlc3QgZm9yIHRoaXMuXG4gIC8qIGlzdGFuYnVsIGlnbm9yZSBuZXh0ICovXG4gIGNvbnN0IHRoZW1lID0gdXNlTWVtbyhcbiAgICAoKSA9PiBtZXJnZShkZWZhdWx0VGhlbWUsIC4uLnRoZW1lT3ZlcnJpZGVzKSxcbiAgICBbZGVmYXVsdFRoZW1lLCB0aGVtZU92ZXJyaWRlc10sXG4gICk7XG4gIGNvbnN0IGlzRW5kVXNlclRoZW1lID0gdGhlbWUgJiYgdGhlbWUubmFtZSA9PT0gJ0VuZCBVc2VyJztcblxuICByZXR1cm4gKFxuICAgIDxUaGVtZVByb3ZpZGVyIHRoZW1lPXt0aGVtZX0gey4uLm90aGVyc30+XG4gICAgICA8R2xvYmFsU3R5bGVzIGlzRW5kVXNlclRoZW1lPXtpc0VuZFVzZXJUaGVtZX0gLz5cbiAgICAgIDxCb3ggcmVmPXtyZWZ9IGJnPVwiYmFja2dyb3VuZEJhc2VcIiBoZWlnaHQ9XCIxMDAlXCIgey4uLnByb3BzfT5cbiAgICAgICAge2NoaWxkcmVufVxuICAgICAgPC9Cb3g+XG4gICAgPC9UaGVtZVByb3ZpZGVyPlxuICApO1xufSk7XG5cbkFzdHJvUHJvdmlkZXIucHJvcFR5cGVzID0ge1xuICAvKiogQXJyYXkgb2YgdGhlbWUgb2JqZWN0cyB3aGljaCB3aWxsIGJlIG1lcmdlZCB3aXRoIHRoZSBkZWZhdWx0IHRoZW1lLlxuICAgKiBJbiB0aGUgY2FzZSBvZiBjbGFzaGVzLCB0aGVzZSB3aWxsIHRha2UgcHJpb3JpdHkuXG4gICAqIFVzZWZ1bCBmb3IgY3VzdG9taXppbmcgdGhlIGRlZmF1bHQgdmFyaWFudHMsIGFkZGluZyBuZXcgb25lcyxcbiAgICogIG9yIG92ZXJyaWRpbmcgb3RoZXIgdGhlbWUgdmFsdWVzLiAqL1xuICB0aGVtZU92ZXJyaWRlczogUHJvcFR5cGVzLmFycmF5T2YoUHJvcFR5cGVzLnNoYXBlKHt9KSksXG4gIC8qKiBUaGUgZGVmYXVsdCB0aGVtZSBhcHBsaWVkIHRvIHRoZSBBc3RybyBjb21wb25lbnRzLlxuICAgKiBPdmVycmlkaW5nIHRoaXMgaXMgYW4gYWR2YW5jZWQgdXNlIGNhc2Ugc29cbiAgICogcGxlYXNlIHVuZGVyc3RhbmQgcG90ZW50aWFsIHJlcHJlY3Vzc2lvbnMgYmVmb3JlIGVkaXRpbmcgKi9cbiAgZGVmYXVsdFRoZW1lOiBQcm9wVHlwZXMuc2hhcGUoe30pLFxufTtcblxuLyoqXG4gKiBXcmFwcGVyIGZvciB0aGUgQXN0cm8gYXBwbGljYXRpb24gdy9vIGdsb2JhbCBzdHlsZXMuXG4gKiBJdCBwcm92aWRlcyB0aGUgc3RhbmRhcmQgYmFja2dyb3VuZCBhbmQgdGhlIEFzdHJvIHRoZW1lLlxuICovXG5leHBvcnQgY29uc3QgUGFnZVdyYXBwZXIgPSBmb3J3YXJkUmVmKChwcm9wcywgcmVmKSA9PiB7XG4gIGNvbnN0IHsgZGVmYXVsdFRoZW1lID0gYXN0cm9UaGVtZSwgdGhlbWVPdmVycmlkZXMgPSBbe31dLCBjaGlsZHJlbiwgLi4ub3RoZXJzIH0gPSBwcm9wcztcblxuICBjb25zdCB0aGVtZSA9IHVzZU1lbW8oXG4gICAgKCkgPT4gbWVyZ2UoZGVmYXVsdFRoZW1lLCAuLi50aGVtZU92ZXJyaWRlcyksXG4gICAgW2RlZmF1bHRUaGVtZSwgdGhlbWVPdmVycmlkZXNdLFxuICApO1xuXG4gIHJldHVybiAoXG4gICAgPFRoZW1lUHJvdmlkZXIgcmVmPXtyZWZ9IHRoZW1lPXt0aGVtZX0gey4uLm90aGVyc30+XG4gICAgICA8R2xvYmFsXG4gICAgICAgIHN0eWxlcz17Y3NzYFxuICAgICAgICAgIEBpbXBvcnQgdXJsKFwiaHR0cHM6Ly91c2UudHlwZWtpdC5uZXQvaWN6OGNuaS5jc3NcIik7XG5cbiAgICAgICAgICBbZGF0YS10aXBweS1yb290XSB7XG4gICAgICAgICAgICBtYXgtd2lkdGg6IGNhbGMoMTAwdncgLSAxMHB4KTtcbiAgICAgICAgICB9XG4gICAgICAgIGB9XG4gICAgICAvPlxuICAgICAgPEJveFxuICAgICAgICBjc3M9e2Nzc2BcbiAgICAgICAgICAke2Vtb3Rpb25Ob3JtYWxpemV9XG5cbiAgICAgICAgICAqIHtcbiAgICAgICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gICAgICAgICAgICBmb250LWZhbWlseTogXCJIZWx2ZXRpY2EgTmV1ZVwiLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7XG5cbiAgICAgICAgICAgIC5pcy1kaXNhYmxlZCB7XG4gICAgICAgICAgICAgIG9wYWNpdHk6IDAuNTtcbiAgICAgICAgICAgICAgcG9pbnRlci1ldmVudHM6IG5vbmU7XG4gICAgICAgICAgICB9XG4gICAgICAgICAgfVxuICAgICAgICBgfVxuICAgICAgICB7Li4ucHJvcHN9XG4gICAgICA+XG4gICAgICAgIHtjaGlsZHJlbn1cbiAgICAgIDwvQm94PlxuICAgIDwvVGhlbWVQcm92aWRlcj5cbiAgKTtcbn0pO1xuXG5QYWdlV3JhcHBlci5wcm9wVHlwZXMgPSB7XG4gIC8qKiBBcnJheSBvZiB0aGVtZSBvYmplY3RzIHdoaWNoIHdpbGwgYmUgbWVyZ2VkIHdpdGggdGhlIGRlZmF1bHQgdGhlbWUuXG4gICAqIEluIHRoZSBjYXNlIG9mIGNsYXNoZXMsIHRoZXNlIHdpbGwgdGFrZSBwcmlvcml0eS5cbiAgICogVXNlZnVsIGZvciBjdXN0b21pemluZyB0aGUgZGVmYXVsdCB2YXJpYW50cywgYWRkaW5nIG5ldyBvbmVzLFxuICAgKiAgb3Igb3ZlcnJpZGluZyBvdGhlciB0aGVtZSB2YWx1ZXMuICovXG4gIHRoZW1lT3ZlcnJpZGVzOiBQcm9wVHlwZXMuYXJyYXlPZihQcm9wVHlwZXMuc2hhcGUoe30pKSxcbiAgLyoqIFRoZSBkZWZhdWx0IHRoZW1lIGFwcGxpZWQgdG8gdGhlIEFzdHJvIGNvbXBvbmVudHMuXG4gICAqIE92ZXJyaWRpbmcgdGhpcyBpcyBhbiBhZHZhbmNlZCB1c2UgY2FzZSBzb1xuICAgKiBwbGVhc2UgdW5kZXJzdGFuZCBwb3RlbnRpYWwgcmVwcmVjdXNzaW9ucyBiZWZvcmUgZWRpdGluZyAqL1xuICBkZWZhdWx0VGhlbWU6IFByb3BUeXBlcy5zaGFwZSh7fSksXG59O1xuXG5leHBvcnQgeyBUaGVtZVByb3ZpZGVyIH07XG5leHBvcnQgZGVmYXVsdCBBc3Ryb1Byb3ZpZGVyO1xuIl19 */")
26
26
  });
27
27
  };
28
28
  GlobalStyles.propTypes = {
@@ -79,8 +79,7 @@ var _ref = process.env.NODE_ENV === "production" ? {
79
79
  styles: "@import url(\"https://use.typekit.net/icz8cni.css\");{}[data-tippy-root]{max-width:calc(100vw - 10px);}"
80
80
  } : {
81
81
  name: "1385fa1-PageWrapper",
82
- styles: "@import url(\"https://use.typekit.net/icz8cni.css\");{}[data-tippy-root]{max-width:calc(100vw - 10px);};label:PageWrapper;",
83
- map: "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0FzdHJvUHJvdmlkZXIvQXN0cm9Qcm92aWRlci5qcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUF5R21CIiwiZmlsZSI6Ii4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0FzdHJvUHJvdmlkZXIvQXN0cm9Qcm92aWRlci5qcyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBSZWFjdCwgeyBmb3J3YXJkUmVmLCB1c2VNZW1vIH0gZnJvbSAncmVhY3QnO1xuaW1wb3J0IHsgY3NzLCBHbG9iYWwsIFRoZW1lUHJvdmlkZXIgfSBmcm9tICdAZW1vdGlvbi9yZWFjdCc7XG5pbXBvcnQgZW1vdGlvbk5vcm1hbGl6ZSBmcm9tICdlbW90aW9uLW5vcm1hbGl6ZSc7XG5pbXBvcnQgUHJvcFR5cGVzIGZyb20gJ3Byb3AtdHlwZXMnO1xuaW1wb3J0IHsgbWVyZ2UgfSBmcm9tICd0aGVtZS11aSc7XG5cbmltcG9ydCB7IG9wZW5TYW5zRm9udCwgcGluZ2l0b0ZvbnQgfSBmcm9tICcuLi8uLi9mb250cyc7XG5pbXBvcnQgdXNlR2V0VGhlbWUgZnJvbSAnLi4vLi4vaG9va3MvdXNlR2V0VGhlbWUnO1xuaW1wb3J0IGFzdHJvVGhlbWUgZnJvbSAnLi4vLi4vc3R5bGVzL3RoZW1lJztcbmltcG9ydCBCb3ggZnJvbSAnLi4vQm94JztcblxuZXhwb3J0IGNvbnN0IEdsb2JhbFN0eWxlcyA9ICh7IGlzRW5kVXNlclRoZW1lID0gZmFsc2UgfSkgPT4ge1xuICBjb25zdCB7IHRoZW1lU3RhdGU6IHsgaXNPbnl4LCBpc09ueXhEYXJrIH0gfSA9IHVzZUdldFRoZW1lKCk7XG4gIHJldHVybiAoXG4gICAgPEdsb2JhbFxuICAgICAgc3R5bGVzPXtjc3NgXG4gICAgICAgIEBpbXBvcnQgdXJsKFwiaHR0cHM6Ly91c2UudHlwZWtpdC5uZXQvaWN6OGNuaS5jc3NcIik7XG4gICAgICAgICR7ZW1vdGlvbk5vcm1hbGl6ZX1cbiAgICAgICAgJHtwaW5naXRvRm9udH1cbiAgICAgICAgJHtvcGVuU2Fuc0ZvbnR9XG4gICAgICAgICoge1xuICAgICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gICAgICAgIH1cbiAgICAgICAgaHRtbCxcbiAgICAgICAgYm9keSB7XG4gICAgICAgICAgcGFkZGluZzogMDtcbiAgICAgICAgICBtYXJnaW46IDA7XG4gICAgICAgICAgYmFja2dyb3VuZDogd2hpdGU7XG4gICAgICAgICAgbWluLWhlaWdodDogMTAwJTtcbiAgICAgICAgICBmb250LWZhbWlseTogJHtpc0VuZFVzZXJUaGVtZSAmJiAncGluZ2l0bywgJ30gJHtpc09ueXggJiYgJ09wZW4gU2FucywgJ30gXCJIZWx2ZXRpY2EgTmV1ZVwiLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7XG4gICAgICAgIH1cbiAgICAgICAgLmlzLWRpc2FibGVkIHtcbiAgICAgICAgICBvcGFjaXR5OiAke2lzT255eCB8fCBpc09ueXhEYXJrID8gMC42NSA6IDAuNX07XG4gICAgICAgICAgcG9pbnRlci1ldmVudHM6IG5vbmU7XG4gICAgICAgIH1cbiAgICAgICAgW2RhdGEtbGl2ZS1hbm5vdW5jZXJdIHtcbiAgICAgICAgICBkaXNwbGF5OiBub25lO1xuICAgICAgICB9XG4gICAgICAgIGJ1dHRvbjpmb2N1cy12aXNpYmxlLFxuICAgICAgICBbdHlwZT1cImJ1dHRvblwiXTpmb2N1cy12aXNpYmxlLFxuICAgICAgICBbdHlwZT1cInJlc2V0XCJdOmZvY3VzLXZpc2libGUsXG4gICAgICAgIFt0eXBlPVwic3VibWl0XCJdOmZvY3VzLXZpc2libGUge1xuICAgICAgICAgIG91dGxpbmU6IDA7XG4gICAgICAgIH1cbiAgICAgIGB9XG4gICAgLz5cbiAgKTtcbn07XG5cbkdsb2JhbFN0eWxlcy5wcm9wVHlwZXMgPSB7XG4gIGlzRW5kVXNlclRoZW1lOiBQcm9wVHlwZXMuYm9vbCxcbn07XG5cbi8qKlxuICogX05vdGU6IEZvciBVSSBMaWJyYXJ5IGFuZCBBc3RybyBDU1MgY29uZmxpY3RzLCB3ZSBzdXBwbHkgYSB0aGVtZSBvdmVycmlkZSBsb2NhdGVkIGF0X1xuICogYEBwaW5ndXgvYXN0cm8vbGliL3N0eWxlcy90aGVtZU92ZXJyaWRlcy91aUxpYnJhcnlPdmVycmlkZS5qc2BcbiAqL1xuY29uc3QgQXN0cm9Qcm92aWRlciA9IGZvcndhcmRSZWYoKHByb3BzLCByZWYpID0+IHtcbiAgY29uc3QgeyBkZWZhdWx0VGhlbWUgPSBhc3Ryb1RoZW1lLCB0aGVtZU92ZXJyaWRlcyA9IFt7fV0sIGNoaWxkcmVuLCAuLi5vdGhlcnMgfSA9IHByb3BzO1xuXG4gIC8vIFVuZm9ydHVuYXRlbHkgYmVjYXVzZSB0aGlzIGlzIGFkZGluZyBzdHlsZXMsIHdlIGNhbm5vdCB3cml0ZSBhIHByb3BlciB0ZXN0IGZvciB0aGlzLlxuICAvKiBpc3RhbmJ1bCBpZ25vcmUgbmV4dCAqL1xuICBjb25zdCB0aGVtZSA9IHVzZU1lbW8oXG4gICAgKCkgPT4gbWVyZ2UoZGVmYXVsdFRoZW1lLCAuLi50aGVtZU92ZXJyaWRlcyksXG4gICAgW2RlZmF1bHRUaGVtZSwgdGhlbWVPdmVycmlkZXNdLFxuICApO1xuICBjb25zdCBpc0VuZFVzZXJUaGVtZSA9IHRoZW1lICYmIHRoZW1lLm5hbWUgPT09ICdFbmQgVXNlcic7XG5cbiAgcmV0dXJuIChcbiAgICA8VGhlbWVQcm92aWRlciB0aGVtZT17dGhlbWV9IHsuLi5vdGhlcnN9PlxuICAgICAgPEdsb2JhbFN0eWxlcyBpc0VuZFVzZXJUaGVtZT17aXNFbmRVc2VyVGhlbWV9IC8+XG4gICAgICA8Qm94IHJlZj17cmVmfSBiZz1cImJhY2tncm91bmRCYXNlXCIgaGVpZ2h0PVwiMTAwJVwiIHsuLi5wcm9wc30+XG4gICAgICAgIHtjaGlsZHJlbn1cbiAgICAgIDwvQm94PlxuICAgIDwvVGhlbWVQcm92aWRlcj5cbiAgKTtcbn0pO1xuXG5Bc3Ryb1Byb3ZpZGVyLnByb3BUeXBlcyA9IHtcbiAgLyoqIEFycmF5IG9mIHRoZW1lIG9iamVjdHMgd2hpY2ggd2lsbCBiZSBtZXJnZWQgd2l0aCB0aGUgZGVmYXVsdCB0aGVtZS5cbiAgICogSW4gdGhlIGNhc2Ugb2YgY2xhc2hlcywgdGhlc2Ugd2lsbCB0YWtlIHByaW9yaXR5LlxuICAgKiBVc2VmdWwgZm9yIGN1c3RvbWl6aW5nIHRoZSBkZWZhdWx0IHZhcmlhbnRzLCBhZGRpbmcgbmV3IG9uZXMsXG4gICAqICBvciBvdmVycmlkaW5nIG90aGVyIHRoZW1lIHZhbHVlcy4gKi9cbiAgdGhlbWVPdmVycmlkZXM6IFByb3BUeXBlcy5hcnJheU9mKFByb3BUeXBlcy5zaGFwZSh7fSkpLFxuICAvKiogVGhlIGRlZmF1bHQgdGhlbWUgYXBwbGllZCB0byB0aGUgQXN0cm8gY29tcG9uZW50cy5cbiAgICogT3ZlcnJpZGluZyB0aGlzIGlzIGFuIGFkdmFuY2VkIHVzZSBjYXNlIHNvXG4gICAqIHBsZWFzZSB1bmRlcnN0YW5kIHBvdGVudGlhbCByZXByZWN1c3Npb25zIGJlZm9yZSBlZGl0aW5nICovXG4gIGRlZmF1bHRUaGVtZTogUHJvcFR5cGVzLnNoYXBlKHt9KSxcbn07XG5cbi8qKlxuICogV3JhcHBlciBmb3IgdGhlIEFzdHJvIGFwcGxpY2F0aW9uIHcvbyBnbG9iYWwgc3R5bGVzLlxuICogSXQgcHJvdmlkZXMgdGhlIHN0YW5kYXJkIGJhY2tncm91bmQgYW5kIHRoZSBBc3RybyB0aGVtZS5cbiAqL1xuZXhwb3J0IGNvbnN0IFBhZ2VXcmFwcGVyID0gZm9yd2FyZFJlZigocHJvcHMsIHJlZikgPT4ge1xuICBjb25zdCB7IGRlZmF1bHRUaGVtZSA9IGFzdHJvVGhlbWUsIHRoZW1lT3ZlcnJpZGVzID0gW3t9XSwgY2hpbGRyZW4sIC4uLm90aGVycyB9ID0gcHJvcHM7XG5cbiAgY29uc3QgdGhlbWUgPSB1c2VNZW1vKFxuICAgICgpID0+IG1lcmdlKGRlZmF1bHRUaGVtZSwgLi4udGhlbWVPdmVycmlkZXMpLFxuICAgIFtkZWZhdWx0VGhlbWUsIHRoZW1lT3ZlcnJpZGVzXSxcbiAgKTtcblxuICByZXR1cm4gKFxuICAgIDxUaGVtZVByb3ZpZGVyIHJlZj17cmVmfSB0aGVtZT17dGhlbWV9IHsuLi5vdGhlcnN9PlxuICAgICAgPEdsb2JhbFxuICAgICAgICBzdHlsZXM9e2Nzc2BcbiAgICAgICAgICBAaW1wb3J0IHVybChcImh0dHBzOi8vdXNlLnR5cGVraXQubmV0L2ljejhjbmkuY3NzXCIpO1xuXG4gICAgICAgICAgW2RhdGEtdGlwcHktcm9vdF0ge1xuICAgICAgICAgICAgbWF4LXdpZHRoOiBjYWxjKDEwMHZ3IC0gMTBweCk7XG4gICAgICAgICAgfVxuICAgICAgICBgfVxuICAgICAgLz5cbiAgICAgIDxCb3hcbiAgICAgICAgY3NzPXtjc3NgXG4gICAgICAgICAgJHtlbW90aW9uTm9ybWFsaXplfVxuXG4gICAgICAgICAgKiB7XG4gICAgICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICAgICAgICAgICAgZm9udC1mYW1pbHk6IFwiSGVsdmV0aWNhIE5ldWVcIiwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmO1xuXG4gICAgICAgICAgICAuaXMtZGlzYWJsZWQge1xuICAgICAgICAgICAgICBvcGFjaXR5OiAwLjU7XG4gICAgICAgICAgICAgIHBvaW50ZXItZXZlbnRzOiBub25lO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cbiAgICAgICAgYH1cbiAgICAgICAgey4uLnByb3BzfVxuICAgICAgPlxuICAgICAgICB7Y2hpbGRyZW59XG4gICAgICA8L0JveD5cbiAgICA8L1RoZW1lUHJvdmlkZXI+XG4gICk7XG59KTtcblxuUGFnZVdyYXBwZXIucHJvcFR5cGVzID0ge1xuICAvKiogQXJyYXkgb2YgdGhlbWUgb2JqZWN0cyB3aGljaCB3aWxsIGJlIG1lcmdlZCB3aXRoIHRoZSBkZWZhdWx0IHRoZW1lLlxuICAgKiBJbiB0aGUgY2FzZSBvZiBjbGFzaGVzLCB0aGVzZSB3aWxsIHRha2UgcHJpb3JpdHkuXG4gICAqIFVzZWZ1bCBmb3IgY3VzdG9taXppbmcgdGhlIGRlZmF1bHQgdmFyaWFudHMsIGFkZGluZyBuZXcgb25lcyxcbiAgICogIG9yIG92ZXJyaWRpbmcgb3RoZXIgdGhlbWUgdmFsdWVzLiAqL1xuICB0aGVtZU92ZXJyaWRlczogUHJvcFR5cGVzLmFycmF5T2YoUHJvcFR5cGVzLnNoYXBlKHt9KSksXG4gIC8qKiBUaGUgZGVmYXVsdCB0aGVtZSBhcHBsaWVkIHRvIHRoZSBBc3RybyBjb21wb25lbnRzLlxuICAgKiBPdmVycmlkaW5nIHRoaXMgaXMgYW4gYWR2YW5jZWQgdXNlIGNhc2Ugc29cbiAgICogcGxlYXNlIHVuZGVyc3RhbmQgcG90ZW50aWFsIHJlcHJlY3Vzc2lvbnMgYmVmb3JlIGVkaXRpbmcgKi9cbiAgZGVmYXVsdFRoZW1lOiBQcm9wVHlwZXMuc2hhcGUoe30pLFxufTtcblxuZXhwb3J0IHsgVGhlbWVQcm92aWRlciB9O1xuZXhwb3J0IGRlZmF1bHQgQXN0cm9Qcm92aWRlcjtcbiJdfQ== */",
82
+ styles: "@import url(\"https://use.typekit.net/icz8cni.css\");{}[data-tippy-root]{max-width:calc(100vw - 10px);};label:PageWrapper;/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvYXN0cm8vc3JjL2NvbXBvbmVudHMvQXN0cm9Qcm92aWRlci9Bc3Ryb1Byb3ZpZGVyLmpzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUF5R21CIiwiZmlsZSI6Ii4uLy4uLy4uLy4uLy4uL2xpYnMvYXN0cm8vc3JjL2NvbXBvbmVudHMvQXN0cm9Qcm92aWRlci9Bc3Ryb1Byb3ZpZGVyLmpzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBSZWFjdCwgeyBmb3J3YXJkUmVmLCB1c2VNZW1vIH0gZnJvbSAncmVhY3QnO1xuaW1wb3J0IHsgY3NzLCBHbG9iYWwsIFRoZW1lUHJvdmlkZXIgfSBmcm9tICdAZW1vdGlvbi9yZWFjdCc7XG5pbXBvcnQgZW1vdGlvbk5vcm1hbGl6ZSBmcm9tICdlbW90aW9uLW5vcm1hbGl6ZSc7XG5pbXBvcnQgUHJvcFR5cGVzIGZyb20gJ3Byb3AtdHlwZXMnO1xuaW1wb3J0IHsgbWVyZ2UgfSBmcm9tICd0aGVtZS11aSc7XG5cbmltcG9ydCB7IG9wZW5TYW5zRm9udCwgcGluZ2l0b0ZvbnQgfSBmcm9tICcuLi8uLi9mb250cyc7XG5pbXBvcnQgdXNlR2V0VGhlbWUgZnJvbSAnLi4vLi4vaG9va3MvdXNlR2V0VGhlbWUnO1xuaW1wb3J0IGFzdHJvVGhlbWUgZnJvbSAnLi4vLi4vc3R5bGVzL3RoZW1lJztcbmltcG9ydCBCb3ggZnJvbSAnLi4vQm94JztcblxuZXhwb3J0IGNvbnN0IEdsb2JhbFN0eWxlcyA9ICh7IGlzRW5kVXNlclRoZW1lID0gZmFsc2UgfSkgPT4ge1xuICBjb25zdCB7IHRoZW1lU3RhdGU6IHsgaXNPbnl4LCBpc09ueXhEYXJrIH0gfSA9IHVzZUdldFRoZW1lKCk7XG4gIHJldHVybiAoXG4gICAgPEdsb2JhbFxuICAgICAgc3R5bGVzPXtjc3NgXG4gICAgICAgIEBpbXBvcnQgdXJsKFwiaHR0cHM6Ly91c2UudHlwZWtpdC5uZXQvaWN6OGNuaS5jc3NcIik7XG4gICAgICAgICR7ZW1vdGlvbk5vcm1hbGl6ZX1cbiAgICAgICAgJHtwaW5naXRvRm9udH1cbiAgICAgICAgJHtvcGVuU2Fuc0ZvbnR9XG4gICAgICAgICoge1xuICAgICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gICAgICAgIH1cbiAgICAgICAgaHRtbCxcbiAgICAgICAgYm9keSB7XG4gICAgICAgICAgcGFkZGluZzogMDtcbiAgICAgICAgICBtYXJnaW46IDA7XG4gICAgICAgICAgYmFja2dyb3VuZDogd2hpdGU7XG4gICAgICAgICAgbWluLWhlaWdodDogMTAwJTtcbiAgICAgICAgICBmb250LWZhbWlseTogJHtpc0VuZFVzZXJUaGVtZSAmJiAncGluZ2l0bywgJ30gJHtpc09ueXggJiYgJ09wZW4gU2FucywgJ30gXCJIZWx2ZXRpY2EgTmV1ZVwiLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7XG4gICAgICAgIH1cbiAgICAgICAgLmlzLWRpc2FibGVkIHtcbiAgICAgICAgICBvcGFjaXR5OiAke2lzT255eCB8fCBpc09ueXhEYXJrID8gMC42NSA6IDAuNX07XG4gICAgICAgICAgcG9pbnRlci1ldmVudHM6IG5vbmU7XG4gICAgICAgIH1cbiAgICAgICAgW2RhdGEtbGl2ZS1hbm5vdW5jZXJdIHtcbiAgICAgICAgICBkaXNwbGF5OiBub25lO1xuICAgICAgICB9XG4gICAgICAgIGJ1dHRvbjpmb2N1cy12aXNpYmxlLFxuICAgICAgICBbdHlwZT1cImJ1dHRvblwiXTpmb2N1cy12aXNpYmxlLFxuICAgICAgICBbdHlwZT1cInJlc2V0XCJdOmZvY3VzLXZpc2libGUsXG4gICAgICAgIFt0eXBlPVwic3VibWl0XCJdOmZvY3VzLXZpc2libGUge1xuICAgICAgICAgIG91dGxpbmU6IDA7XG4gICAgICAgIH1cbiAgICAgIGB9XG4gICAgLz5cbiAgKTtcbn07XG5cbkdsb2JhbFN0eWxlcy5wcm9wVHlwZXMgPSB7XG4gIGlzRW5kVXNlclRoZW1lOiBQcm9wVHlwZXMuYm9vbCxcbn07XG5cbi8qKlxuICogX05vdGU6IEZvciBVSSBMaWJyYXJ5IGFuZCBBc3RybyBDU1MgY29uZmxpY3RzLCB3ZSBzdXBwbHkgYSB0aGVtZSBvdmVycmlkZSBsb2NhdGVkIGF0X1xuICogYEBwaW5ndXgvYXN0cm8vbGliL3N0eWxlcy90aGVtZU92ZXJyaWRlcy91aUxpYnJhcnlPdmVycmlkZS5qc2BcbiAqL1xuY29uc3QgQXN0cm9Qcm92aWRlciA9IGZvcndhcmRSZWYoKHByb3BzLCByZWYpID0+IHtcbiAgY29uc3QgeyBkZWZhdWx0VGhlbWUgPSBhc3Ryb1RoZW1lLCB0aGVtZU92ZXJyaWRlcyA9IFt7fV0sIGNoaWxkcmVuLCAuLi5vdGhlcnMgfSA9IHByb3BzO1xuXG4gIC8vIFVuZm9ydHVuYXRlbHkgYmVjYXVzZSB0aGlzIGlzIGFkZGluZyBzdHlsZXMsIHdlIGNhbm5vdCB3cml0ZSBhIHByb3BlciB0ZXN0IGZvciB0aGlzLlxuICAvKiBpc3RhbmJ1bCBpZ25vcmUgbmV4dCAqL1xuICBjb25zdCB0aGVtZSA9IHVzZU1lbW8oXG4gICAgKCkgPT4gbWVyZ2UoZGVmYXVsdFRoZW1lLCAuLi50aGVtZU92ZXJyaWRlcyksXG4gICAgW2RlZmF1bHRUaGVtZSwgdGhlbWVPdmVycmlkZXNdLFxuICApO1xuICBjb25zdCBpc0VuZFVzZXJUaGVtZSA9IHRoZW1lICYmIHRoZW1lLm5hbWUgPT09ICdFbmQgVXNlcic7XG5cbiAgcmV0dXJuIChcbiAgICA8VGhlbWVQcm92aWRlciB0aGVtZT17dGhlbWV9IHsuLi5vdGhlcnN9PlxuICAgICAgPEdsb2JhbFN0eWxlcyBpc0VuZFVzZXJUaGVtZT17aXNFbmRVc2VyVGhlbWV9IC8+XG4gICAgICA8Qm94IHJlZj17cmVmfSBiZz1cImJhY2tncm91bmRCYXNlXCIgaGVpZ2h0PVwiMTAwJVwiIHsuLi5wcm9wc30+XG4gICAgICAgIHtjaGlsZHJlbn1cbiAgICAgIDwvQm94PlxuICAgIDwvVGhlbWVQcm92aWRlcj5cbiAgKTtcbn0pO1xuXG5Bc3Ryb1Byb3ZpZGVyLnByb3BUeXBlcyA9IHtcbiAgLyoqIEFycmF5IG9mIHRoZW1lIG9iamVjdHMgd2hpY2ggd2lsbCBiZSBtZXJnZWQgd2l0aCB0aGUgZGVmYXVsdCB0aGVtZS5cbiAgICogSW4gdGhlIGNhc2Ugb2YgY2xhc2hlcywgdGhlc2Ugd2lsbCB0YWtlIHByaW9yaXR5LlxuICAgKiBVc2VmdWwgZm9yIGN1c3RvbWl6aW5nIHRoZSBkZWZhdWx0IHZhcmlhbnRzLCBhZGRpbmcgbmV3IG9uZXMsXG4gICAqICBvciBvdmVycmlkaW5nIG90aGVyIHRoZW1lIHZhbHVlcy4gKi9cbiAgdGhlbWVPdmVycmlkZXM6IFByb3BUeXBlcy5hcnJheU9mKFByb3BUeXBlcy5zaGFwZSh7fSkpLFxuICAvKiogVGhlIGRlZmF1bHQgdGhlbWUgYXBwbGllZCB0byB0aGUgQXN0cm8gY29tcG9uZW50cy5cbiAgICogT3ZlcnJpZGluZyB0aGlzIGlzIGFuIGFkdmFuY2VkIHVzZSBjYXNlIHNvXG4gICAqIHBsZWFzZSB1bmRlcnN0YW5kIHBvdGVudGlhbCByZXByZWN1c3Npb25zIGJlZm9yZSBlZGl0aW5nICovXG4gIGRlZmF1bHRUaGVtZTogUHJvcFR5cGVzLnNoYXBlKHt9KSxcbn07XG5cbi8qKlxuICogV3JhcHBlciBmb3IgdGhlIEFzdHJvIGFwcGxpY2F0aW9uIHcvbyBnbG9iYWwgc3R5bGVzLlxuICogSXQgcHJvdmlkZXMgdGhlIHN0YW5kYXJkIGJhY2tncm91bmQgYW5kIHRoZSBBc3RybyB0aGVtZS5cbiAqL1xuZXhwb3J0IGNvbnN0IFBhZ2VXcmFwcGVyID0gZm9yd2FyZFJlZigocHJvcHMsIHJlZikgPT4ge1xuICBjb25zdCB7IGRlZmF1bHRUaGVtZSA9IGFzdHJvVGhlbWUsIHRoZW1lT3ZlcnJpZGVzID0gW3t9XSwgY2hpbGRyZW4sIC4uLm90aGVycyB9ID0gcHJvcHM7XG5cbiAgY29uc3QgdGhlbWUgPSB1c2VNZW1vKFxuICAgICgpID0+IG1lcmdlKGRlZmF1bHRUaGVtZSwgLi4udGhlbWVPdmVycmlkZXMpLFxuICAgIFtkZWZhdWx0VGhlbWUsIHRoZW1lT3ZlcnJpZGVzXSxcbiAgKTtcblxuICByZXR1cm4gKFxuICAgIDxUaGVtZVByb3ZpZGVyIHJlZj17cmVmfSB0aGVtZT17dGhlbWV9IHsuLi5vdGhlcnN9PlxuICAgICAgPEdsb2JhbFxuICAgICAgICBzdHlsZXM9e2Nzc2BcbiAgICAgICAgICBAaW1wb3J0IHVybChcImh0dHBzOi8vdXNlLnR5cGVraXQubmV0L2ljejhjbmkuY3NzXCIpO1xuXG4gICAgICAgICAgW2RhdGEtdGlwcHktcm9vdF0ge1xuICAgICAgICAgICAgbWF4LXdpZHRoOiBjYWxjKDEwMHZ3IC0gMTBweCk7XG4gICAgICAgICAgfVxuICAgICAgICBgfVxuICAgICAgLz5cbiAgICAgIDxCb3hcbiAgICAgICAgY3NzPXtjc3NgXG4gICAgICAgICAgJHtlbW90aW9uTm9ybWFsaXplfVxuXG4gICAgICAgICAgKiB7XG4gICAgICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICAgICAgICAgICAgZm9udC1mYW1pbHk6IFwiSGVsdmV0aWNhIE5ldWVcIiwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmO1xuXG4gICAgICAgICAgICAuaXMtZGlzYWJsZWQge1xuICAgICAgICAgICAgICBvcGFjaXR5OiAwLjU7XG4gICAgICAgICAgICAgIHBvaW50ZXItZXZlbnRzOiBub25lO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cbiAgICAgICAgYH1cbiAgICAgICAgey4uLnByb3BzfVxuICAgICAgPlxuICAgICAgICB7Y2hpbGRyZW59XG4gICAgICA8L0JveD5cbiAgICA8L1RoZW1lUHJvdmlkZXI+XG4gICk7XG59KTtcblxuUGFnZVdyYXBwZXIucHJvcFR5cGVzID0ge1xuICAvKiogQXJyYXkgb2YgdGhlbWUgb2JqZWN0cyB3aGljaCB3aWxsIGJlIG1lcmdlZCB3aXRoIHRoZSBkZWZhdWx0IHRoZW1lLlxuICAgKiBJbiB0aGUgY2FzZSBvZiBjbGFzaGVzLCB0aGVzZSB3aWxsIHRha2UgcHJpb3JpdHkuXG4gICAqIFVzZWZ1bCBmb3IgY3VzdG9taXppbmcgdGhlIGRlZmF1bHQgdmFyaWFudHMsIGFkZGluZyBuZXcgb25lcyxcbiAgICogIG9yIG92ZXJyaWRpbmcgb3RoZXIgdGhlbWUgdmFsdWVzLiAqL1xuICB0aGVtZU92ZXJyaWRlczogUHJvcFR5cGVzLmFycmF5T2YoUHJvcFR5cGVzLnNoYXBlKHt9KSksXG4gIC8qKiBUaGUgZGVmYXVsdCB0aGVtZSBhcHBsaWVkIHRvIHRoZSBBc3RybyBjb21wb25lbnRzLlxuICAgKiBPdmVycmlkaW5nIHRoaXMgaXMgYW4gYWR2YW5jZWQgdXNlIGNhc2Ugc29cbiAgICogcGxlYXNlIHVuZGVyc3RhbmQgcG90ZW50aWFsIHJlcHJlY3Vzc2lvbnMgYmVmb3JlIGVkaXRpbmcgKi9cbiAgZGVmYXVsdFRoZW1lOiBQcm9wVHlwZXMuc2hhcGUoe30pLFxufTtcblxuZXhwb3J0IHsgVGhlbWVQcm92aWRlciB9O1xuZXhwb3J0IGRlZmF1bHQgQXN0cm9Qcm92aWRlcjtcbiJdfQ== */",
84
83
  toString: _EMOTION_STRINGIFIED_CSS_ERROR__
85
84
  };
86
85
  export var PageWrapper = /*#__PURE__*/forwardRef(function (props, ref) {
@@ -100,7 +99,7 @@ export var PageWrapper = /*#__PURE__*/forwardRef(function (props, ref) {
100
99
  }, others), ___EmotionJSX(Global, {
101
100
  styles: _ref
102
101
  }), ___EmotionJSX(Box, _extends({
103
- css: /*#__PURE__*/css(emotionNormalize, " *{box-sizing:border-box;font-family:\"Helvetica Neue\",Helvetica,sans-serif;.is-disabled{opacity:0.5;pointer-events:none;}}" + (process.env.NODE_ENV === "production" ? "" : ";label:PageWrapper;"), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0FzdHJvUHJvdmlkZXIvQXN0cm9Qcm92aWRlci5qcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFrSGdCIiwiZmlsZSI6Ii4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0FzdHJvUHJvdmlkZXIvQXN0cm9Qcm92aWRlci5qcyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBSZWFjdCwgeyBmb3J3YXJkUmVmLCB1c2VNZW1vIH0gZnJvbSAncmVhY3QnO1xuaW1wb3J0IHsgY3NzLCBHbG9iYWwsIFRoZW1lUHJvdmlkZXIgfSBmcm9tICdAZW1vdGlvbi9yZWFjdCc7XG5pbXBvcnQgZW1vdGlvbk5vcm1hbGl6ZSBmcm9tICdlbW90aW9uLW5vcm1hbGl6ZSc7XG5pbXBvcnQgUHJvcFR5cGVzIGZyb20gJ3Byb3AtdHlwZXMnO1xuaW1wb3J0IHsgbWVyZ2UgfSBmcm9tICd0aGVtZS11aSc7XG5cbmltcG9ydCB7IG9wZW5TYW5zRm9udCwgcGluZ2l0b0ZvbnQgfSBmcm9tICcuLi8uLi9mb250cyc7XG5pbXBvcnQgdXNlR2V0VGhlbWUgZnJvbSAnLi4vLi4vaG9va3MvdXNlR2V0VGhlbWUnO1xuaW1wb3J0IGFzdHJvVGhlbWUgZnJvbSAnLi4vLi4vc3R5bGVzL3RoZW1lJztcbmltcG9ydCBCb3ggZnJvbSAnLi4vQm94JztcblxuZXhwb3J0IGNvbnN0IEdsb2JhbFN0eWxlcyA9ICh7IGlzRW5kVXNlclRoZW1lID0gZmFsc2UgfSkgPT4ge1xuICBjb25zdCB7IHRoZW1lU3RhdGU6IHsgaXNPbnl4LCBpc09ueXhEYXJrIH0gfSA9IHVzZUdldFRoZW1lKCk7XG4gIHJldHVybiAoXG4gICAgPEdsb2JhbFxuICAgICAgc3R5bGVzPXtjc3NgXG4gICAgICAgIEBpbXBvcnQgdXJsKFwiaHR0cHM6Ly91c2UudHlwZWtpdC5uZXQvaWN6OGNuaS5jc3NcIik7XG4gICAgICAgICR7ZW1vdGlvbk5vcm1hbGl6ZX1cbiAgICAgICAgJHtwaW5naXRvRm9udH1cbiAgICAgICAgJHtvcGVuU2Fuc0ZvbnR9XG4gICAgICAgICoge1xuICAgICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gICAgICAgIH1cbiAgICAgICAgaHRtbCxcbiAgICAgICAgYm9keSB7XG4gICAgICAgICAgcGFkZGluZzogMDtcbiAgICAgICAgICBtYXJnaW46IDA7XG4gICAgICAgICAgYmFja2dyb3VuZDogd2hpdGU7XG4gICAgICAgICAgbWluLWhlaWdodDogMTAwJTtcbiAgICAgICAgICBmb250LWZhbWlseTogJHtpc0VuZFVzZXJUaGVtZSAmJiAncGluZ2l0bywgJ30gJHtpc09ueXggJiYgJ09wZW4gU2FucywgJ30gXCJIZWx2ZXRpY2EgTmV1ZVwiLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7XG4gICAgICAgIH1cbiAgICAgICAgLmlzLWRpc2FibGVkIHtcbiAgICAgICAgICBvcGFjaXR5OiAke2lzT255eCB8fCBpc09ueXhEYXJrID8gMC42NSA6IDAuNX07XG4gICAgICAgICAgcG9pbnRlci1ldmVudHM6IG5vbmU7XG4gICAgICAgIH1cbiAgICAgICAgW2RhdGEtbGl2ZS1hbm5vdW5jZXJdIHtcbiAgICAgICAgICBkaXNwbGF5OiBub25lO1xuICAgICAgICB9XG4gICAgICAgIGJ1dHRvbjpmb2N1cy12aXNpYmxlLFxuICAgICAgICBbdHlwZT1cImJ1dHRvblwiXTpmb2N1cy12aXNpYmxlLFxuICAgICAgICBbdHlwZT1cInJlc2V0XCJdOmZvY3VzLXZpc2libGUsXG4gICAgICAgIFt0eXBlPVwic3VibWl0XCJdOmZvY3VzLXZpc2libGUge1xuICAgICAgICAgIG91dGxpbmU6IDA7XG4gICAgICAgIH1cbiAgICAgIGB9XG4gICAgLz5cbiAgKTtcbn07XG5cbkdsb2JhbFN0eWxlcy5wcm9wVHlwZXMgPSB7XG4gIGlzRW5kVXNlclRoZW1lOiBQcm9wVHlwZXMuYm9vbCxcbn07XG5cbi8qKlxuICogX05vdGU6IEZvciBVSSBMaWJyYXJ5IGFuZCBBc3RybyBDU1MgY29uZmxpY3RzLCB3ZSBzdXBwbHkgYSB0aGVtZSBvdmVycmlkZSBsb2NhdGVkIGF0X1xuICogYEBwaW5ndXgvYXN0cm8vbGliL3N0eWxlcy90aGVtZU92ZXJyaWRlcy91aUxpYnJhcnlPdmVycmlkZS5qc2BcbiAqL1xuY29uc3QgQXN0cm9Qcm92aWRlciA9IGZvcndhcmRSZWYoKHByb3BzLCByZWYpID0+IHtcbiAgY29uc3QgeyBkZWZhdWx0VGhlbWUgPSBhc3Ryb1RoZW1lLCB0aGVtZU92ZXJyaWRlcyA9IFt7fV0sIGNoaWxkcmVuLCAuLi5vdGhlcnMgfSA9IHByb3BzO1xuXG4gIC8vIFVuZm9ydHVuYXRlbHkgYmVjYXVzZSB0aGlzIGlzIGFkZGluZyBzdHlsZXMsIHdlIGNhbm5vdCB3cml0ZSBhIHByb3BlciB0ZXN0IGZvciB0aGlzLlxuICAvKiBpc3RhbmJ1bCBpZ25vcmUgbmV4dCAqL1xuICBjb25zdCB0aGVtZSA9IHVzZU1lbW8oXG4gICAgKCkgPT4gbWVyZ2UoZGVmYXVsdFRoZW1lLCAuLi50aGVtZU92ZXJyaWRlcyksXG4gICAgW2RlZmF1bHRUaGVtZSwgdGhlbWVPdmVycmlkZXNdLFxuICApO1xuICBjb25zdCBpc0VuZFVzZXJUaGVtZSA9IHRoZW1lICYmIHRoZW1lLm5hbWUgPT09ICdFbmQgVXNlcic7XG5cbiAgcmV0dXJuIChcbiAgICA8VGhlbWVQcm92aWRlciB0aGVtZT17dGhlbWV9IHsuLi5vdGhlcnN9PlxuICAgICAgPEdsb2JhbFN0eWxlcyBpc0VuZFVzZXJUaGVtZT17aXNFbmRVc2VyVGhlbWV9IC8+XG4gICAgICA8Qm94IHJlZj17cmVmfSBiZz1cImJhY2tncm91bmRCYXNlXCIgaGVpZ2h0PVwiMTAwJVwiIHsuLi5wcm9wc30+XG4gICAgICAgIHtjaGlsZHJlbn1cbiAgICAgIDwvQm94PlxuICAgIDwvVGhlbWVQcm92aWRlcj5cbiAgKTtcbn0pO1xuXG5Bc3Ryb1Byb3ZpZGVyLnByb3BUeXBlcyA9IHtcbiAgLyoqIEFycmF5IG9mIHRoZW1lIG9iamVjdHMgd2hpY2ggd2lsbCBiZSBtZXJnZWQgd2l0aCB0aGUgZGVmYXVsdCB0aGVtZS5cbiAgICogSW4gdGhlIGNhc2Ugb2YgY2xhc2hlcywgdGhlc2Ugd2lsbCB0YWtlIHByaW9yaXR5LlxuICAgKiBVc2VmdWwgZm9yIGN1c3RvbWl6aW5nIHRoZSBkZWZhdWx0IHZhcmlhbnRzLCBhZGRpbmcgbmV3IG9uZXMsXG4gICAqICBvciBvdmVycmlkaW5nIG90aGVyIHRoZW1lIHZhbHVlcy4gKi9cbiAgdGhlbWVPdmVycmlkZXM6IFByb3BUeXBlcy5hcnJheU9mKFByb3BUeXBlcy5zaGFwZSh7fSkpLFxuICAvKiogVGhlIGRlZmF1bHQgdGhlbWUgYXBwbGllZCB0byB0aGUgQXN0cm8gY29tcG9uZW50cy5cbiAgICogT3ZlcnJpZGluZyB0aGlzIGlzIGFuIGFkdmFuY2VkIHVzZSBjYXNlIHNvXG4gICAqIHBsZWFzZSB1bmRlcnN0YW5kIHBvdGVudGlhbCByZXByZWN1c3Npb25zIGJlZm9yZSBlZGl0aW5nICovXG4gIGRlZmF1bHRUaGVtZTogUHJvcFR5cGVzLnNoYXBlKHt9KSxcbn07XG5cbi8qKlxuICogV3JhcHBlciBmb3IgdGhlIEFzdHJvIGFwcGxpY2F0aW9uIHcvbyBnbG9iYWwgc3R5bGVzLlxuICogSXQgcHJvdmlkZXMgdGhlIHN0YW5kYXJkIGJhY2tncm91bmQgYW5kIHRoZSBBc3RybyB0aGVtZS5cbiAqL1xuZXhwb3J0IGNvbnN0IFBhZ2VXcmFwcGVyID0gZm9yd2FyZFJlZigocHJvcHMsIHJlZikgPT4ge1xuICBjb25zdCB7IGRlZmF1bHRUaGVtZSA9IGFzdHJvVGhlbWUsIHRoZW1lT3ZlcnJpZGVzID0gW3t9XSwgY2hpbGRyZW4sIC4uLm90aGVycyB9ID0gcHJvcHM7XG5cbiAgY29uc3QgdGhlbWUgPSB1c2VNZW1vKFxuICAgICgpID0+IG1lcmdlKGRlZmF1bHRUaGVtZSwgLi4udGhlbWVPdmVycmlkZXMpLFxuICAgIFtkZWZhdWx0VGhlbWUsIHRoZW1lT3ZlcnJpZGVzXSxcbiAgKTtcblxuICByZXR1cm4gKFxuICAgIDxUaGVtZVByb3ZpZGVyIHJlZj17cmVmfSB0aGVtZT17dGhlbWV9IHsuLi5vdGhlcnN9PlxuICAgICAgPEdsb2JhbFxuICAgICAgICBzdHlsZXM9e2Nzc2BcbiAgICAgICAgICBAaW1wb3J0IHVybChcImh0dHBzOi8vdXNlLnR5cGVraXQubmV0L2ljejhjbmkuY3NzXCIpO1xuXG4gICAgICAgICAgW2RhdGEtdGlwcHktcm9vdF0ge1xuICAgICAgICAgICAgbWF4LXdpZHRoOiBjYWxjKDEwMHZ3IC0gMTBweCk7XG4gICAgICAgICAgfVxuICAgICAgICBgfVxuICAgICAgLz5cbiAgICAgIDxCb3hcbiAgICAgICAgY3NzPXtjc3NgXG4gICAgICAgICAgJHtlbW90aW9uTm9ybWFsaXplfVxuXG4gICAgICAgICAgKiB7XG4gICAgICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICAgICAgICAgICAgZm9udC1mYW1pbHk6IFwiSGVsdmV0aWNhIE5ldWVcIiwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmO1xuXG4gICAgICAgICAgICAuaXMtZGlzYWJsZWQge1xuICAgICAgICAgICAgICBvcGFjaXR5OiAwLjU7XG4gICAgICAgICAgICAgIHBvaW50ZXItZXZlbnRzOiBub25lO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cbiAgICAgICAgYH1cbiAgICAgICAgey4uLnByb3BzfVxuICAgICAgPlxuICAgICAgICB7Y2hpbGRyZW59XG4gICAgICA8L0JveD5cbiAgICA8L1RoZW1lUHJvdmlkZXI+XG4gICk7XG59KTtcblxuUGFnZVdyYXBwZXIucHJvcFR5cGVzID0ge1xuICAvKiogQXJyYXkgb2YgdGhlbWUgb2JqZWN0cyB3aGljaCB3aWxsIGJlIG1lcmdlZCB3aXRoIHRoZSBkZWZhdWx0IHRoZW1lLlxuICAgKiBJbiB0aGUgY2FzZSBvZiBjbGFzaGVzLCB0aGVzZSB3aWxsIHRha2UgcHJpb3JpdHkuXG4gICAqIFVzZWZ1bCBmb3IgY3VzdG9taXppbmcgdGhlIGRlZmF1bHQgdmFyaWFudHMsIGFkZGluZyBuZXcgb25lcyxcbiAgICogIG9yIG92ZXJyaWRpbmcgb3RoZXIgdGhlbWUgdmFsdWVzLiAqL1xuICB0aGVtZU92ZXJyaWRlczogUHJvcFR5cGVzLmFycmF5T2YoUHJvcFR5cGVzLnNoYXBlKHt9KSksXG4gIC8qKiBUaGUgZGVmYXVsdCB0aGVtZSBhcHBsaWVkIHRvIHRoZSBBc3RybyBjb21wb25lbnRzLlxuICAgKiBPdmVycmlkaW5nIHRoaXMgaXMgYW4gYWR2YW5jZWQgdXNlIGNhc2Ugc29cbiAgICogcGxlYXNlIHVuZGVyc3RhbmQgcG90ZW50aWFsIHJlcHJlY3Vzc2lvbnMgYmVmb3JlIGVkaXRpbmcgKi9cbiAgZGVmYXVsdFRoZW1lOiBQcm9wVHlwZXMuc2hhcGUoe30pLFxufTtcblxuZXhwb3J0IHsgVGhlbWVQcm92aWRlciB9O1xuZXhwb3J0IGRlZmF1bHQgQXN0cm9Qcm92aWRlcjtcbiJdfQ== */")
102
+ css: /*#__PURE__*/css(emotionNormalize, " *{box-sizing:border-box;font-family:\"Helvetica Neue\",Helvetica,sans-serif;.is-disabled{opacity:0.5;pointer-events:none;}}" + (process.env.NODE_ENV === "production" ? "" : ";label:PageWrapper;"), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvYXN0cm8vc3JjL2NvbXBvbmVudHMvQXN0cm9Qcm92aWRlci9Bc3Ryb1Byb3ZpZGVyLmpzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFrSGdCIiwiZmlsZSI6Ii4uLy4uLy4uLy4uLy4uL2xpYnMvYXN0cm8vc3JjL2NvbXBvbmVudHMvQXN0cm9Qcm92aWRlci9Bc3Ryb1Byb3ZpZGVyLmpzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBSZWFjdCwgeyBmb3J3YXJkUmVmLCB1c2VNZW1vIH0gZnJvbSAncmVhY3QnO1xuaW1wb3J0IHsgY3NzLCBHbG9iYWwsIFRoZW1lUHJvdmlkZXIgfSBmcm9tICdAZW1vdGlvbi9yZWFjdCc7XG5pbXBvcnQgZW1vdGlvbk5vcm1hbGl6ZSBmcm9tICdlbW90aW9uLW5vcm1hbGl6ZSc7XG5pbXBvcnQgUHJvcFR5cGVzIGZyb20gJ3Byb3AtdHlwZXMnO1xuaW1wb3J0IHsgbWVyZ2UgfSBmcm9tICd0aGVtZS11aSc7XG5cbmltcG9ydCB7IG9wZW5TYW5zRm9udCwgcGluZ2l0b0ZvbnQgfSBmcm9tICcuLi8uLi9mb250cyc7XG5pbXBvcnQgdXNlR2V0VGhlbWUgZnJvbSAnLi4vLi4vaG9va3MvdXNlR2V0VGhlbWUnO1xuaW1wb3J0IGFzdHJvVGhlbWUgZnJvbSAnLi4vLi4vc3R5bGVzL3RoZW1lJztcbmltcG9ydCBCb3ggZnJvbSAnLi4vQm94JztcblxuZXhwb3J0IGNvbnN0IEdsb2JhbFN0eWxlcyA9ICh7IGlzRW5kVXNlclRoZW1lID0gZmFsc2UgfSkgPT4ge1xuICBjb25zdCB7IHRoZW1lU3RhdGU6IHsgaXNPbnl4LCBpc09ueXhEYXJrIH0gfSA9IHVzZUdldFRoZW1lKCk7XG4gIHJldHVybiAoXG4gICAgPEdsb2JhbFxuICAgICAgc3R5bGVzPXtjc3NgXG4gICAgICAgIEBpbXBvcnQgdXJsKFwiaHR0cHM6Ly91c2UudHlwZWtpdC5uZXQvaWN6OGNuaS5jc3NcIik7XG4gICAgICAgICR7ZW1vdGlvbk5vcm1hbGl6ZX1cbiAgICAgICAgJHtwaW5naXRvRm9udH1cbiAgICAgICAgJHtvcGVuU2Fuc0ZvbnR9XG4gICAgICAgICoge1xuICAgICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gICAgICAgIH1cbiAgICAgICAgaHRtbCxcbiAgICAgICAgYm9keSB7XG4gICAgICAgICAgcGFkZGluZzogMDtcbiAgICAgICAgICBtYXJnaW46IDA7XG4gICAgICAgICAgYmFja2dyb3VuZDogd2hpdGU7XG4gICAgICAgICAgbWluLWhlaWdodDogMTAwJTtcbiAgICAgICAgICBmb250LWZhbWlseTogJHtpc0VuZFVzZXJUaGVtZSAmJiAncGluZ2l0bywgJ30gJHtpc09ueXggJiYgJ09wZW4gU2FucywgJ30gXCJIZWx2ZXRpY2EgTmV1ZVwiLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7XG4gICAgICAgIH1cbiAgICAgICAgLmlzLWRpc2FibGVkIHtcbiAgICAgICAgICBvcGFjaXR5OiAke2lzT255eCB8fCBpc09ueXhEYXJrID8gMC42NSA6IDAuNX07XG4gICAgICAgICAgcG9pbnRlci1ldmVudHM6IG5vbmU7XG4gICAgICAgIH1cbiAgICAgICAgW2RhdGEtbGl2ZS1hbm5vdW5jZXJdIHtcbiAgICAgICAgICBkaXNwbGF5OiBub25lO1xuICAgICAgICB9XG4gICAgICAgIGJ1dHRvbjpmb2N1cy12aXNpYmxlLFxuICAgICAgICBbdHlwZT1cImJ1dHRvblwiXTpmb2N1cy12aXNpYmxlLFxuICAgICAgICBbdHlwZT1cInJlc2V0XCJdOmZvY3VzLXZpc2libGUsXG4gICAgICAgIFt0eXBlPVwic3VibWl0XCJdOmZvY3VzLXZpc2libGUge1xuICAgICAgICAgIG91dGxpbmU6IDA7XG4gICAgICAgIH1cbiAgICAgIGB9XG4gICAgLz5cbiAgKTtcbn07XG5cbkdsb2JhbFN0eWxlcy5wcm9wVHlwZXMgPSB7XG4gIGlzRW5kVXNlclRoZW1lOiBQcm9wVHlwZXMuYm9vbCxcbn07XG5cbi8qKlxuICogX05vdGU6IEZvciBVSSBMaWJyYXJ5IGFuZCBBc3RybyBDU1MgY29uZmxpY3RzLCB3ZSBzdXBwbHkgYSB0aGVtZSBvdmVycmlkZSBsb2NhdGVkIGF0X1xuICogYEBwaW5ndXgvYXN0cm8vbGliL3N0eWxlcy90aGVtZU92ZXJyaWRlcy91aUxpYnJhcnlPdmVycmlkZS5qc2BcbiAqL1xuY29uc3QgQXN0cm9Qcm92aWRlciA9IGZvcndhcmRSZWYoKHByb3BzLCByZWYpID0+IHtcbiAgY29uc3QgeyBkZWZhdWx0VGhlbWUgPSBhc3Ryb1RoZW1lLCB0aGVtZU92ZXJyaWRlcyA9IFt7fV0sIGNoaWxkcmVuLCAuLi5vdGhlcnMgfSA9IHByb3BzO1xuXG4gIC8vIFVuZm9ydHVuYXRlbHkgYmVjYXVzZSB0aGlzIGlzIGFkZGluZyBzdHlsZXMsIHdlIGNhbm5vdCB3cml0ZSBhIHByb3BlciB0ZXN0IGZvciB0aGlzLlxuICAvKiBpc3RhbmJ1bCBpZ25vcmUgbmV4dCAqL1xuICBjb25zdCB0aGVtZSA9IHVzZU1lbW8oXG4gICAgKCkgPT4gbWVyZ2UoZGVmYXVsdFRoZW1lLCAuLi50aGVtZU92ZXJyaWRlcyksXG4gICAgW2RlZmF1bHRUaGVtZSwgdGhlbWVPdmVycmlkZXNdLFxuICApO1xuICBjb25zdCBpc0VuZFVzZXJUaGVtZSA9IHRoZW1lICYmIHRoZW1lLm5hbWUgPT09ICdFbmQgVXNlcic7XG5cbiAgcmV0dXJuIChcbiAgICA8VGhlbWVQcm92aWRlciB0aGVtZT17dGhlbWV9IHsuLi5vdGhlcnN9PlxuICAgICAgPEdsb2JhbFN0eWxlcyBpc0VuZFVzZXJUaGVtZT17aXNFbmRVc2VyVGhlbWV9IC8+XG4gICAgICA8Qm94IHJlZj17cmVmfSBiZz1cImJhY2tncm91bmRCYXNlXCIgaGVpZ2h0PVwiMTAwJVwiIHsuLi5wcm9wc30+XG4gICAgICAgIHtjaGlsZHJlbn1cbiAgICAgIDwvQm94PlxuICAgIDwvVGhlbWVQcm92aWRlcj5cbiAgKTtcbn0pO1xuXG5Bc3Ryb1Byb3ZpZGVyLnByb3BUeXBlcyA9IHtcbiAgLyoqIEFycmF5IG9mIHRoZW1lIG9iamVjdHMgd2hpY2ggd2lsbCBiZSBtZXJnZWQgd2l0aCB0aGUgZGVmYXVsdCB0aGVtZS5cbiAgICogSW4gdGhlIGNhc2Ugb2YgY2xhc2hlcywgdGhlc2Ugd2lsbCB0YWtlIHByaW9yaXR5LlxuICAgKiBVc2VmdWwgZm9yIGN1c3RvbWl6aW5nIHRoZSBkZWZhdWx0IHZhcmlhbnRzLCBhZGRpbmcgbmV3IG9uZXMsXG4gICAqICBvciBvdmVycmlkaW5nIG90aGVyIHRoZW1lIHZhbHVlcy4gKi9cbiAgdGhlbWVPdmVycmlkZXM6IFByb3BUeXBlcy5hcnJheU9mKFByb3BUeXBlcy5zaGFwZSh7fSkpLFxuICAvKiogVGhlIGRlZmF1bHQgdGhlbWUgYXBwbGllZCB0byB0aGUgQXN0cm8gY29tcG9uZW50cy5cbiAgICogT3ZlcnJpZGluZyB0aGlzIGlzIGFuIGFkdmFuY2VkIHVzZSBjYXNlIHNvXG4gICAqIHBsZWFzZSB1bmRlcnN0YW5kIHBvdGVudGlhbCByZXByZWN1c3Npb25zIGJlZm9yZSBlZGl0aW5nICovXG4gIGRlZmF1bHRUaGVtZTogUHJvcFR5cGVzLnNoYXBlKHt9KSxcbn07XG5cbi8qKlxuICogV3JhcHBlciBmb3IgdGhlIEFzdHJvIGFwcGxpY2F0aW9uIHcvbyBnbG9iYWwgc3R5bGVzLlxuICogSXQgcHJvdmlkZXMgdGhlIHN0YW5kYXJkIGJhY2tncm91bmQgYW5kIHRoZSBBc3RybyB0aGVtZS5cbiAqL1xuZXhwb3J0IGNvbnN0IFBhZ2VXcmFwcGVyID0gZm9yd2FyZFJlZigocHJvcHMsIHJlZikgPT4ge1xuICBjb25zdCB7IGRlZmF1bHRUaGVtZSA9IGFzdHJvVGhlbWUsIHRoZW1lT3ZlcnJpZGVzID0gW3t9XSwgY2hpbGRyZW4sIC4uLm90aGVycyB9ID0gcHJvcHM7XG5cbiAgY29uc3QgdGhlbWUgPSB1c2VNZW1vKFxuICAgICgpID0+IG1lcmdlKGRlZmF1bHRUaGVtZSwgLi4udGhlbWVPdmVycmlkZXMpLFxuICAgIFtkZWZhdWx0VGhlbWUsIHRoZW1lT3ZlcnJpZGVzXSxcbiAgKTtcblxuICByZXR1cm4gKFxuICAgIDxUaGVtZVByb3ZpZGVyIHJlZj17cmVmfSB0aGVtZT17dGhlbWV9IHsuLi5vdGhlcnN9PlxuICAgICAgPEdsb2JhbFxuICAgICAgICBzdHlsZXM9e2Nzc2BcbiAgICAgICAgICBAaW1wb3J0IHVybChcImh0dHBzOi8vdXNlLnR5cGVraXQubmV0L2ljejhjbmkuY3NzXCIpO1xuXG4gICAgICAgICAgW2RhdGEtdGlwcHktcm9vdF0ge1xuICAgICAgICAgICAgbWF4LXdpZHRoOiBjYWxjKDEwMHZ3IC0gMTBweCk7XG4gICAgICAgICAgfVxuICAgICAgICBgfVxuICAgICAgLz5cbiAgICAgIDxCb3hcbiAgICAgICAgY3NzPXtjc3NgXG4gICAgICAgICAgJHtlbW90aW9uTm9ybWFsaXplfVxuXG4gICAgICAgICAgKiB7XG4gICAgICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICAgICAgICAgICAgZm9udC1mYW1pbHk6IFwiSGVsdmV0aWNhIE5ldWVcIiwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmO1xuXG4gICAgICAgICAgICAuaXMtZGlzYWJsZWQge1xuICAgICAgICAgICAgICBvcGFjaXR5OiAwLjU7XG4gICAgICAgICAgICAgIHBvaW50ZXItZXZlbnRzOiBub25lO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cbiAgICAgICAgYH1cbiAgICAgICAgey4uLnByb3BzfVxuICAgICAgPlxuICAgICAgICB7Y2hpbGRyZW59XG4gICAgICA8L0JveD5cbiAgICA8L1RoZW1lUHJvdmlkZXI+XG4gICk7XG59KTtcblxuUGFnZVdyYXBwZXIucHJvcFR5cGVzID0ge1xuICAvKiogQXJyYXkgb2YgdGhlbWUgb2JqZWN0cyB3aGljaCB3aWxsIGJlIG1lcmdlZCB3aXRoIHRoZSBkZWZhdWx0IHRoZW1lLlxuICAgKiBJbiB0aGUgY2FzZSBvZiBjbGFzaGVzLCB0aGVzZSB3aWxsIHRha2UgcHJpb3JpdHkuXG4gICAqIFVzZWZ1bCBmb3IgY3VzdG9taXppbmcgdGhlIGRlZmF1bHQgdmFyaWFudHMsIGFkZGluZyBuZXcgb25lcyxcbiAgICogIG9yIG92ZXJyaWRpbmcgb3RoZXIgdGhlbWUgdmFsdWVzLiAqL1xuICB0aGVtZU92ZXJyaWRlczogUHJvcFR5cGVzLmFycmF5T2YoUHJvcFR5cGVzLnNoYXBlKHt9KSksXG4gIC8qKiBUaGUgZGVmYXVsdCB0aGVtZSBhcHBsaWVkIHRvIHRoZSBBc3RybyBjb21wb25lbnRzLlxuICAgKiBPdmVycmlkaW5nIHRoaXMgaXMgYW4gYWR2YW5jZWQgdXNlIGNhc2Ugc29cbiAgICogcGxlYXNlIHVuZGVyc3RhbmQgcG90ZW50aWFsIHJlcHJlY3Vzc2lvbnMgYmVmb3JlIGVkaXRpbmcgKi9cbiAgZGVmYXVsdFRoZW1lOiBQcm9wVHlwZXMuc2hhcGUoe30pLFxufTtcblxuZXhwb3J0IHsgVGhlbWVQcm92aWRlciB9O1xuZXhwb3J0IGRlZmF1bHQgQXN0cm9Qcm92aWRlcjtcbiJdfQ== */")
104
103
  }, props), children));
105
104
  });
106
105
  PageWrapper.propTypes = {
@@ -10,14 +10,13 @@ import _extends from "@babel/runtime-corejs3/helpers/esm/extends";
10
10
  import _defineProperty from "@babel/runtime-corejs3/helpers/esm/defineProperty";
11
11
  import _objectWithoutProperties from "@babel/runtime-corejs3/helpers/esm/objectWithoutProperties";
12
12
  var _excluded = ["alt", "defaultText", "color", "className", "size", "src", "sx", "children", "isSquare", "isLogo"];
13
- function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
14
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
13
+ function ownKeys(e, r) { var t = _Object$keys(e); if (_Object$getOwnPropertySymbols) { var o = _Object$getOwnPropertySymbols(e); r && (o = _filterInstanceProperty(o).call(o, function (r) { return _Object$getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
14
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var _context, _context2; var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(t), !0)).call(_context, function (r) { _defineProperty(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(e, _Object$getOwnPropertyDescriptors(t)) : _forEachInstanceProperty(_context2 = ownKeys(Object(t))).call(_context2, function (r) { _Object$defineProperty(e, r, _Object$getOwnPropertyDescriptor(t, r)); }); } return e; }
15
15
  import React, { forwardRef } from 'react';
16
16
  import { Avatar as ThemeUIAvatar, Box } from 'theme-ui';
17
17
  import { useStatusClasses } from '../../hooks';
18
18
  import { jsx as ___EmotionJSX } from "@emotion/react";
19
19
  var Avatar = /*#__PURE__*/forwardRef(function (props, ref) {
20
- var _useStatusClasses2;
21
20
  var _props$alt = props.alt,
22
21
  alt = _props$alt === void 0 ? 'Avatar' : _props$alt,
23
22
  _props$defaultText = props.defaultText,
@@ -32,7 +31,7 @@ var Avatar = /*#__PURE__*/forwardRef(function (props, ref) {
32
31
  isSquare = props.isSquare,
33
32
  isLogo = props.isLogo,
34
33
  others = _objectWithoutProperties(props, _excluded);
35
- var _useStatusClasses = useStatusClasses(className, (_useStatusClasses2 = {}, _defineProperty(_useStatusClasses2, "is-".concat(color), color), _defineProperty(_useStatusClasses2, "size-".concat(size), size), _defineProperty(_useStatusClasses2, "font-size-".concat(size), src ? false : size), _defineProperty(_useStatusClasses2, 'is-square', isSquare), _defineProperty(_useStatusClasses2, 'is-image', src), _defineProperty(_useStatusClasses2, 'is-logo', isLogo), _useStatusClasses2)),
34
+ var _useStatusClasses = useStatusClasses(className, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, "is-".concat(color), color), "size-".concat(size), size), "font-size-".concat(size), src ? false : size), 'is-square', isSquare), 'is-image', src), 'is-logo', isLogo)),
36
35
  classNames = _useStatusClasses.classNames;
37
36
  if (src) {
38
37
  return ___EmotionJSX(Box, {
@@ -11,8 +11,8 @@ import _defineProperty from "@babel/runtime-corejs3/helpers/esm/defineProperty";
11
11
  import _objectWithoutProperties from "@babel/runtime-corejs3/helpers/esm/objectWithoutProperties";
12
12
  var _excluded = ["align", "bg", "children", "isUppercase", "label", "sx", "slots", "textColor", "textProps", "variant"];
13
13
  import _includesInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/includes";
14
- function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
15
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
14
+ function ownKeys(e, r) { var t = _Object$keys(e); if (_Object$getOwnPropertySymbols) { var o = _Object$getOwnPropertySymbols(e); r && (o = _filterInstanceProperty(o).call(o, function (r) { return _Object$getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
15
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var _context, _context2; var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(t), !0)).call(_context, function (r) { _defineProperty(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(e, _Object$getOwnPropertyDescriptors(t)) : _forEachInstanceProperty(_context2 = ownKeys(Object(t))).call(_context2, function (r) { _Object$defineProperty(e, r, _Object$getOwnPropertyDescriptor(t, r)); }); } return e; }
16
16
  import React from 'react';
17
17
  import { Badge as ThemeUIBadge } from 'theme-ui';
18
18
  import { Box, Text } from '../..';
@@ -7,8 +7,8 @@ import _Object$getOwnPropertyDescriptors from "@babel/runtime-corejs3/core-js-st
7
7
  import _Object$defineProperties from "@babel/runtime-corejs3/core-js-stable/object/define-properties";
8
8
  import _Object$defineProperty from "@babel/runtime-corejs3/core-js-stable/object/define-property";
9
9
  import _defineProperty from "@babel/runtime-corejs3/helpers/esm/defineProperty";
10
- function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
11
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
10
+ function ownKeys(e, r) { var t = _Object$keys(e); if (_Object$getOwnPropertySymbols) { var o = _Object$getOwnPropertySymbols(e); r && (o = _filterInstanceProperty(o).call(o, function (r) { return _Object$getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
11
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var _context, _context2; var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(t), !0)).call(_context, function (r) { _defineProperty(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(e, _Object$getOwnPropertyDescriptors(t)) : _forEachInstanceProperty(_context2 = ownKeys(Object(t))).call(_context2, function (r) { _Object$defineProperty(e, r, _Object$getOwnPropertyDescriptor(t, r)); }); } return e; }
12
12
  import { focusWithCroppedOutline } from '../Button/Buttons.styles';
13
13
  export var baseBadge = {
14
14
  cursor: 'default',