@atlaskit/icon 27.2.1 → 27.3.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 +8 -0
- package/afm-volt/tsconfig.json +27 -0
- package/package.json +20 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/icon
|
|
2
2
|
|
|
3
|
+
## 27.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#175869](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/175869)
|
|
8
|
+
[`e7f822af7edc1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e7f822af7edc1) -
|
|
9
|
+
Updated usages of deprecated icons with replacement icons
|
|
10
|
+
|
|
3
11
|
## 27.2.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.volt.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../volt/tsDist/@atlaskit__icon/app",
|
|
7
|
+
"rootDir": "../",
|
|
8
|
+
"composite": true
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*"
|
|
18
|
+
],
|
|
19
|
+
"references": [
|
|
20
|
+
{
|
|
21
|
+
"path": "../../../platform/feature-flags/afm-volt/tsconfig.json"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"path": "../../tokens/afm-volt/tsconfig.json"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/icon",
|
|
3
|
-
"version": "27.
|
|
3
|
+
"version": "27.3.0",
|
|
4
4
|
"description": "An icon is a symbol representing a command, device, directory, or common action.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -25,7 +25,21 @@
|
|
|
25
25
|
{
|
|
26
26
|
"title": "Icon (legacy)",
|
|
27
27
|
"id": "icon-legacy",
|
|
28
|
-
"sortKey": 1
|
|
28
|
+
"sortKey": 1,
|
|
29
|
+
"status": {
|
|
30
|
+
"type": "intent-to-deprecate",
|
|
31
|
+
"description": "Legacy icons (`@atlaskit/icon/glyph`) are deprecated. We recommend migrating to our new iconography system.",
|
|
32
|
+
"actions": [
|
|
33
|
+
{
|
|
34
|
+
"text": "View new icons",
|
|
35
|
+
"href": "/components/icon/"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"text": "Migration Guide",
|
|
39
|
+
"href": "/components/icon/migration-guide/"
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|
|
29
43
|
},
|
|
30
44
|
{
|
|
31
45
|
"title": "Icon tile",
|
|
@@ -74,8 +88,7 @@
|
|
|
74
88
|
}
|
|
75
89
|
}
|
|
76
90
|
]
|
|
77
|
-
}
|
|
78
|
-
"runReact18": true
|
|
91
|
+
}
|
|
79
92
|
},
|
|
80
93
|
"scripts": {
|
|
81
94
|
"build-glyphs": "ts-node --project ../../../tsconfig.node.json ./build/index.tsx"
|
|
@@ -105,7 +118,7 @@
|
|
|
105
118
|
"@atlaskit/icon-file-type": "^7.0.0",
|
|
106
119
|
"@atlaskit/icon-object": "^7.1.0",
|
|
107
120
|
"@atlaskit/link": "^3.2.0",
|
|
108
|
-
"@atlaskit/logo": "^19.
|
|
121
|
+
"@atlaskit/logo": "^19.5.0",
|
|
109
122
|
"@atlaskit/menu": "^8.0.0",
|
|
110
123
|
"@atlaskit/modal-dialog": "^14.2.0",
|
|
111
124
|
"@atlaskit/primitives": "^14.10.0",
|
|
@@ -175,12 +188,10 @@
|
|
|
175
188
|
},
|
|
176
189
|
"platform-feature-flags": {
|
|
177
190
|
"platform-visual-refresh-icons": {
|
|
178
|
-
"type": "boolean"
|
|
179
|
-
"showOnWebsiteForTransitiveDependencies": true
|
|
191
|
+
"type": "boolean"
|
|
180
192
|
},
|
|
181
193
|
"platform-visual-refresh-icons-legacy-facade": {
|
|
182
|
-
"type": "boolean"
|
|
183
|
-
"showOnWebsiteForTransitiveDependencies": true
|
|
194
|
+
"type": "boolean"
|
|
184
195
|
},
|
|
185
196
|
"platform-visual-refresh-icons-facade-button-fix": {
|
|
186
197
|
"type": "boolean"
|