@atlaskit/editor-plugin-insert-block 1.1.9 → 1.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
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-insert-block
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#91934](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91934) [`b76a78c6a199`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b76a78c6a199) - bumped editor-prosemirror version to 4.0.0
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
3
13
|
## 1.1.9
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
3
|
Object.defineProperty(exports, "__esModule", {
|
|
5
4
|
value: true
|
|
6
5
|
});
|
|
7
6
|
exports.triggerWrapper = void 0;
|
|
8
|
-
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
9
7
|
var _react = require("@emotion/react");
|
|
10
|
-
var
|
|
11
|
-
|
|
8
|
+
var triggerWrapper = exports.triggerWrapper = (0, _react.css)({
|
|
9
|
+
width: '42px',
|
|
10
|
+
display: 'flex',
|
|
11
|
+
alignItems: 'center',
|
|
12
|
+
'> div, > span': {
|
|
13
|
+
display: 'flex'
|
|
14
|
+
},
|
|
15
|
+
'> div > div': {
|
|
16
|
+
display: 'flex'
|
|
17
|
+
}
|
|
18
|
+
});
|
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
import { css } from '@emotion/react';
|
|
2
|
-
export const triggerWrapper = css
|
|
3
|
-
width: 42px
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
>
|
|
10
|
-
display: flex
|
|
2
|
+
export const triggerWrapper = css({
|
|
3
|
+
width: '42px',
|
|
4
|
+
display: 'flex',
|
|
5
|
+
alignItems: 'center',
|
|
6
|
+
'> div, > span': {
|
|
7
|
+
display: 'flex'
|
|
8
|
+
},
|
|
9
|
+
'> div > div': {
|
|
10
|
+
display: 'flex'
|
|
11
11
|
}
|
|
12
|
-
|
|
13
|
-
> div > div {
|
|
14
|
-
display: flex;
|
|
15
|
-
}
|
|
16
|
-
`;
|
|
12
|
+
});
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
|
|
2
|
-
var _templateObject;
|
|
3
1
|
import { css } from '@emotion/react';
|
|
4
|
-
export var triggerWrapper = css(
|
|
2
|
+
export var triggerWrapper = css({
|
|
3
|
+
width: '42px',
|
|
4
|
+
display: 'flex',
|
|
5
|
+
alignItems: 'center',
|
|
6
|
+
'> div, > span': {
|
|
7
|
+
display: 'flex'
|
|
8
|
+
},
|
|
9
|
+
'> div > div': {
|
|
10
|
+
display: 'flex'
|
|
11
|
+
}
|
|
12
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-insert-block",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Insert block plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,34 +33,34 @@
|
|
|
33
33
|
".": "./src/index.ts"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@atlaskit/editor-common": "^78.
|
|
37
|
-
"@atlaskit/editor-plugin-analytics": "^1.
|
|
38
|
-
"@atlaskit/editor-plugin-block-type": "^3.
|
|
39
|
-
"@atlaskit/editor-plugin-code-block": "^1.
|
|
40
|
-
"@atlaskit/editor-plugin-date": "^1.
|
|
41
|
-
"@atlaskit/editor-plugin-emoji": "^1.
|
|
42
|
-
"@atlaskit/editor-plugin-expand": "^1.
|
|
43
|
-
"@atlaskit/editor-plugin-extension": "^1.
|
|
44
|
-
"@atlaskit/editor-plugin-hyperlink": "^1.
|
|
45
|
-
"@atlaskit/editor-plugin-image-upload": "^1.
|
|
46
|
-
"@atlaskit/editor-plugin-layout": "^1.
|
|
47
|
-
"@atlaskit/editor-plugin-media": "^1.
|
|
48
|
-
"@atlaskit/editor-plugin-mentions": "^1.
|
|
49
|
-
"@atlaskit/editor-plugin-panel": "^1.
|
|
50
|
-
"@atlaskit/editor-plugin-placeholder-text": "^1.
|
|
51
|
-
"@atlaskit/editor-plugin-quick-insert": "^1.
|
|
52
|
-
"@atlaskit/editor-plugin-rule": "^1.
|
|
53
|
-
"@atlaskit/editor-plugin-status": "^1.
|
|
54
|
-
"@atlaskit/editor-plugin-table": "^7.
|
|
55
|
-
"@atlaskit/editor-plugin-tasks-and-decisions": "^1.
|
|
56
|
-
"@atlaskit/editor-plugin-type-ahead": "^1.
|
|
57
|
-
"@atlaskit/editor-prosemirror": "
|
|
36
|
+
"@atlaskit/editor-common": "^78.31.0",
|
|
37
|
+
"@atlaskit/editor-plugin-analytics": "^1.1.0",
|
|
38
|
+
"@atlaskit/editor-plugin-block-type": "^3.1.0",
|
|
39
|
+
"@atlaskit/editor-plugin-code-block": "^1.2.0",
|
|
40
|
+
"@atlaskit/editor-plugin-date": "^1.1.0",
|
|
41
|
+
"@atlaskit/editor-plugin-emoji": "^1.2.0",
|
|
42
|
+
"@atlaskit/editor-plugin-expand": "^1.6.0",
|
|
43
|
+
"@atlaskit/editor-plugin-extension": "^1.3.0",
|
|
44
|
+
"@atlaskit/editor-plugin-hyperlink": "^1.6.0",
|
|
45
|
+
"@atlaskit/editor-plugin-image-upload": "^1.1.0",
|
|
46
|
+
"@atlaskit/editor-plugin-layout": "^1.1.0",
|
|
47
|
+
"@atlaskit/editor-plugin-media": "^1.16.0",
|
|
48
|
+
"@atlaskit/editor-plugin-mentions": "^1.1.0",
|
|
49
|
+
"@atlaskit/editor-plugin-panel": "^1.1.0",
|
|
50
|
+
"@atlaskit/editor-plugin-placeholder-text": "^1.1.0",
|
|
51
|
+
"@atlaskit/editor-plugin-quick-insert": "^1.1.0",
|
|
52
|
+
"@atlaskit/editor-plugin-rule": "^1.2.0",
|
|
53
|
+
"@atlaskit/editor-plugin-status": "^1.1.0",
|
|
54
|
+
"@atlaskit/editor-plugin-table": "^7.8.0",
|
|
55
|
+
"@atlaskit/editor-plugin-tasks-and-decisions": "^1.1.0",
|
|
56
|
+
"@atlaskit/editor-plugin-type-ahead": "^1.1.0",
|
|
57
|
+
"@atlaskit/editor-prosemirror": "4.0.0",
|
|
58
58
|
"@atlaskit/editor-shared-styles": "^2.9.0",
|
|
59
59
|
"@atlaskit/emoji": "^67.6.0",
|
|
60
60
|
"@atlaskit/icon": "^22.1.0",
|
|
61
|
-
"@atlaskit/primitives": "^5.
|
|
61
|
+
"@atlaskit/primitives": "^5.5.0",
|
|
62
62
|
"@atlaskit/theme": "^12.7.0",
|
|
63
|
-
"@atlaskit/tokens": "^1.
|
|
63
|
+
"@atlaskit/tokens": "^1.43.0",
|
|
64
64
|
"@babel/runtime": "^7.0.0",
|
|
65
65
|
"@emotion/react": "^11.7.1",
|
|
66
66
|
"bind-event-listener": "^2.1.1",
|