@atlaskit/editor-plugins 9.0.4 → 9.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 +18 -0
- package/dist/cjs/ncs-step-metrics/index.js +12 -0
- package/dist/es2019/ncs-step-metrics/index.js +4 -0
- package/dist/esm/ncs-step-metrics/index.js +4 -0
- package/dist/types/ncs-step-metrics/index.d.ts +2 -0
- package/dist/types-ts4.5/ncs-step-metrics/index.d.ts +2 -0
- package/ncs-step-metrics/package.json +14 -0
- package/package.json +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-plugins
|
|
2
2
|
|
|
3
|
+
## 9.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 9.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#160537](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/160537)
|
|
14
|
+
[`dfcf43297ec3e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dfcf43297ec3e) -
|
|
15
|
+
[EDITOR-813] Add editor-plugin-ncs-step-metrics
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 9.0.4
|
|
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, "ncsStepMetricsPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _editorPluginNcsStepMetrics.ncsStepMetricsPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _editorPluginNcsStepMetrics = require("@atlaskit/editor-plugin-ncs-step-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 { ncsStepMetricsPlugin } from '@atlaskit/editor-plugin-ncs-step-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 { ncsStepMetricsPlugin } from '@atlaskit/editor-plugin-ncs-step-metrics';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugins/ncs-step-metrics",
|
|
3
|
+
"main": "../dist/cjs/ncs-step-metrics/index.js",
|
|
4
|
+
"module": "../dist/esm/ncs-step-metrics/index.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/ncs-step-metrics/index.js",
|
|
6
|
+
"types": "../dist/types/ncs-step-metrics/index.d.ts",
|
|
7
|
+
"typesVersions": {
|
|
8
|
+
">=4.5 <5.4": {
|
|
9
|
+
"*": [
|
|
10
|
+
"../dist/types-ts4.5/ncs-step-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": "9.
|
|
3
|
+
"version": "9.1.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-insert": "./src/media-insert/index.ts",
|
|
92
92
|
"./mentions": "./src/mentions/index.ts",
|
|
93
93
|
"./metrics": "./src/metrics/index.ts",
|
|
94
|
+
"./ncs-step-metrics": "./src/ncs-step-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",
|
|
@@ -141,12 +142,12 @@
|
|
|
141
142
|
"@atlaskit/editor-plugin-batch-attribute-updates": "2.1.5",
|
|
142
143
|
"@atlaskit/editor-plugin-before-primary-toolbar": "2.0.6",
|
|
143
144
|
"@atlaskit/editor-plugin-better-type-history": "2.1.5",
|
|
144
|
-
"@atlaskit/editor-plugin-block-controls": "3.15.
|
|
145
|
+
"@atlaskit/editor-plugin-block-controls": "3.15.2",
|
|
145
146
|
"@atlaskit/editor-plugin-block-type": "5.1.21",
|
|
146
147
|
"@atlaskit/editor-plugin-border": "2.1.5",
|
|
147
148
|
"@atlaskit/editor-plugin-breakout": "2.3.2",
|
|
148
149
|
"@atlaskit/editor-plugin-caption": "2.1.5",
|
|
149
|
-
"@atlaskit/editor-plugin-card": "6.
|
|
150
|
+
"@atlaskit/editor-plugin-card": "6.4.0",
|
|
150
151
|
"@atlaskit/editor-plugin-clear-marks-on-empty-doc": "2.0.5",
|
|
151
152
|
"@atlaskit/editor-plugin-clipboard": "2.0.5",
|
|
152
153
|
"@atlaskit/editor-plugin-code-bidi-warning": "2.1.2",
|
|
@@ -193,6 +194,7 @@
|
|
|
193
194
|
"@atlaskit/editor-plugin-media-insert": "6.3.5",
|
|
194
195
|
"@atlaskit/editor-plugin-mentions": "4.7.1",
|
|
195
196
|
"@atlaskit/editor-plugin-metrics": "3.4.7",
|
|
197
|
+
"@atlaskit/editor-plugin-ncs-step-metrics": "1.0.0",
|
|
196
198
|
"@atlaskit/editor-plugin-panel": "4.4.2",
|
|
197
199
|
"@atlaskit/editor-plugin-paste": "3.3.6",
|
|
198
200
|
"@atlaskit/editor-plugin-paste-options-toolbar": "2.1.1",
|
|
@@ -202,9 +204,9 @@
|
|
|
202
204
|
"@atlaskit/editor-plugin-quick-insert": "2.5.2",
|
|
203
205
|
"@atlaskit/editor-plugin-rule": "2.1.5",
|
|
204
206
|
"@atlaskit/editor-plugin-save-on-enter": "2.1.0",
|
|
205
|
-
"@atlaskit/editor-plugin-scroll-into-view": "2.2.
|
|
207
|
+
"@atlaskit/editor-plugin-scroll-into-view": "2.2.1",
|
|
206
208
|
"@atlaskit/editor-plugin-selection": "2.2.5",
|
|
207
|
-
"@atlaskit/editor-plugin-selection-extension": "2.
|
|
209
|
+
"@atlaskit/editor-plugin-selection-extension": "2.3.0",
|
|
208
210
|
"@atlaskit/editor-plugin-selection-marker": "2.4.1",
|
|
209
211
|
"@atlaskit/editor-plugin-selection-toolbar": "3.6.7",
|
|
210
212
|
"@atlaskit/editor-plugin-status": "3.1.18",
|
|
@@ -214,7 +216,7 @@
|
|
|
214
216
|
"@atlaskit/editor-plugin-text-color": "2.3.5",
|
|
215
217
|
"@atlaskit/editor-plugin-text-formatting": "2.2.12",
|
|
216
218
|
"@atlaskit/editor-plugin-toolbar-lists-indentation": "3.2.7",
|
|
217
|
-
"@atlaskit/editor-plugin-type-ahead": "2.7.
|
|
219
|
+
"@atlaskit/editor-plugin-type-ahead": "2.7.8",
|
|
218
220
|
"@atlaskit/editor-plugin-ufo": "2.0.6",
|
|
219
221
|
"@atlaskit/editor-plugin-undo-redo": "2.0.16",
|
|
220
222
|
"@atlaskit/editor-plugin-unsupported-content": "2.1.5",
|