@pingux/astro 2.9.1 → 2.13.0-alpha.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (434) hide show
  1. package/README.md +6 -2
  2. package/lib/README.md +6 -2
  3. package/lib/cjs/components/AccordionGridGroup/AccordionGridGroup.mdx +40 -0
  4. package/lib/cjs/components/AccordionGridGroup/AccordionGridGroup.test.js +2 -2
  5. package/lib/cjs/components/AccordionGroup/Accordion.styles.js +1 -2
  6. package/lib/cjs/components/AccordionGroup/AccordionGroup.js +4 -5
  7. package/lib/cjs/components/AccordionGroup/AccordionGroup.mdx +41 -0
  8. package/lib/cjs/components/ArrayField/ArrayField.mdx +34 -0
  9. package/lib/cjs/components/AstroWrapper/AstroWrapper.mdx +16 -0
  10. package/lib/cjs/components/Avatar/Avatar.mdx +14 -0
  11. package/lib/cjs/components/Badge/Badge.mdx +24 -0
  12. package/lib/cjs/components/Box/Box.d.ts +4 -0
  13. package/lib/cjs/components/Box/Box.js +4 -19
  14. package/lib/cjs/components/Box/Box.mdx +23 -0
  15. package/lib/cjs/components/Box/Box.styles.d.ts +6 -0
  16. package/lib/cjs/components/Box/Box.test.d.ts +1 -0
  17. package/lib/cjs/components/Box/Box.test.js +2 -6
  18. package/lib/cjs/components/Box/index.d.ts +1 -0
  19. package/lib/cjs/components/Bracket/Bracket.mdx +17 -0
  20. package/lib/cjs/components/Breadcrumbs/Breadcrumbs.mdx +40 -0
  21. package/lib/cjs/components/Button/Button.mdx +40 -0
  22. package/lib/cjs/components/Button/Button.stories.js +30 -5
  23. package/lib/cjs/components/Button/Buttons.styles.js +25 -7
  24. package/lib/cjs/components/Calendar/Calendar.mdx +39 -0
  25. package/lib/cjs/components/Calendar/Calendar.test.js +2 -2
  26. package/lib/cjs/components/Calendar/CalendarCell.js +2 -3
  27. package/lib/cjs/components/Calendar/CalendarGrid.js +1 -3
  28. package/lib/cjs/components/Callout/Callout.mdx +28 -0
  29. package/lib/cjs/components/Card/Card.mdx +32 -0
  30. package/lib/cjs/components/Checkbox/Checkbox.js +1 -2
  31. package/lib/cjs/components/Checkbox/CheckboxBase.js +1 -2
  32. package/lib/cjs/components/CheckboxField/CheckboxField.mdx +42 -0
  33. package/lib/cjs/components/CodeView/CodeView.mdx +23 -0
  34. package/lib/cjs/components/CodeView/CodeView.test.js +1 -1
  35. package/lib/cjs/components/CollapsiblePanel/CollapsiblePanel.mdx +29 -0
  36. package/lib/cjs/components/CollapsiblePanelContainer/CollapsiblePanelBadge.js +0 -1
  37. package/lib/cjs/components/CollapsiblePanelContainer/CollapsiblePanelContainer.js +2 -3
  38. package/lib/cjs/components/ColorField/ColorField.mdx +38 -0
  39. package/lib/cjs/components/ComboBoxField/ComboBoxField.mdx +66 -0
  40. package/lib/cjs/components/ComboBoxField/ComboBoxField.stories.js +1 -1
  41. package/lib/cjs/components/ComboBoxField/ComboBoxField.test.js +2 -2
  42. package/lib/cjs/components/CopyText/CopyText.mdx +23 -0
  43. package/lib/cjs/components/CopyText/CopyText.test.js +1 -1
  44. package/lib/cjs/components/DataTable/DataTable.mdx +54 -0
  45. package/lib/cjs/components/DataTable/DataTable.stories.js +1 -1
  46. package/lib/cjs/components/DataTable/DataTable.test.js +2 -2
  47. package/lib/cjs/components/DataTable/DataTableVirtualizer.js +2 -3
  48. package/lib/cjs/components/DatePicker/DateField.js +4 -5
  49. package/lib/cjs/components/DatePicker/DatePicker.js +4 -6
  50. package/lib/cjs/components/DatePicker/DatePicker.mdx +49 -0
  51. package/lib/cjs/components/DatePicker/DatePicker.test.js +2 -2
  52. package/lib/cjs/components/DatePicker/DateSegment.js +1 -2
  53. package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +3 -3
  54. package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.mdx +36 -0
  55. package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.stories.js +29 -45
  56. package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +1 -1
  57. package/lib/cjs/components/FieldHelperText/FieldHelperText.js +4 -4
  58. package/lib/cjs/components/FileInputField/FileInputField.mdx +33 -0
  59. package/lib/cjs/components/HelpHint/HelpHint.js +145 -27
  60. package/lib/cjs/components/HelpHint/HelpHint.mdx +32 -0
  61. package/lib/cjs/components/HelpHint/HelpHint.stories.js +40 -7
  62. package/lib/cjs/components/HelpHint/HelpHint.styles.js +9 -1
  63. package/lib/cjs/components/HelpHint/HelpHint.test.js +213 -30
  64. package/lib/cjs/components/Icon/Icon.d.ts +4 -0
  65. package/lib/cjs/components/Icon/Icon.js +4 -27
  66. package/lib/cjs/components/Icon/Icon.mdx +49 -0
  67. package/lib/cjs/components/Icon/Icon.stories.d.ts +8 -0
  68. package/lib/cjs/components/Icon/Icon.test.d.ts +1 -0
  69. package/lib/cjs/components/Icon/index.d.ts +1 -0
  70. package/lib/cjs/components/IconBadge/IconBadge.mdx +14 -0
  71. package/lib/cjs/components/IconButton/IconButton.mdx +33 -0
  72. package/lib/cjs/components/IconButtonToggle/IconButtonToggle.mdx +31 -0
  73. package/lib/cjs/components/Image/Image.mdx +28 -0
  74. package/lib/cjs/components/ImageUploadField/ImageUploadField.mdx +38 -0
  75. package/lib/cjs/components/ImageUploadField/ImageUploadField.stories.js +1 -1
  76. package/lib/cjs/components/ImageUploadField/ImageUploadField.test.js +2 -2
  77. package/lib/cjs/components/Input/Input.js +2 -3
  78. package/lib/cjs/components/Label/Label.styles.js +1 -1
  79. package/lib/cjs/components/Link/Link.mdx +27 -0
  80. package/lib/cjs/components/Link/Link.styles.js +10 -0
  81. package/lib/cjs/components/LinkSelectField/LinkSelectField.mdx +47 -0
  82. package/lib/cjs/components/LinkSelectField/LinkSelectField.stories.js +1 -1
  83. package/lib/cjs/components/LinkSelectField/LinkSelectField.test.js +2 -2
  84. package/lib/cjs/components/ListBox/ListBox.test.js +2 -2
  85. package/lib/cjs/components/ListItem/ListItem.mdx +21 -0
  86. package/lib/cjs/components/ListView/ListView.mdx +44 -0
  87. package/lib/cjs/components/ListView/ListView.stories.js +95 -49
  88. package/lib/cjs/components/ListView/ListView.test.js +2 -2
  89. package/lib/cjs/components/Loader/Loader.d.ts +4 -0
  90. package/lib/cjs/components/Loader/Loader.js +0 -14
  91. package/lib/cjs/components/Loader/Loader.mdx +29 -0
  92. package/lib/cjs/components/Loader/Loader.styles.d.ts +53 -0
  93. package/lib/cjs/components/Loader/Loader.test.d.ts +1 -0
  94. package/lib/cjs/components/Loader/index.d.ts +1 -0
  95. package/lib/cjs/components/Menu/Menu.mdx +43 -0
  96. package/lib/cjs/components/MenuItem/MenuItem.js +2 -3
  97. package/lib/cjs/components/Messages/Messages.mdx +35 -0
  98. package/lib/cjs/components/Modal/Modal.mdx +59 -0
  99. package/lib/cjs/components/Modal/tests/Modal.integration.test.js +1 -2
  100. package/lib/cjs/components/MultivaluesField/MultivaluesField.js +43 -9
  101. package/lib/cjs/components/MultivaluesField/MultivaluesField.mdx +44 -0
  102. package/lib/cjs/components/MultivaluesField/MultivaluesField.test.js +3 -3
  103. package/lib/cjs/components/NavBar/NavBar.mdx +42 -0
  104. package/lib/cjs/components/NavBarSection/NavBarSection.js +2 -3
  105. package/lib/cjs/components/NumberField/NumberField.mdx +39 -0
  106. package/lib/cjs/components/OverlayPanel/OverlayPanel.mdx +39 -0
  107. package/lib/cjs/components/PasswordField/PasswordField.mdx +33 -0
  108. package/lib/cjs/components/PasswordField/PasswordField.test.js +2 -3
  109. package/lib/cjs/components/PopoverContainer/PopoverContainer.d.ts +9 -0
  110. package/lib/cjs/components/PopoverContainer/PopoverContainer.js +10 -42
  111. package/lib/cjs/components/PopoverContainer/index.d.ts +2 -0
  112. package/lib/cjs/components/PopoverMenu/PopoverMenu.mdx +53 -0
  113. package/lib/cjs/components/Radio/Radio.js +1 -2
  114. package/lib/cjs/components/RadioGroupField/RadioGroupField.mdx +41 -0
  115. package/lib/cjs/components/RadioGroupField/RadioGroupField.test.js +2 -2
  116. package/lib/cjs/components/RequirementsList/RequirementsList.mdx +17 -0
  117. package/lib/cjs/components/RockerButtonGroup/RockerButtonGroup.mdx +36 -0
  118. package/lib/cjs/components/ScrollBox/ScrollBox.mdx +17 -0
  119. package/lib/cjs/components/SearchField/SearchField.mdx +33 -0
  120. package/lib/cjs/components/SelectField/Select.styles.js +1 -1
  121. package/lib/cjs/components/SelectField/SelectField.mdx +46 -0
  122. package/lib/cjs/components/SelectField/SelectField.stories.js +1 -1
  123. package/lib/cjs/components/SelectFieldBase/SelectFieldBase.js +4 -4
  124. package/lib/cjs/components/SelectFieldBase/SelectFieldBase.test.js +2 -2
  125. package/lib/cjs/components/Separator/Separator.mdx +19 -0
  126. package/lib/cjs/components/Stepper/Stepper.mdx +41 -0
  127. package/lib/cjs/components/Stepper/Stepper.styles.js +1 -1
  128. package/lib/cjs/components/Stepper/Stepper.test.js +2 -3
  129. package/lib/cjs/components/Switch/Switch.js +1 -2
  130. package/lib/cjs/components/SwitchField/SwitchField.js +1 -0
  131. package/lib/cjs/components/SwitchField/SwitchField.mdx +36 -0
  132. package/lib/cjs/components/Tab/Tab.js +2 -3
  133. package/lib/cjs/components/TabPicker/TabPicker.js +1 -1
  134. package/lib/cjs/components/Table/Table.mdx +30 -0
  135. package/lib/cjs/components/TableBody/TableBody.js +0 -1
  136. package/lib/cjs/components/TableCaption/TableCaption.js +0 -1
  137. package/lib/cjs/components/TableCell/TableCell.d.ts +12 -0
  138. package/lib/cjs/components/TableCell/TableCell.js +0 -6
  139. package/lib/cjs/components/TableCell/TableCell.test.d.ts +1 -0
  140. package/lib/cjs/components/TableCell/index.d.ts +1 -0
  141. package/lib/cjs/components/TableHead/TableHead.js +0 -1
  142. package/lib/cjs/components/TableRow/TableRow.js +0 -1
  143. package/lib/cjs/components/Tabs/Tabs.mdx +40 -0
  144. package/lib/cjs/components/Tabs/Tabs.test.js +3 -4
  145. package/lib/cjs/components/Text/Text.d.ts +4 -0
  146. package/lib/cjs/components/Text/Text.js +3 -7
  147. package/lib/cjs/components/Text/Text.mdx +13 -0
  148. package/lib/cjs/components/Text/Text.stories.d.ts +6 -0
  149. package/lib/cjs/components/Text/Text.styles.d.ts +286 -0
  150. package/lib/cjs/components/Text/Text.test.d.ts +1 -0
  151. package/lib/cjs/components/Text/index.d.ts +1 -0
  152. package/lib/cjs/components/TextArea/TextArea.js +1 -3
  153. package/lib/cjs/components/TextAreaField/TextAreaField.mdx +34 -0
  154. package/lib/cjs/components/TextField/TextField.js +1 -1
  155. package/lib/cjs/components/TextField/TextField.mdx +34 -0
  156. package/lib/cjs/components/TimeZonePicker/TimeZonePicker.mdx +18 -0
  157. package/lib/cjs/components/TooltipTrigger/Tooltip.styles.js +2 -1
  158. package/lib/cjs/components/TooltipTrigger/TooltipTrigger.js +2 -0
  159. package/lib/cjs/components/TooltipTrigger/TooltipTrigger.mdx +23 -0
  160. package/lib/cjs/components/TooltipTrigger/TooltipTrigger.test.js +47 -1
  161. package/lib/cjs/docs/Props.stories.mdx +35 -0
  162. package/lib/cjs/docs/Welcome.stories.mdx +149 -0
  163. package/lib/cjs/docs/hooks/useDebounce.stories.mdx +59 -0
  164. package/lib/cjs/docs/hooks/useModalState.stories.mdx +83 -0
  165. package/lib/cjs/docs/hooks/useOverlayPanelState.stories.mdx +84 -0
  166. package/lib/cjs/docs/theme/AstroNanoTheme.stories.mdx +174 -0
  167. package/lib/cjs/docs/theme/AstroTheme.stories.mdx +20 -0
  168. package/lib/cjs/docs/theme/CustomThemes.stories.mdx +70 -0
  169. package/lib/cjs/docs/theme/StylingGuideline.stories.mdx +116 -0
  170. package/lib/cjs/docs/utils/messagesReducer.stories.mdx +64 -0
  171. package/lib/cjs/experimental/EditButton/EditButton.js +63 -0
  172. package/lib/cjs/experimental/EditButton/EditButton.mdx +9 -0
  173. package/lib/cjs/experimental/EditButton/EditButton.stories.js +91 -0
  174. package/lib/cjs/experimental/EditButton/EditButton.test.js +71 -0
  175. package/lib/cjs/experimental/EditButton/index.js +14 -0
  176. package/lib/cjs/experimental/ListView/ListView.mdx +47 -0
  177. package/lib/cjs/experimental/ListView/ListView.stories.js +742 -0
  178. package/lib/cjs/experimental/ListViewItem/ListViewItem.js +23 -5
  179. package/lib/cjs/experimental/ListViewItem/ListViewItem.mdx +36 -0
  180. package/lib/cjs/experimental/ListViewItem/ListViewItem.stories.js +31 -7
  181. package/lib/cjs/experimental/ListViewItem/ListViewItem.test.js +51 -7
  182. package/lib/cjs/experimental/ListViewItem/controls/ListViewItemEditButton.js +2 -7
  183. package/lib/cjs/experimental/ListViewItem/controls/ListViewItemEditButton.stories.js +4 -1
  184. package/lib/cjs/experimental/ListViewItem/controls/ListViewItemMenu.js +0 -1
  185. package/lib/cjs/experimental/ListViewItem/controls/ListViewItemMenu.test.js +2 -2
  186. package/lib/cjs/experimental/ListViewItem/controls/ListViewItemSwitchField.js +2 -3
  187. package/lib/cjs/experimental/ListViewItem/listViewItemAttributes.js +28 -13
  188. package/lib/cjs/experimental/PanelHeader/PanelHeader.js +88 -0
  189. package/lib/cjs/experimental/PanelHeader/PanelHeader.mdx +19 -0
  190. package/lib/cjs/experimental/PanelHeader/PanelHeader.stories.js +71 -0
  191. package/lib/cjs/experimental/PanelHeader/PanelHeader.styles.js +38 -0
  192. package/lib/cjs/experimental/PanelHeader/PanelHeader.test.js +46 -0
  193. package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderCloseButton.js +32 -0
  194. package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderCloseButton.stories.js +31 -0
  195. package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderCloseButton.test.js +25 -0
  196. package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderMenu.js +25 -0
  197. package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderMenu.stories.js +36 -0
  198. package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderMenu.test.js +58 -0
  199. package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderSwitchField.js +25 -0
  200. package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderSwitchField.stories.js +41 -0
  201. package/lib/cjs/experimental/PanelHeader/controls/PanelHeaderSwitchField.test.js +25 -0
  202. package/lib/cjs/experimental/PanelHeader/index.js +14 -0
  203. package/lib/cjs/experimental/README.stories.mdx +7 -0
  204. package/lib/cjs/experimental/SaveBar/SaveBar.mdx +13 -0
  205. package/lib/cjs/experimental/recipes/ListAndPanel.stories.js +1 -1
  206. package/lib/cjs/hooks/useComponentToggle/useComponentToggle.test.js +2 -2
  207. package/lib/cjs/hooks/useCopyToClipboard/useCopyToClipboard.js +2 -2
  208. package/lib/cjs/hooks/useCopyToClipboard/useCopyToClipboard.test.js +1 -1
  209. package/lib/cjs/hooks/useOverlappingMenuHoverState/useOverlappingMenuHoverState.test.js +2 -2
  210. package/lib/cjs/hooks/usePropWarning/usePropWarning.js +1 -1
  211. package/lib/cjs/hooks/useStatusClasses/useStatusClasses.js +2 -2
  212. package/lib/cjs/hooks/useTShirtSize/useTShirtSize.js +1 -1
  213. package/lib/cjs/index.d.ts +173 -0
  214. package/lib/cjs/index.js +53 -1
  215. package/lib/cjs/recipes/ApplicationSearchDropdown.stories.hidden.js +1 -1
  216. package/lib/cjs/recipes/{AttributesAndPingOneMapping.stories.js → AttributeMapping.stories.js} +392 -132
  217. package/lib/cjs/recipes/Slider.stories.js +1 -1
  218. package/lib/cjs/styles/colors.js +1 -1
  219. package/lib/cjs/styles/forms/index.js +1 -1
  220. package/lib/cjs/styles/variants/README.md +98 -0
  221. package/lib/cjs/styles/variants/variants.js +2 -0
  222. package/lib/cjs/types/box.d.ts +10 -0
  223. package/lib/cjs/types/box.js +6 -0
  224. package/lib/cjs/types/icon.d.ts +34 -0
  225. package/lib/cjs/types/icon.js +6 -0
  226. package/lib/cjs/types/index.d.ts +7 -0
  227. package/lib/cjs/types/index.js +86 -0
  228. package/lib/cjs/types/loader.d.ts +14 -0
  229. package/lib/cjs/types/loader.js +6 -0
  230. package/lib/cjs/types/mdx.d.js +1 -0
  231. package/lib/cjs/types/popoverContainer.d.ts +23 -0
  232. package/lib/cjs/types/popoverContainer.js +6 -0
  233. package/lib/cjs/types/shared/dom.d.ts +9 -0
  234. package/lib/cjs/types/shared/dom.js +6 -0
  235. package/lib/cjs/types/shared/index.d.ts +3 -0
  236. package/lib/cjs/types/shared/index.js +42 -0
  237. package/lib/cjs/types/shared/style.d.ts +11 -0
  238. package/lib/cjs/types/shared/style.js +6 -0
  239. package/lib/cjs/types/shared/test.d.ts +3 -0
  240. package/lib/cjs/types/shared/test.js +6 -0
  241. package/lib/cjs/types/shared/utils.d.ts +1 -0
  242. package/lib/cjs/types/shared/utils.js +6 -0
  243. package/lib/cjs/types/tableCell.d.ts +5 -0
  244. package/lib/cjs/types/tableCell.js +6 -0
  245. package/lib/cjs/types/text.d.ts +3 -0
  246. package/lib/cjs/types/text.js +6 -0
  247. package/lib/cjs/utils/designUtils/figmaLinks.js +2 -1
  248. package/lib/cjs/utils/devUtils/constants/variants.js +1 -2
  249. package/lib/cjs/utils/testUtils/testAxe.js +2 -2
  250. package/lib/cjs/utils/testUtils/testWrapper.js +2 -0
  251. package/lib/components/AccordionGridGroup/AccordionGridGroup.mdx +40 -0
  252. package/lib/components/AccordionGridGroup/AccordionGridGroup.test.js +2 -2
  253. package/lib/components/AccordionGroup/Accordion.styles.js +1 -2
  254. package/lib/components/AccordionGroup/AccordionGroup.mdx +41 -0
  255. package/lib/components/ArrayField/ArrayField.mdx +34 -0
  256. package/lib/components/AstroWrapper/AstroWrapper.mdx +16 -0
  257. package/lib/components/Avatar/Avatar.mdx +14 -0
  258. package/lib/components/Badge/Badge.mdx +24 -0
  259. package/lib/components/Box/Box.js +4 -19
  260. package/lib/components/Box/Box.mdx +23 -0
  261. package/lib/components/Box/Box.test.js +2 -6
  262. package/lib/components/Bracket/Bracket.mdx +17 -0
  263. package/lib/components/Breadcrumbs/Breadcrumbs.mdx +40 -0
  264. package/lib/components/Button/Button.mdx +40 -0
  265. package/lib/components/Button/Button.stories.js +30 -5
  266. package/lib/components/Button/Buttons.styles.js +25 -7
  267. package/lib/components/Calendar/Calendar.mdx +39 -0
  268. package/lib/components/Calendar/Calendar.test.js +2 -2
  269. package/lib/components/Callout/Callout.mdx +28 -0
  270. package/lib/components/Card/Card.mdx +32 -0
  271. package/lib/components/CheckboxField/CheckboxField.mdx +42 -0
  272. package/lib/components/CodeView/CodeView.mdx +23 -0
  273. package/lib/components/CodeView/CodeView.test.js +1 -1
  274. package/lib/components/CollapsiblePanel/CollapsiblePanel.mdx +29 -0
  275. package/lib/components/ColorField/ColorField.mdx +38 -0
  276. package/lib/components/ComboBoxField/ComboBoxField.mdx +66 -0
  277. package/lib/components/ComboBoxField/ComboBoxField.stories.js +1 -1
  278. package/lib/components/ComboBoxField/ComboBoxField.test.js +2 -2
  279. package/lib/components/CopyText/CopyText.mdx +23 -0
  280. package/lib/components/CopyText/CopyText.test.js +1 -1
  281. package/lib/components/DataTable/DataTable.mdx +54 -0
  282. package/lib/components/DataTable/DataTable.stories.js +1 -1
  283. package/lib/components/DataTable/DataTable.test.js +1 -1
  284. package/lib/components/DatePicker/DatePicker.mdx +49 -0
  285. package/lib/components/DatePicker/DatePicker.test.js +2 -2
  286. package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +3 -3
  287. package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.mdx +36 -0
  288. package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.stories.js +29 -45
  289. package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +1 -1
  290. package/lib/components/FileInputField/FileInputField.mdx +33 -0
  291. package/lib/components/HelpHint/HelpHint.js +148 -30
  292. package/lib/components/HelpHint/HelpHint.mdx +32 -0
  293. package/lib/components/HelpHint/HelpHint.stories.js +37 -6
  294. package/lib/components/HelpHint/HelpHint.styles.js +9 -1
  295. package/lib/components/HelpHint/HelpHint.test.js +213 -30
  296. package/lib/components/Icon/Icon.js +2 -25
  297. package/lib/components/Icon/Icon.mdx +49 -0
  298. package/lib/components/IconBadge/IconBadge.mdx +14 -0
  299. package/lib/components/IconButton/IconButton.mdx +33 -0
  300. package/lib/components/IconButtonToggle/IconButtonToggle.mdx +31 -0
  301. package/lib/components/Image/Image.mdx +28 -0
  302. package/lib/components/ImageUploadField/ImageUploadField.mdx +38 -0
  303. package/lib/components/ImageUploadField/ImageUploadField.stories.js +1 -1
  304. package/lib/components/ImageUploadField/ImageUploadField.test.js +2 -2
  305. package/lib/components/Link/Link.mdx +27 -0
  306. package/lib/components/Link/Link.styles.js +10 -0
  307. package/lib/components/LinkSelectField/LinkSelectField.mdx +47 -0
  308. package/lib/components/LinkSelectField/LinkSelectField.stories.js +1 -1
  309. package/lib/components/LinkSelectField/LinkSelectField.test.js +2 -2
  310. package/lib/components/ListBox/ListBox.test.js +2 -2
  311. package/lib/components/ListItem/ListItem.mdx +21 -0
  312. package/lib/components/ListView/ListView.mdx +44 -0
  313. package/lib/components/ListView/ListView.stories.js +96 -50
  314. package/lib/components/ListView/ListView.test.js +2 -2
  315. package/lib/components/Loader/Loader.js +0 -14
  316. package/lib/components/Loader/Loader.mdx +29 -0
  317. package/lib/components/Menu/Menu.mdx +43 -0
  318. package/lib/components/Messages/Messages.mdx +35 -0
  319. package/lib/components/Modal/Modal.mdx +59 -0
  320. package/lib/components/MultivaluesField/MultivaluesField.js +43 -9
  321. package/lib/components/MultivaluesField/MultivaluesField.mdx +44 -0
  322. package/lib/components/MultivaluesField/MultivaluesField.test.js +3 -3
  323. package/lib/components/NavBar/NavBar.mdx +42 -0
  324. package/lib/components/NumberField/NumberField.mdx +39 -0
  325. package/lib/components/OverlayPanel/OverlayPanel.mdx +39 -0
  326. package/lib/components/PasswordField/PasswordField.mdx +33 -0
  327. package/lib/components/PasswordField/PasswordField.test.js +2 -2
  328. package/lib/components/PopoverContainer/PopoverContainer.js +7 -38
  329. package/lib/components/PopoverMenu/PopoverMenu.mdx +53 -0
  330. package/lib/components/RadioGroupField/RadioGroupField.mdx +41 -0
  331. package/lib/components/RadioGroupField/RadioGroupField.test.js +2 -2
  332. package/lib/components/RequirementsList/RequirementsList.mdx +17 -0
  333. package/lib/components/RockerButtonGroup/RockerButtonGroup.mdx +36 -0
  334. package/lib/components/ScrollBox/ScrollBox.mdx +17 -0
  335. package/lib/components/SearchField/SearchField.mdx +33 -0
  336. package/lib/components/SelectField/SelectField.mdx +46 -0
  337. package/lib/components/SelectField/SelectField.stories.js +1 -1
  338. package/lib/components/SelectFieldBase/SelectFieldBase.test.js +2 -2
  339. package/lib/components/Separator/Separator.mdx +19 -0
  340. package/lib/components/Stepper/Stepper.mdx +41 -0
  341. package/lib/components/Stepper/Stepper.test.js +2 -2
  342. package/lib/components/SwitchField/SwitchField.mdx +36 -0
  343. package/lib/components/Table/Table.mdx +30 -0
  344. package/lib/components/TableCell/TableCell.js +0 -5
  345. package/lib/components/Tabs/Tabs.mdx +40 -0
  346. package/lib/components/Tabs/Tabs.test.js +2 -2
  347. package/lib/components/Text/Text.js +3 -7
  348. package/lib/components/Text/Text.mdx +13 -0
  349. package/lib/components/TextAreaField/TextAreaField.mdx +34 -0
  350. package/lib/components/TextField/TextField.js +1 -1
  351. package/lib/components/TextField/TextField.mdx +34 -0
  352. package/lib/components/TimeZonePicker/TimeZonePicker.mdx +18 -0
  353. package/lib/components/TooltipTrigger/Tooltip.styles.js +1 -1
  354. package/lib/components/TooltipTrigger/TooltipTrigger.js +2 -0
  355. package/lib/components/TooltipTrigger/TooltipTrigger.mdx +23 -0
  356. package/lib/components/TooltipTrigger/TooltipTrigger.test.js +48 -2
  357. package/lib/docs/Props.stories.mdx +35 -0
  358. package/lib/docs/Welcome.stories.mdx +149 -0
  359. package/lib/docs/hooks/useDebounce.stories.mdx +59 -0
  360. package/lib/docs/hooks/useModalState.stories.mdx +83 -0
  361. package/lib/docs/hooks/useOverlayPanelState.stories.mdx +84 -0
  362. package/lib/docs/theme/AstroNanoTheme.stories.mdx +174 -0
  363. package/lib/docs/theme/AstroTheme.stories.mdx +20 -0
  364. package/lib/docs/theme/CustomThemes.stories.mdx +70 -0
  365. package/lib/docs/theme/StylingGuideline.stories.mdx +116 -0
  366. package/lib/docs/utils/messagesReducer.stories.mdx +64 -0
  367. package/lib/experimental/EditButton/EditButton.js +50 -0
  368. package/lib/experimental/EditButton/EditButton.mdx +9 -0
  369. package/lib/experimental/EditButton/EditButton.stories.js +75 -0
  370. package/lib/experimental/EditButton/EditButton.test.js +68 -0
  371. package/lib/experimental/EditButton/index.js +1 -0
  372. package/lib/experimental/ListView/ListView.mdx +47 -0
  373. package/lib/experimental/ListView/ListView.stories.js +729 -0
  374. package/lib/experimental/ListViewItem/ListViewItem.js +24 -6
  375. package/lib/experimental/ListViewItem/ListViewItem.mdx +36 -0
  376. package/lib/experimental/ListViewItem/ListViewItem.stories.js +28 -5
  377. package/lib/experimental/ListViewItem/ListViewItem.test.js +45 -1
  378. package/lib/experimental/ListViewItem/controls/ListViewItemEditButton.js +1 -4
  379. package/lib/experimental/ListViewItem/controls/ListViewItemEditButton.stories.js +4 -1
  380. package/lib/experimental/ListViewItem/controls/ListViewItemMenu.test.js +2 -2
  381. package/lib/experimental/ListViewItem/controls/ListViewItemSwitchField.js +1 -0
  382. package/lib/experimental/ListViewItem/listViewItemAttributes.js +25 -12
  383. package/lib/experimental/PanelHeader/PanelHeader.js +75 -0
  384. package/lib/experimental/PanelHeader/PanelHeader.mdx +19 -0
  385. package/lib/experimental/PanelHeader/PanelHeader.stories.js +59 -0
  386. package/lib/experimental/PanelHeader/PanelHeader.styles.js +30 -0
  387. package/lib/experimental/PanelHeader/PanelHeader.test.js +43 -0
  388. package/lib/experimental/PanelHeader/controls/PanelHeaderCloseButton.js +25 -0
  389. package/lib/experimental/PanelHeader/controls/PanelHeaderCloseButton.stories.js +21 -0
  390. package/lib/experimental/PanelHeader/controls/PanelHeaderCloseButton.test.js +22 -0
  391. package/lib/experimental/PanelHeader/controls/PanelHeaderMenu.js +18 -0
  392. package/lib/experimental/PanelHeader/controls/PanelHeaderMenu.stories.js +26 -0
  393. package/lib/experimental/PanelHeader/controls/PanelHeaderMenu.test.js +55 -0
  394. package/lib/experimental/PanelHeader/controls/PanelHeaderSwitchField.js +18 -0
  395. package/lib/experimental/PanelHeader/controls/PanelHeaderSwitchField.stories.js +32 -0
  396. package/lib/experimental/PanelHeader/controls/PanelHeaderSwitchField.test.js +22 -0
  397. package/lib/experimental/PanelHeader/index.js +1 -0
  398. package/lib/experimental/README.stories.mdx +7 -0
  399. package/lib/experimental/SaveBar/SaveBar.mdx +13 -0
  400. package/lib/experimental/recipes/ListAndPanel.stories.js +1 -1
  401. package/lib/hooks/useComponentToggle/useComponentToggle.test.js +2 -2
  402. package/lib/hooks/useCopyToClipboard/useCopyToClipboard.js +2 -2
  403. package/lib/hooks/useCopyToClipboard/useCopyToClipboard.test.js +1 -1
  404. package/lib/hooks/useOverlappingMenuHoverState/useOverlappingMenuHoverState.test.js +2 -2
  405. package/lib/hooks/usePropWarning/usePropWarning.js +1 -1
  406. package/lib/hooks/useStatusClasses/useStatusClasses.js +2 -2
  407. package/lib/hooks/useTShirtSize/useTShirtSize.js +1 -1
  408. package/lib/index.js +6 -0
  409. package/lib/recipes/AttributeMapping.stories.js +540 -0
  410. package/lib/styles/colors.js +1 -1
  411. package/lib/styles/variants/README.md +98 -0
  412. package/lib/styles/variants/variants.js +2 -0
  413. package/lib/types/box.js +1 -0
  414. package/lib/types/icon.js +1 -0
  415. package/lib/types/index.js +7 -0
  416. package/lib/types/loader.js +1 -0
  417. package/lib/types/mdx.d.js +0 -0
  418. package/lib/types/popoverContainer.js +1 -0
  419. package/lib/types/shared/dom.js +1 -0
  420. package/lib/types/shared/index.js +3 -0
  421. package/lib/types/shared/style.js +1 -0
  422. package/lib/types/shared/test.js +1 -0
  423. package/lib/types/shared/utils.js +1 -0
  424. package/lib/types/tableCell.js +1 -0
  425. package/lib/types/text.js +1 -0
  426. package/lib/utils/designUtils/figmaLinks.js +2 -1
  427. package/lib/utils/testUtils/testAxe.js +2 -2
  428. package/package.json +24 -10
  429. package/CHANGELOG.md +0 -2554
  430. package/NOTICE +0 -2481
  431. package/NOTICE.html +0 -9174
  432. package/lib/cjs/recipes/AttributeMappingReadOnlyField.stories.js +0 -254
  433. package/lib/recipes/AttributeMappingReadOnlyField.stories.js +0 -243
  434. package/lib/recipes/AttributesAndPingOneMapping.stories.js +0 -282
