@atlaskit/eslint-plugin-design-system 4.7.0 → 4.7.1

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,11 @@
1
1
  # @atlaskit/eslint-plugin-design-system
2
2
 
3
+ ## 4.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`37ac5652977`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37ac5652977) - Mark `isOpen` and `innerRef` props on @atlaskit/banner as deprecated.
8
+
3
9
  ## 4.7.0
4
10
 
5
11
  ### Minor Changes
@@ -11,9 +11,11 @@ var _getImportNodeBySource = require("../utils/get-import-node-by-source");
11
11
 
12
12
  var unsafeOverridesConfig = {
13
13
  cssFn: ['@atlaskit/menu', '@atlaskit/side-navigation'],
14
- overrides: ['@atlaskit/drawer', '@atlaskit/menu', '@atlaskit/side-navigation']
14
+ overrides: ['@atlaskit/drawer', '@atlaskit/menu', '@atlaskit/side-navigation'],
15
+ innerRef: ['@atlaskit/banner'],
16
+ isOpen: ['@atlaskit/banner']
15
17
  };
16
- var unsafeOverrides = ['cssFn', 'overrides'];
18
+ var unsafeOverrides = ['cssFn', 'overrides', 'innerRef', 'isOpen'];
17
19
  var rule = {
18
20
  meta: {
19
21
  type: 'suggestion',
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/eslint-plugin-design-system",
3
- "version": "4.7.0",
3
+ "version": "4.7.1",
4
4
  "sideEffects": false
5
5
  }
@@ -2,9 +2,11 @@ import { closestOfType, isNodeOfType } from 'eslint-codemod-utils';
2
2
  import { getImportedNodeBySource } from '../utils/get-import-node-by-source';
3
3
  const unsafeOverridesConfig = {
4
4
  cssFn: ['@atlaskit/menu', '@atlaskit/side-navigation'],
5
- overrides: ['@atlaskit/drawer', '@atlaskit/menu', '@atlaskit/side-navigation']
5
+ overrides: ['@atlaskit/drawer', '@atlaskit/menu', '@atlaskit/side-navigation'],
6
+ innerRef: ['@atlaskit/banner'],
7
+ isOpen: ['@atlaskit/banner']
6
8
  };
7
- const unsafeOverrides = ['cssFn', 'overrides'];
9
+ const unsafeOverrides = ['cssFn', 'overrides', 'innerRef', 'isOpen'];
8
10
  const rule = {
9
11
  meta: {
10
12
  type: 'suggestion',
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/eslint-plugin-design-system",
3
- "version": "4.7.0",
3
+ "version": "4.7.1",
4
4
  "sideEffects": false
5
5
  }
@@ -2,9 +2,11 @@ import { closestOfType, isNodeOfType } from 'eslint-codemod-utils';
2
2
  import { getImportedNodeBySource } from '../utils/get-import-node-by-source';
3
3
  var unsafeOverridesConfig = {
4
4
  cssFn: ['@atlaskit/menu', '@atlaskit/side-navigation'],
5
- overrides: ['@atlaskit/drawer', '@atlaskit/menu', '@atlaskit/side-navigation']
5
+ overrides: ['@atlaskit/drawer', '@atlaskit/menu', '@atlaskit/side-navigation'],
6
+ innerRef: ['@atlaskit/banner'],
7
+ isOpen: ['@atlaskit/banner']
6
8
  };
7
- var unsafeOverrides = ['cssFn', 'overrides'];
9
+ var unsafeOverrides = ['cssFn', 'overrides', 'innerRef', 'isOpen'];
8
10
  var rule = {
9
11
  meta: {
10
12
  type: 'suggestion',
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/eslint-plugin-design-system",
3
- "version": "4.7.0",
3
+ "version": "4.7.1",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@atlaskit/eslint-plugin-design-system",
3
3
  "description": "The essential plugin for use with the Atlassian Design System.",
4
- "version": "4.7.0",
4
+ "version": "4.7.1",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "publishConfig": {
7
7
  "registry": "https://registry.npmjs.org/"