@atlaskit/editor-plugin-text-color 8.1.21 → 8.1.22
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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-text-color
|
|
2
2
|
|
|
3
|
+
## 8.1.22
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`ddd049a745d38`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ddd049a745d38) -
|
|
8
|
+
Internal change to how legacy colors are applied. No visual changes.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 8.1.21
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -4,11 +4,10 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.overrideMarks = exports.DEFAULT_COLOR = void 0;
|
|
7
|
-
var _colors = require("@atlaskit/theme/colors");
|
|
8
7
|
var overrideMarks = exports.overrideMarks = ['backgroundColor'];
|
|
9
8
|
var DEFAULT_COLOR = exports.DEFAULT_COLOR = {
|
|
10
|
-
// TODO: DSP-4137 - Remove usage of
|
|
9
|
+
// TODO: DSP-4137 - Remove usage of hardcoded color
|
|
11
10
|
/* eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage */
|
|
12
|
-
color:
|
|
11
|
+
color: '#172b4d',
|
|
13
12
|
label: 'Dark gray'
|
|
14
13
|
};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import { N800 } from '@atlaskit/theme/colors';
|
|
2
1
|
export const overrideMarks = ['backgroundColor'];
|
|
3
2
|
export const DEFAULT_COLOR = {
|
|
4
|
-
// TODO: DSP-4137 - Remove usage of
|
|
3
|
+
// TODO: DSP-4137 - Remove usage of hardcoded color
|
|
5
4
|
/* eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage */
|
|
6
|
-
color:
|
|
5
|
+
color: '#172b4d',
|
|
7
6
|
label: 'Dark gray'
|
|
8
7
|
};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import { N800 } from '@atlaskit/theme/colors';
|
|
2
1
|
export var overrideMarks = ['backgroundColor'];
|
|
3
2
|
export var DEFAULT_COLOR = {
|
|
4
|
-
// TODO: DSP-4137 - Remove usage of
|
|
3
|
+
// TODO: DSP-4137 - Remove usage of hardcoded color
|
|
5
4
|
/* eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage */
|
|
6
|
-
color:
|
|
5
|
+
color: '#172b4d',
|
|
7
6
|
label: 'Dark gray'
|
|
8
7
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-text-color",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.22",
|
|
4
4
|
"description": "Text color plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,14 +46,13 @@
|
|
|
46
46
|
"@atlaskit/icon": "^34.0.0",
|
|
47
47
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
48
48
|
"@atlaskit/primitives": "^18.1.0",
|
|
49
|
-
"@atlaskit/
|
|
50
|
-
"@atlaskit/tmp-editor-statsig": "^56.0.0",
|
|
49
|
+
"@atlaskit/tmp-editor-statsig": "^57.0.0",
|
|
51
50
|
"@atlaskit/tokens": "^12.0.0",
|
|
52
51
|
"@babel/runtime": "^7.0.0",
|
|
53
52
|
"@emotion/react": "^11.7.1"
|
|
54
53
|
},
|
|
55
54
|
"peerDependencies": {
|
|
56
|
-
"@atlaskit/editor-common": "^112.
|
|
55
|
+
"@atlaskit/editor-common": "^112.19.0",
|
|
57
56
|
"react": "^18.2.0",
|
|
58
57
|
"react-dom": "^18.2.0",
|
|
59
58
|
"react-intl-next": "npm:react-intl@^5.18.1"
|