@pingux/astro 2.0.4-alpha.3 → 2.0.5-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 +15 -0
- package/lib/cjs/components/ComboBoxField/ComboBoxField.js +1 -4
- package/lib/cjs/components/ComboBoxField/ComboBoxField.test.js +1 -1
- package/lib/components/ComboBoxField/ComboBoxField.js +1 -4
- package/lib/components/ComboBoxField/ComboBoxField.test.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,21 @@
|
|
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.0.4](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.0.3...@pingux/astro@2.0.4) (2023-04-13)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* [UIP-6041]: LinkedListView: incorrect hover state ([72c2ff5](https://gitlab.corp.pingidentity.com/ux/pingux/commit/72c2ff553040d26e2d781622a5d063f371318482))
|
12
|
+
* [UIP-6177] hovering over when scrolling in Listview for Firefox ([a9e3bbb](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a9e3bbb01b091a253921c164a5eac953bf249dc0))
|
13
|
+
* [UIP-6185] Add aria label to MultiValuesField list options and TooltipTrigger ([ad15d45](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ad15d45820734c178b3de8f3962310fc714361e2))
|
14
|
+
* [UIP-6230] TrialExperienceNav: vertical line overlap ([eede2a7](https://gitlab.corp.pingidentity.com/ux/pingux/commit/eede2a79abdef3a5491781d55533fa6674d43045))
|
15
|
+
* [UIP-6231] Environment Breadcrumbs selection issues ([ae939f9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ae939f96624cd8e8757700c465a9b071e80cd425))
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
6
21
|
## [2.0.3](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@2.0.2...@pingux/astro@2.0.3) (2023-04-11)
|
7
22
|
|
8
23
|
|
@@ -196,16 +196,13 @@ var ComboBoxField = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
196
196
|
});
|
197
197
|
var listBox = !isReadOnly && (0, _react2.jsx)(_PopoverContainer["default"], {
|
198
198
|
hasNoArrow: true,
|
199
|
-
isDismissable: true,
|
200
199
|
isNonModal: true,
|
201
200
|
isOpen: state.isOpen,
|
202
201
|
onClose: state.close,
|
203
202
|
placement: placement,
|
204
203
|
ref: popoverRef,
|
205
204
|
style: style
|
206
|
-
}, (0, _react2.jsx)(_reactAria.FocusScope, {
|
207
|
-
restoreFocus: true
|
208
|
-
}, (0, _react2.jsx)(_reactAria.DismissButton, {
|
205
|
+
}, (0, _react2.jsx)(_reactAria.FocusScope, null, (0, _react2.jsx)(_reactAria.DismissButton, {
|
209
206
|
onDismiss: state.close
|
210
207
|
}), (0, _react2.jsx)(_ScrollBox["default"], scrollBoxProps, (0, _react2.jsx)(_ListBox["default"], (0, _extends2["default"])({
|
211
208
|
ref: listBoxRef,
|
@@ -936,7 +936,7 @@ test('two listbox can not be open at the same time', function () {
|
|
936
936
|
})).toBeInTheDocument();
|
937
937
|
|
938
938
|
// first click closes first popover, second click opens the second popover
|
939
|
-
_userEvent["default"].
|
939
|
+
_userEvent["default"].click(button2);
|
940
940
|
expect(_testWrapper.screen.queryByRole('listbox')).toBeInTheDocument();
|
941
941
|
expect(_testWrapper.screen.queryAllByRole('option')).toHaveLength(2);
|
942
942
|
expect(_testWrapper.screen.queryByRole('option', {
|
@@ -186,16 +186,13 @@ var ComboBoxField = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
186
186
|
});
|
187
187
|
var listBox = !isReadOnly && ___EmotionJSX(PopoverContainer, {
|
188
188
|
hasNoArrow: true,
|
189
|
-
isDismissable: true,
|
190
189
|
isNonModal: true,
|
191
190
|
isOpen: state.isOpen,
|
192
191
|
onClose: state.close,
|
193
192
|
placement: placement,
|
194
193
|
ref: popoverRef,
|
195
194
|
style: style
|
196
|
-
}, ___EmotionJSX(FocusScope, {
|
197
|
-
restoreFocus: true
|
198
|
-
}, ___EmotionJSX(DismissButton, {
|
195
|
+
}, ___EmotionJSX(FocusScope, null, ___EmotionJSX(DismissButton, {
|
199
196
|
onDismiss: state.close
|
200
197
|
}), ___EmotionJSX(ScrollBox, scrollBoxProps, ___EmotionJSX(ListBox, _extends({
|
201
198
|
ref: listBoxRef,
|
@@ -928,7 +928,7 @@ test('two listbox can not be open at the same time', function () {
|
|
928
928
|
})).toBeInTheDocument();
|
929
929
|
|
930
930
|
// first click closes first popover, second click opens the second popover
|
931
|
-
userEvent.
|
931
|
+
userEvent.click(button2);
|
932
932
|
expect(screen.queryByRole('listbox')).toBeInTheDocument();
|
933
933
|
expect(screen.queryAllByRole('option')).toHaveLength(2);
|
934
934
|
expect(screen.queryByRole('option', {
|