@atlaskit/eslint-plugin-design-system 4.7.2 → 4.8.2
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 +18 -0
- package/dist/cjs/rules/no-deprecated-apis/index.js +3 -2
- package/dist/cjs/rules/no-deprecated-imports/paths.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/rules/no-deprecated-apis/index.js +3 -2
- package/dist/es2019/rules/no-deprecated-imports/paths.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/rules/no-deprecated-apis/index.js +3 -2
- package/dist/esm/rules/no-deprecated-imports/paths.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/rules/no-deprecated-imports/paths.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/eslint-plugin-design-system
|
|
2
2
|
|
|
3
|
+
## 4.8.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
|
|
8
|
+
|
|
9
|
+
## 4.8.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`805d0fde0fa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/805d0fde0fa) - Bump eslint-codemod-utils to 1.4.0, no real changes as no new imports are exercised
|
|
14
|
+
|
|
15
|
+
## 4.8.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [`725f5fde8d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/725f5fde8d9) - Adds a rule to restrict usage of deprecated attribute `type` for inline-message
|
|
20
|
+
|
|
3
21
|
## 4.7.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -13,9 +13,10 @@ var unsafeOverridesConfig = {
|
|
|
13
13
|
cssFn: ['@atlaskit/menu', '@atlaskit/side-navigation'],
|
|
14
14
|
overrides: ['@atlaskit/drawer', '@atlaskit/menu', '@atlaskit/side-navigation'],
|
|
15
15
|
innerRef: ['@atlaskit/banner'],
|
|
16
|
-
isOpen: ['@atlaskit/banner']
|
|
16
|
+
isOpen: ['@atlaskit/banner'],
|
|
17
|
+
type: ['@atlaskit/inline-message']
|
|
17
18
|
};
|
|
18
|
-
var unsafeOverrides = ['cssFn', 'overrides', 'innerRef', 'isOpen'];
|
|
19
|
+
var unsafeOverrides = ['cssFn', 'overrides', 'innerRef', 'isOpen', 'type'];
|
|
19
20
|
var rule = {
|
|
20
21
|
meta: {
|
|
21
22
|
type: 'suggestion',
|
|
@@ -76,7 +76,7 @@ var restrictedPaths = [{
|
|
|
76
76
|
|
|
77
77
|
}, {
|
|
78
78
|
path: '@atlaskit/icon-priority',
|
|
79
|
-
message: "icon-priority
|
|
79
|
+
message: "icon-priority was deprecated due to limited usage in Cloud products and is no longer supported."
|
|
80
80
|
}, {
|
|
81
81
|
path: '@atlaskit/logo/constants',
|
|
82
82
|
imports: _logoPaths.namedLogoConstantsExports
|
package/dist/cjs/version.json
CHANGED
|
@@ -4,9 +4,10 @@ const unsafeOverridesConfig = {
|
|
|
4
4
|
cssFn: ['@atlaskit/menu', '@atlaskit/side-navigation'],
|
|
5
5
|
overrides: ['@atlaskit/drawer', '@atlaskit/menu', '@atlaskit/side-navigation'],
|
|
6
6
|
innerRef: ['@atlaskit/banner'],
|
|
7
|
-
isOpen: ['@atlaskit/banner']
|
|
7
|
+
isOpen: ['@atlaskit/banner'],
|
|
8
|
+
type: ['@atlaskit/inline-message']
|
|
8
9
|
};
|
|
9
|
-
const unsafeOverrides = ['cssFn', 'overrides', 'innerRef', 'isOpen'];
|
|
10
|
+
const unsafeOverrides = ['cssFn', 'overrides', 'innerRef', 'isOpen', 'type'];
|
|
10
11
|
const rule = {
|
|
11
12
|
meta: {
|
|
12
13
|
type: 'suggestion',
|
|
@@ -67,7 +67,7 @@ export const restrictedPaths = [{
|
|
|
67
67
|
|
|
68
68
|
}, {
|
|
69
69
|
path: '@atlaskit/icon-priority',
|
|
70
|
-
message: `icon-priority
|
|
70
|
+
message: `icon-priority was deprecated due to limited usage in Cloud products and is no longer supported.`
|
|
71
71
|
}, {
|
|
72
72
|
path: '@atlaskit/logo/constants',
|
|
73
73
|
imports: namedLogoConstantsExports
|
package/dist/es2019/version.json
CHANGED
|
@@ -4,9 +4,10 @@ var unsafeOverridesConfig = {
|
|
|
4
4
|
cssFn: ['@atlaskit/menu', '@atlaskit/side-navigation'],
|
|
5
5
|
overrides: ['@atlaskit/drawer', '@atlaskit/menu', '@atlaskit/side-navigation'],
|
|
6
6
|
innerRef: ['@atlaskit/banner'],
|
|
7
|
-
isOpen: ['@atlaskit/banner']
|
|
7
|
+
isOpen: ['@atlaskit/banner'],
|
|
8
|
+
type: ['@atlaskit/inline-message']
|
|
8
9
|
};
|
|
9
|
-
var unsafeOverrides = ['cssFn', 'overrides', 'innerRef', 'isOpen'];
|
|
10
|
+
var unsafeOverrides = ['cssFn', 'overrides', 'innerRef', 'isOpen', 'type'];
|
|
10
11
|
var rule = {
|
|
11
12
|
meta: {
|
|
12
13
|
type: 'suggestion',
|
|
@@ -67,7 +67,7 @@ export var restrictedPaths = [{
|
|
|
67
67
|
|
|
68
68
|
}, {
|
|
69
69
|
path: '@atlaskit/icon-priority',
|
|
70
|
-
message: "icon-priority
|
|
70
|
+
message: "icon-priority was deprecated due to limited usage in Cloud products and is no longer supported."
|
|
71
71
|
}, {
|
|
72
72
|
path: '@atlaskit/logo/constants',
|
|
73
73
|
imports: namedLogoConstantsExports
|
package/dist/esm/version.json
CHANGED
|
@@ -58,7 +58,7 @@ export declare const restrictedPaths: readonly [{
|
|
|
58
58
|
}[];
|
|
59
59
|
}, {
|
|
60
60
|
readonly path: "@atlaskit/icon-priority";
|
|
61
|
-
readonly message: "icon-priority
|
|
61
|
+
readonly message: "icon-priority was deprecated due to limited usage in Cloud products and is no longer supported.";
|
|
62
62
|
}, {
|
|
63
63
|
readonly path: "@atlaskit/logo/constants";
|
|
64
64
|
readonly imports: {
|
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.
|
|
4
|
+
"version": "4.8.2",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@atlaskit/tokens": "^0.10.0",
|
|
30
30
|
"@babel/runtime": "^7.0.0",
|
|
31
|
-
"eslint-codemod-utils": "^1.
|
|
31
|
+
"eslint-codemod-utils": "^1.4.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@atlaskit/ds-lib": "^2.1.0",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"react": "^16.8.0",
|
|
41
41
|
"ts-node": "^10.0.0",
|
|
42
42
|
"tsconfig-paths": "^3.9.0",
|
|
43
|
-
"typescript": "4.
|
|
43
|
+
"typescript": "4.3.5"
|
|
44
44
|
},
|
|
45
45
|
"techstack": {
|
|
46
46
|
"@atlassian/frontend": {
|