@atlaskit/editor-plugins 6.3.1 → 6.4.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaskit/editor-plugins
2
2
 
3
+ ## 6.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#100173](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100173)
8
+ [`ab687f83ea47e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ab687f83ea47e) -
9
+ ED-26142 Set up metrics plugin for measuring efficiency and effectiveness in editor
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 6.3.1
4
16
 
5
17
  ### 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,2 @@
1
+ export { metricsPlugin } from '@atlaskit/editor-plugin-metrics';
2
+ export type { MetricsPlugin, MetricsState } from '@atlaskit/editor-plugin-metrics';
@@ -0,0 +1,2 @@
1
+ export { metricsPlugin } from '@atlaskit/editor-plugin-metrics';
2
+ export type { MetricsPlugin, MetricsState } 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.1",
3
+ "version": "6.4.0",
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",
@@ -190,6 +191,7 @@
190
191
  "@atlaskit/editor-plugin-media": "1.44.2",
191
192
  "@atlaskit/editor-plugin-media-insert": "5.0.0",
192
193
  "@atlaskit/editor-plugin-mentions": "2.11.3",
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",