@atlaskit/select 20.0.6 → 20.0.7
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
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/select
|
|
2
2
|
|
|
3
|
+
## 20.0.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#127093](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/127093)
|
|
8
|
+
[`1378ea7a99ce1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1378ea7a99ce1) -
|
|
9
|
+
Upgrades `jscodeshift` to handle generics properly.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 20.0.6
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -30,7 +30,7 @@ describe('Update Select props', () => {
|
|
|
30
30
|
import Foo from '@atlaskit/select';
|
|
31
31
|
|
|
32
32
|
const App = () => {
|
|
33
|
-
return <Foo
|
|
33
|
+
return (<Foo />);
|
|
34
34
|
};
|
|
35
35
|
`,
|
|
36
36
|
'should remove all deleted props with aliased import name',
|
|
@@ -113,7 +113,7 @@ describe('Update Select props', () => {
|
|
|
113
113
|
import ${variant} from '@atlaskit/select';
|
|
114
114
|
|
|
115
115
|
const App = () => {
|
|
116
|
-
return <${identifier}
|
|
116
|
+
return (<${identifier} />);
|
|
117
117
|
};
|
|
118
118
|
`,
|
|
119
119
|
`should remove all deleted props for ${identifier} `,
|
|
@@ -291,7 +291,7 @@ describe('Update Select props', () => {
|
|
|
291
291
|
import ${identifier === 'Select' ? `Ak${identifier}` : `{${identifier} as Ak${identifier}}`} from '@atlaskit/select';
|
|
292
292
|
|
|
293
293
|
const App = () => {
|
|
294
|
-
return <Ak${identifier}
|
|
294
|
+
return (<Ak${identifier} />);
|
|
295
295
|
};
|
|
296
296
|
`,
|
|
297
297
|
`should handle named imports for ${identifier} `,
|
package/dist/cjs/Select.js
CHANGED
|
@@ -11,7 +11,7 @@ var _createSelect = _interopRequireDefault(require("./createSelect"));
|
|
|
11
11
|
/* eslint-disable @repo/internal/react/require-jsdoc */
|
|
12
12
|
|
|
13
13
|
var packageName = "@atlaskit/select";
|
|
14
|
-
var packageVersion = "20.0.
|
|
14
|
+
var packageVersion = "20.0.7";
|
|
15
15
|
var SelectWithoutAnalytics = exports.SelectWithoutAnalytics = (0, _createSelect.default)(_async.default);
|
|
16
16
|
var createAndFireEventOnAtlaskit = (0, _analyticsNext.createAndFireEvent)('atlaskit');
|
|
17
17
|
var Select = (0, _analyticsNext.withAnalyticsContext)({
|
package/dist/es2019/Select.js
CHANGED
|
@@ -3,7 +3,7 @@ import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@
|
|
|
3
3
|
import AsyncSelect from '@atlaskit/react-select/async';
|
|
4
4
|
import createSelect from './createSelect';
|
|
5
5
|
const packageName = "@atlaskit/select";
|
|
6
|
-
const packageVersion = "20.0.
|
|
6
|
+
const packageVersion = "20.0.7";
|
|
7
7
|
export const SelectWithoutAnalytics = createSelect(AsyncSelect);
|
|
8
8
|
const createAndFireEventOnAtlaskit = createAndFireEvent('atlaskit');
|
|
9
9
|
const Select = withAnalyticsContext({
|
package/dist/esm/Select.js
CHANGED
|
@@ -3,7 +3,7 @@ import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@
|
|
|
3
3
|
import AsyncSelect from '@atlaskit/react-select/async';
|
|
4
4
|
import createSelect from './createSelect';
|
|
5
5
|
var packageName = "@atlaskit/select";
|
|
6
|
-
var packageVersion = "20.0.
|
|
6
|
+
var packageVersion = "20.0.7";
|
|
7
7
|
export var SelectWithoutAnalytics = createSelect(AsyncSelect);
|
|
8
8
|
var createAndFireEventOnAtlaskit = createAndFireEvent('atlaskit');
|
|
9
9
|
var Select = withAnalyticsContext({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/select",
|
|
3
|
-
"version": "20.0.
|
|
3
|
+
"version": "20.0.7",
|
|
4
4
|
"description": "Select allows users to make a single selection or multiple selections from a list of options.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"@testing-library/user-event": "^14.4.3",
|
|
83
83
|
"ast-types": "^0.13.3",
|
|
84
84
|
"jest-in-case": "^1.0.2",
|
|
85
|
-
"jscodeshift": "^0.
|
|
85
|
+
"jscodeshift": "^0.16.1",
|
|
86
86
|
"react-dom": "^18.2.0",
|
|
87
87
|
"react-select-event": "^5.5.0",
|
|
88
88
|
"typescript": "~5.4.2"
|