@atlaskit/icon-object 6.11.0 → 7.0.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,31 @@
|
|
|
1
1
|
# @atlaskit/icon-object
|
|
2
2
|
|
|
3
|
+
## 7.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#117363](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/117363)
|
|
8
|
+
[`10a0f7f6c2027`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/10a0f7f6c2027) -
|
|
9
|
+
This package's `peerDependencies` have been adjusted for `react` and/or `react-dom` to reflect the
|
|
10
|
+
status of only supporting React 18 going forward. No explicit breaking change to React support has
|
|
11
|
+
been made in this release, but this is to signify going forward, breaking changes for React 16 or
|
|
12
|
+
React 17 may come via non-major semver releases.
|
|
13
|
+
|
|
14
|
+
Please refer this community post for more details:
|
|
15
|
+
https://community.developer.atlassian.com/t/rfc-78-dropping-support-for-react-16-and-rendering-in-a-react-18-concurrent-root-in-jira-and-confluence/87026
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
21
|
+
## 6.11.1
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- [#116456](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/116456)
|
|
26
|
+
[`b1978c1e70a88`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b1978c1e70a88) -
|
|
27
|
+
Remove old codemod and update dependncies.
|
|
28
|
+
|
|
3
29
|
## 6.11.0
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|
package/afm-jira/tsconfig.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/icon-object",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "An object icon is used to represent an Atlassian-specific content type.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -37,24 +37,23 @@
|
|
|
37
37
|
"build-glyphs": "ts-node --project ../../../tsconfig.node.json ./build/index.tsx"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@atlaskit/icon": "^
|
|
41
|
-
"@atlaskit/icon-lab": "^
|
|
42
|
-
"@atlaskit/platform-feature-flags": "^1.
|
|
40
|
+
"@atlaskit/icon": "^24.0.0",
|
|
41
|
+
"@atlaskit/icon-lab": "^3.0.0",
|
|
42
|
+
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"react": "^
|
|
46
|
+
"react": "^18.2.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@af/formatting": "*",
|
|
50
50
|
"@af/icon-build-process": "^2.4.0",
|
|
51
|
-
"@atlaskit/textfield": "^
|
|
52
|
-
"@atlaskit/tooltip": "^
|
|
51
|
+
"@atlaskit/textfield": "^8.0.0",
|
|
52
|
+
"@atlaskit/tooltip": "^20.0.0",
|
|
53
53
|
"@atlaskit/visual-regression": "*",
|
|
54
54
|
"@atlassian/codegen": "^0.1.2",
|
|
55
55
|
"@emotion/styled": "^11.0.0",
|
|
56
56
|
"fs-extra": "^4.0.2",
|
|
57
|
-
"jscodeshift": "^0.13.0",
|
|
58
57
|
"pkg-dir": "^4.2.0",
|
|
59
58
|
"react-dom": "^18.2.0",
|
|
60
59
|
"ts-node": "^10.9.1"
|
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
API,
|
|
3
|
-
default as core,
|
|
4
|
-
FileInfo,
|
|
5
|
-
ImportSpecifier,
|
|
6
|
-
ASTPath,
|
|
7
|
-
ImportDefaultSpecifier,
|
|
8
|
-
Options,
|
|
9
|
-
} from 'jscodeshift';
|
|
10
|
-
import { type Collection } from 'jscodeshift/src/Collection';
|
|
11
|
-
|
|
12
|
-
export const packageName = '@atlaskit/icon-object';
|
|
13
|
-
|
|
14
|
-
export default function transformer(file: FileInfo, api: API, options: Options) {
|
|
15
|
-
const j = api.jscodeshift;
|
|
16
|
-
const root = j(file.source, { quote: 'auto' });
|
|
17
|
-
if (hasImportDeclaration(j, root, packageName)) {
|
|
18
|
-
const imports = root.find(j.ImportSpecifier, {
|
|
19
|
-
imported: { name: 'metadata' },
|
|
20
|
-
});
|
|
21
|
-
imports.forEach((p: ASTPath<ImportSpecifier | ImportDefaultSpecifier>) => {
|
|
22
|
-
if (p.parentPath.parentPath.node.source.value !== packageName) {
|
|
23
|
-
return;
|
|
24
|
-
}
|
|
25
|
-
if (p.parentPath.node.specifiers.length === 1) {
|
|
26
|
-
p.node.type = 'ImportDefaultSpecifier';
|
|
27
|
-
p.parentPath.node.source.value = `${packageName}/metadata`;
|
|
28
|
-
} else if (p.node.local) {
|
|
29
|
-
tryCreateImport({
|
|
30
|
-
j,
|
|
31
|
-
base: root,
|
|
32
|
-
packageName: `${packageName}/metadata`,
|
|
33
|
-
relativeToPackage: packageName,
|
|
34
|
-
});
|
|
35
|
-
addToImport({
|
|
36
|
-
j,
|
|
37
|
-
base: root,
|
|
38
|
-
packageName: `${packageName}/metadata`,
|
|
39
|
-
importSpecifier: j.importDefaultSpecifier(j.identifier(p.node.local.name)),
|
|
40
|
-
});
|
|
41
|
-
p.replace();
|
|
42
|
-
}
|
|
43
|
-
});
|
|
44
|
-
return root.toSource(options.printOptions || { quote: 'single' });
|
|
45
|
-
}
|
|
46
|
-
return file.source;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
function hasImportDeclaration(
|
|
50
|
-
j: core.JSCodeshift,
|
|
51
|
-
source: ReturnType<typeof j>,
|
|
52
|
-
importPath: string,
|
|
53
|
-
) {
|
|
54
|
-
return !!source.find(j.ImportDeclaration).filter((path) => path.node.source.value === importPath)
|
|
55
|
-
.length;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
function tryCreateImport({
|
|
59
|
-
j,
|
|
60
|
-
base,
|
|
61
|
-
relativeToPackage,
|
|
62
|
-
packageName,
|
|
63
|
-
}: {
|
|
64
|
-
j: core.JSCodeshift;
|
|
65
|
-
base: Collection<any>;
|
|
66
|
-
relativeToPackage: string;
|
|
67
|
-
packageName: string;
|
|
68
|
-
}) {
|
|
69
|
-
const exists: boolean =
|
|
70
|
-
base.find(j.ImportDeclaration).filter((path) => path.value.source.value === packageName)
|
|
71
|
-
.length > 0;
|
|
72
|
-
|
|
73
|
-
if (exists) {
|
|
74
|
-
return;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
base
|
|
78
|
-
.find(j.ImportDeclaration)
|
|
79
|
-
.filter((path) => path.value.source.value === relativeToPackage)
|
|
80
|
-
.insertBefore(j.importDeclaration([], j.literal(packageName)));
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
function addToImport({
|
|
84
|
-
j,
|
|
85
|
-
base,
|
|
86
|
-
importSpecifier,
|
|
87
|
-
packageName,
|
|
88
|
-
}: {
|
|
89
|
-
j: core.JSCodeshift;
|
|
90
|
-
base: Collection<any>;
|
|
91
|
-
importSpecifier: ImportSpecifier | ImportDefaultSpecifier;
|
|
92
|
-
packageName: string;
|
|
93
|
-
}) {
|
|
94
|
-
base
|
|
95
|
-
.find(j.ImportDeclaration)
|
|
96
|
-
.filter((path) => path.value.source.value === packageName)
|
|
97
|
-
.replaceWith((declaration) => {
|
|
98
|
-
return j.importDeclaration(
|
|
99
|
-
[
|
|
100
|
-
// we are appending to the existing specifiers
|
|
101
|
-
// We are doing a filter hear because sometimes specifiers can be removed
|
|
102
|
-
// but they hand around in the declaration
|
|
103
|
-
...(declaration.value.specifiers || []).filter(
|
|
104
|
-
(item) => item.type === 'ImportSpecifier' && item.imported != null,
|
|
105
|
-
),
|
|
106
|
-
importSpecifier,
|
|
107
|
-
],
|
|
108
|
-
j.literal(packageName),
|
|
109
|
-
);
|
|
110
|
-
});
|
|
111
|
-
}
|
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
jest.disableAutomock();
|
|
2
|
-
|
|
3
|
-
import transformer, { packageName } from '../6.1.0-metadata-entry';
|
|
4
|
-
|
|
5
|
-
const defineInlineTest = require('jscodeshift/dist/testUtils').defineInlineTest;
|
|
6
|
-
|
|
7
|
-
describe('Update imports', () => {
|
|
8
|
-
defineInlineTest(
|
|
9
|
-
{ default: transformer, parser: 'tsx' },
|
|
10
|
-
{},
|
|
11
|
-
`
|
|
12
|
-
import { metadata } from '${packageName}';
|
|
13
|
-
console.log(metadata);
|
|
14
|
-
`,
|
|
15
|
-
`
|
|
16
|
-
import metadata from '${packageName}/metadata';
|
|
17
|
-
console.log(metadata);
|
|
18
|
-
`,
|
|
19
|
-
'should replace named metadata import from main entry point with default import from dedicated entry point',
|
|
20
|
-
);
|
|
21
|
-
defineInlineTest(
|
|
22
|
-
{ default: transformer, parser: 'tsx' },
|
|
23
|
-
{},
|
|
24
|
-
`
|
|
25
|
-
import { metadata as data } from '${packageName}';
|
|
26
|
-
console.log(data);
|
|
27
|
-
`,
|
|
28
|
-
`
|
|
29
|
-
import data from '${packageName}/metadata';
|
|
30
|
-
console.log(data);
|
|
31
|
-
`,
|
|
32
|
-
'should preserve renaming when converting from named import to default import',
|
|
33
|
-
);
|
|
34
|
-
defineInlineTest(
|
|
35
|
-
{ default: transformer, parser: 'tsx' },
|
|
36
|
-
{},
|
|
37
|
-
`
|
|
38
|
-
import { a, metadata, b } from '${packageName}';
|
|
39
|
-
console.log(metadata);
|
|
40
|
-
`,
|
|
41
|
-
`
|
|
42
|
-
import metadata from '${packageName}/metadata';
|
|
43
|
-
import { a, b } from '${packageName}';
|
|
44
|
-
console.log(metadata);
|
|
45
|
-
`,
|
|
46
|
-
'should preserve other named imports',
|
|
47
|
-
);
|
|
48
|
-
defineInlineTest(
|
|
49
|
-
{ default: transformer, parser: 'tsx' },
|
|
50
|
-
{},
|
|
51
|
-
`
|
|
52
|
-
import { a, metadata as data, b } from '${packageName}';
|
|
53
|
-
console.log(data);
|
|
54
|
-
`,
|
|
55
|
-
`
|
|
56
|
-
import data from '${packageName}/metadata';
|
|
57
|
-
import { a, b } from '${packageName}';
|
|
58
|
-
console.log(data);
|
|
59
|
-
`,
|
|
60
|
-
'should preserve other named imports, as well as metadata renaming',
|
|
61
|
-
);
|
|
62
|
-
defineInlineTest(
|
|
63
|
-
{ default: transformer, parser: 'tsx' },
|
|
64
|
-
{},
|
|
65
|
-
`
|
|
66
|
-
import Icon, { a, metadata as data, b } from '${packageName}';
|
|
67
|
-
console.log(a, data, b);
|
|
68
|
-
`,
|
|
69
|
-
`
|
|
70
|
-
import data from '${packageName}/metadata';
|
|
71
|
-
import Icon, { a, b } from '${packageName}';
|
|
72
|
-
console.log(a, data, b);
|
|
73
|
-
`,
|
|
74
|
-
'should preserve other named imports and default import, as well as metadata renaming',
|
|
75
|
-
);
|
|
76
|
-
defineInlineTest(
|
|
77
|
-
{ default: transformer, parser: 'tsx' },
|
|
78
|
-
{},
|
|
79
|
-
`
|
|
80
|
-
import metadata from '${packageName}/metadata';
|
|
81
|
-
console.log(metadata);
|
|
82
|
-
`,
|
|
83
|
-
`
|
|
84
|
-
import metadata from '${packageName}/metadata';
|
|
85
|
-
console.log(metadata);
|
|
86
|
-
`,
|
|
87
|
-
'should not affect existing good imports',
|
|
88
|
-
);
|
|
89
|
-
defineInlineTest(
|
|
90
|
-
{ default: transformer, parser: 'tsx' },
|
|
91
|
-
{},
|
|
92
|
-
`
|
|
93
|
-
import { metadata } from 'not-${packageName}';
|
|
94
|
-
`,
|
|
95
|
-
`
|
|
96
|
-
import { metadata } from 'not-${packageName}';
|
|
97
|
-
`,
|
|
98
|
-
'should not affect other packages',
|
|
99
|
-
);
|
|
100
|
-
defineInlineTest(
|
|
101
|
-
{ default: transformer, parser: 'tsx' },
|
|
102
|
-
{},
|
|
103
|
-
`
|
|
104
|
-
import { metadata } from '${packageName}/foo';
|
|
105
|
-
`,
|
|
106
|
-
`
|
|
107
|
-
import { metadata } from '${packageName}/foo';
|
|
108
|
-
`,
|
|
109
|
-
'should not affect other entrypoints',
|
|
110
|
-
);
|
|
111
|
-
defineInlineTest(
|
|
112
|
-
{ default: transformer, parser: 'tsx' },
|
|
113
|
-
{},
|
|
114
|
-
`
|
|
115
|
-
import { metadata } from '@atlaskit/icon';
|
|
116
|
-
import { metadata as objectIconMetadata } from '@atlaskit/icon-object';
|
|
117
|
-
import { metadata as fileTypeIconMetadata } from '@atlaskit/icon-file-type';
|
|
118
|
-
`,
|
|
119
|
-
`
|
|
120
|
-
import { metadata } from '@atlaskit/icon';
|
|
121
|
-
import objectIconMetadata from '@atlaskit/icon-object/metadata';
|
|
122
|
-
import { metadata as fileTypeIconMetadata } from '@atlaskit/icon-file-type';
|
|
123
|
-
`,
|
|
124
|
-
'should work as expected on a real-world case',
|
|
125
|
-
);
|
|
126
|
-
});
|