@atlaskit/editor-plugins 10.1.15 → 10.1.17

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,22 @@
1
1
  # @atlaskit/editor-plugins
2
2
 
3
+ ## 10.1.17
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 10.1.16
10
+
11
+ ### Patch Changes
12
+
13
+ - [#192090](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/192090)
14
+ [`d1a5fb90b8bfd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d1a5fb90b8bfd) -
15
+ Add editor-plugin-toolbar package, which stores toolbar components and provides an api to register
16
+ them, using editor-toolbar-model libary as state manager. This plugin also renders a new selection
17
+ toolbar based on the new components.
18
+ - Updated dependencies
19
+
3
20
  ## 10.1.15
4
21
 
5
22
  ### Patch Changes
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "toolbarPlugin", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _editorPluginToolbar.toolbarPlugin;
10
+ }
11
+ });
12
+ var _editorPluginToolbar = require("@atlaskit/editor-plugin-toolbar");
@@ -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 { toolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
@@ -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 { toolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
@@ -0,0 +1,2 @@
1
+ export { toolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
2
+ export type { ToolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
@@ -0,0 +1,2 @@
1
+ export { toolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
2
+ export type { ToolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugins",
3
- "version": "10.1.15",
3
+ "version": "10.1.17",
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",
@@ -119,6 +119,7 @@
119
119
  "./tasks-and-decisions": "./src/tasks-and-decisions/index.ts",
120
120
  "./text-color": "./src/text-color/index.ts",
121
121
  "./text-formatting": "./src/text-formatting/index.ts",
122
+ "./toolbar": "./src/toolbar/index.ts",
122
123
  "./toolbar-lists-indentation": "./src/toolbar-lists-indentation/index.ts",
123
124
  "./track-changes": "./src/track-changes/index.ts",
124
125
  "./type-ahead": "./src/type-ahead/index.ts",
@@ -187,7 +188,7 @@
187
188
  "@atlaskit/editor-plugin-indentation": "3.1.1",
188
189
  "@atlaskit/editor-plugin-insert-block": "4.1.4",
189
190
  "@atlaskit/editor-plugin-interaction": "4.0.0",
190
- "@atlaskit/editor-plugin-layout": "3.1.1",
191
+ "@atlaskit/editor-plugin-layout": "3.1.2",
191
192
  "@atlaskit/editor-plugin-list": "5.1.1",
192
193
  "@atlaskit/editor-plugin-loom": "5.1.0",
193
194
  "@atlaskit/editor-plugin-max-content-size": "3.0.0",
@@ -209,7 +210,7 @@
209
210
  "@atlaskit/editor-plugin-selection": "3.0.3",
210
211
  "@atlaskit/editor-plugin-selection-extension": "3.4.1",
211
212
  "@atlaskit/editor-plugin-selection-marker": "3.0.2",
212
- "@atlaskit/editor-plugin-selection-toolbar": "4.2.0",
213
+ "@atlaskit/editor-plugin-selection-toolbar": "4.2.1",
213
214
  "@atlaskit/editor-plugin-show-diff": "0.0.0",
214
215
  "@atlaskit/editor-plugin-status": "4.1.1",
215
216
  "@atlaskit/editor-plugin-submit-editor": "3.1.0",
@@ -217,6 +218,7 @@
217
218
  "@atlaskit/editor-plugin-tasks-and-decisions": "6.1.1",
218
219
  "@atlaskit/editor-plugin-text-color": "3.1.1",
219
220
  "@atlaskit/editor-plugin-text-formatting": "3.0.5",
221
+ "@atlaskit/editor-plugin-toolbar": "0.0.1",
220
222
  "@atlaskit/editor-plugin-toolbar-lists-indentation": "4.1.1",
221
223
  "@atlaskit/editor-plugin-track-changes": "2.4.0",
222
224
  "@atlaskit/editor-plugin-type-ahead": "3.1.1",
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugins/toolbar",
3
+ "main": "../dist/cjs/toolbar/index.js",
4
+ "module": "../dist/esm/toolbar/index.js",
5
+ "module:es2019": "../dist/es2019/toolbar/index.js",
6
+ "types": "../dist/types/toolbar/index.d.ts",
7
+ "typesVersions": {
8
+ ">=4.5 <5.4": {
9
+ "*": [
10
+ "../dist/types-ts4.5/toolbar/index.d.ts"
11
+ ]
12
+ }
13
+ }
14
+ }