@atlaskit/editor-plugin-text-color 10.0.17 → 10.1.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 +17 -0
- package/dist/cjs/entry-points/main.js +1 -0
- package/dist/cjs/entry-points/text-color-plugin-type.js +1 -0
- package/dist/cjs/entry-points/text-color-plugin.js +12 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/es2019/entry-points/main.js +0 -0
- package/dist/es2019/entry-points/text-color-plugin-type.js +0 -0
- package/dist/es2019/entry-points/text-color-plugin.js +2 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/esm/entry-points/main.js +0 -0
- package/dist/esm/entry-points/text-color-plugin-type.js +0 -0
- package/dist/esm/entry-points/text-color-plugin.js +2 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/types/entry-points/main.d.ts +1 -0
- package/dist/types/entry-points/text-color-plugin-type.d.ts +1 -0
- package/dist/types/entry-points/text-color-plugin.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/main.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/text-color-plugin-type.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/text-color-plugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/main/package.json +17 -0
- package/package.json +8 -8
- package/text-color-plugin/package.json +17 -0
- package/text-color-plugin-type/package.json +17 -0
- package/types/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-text-color
|
|
2
2
|
|
|
3
|
+
## 10.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`41168b2bd2790`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/41168b2bd2790) -
|
|
8
|
+
Autofix: add explicit package exports (barrel removal)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
14
|
+
## 10.0.18
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 10.0.17
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "textColorPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _textColorPlugin.textColorPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _textColorPlugin = require("../textColorPlugin");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { TextColorPluginState, TextColorPluginConfig } from '../pm-plugins/main';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { TextColorPlugin, TextColorPluginOptions, Dependencies } from '../textColorPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { textColorPlugin } from '../textColorPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { TextColorInputMethod } from '../types/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { TextColorPluginState, TextColorPluginConfig } from '../pm-plugins/main';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { TextColorPlugin, TextColorPluginOptions, Dependencies } from '../textColorPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { textColorPlugin } from '../textColorPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { TextColorInputMethod } from '../types/index';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-text-color/main",
|
|
3
|
+
"main": "../dist/cjs/entry-points/main.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/main.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/main.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/main.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/main.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-text-color",
|
|
3
|
-
"version": "10.0
|
|
3
|
+
"version": "10.1.0",
|
|
4
4
|
"description": "Text color plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,25 +34,25 @@
|
|
|
34
34
|
"@atlaskit/css": "^0.19.0",
|
|
35
35
|
"@atlaskit/editor-palette": "^2.1.0",
|
|
36
36
|
"@atlaskit/editor-plugin-analytics": "^10.0.0",
|
|
37
|
-
"@atlaskit/editor-plugin-highlight": "^10.
|
|
38
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^11.
|
|
39
|
-
"@atlaskit/editor-plugin-selection-toolbar": "^11.
|
|
40
|
-
"@atlaskit/editor-plugin-toolbar": "^7.
|
|
37
|
+
"@atlaskit/editor-plugin-highlight": "^10.1.0",
|
|
38
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^11.1.0",
|
|
39
|
+
"@atlaskit/editor-plugin-selection-toolbar": "^11.3.0",
|
|
40
|
+
"@atlaskit/editor-plugin-toolbar": "^7.3.0",
|
|
41
41
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
42
42
|
"@atlaskit/editor-shared-styles": "^3.10.0",
|
|
43
|
-
"@atlaskit/editor-toolbar": "^1.
|
|
43
|
+
"@atlaskit/editor-toolbar": "^1.2.0",
|
|
44
44
|
"@atlaskit/editor-toolbar-model": "^0.4.0",
|
|
45
45
|
"@atlaskit/heading": "^5.4.0",
|
|
46
46
|
"@atlaskit/icon": "^34.5.0",
|
|
47
47
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
48
48
|
"@atlaskit/primitives": "^19.0.0",
|
|
49
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
49
|
+
"@atlaskit/tmp-editor-statsig": "^80.0.0",
|
|
50
50
|
"@atlaskit/tokens": "^13.0.0",
|
|
51
51
|
"@babel/runtime": "^7.0.0",
|
|
52
52
|
"@emotion/react": "^11.7.1"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@atlaskit/editor-common": "^114.
|
|
55
|
+
"@atlaskit/editor-common": "^114.30.0",
|
|
56
56
|
"react": "^18.2.0",
|
|
57
57
|
"react-dom": "^18.2.0",
|
|
58
58
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-text-color/text-color-plugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/text-color-plugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/text-color-plugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/text-color-plugin.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/text-color-plugin.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/text-color-plugin.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-text-color/text-color-plugin-type",
|
|
3
|
+
"main": "../dist/cjs/entry-points/text-color-plugin-type.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/text-color-plugin-type.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/text-color-plugin-type.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/text-color-plugin-type.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/text-color-plugin-type.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-text-color/types",
|
|
3
|
+
"main": "../dist/cjs/entry-points/types.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/types.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/types.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|