@atlaskit/editor-plugin-primary-toolbar 11.0.18 → 11.1.1
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 +13 -0
- package/dist/cjs/entry-points/primary-toolbar-plugin-type.js +1 -0
- package/dist/cjs/entry-points/primary-toolbar-plugin.js +12 -0
- package/dist/es2019/entry-points/primary-toolbar-plugin-type.js +0 -0
- package/dist/es2019/entry-points/primary-toolbar-plugin.js +2 -0
- package/dist/esm/entry-points/primary-toolbar-plugin-type.js +0 -0
- package/dist/esm/entry-points/primary-toolbar-plugin.js +2 -0
- package/dist/types/entry-points/primary-toolbar-plugin-type.d.ts +1 -0
- package/dist/types/entry-points/primary-toolbar-plugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/primary-toolbar-plugin-type.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/primary-toolbar-plugin.d.ts +1 -0
- package/package.json +3 -3
- package/primary-toolbar-plugin/package.json +17 -0
- package/primary-toolbar-plugin-type/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-primary-toolbar
|
|
2
2
|
|
|
3
|
+
## 11.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 11.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`a94a013546f69`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a94a013546f69) -
|
|
14
|
+
Autofix: add explicit package exports (barrel removal)
|
|
15
|
+
|
|
3
16
|
## 11.0.18
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -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, "primaryToolbarPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _primaryToolbarPlugin.primaryToolbarPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _primaryToolbarPlugin = require("../primaryToolbarPlugin");
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { PrimaryToolbarPlugin, PrimaryToolbarPluginOptions, PrimaryToolbarPluginState, ToolbarElementNames, } from '../primaryToolbarPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { primaryToolbarPlugin } from '../primaryToolbarPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { PrimaryToolbarPlugin, PrimaryToolbarPluginOptions, PrimaryToolbarPluginState, ToolbarElementNames, } from '../primaryToolbarPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { primaryToolbarPlugin } from '../primaryToolbarPlugin';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-primary-toolbar",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.1.1",
|
|
4
4
|
"description": "Primary toolbar plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
36
36
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
37
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
37
|
+
"@atlaskit/tmp-editor-statsig": "^81.0.0",
|
|
38
38
|
"@babel/runtime": "^7.0.0",
|
|
39
39
|
"@emotion/react": "^11.7.1"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@atlaskit/editor-common": "^114.
|
|
42
|
+
"@atlaskit/editor-common": "^114.32.0",
|
|
43
43
|
"react": "^18.2.0"
|
|
44
44
|
},
|
|
45
45
|
"techstack": {
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-primary-toolbar/primary-toolbar-plugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/primary-toolbar-plugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/primary-toolbar-plugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/primary-toolbar-plugin.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/primary-toolbar-plugin.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/primary-toolbar-plugin.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-primary-toolbar/primary-toolbar-plugin-type",
|
|
3
|
+
"main": "../dist/cjs/entry-points/primary-toolbar-plugin-type.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/primary-toolbar-plugin-type.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/primary-toolbar-plugin-type.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/primary-toolbar-plugin-type.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/primary-toolbar-plugin-type.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|