@atlaskit/react-select 1.7.3 → 1.7.4
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 +8 -0
- package/dist/cjs/select.js +1 -3
- package/dist/es2019/select.js +0 -1
- package/dist/esm/select.js +1 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/react-select
|
|
2
2
|
|
|
3
|
+
## 1.7.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#114436](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/114436)
|
|
8
|
+
[`bbcb49e3d0f31`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bbcb49e3d0f31) -
|
|
9
|
+
Clean up extra testId
|
|
10
|
+
|
|
3
11
|
## 1.7.3
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/cjs/select.js
CHANGED
|
@@ -1594,9 +1594,7 @@ var Select = exports.default = /*#__PURE__*/function (_Component) {
|
|
|
1594
1594
|
return null;
|
|
1595
1595
|
}
|
|
1596
1596
|
menuUI = /*#__PURE__*/_react.default.createElement(NoOptionsMessage, (0, _extends2.default)({}, commonProps, {
|
|
1597
|
-
innerProps: _objectSpread({
|
|
1598
|
-
'data-testid': testId && "".concat(testId, "-select--no-options")
|
|
1599
|
-
}, testId && {
|
|
1597
|
+
innerProps: _objectSpread({}, testId && {
|
|
1600
1598
|
'data-testid': "".concat(testId, "-select--no-options")
|
|
1601
1599
|
})
|
|
1602
1600
|
}), _message);
|
package/dist/es2019/select.js
CHANGED
|
@@ -1627,7 +1627,6 @@ export default class Select extends Component {
|
|
|
1627
1627
|
}
|
|
1628
1628
|
menuUI = /*#__PURE__*/React.createElement(NoOptionsMessage, _extends({}, commonProps, {
|
|
1629
1629
|
innerProps: {
|
|
1630
|
-
'data-testid': testId && `${testId}-select--no-options`,
|
|
1631
1630
|
...(testId && {
|
|
1632
1631
|
'data-testid': `${testId}-select--no-options`
|
|
1633
1632
|
})
|
package/dist/esm/select.js
CHANGED
|
@@ -1585,9 +1585,7 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
|
1585
1585
|
return null;
|
|
1586
1586
|
}
|
|
1587
1587
|
menuUI = /*#__PURE__*/React.createElement(NoOptionsMessage, _extends({}, commonProps, {
|
|
1588
|
-
innerProps: _objectSpread({
|
|
1589
|
-
'data-testid': testId && "".concat(testId, "-select--no-options")
|
|
1590
|
-
}, testId && {
|
|
1588
|
+
innerProps: _objectSpread({}, testId && {
|
|
1591
1589
|
'data-testid': "".concat(testId, "-select--no-options")
|
|
1592
1590
|
})
|
|
1593
1591
|
}), _message);
|