@atlaskit/react-select 3.0.2 → 3.1.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
@@ -1,5 +1,15 @@
1
1
  # @atlaskit/react-select
2
2
 
3
+ ## 3.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#180250](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/180250)
8
+ [`105957fce131e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/105957fce131e) -
9
+ Deprecation of the `className` prop. If `className` is used for testing purposes, you should use
10
+ `testId` as an appropriate locator. If using `className` for styling purposes, use the
11
+ `components` API with the `xcss` prop.
12
+
3
13
  ## 3.0.2
4
14
 
5
15
  ### Patch Changes
@@ -81,6 +81,11 @@ export interface SelectProps<Option, IsMulti extends boolean, Group extends Grou
81
81
  captureMenuScroll: boolean;
82
82
  /**
83
83
  * Sets a className attribute on the outer component
84
+ *
85
+ *
86
+ * @deprecated {@link https://hello.atlassian.net/browse/ENGHEALTH-14529 Internal documentation for deprecation (no external access)}
87
+ * If used for testing purposes, use the `testId` prop as a locator instead.
88
+ * If used for styling purposes, use the `components` API with the xcss prop
84
89
  */
85
90
  className?: string;
86
91
  /**
@@ -81,6 +81,11 @@ export interface SelectProps<Option, IsMulti extends boolean, Group extends Grou
81
81
  captureMenuScroll: boolean;
82
82
  /**
83
83
  * Sets a className attribute on the outer component
84
+ *
85
+ *
86
+ * @deprecated {@link https://hello.atlassian.net/browse/ENGHEALTH-14529 Internal documentation for deprecation (no external access)}
87
+ * If used for testing purposes, use the `testId` prop as a locator instead.
88
+ * If used for styling purposes, use the `components` API with the xcss prop
84
89
  */
85
90
  className?: string;
86
91
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/react-select",
3
- "version": "3.0.2",
3
+ "version": "3.1.0",
4
4
  "description": "A forked version of react-select to only be used in atlaskit/select",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -8,8 +8,7 @@
8
8
  "registry": "https://registry.npmjs.org/"
9
9
  },
10
10
  "atlassian": {
11
- "team": "Design System Team",
12
- "runReact18": true
11
+ "team": "Design System Team"
13
12
  },
14
13
  "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
15
14
  "main": "dist/cjs/index.js",