@pingux/astro 2.8.2-alpha.4 → 2.8.3-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,18 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [2.8.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.8.1...@pingux/astro@2.8.2) (2023-07-20)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* [UIP-6324] EnvironmentBreadcrumb screenreader announce available options number ([2f66176](https://gitlab.corp.pingidentity.com/ux/pingux/commit/2f66176b7db8c837c0786a986b9e8d33aed909ac))
|
12
|
+
* [UIP-6410]: export SaveBar from index ([49561ad](https://gitlab.corp.pingidentity.com/ux/pingux/commit/49561ad23fedffa51f534c0e175947fa6e51dd89))
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
|
6
18
|
## [2.8.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.8.0...@pingux/astro@2.8.1) (2023-07-18)
|
7
19
|
|
8
20
|
|
@@ -122,11 +122,11 @@ CodeView.propTypes = {
|
|
122
122
|
/** Whether the CodeView hides the copy button. */
|
123
123
|
hasNoCopyButton: _propTypes["default"].bool,
|
124
124
|
/**
|
125
|
-
* Which programming language the CodeView should use for highlighting. A list of default languages is listed [here](https://github.com/FormidableLabs/prism-react-renderer/blob/master/
|
125
|
+
* Which programming language the CodeView should use for highlighting. A list of default languages is listed [here](https://github.com/FormidableLabs/prism-react-renderer/blob/master/packages/generate-prism-languages/index.ts#L9-L23).
|
126
126
|
*
|
127
127
|
*
|
128
128
|
* Additional languages may be added, see
|
129
|
-
* [CodeView with additional language](
|
129
|
+
* [CodeView with additional language](/?path=/docs/components-codeview--with-additional-language)
|
130
130
|
* for more information.
|
131
131
|
*/
|
132
132
|
language: _propTypes["default"].string,
|
@@ -111,11 +111,11 @@ CodeView.propTypes = {
|
|
111
111
|
/** Whether the CodeView hides the copy button. */
|
112
112
|
hasNoCopyButton: PropTypes.bool,
|
113
113
|
/**
|
114
|
-
* Which programming language the CodeView should use for highlighting. A list of default languages is listed [here](https://github.com/FormidableLabs/prism-react-renderer/blob/master/
|
114
|
+
* Which programming language the CodeView should use for highlighting. A list of default languages is listed [here](https://github.com/FormidableLabs/prism-react-renderer/blob/master/packages/generate-prism-languages/index.ts#L9-L23).
|
115
115
|
*
|
116
116
|
*
|
117
117
|
* Additional languages may be added, see
|
118
|
-
* [CodeView with additional language](
|
118
|
+
* [CodeView with additional language](/?path=/docs/components-codeview--with-additional-language)
|
119
119
|
* for more information.
|
120
120
|
*/
|
121
121
|
language: PropTypes.string,
|