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