@atlaskit/editor-plugins 6.3.1 → 6.4.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 +18 -0
- package/dist/cjs/metrics/index.js +12 -0
- package/dist/es2019/metrics/index.js +4 -0
- package/dist/esm/metrics/index.js +4 -0
- package/dist/types/metrics/index.d.ts +2 -0
- package/dist/types-ts4.5/metrics/index.d.ts +2 -0
- package/metrics/package.json +14 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-plugins
|
|
2
2
|
|
|
3
|
+
## 6.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 6.4.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#100173](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100173)
|
|
14
|
+
[`ab687f83ea47e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ab687f83ea47e) -
|
|
15
|
+
ED-26142 Set up metrics plugin for measuring efficiency and effectiveness in editor
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 6.3.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "metricsPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _editorPluginMetrics.metricsPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _editorPluginMetrics = require("@atlaskit/editor-plugin-metrics");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
// THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
|
|
2
|
+
// Disable no-re-export rule for entry point files
|
|
3
|
+
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
4
|
+
export { metricsPlugin } from '@atlaskit/editor-plugin-metrics';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
// THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
|
|
2
|
+
// Disable no-re-export rule for entry point files
|
|
3
|
+
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
4
|
+
export { metricsPlugin } from '@atlaskit/editor-plugin-metrics';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugins/metrics",
|
|
3
|
+
"main": "../dist/cjs/metrics/index.js",
|
|
4
|
+
"module": "../dist/esm/metrics/index.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/metrics/index.js",
|
|
6
|
+
"types": "../dist/types/metrics/index.d.ts",
|
|
7
|
+
"typesVersions": {
|
|
8
|
+
">=4.5 <5.4": {
|
|
9
|
+
"*": [
|
|
10
|
+
"../dist/types-ts4.5/metrics/index.d.ts"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugins",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.4.1",
|
|
4
4
|
"description": "A convenience facade package that exposes all @atlaskit/editor-plugin-* plugins so that users can add this package without having to manually add all their plugins",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -91,6 +91,7 @@
|
|
|
91
91
|
"./media": "./src/media/index.ts",
|
|
92
92
|
"./media-insert": "./src/media-insert/index.ts",
|
|
93
93
|
"./mentions": "./src/mentions/index.ts",
|
|
94
|
+
"./metrics": "./src/metrics/index.ts",
|
|
94
95
|
"./panel": "./src/panel/index.ts",
|
|
95
96
|
"./paste": "./src/paste/index.ts",
|
|
96
97
|
"./paste-options-toolbar/styles": "./src/paste-options-toolbar/ui/styles.ts",
|
|
@@ -189,7 +190,8 @@
|
|
|
189
190
|
"@atlaskit/editor-plugin-max-content-size": "1.3.15",
|
|
190
191
|
"@atlaskit/editor-plugin-media": "1.44.2",
|
|
191
192
|
"@atlaskit/editor-plugin-media-insert": "5.0.0",
|
|
192
|
-
"@atlaskit/editor-plugin-mentions": "2.
|
|
193
|
+
"@atlaskit/editor-plugin-mentions": "2.12.0",
|
|
194
|
+
"@atlaskit/editor-plugin-metrics": "1.1.0",
|
|
193
195
|
"@atlaskit/editor-plugin-panel": "3.2.3",
|
|
194
196
|
"@atlaskit/editor-plugin-paste": "2.0.16",
|
|
195
197
|
"@atlaskit/editor-plugin-paste-options-toolbar": "1.4.7",
|