package/CHANGELOG.md DELETED
@@ -1,2554 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [2.9.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.9.0...@pingux/astro@2.9.1) (2023-08-03)
7
-
8
-
9
- ### Bug Fixes
10
-
11
- * Add dangle comma for lint rule ([4733d5e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4733d5e96041d3ee6cc19156a0075aa4c026bba7))
12
- * Add default title arg for PageHeader according to Storybook 7 deprecation ([eca2cfa](https://gitlab.corp.pingidentity.com/ux/pingux/commit/eca2cfac2388767768cc635ba7b2de5e9aa980df))
13
- * Add imports for Meta component to DatePicker and Calendar mdx files ([97c904e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/97c904e09a4655a0e57b1627ea0c83750605486a))
14
-
15
-
16
-
17
-
18
-
19
- # [2.9.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.8.4...@pingux/astro@2.9.0) (2023-08-02)
20
-
21
-
22
- ### Bug Fixes
23
-
24
- * [UIP-6364] Loader: update the color from neutral.60 to neutral.50 ([97a5c8b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/97a5c8b73cb1c8c8977032b85903ce0d9c13c2cc))
25
-
26
-
27
- ### Features
28
-
29
- * [UIP-6352] Add PageHeader component in Astro ([e0b685b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e0b685b9a7faf17d6e2c944a5d69de0d62c10528))
30
-
31
-
32
-
33
-
34
-
35
- ## [2.8.4](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.8.3...@pingux/astro@2.8.4) (2023-07-27)
36
-
37
-
38
- ### Bug Fixes
39
-
40
- * [UIP-6395] Add rule for react object props ([0cdec70](https://gitlab.corp.pingidentity.com/ux/pingux/commit/0cdec700074da7de4125c0beee35bb899f7166ff))
41
-
42
-
43
-
44
-
45
-
46
- ## [2.8.3](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.8.2...@pingux/astro@2.8.3) (2023-07-25)
47
-
48
-
49
- ### Bug Fixes
50
-
51
- * [UIP-6357] update supported languages link ([440b80c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/440b80cdb136a77f78108907095c72faeb587bfb))
52
-
53
-
54
-
55
-
56
-
57
- ## [2.8.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.8.1...@pingux/astro@2.8.2) (2023-07-20)
58
-
59
-
60
- ### Bug Fixes
61
-
62
- * [UIP-6324] EnvironmentBreadcrumb screenreader announce available options number ([2f66176](https://gitlab.corp.pingidentity.com/ux/pingux/commit/2f66176b7db8c837c0786a986b9e8d33aed909ac))
63
- * [UIP-6410]: export SaveBar from index ([49561ad](https://gitlab.corp.pingidentity.com/ux/pingux/commit/49561ad23fedffa51f534c0e175947fa6e51dd89))
64
-
65
-
66
-
67
-
68
-
69
- ## [2.8.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.8.0...@pingux/astro@2.8.1) (2023-07-18)
70
-
71
-
72
- ### Bug Fixes
73
-
74
- * [UIP-5753] Removing visual issues from Calendar ([f5a5190](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f5a5190dd2f1b889de61c904d85cdc2a115562ab))
75
- * [UIP-6173] Add correct aria-labels on monthly navigation buttons for Calendar ([b533926](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b5339260b5392f7dcc6ce1cc2f6386c76315f0fd))
76
- * [UIP-6216] NumberField screen reader issues ([821235c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/821235c8301c51fe67251ad59804e68b361f5e79))
77
-
78
-
79
-
80
-
81
-
82
- # [2.8.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.7.1...@pingux/astro@2.8.0) (2023-07-13)
83
-
84
-
85
- ### Bug Fixes
86
-
87
- * [UIP-6351] DatePicker calendar close issue ([a096be2](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a096be28cab5eca1fcb848797511bc7390e43d11)), closes [40react-stately/calendar/src/useCalendarState.ts#L138](https://gitlab.corp.pingidentity.com/40react-stately/calendar/src/useCalendarState.ts/issues/L138)
88
-
89
-
90
- ### Features
91
-
92
- * [UIP-6353]: Add ListViewItem ([02145b4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/02145b4075185aeae9de11c4e2af20f3a237309e)), closes [674653#163ab50ccc8fa60d6af637316db29b5db6a435a1](https://gitlab.corp.pingidentity.com/674653/issues/163ab50ccc8fa60d6af637316db29b5db6a435a1)
93
- * [UIP-6359] Astro SaveBar Component ([9fd9f4f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/9fd9f4f932ffa1263321a60a13f21f99a4aa83ad))
94
-
95
-
96
-
97
-
98
-
99
- ## [2.7.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.7.0...@pingux/astro@2.7.1) (2023-07-11)
100
-
101
-
102
- ### Bug Fixes
103
-
104
- * [UIP-6391] check for navigator before accessing it ([a64af4a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a64af4a57396a025f684adf9c69b5bd7f6930290))
105
-
106
-
107
-
108
-
109
-
110
- # [2.7.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.6.0...@pingux/astro@2.7.0) (2023-07-06)
111
-
112
-
113
- ### Bug Fixes
114
-
115
- * [UIP-6296] Astro ImageUpload ScreenReader ([1005ec1](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1005ec16d14181cabb760e558a1a249706633339))
116
-
117
-
118
- ### Features
119
-
120
- * [UIP-6353]: Add StyledListItem ([46d55db](https://gitlab.corp.pingidentity.com/ux/pingux/commit/46d55db27d5129ca63cd412d46a147d74f754ced))
121
-
122
-
123
-
124
-
125
-
126
- # [2.6.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.5.7...@pingux/astro@2.6.0) (2023-07-04)
127
-
128
-
129
- ### Bug Fixes
130
-
131
- * [UIP-6188] Icon: add title prop to all icons and import them from @pingux/mdi-react package ([c66232c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c66232cc069da1e2e5ea5ed87db041a3a90faf41))
132
- * [UIP-6212] MultivaluesField black rectangle ([fe9fc1d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/fe9fc1df7b411f05c559dd88e31d5edb01d06631))
133
- * [UIP-6317] CollapsiblePanel: add aria-expanded ([e5b0fe7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e5b0fe7cc17074d1769034d321d2e6945b3b305f))
134
- * [UIP-6325] Remove zero in DatePickerField when localized ([bd43f5a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/bd43f5a57d06394bb09df497a2c424c4739a3d77))
135
-
136
-
137
- ### Features
138
-
139
- * [UIP-6327] default figma URLs for astro stories ([da65675](https://gitlab.corp.pingidentity.com/ux/pingux/commit/da656753ed7ff6750a46a03684a6f0a33c16758c))
140
- * UIP-6354 removing deprecated recipes ([6a0b955](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6a0b9553e754bfdf25a73b7e82918f64011ce0b7))
141
-
142
-
143
-
144
-
145
-
146
- ## [2.5.7](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.5.6...@pingux/astro@2.5.7) (2023-06-27)
147
-
148
- **Note:** Version bump only for package @pingux/astro
149
-
150
-
151
-
152
-
153
-
154
- ## [2.5.6](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.5.5...@pingux/astro@2.5.6) (2023-06-22)
155
-
156
- **Note:** Version bump only for package @pingux/astro
157
-
158
-
159
-
160
-
161
-
162
- ## [2.5.5](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.5.4...@pingux/astro@2.5.5) (2023-06-20)
163
-
164
-
165
- ### Bug Fixes
166
-
167
- * [UIP-6318] add aria-hidden when Modal is open ([d2bf1ac](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d2bf1aca90574c0e53b4fb5f9dad68a0eca9e101))
168
-
169
-
170
-
171
-
172
-
173
- ## [2.5.4](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.5.3...@pingux/astro@2.5.4) (2023-06-15)
174
-
175
-
176
- ### Bug Fixes
177
-
178
- * [6099] Astro LinkedListView fix story name ([e1e5ce5](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e1e5ce580b2b2256d7f96c14ab45ff9f75eebe59))
179
- * [UIP-6322] Nav items and buttons right-padding 15px (md) ([6c9a4cd](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6c9a4cdc60d9c0289984a7c219c7f979c5b6530f))
180
-
181
-
182
-
183
-
184
-
185
- ## [2.5.3](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.5.2...@pingux/astro@2.5.3) (2023-06-06)
186
-
187
-
188
- ### Bug Fixes
189
-
190
- * [UIP-6292] Image: update ping logo img ([f787c49](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f787c4967ed6e50cabe49b26bd2f585cac2b3996))
191
- * [UIP-6307] Multivalues Screenreader Issue ([011ef53](https://gitlab.corp.pingidentity.com/ux/pingux/commit/011ef530a4d48a0fadc1973f76f7f05efe379570))
192
-
193
-
194
-
195
-
196
-
197
- ## [2.5.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.5.1...@pingux/astro@2.5.2) (2023-06-01)
198
-
199
-
200
- ### Bug Fixes
201
-
202
- * [UIP-6171] Remove date from DateField using delete key ([5fdc2df](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5fdc2dfd732f6522063b61820028c3043870007f))
203
- * [UIP-6297] Image: add alt to ComponentAsDefaultImage story ([3db0ead](https://gitlab.corp.pingidentity.com/ux/pingux/commit/3db0ead1f532346de6e5e997945b116331cde9d4))
204
- * [UIP-6310] Astro Date Picker Fix Focus Style ([5b78e96](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5b78e9691d21e7c42e385b487e4e1c0501fc976a))
205
- * [UIP-6319] TooltipTriggert: add isNonModal prop ([a9b0a07](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a9b0a074134d9992683ccbe0ef0efb5d5ca08d30))
206
-
207
-
208
-
209
-
210
-
211
- ## [2.5.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.5.0...@pingux/astro@2.5.1) (2023-05-30)
212
-
213
-
214
- ### Bug Fixes
215
-
216
- * [UIP-5768] Last selected calendar remains highlighted in external app ([b5a6954](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b5a6954ce37bf8bb020d0bd8404219645ba69132))
217
- * [UIP-6039] PasswordField: make the screen reader read the requirements list ([b8ec48e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b8ec48ed4f4e2d15506bf53ea4f08b3a2d715a2d))
218
- * [UIP-6314] Page Header: make title an h1 ([8e3ba4d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8e3ba4dda4b17a0bbddf4b6709918bfa718227ae))
219
-
220
-
221
-
222
-
223
-
224
- # [2.5.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.4.1...@pingux/astro@2.5.0) (2023-05-25)
225
-
226
-
227
- ### Bug Fixes
228
-
229
- * [UIP-6242] error styles of MultivaluesField ([b035c77](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b035c7727b722bd50bf09e2493fd6cb7490012f7))
230
- * [UIP-6270] remove defs tag from BottomBracket ([fa14b15](https://gitlab.corp.pingidentity.com/ux/pingux/commit/fa14b150ac303852b32d44cbdd9d069156e1b4e5))
231
- * [UIP-6306] Replace broken links on AccordionGroup components ([c0c1ff7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c0c1ff72518b66b929a35c094aaa54bd3501b7d8))
232
-
233
-
234
- ### Features
235
-
236
- * [UIP-6264] Astro Nav Popup Variant ([84a6c2b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/84a6c2bc7e57eed350e97e45716db5706b4b138c))
237
-
238
-
239
-
240
-
241
-
242
- ## [2.4.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.4.0...@pingux/astro@2.4.1) (2023-05-23)
243
-
244
-
245
- ### Bug Fixes
246
-
247
- * [UIP-5890] DatePicker story fixes ([532cf8c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/532cf8c12ebad54a9d2a83b1529ca227c6483823))
248
- * [UIP-6291] DateField format fix for 2 digit month and day ([43a9e6e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/43a9e6ef10c9d4022f5c478e39d181ac6594a815))
249
-
250
-
251
-
252
-
253
-
254
- # [2.4.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.3.0...@pingux/astro@2.4.0) (2023-05-18)
255
-
256
-
257
- ### Features
258
-
259
- * [UIP-6266] Environment breadcrumb screenreader sections ([aff5aad](https://gitlab.corp.pingidentity.com/ux/pingux/commit/aff5aad8549406e4e2702d67af2fed0a70a3f795))
260
-
261
-
262
-
263
-
264
-
265
- # [2.3.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.2.0...@pingux/astro@2.3.0) (2023-05-17)
266
-
267
-
268
- ### Bug Fixes
269
-
270
- * [UIP-6113] EnvironmentBreadcrumb: remove 'outline: none' ([93f2d79](https://gitlab.corp.pingidentity.com/ux/pingux/commit/93f2d79056486c2213b875877265bbfd508ab07d))
271
- * [UIP-6120] Tab content slot chip update ([6e9e630](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6e9e63074393add5c3e586afe26b81923eb17922))
272
- * [UIP-6272] Disable focus for non interactive list elements ([c764f65](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c764f651b34288275adf9c5f406641873f21f48b))
273
-
274
-
275
- ### Features
276
-
277
- * [UIP-5588] Add DatePicker component ([f213eab](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f213eab274c331515e5c681f055d8ce723954844))
278
- * [UIP-6262] TextField Custom Tooltip Width ([466dd8c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/466dd8c8b8d791f522e499a722a864cd641c7079))
279
-
280
-
281
-
282
-
283
-
284
- # [2.2.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.1.3...@pingux/astro@2.2.0) (2023-05-11)
285
-
286
-
287
- ### Bug Fixes
288
-
289
- * [UIP-6198] ImageUploadField Screen Reader Hidden Content ([c066516](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c066516ec7aa5c23f620c9cc825a2e39988cb857))
290
- * [UIP-6267] Image: add aria-live attribute ([903e3f3](https://gitlab.corp.pingidentity.com/ux/pingux/commit/903e3f33a0da6380b3658e2f40894c17af9d2cea))
291
-
292
-
293
- ### Features
294
-
295
- * [UIP-6243] Icon - Add Associated Title ([0a9dae2](https://gitlab.corp.pingidentity.com/ux/pingux/commit/0a9dae2626537b83809e322f66795a9c121a2faa))
296
-
297
-
298
-
299
-
300
-
301
- ## [2.1.3](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.1.2...@pingux/astro@2.1.3) (2023-05-04)
302
-
303
-
304
- ### Bug Fixes
305
-
306
- * [UIP-6260] button dotted outline in Firefox ([1c95282](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1c952823171225f4c9d826de4e83443cd8ad78bd))
307
- * [UIP-6263] HelpHint: add aria-describedby once the trigger button is focused or hovered ([a731de9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a731de97679fb32a25676a9e37ea437804f04a3f))
308
-
309
-
310
-
311
-
312
-
313
- ## [2.1.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.1.1...@pingux/astro@2.1.2) (2023-05-02)
314
-
315
-
316
- ### Bug Fixes
317
-
318
- * UIP-6214 RadioGroupField Safari Focus Outline Improvement ([58ea0d6](https://gitlab.corp.pingidentity.com/ux/pingux/commit/58ea0d62317cd297884a18baa63b735692c1ec1b))
319
-
320
-
321
-
322
-
323
-
324
- ## [2.1.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.1.0...@pingux/astro@2.1.1) (2023-04-28)
325
-
326
-
327
- ### Bug Fixes
328
-
329
- * [UIP-5286] TextAreaField resizing in Safari ([cd24529](https://gitlab.corp.pingidentity.com/ux/pingux/commit/cd24529fbb177b2e583d9d3dfc70ea55d4b765c2))
330
-
331
-
332
-
333
-
334
-
335
- # [2.1.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.0.5...@pingux/astro@2.1.0) (2023-04-25)
336
-
337
-
338
- ### Bug Fixes
339
-
340
- * [UIP-5979] Conditional Filter Story Updates ([8e55ca9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8e55ca9367d2cd0df7968a2a7727daabc5b64501))
341
- * [UIP-6224] Astro OverlayPanel fix transition css ([51de926](https://gitlab.corp.pingidentity.com/ux/pingux/commit/51de926d59a92b9656e0e19725957ab5d007252f))
342
- * [UIP-6238] link to example for useModalState hook ([dd1e57c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/dd1e57c096f864d39497ac9dc606fdb6f2473956))
343
- * [UIP-6240] HelpHint: fix pressed style ([ee67a2c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ee67a2c31f76512ec46a0b8344c1c37db38bcbca))
344
- * [UIP-6246] Astro Combobox Blur Fixes ([99972bc](https://gitlab.corp.pingidentity.com/ux/pingux/commit/99972bc79b2598539fc11e7d246d3ad28577b658))
345
- * [UIP-6259] ListViewItem: use linkedViewContainer variant ([5a177a8](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5a177a86c4d4893006dab798c8c8a4fb97b93464))
346
-
347
-
348
- ### Features
349
-
350
- * [UIP-5986] change focus indicator for inputs ([5bf69e2](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5bf69e2aa0477fe09ccd42437a2e5022ffc2c923))
351
-
352
-
353
-
354
-
355
-
356
- ## [2.0.5](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.0.4...@pingux/astro@2.0.5) (2023-04-18)
357
-
358
- **Note:** Version bump only for package @pingux/astro
359
-
360
-
361
-
362
-
363
-
364
- ## [2.0.4](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.0.3...@pingux/astro@2.0.4) (2023-04-13)
365
-
366
-
367
- ### Bug Fixes
368
-
369
- * [UIP-6041]: LinkedListView: incorrect hover state ([72c2ff5](https://gitlab.corp.pingidentity.com/ux/pingux/commit/72c2ff553040d26e2d781622a5d063f371318482))
370
- * [UIP-6177] hovering over when scrolling in Listview for Firefox ([a9e3bbb](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a9e3bbb01b091a253921c164a5eac953bf249dc0))
371
- * [UIP-6185] Add aria label to MultiValuesField list options and TooltipTrigger ([ad15d45](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ad15d45820734c178b3de8f3962310fc714361e2))
372
- * [UIP-6230] TrialExperienceNav: vertical line overlap ([eede2a7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/eede2a79abdef3a5491781d55533fa6674d43045))
373
- * [UIP-6231] Environment Breadcrumbs selection issues ([ae939f9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ae939f96624cd8e8757700c465a9b071e80cd425))
374
-
375
-
376
-
377
-
378
-
379
- ## [2.0.3](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.0.2...@pingux/astro@2.0.3) (2023-04-11)
380
-
381
-
382
- ### Bug Fixes
383
-
384
- * [UIP-6226] EnvironmentBreadcrumb: fix search field outline ([bbc3f1f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/bbc3f1f1fe7901c7028eb1dfd4c562227707d998))
385
- * [UIP-6228] Remove href from last item in BreadCrumb story ([738f1b1](https://gitlab.corp.pingidentity.com/ux/pingux/commit/738f1b16288dba5fe28a870f168c81081004a613))
386
-
387
-
388
-
389
-
390
-
391
- ## [2.0.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.0.1...@pingux/astro@2.0.2) (2023-04-06)
392
-
393
-
394
- ### Bug Fixes
395
-
396
- * [UIP-6211] fix dropdown overlaps text field by 1px ([1ec1c53](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1ec1c53295b3719a0e548ee5aa5a81014fe78b7c))
397
- * [UIP-6234] CollapsiblePanelBadge: fix variant ([a490bda](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a490bda0dc17d6d7879c71af9849030425cdb3a7))
398
- * [UIP-6236] RadioField: fix opacity ([4447ab4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4447ab4f9fa75d1bb20468ab54ddbaaa49473f60)), closes [#6236](https://gitlab.corp.pingidentity.com/ux/pingux/issues/6236)
399
-
400
-
401
-
402
-
403
-
404
- ## [2.0.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.0.0...@pingux/astro@2.0.1) (2023-03-30)
405
-
406
-
407
- ### Bug Fixes
408
-
409
- * [UIP-6201] FilterButton: add ui library styles override ([1b70a4b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1b70a4bab264d93585daf9a19c6b141209b1c911))
410
- * [UIP-6215] Update disclaimer note for basic input ([cfb70b2](https://gitlab.corp.pingidentity.com/ux/pingux/commit/cfb70b200a5a9a751d85fc4031d32f0664456e70))
411
-
412
-
413
-
414
-
415
-
416
- # [2.0.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.44.1...@pingux/astro@2.0.0) (2023-03-28)
417
-
418
-
419
- ### Bug Fixes
420
-
421
- * [UIP-5746] "Update enduser theme in astro for v2 changes" ([e4e71f7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e4e71f742978d14f6a16ef00bedfc847e18a234c))
422
- * [UIP-5748] Update theme overrides for v2 theme changes ([f734f35](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f734f35a0ec99a0ae67c9447c7f032bfbdb77311))
423
- * [UIP-5781] Styling regression fix ([1475102](https://gitlab.corp.pingidentity.com/ux/pingux/commit/14751028b397880893b428eda0016d9b128407db))
424
- * [UIP-5827] Input components refactor prop spreading ([b667ca1](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b667ca13176dba506056fbd12254ac1797f1b0fc))
425
- * [UIP-5997 Astro Modal Fix IconButton Focus Styling ([2af0ebc](https://gitlab.corp.pingidentity.com/ux/pingux/commit/2af0ebc9276341fb3e8205dc39a449d8a74971ff))
426
- * [UIP-6015] Astro accordion recipe updates ([44d1133](https://gitlab.corp.pingidentity.com/ux/pingux/commit/44d11332237f55e42d5fef03a54b60a4318a5df1))
427
- * [UIP-6016] Astro badge story updates ([2b68dbc](https://gitlab.corp.pingidentity.com/ux/pingux/commit/2b68dbcca5a7e3707087f17f65ace8b2e5829452))
428
- * [UIP-6029] Update OverlayPanel to ListView ([209bdcd](https://gitlab.corp.pingidentity.com/ux/pingux/commit/209bdcdc2b04361e76a6f96386518a159ee367bf))
429
- * [UIP-6097] Missing Focus Indicators: HelpHint/CollapsiblePanel/CopyText ([05b724a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/05b724aa5e2eed543b10a6f5397c3770277792fb))
430
- * [UIP-6102] Badge story: fix IconButton variant ([de15e14](https://gitlab.corp.pingidentity.com/ux/pingux/commit/de15e146969c1ba76261bc6c43571f068cde0384))
431
- * [UIP-6103] ListViewItem: fix border bottom color ([95ca43f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/95ca43f01580df8d8d3ecb6dbe583652c7380eb6)), closes [#e4e6e9](https://gitlab.corp.pingidentity.com/ux/pingux/issues/e4e6e9) [#caced3](https://gitlab.corp.pingidentity.com/ux/pingux/issues/caced3)
432
- * [UIP-6105] ScrollableListView: fix search field focus ([e89f8a7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e89f8a7cb304f1a834cc204ce712586b9777d5c5))
433
- * [UIP-6107] Combobox: fix width ([b9382ec](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b9382ec643048443efb8ccabefcd6f2020eca8af))
434
- * [UIP-6109] Extra spacing in bracket between content ([888085a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/888085a53fca7d224e69ec1ee4fd4efa1215060c))
435
- * [UIP-6112] Fix Card Styling ([4fe3c45](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4fe3c45e69048945323c226512c1efbe97eda1c1))
436
- * [UIP-6115] Multivalues Delete Focus Indicator ([c282968](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c282968e0c50f752439ece4f6d92e4815a8ab92b))
437
- * [UIP-6116] MultivaluesField close button for icon slots variant ([51fb36e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/51fb36ec6ddb7ffce77d5ee0e11ab25ff3637e58))
438
- * [UIP-6159] Button & IconButton: add usePress hook to handle context ([9b8f3d1](https://gitlab.corp.pingidentity.com/ux/pingux/commit/9b8f3d1926aee7719641d36712a3eabf21347758))
439
- * [UIP-6193] MultiValuesField: trim custom value ([7a9c159](https://gitlab.corp.pingidentity.com/ux/pingux/commit/7a9c159659a19fe2b5780cc800af52746551d4d5))
440
- * [UIP-6197] uiLibraryOverride fix ThemeProvider ([6d942db](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6d942dbd620da9a4c97d09c8dc099812085074f9))
441
- * [UIP-6199] TooltipTrigger incorrect placement with SwitchField ([5ce835b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5ce835bce13578467f8eedae6170c15f58f7a92e))
442
- * [UIP-6218] NavBar: fix primary items variants ([0e16f2e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/0e16f2e8e33acfedf51e35f15e7e5d1a7604377e))
443
- * [UIP-6220] Down grade @emotion/react and @emotion/styled to 11.1.1 ([508a398](https://gitlab.corp.pingidentity.com/ux/pingux/commit/508a398aca2b2ffcf4742f5086ea2ff293c5c485))
444
-
445
-
446
- * ci!: [UIP-6036]: publish astro alpha only ([84e2093](https://gitlab.corp.pingidentity.com/ux/pingux/commit/84e2093bf4c84c45127e5619d252db09142ed0ac))
447
-
448
-
449
- ### Features
450
-
451
- * [UIP-5938] Update astro nano theme to support v2 ([e317303](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e317303585ade483073f8ece9cff036f10dfa2f0))
452
- * [UIP-5983] setup chromatic only stories ([aed7966](https://gitlab.corp.pingidentity.com/ux/pingux/commit/aed79668ca9db752d648f19dd4787a12a9875746))
453
-
454
-
455
- ### BREAKING CHANGES
456
-
457
- * This change includes Astro v2 changes which will be documented in a migration guide coming soon.
458
-
459
- ## Describe your changes
460
- Use `npm publish` to publish only astro to Artifactory by adding the registry in `package.json`, as scene at the bottom of [this doc](https://docs.npmjs.com/cli/v8/using-npm/registry)
461
- ## Checklist before requesting a review
462
- - [:white_check_mark: ] I have performed a self-review of my code
463
- - [n/a] I have added tests for any new or fixed functionality to prevent regressions
464
- - [:white_check_mark: ] I have added clarifying code comments to blocks which other devs may have questions on
465
-
466
- Closes UIP-6036
467
-
468
-
469
-
470
-
471
-
472
- ## [1.44.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.44.0...@pingux/astro@1.44.1) (2023-03-22)
473
-
474
- **Note:** Version bump only for package @pingux/astro
475
-
476
-
477
-
478
-
479
-
480
- # [1.44.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.43.0...@pingux/astro@1.44.0) (2023-03-21)
481
-
482
-
483
- ### Bug Fixes
484
-
485
- * [UIP-6040] NumberField: fix increment and decrement buttons focus ([9147d19](https://gitlab.corp.pingidentity.com/ux/pingux/commit/9147d196d8e07b7040ae2c1e5d835c37ee24a7a3))
486
- * [UIP-6114] Overlay Panel Colorfield Doesnt Update ([f806c76](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f806c761101ccf8b28b7338cb95a66821295effd))
487
- * [UIP-6180] Update Close Button Aria Label ([f0489f8](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f0489f8a6249afecf468d7c9a6f7cb60ea95210b))
488
- * [UIP-6182] Add aria-labels to list-item buttons ([634a755](https://gitlab.corp.pingidentity.com/ux/pingux/commit/634a755a4e313eb38940c1bba6fd87ba202073f3))
489
- * [UIP-6184] OverlayPanel: add visibility css prop ([8b69e03](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8b69e030a933cf968336dbc73060fb1a72973b05))
490
- * [UIP-6194] Update PageHeader Recipe to match mock changes ([401f62f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/401f62fcc280a58c4bdbaf92221a5b79e10ea164))
491
- * [UIP-6200] CollapsiblePanel Breadcrumbs Accessibility ([e0b569c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e0b569cc9ccc7b4ac79dde7807a6c1ff22e1d1a8))
492
- * [UIP-6202] Multivalues Select Item Screen Reader ([26e7571](https://gitlab.corp.pingidentity.com/ux/pingux/commit/26e7571076e04083d45af742cf40f0f6cf589fe0))
493
-
494
-
495
- ### Features
496
-
497
- * [UIP-6206] Add requirementsListProps to PasswordField ([705f977](https://gitlab.corp.pingidentity.com/ux/pingux/commit/705f9777f0d8c5ce2841c1a649eb57d5e013ad0f))
498
-
499
-
500
-
501
-
502
-
503
- # [1.43.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.42.3...@pingux/astro@1.43.0) (2023-03-16)
504
-
505
-
506
- ### Bug Fixes
507
-
508
- * [UIP-6152] UI Library overrides doesn't override hover for some buttons ([ed8b4b6](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ed8b4b67661cf197c20eb1f2618942caabc18487))
509
- * [UIP-6183] Table Cell Support Ellipsis ([b564a3a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b564a3a85eebfff3c97fbce68b937226d0de2629))
510
- * [UIP-6203]: add useCopyToClipboard to list of hook exports ([66580ec](https://gitlab.corp.pingidentity.com/ux/pingux/commit/66580ec2322ae9ed3e5df6f6e23aa5cfb1b22c50))
511
-
512
-
513
- ### Features
514
-
515
- * [UIP-6092] NavBar: possibility to add external link as primary item ([a6d3208](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a6d320899b183b21f718122d86334595cbe46d1c))
516
-
517
-
518
-
519
-
520
-
521
- ## [1.42.3](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.42.2...@pingux/astro@1.42.3) (2023-03-07)
522
-
523
-
524
- ### Bug Fixes
525
-
526
- * [UIP-6181] DataTable error ([a99481e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a99481e31c31e74619cff883a7fde3c2da7a7ba5))
527
-
528
-
529
-
530
-
531
-
532
- ## [1.42.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.42.1...@pingux/astro@1.42.2) (2023-02-22)
533
-
534
-
535
- ### Bug Fixes
536
-
537
- * [UIP-5862]: ListView: incorrect hover state ([c8104a3](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c8104a34a3bdf4b8d4b92eaeb24af2876cd07d0a))
538
- * [UIP-6017] Astro CopyView, CopyText, and Icon design updates ([69fa4af](https://gitlab.corp.pingidentity.com/ux/pingux/commit/69fa4afd09029721548fbb6d58435df2678626af))
539
- * [UIP-6118] Astro ColorField fix closure ([d8864ed](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d8864ed90d0494ec0f98bec854ea3218bf71c0e1))
540
-
541
-
542
-
543
-
544
-
545
- ## [1.42.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.42.0...@pingux/astro@1.42.1) (2023-02-16)
546
-
547
-
548
- ### Bug Fixes
549
-
550
- * [UIP-6013] List and Panel Recipe Style Fixes ([c9d69b9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c9d69b9014889263e0ea16305128737ee59c9a1f))
551
-
552
-
553
-
554
-
555
-
556
- # [1.42.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.41.0...@pingux/astro@1.42.0) (2023-02-13)
557
-
558
-
559
- ### Features
560
-
561
- * [UIP-5969] Add component overview page Card-Icon ([45c0eae](https://gitlab.corp.pingidentity.com/ux/pingux/commit/45c0eae70f9baa67defa3c0d10d5f8e8198df9a7))
562
-
563
-
564
-
565
-
566
-
567
- # [1.41.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.40.1...@pingux/astro@1.41.0) (2023-02-10)
568
-
569
-
570
- ### Bug Fixes
571
-
572
- * [UIP-5927] Astro Add Separator to ListBoxSection ([f18c1d2](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f18c1d252744180f7875e95e360fe352ffef20b7))
573
- * [UIP-5978] Astro Backet Adjust Spacing ([4625efb](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4625efb982acf90ecabf0452d0809fb44c482875))
574
- * [UIP-5982] Card component updates ([34d9206](https://gitlab.corp.pingidentity.com/ux/pingux/commit/34d920646cb4261bc75dabbd2ad2d80ba9ee2bfa))
575
- * [UIP-5994] CheckboxField focuses on ListView item when click ([670e3aa](https://gitlab.corp.pingidentity.com/ux/pingux/commit/670e3aa79828e39d169fb12c682e62416dfca1ed))
576
- * [UIP-5999] Update skeleton load image src ([3a9fda7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/3a9fda795c1e39798692f33b682aa838dd8b5bb3))
577
- * [UIP-6001] Updated Message Toggle in Overlay Recipe ([add7ba7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/add7ba700731c22777c4bc25cd6086beeb481c8e))
578
-
579
-
580
- ### Features
581
-
582
- * [UIP-5968] Add component overview page AccordionGrid-button ([ddf0281](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ddf0281738dbfde8905f8684b35e2e2f96cc3771))
583
- * [UIP-5980] Breadcrumb story and component updates ([8b35776](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8b35776f9701b8a8f3425bdb6142afe7eef82cfb))
584
- * [UIP-6028] Adding Patterns to Storybook ([77457d7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/77457d71aff1cd8b6ad6699543ca0c7ff8cc458e))
585
- * [UIP-6030] Interactive Card ([9d41446](https://gitlab.corp.pingidentity.com/ux/pingux/commit/9d41446c5356866c05e9dd333c631937f8333de9))
586
-
587
-
588
-
589
-
590
-
591
- ## [1.40.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.40.0...@pingux/astro@1.40.1) (2023-01-26)
592
-
593
-
594
- ### Bug Fixes
595
-
596
- * [UIP-5926] CopyText: respect parent width ([6be0ee9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6be0ee9f68f10659ac4fc70229dbdbed5ded4201))
597
- * [UIP-5951] Remove empty sections in search results for EnvironmentBreadcrumb ([5d4563a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5d4563a293279d056918c8fbfe72f32ca505043e))
598
- * [UIP-5985][UIP-5989] Astro Accordion Fixes ([c4c6d1e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c4c6d1e1ae5f407010ddd1227865a5eb812e20a0))
599
-
600
-
601
-
602
-
603
-
604
- # [1.40.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.39.2...@pingux/astro@1.40.0) (2023-01-17)
605
-
606
-
607
- ### Bug Fixes
608
-
609
- * [UIP-5988] Badge Variant Path Updates ([053d1b5](https://gitlab.corp.pingidentity.com/ux/pingux/commit/053d1b5a3273864ad095f5585af4125c02bb632a))
610
-
611
-
612
- ### Features
613
-
614
- * [UIP-5987] Custom scrollbar colors for NavBar ([8a144ae](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8a144aef93c4fbd1ccc5c8a06304b7cff2e5482f))
615
-
616
-
617
-
618
-
619
-
620
- ## [1.39.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.39.1...@pingux/astro@1.39.2) (2023-01-12)
621
-
622
-
623
- ### Bug Fixes
624
-
625
- * [UIP-5939] AccordionGridGroup with inputs keyboard navigation ([a5d41cb](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a5d41cb6265ce20c3bd89303d23c9763ade6a4be))
626
- * [UIP-5952] CopyText correct icon color ([7f6731a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/7f6731a6131761c24d2446575248b61c3da34229))
627
-
628
-
629
-
630
-
631
-
632
- ## [1.39.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.39.0...@pingux/astro@1.39.1) (2023-01-10)
633
-
634
-
635
- ### Bug Fixes
636
-
637
- * [UIP-5910] hover for IconButton component ([7861d57](https://gitlab.corp.pingidentity.com/ux/pingux/commit/7861d57dd0262cbbca6326e9666e9fc947fddeb6))
638
- * [UIP-5912] MultivaluesField focusing on hover ([feab343](https://gitlab.corp.pingidentity.com/ux/pingux/commit/feab34344ed02d270effcce78a4d02712df5a5f3))
639
- * [UIP-5937] ListAndPanel: add aria-label to icon button ([3fa5f46](https://gitlab.corp.pingidentity.com/ux/pingux/commit/3fa5f468d08adbc5fc93e510374322303feb817d))
640
- * [UIP-5944] Fix Accordion Grid Group Accessibility Violation ([1058ac7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1058ac75816df16e6b8ce90f10ef8d0575bb0768))
641
- * [UIP-5945] Storybook: fix code blocks formatting ([78b29ee](https://gitlab.corp.pingidentity.com/ux/pingux/commit/78b29ee7d28e6a82113333b8107a00ba5820087d))
642
- * [UIP-5946] Fix A11y Violation Icon Chip Multivalues Story ([d52bf42](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d52bf42c4c62b02efdeb7461cdc50814eb760b3e))
643
- * [UIP-5955] MultivaluesField: remove button focus styles on hover ([4503298](https://gitlab.corp.pingidentity.com/ux/pingux/commit/450329829271f3e19727238bc891768ccccefb6e))
644
-
645
-
646
-
647
-
648
-
649
- # [1.39.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.38.1...@pingux/astro@1.39.0) (2023-01-05)
650
-
651
-
652
- ### Bug Fixes
653
-
654
- * [UIP-5920] IconButton Stories Tshirt Sizing ([41afdbc](https://gitlab.corp.pingidentity.com/ux/pingux/commit/41afdbcdb34f88432d2120f59590f1dc832300cf))
655
- * [UIP-5940] ComboBoxField: fix read only state ([f9f1c3f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f9f1c3f926f5103987f2e8bd6d59cb10d9e5ee0b))
656
-
657
-
658
- ### Features
659
-
660
- * [UIP-5911]: Add Bulletin component ([fd73668](https://gitlab.corp.pingidentity.com/ux/pingux/commit/fd736684078c665212dbc0a61122dc86988dc630))
661
-
662
-
663
-
664
-
665
-
666
- ## [1.38.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.38.0...@pingux/astro@1.38.1) (2023-01-04)
667
-
668
- **Note:** Version bump only for package @pingux/astro
669
-
670
-
671
-
672
-
673
-
674
- # [1.38.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.37.2...@pingux/astro@1.38.0) (2022-12-27)
675
-
676
-
677
- ### Bug Fixes
678
-
679
- * [UIP-5874] List and Panel recipe overlayPanel design width change ([cff3339](https://gitlab.corp.pingidentity.com/ux/pingux/commit/cff33394f06917def44eabfa501369ff964167e6))
680
- * [UIP-5914] live-announcer div width issue ([5496975](https://gitlab.corp.pingidentity.com/ux/pingux/commit/54969754d6fcd45f666381d24ae96d5b0d610f48))
681
- * [UIP-5925] TableCaption: add export from astro library ([dfa15e9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/dfa15e997162889f48d6978d91e222fe1f6ff38c))
682
- * [UIP-5928] ComboBox: add default value to defaultItems prop ([769150c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/769150cd5829734547dce20f81401704037b3c15))
683
-
684
-
685
- ### Features
686
-
687
- * [UIP-5804] Overlay Panel: Expandable story ([fb04c3e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/fb04c3eb58da9abbad08a0f57c15473c07753057))
688
- * [UIP-5805] MultiValues Component add Icon to Chip ([ed9d4b7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ed9d4b7f049690c85cf8197f7dd23f1aeb5f34f3))
689
-
690
-
691
-
692
-
693
-
694
- ## [1.37.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.37.1...@pingux/astro@1.37.2) (2022-12-13)
695
-
696
-
697
- ### Bug Fixes
698
-
699
- * [UIP-5757] Update most focus states to use new outline ([4862b44](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4862b44571f28b4227f7854c6ab8d5aaae21228d))
700
- * [UIP-5918] NavBar Controlled - fix items caching ([5bb44a4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5bb44a43c3d3203353b662e8d4b787a60847018d))
701
-
702
-
703
-
704
-
705
-
706
- ## [1.37.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.37.0...@pingux/astro@1.37.1) (2022-12-06)
707
-
708
-
709
- ### Bug Fixes
710
-
711
- * [UIP-5903] Multivaluesfield improvements epic ([f82a7da](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f82a7da926a9c9a9d9f61fd51b6ccbef75502826))
712
-
713
-
714
-
715
-
716
-
717
- # [1.37.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.36.2...@pingux/astro@1.37.0) (2022-12-01)
718
-
719
-
720
- ### Bug Fixes
721
-
722
- * [UIP-5742] AccodrionGroup focusing when input field inside ([ad40e26](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ad40e2603c32368443fe8119ca0729782c4f5b72))
723
- * [UIP-5901] NavBar: remove auto focus on mount ([4c6fe23](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4c6fe233d8d80354d1ccf8008eafc59c4c6d8869))
724
- * [UIP-5906] EnvironmentBreadcrumb gray border ([a65c8dd](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a65c8dd6786fb75b5b5f83b1ebd427810434a65d))
725
-
726
-
727
- ### Features
728
-
729
- * [UIP-5875] NavBar controlled version ([5a19e44](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5a19e44b260ae7c4ce4abb87f02a53ef15045834))
730
-
731
-
732
-
733
-
734
-
735
- ## [1.36.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.36.1...@pingux/astro@1.36.2) (2022-11-29)
736
-
737
-
738
- ### Bug Fixes
739
-
740
- * [UIP-5721] Image upload EA fixes ([cb0452e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/cb0452e91a81dcd5bb07bef888557256d4809859))
741
- * [UIP-5743] Adding error announcement to all field components ([fd59ec4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/fd59ec4d7a55c7bb4d5f5784bce6f8a6ef9640a2))
742
- * [UIP-5863] ColorField overlay accessibility fix ([506ba3d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/506ba3d71843fc0ba33bc7e80f0adb82595a18ba))
743
- * [UIP-5896] Add data ids to EnvironmentBreadcrumb ([cb7bee4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/cb7bee4232ec9f3bb3e05cdc72c1f663b4798943))
744
-
745
-
746
-
747
-
748
-
749
- ## [1.36.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.36.0...@pingux/astro@1.36.1) (2022-11-17)
750
-
751
-
752
- ### Bug Fixes
753
-
754
- * [UIP-5895] NavBarSection: add data-id to top level button ([35be867](https://gitlab.corp.pingidentity.com/ux/pingux/commit/35be867a8a76b2538f8fa47508bfa69d9ee18adb))
755
-
756
-
757
-
758
-
759
-
760
- # [1.36.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.35.0...@pingux/astro@1.36.0) (2022-11-15)
761
-
762
-
763
- ### Features
764
-
765
- * [UIP-5880] UiLibraryOverride theme - resolve navBar style conflicts ([d960e1f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d960e1f6f89794e7f56b73cd9a9d3766784118c3))
766
-
767
-
768
-
769
-
770
-
771
- # [1.35.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.34.0...@pingux/astro@1.35.0) (2022-11-10)
772
-
773
-
774
- ### Bug Fixes
775
-
776
- * [UIP-5879] Modal: revert checkbox focus fix inside a modal ([0f18f93](https://gitlab.corp.pingidentity.com/ux/pingux/commit/0f18f9324aa346cc3ba9d8d3c98efa41976d500b))
777
-
778
-
779
- ### Features
780
-
781
- * [UIP-5852] NavBarItemBody: allow no separator allow no subTitle ([1726df9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1726df9df148e6a176466df8f5de2007f07e6c06))
782
- * [UIP-5853] NavBarSection: allow data-id through prop spreading ([d899211](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d899211fded182d4cb700d8fb384c9cad8c549d2))
783
-
784
-
785
-
786
-
787
-
788
- # [1.34.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.33.1...@pingux/astro@1.34.0) (2022-11-03)
789
-
790
-
791
- ### Bug Fixes
792
-
793
- * [UIP-5830] Prevent form submitting when adding custom value to MultivalueField on enter press ([71dee3c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/71dee3cd85c3b49e9dd199f07fc55d0212bff50b))
794
-
795
-
796
- ### Features
797
-
798
- * [UIP-5702] Icon & IconButton - Adding tshirt sizing, sizing story, and commonly used story ([51a3677](https://gitlab.corp.pingidentity.com/ux/pingux/commit/51a367710a739f0576e36179fbdea7ae736b2f32))
799
-
800
-
801
-
802
-
803
-
804
- ## [1.33.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.33.0...@pingux/astro@1.33.1) (2022-11-01)
805
-
806
-
807
- ### Bug Fixes
808
-
809
- * [UIP-5638] LinkedListView - fix label font size ([aa9dfbe](https://gitlab.corp.pingidentity.com/ux/pingux/commit/aa9dfbed209fa782f66bd01396b396003a4db030))
810
- * [UIP-5796] Fix checkbox getting focus indicator on click within a modal ([2fcc515](https://gitlab.corp.pingidentity.com/ux/pingux/commit/2fcc5154bb6eef4cb1191ad5a4c6830cf7b7b3e1))
811
- * [UIP-5839] Fix support for checkbox indeterminism ([eef26e6](https://gitlab.corp.pingidentity.com/ux/pingux/commit/eef26e653948d0059e07475cb9056fd606955068))
812
-
813
-
814
-
815
-
816
-
817
- # [1.33.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.32.1...@pingux/astro@1.33.0) (2022-10-27)
818
-
819
-
820
- ### Bug Fixes
821
-
822
- * [UIP-5698] uiLibraryOverride Theme Link and Icon Button Update ([1f9924e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1f9924e30bb152de2089969865b7f0bf0f079dc1))
823
- * [UIP-5706] Accordion Grid - add aria-expanded and change focus style ([13ae129](https://gitlab.corp.pingidentity.com/ux/pingux/commit/13ae129b877c5a50797622f22f119771eef45e18))
824
- * [UIP-5723] Help hint improvements ([24acce7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/24acce7318af5f77574d97c3eb0d4ead7af10654))
825
- * [UIP-5739] PasswordField fix error on mount ([bdcd21f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/bdcd21f4e437bd985b7846b659637256fae79f64))
826
- * [UIP-5783] Disabled Box: replace inputs with image and text ([ee91ad3](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ee91ad30aa3954bad76085f813677341d609a3c7))
827
-
828
-
829
- ### Features
830
-
831
- * [UIP-5644] Text component and recipe improvements ([a68ef47](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a68ef479985adf8cc9b078b0c10eb3db48cf4152))
832
-
833
-
834
-
835
-
836
-
837
- ## [1.32.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.32.0...@pingux/astro@1.32.1) (2022-10-25)
838
-
839
-
840
- ### Bug Fixes
841
-
842
- * [UIP-5724] Add alt text to user icon in storybook ([a4dd785](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a4dd7854573a3704ddef75178ceab0141fd9b158))
843
- * [UIP-5727] Fix and update conditional filter recipe ([904a44b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/904a44bd9971afced3f49cd525c5c4fb7a130f1a))
844
- * [UIP-5754] ListView - fix infinity list keyboard navigation ([33275f0](https://gitlab.corp.pingidentity.com/ux/pingux/commit/33275f0bf9f7b40301b3ca6c233b91b7d98f9e7f))
845
- * [UIP-5759] Selection shift fix for Logo Tabs recipe ([97490cd](https://gitlab.corp.pingidentity.com/ux/pingux/commit/97490cd7ac37140edb33067531d2e75e506e9bf6))
846
- * [UIP-5763] Fix stepper contrast issue ([adb17f7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/adb17f7e51869fcfaf8d748ee44631defedd12f7))
847
- * [UIP-5771] ComboBox Fix Focus of Items ([63a6431](https://gitlab.corp.pingidentity.com/ux/pingux/commit/63a6431a9f36cf12596ce542cd2d325401d81d4f))
848
- * [UIP-5788] Fix popover for combobox and multivalues field components ([e993be8](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e993be8d86a850c66f8aa126b819591791487ef0))
849
-
850
-
851
-
852
-
853
-
854
- # [1.32.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.31.1...@pingux/astro@1.32.0) (2022-10-19)
855
-
856
-
857
- ### Bug Fixes
858
-
859
- * [UIP-5695] Fix height of editable input recipe for Firefox ([7b6a588](https://gitlab.corp.pingidentity.com/ux/pingux/commit/7b6a588838661877c72804aa16c721c3b333281b))
860
- * [UIP-5704] Add proper label text to neutral checkbox story ([3915140](https://gitlab.corp.pingidentity.com/ux/pingux/commit/391514030912e393830a9e9733ea102c902677d4))
861
-
862
-
863
- ### Features
864
-
865
- * [UIP-5710] TimeZonePicker EA Improvements ([8185e2d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8185e2d656fe6d55933e50cb96586fe989cd1112))
866
-
867
-
868
-
869
-
870
-
871
- ## [1.31.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.31.0...@pingux/astro@1.31.1) (2022-10-13)
872
-
873
-
874
- ### Bug Fixes
875
-
876
- * [UIP-5717] fix card row EA ([1fc699d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1fc699dc3befd5fb9369cb29867f649b64419e81))
877
- * [UIP-5719] MenuItem - add aria-disabled ([8dc3e2c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8dc3e2ce46ae932fa7ad833f9d383f82bdff00ed))
878
-
879
-
880
-
881
-
882
-
883
- # [1.31.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.30.0...@pingux/astro@1.31.0) (2022-10-12)
884
-
885
-
886
- ### Bug Fixes
887
-
888
- * [UIP-5712] Tabs EA Improvements ([df7a84c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/df7a84c5b08f6a2ec6637d3ac4c55285d66e9cba))
889
- * [UIP-5713] Adding accessibility to clear button in SearchField ([50b5195](https://gitlab.corp.pingidentity.com/ux/pingux/commit/50b5195e9a981c52b05d509ba8fa883ef8c5566c))
890
- * [UIP-5718] OverlayPanel expanded state announced ([1af94a1](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1af94a1160bdbc64ee90b55fe07fa70dd0198c90))
891
- * [UIP-5720] RequirementsList tag and role for EA improvements ([ecec6bb](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ecec6bb36a47554e02aeab9ad41e83bd3647f2b8))
892
- * [UIP-5722] disable LinkSelectField button focus when isDisabled - true ([bc9ff2a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/bc9ff2a5bc0aac4ead0769350d963b028dd7b00c))
893
-
894
-
895
- ### Features
896
-
897
- * [UIP-5570] Linked ListItem recipe ([cde8de1](https://gitlab.corp.pingidentity.com/ux/pingux/commit/cde8de1eb4af1c6577166287921283ba68bf3fab))
898
- * [UIP-5614] add an error state variant for AttributeMappingReadOnlyField ([cc47e09](https://gitlab.corp.pingidentity.com/ux/pingux/commit/cc47e09bbc6b31acbd979caa497c1844f4060efb))
899
- * [UIP-5642] ListAndPanel recipe additions ([912af78](https://gitlab.corp.pingidentity.com/ux/pingux/commit/912af789f371917201b02bc872a7b9939ebddd07))
900
- * [UIP-5714] Create TableCaption component ([80cbb5e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/80cbb5eaf14165111d24e6e8b6be265eebe80df9))
901
- * [UIP-5716] Add alignment to Environment breadcrumb sandbox chip ([776c0b4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/776c0b489fc11f317f9b3a6a423471a393a42eb6))
902
-
903
-
904
-
905
-
906
-
907
- # [1.30.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.29.0...@pingux/astro@1.30.0) (2022-10-05)
908
-
909
-
910
- ### Bug Fixes
911
-
912
- * [UIP-5379] NavBar a11y issues ([bed33a1](https://gitlab.corp.pingidentity.com/ux/pingux/commit/bed33a16f1474cbf7c1853b302d43d61009392df))
913
- * [UIP-5694] Correct line spacing for CodeView ([a34459a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a34459a1c119834e5d924c7337127e249e686782))
914
- * handle image error status codes ([56f535e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/56f535ea21130a29bce52f45079f2bba852943db))
915
-
916
-
917
- ### Features
918
-
919
- * [UIP-5514] Icon badge component ([ffa21c4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ffa21c44ef29a5c84ce551a85361bd93b8360be9))
920
-
921
-
922
-
923
-
924
-
925
- # [1.29.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.28.1...@pingux/astro@1.29.0) (2022-09-29)
926
-
927
-
928
- ### Bug Fixes
929
-
930
- * [UIP-5510] Message Aria Updates ([24c0bf8](https://gitlab.corp.pingidentity.com/ux/pingux/commit/24c0bf84e7128ca26f49077aff0a9fef33f74235))
931
- * [UIP-5707] add aria label for close button in RadioButtonsWithLinks story ([cf51ded](https://gitlab.corp.pingidentity.com/ux/pingux/commit/cf51dedcd51e4b9e2be4d5329ae0586a2c7c183c))
932
- * [UIP-5708] Improve breadcrumb a11y ([ec3ad5f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ec3ad5fdc76dc89ebe12282cb34dd4b2f9f6849a))
933
-
934
-
935
- ### Features
936
-
937
- * [UIP-5615] Add aria attribute support to field components ([265bdeb](https://gitlab.corp.pingidentity.com/ux/pingux/commit/265bdeb1f9d6cc546997858da007cdce5d91c433))
938
-
939
-
940
-
941
-
942
-
943
- ## [1.28.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.28.0...@pingux/astro@1.28.1) (2022-09-22)
944
-
945
-
946
- ### Bug Fixes
947
-
948
- * Change DataTable prop type definitions for width and height ([e295973](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e29597388e30eec017532a262bf79a37e147f87d))
949
- * Hotfix to address React Spectrum build error happening for some users ([9dccf35](https://gitlab.corp.pingidentity.com/ux/pingux/commit/9dccf35dd2a91e2517c975812649592bef51ef43))
950
-
951
-
952
-
953
-
954
-
955
- # [1.28.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.27.0...@pingux/astro@1.28.0) (2022-09-22)
956
-
957
-
958
- ### Bug Fixes
959
-
960
- * [UIP-5605] MultiValuesField custom options fix ([b5bd9f8](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b5bd9f81352cc7dbbfd661dee166c69bd6de51e8))
961
- * [UIP-5640] Environment Breadcrumb spread props into Popover ([09c1304](https://gitlab.corp.pingidentity.com/ux/pingux/commit/09c13043fa57396a58b39b98c089f0f9394143a2))
962
-
963
-
964
- ### Features
965
-
966
- * [UIP-5490] Add DataTable component ([799ac36](https://gitlab.corp.pingidentity.com/ux/pingux/commit/799ac3665a0b082a7c70f51255057eb03080c428))
967
- * [UIP-5567] Page header component ([5048e7f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5048e7f20c54585981a0875b2c6b434fc0f3657c))
968
-
969
-
970
-
971
-
972
-
973
- # [1.27.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.26.0...@pingux/astro@1.27.0) (2022-09-13)
974
-
975
-
976
- ### Bug Fixes
977
-
978
- * [UIP-5620] delete onPress from AccordionGroup ([2074816](https://gitlab.corp.pingidentity.com/ux/pingux/commit/20748165b572bae5f6876c66e665096900933e49))
979
-
980
-
981
- ### Features
982
-
983
- * [UIP-5556] MultiValueField readOnly ([7d1e920](https://gitlab.corp.pingidentity.com/ux/pingux/commit/7d1e920fb63115d7eee90876de6fde924d5353b5))
984
-
985
-
986
-
987
-
988
-
989
- # [1.26.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.25.2...@pingux/astro@1.26.0) (2022-09-06)
990
-
991
-
992
- ### Features
993
-
994
- * [UIP-5599] Override Theme Additions ([ce0f8eb](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ce0f8eb8943bf31c69c18eadda01437d9b5ff2c6))
995
-
996
-
997
-
998
-
999
-
1000
- ## [1.25.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.25.1...@pingux/astro@1.25.2) (2022-09-01)
1001
-
1002
-
1003
- ### Bug Fixes
1004
-
1005
- * [UIP-5621] AccordionGrid focusing styles ([27ff03c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/27ff03c5b3c3f5e17e334aab5d5431a773c86deb))
1006
-
1007
-
1008
-
1009
-
1010
-
1011
- ## [1.25.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.25.0...@pingux/astro@1.25.1) (2022-08-30)
1012
-
1013
-
1014
- ### Bug Fixes
1015
-
1016
- * [UIP-5310] Accordion with input focus issue ([c998b3e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c998b3e3d16638be92f70aee979b5350c3997fa8))
1017
- * [UIP-5497] Multivalues field status ([03d5b11](https://gitlab.corp.pingidentity.com/ux/pingux/commit/03d5b11e84639e911d9200aa1e7ff48f024943c8))
1018
- * [UIP-5557] Updates to bidirectional arrow recipe ([e2b3ffe](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e2b3ffee81925855102a90b2aa76662d07f0d4f8))
1019
- * [UIP-5589] correct links in customizing style ([39d7f30](https://gitlab.corp.pingidentity.com/ux/pingux/commit/39d7f301e7403a54f210ef9964d12c6993c44513))
1020
- * [UIP-5593] Update password toggle aria-label ([d74813d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d74813dcb1f1a9045d68a8f948ea2dcdfe58b476))
1021
- * [UIP-5612] List+Panel Recipe Design Improvements ([64b9546](https://gitlab.corp.pingidentity.com/ux/pingux/commit/64b9546231124a725218ef5985a5315be828d68e))
1022
-
1023
-
1024
-
1025
-
1026
-
1027
- # [1.25.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.24.0...@pingux/astro@1.25.0) (2022-08-11)
1028
-
1029
-
1030
- ### Bug Fixes
1031
-
1032
- * [UIP-5482] Breadcrumbs missing left focus border ([c1c1742](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c1c17423d998d74dfeae4fa2f912bf1da82c1817))
1033
- * [UIP-5590] fix offset ToolTip Trigger Text ([cbac411](https://gitlab.corp.pingidentity.com/ux/pingux/commit/cbac411e575a8c46ec1a63aba322f670c8efb902))
1034
-
1035
-
1036
- ### Features
1037
-
1038
- * [UIP-5433] add accessible list and panel ([61e0749](https://gitlab.corp.pingidentity.com/ux/pingux/commit/61e0749e1de5dfc271f895433e5d139b39734105))
1039
-
1040
-
1041
-
1042
-
1043
-
1044
- # [1.24.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.23.0...@pingux/astro@1.24.0) (2022-07-28)
1045
-
1046
- **Note:** Version bump only for package @pingux/astro
1047
-
1048
-
1049
-
1050
-
1051
-
1052
- # [1.23.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.22.0...@pingux/astro@1.23.0) (2022-07-19)
1053
-
1054
-
1055
- ### Bug Fixes
1056
-
1057
- * [UIP-5484] toggling SwitchField when using in ListView ([6b3dd18](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6b3dd18cbabbe2283f270aa8b7ad555b28beeed7))
1058
- * [UIP-5512] Rocker button accessibility issues ([9bae6a4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/9bae6a4f45a2e510e612a59652ee7f02a0be4600))
1059
- * [UIP-5517] add props to TooltipTrigger ([bed6ead](https://gitlab.corp.pingidentity.com/ux/pingux/commit/bed6ead817cda471b0c718c732a8b7fea4ad62b6))
1060
- * [UIP-5544] ArrayField add button fix ([3034f77](https://gitlab.corp.pingidentity.com/ux/pingux/commit/3034f776f1776e38d2d197c839aafe3856d1fdab))
1061
- * [UIP-5545] listBox focus fix ([ab4238a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ab4238ad6ac046aa6f344469c77d274daad0a2f1))
1062
-
1063
-
1064
- ### Features
1065
-
1066
- * [UIP-5519] Analyze ArrayField for Performance ([84fc74b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/84fc74bf0470541ea10ae07baa9f5cfc27029405))
1067
-
1068
-
1069
-
1070
-
1071
-
1072
- # [1.22.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.21.1...@pingux/astro@1.22.0) (2022-07-06)
1073
-
1074
-
1075
- ### Bug Fixes
1076
-
1077
- * [UIP-5501] NumberField accessibility violation ([f64e54b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f64e54b80708bda1bcd85c2fff77d4e8c7160330))
1078
-
1079
-
1080
- ### Features
1081
-
1082
- * [UIP-5524] Add red border to error inputs ([a748a63](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a748a63108f3d2dbb786e60d2ed11ebd2ee1c422))
1083
- * [UIP-5541] Environmental breadcrumbs popover state ([3d1307a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/3d1307a2f5d26563b2d25b3e6e5d1981817f1ad5))
1084
-
1085
-
1086
-
1087
-
1088
-
1089
- ## [1.21.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.21.0...@pingux/astro@1.21.1) (2022-06-28)
1090
-
1091
-
1092
- ### Bug Fixes
1093
-
1094
- * [UIP-5444] ComboBox long value filter issue fix ([8c6e4aa](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8c6e4aa78be54337cfbfcc893a563577cf1325a7))
1095
- * [UIP-5494] New focus style on switch component ([f01fbbd](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f01fbbdf3433eb78dcf5f84fb3b4aac8a8c9aa41))
1096
-
1097
-
1098
-
1099
-
1100
-
1101
- # [1.21.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.20.0...@pingux/astro@1.21.0) (2022-06-24)
1102
-
1103
-
1104
- ### Bug Fixes
1105
-
1106
- * [UIP-5521] Incorrect Chips Styles in MultivaluesField When Wrapped in Box ([ee302fb](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ee302fb2f0cc6d9ff3503fbdba3be2a560bd7d9b))
1107
-
1108
-
1109
- ### Features
1110
-
1111
- * [UIP-5373] ListView A11Y Improvement ([b4df30c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b4df30c1b90de4f34b7036e9c552380fd345a1cd))
1112
- * [UIP-5457] reduce height of MultivaluesField ([30e9c83](https://gitlab.corp.pingidentity.com/ux/pingux/commit/30e9c83fdb681114646f5401d1780e4077115e2b))
1113
-
1114
-
1115
-
1116
-
1117
-
1118
- # [1.20.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.19.0...@pingux/astro@1.20.0) (2022-06-21)
1119
-
1120
-
1121
- ### Bug Fixes
1122
-
1123
- * [UIP-5508] Add environment breadcrumb to ui overrides theme ([e7ae8f0](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e7ae8f0d4439a3efda18d4deb392e598202e471f))
1124
-
1125
-
1126
- ### Features
1127
-
1128
- * [UIP-5492] Count chip variants ([a25bb17](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a25bb17ec5eabfa7e7fa581eb40d5eb28957ff1d))
1129
-
1130
-
1131
-
1132
-
1133
-
1134
- # [1.19.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.18.0...@pingux/astro@1.19.0) (2022-06-15)
1135
-
1136
- **Note:** Version bump only for package @pingux/astro
1137
-
1138
-
1139
-
1140
-
1141
-
1142
- # [1.18.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.17.0...@pingux/astro@1.18.0) (2022-06-15)
1143
-
1144
-
1145
- ### Bug Fixes
1146
-
1147
- * [UIP-5424] CollapsiblePanel focus and visual defects ([86e5bff](https://gitlab.corp.pingidentity.com/ux/pingux/commit/86e5bff440e1e7cb2c640ea32d9cc2f78bd26e7d))
1148
- * [UIP-5461] OverlayPanel UI Descrepencies ([6d379e7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6d379e7aa79693eef5f41759f8f6c24e566c5699))
1149
- * [UIP-5477] Updating z-index for RockerButtonGroup Accessibility border ([ab0e65c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ab0e65c18c984ccf2aede4b5c8ec501ff6129025))
1150
- * [UIP-5478] use FocusRing component instead of useFocusRing hook ([594a564](https://gitlab.corp.pingidentity.com/ux/pingux/commit/594a564bb4ebe5591adc434518988f7f68d1ee62))
1151
- * [UIP-5496] Button and link fix focus tests ([63a3d1a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/63a3d1aaf1f96837b4d02114ae6daf188598213f))
1152
-
1153
-
1154
- ### Features
1155
-
1156
- * [UIP-5491] inline primary button variant ([ee8d395](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ee8d395ff103f7821da377038637fd3cee17c049))
1157
- * [UIP-5495] ColorField focus ([032b98c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/032b98c3bdc4ee34df50dd3deb51a57666d1a3cf))
1158
-
1159
-
1160
-
1161
-
1162
-
1163
- # [1.17.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.16.0...@pingux/astro@1.17.0) (2022-06-09)
1164
-
1165
-
1166
- ### Bug Fixes
1167
-
1168
- * [UIP-5369] added alt text prop and test form image component ([90cf618](https://gitlab.corp.pingidentity.com/ux/pingux/commit/90cf6187db00ca9b160e0548732a1eee5794f3e2))
1169
- * [UIP-5429] field direction multi values field ([1b18908](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1b18908243815ba44d67c9d0ea2534364905ce41))
1170
-
1171
-
1172
- ### Features
1173
-
1174
- * [UIP-5479] ComboBoxField Add Option ([925f524](https://gitlab.corp.pingidentity.com/ux/pingux/commit/925f524f0c9849959930026e4ac9043b60a9246c))
1175
-
1176
-
1177
-
1178
-
1179
-
1180
- # [1.16.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.15.0...@pingux/astro@1.16.0) (2022-06-08)
1181
-
1182
-
1183
- ### Bug Fixes
1184
-
1185
- * [UIP-5364] make chip icon not wrapped in a button aria-hidden ([cdf7df3](https://gitlab.corp.pingidentity.com/ux/pingux/commit/cdf7df39dcce043faaba97f54f491057d1dc4174))
1186
- * Added 5px padding to add btn ([1445f77](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1445f77cbb8b8ece4c6d21249c3277e409dfd87c))
1187
-
1188
-
1189
- ### Features
1190
-
1191
- * [UIP-5374] change Loader role to alert ([27e9cfa](https://gitlab.corp.pingidentity.com/ux/pingux/commit/27e9cfa578b80f164ad617f28c1dd9fa92346d10))
1192
- * [UIP-5456] Multivalues selectedKeys not showing selected options in external app ([8342005](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8342005406d0d1c351eda6a38c7070ce21ebb19b))
1193
-
1194
-
1195
-
1196
-
1197
-
1198
- # [1.15.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.14.0...@pingux/astro@1.15.0) (2022-05-31)
1199
-
1200
-
1201
- ### Bug Fixes
1202
-
1203
- * [UIP-5398] fix spacing of separator in navbar ([1940860](https://gitlab.corp.pingidentity.com/ux/pingux/commit/19408606a3540f9614809e9c75e54617f3c9a396))
1204
- * [UIP-5472] Adding interactive close to trial exp recipe ([6ade508](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6ade508c3f4c01bb597298ea8b3239394234451b))
1205
- * Re-order merge props so they have the correct precedence ([cd1b65c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/cd1b65c2f27ef444c71f86d6d12fbb5ff768bc40))
1206
-
1207
-
1208
- ### Features
1209
-
1210
- * [UIP-5367] EnvironmentBreadcrumbs A11Y Improvement ([f113e33](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f113e333c1d2ccc2d1199eeb705cc7eab8f60fd5))
1211
- * [UIP-5377] Modal A11Y Improvement ([dfe1c1e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/dfe1c1ec707ec5ccd6c77c608510464f80fa1c33))
1212
- * [UIP-5437] Trial status bar recipe ([2f898a0](https://gitlab.corp.pingidentity.com/ux/pingux/commit/2f898a0285a5d67698c1872a7ba6c330aaeba611))
1213
-
1214
-
1215
-
1216
-
1217
-
1218
- # [1.14.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.13.0...@pingux/astro@1.14.0) (2022-05-24)
1219
-
1220
-
1221
- ### Bug Fixes
1222
-
1223
- * [UIP-5430] Popover failed accessibility test ([04ee92e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/04ee92e60560a057da4fe488180146af76623540))
1224
-
1225
-
1226
- ### Features
1227
-
1228
- * [UIP-5368] IconButton a11y Improvement ([6dc0c33](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6dc0c33cedd347e74f9c5154ccda0ed832945e0f))
1229
- * [UIP-5402] Allow copying partial text from CopyText ([d2367de](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d2367de2e78d7977363a774be9692bbce9cc33d9))
1230
- * [UIP-5410] Attribute mapping read only field recipe ([e472b5c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e472b5c987ab0b4cb4c405df635ba4c7756b39e1))
1231
- * [UIP-5413] Attributes and PingOne mappings recipe ([1d4d6e5](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1d4d6e5ffddaa41981690c5c4a38e8e275394d8f))
1232
- * [UIP-5440] Trial exp industry buttons recipe ([35c212b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/35c212bf197f9fd0a15888eda52b190240992584))
1233
-
1234
-
1235
-
1236
-
1237
-
1238
- # [1.13.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.12.0...@pingux/astro@1.13.0) (2022-05-17)
1239
-
1240
-
1241
- ### Bug Fixes
1242
-
1243
- * [UIP-5362] Avatar A11Y Improvement ([84b8b5f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/84b8b5f68100faedd8a2867a5842f3376ef1dba0))
1244
- * [UIP-5375] Menu A11Y Improvement ([06d5309](https://gitlab.corp.pingidentity.com/ux/pingux/commit/06d530988df64e8b53fb129e12560792476fc5f8))
1245
- * [UIP-5396] fix missed border in textAreaField with floating label ([ee95c5a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ee95c5a64c80a5ae23113b920842b3a9a41a47c0))
1246
- * [UIP-5414] message component icon updates ([4d09c0c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4d09c0caad178fe541ec9d62ac1aeed22ca3cbf8))
1247
- * [UIP-5415] Remove 32px height from icon button in CopyText ([88a6c37](https://gitlab.corp.pingidentity.com/ux/pingux/commit/88a6c375cd358f3ec318a167fea0ad0eef12a912))
1248
-
1249
-
1250
- ### Features
1251
-
1252
- * [UIP-5350] Astro nano theme ([30f80ee](https://gitlab.corp.pingidentity.com/ux/pingux/commit/30f80eef5cfb5e2edbf8b56198cc1f64029f51f4))
1253
- * [UIP-5366] CopyText a11y improvements ([b7c9b58](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b7c9b587a1554f98b634c977887949aaacb90754))
1254
- * [UIP-5395] One Way to Bidirectional Arrow Recipe ([1eb4e20](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1eb4e2045ec466143dc738231f249a6428e3a60c))
1255
-
1256
-
1257
-
1258
-
1259
-
1260
- # [1.12.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.11.0...@pingux/astro@1.12.0) (2022-05-11)
1261
-
1262
-
1263
- ### Bug Fixes
1264
-
1265
- * [UIP-5384] Adjust the focus styles for text and link variant of button ([63de6fe](https://gitlab.corp.pingidentity.com/ux/pingux/commit/63de6fec3d3b2d6b1ae2b018434c29957aa74617))
1266
- * [UIP-5411] Stop Image src from being cached ([a83a84a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a83a84af94052e70ed0a814d44f166345618ae7a))
1267
-
1268
-
1269
- ### Features
1270
-
1271
- * [UIP-5302] Template for New Nav and Header ([7cfe695](https://gitlab.corp.pingidentity.com/ux/pingux/commit/7cfe6955a4f0bcf0bdd545418f4985c33e7f2d62))
1272
-
1273
-
1274
-
1275
-
1276
-
1277
- # [1.11.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.10.0...@pingux/astro@1.11.0) (2022-05-05)
1278
-
1279
-
1280
- ### Bug Fixes
1281
-
1282
- * [UIP-5359] refactor Array Field to include label ([ea9c306](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ea9c306e062b43721d410f52ae5b34e44ea429a5))
1283
- * [UIP-5380] Combobox doesnt open when clicked into after selection ([795675d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/795675d74a1ad8c525ed72acf679dd51c8a57a98))
1284
- * [UIP-5405] Rename MultiSelectFilter component ([5167f64](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5167f647d1996f9ec33cba2e5ddc00408ca32069))
1285
-
1286
-
1287
- ### Features
1288
-
1289
- * [UIP-5409] Read Only Chips in Multivalues Field ([71b8b29](https://gitlab.corp.pingidentity.com/ux/pingux/commit/71b8b292d9d4fd8c75a297c5918f5cede8b947b4))
1290
-
1291
-
1292
-
1293
-
1294
-
1295
- # [1.10.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.9.0...@pingux/astro@1.10.0) (2022-04-28)
1296
-
1297
-
1298
- ### Bug Fixes
1299
-
1300
- * [UIP-5300] Multiple inputs not focusable within AccordionGridGroup ([421f210](https://gitlab.corp.pingidentity.com/ux/pingux/commit/421f21046e0638c44ecb34085bd64af681301b3c))
1301
- * [UIP-5408] float label Tweaks ([eaa79fd](https://gitlab.corp.pingidentity.com/ux/pingux/commit/eaa79fd1da40eed988759a0d0e4c626d1c338dc2))
1302
-
1303
-
1304
- ### Features
1305
-
1306
- * [UIP-5334] add container widths to box ([5b672d2](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5b672d2b3198e637ee7b0947a221e8ae3cdb60f3))
1307
- * [UIP-5397] ArrayField Component - Allow a limit on the number of Fields ([61dcdcd](https://gitlab.corp.pingidentity.com/ux/pingux/commit/61dcdcd929c540e8353996755889a320202ad003))
1308
- * [UIP-5401] Add initial Slider recipe ([1fba9ae](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1fba9ae445f77359bf9db716864b7755e6d0c392))
1309
-
1310
-
1311
-
1312
-
1313
-
1314
- # [1.9.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.8.1...@pingux/astro@1.9.0) (2022-04-21)
1315
-
1316
-
1317
- ### Bug Fixes
1318
-
1319
- * [UIP-5348] NumberField keyboard interactions not working in external projects ([bc56154](https://gitlab.corp.pingidentity.com/ux/pingux/commit/bc561546b32121590b6219bff425b838e41e6b76))
1320
- * [UIP-5393] Astro ComboBoxField component mixes custom value key with text content ([dbe53f6](https://gitlab.corp.pingidentity.com/ux/pingux/commit/dbe53f6e81bf2219dbad02cc632325629585fef4))
1321
- * [UIP-5412] Fix autocomplete for Astro and Schema Form ([db7ad4d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/db7ad4dbbac061be092c654125608259ce127703))
1322
-
1323
-
1324
- ### Features
1325
-
1326
- * [UIP-5383] Remove box shadow on button focus ([4074f15](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4074f15b87548942b1b3eae27150f8ae2db8a6dc))
1327
-
1328
-
1329
-
1330
-
1331
-
1332
- ## [1.8.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.8.0...@pingux/astro@1.8.1) (2022-04-14)
1333
-
1334
-
1335
- ### Bug Fixes
1336
-
1337
- * Hotfix patch for 2022-04-14 release ([be33f54](https://gitlab.corp.pingidentity.com/ux/pingux/commit/be33f5434620f4275df91cc5ecdc15985364666d))
1338
-
1339
-
1340
-
1341
-
1342
-
1343
- # [1.8.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.7.0...@pingux/astro@1.8.0) (2022-04-14)
1344
-
1345
-
1346
- ### Bug Fixes
1347
-
1348
- * [UIP-5220] Add typography support props for Text component ([a22ad60](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a22ad6042a7600c8fd7d57a3eab13a575c1ddc41))
1349
- * [UIP-5299] Nav bar fixes ([bacdcdb](https://gitlab.corp.pingidentity.com/ux/pingux/commit/bacdcdb0fee52cee35ee8a90a91d530ab69f0264))
1350
- * [UIP-5335] TimezonePicker with correct offset in GMT ([72451f2](https://gitlab.corp.pingidentity.com/ux/pingux/commit/72451f2bb9bad80ddff00ebbc82aa927bc6cb50e))
1351
- * [UIP-5338] ComboBox Improvements ([e6d81f7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e6d81f793432bdca9c44a42eb3ad3f8d68080e6a))
1352
- * [UIP-5340] NumberField whitespace issue ([48fad9f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/48fad9f2ad952aaec007426ab97b8ca6c934c8a8))
1353
- * [UIP-5341] change input font size to 15 ([db80d09](https://gitlab.corp.pingidentity.com/ux/pingux/commit/db80d09c16c03e2c19ff4a43e8a913eee45506dc))
1354
- * [UIP-5351] CodeView cannot import additional language ([5a74c5b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5a74c5b21664e8bc43ef026efeb317f1bc640275))
1355
- * [UIP-5352] Remove tooltip from delete button ([cfc9645](https://gitlab.corp.pingidentity.com/ux/pingux/commit/cfc9645f256ba498278c55f60e998a31e306310a))
1356
- * [UIP-5356] Accordion button background transparency ([5cd3178](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5cd31789511846b7cc27e4c47adb200f0bfbe788))
1357
-
1358
-
1359
- ### Features
1360
-
1361
- * [UIP-5060] Breadcrumb Component Improvements ([5f204e1](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5f204e1072fee77ae3a963fb2015594d6222a954))
1362
- * [UIP-5209] Add fallback functionality to Image ([f0f1fae](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f0f1faed4452a3bf69ae485c87f00716e074a655))
1363
- * [UIP-5277] MultiSelect List Container Interactive Story ([381e9b7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/381e9b7c2827518d4254c410c00fea66347d7850))
1364
-
1365
-
1366
-
1367
-
1368
-
1369
- # [1.7.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.6.0...@pingux/astro@1.7.0) (2022-04-04)
1370
-
1371
-
1372
- ### Features
1373
-
1374
- * [UIP-5028] UI Library Global Styles Override ([3f3ada3](https://gitlab.corp.pingidentity.com/ux/pingux/commit/3f3ada3643ab9760a7308b3b73b92b2a2cfcd8f8))
1375
- * [UIP-5214] focus indicator buttons ([d9319d9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d9319d9ea321bfce14effa01c083b1714beb96d3))
1376
- * [UIP-5292] Update Astro version in Schema Form ([077b399](https://gitlab.corp.pingidentity.com/ux/pingux/commit/077b3999c2690e8241e590ac5cd494e860ddf90e))
1377
-
1378
-
1379
-
1380
-
1381
-
1382
- # [1.6.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.5.0...@pingux/astro@1.6.0) (2022-03-24)
1383
-
1384
-
1385
- ### Bug Fixes
1386
-
1387
- * [UIP-5123] TextAreaField Content Will Overlap with Floating Label ([a6bfee4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a6bfee4aeef48afd921afefd17667c3c78c75bfa))
1388
- * [UIP-5249] 'field' text variant should be medium (500) weight ([6815ce3](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6815ce35d9c72b94e65d70a31eae51e5a704dbe6))
1389
- * [UIP-5339] Replace FieldHelperText Top Padding ([6d973f8](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6d973f8198f1bd86d9540974955c63a921bf2864))
1390
-
1391
-
1392
- ### Features
1393
-
1394
- * [UIP-5276] Add TimeZonePicker component ([8bb44e4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8bb44e437fd0a04c1ff3162775adb604506828af))
1395
-
1396
-
1397
-
1398
-
1399
-
1400
- # [1.5.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.4.1...@pingux/astro@1.5.0) (2022-03-22)
1401
-
1402
-
1403
- ### Bug Fixes
1404
-
1405
- * [UIP-5282] Code View discrepancies ([9e483b1](https://gitlab.corp.pingidentity.com/ux/pingux/commit/9e483b1078cc47a21c40fce1d256230dc6d57d65))
1406
-
1407
-
1408
- ### Features
1409
-
1410
- * [UIP-5162] Add MultiselectFilter component ([b624104](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b624104fe17352d7975498378bc605562698916a))
1411
- * [UIP-5163] Tab with Popover menu ([2334558](https://gitlab.corp.pingidentity.com/ux/pingux/commit/23345584dfd0bcc40700cb9925fa908002388de2))
1412
-
1413
-
1414
-
1415
-
1416
-
1417
- ## [1.4.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.4.0...@pingux/astro@1.4.1) (2022-03-18)
1418
-
1419
- **Note:** Version bump only for package @pingux/astro
1420
-
1421
-
1422
-
1423
-
1424
-
1425
- # [1.4.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.3.1...@pingux/astro@1.4.0) (2022-03-15)
1426
-
1427
-
1428
- ### Bug Fixes
1429
-
1430
- * [UIP-5211] Update Masked Value Recipe ([5c030f7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5c030f7782ce061702a5e94c3cf065d2384dbd46))
1431
- * [UIP-5243] SelectField Float Label Issue ([a69a569](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a69a569fc297110f46b924e6fe1f1f5fcf450c57))
1432
- * [UIP-5306] Unable to get custom values from MultivaluesField ([d9cb8cc](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d9cb8cc63e16e700ec6b0363794215e26b217b51))
1433
-
1434
-
1435
- ### Features
1436
-
1437
- * [UIP-5038] Inline edit recipe using TextAreaField component ([b01b3cd](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b01b3cd5de24ceee174a98da745d6e9d35b3f3f7))
1438
-
1439
-
1440
-
1441
-
1442
-
1443
- ## [1.3.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.3.0...@pingux/astro@1.3.1) (2022-03-01)
1444
-
1445
-
1446
- ### Bug Fixes
1447
-
1448
- * [UIP-5110] Remove ListLayout and SchemaLayout stories ([e0ac22b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e0ac22b4b0d9134edd4dd7c76e92926b33d62962))
1449
- * [UIP-5152] Deprecate page header component ([a7cf8d6](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a7cf8d6a507805e54a5c3c6bcf047102d2b3813d))
1450
- * [UIP-5178] NumberField - Spec Update ([0e6a2b7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/0e6a2b79799edf4e9b52bf580ca45043c1b810dc))
1451
- * [UIP-5212] RadioField and CheckboxField Spacing Update ([b6e8cb4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b6e8cb47e783c52caff04eb61518e5db15b4479f))
1452
- * [UIP-5226] MultivaluesField allow props to be spread into TextField ([8806276](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8806276c62bf4ea9cf5d4454fb57a61ec313e375))
1453
- * [UIP-5241] Switch Label Text and Spacing Updates ([d79f7a4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d79f7a415b109b9d407677e15614464a34e6fdf8))
1454
- * [UIP-5244] SelectField Storybook Updates ([a0391ea](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a0391ea2b17ed9c8d0fd7f21ab535d5305f6e233))
1455
-
1456
-
1457
-
1458
-
1459
-
1460
- # [1.3.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.2.1...@pingux/astro@1.3.0) (2022-02-23)
1461
-
1462
-
1463
- ### Bug Fixes
1464
-
1465
- * [UIP-4969] Update astro tab font size ([7af5410](https://gitlab.corp.pingidentity.com/ux/pingux/commit/7af54107825154d795ecb97143fc24364c9b225c))
1466
- * [UIP-5146] Loader Story Update - Change "Loader With Most Common Color" to "Custom Color" ([78fbdd9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/78fbdd938ce5b0a3f87f7821599caf3967c3389b))
1467
- * [UIP-5150] Modal Storybook Improvements ([4a9bd28](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4a9bd28aa9f804cd51cc3a89fd0467ddfd3a2327))
1468
- * [UIP-5225] Add accessible theme for CodeView using JS styles ([6659da6](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6659da6743dd68886750d3c58465b36ad6b551c0))
1469
- * [UIP-5281] NavBar improvements and design review changes ([f8bd0ac](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f8bd0acd6bcedfc92ac7a6615e4b79b19d1fbe9e))
1470
-
1471
-
1472
- ### Features
1473
-
1474
- * [UIP-4607] Array field component ([8cca040](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8cca04033e330af5838b38f45e441464900db810))
1475
- * [UIP-5228] Add Storysource and Console addons to Astro ([a96de8c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a96de8cf5c557e74b400ada232caf58974e927cb))
1476
-
1477
-
1478
-
1479
-
1480
-
1481
- ## [1.2.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.2.0...@pingux/astro@1.2.1) (2022-02-16)
1482
-
1483
-
1484
- ### Bug Fixes
1485
-
1486
- * Applying changes to updated packages for so the version fixes are applied ([16b2e91](https://gitlab.corp.pingidentity.com/ux/pingux/commit/16b2e916f5926678d613f85725f6ec7e86fd359d))
1487
-
1488
-
1489
-
1490
-
1491
-
1492
- # [1.2.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0...@pingux/astro@1.2.0) (2022-02-15)
1493
-
1494
-
1495
- ### Bug Fixes
1496
-
1497
- * [UIP-5062] Deprecate danger and text button variants ([c69e7a4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c69e7a4230bb986eebe5aa35f52b978f8e08f932))
1498
- * [UIP-5112] import messages reducer from index.js ([d1d7d5b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d1d7d5bbfd38b1cea48c01185b9cbded5f563bb4))
1499
- * [UIP-5116] Add content slots to TextAreaField ([43eecd7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/43eecd703e9bc7dc8f8b7997cccc314a38a3fe09))
1500
- * [UIP-5170] Fix broken RockerButtonGroup and incorrect deps in yarn.lock ([89cb5ee](https://gitlab.corp.pingidentity.com/ux/pingux/commit/89cb5ee7638352e9f8781cd9449fd5edc85d74f4))
1501
- * [UIP-5179] Multivalues Chip Spacing Improvements ([c1fc4bc](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c1fc4bce4133b48e3994003f6a74fe67d934104c))
1502
- * [UIP-5183] Link has incorrect styling ([434b144](https://gitlab.corp.pingidentity.com/ux/pingux/commit/434b1447870cfc729b71bcdfc13abc575ead9ad7))
1503
- * [UIP-5185] NumberField doesn't seem to accept 'name' prop ([67aa25b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/67aa25bf0c055348b290709d963dad16b2b22223))
1504
- * [UIP-5217] Input Field in Accordion Clickable ([83f13d3](https://gitlab.corp.pingidentity.com/ux/pingux/commit/83f13d395fca2d1a19bbe877dfd62e52f37402ca))
1505
- * [UIP-5224] Remove .css file dependency for CodeView component ([73a0a89](https://gitlab.corp.pingidentity.com/ux/pingux/commit/73a0a899c4c2891c066c1c52b164edc8cc882fa4))
1506
- * [UIP-5230] OverlayPanel Content Jump ([67c26b5](https://gitlab.corp.pingidentity.com/ux/pingux/commit/67c26b53a9b8f5c40b16b44cbde2ef174b1885f0))
1507
- * [UIP-5245] TextFieldArea Default Rows and Story Update ([30b65cc](https://gitlab.corp.pingidentity.com/ux/pingux/commit/30b65cc38eebdb8a7d0d1f00307e7a0d3518c2ee))
1508
- * Update dependencies for fbjs, lodash, and prism-react-renderer ([fcd37bd](https://gitlab.corp.pingidentity.com/ux/pingux/commit/fcd37bd01bdabe534aec41333ea56ab383e010a5))
1509
-
1510
-
1511
- ### Features
1512
-
1513
- * [UIP-4870] Environment Breadcrumb ([e4b1af2](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e4b1af226a716e97981f7ad6ba34e452b6b2fdb5))
1514
- * [UIP-5135] Function to generate mock data ([8513974](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8513974d229642a0c945ba5de4fbd8445587a0f4))
1515
- * [UIP-5158] Input Field - Add Story with Copy Button & Slots ([8726f94](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8726f949c5ae657c4eaafc7983735d969d93d724))
1516
- * [UIP-5164] Color Block Button Variant ([ed3a13b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ed3a13b58d5692dd90abe8b1f878a30b2ced1e3f))
1517
- * [UIP-5187] HelpHint styling does not match spec and needs story ([6ec1cd1](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6ec1cd1d99f9a371af9dbef266a5ad31fdce53f0))
1518
- * [UIP-5210] Filter Variant for Button ([b9e2a9d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b9e2a9d2d64852bc2af2b0fea6759ac5fc4d5623))
1519
-
1520
-
1521
-
1522
-
1523
-
1524
- # [1.1.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0-alpha.12...@pingux/astro@1.1.0) (2022-02-02)
1525
-
1526
-
1527
- ### Bug Fixes
1528
-
1529
- * [UIP-5016] OverlayPanel focus improvements ([eabfa8f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/eabfa8f1b235a07c049d4a0bbc77d49bd02a2eec))
1530
-
1531
-
1532
- ### Features
1533
-
1534
- * [UIP-4876] Astro NavBar ([8d3e7de](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8d3e7ded13aec6034fd0ff813153dc0a4dc7375a))
1535
-
1536
-
1537
-
1538
-
1539
-
1540
- # [1.1.0-alpha.12](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0-alpha.11...@pingux/astro@1.1.0-alpha.12) (2022-01-31)
1541
-
1542
-
1543
- ### Features
1544
-
1545
- * [UIP-5067] CodeView component ([c4e104c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c4e104c3638c8f6231b5f3c14cd65a1a62bb6591))
1546
-
1547
-
1548
-
1549
-
1550
-
1551
- # [1.1.0-alpha.11](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0-alpha.10...@pingux/astro@1.1.0-alpha.11) (2022-01-28)
1552
-
1553
-
1554
- ### Bug Fixes
1555
-
1556
- * [UIP-5177] Icon Button Color Update ([05b8a95](https://gitlab.corp.pingidentity.com/ux/pingux/commit/05b8a95e3fae60e7f655cf2812dfd2104496b1c5))
1557
-
1558
-
1559
-
1560
-
1561
-
1562
- # [1.1.0-alpha.10](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0-alpha.9...@pingux/astro@1.1.0-alpha.10) (2022-01-28)
1563
-
1564
-
1565
- ### Bug Fixes
1566
-
1567
- * [UIP-5180] File Upload Field Update Document Icon Color ([debaf91](https://gitlab.corp.pingidentity.com/ux/pingux/commit/debaf9100401c822c37fdd16be1a1b1704096f10))
1568
-
1569
-
1570
-
1571
-
1572
-
1573
- # [1.1.0-alpha.9](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0-alpha.8...@pingux/astro@1.1.0-alpha.9) (2022-01-24)
1574
-
1575
-
1576
- ### Bug Fixes
1577
-
1578
- * [UIP-5111] Deprecate List Component ([3cd9b69](https://gitlab.corp.pingidentity.com/ux/pingux/commit/3cd9b699c48ac43e34d9cfd61b07f33b4b7d4fc4))
1579
-
1580
-
1581
-
1582
-
1583
-
1584
- # [1.1.0-alpha.8](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0-alpha.7...@pingux/astro@1.1.0-alpha.8) (2022-01-24)
1585
-
1586
-
1587
- ### Bug Fixes
1588
-
1589
- * [UIP-4995] TextArea Safari resize issue ([33c8af3](https://gitlab.corp.pingidentity.com/ux/pingux/commit/33c8af35fbe82820427b87bdd9ab0744039a6c18))
1590
-
1591
-
1592
-
1593
-
1594
-
1595
- # [1.1.0-alpha.7](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0-alpha.6...@pingux/astro@1.1.0-alpha.7) (2022-01-21)
1596
-
1597
-
1598
- ### Bug Fixes
1599
-
1600
- * [UIP-5109] AccordionGroup OverlayPanel Compatibility Fix ([6a78b76](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6a78b76a3c3ab7b9ac78a7dcd6ca74a6449d63c2))
1601
-
1602
-
1603
-
1604
-
1605
-
1606
- # [1.1.0-alpha.6](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0-alpha.5...@pingux/astro@1.1.0-alpha.6) (2022-01-21)
1607
-
1608
-
1609
- ### Bug Fixes
1610
-
1611
- * [UIP-5070] Icons for warning and error messages are reversed ([36f0d6e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/36f0d6e1b65662b3c64aa1599012a2967b59e56d))
1612
-
1613
-
1614
-
1615
-
1616
-
1617
- # [1.1.0-alpha.5](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0-alpha.4...@pingux/astro@1.1.0-alpha.5) (2022-01-21)
1618
-
1619
-
1620
- ### Bug Fixes
1621
-
1622
- * [UIP-5030] Components shouldn't have a default aria-label ([8927951](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8927951339ef49faa03f5654d9e8f357b136430a))
1623
-
1624
-
1625
-
1626
-
1627
-
1628
- # [1.1.0-alpha.4](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0-alpha.3...@pingux/astro@1.1.0-alpha.4) (2022-01-21)
1629
-
1630
-
1631
- ### Bug Fixes
1632
-
1633
- * [UIP-4992] Fix SelectField Warnings ([dab3f92](https://gitlab.corp.pingidentity.com/ux/pingux/commit/dab3f9254c5d7b1b124ed24616e4ef68f53af7d0))
1634
-
1635
-
1636
-
1637
-
1638
-
1639
- # [1.1.0-alpha.3](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0-alpha.2...@pingux/astro@1.1.0-alpha.3) (2022-01-20)
1640
-
1641
-
1642
- ### Bug Fixes
1643
-
1644
- * [UIP-5007] ComboBoxField controlled custom input throws an exception ([9651c98](https://gitlab.corp.pingidentity.com/ux/pingux/commit/9651c98da3b3ac158c84f378303a2d331db78cce))
1645
-
1646
-
1647
-
1648
-
1649
-
1650
- # [1.1.0-alpha.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0-alpha.1...@pingux/astro@1.1.0-alpha.2) (2022-01-19)
1651
-
1652
-
1653
- ### Bug Fixes
1654
-
1655
- * [UIP-5039] IconButton Square Variant ([2fecfac](https://gitlab.corp.pingidentity.com/ux/pingux/commit/2fecfac9d39974eb5dc773d210c3a830d1bd9e2a))
1656
-
1657
-
1658
-
1659
-
1660
-
1661
- # [1.1.0-alpha.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.1.0-alpha.0...@pingux/astro@1.1.0-alpha.1) (2022-01-19)
1662
-
1663
-
1664
- ### Bug Fixes
1665
-
1666
- * [UIP-5026] Infinite Loading List requests page 2 instantly ([e6888cf](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e6888cfe91435fae0ab583b0ff22b2c169ba7bcd))
1667
-
1668
-
1669
-
1670
-
1671
-
1672
- # [1.1.0-alpha.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.1...@pingux/astro@1.1.0-alpha.0) (2022-01-19)
1673
-
1674
-
1675
- ### Bug Fixes
1676
-
1677
- * [UIP-5122] adjust x icon to 14px ([6b4ca54](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6b4ca5418ddaffb6e1a4daaf28b57151a23529cb))
1678
-
1679
-
1680
- ### Features
1681
-
1682
- * [UIP-5066] Add Icon, Chip, and Text with Tooltips ([1681083](https://gitlab.corp.pingidentity.com/ux/pingux/commit/168108386d77ef09635a177a35cb6d68cfad8bc2))
1683
-
1684
-
1685
-
1686
-
1687
-
1688
- ## [1.0.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0...@pingux/astro@1.0.1) (2022-01-19)
1689
-
1690
- **Note:** Version bump only for package @pingux/astro
1691
-
1692
-
1693
-
1694
-
1695
-
1696
- # [1.0.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.20...@pingux/astro@1.0.0) (2022-01-19)
1697
-
1698
- **Note:** Version bump only for package @pingux/astro
1699
-
1700
-
1701
-
1702
-
1703
-
1704
- # [1.0.0-alpha.20](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.19...@pingux/astro@1.0.0-alpha.20) (2022-01-17)
1705
-
1706
- **Note:** Version bump only for package @pingux/astro
1707
-
1708
-
1709
-
1710
-
1711
-
1712
- # [1.0.0-alpha.19](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.18...@pingux/astro@1.0.0-alpha.19) (2022-01-13)
1713
-
1714
-
1715
- ### Bug Fixes
1716
-
1717
- * [UIP-4996] astro stepper redundant tooltip ([d74f102](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d74f1020163703948498436224ef3f9d6458df57))
1718
-
1719
-
1720
-
1721
-
1722
-
1723
- # [1.0.0-alpha.18](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.17...@pingux/astro@1.0.0-alpha.18) (2022-01-13)
1724
-
1725
-
1726
- ### Bug Fixes
1727
-
1728
- * [UIP-5107] IconButton - no focus in disabled state ([f301f6d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f301f6d0cdc8271c992eb3384094cafbd59fa0d5))
1729
-
1730
-
1731
-
1732
-
1733
-
1734
- # [1.0.0-alpha.17](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.16...@pingux/astro@1.0.0-alpha.17) (2022-01-13)
1735
-
1736
-
1737
- ### Bug Fixes
1738
-
1739
- * [UIP-4997] Read only style TextAreaField ([a5f62bd](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a5f62bd014f2d3d75c2c71625bc31ba5cefbb4df))
1740
-
1741
-
1742
-
1743
-
1744
-
1745
- # [1.0.0-alpha.16](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.15...@pingux/astro@1.0.0-alpha.16) (2022-01-13)
1746
-
1747
-
1748
- ### Bug Fixes
1749
-
1750
- * [UIP-4962] accordion grid design improvements ([dcec402](https://gitlab.corp.pingidentity.com/ux/pingux/commit/dcec4025f945968e20386bc20ad011f48532acc7))
1751
-
1752
-
1753
-
1754
-
1755
-
1756
- # [1.0.0-alpha.15](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.14...@pingux/astro@1.0.0-alpha.15) (2022-01-13)
1757
-
1758
- **Note:** Version bump only for package @pingux/astro
1759
-
1760
-
1761
-
1762
-
1763
-
1764
- # [1.0.0-alpha.14](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.13...@pingux/astro@1.0.0-alpha.14) (2022-01-10)
1765
-
1766
-
1767
- ### Bug Fixes
1768
-
1769
- * [UIP-4953] Chip component cleanup ([d2f10ec](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d2f10ece82749d723ac35b6262c1b918f81abba1))
1770
-
1771
-
1772
-
1773
-
1774
-
1775
- # [1.0.0-alpha.13](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.12...@pingux/astro@1.0.0-alpha.13) (2022-01-10)
1776
-
1777
-
1778
- ### Bug Fixes
1779
-
1780
- * [UIP-5063] Inline Button Text Size ([6f03c64](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6f03c64b13dc2237d09acb565282394effd419b8))
1781
-
1782
-
1783
-
1784
-
1785
-
1786
- # [1.0.0-alpha.12](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.11...@pingux/astro@1.0.0-alpha.12) (2022-01-10)
1787
-
1788
-
1789
- ### Bug Fixes
1790
-
1791
- * [UIP-5061] hide variants that aren't used for <Button> specifically ([85a494c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/85a494cc3fa656a2fc6bb37dc0e718bdcfee7829))
1792
-
1793
-
1794
-
1795
-
1796
-
1797
- # [1.0.0-alpha.11](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.10...@pingux/astro@1.0.0-alpha.11) (2022-01-08)
1798
-
1799
-
1800
- ### Features
1801
-
1802
- * [UIP-4887] ListView hides Separators on zoom ([92ca2bb](https://gitlab.corp.pingidentity.com/ux/pingux/commit/92ca2bb40bb49ce9a69eb097cc88b5e210acce8a))
1803
-
1804
-
1805
-
1806
-
1807
-
1808
- # [1.0.0-alpha.10](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.9...@pingux/astro@1.0.0-alpha.10) (2022-01-07)
1809
-
1810
-
1811
- ### Bug Fixes
1812
-
1813
- * [UIP-5010] Disabled tabs can be displayed via keyboard ([9115f66](https://gitlab.corp.pingidentity.com/ux/pingux/commit/9115f66c8e921a910934cb8205b29321f2d30fe8))
1814
-
1815
-
1816
-
1817
-
1818
-
1819
- # [1.0.0-alpha.9](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.8...@pingux/astro@1.0.0-alpha.9) (2022-01-07)
1820
-
1821
-
1822
- ### Bug Fixes
1823
-
1824
- * [UIP-5013] Accordion design improvements ([436b8ef](https://gitlab.corp.pingidentity.com/ux/pingux/commit/436b8ef7d6e07c03feb7b4abf89e07eae022f809))
1825
-
1826
-
1827
-
1828
-
1829
-
1830
- # [1.0.0-alpha.8](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.7...@pingux/astro@1.0.0-alpha.8) (2021-12-30)
1831
-
1832
-
1833
- ### Features
1834
-
1835
- * [UIP-5003] Copy to clipboard Recipe ([655aa6f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/655aa6f4083f71116f6e39bd37ad75cdc08e47ac))
1836
-
1837
-
1838
-
1839
-
1840
-
1841
- # [1.0.0-alpha.7](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.6...@pingux/astro@1.0.0-alpha.7) (2021-12-30)
1842
-
1843
-
1844
- ### Bug Fixes
1845
-
1846
- * [UIP-5064] Upgrade lodash version to 4.17.21 ([427286a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/427286a9b3bbb940f7193c793e70e66770ee4ae0))
1847
-
1848
-
1849
- ### Features
1850
-
1851
- * [UIP-5004] RadioButtonsWithLinks Recipe ([dd7f2e9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/dd7f2e9f3b30e9790de289b71739323cb6cd1328))
1852
- * [UIP-5037] Add slots props to Tab Component ([a7571a2](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a7571a27568b63c4a0fffed1d9dd1ea21ba1f724))
1853
-
1854
-
1855
-
1856
-
1857
-
1858
- # [1.0.0-alpha.6](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.5...@pingux/astro@1.0.0-alpha.6) (2021-12-30)
1859
-
1860
-
1861
- ### Bug Fixes
1862
-
1863
- * [UIP-4928] password field-hide default safari-edge-ie icon ([1c46ce6](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1c46ce6fa4cdd7fe846f3434de3e36c65df61244))
1864
-
1865
-
1866
-
1867
-
1868
-
1869
- # [1.0.0-alpha.5](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.4...@pingux/astro@1.0.0-alpha.5) (2021-12-29)
1870
-
1871
-
1872
- ### Features
1873
-
1874
- * [UIP-4918] Add File Input ([5987d40](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5987d4064f8a2a54d3e81037acba17c299bea2b0))
1875
-
1876
-
1877
-
1878
-
1879
-
1880
- # [1.0.0-alpha.4](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.3...@pingux/astro@1.0.0-alpha.4) (2021-12-20)
1881
-
1882
- **Note:** Version bump only for package @pingux/astro
1883
-
1884
-
1885
-
1886
-
1887
-
1888
- # [1.0.0-alpha.3](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.2...@pingux/astro@1.0.0-alpha.3) (2021-12-17)
1889
-
1890
- **Note:** Version bump only for package @pingux/astro
1891
-
1892
-
1893
-
1894
-
1895
-
1896
- # [1.0.0-alpha.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.1...@pingux/astro@1.0.0-alpha.2) (2021-12-17)
1897
-
1898
-
1899
- ### Bug Fixes
1900
-
1901
- * [UIP-5014] Increment and decrement buttons don't need to be focusable ([58d7b21](https://gitlab.corp.pingidentity.com/ux/pingux/commit/58d7b21f70bd47a8c381fcf557deb9b0b2da0bf7))
1902
-
1903
-
1904
-
1905
-
1906
-
1907
- # [1.0.0-alpha.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.0...@pingux/astro@1.0.0-alpha.1) (2021-12-16)
1908
-
1909
- **Note:** Version bump only for package @pingux/astro
1910
-
1911
-
1912
-
1913
-
1914
-
1915
- # [1.0.0-alpha.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.42.0...@pingux/astro@1.0.0-alpha.0) (2021-12-16)
1916
-
1917
-
1918
- * fix!: [UIP-4912] Update Jenkins container names to match k8s config ([8edeb95](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8edeb95b25adecd8e34c20fb52c6c2f0e552bc4d))
1919
-
1920
-
1921
- ### BREAKING CHANGES
1922
-
1923
- * The actual breaking change is committed in 3ee02e86f5036ae8f32832c57e43bd31dcb4f812 but Lerna doesn't respect just the ! for major version changes
1924
-
1925
-
1926
-
1927
-
1928
-
1929
- # [0.42.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.41.0...@pingux/astro@0.42.0) (2021-12-02)
1930
-
1931
-
1932
- ### Features
1933
-
1934
- * [UIP-4951] Application search dropdown recipe ([dcc6fa4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/dcc6fa43380354615e97e28b43070479915c8fda))
1935
-
1936
-
1937
-
1938
-
1939
-
1940
- # [0.41.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.40.0...@pingux/astro@0.41.0) (2021-11-30)
1941
-
1942
-
1943
- ### Bug Fixes
1944
-
1945
- * [UIP-4863] Modal Close Icon Button data-id and aria-labels in story ([1628f38](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1628f387de1270bffe0ec9ab8edfc42b1fb063e1))
1946
- * [UIP-4922] OverlayPanel Custom Width Variant ([6aeffe9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6aeffe96c2b76f200b974dc0a419d94dd0130cdd))
1947
- * [UIP-4950] Read-only style for TextField ([c53cc2f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c53cc2fe076fcfc03e8dcff865f772eba828df20))
1948
- * [UIP-4959] ComboBox re-focus on selected item ([9ed5f83](https://gitlab.corp.pingidentity.com/ux/pingux/commit/9ed5f83a6ff44296f7d6be35f3cbdab05970881a))
1949
- * [UIP-4961] The menu item remains onHover state when leaving the menu area ([37f9649](https://gitlab.corp.pingidentity.com/ux/pingux/commit/37f9649e43946518c23799ead07be212201212fb))
1950
- * [UIP-4983] Allow custom props to be spread into MenuItem ([23e9dd9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/23e9dd9a5923ae4b9037d687b07c208a25a72db9))
1951
-
1952
-
1953
- ### Features
1954
-
1955
- * [UIP-4838] Auto removing messages ([0936486](https://gitlab.corp.pingidentity.com/ux/pingux/commit/09364862f75d9e8d59fee6b4a5e651380f3a2175))
1956
- * [UIP-4993] Add useDebounce hook ([0738f2c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/0738f2cf383ae6b70b7ff88f3bef7cd2ad3ae2e6))
1957
-
1958
-
1959
-
1960
-
1961
-
1962
- # [0.40.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.39.0...@pingux/astro@0.40.0) (2021-11-23)
1963
-
1964
-
1965
- ### Features
1966
-
1967
- * [UIP-4892] Port messages reducer to Astro from Compass ([670c7c7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/670c7c74ebeaa9e2fd3f8f2cbe47313c1639d393))
1968
-
1969
-
1970
-
1971
-
1972
-
1973
- # [0.39.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.38.2...@pingux/astro@0.39.0) (2021-11-18)
1974
-
1975
-
1976
- ### Bug Fixes
1977
-
1978
- * [UIP-4880] Unable to provide styling to messages ([25cd409](https://gitlab.corp.pingidentity.com/ux/pingux/commit/25cd409261a224f5f4eaf77cee9363f85d18009e))
1979
- * [UIP-4932 ] IconButton prop isDisabled does not apply ([d9098bd](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d9098bdb04824a766fea755c298dad214224da58))
1980
-
1981
-
1982
- ### Features
1983
-
1984
- * [UIP-4973] Add components/nodes support to the ImageUploadField ([baa7d56](https://gitlab.corp.pingidentity.com/ux/pingux/commit/baa7d56bd902a90113c0fe881c0c5b8129edaa3f))
1985
-
1986
-
1987
-
1988
-
1989
-
1990
- ## [0.38.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.38.1...@pingux/astro@0.38.2) (2021-11-16)
1991
-
1992
- **Note:** Version bump only for package @pingux/astro
1993
-
1994
-
1995
-
1996
-
1997
-
1998
- ## [0.38.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.38.0...@pingux/astro@0.38.1) (2021-11-11)
1999
-
2000
-
2001
- ### Bug Fixes
2002
-
2003
- * [UIP-4966] Re-export hooks and expose styles ([5acc7a1](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5acc7a1228b6a145497135fa7ed17f78f7802469))
2004
-
2005
-
2006
-
2007
-
2008
-
2009
- # [0.38.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.37.0...@pingux/astro@0.38.0) (2021-11-09)
2010
-
2011
-
2012
- ### Bug Fixes
2013
-
2014
- * [UIP-4851] ImagesUploadField allows custom menu option strings ([47cb884](https://gitlab.corp.pingidentity.com/ux/pingux/commit/47cb88438bdeb2d3a26dd7b301f9af90224789e5))
2015
- * [UIP-4900] Deprecate panel ([c9a1df4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c9a1df4675c2933897e363f1d0e45301384a0334))
2016
- * [UIP-4921] Float Label Issue in List Layout ([c166440](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c16644095d50d41a797c64f438c72c44d9f1bb4e))
2017
-
2018
-
2019
- ### Features
2020
-
2021
- * [UIP-4858] Multivalues Component ([5478414](https://gitlab.corp.pingidentity.com/ux/pingux/commit/54784145811e2e7865935bff88864b700df4be16))
2022
-
2023
-
2024
-
2025
-
2026
-
2027
- # [0.37.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.36.1...@pingux/astro@0.37.0) (2021-11-04)
2028
-
2029
-
2030
- ### Bug Fixes
2031
-
2032
- * [UIP-4917] Scrollbox Improvements ([c19b09d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c19b09d38cdff4b40b18a23258951504a37007f0))
2033
- * [UIP-4934] TextField float label overlaps with placeholder ([5e9942b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5e9942b217247c1c00b7fcebeb41ef919840c2cb))
2034
-
2035
-
2036
- ### Features
2037
-
2038
- * [UIP-4743] List Layout Discrepancies ([434284f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/434284fdb10afd2eb98014fdef8155a10e0748be))
2039
-
2040
-
2041
-
2042
-
2043
-
2044
- ## [0.36.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.36.0...@pingux/astro@0.36.1) (2021-11-02)
2045
-
2046
-
2047
- ### Bug Fixes
2048
-
2049
- * [UIP-4824] Add max length prop to fields ([4d7cbc4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4d7cbc4ef1b0b95434e0125e0953941a82554cdd))
2050
- * [UIP-4866] Update PanelHeader Recipe ([5bae8e2](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5bae8e270dbeb0cf7d9751f2fb251c2bccc47d50))
2051
- * Storybook source code not displaying for many components ([b30ea83](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b30ea83a018ca323b08f5494d03813d41c59c213))
2052
-
2053
-
2054
-
2055
-
2056
-
2057
- # [0.36.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.35.0...@pingux/astro@0.36.0) (2021-10-29)
2058
-
2059
-
2060
- ### Bug Fixes
2061
-
2062
- * [UIP-4941] Add Sections to Index File ([f9d1f4c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f9d1f4cd0ac732d373b18e5d57ebd16eb392c262))
2063
-
2064
-
2065
- ### Features
2066
-
2067
- * [UIP-4758] Accordion Grid Component ([2b62df0](https://gitlab.corp.pingidentity.com/ux/pingux/commit/2b62df0d211128f4ceaacbd46436b4ac997d4330))
2068
-
2069
-
2070
-
2071
-
2072
-
2073
- # [0.34.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.33.0...@pingux/astro@0.34.0) (2021-10-26)
2074
-
2075
-
2076
- ### Bug Fixes
2077
-
2078
- * [UIP-4872] Add Overflow for Text Component ([ab9742e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ab9742eb6b40763f2dde787eb1dbe9d4e7920bf0))
2079
- * [UIP-4884] ListView loadingState prop fix ([6668605](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6668605ea4accad1f0b6f753501036b2745a119f))
2080
- * [UIP-4893] Size of loader for ImageUploadField ([feb5dcc](https://gitlab.corp.pingidentity.com/ux/pingux/commit/feb5dcc8135026f1c4fb40b3c793a0a0cb0499bf))
2081
- * [UIP-4907] PasswordField Requirements update ([b17a193](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b17a1938102c8bdb6e446f799a39bbd4408c4fb6))
2082
-
2083
-
2084
- ### Features
2085
-
2086
- * [UIP-4835] Number Field Component ([38e5d9b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/38e5d9bf92720d293f793b809e2500352b2efb3a))
2087
- * [UIP-4897] Clarify Deprecated Components within Storybook ([fc2f78b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/fc2f78b753bb18f52fbbde82e7378e3bd9a28ac3))
2088
-
2089
-
2090
-
2091
-
2092
-
2093
- # [0.33.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.32.0...@pingux/astro@0.33.0) (2021-10-19)
2094
-
2095
-
2096
- ### Bug Fixes
2097
-
2098
- * [UIP-4857] ListView: onSelectionChange should return expected keys ([e0704f5](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e0704f568283b19fd312a775c772785348f8999f))
2099
- * [UIP-4864] Add data-id prop to Item component ([73daf5e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/73daf5eb54e45808457a0b352c2f3dd608770b6b))
2100
- * [UIP-4877] Slimming Inline Button ([426e80d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/426e80d42ed5a4abc12c20aecca63491c9657670))
2101
- * [UIP-4883] Add prop spreading to allow hover color on menu items ([3f3c9f2](https://gitlab.corp.pingidentity.com/ux/pingux/commit/3f3c9f2db7bd16613821b5d86c74647d458a02ac))
2102
- * [UIP-4885] Update button variants to use inline-flex ([d0a0ea7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d0a0ea7757a0091169ee77fe7e20fa75c058c016))
2103
-
2104
-
2105
- ### Features
2106
-
2107
- * [UIP-4437] ScrollBox component ([2bf2f3d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/2bf2f3d1e0ac1b27526bfd056868a3f2313b0156))
2108
- * [UIP-4733] Add Apache 2.0 License ([8beb5c7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8beb5c764d4200c3a4ed1cd07537774825e4cc35))
2109
- * [UIP-4841] Add NOTICE file ([718d569](https://gitlab.corp.pingidentity.com/ux/pingux/commit/718d5692a8f0577238eac128ac14b4f00b107d16))
2110
-
2111
-
2112
-
2113
-
2114
-
2115
- # [0.32.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.31.0...@pingux/astro@0.32.0) (2021-10-12)
2116
-
2117
-
2118
- ### Features
2119
-
2120
- * [UIP-4834] Update warning colors in Astro ([336e4c9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/336e4c9f95442c0a1b4fce2d9584295c5a711970))
2121
-
2122
-
2123
-
2124
-
2125
-
2126
- # [0.31.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.30.0...@pingux/astro@0.31.0) (2021-10-07)
2127
-
2128
-
2129
- ### Bug Fixes
2130
-
2131
- * [UIP-4644] OverlayPanel Improvements ([4363472](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4363472f20b6ee16cc7d4865148acc09236236ff))
2132
- * [UIP-4823] Button with isLoading has indicator misplaced ([21ff697](https://gitlab.corp.pingidentity.com/ux/pingux/commit/21ff697f3b9c58839b49c611e0c6f3226bd0c466))
2133
- * [UIP-4865] CopyText Component Keyboard Accessibility ([a75e8f2](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a75e8f2b50abb824a2cbc38a9621776ddc32f127))
2134
-
2135
-
2136
- ### Features
2137
-
2138
- * [UIP-4806] Add previewImage and isLoading props to ImageUploadField for more control ([394b2b7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/394b2b74b1a09ead57fa8f7db6fc6352cfae472e))
2139
- * [UIP-4815] Masked Value Recipe Improvements ([aa598e4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/aa598e46f52c2160138c4b0892680e7b1e68952c))
2140
- * [UIP-4819] Disallow copy/paste ([d7f1c39](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d7f1c39972a1f09118aa2fcf48a83eaaa0c35284))
2141
- * [UIP-4856] Update Accordion hover and pressed states ([5bec486](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5bec486577ef976878a3900c177c1eefa1aad7cb))
2142
-
2143
-
2144
- ### Performance Improvements
2145
-
2146
- * [UIP-4768] Keyboard focus is slow on infinitely loading ListView ([3af03e3](https://gitlab.corp.pingidentity.com/ux/pingux/commit/3af03e3fcdea2ea54095f592b9c6da6d99890c72))
2147
-
2148
-
2149
-
2150
-
2151
-
2152
- # [0.30.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.29.0...@pingux/astro@0.30.0) (2021-10-01)
2153
-
2154
-
2155
- * feat!: [UIP-4686, UIP-4687, UIP-4688] Provide end user theme astro theme ([8c229e6](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8c229e696fdefdb06dc471c6f50f6b63880f53ad))
2156
-
2157
-
2158
- ### BREAKING CHANGES
2159
-
2160
- * remove end user from schema form package
2161
-
2162
-
2163
-
2164
-
2165
-
2166
- # [0.29.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.28.0...@pingux/astro@0.29.0) (2021-09-30)
2167
-
2168
-
2169
- ### Bug Fixes
2170
-
2171
- * [UIP-4760] SearchField clear button icon ([b257757](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b257757af4bfaded3047dec968af4244f89ff2d3))
2172
-
2173
-
2174
- ### Features
2175
-
2176
- * [UIP-4696] Add Jest Axe matcher and automated accessibility tests ([2437549](https://gitlab.corp.pingidentity.com/ux/pingux/commit/2437549a28a57398791afb618a726dd1211ddce8))
2177
-
2178
-
2179
-
2180
-
2181
-
2182
- ## [0.28.1-alpha.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.28.0...@pingux/astro@0.28.1-alpha.0) (2021-09-28)
2183
-
2184
- **Note:** Version bump only for package @pingux/astro
2185
-
2186
-
2187
-
2188
-
2189
-
2190
- # [0.28.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.27.0...@pingux/astro@0.28.0) (2021-09-28)
2191
-
2192
-
2193
- ### Features
2194
-
2195
- * [UIP-4149] add Breadcrumbs component ([b955ed1](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b955ed1f046842665ae30b436591872a1122c665))
2196
- * [UIP-4659] LinkSelectField ([552af20](https://gitlab.corp.pingidentity.com/ux/pingux/commit/552af20a47c02744ff3147f29d400a4b2518d81b))
2197
-
2198
-
2199
-
2200
-
2201
-
2202
- # [0.27.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.26.1...@pingux/astro@0.27.0) (2021-09-21)
2203
-
2204
-
2205
- ### Bug Fixes
2206
-
2207
- * [UIP-4734] TextField float label bug when managed externally ([9f48a4a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/9f48a4a8cbc76206abd0e448124818e7b4a997f2))
2208
- * [UIP-4783] add custom styling to tooltip ([166fc97](https://gitlab.corp.pingidentity.com/ux/pingux/commit/166fc971ff6e5c1f02c062e54afe85fae4c7d5f9))
2209
-
2210
-
2211
- ### Features
2212
-
2213
- * [UIP-4537] Virtualized ListView component ([efeb4f6](https://gitlab.corp.pingidentity.com/ux/pingux/commit/efeb4f6ad3fb4b12657af98c31bc740f23c6297f))
2214
- * [UIP-4757] MenuButton recipe ([9a7e6c5](https://gitlab.corp.pingidentity.com/ux/pingux/commit/9a7e6c527c5d42fc61a71558912c6accf2dbeb11))
2215
-
2216
-
2217
-
2218
-
2219
-
2220
- ## [0.26.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.26.0...@pingux/astro@0.26.1) (2021-09-17)
2221
-
2222
-
2223
- ### Bug Fixes
2224
-
2225
- * [UIP-4765] loader component size ([e343bfe](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e343bfea93f385269c4fe4d442e6f4d4d640355e))
2226
- * [UIP-4803] Fix defaultPreviewImage being defined later ([6da4d58](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6da4d5836dfd613937d2f59dfbdce3978623571d))
2227
-
2228
-
2229
-
2230
-
2231
-
2232
- # [0.26.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.25.0...@pingux/astro@0.26.0) (2021-09-14)
2233
-
2234
-
2235
- ### Bug Fixes
2236
-
2237
- * [UIP-4707] Stepper component has incorrect keyboard navigation styles ([eb9ecc9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/eb9ecc975f39a5bfe5d4f3aa5faa51510b2baa9c))
2238
- * [UIP-4764] Update to IconButton in Modal ([865f576](https://gitlab.corp.pingidentity.com/ux/pingux/commit/865f5765afe6d7e3114f756855b9f38f50627dfb))
2239
-
2240
-
2241
- ### Features
2242
-
2243
- * [UIP-4657] CopyText Component ([8f76c16](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8f76c168617ceb03cc671ab5b8139f9d2d52f1a5))
2244
- * [UIP-4767] Icon buttons need keyboard hover state ([84cdfe6](https://gitlab.corp.pingidentity.com/ux/pingux/commit/84cdfe69c00af489ed94f20d1394af84e960170c))
2245
-
2246
-
2247
-
2248
-
2249
-
2250
- # [0.25.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.24.0...@pingux/astro@0.25.0) (2021-09-09)
2251
-
2252
-
2253
- ### Bug Fixes
2254
-
2255
- * [UIP-4772] Messages wrapper overlays other UI elements making then ignore mouse events ([aaf1f52](https://gitlab.corp.pingidentity.com/ux/pingux/commit/aaf1f527118f8b99fb70c5a3e9de9582f4ee5ff7))
2256
-
2257
-
2258
- ### Features
2259
-
2260
- * [UIP-4617] Date Picker Recipe ([358a663](https://gitlab.corp.pingidentity.com/ux/pingux/commit/358a663835a331542f0637677f701f064a1f1507))
2261
- * [UIP-4756] Add MaskedValue Recipe ([d7640e7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d7640e7d0cc73c916cc4da566a9606f316fa9744))
2262
-
2263
-
2264
-
2265
-
2266
-
2267
- # [0.24.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.23.0...@pingux/astro@0.24.0) (2021-09-07)
2268
-
2269
-
2270
- ### Features
2271
-
2272
- * [UIP-4660] Tooltip recipe for SwitchField and cursor pointer ([047c134](https://gitlab.corp.pingidentity.com/ux/pingux/commit/047c1349e96526b2bd95c5e6f7750313a7b2f351))
2273
-
2274
-
2275
-
2276
-
2277
-
2278
- # [0.23.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.22.0...@pingux/astro@0.23.0) (2021-09-02)
2279
-
2280
-
2281
- ### Bug Fixes
2282
-
2283
- * [UIP-4715] Avoid buttons from wrapping ([d969017](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d96901732ab49a5580dc12f82ad6f20dae865ef8))
2284
- * [UIP-4737] Color field popover not closing via click outside or keyboard ([557672c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/557672c8bb1cda095981c510963979ac2eb7ac76))
2285
-
2286
-
2287
- ### Features
2288
-
2289
- * [UIP-4623] Conditional Filter Recipe ([6b0db79](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6b0db79114d9673da84c746d38a90dafc6395497))
2290
-
2291
-
2292
-
2293
-
2294
-
2295
- # [0.22.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.21.2...@pingux/astro@0.22.0) (2021-08-26)
2296
-
2297
-
2298
- ### Bug Fixes
2299
-
2300
- * [UIP-4738] Fix help hint styles ([105b066](https://gitlab.corp.pingidentity.com/ux/pingux/commit/105b06606980c677bd8bc6eaa89ffdf45483f8fc))
2301
-
2302
-
2303
- ### Features
2304
-
2305
- * [UIP-4751] Add support for helper text to the Password Field component ([ffc1d29](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ffc1d29076c50848763af5d37d4331d89e295c23))
2306
-
2307
-
2308
-
2309
-
2310
-
2311
- ## [0.21.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.21.1...@pingux/astro@0.21.2) (2021-08-23)
2312
-
2313
-
2314
- ### Bug Fixes
2315
-
2316
- * [UIP-4225] add Requirements Popover to PasswordField ([79dcf17](https://gitlab.corp.pingidentity.com/ux/pingux/commit/79dcf174174e00cacf88e7a1b431bf17cd2fb58d))
2317
- * [UIP-4440] left label alignment issues ([055e167](https://gitlab.corp.pingidentity.com/ux/pingux/commit/055e167d468d8f48feaf654affa49d94cfd717ce))
2318
- * [UIP-4689] Icon button isn't a circle in ListItem component ([263e114](https://gitlab.corp.pingidentity.com/ux/pingux/commit/263e1147304e3644d0cb797b71df6f70645367d5))
2319
-
2320
-
2321
-
2322
-
2323
-
2324
- ## [0.21.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.21.0...@pingux/astro@0.21.1) (2021-08-20)
2325
-
2326
-
2327
- ### Bug Fixes
2328
-
2329
- * [UIP-4732] Resolve Emotion 11 conflicts ([4d35e21](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4d35e21d4261648b4121ed160623c5f719ddf86e))
2330
-
2331
-
2332
-
2333
-
2334
-
2335
- # [0.21.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.20.0...@pingux/astro@0.21.0) (2021-08-12)
2336
-
2337
-
2338
- ### Bug Fixes
2339
-
2340
- * [UIP-4672] Press events not firing for tooltip trigger buttons ([aba1b95](https://gitlab.corp.pingidentity.com/ux/pingux/commit/aba1b958c0dd316789f98f6a2f936fd8439d7230))
2341
- * [UIP-4684] Fix password field ([bcb78ae](https://gitlab.corp.pingidentity.com/ux/pingux/commit/bcb78ae38cc868d7044b5df2b1fddb86c82d3b1a))
2342
-
2343
-
2344
- ### Features
2345
-
2346
- * [UIP-4264] Astro Message ([4d1f711](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4d1f711727c07e3ab8b235d6c5465a61fd147c0c))
2347
- * [UIP-4467] Image upload component ([873a2e5](https://gitlab.corp.pingidentity.com/ux/pingux/commit/873a2e54f0bc484ff4c70dc5442603e65f2a86fa))
2348
- * [UIP-4481] add color input component ([5687a1e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5687a1ed990fda0e40baa64639569d22d1e326ed))
2349
-
2350
-
2351
-
2352
-
2353
-
2354
- # [0.20.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.19.1...@pingux/astro@0.20.0) (2021-08-09)
2355
-
2356
-
2357
- ### Bug Fixes
2358
-
2359
- * [UIP-4651] ListItem design improvements ([f808ae9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f808ae9ed4ff57e25062ad14e8771892efe7c140))
2360
- * [UIP-4654] OverlayPanel story fixing ([451438a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/451438aa6f238578ddccb9c88642f074b0ba16ba))
2361
- * [UIP-4668] Tabs hover state ([a3d49ed](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a3d49ed3c92bf9ce8963197b64d68c05022fcb66))
2362
-
2363
-
2364
- ### Features
2365
-
2366
- * [UIP-4569] Replace Rebass.js package with Theme UI ([18017c8](https://gitlab.corp.pingidentity.com/ux/pingux/commit/18017c8bab8f856a1c8c1b289cee538a723b5062))
2367
- * [UIP-4584] LabelHelpHint component ([55691f1](https://gitlab.corp.pingidentity.com/ux/pingux/commit/55691f11d3b4da8e6725d3dff7d5fbc493e13cb3))
2368
-
2369
-
2370
-
2371
-
2372
-
2373
- ## [0.19.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.19.0...@pingux/astro@0.19.1) (2021-07-28)
2374
-
2375
-
2376
- ### Bug Fixes
2377
-
2378
- * [UIP-4563] searchField data-id-props doubled ([0363f38](https://gitlab.corp.pingidentity.com/ux/pingux/commit/0363f38bd2f160630117fe0556e645f623e1be55))
2379
- * [UIP-4664] Accordion does not accept styled system props ([f5a3fda](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f5a3fda613d6b981beda9b016e6c8b23eff064ab))
2380
-
2381
-
2382
-
2383
-
2384
-
2385
- # [0.19.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.18.0...@pingux/astro@0.19.0) (2021-07-23)
2386
-
2387
-
2388
- ### Bug Fixes
2389
-
2390
- * [UIP-4542] Required mark was misplaced for Float Label Mode ([64d938e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/64d938e8fa1d273035e4ba44b94c8ff51950d32c))
2391
- * [UIP-4604] Optional side status line ([1f0f8b5](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1f0f8b52aec4ef5cc7039c6c7281e189ffdb4ae4))
2392
- * [UIP-4626] Stepper broken layout ([6127042](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6127042f6999b26c9c161c2669ceec2c46866ef6))
2393
- * [UIP-4630] Add all hooks to index.js ([60515ea](https://gitlab.corp.pingidentity.com/ux/pingux/commit/60515ea1a8a15faae5be74bb81b107aeeff0492c))
2394
- * [UIP-4642] Combobox dependency and loader height issues ([86631db](https://gitlab.corp.pingidentity.com/ux/pingux/commit/86631db0884a577fd21cc52b4b8c946834aa8051))
2395
-
2396
-
2397
- ### Features
2398
-
2399
- * [UIP-4200] Password field component ([4d364dc](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4d364dcb7b4f915397bd279fceea179e4f94abe0))
2400
- * [UIP-4533] Logo Tabs Recipe ([b126981](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b126981a89de4f1843ec4e2d2e38e46be0e78d38))
2401
-
2402
-
2403
-
2404
-
2405
-
2406
- # [0.18.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.17.1...@pingux/astro@0.18.0) (2021-07-12)
2407
-
2408
-
2409
- ### Bug Fixes
2410
-
2411
- * [UIP-4478] Multiple Overlays Open Simultaneously ([3352bc9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/3352bc9a6a2fd7c174dff397571e130a4ce60ef0))
2412
- * [UIP-4486] Fix prop type to expect an iterable and forbid instanceOf ([6b7a6f8](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6b7a6f870db018380f41febde6c5ded463069c9f))
2413
- * [UIP-4557] Add Field Container Props to Combo box ([9a01d42](https://gitlab.corp.pingidentity.com/ux/pingux/commit/9a01d42b13c44e4e1dea5977671e7936a39e8332))
2414
-
2415
-
2416
- ### Features
2417
-
2418
- * [UIP-4429] Array input recipe ([72872d3](https://gitlab.corp.pingidentity.com/ux/pingux/commit/72872d358f9a6da5ec85ceeb19f7343a368da305))
2419
- * [UIP-4430] Table component ([4dc52ae](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4dc52aecb3007113bee4126c40fc0ea453a7aaf8))
2420
- * [UIP-4539] Overlay panel component ([e46811d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e46811db3cbd087607c64ad8093a90f4ef313116))
2421
-
2422
-
2423
-
2424
-
2425
-
2426
- ## [0.17.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.17.0...@pingux/astro@0.17.1) (2021-07-01)
2427
-
2428
-
2429
- ### Bug Fixes
2430
-
2431
- * UIP-4535 Helphint Placement with Left Label Mode ([5adb869](https://gitlab.corp.pingidentity.com/ux/pingux/commit/5adb8698f34f244e8f0e94c0588aa5092cea4ff8))
2432
-
2433
-
2434
-
2435
-
2436
-
2437
- # [0.17.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.16.1...@pingux/astro@0.17.0) (2021-06-25)
2438
-
2439
-
2440
- ### Features
2441
-
2442
- * [UIP-4468] Stepper component ([b58afb4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/b58afb4730c4b6387c1a3c02d9ba310c958f9035))
2443
-
2444
-
2445
-
2446
-
2447
-
2448
- ## [0.16.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.16.0...@pingux/astro@0.16.1) (2021-06-22)
2449
-
2450
-
2451
- ### Bug Fixes
2452
-
2453
- * UIP-4587: Add useSyncRef util from React Aria to address ref syncing issue ([00fae9c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/00fae9ce5e57b681f522302bada3f98717f84212))
2454
-
2455
-
2456
-
2457
-
2458
-
2459
- # [0.16.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.15.0...@pingux/astro@0.16.0) (2021-06-16)
2460
-
2461
-
2462
- ### Features
2463
-
2464
- * UIP-4427 "Astro accordion component" ([92313ed](https://gitlab.corp.pingidentity.com/ux/pingux/commit/92313ed4f7e983dd2f76e435be8a37e786274c22))
2465
-
2466
-
2467
-
2468
-
2469
-
2470
- # [0.15.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.14.0...@pingux/astro@0.15.0) (2021-06-11)
2471
-
2472
-
2473
- ### Features
2474
-
2475
- * [UIP-4441] Add Storybook controls for all astro components ([7456a31](https://gitlab.corp.pingidentity.com/ux/pingux/commit/7456a3163e9ced8142c7741d81b96efbed43bbc2))
2476
- * UIP-4414 IconButton needs title prop (tooltip) ([e9f16f9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/e9f16f98059c64fe68fb32509bd92dded65148ff))
2477
-
2478
-
2479
-
2480
-
2481
-
2482
- # [0.14.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.13.0...@pingux/astro@0.14.0) (2021-06-07)
2483
-
2484
-
2485
- ### Features
2486
-
2487
- * [UIP-4147] Icon button independent component ([1341a66](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1341a665c0e0c2b1b8f81c3f7b49216d4939a0e2))
2488
- * [UIP-4411] ListItem selected state ([022356f](https://gitlab.corp.pingidentity.com/ux/pingux/commit/022356f0a1ad10fd8f2ce060e46b91174f788bb0))
2489
- * [UIP-4500] Scroll callbacks for listbox and add loaders to async state for SelectField and ComboBoxField ([8344638](https://gitlab.corp.pingidentity.com/ux/pingux/commit/83446382baac7514e8fee22cc2976e2fd7ed32ac))
2490
-
2491
-
2492
-
2493
-
2494
-
2495
- # [0.13.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.12.0...@pingux/astro@0.13.0) (2021-06-03)
2496
-
2497
-
2498
- ### Bug Fixes
2499
-
2500
- * [UIP-4489] fixed border length ([fad65bf](https://gitlab.corp.pingidentity.com/ux/pingux/commit/fad65bff6c8e09ce4c28bc9c20d868c1ce6f9eee))
2501
-
2502
-
2503
- ### Features
2504
-
2505
- * [UIP-4413] Tooltip Component ([c506716](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c506716df1d860d10dad1a4e87241edd4abffd26))
2506
- * [UIP-4432] Add Panel Header Recipe ([1cd8f4b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1cd8f4b2199c847a5bc8dee5c21be473f39a8aa0))
2507
- * [UIP-4451] Country picker recipe ([f851f0b](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f851f0b5cc64ff0f5ccdc6ff3dc14be36f9b4ef2))
2508
-
2509
-
2510
-
2511
-
2512
-
2513
- # [0.12.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.11.2...@pingux/astro@0.12.0) (2021-05-25)
2514
-
2515
-
2516
- ### Bug Fixes
2517
-
2518
- * [UIP-4410] Update styling for menu, menu items, and popover menu ([4932b9e](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4932b9e297435aa7fd9bbc7078046bade3f34df2))
2519
-
2520
-
2521
- ### Features
2522
-
2523
- * [UIP-4464] Arrow recipe ([f096a2a](https://gitlab.corp.pingidentity.com/ux/pingux/commit/f096a2a46607fc750e7df514a284b5a86512e847))
2524
- * [UIP-4471] Requirements List Component ([dcd60da](https://gitlab.corp.pingidentity.com/ux/pingux/commit/dcd60dab23d3b46ddffc22a1ecdcc42d1b9e6d80))
2525
-
2526
-
2527
-
2528
-
2529
-
2530
- ## [0.11.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.11.1...@pingux/astro@0.11.2) (2021-05-18)
2531
-
2532
-
2533
- ### Performance Improvements
2534
-
2535
- * [UIP-4470] ListBox virtualization for SelectField and ComboBoxField components ([c27dac3](https://gitlab.corp.pingidentity.com/ux/pingux/commit/c27dac3c0e134379b43701020519960001d90216))
2536
-
2537
-
2538
-
2539
-
2540
-
2541
- ## [0.11.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.11.0...@pingux/astro@0.11.1) (2021-05-18)
2542
-
2543
-
2544
- ### Bug Fixes
2545
-
2546
- * fix bad option export ([cbce6cc](https://gitlab.corp.pingidentity.com/ux/pingux/commit/cbce6cc694392b34c7ea3a88d7261e587ab6080a))
2547
-
2548
-
2549
-
2550
-
2551
-
2552
- # [0.9.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@0.8.0...@pingux/astro@0.9.0) (2021-04-27)
2553
-
2554
- **Note:** Version bump only for package @pingux/astro