@atlaskit/editor-plugin-grid 0.1.7 → 0.2.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 +10 -0
- package/README.md +25 -2
- package/dist/cjs/plugin.js +4 -0
- package/dist/es2019/plugin.js +4 -0
- package/dist/esm/plugin.js +4 -0
- package/dist/types/plugin.d.ts +4 -0
- package/dist/types-ts4.5/plugin.d.ts +4 -0
- package/package.json +4 -4
- package/report.api.md +1 -1
- package/tmp/api-report-tmp.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-grid
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`ad3c5c21079`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ad3c5c21079) - Updating all plugins with minor version to correct issue with semver.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
3
13
|
## 0.1.7
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,7 +1,30 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Editor plugin grid
|
|
2
2
|
|
|
3
3
|
Grid plugin for @atlaskit/editor-core
|
|
4
4
|
|
|
5
|
+
**Note:** This component is designed for internal Atlassian development.
|
|
6
|
+
External contributors will be able to use this component but will not be able to submit issues.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
---
|
|
10
|
+
- **Install** - *yarn add @atlaskit/editor-plugin-grid*
|
|
11
|
+
- **npm** - [@atlaskit/editor-plugin-grid](https://www.npmjs.com/package/@atlaskit/editor-plugin-grid)
|
|
12
|
+
- **Source** - [Bitbucket](https://bitbucket.org/atlassian/atlassian-frontend/src/master/packages/editor/editor-plugin-grid)
|
|
13
|
+
- **Bundle** - [unpkg.com](https://unpkg.com/@atlaskit/editor-plugin-grid/dist/)
|
|
14
|
+
|
|
5
15
|
## Usage
|
|
16
|
+
---
|
|
17
|
+
**Internal use only**
|
|
18
|
+
|
|
19
|
+
@atlaskit/editor-plugin-grid is intended for internal use by the @atlaskit/editor-core and as a plugin dependency of the Editor within your product.
|
|
20
|
+
|
|
21
|
+
Direct use of this component is not supported.
|
|
22
|
+
|
|
23
|
+
Please see [Atlaskit - Editor plugin grid](https://atlaskit.atlassian.com/packages/editor/editor-plugin-grid) for documentation and examples for this package.
|
|
6
24
|
|
|
7
|
-
|
|
25
|
+
## Support
|
|
26
|
+
---
|
|
27
|
+
For internal Atlassian, visit the slack channel [#help-editor](https://atlassian.slack.com/archives/CFG3PSQ9E) for support or visit [go/editor-help](https://go/editor-help) to submit a bug.
|
|
28
|
+
## License
|
|
29
|
+
---
|
|
30
|
+
Please see [Atlassian Frontend - License](https://developer.atlassian.com/cloud/framework/atlassian-frontend/#license) for more licensing information.
|
package/dist/cjs/plugin.js
CHANGED
|
@@ -143,6 +143,10 @@ var gridPMPlugin = new _safePlugin.SafePlugin({
|
|
|
143
143
|
}
|
|
144
144
|
}
|
|
145
145
|
});
|
|
146
|
+
/**
|
|
147
|
+
* Grid plugin to be added to an `EditorPresetBuilder` and used with `ComposableEditor`
|
|
148
|
+
* from `@atlaskit/editor-core`.
|
|
149
|
+
*/
|
|
146
150
|
var gridPlugin = function gridPlugin(_ref5) {
|
|
147
151
|
var options = _ref5.config,
|
|
148
152
|
api = _ref5.api;
|
package/dist/es2019/plugin.js
CHANGED
|
@@ -134,6 +134,10 @@ const gridPMPlugin = new SafePlugin({
|
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
136
|
});
|
|
137
|
+
/**
|
|
138
|
+
* Grid plugin to be added to an `EditorPresetBuilder` and used with `ComposableEditor`
|
|
139
|
+
* from `@atlaskit/editor-core`.
|
|
140
|
+
*/
|
|
137
141
|
export const gridPlugin = ({
|
|
138
142
|
config: options,
|
|
139
143
|
api
|
package/dist/esm/plugin.js
CHANGED
|
@@ -135,6 +135,10 @@ var gridPMPlugin = new SafePlugin({
|
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
137
|
});
|
|
138
|
+
/**
|
|
139
|
+
* Grid plugin to be added to an `EditorPresetBuilder` and used with `ComposableEditor`
|
|
140
|
+
* from `@atlaskit/editor-core`.
|
|
141
|
+
*/
|
|
138
142
|
export var gridPlugin = function gridPlugin(_ref5) {
|
|
139
143
|
var options = _ref5.config,
|
|
140
144
|
api = _ref5.api;
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -19,5 +19,9 @@ export type GridPlugin = NextEditorPlugin<'grid', {
|
|
|
19
19
|
displayGrid: CreateDisplayGrid;
|
|
20
20
|
};
|
|
21
21
|
}>;
|
|
22
|
+
/**
|
|
23
|
+
* Grid plugin to be added to an `EditorPresetBuilder` and used with `ComposableEditor`
|
|
24
|
+
* from `@atlaskit/editor-core`.
|
|
25
|
+
*/
|
|
22
26
|
export declare const gridPlugin: GridPlugin;
|
|
23
27
|
export {};
|
|
@@ -21,5 +21,9 @@ export type GridPlugin = NextEditorPlugin<'grid', {
|
|
|
21
21
|
displayGrid: CreateDisplayGrid;
|
|
22
22
|
};
|
|
23
23
|
}>;
|
|
24
|
+
/**
|
|
25
|
+
* Grid plugin to be added to an `EditorPresetBuilder` and used with `ComposableEditor`
|
|
26
|
+
* from `@atlaskit/editor-core`.
|
|
27
|
+
*/
|
|
24
28
|
export declare const gridPlugin: GridPlugin;
|
|
25
29
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-grid",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Grid plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"registry": "https://registry.npmjs.org/"
|
|
9
9
|
},
|
|
10
10
|
"atlassian": {
|
|
11
|
-
"team": "Editor",
|
|
11
|
+
"team": "Editor: Media Experience Porygon",
|
|
12
12
|
"singleton": true,
|
|
13
13
|
"releaseModel": "continuous"
|
|
14
14
|
},
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
".": "./src/index.ts"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@atlaskit/editor-common": "^74.
|
|
27
|
-
"@atlaskit/editor-plugin-width": "^0.
|
|
26
|
+
"@atlaskit/editor-common": "^74.55.0",
|
|
27
|
+
"@atlaskit/editor-plugin-width": "^0.2.0",
|
|
28
28
|
"@atlaskit/editor-prosemirror": "1.1.0",
|
|
29
29
|
"@atlaskit/editor-shared-styles": "^2.6.0",
|
|
30
30
|
"@babel/runtime": "^7.0.0",
|
package/report.api.md
CHANGED