@atlaskit/editor-common 78.8.3 → 78.8.4
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 +6 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/styles/index.js +6 -0
- package/dist/cjs/styles/shared/extension.js +3 -2
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/cjs/ui/MultiBodiedExtension/index.js +65 -6
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/styles/index.js +2 -1
- package/dist/es2019/styles/shared/extension.js +2 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/es2019/ui/MultiBodiedExtension/index.js +62 -74
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/styles/index.js +2 -1
- package/dist/esm/styles/shared/extension.js +2 -1
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/esm/ui/MultiBodiedExtension/index.js +65 -5
- package/dist/types/styles/index.d.ts +1 -0
- package/dist/types/styles/shared/extension.d.ts +1 -0
- package/dist/types-ts4.5/styles/index.d.ts +1 -0
- package/dist/types-ts4.5/styles/shared/extension.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 78.8.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#75087](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/75087) [`ede66b0fc1d5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ede66b0fc1d5) - [ux] ED-22045 Removing custom logic for MBE floating toolbar.
|
|
8
|
+
|
|
3
9
|
## 78.8.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -16,7 +16,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
16
16
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
17
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
18
18
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
19
|
-
var packageVersion = "78.8.
|
|
19
|
+
var packageVersion = "78.8.4";
|
|
20
20
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
21
21
|
// Remove URL as it has UGC
|
|
22
22
|
// TODO: Sanitise the URL instead of just removing it
|
package/dist/cjs/styles/index.js
CHANGED
|
@@ -15,6 +15,12 @@ Object.defineProperty(exports, "AnnotationSharedClassNames", {
|
|
|
15
15
|
return _annotation.AnnotationSharedClassNames;
|
|
16
16
|
}
|
|
17
17
|
});
|
|
18
|
+
Object.defineProperty(exports, "BODIED_EXT_MBE_MARGIN_TOP", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function get() {
|
|
21
|
+
return _extension.BODIED_EXT_MBE_MARGIN_TOP;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
18
24
|
Object.defineProperty(exports, "BODIED_EXT_PADDING", {
|
|
19
25
|
enumerable: true,
|
|
20
26
|
get: function get() {
|
|
@@ -3,11 +3,12 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.EXTENSION_PADDING = exports.BODIED_EXT_PADDING = void 0;
|
|
6
|
+
exports.EXTENSION_PADDING = exports.BODIED_EXT_PADDING = exports.BODIED_EXT_MBE_MARGIN_TOP = void 0;
|
|
7
7
|
var _constants = require("@atlaskit/theme/constants");
|
|
8
8
|
// eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
|
|
9
9
|
|
|
10
10
|
// TODO: Migrate away from gridSize
|
|
11
11
|
// Recommendation: Replace gridSize with 8
|
|
12
12
|
var EXTENSION_PADDING = exports.EXTENSION_PADDING = (0, _constants.gridSize)();
|
|
13
|
-
var BODIED_EXT_PADDING = exports.BODIED_EXT_PADDING = EXTENSION_PADDING * 2;
|
|
13
|
+
var BODIED_EXT_PADDING = exports.BODIED_EXT_PADDING = EXTENSION_PADDING * 2;
|
|
14
|
+
var BODIED_EXT_MBE_MARGIN_TOP = exports.BODIED_EXT_MBE_MARGIN_TOP = 12;
|
|
@@ -22,7 +22,7 @@ var _templateObject, _templateObject2, _templateObject3;
|
|
|
22
22
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
23
23
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /** @jsx jsx */
|
|
24
24
|
var packageName = "@atlaskit/editor-common";
|
|
25
|
-
var packageVersion = "78.8.
|
|
25
|
+
var packageVersion = "78.8.4";
|
|
26
26
|
var halfFocusRing = 1;
|
|
27
27
|
var dropOffset = '0, 8';
|
|
28
28
|
var DropList = /*#__PURE__*/function (_Component) {
|
|
@@ -1,19 +1,78 @@
|
|
|
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.sharedMultiBodiedExtensionStyles = void 0;
|
|
8
|
-
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
9
7
|
var _react = require("@emotion/react");
|
|
10
8
|
var _colors = require("@atlaskit/theme/colors");
|
|
11
|
-
var
|
|
9
|
+
var _styles = require("../../styles");
|
|
12
10
|
/** @jsx jsx */
|
|
11
|
+
|
|
13
12
|
// Wraps the navigation bar and extensionFrames
|
|
14
|
-
var mbeExtensionContainer = (0, _react.css)(
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
var mbeExtensionContainer = (0, _react.css)({
|
|
14
|
+
background: 'transpaent !important',
|
|
15
|
+
'padding:': {
|
|
16
|
+
bottom: "var(--ds-space-100, 8px)".concat(" !important"),
|
|
17
|
+
left: "var(--ds-space-100, 8px)".concat(" !important"),
|
|
18
|
+
right: "var(--ds-space-100, 8px)".concat(" !important")
|
|
19
|
+
},
|
|
20
|
+
paddingBottom: "var(--ds-space-100, 8px)",
|
|
21
|
+
position: 'relative',
|
|
22
|
+
verticalAlign: 'middle',
|
|
23
|
+
cursor: 'pointer',
|
|
24
|
+
'.multiBodiedExtension-handler-result': {
|
|
25
|
+
marginLeft: "var(--ds-space-100, 8px)"
|
|
26
|
+
},
|
|
27
|
+
".multiBodiedExtension-content-dom-wrapper > [data-extension-frame='true'], .multiBodiedExtension--frames > [data-extension-frame='true']": {
|
|
28
|
+
display: 'none',
|
|
29
|
+
background: "var(--ds-surface, white)"
|
|
30
|
+
},
|
|
31
|
+
'.multiBodiedExtension-content-dom-wrapper, .multiBodiedExtension--frames': {
|
|
32
|
+
"[data-extension-frame='true'] > :not(style):first-child, [data-extension-frame='true'] > style:first-child + *": {
|
|
33
|
+
marginTop: 0
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
var mbeNavigation = (0, _react.css)({
|
|
38
|
+
borderTopLeftRadius: "var(--ds-border-radius, 3px)",
|
|
39
|
+
borderTopRightRadius: "var(--ds-border-radius, 3px)",
|
|
40
|
+
userSelect: 'none',
|
|
41
|
+
WebkitUserModify: 'read-only',
|
|
42
|
+
border: "1px solid ".concat("var(--ds-border, ".concat(_colors.N40, ")")),
|
|
43
|
+
borderBottom: 'none !important',
|
|
44
|
+
background: "var(--ds-surface, white)",
|
|
45
|
+
marginLeft: "var(--ds-space-100, 8px)",
|
|
46
|
+
marginRight: "var(--ds-space-100, 8px)"
|
|
47
|
+
});
|
|
48
|
+
var extensionFrameContent = (0, _react.css)({
|
|
49
|
+
padding: "var(--ds-space-100, 8px)".concat(" !important"),
|
|
50
|
+
border: "1px solid ".concat("var(--ds-border, ".concat(_colors.N30, ")")),
|
|
51
|
+
display: 'block',
|
|
52
|
+
minHeight: '100px',
|
|
53
|
+
background: "var(--ds-surface, white)",
|
|
54
|
+
borderBottomLeftRadius: "var(--ds-border-radius, 3px)",
|
|
55
|
+
borderBottomRightRadius: "var(--ds-border-radius, 3px)",
|
|
56
|
+
marginLeft: "var(--ds-space-100, 8px)",
|
|
57
|
+
marginRight: "var(--ds-space-100, 8px)",
|
|
58
|
+
cursor: 'initial',
|
|
59
|
+
'.pm-table-with-controls': {
|
|
60
|
+
marginLeft: "var(--ds-space-150, 12px)".concat(" !important"),
|
|
61
|
+
paddingRight: "var(--ds-space-150, 12px)".concat(" !important")
|
|
62
|
+
},
|
|
63
|
+
'.bodiedExtensionView-content-wrap': {
|
|
64
|
+
marginTop: "".concat(_styles.BODIED_EXT_MBE_MARGIN_TOP, "px !important")
|
|
65
|
+
},
|
|
66
|
+
'.extensionView-content-wrap': {
|
|
67
|
+
marginTop: "var(--ds-space-100, 8px)".concat(" !important")
|
|
68
|
+
},
|
|
69
|
+
'.decisionItemView-content-wrap': {
|
|
70
|
+
marginTop: '0px !important'
|
|
71
|
+
},
|
|
72
|
+
'.decisionItemView-content-wrap > [data-decision-wrapper]': {
|
|
73
|
+
marginTop: '0px !important'
|
|
74
|
+
}
|
|
75
|
+
});
|
|
17
76
|
var sharedMultiBodiedExtensionStyles = exports.sharedMultiBodiedExtensionStyles = {
|
|
18
77
|
mbeExtensionContainer: mbeExtensionContainer,
|
|
19
78
|
mbeNavigation: mbeNavigation,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
2
2
|
const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
3
|
-
const packageVersion = "78.8.
|
|
3
|
+
const packageVersion = "78.8.4";
|
|
4
4
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
5
5
|
// Remove URL as it has UGC
|
|
6
6
|
// TODO: Sanitise the URL instead of just removing it
|
|
@@ -30,4 +30,5 @@ export { buttonGroupStyle, separatorStyles, wrapperStyle, triggerWrapperStyles }
|
|
|
30
30
|
export { UnsupportedSharedCssClassName, unsupportedStyles } from './shared/unsupported-content';
|
|
31
31
|
export { expandIconWrapperStyle, expandClassNames } from './shared/expand';
|
|
32
32
|
export { ClassNames as MediaSharedClassNames } from './shared/media';
|
|
33
|
-
export { BreakoutCssClassName } from './shared/breakout';
|
|
33
|
+
export { BreakoutCssClassName } from './shared/breakout';
|
|
34
|
+
export { BODIED_EXT_MBE_MARGIN_TOP } from './shared/extension';
|
|
@@ -4,4 +4,5 @@ import { gridSize } from '@atlaskit/theme/constants';
|
|
|
4
4
|
// TODO: Migrate away from gridSize
|
|
5
5
|
// Recommendation: Replace gridSize with 8
|
|
6
6
|
export const EXTENSION_PADDING = gridSize();
|
|
7
|
-
export const BODIED_EXT_PADDING = EXTENSION_PADDING * 2;
|
|
7
|
+
export const BODIED_EXT_PADDING = EXTENSION_PADDING * 2;
|
|
8
|
+
export const BODIED_EXT_MBE_MARGIN_TOP = 12;
|
|
@@ -7,7 +7,7 @@ import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@
|
|
|
7
7
|
import { N0, N50A, N60A, N900 } from '@atlaskit/theme/colors';
|
|
8
8
|
import Layer from '../Layer';
|
|
9
9
|
const packageName = "@atlaskit/editor-common";
|
|
10
|
-
const packageVersion = "78.8.
|
|
10
|
+
const packageVersion = "78.8.4";
|
|
11
11
|
const halfFocusRing = 1;
|
|
12
12
|
const dropOffset = '0, 8';
|
|
13
13
|
class DropList extends Component {
|
|
@@ -2,84 +2,72 @@
|
|
|
2
2
|
|
|
3
3
|
import { css } from '@emotion/react';
|
|
4
4
|
import { N30, N40 } from '@atlaskit/theme/colors';
|
|
5
|
-
|
|
6
|
-
const mbeExtensionContainer = css`
|
|
7
|
-
background: transpaent !important;
|
|
8
|
-
padding: {
|
|
9
|
-
bottom: ${"var(--ds-space-100, 8px)"} !important;
|
|
10
|
-
left: ${"var(--ds-space-100, 8px)"} !important;
|
|
11
|
-
right: ${"var(--ds-space-100, 8px)"} !important;
|
|
12
|
-
}
|
|
13
|
-
padding-bottom: ${"var(--ds-space-100, 8px)"};
|
|
14
|
-
position: relative;
|
|
15
|
-
vertical-align: middle;
|
|
16
|
-
cursor: pointer;
|
|
17
|
-
|
|
18
|
-
.multiBodiedExtension-handler-result {
|
|
19
|
-
margin-left: ${"var(--ds-space-100, 8px)"};
|
|
20
|
-
}
|
|
5
|
+
import { BODIED_EXT_MBE_MARGIN_TOP } from '../../styles';
|
|
21
6
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
7
|
+
// Wraps the navigation bar and extensionFrames
|
|
8
|
+
const mbeExtensionContainer = css({
|
|
9
|
+
background: 'transpaent !important',
|
|
10
|
+
'padding:': {
|
|
11
|
+
bottom: `${"var(--ds-space-100, 8px)"} !important`,
|
|
12
|
+
left: `${"var(--ds-space-100, 8px)"} !important`,
|
|
13
|
+
right: `${"var(--ds-space-100, 8px)"} !important`
|
|
14
|
+
},
|
|
15
|
+
paddingBottom: "var(--ds-space-100, 8px)",
|
|
16
|
+
position: 'relative',
|
|
17
|
+
verticalAlign: 'middle',
|
|
18
|
+
cursor: 'pointer',
|
|
19
|
+
'.multiBodiedExtension-handler-result': {
|
|
20
|
+
marginLeft: "var(--ds-space-100, 8px)"
|
|
21
|
+
},
|
|
22
|
+
".multiBodiedExtension-content-dom-wrapper > [data-extension-frame='true'], .multiBodiedExtension--frames > [data-extension-frame='true']": {
|
|
23
|
+
display: 'none',
|
|
24
|
+
background: "var(--ds-surface, white)"
|
|
25
|
+
},
|
|
26
|
+
'.multiBodiedExtension-content-dom-wrapper, .multiBodiedExtension--frames': {
|
|
27
|
+
"[data-extension-frame='true'] > :not(style):first-child, [data-extension-frame='true'] > style:first-child + *": {
|
|
28
|
+
marginTop: 0
|
|
33
29
|
}
|
|
34
30
|
}
|
|
35
|
-
|
|
36
|
-
const mbeNavigation = css
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
margin-top: ${"var(--ds-space-100, 8px)"} !important;
|
|
74
|
-
}
|
|
75
|
-
.decisionItemView-content-wrap {
|
|
76
|
-
margin-top: 0px !important;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.decisionItemView-content-wrap > [data-decision-wrapper] {
|
|
80
|
-
margin-top: 0px !important;
|
|
31
|
+
});
|
|
32
|
+
const mbeNavigation = css({
|
|
33
|
+
borderTopLeftRadius: "var(--ds-border-radius, 3px)",
|
|
34
|
+
borderTopRightRadius: "var(--ds-border-radius, 3px)",
|
|
35
|
+
userSelect: 'none',
|
|
36
|
+
WebkitUserModify: 'read-only',
|
|
37
|
+
border: `1px solid ${`var(--ds-border, ${N40})`}`,
|
|
38
|
+
borderBottom: 'none !important',
|
|
39
|
+
background: "var(--ds-surface, white)",
|
|
40
|
+
marginLeft: "var(--ds-space-100, 8px)",
|
|
41
|
+
marginRight: "var(--ds-space-100, 8px)"
|
|
42
|
+
});
|
|
43
|
+
const extensionFrameContent = css({
|
|
44
|
+
padding: `${"var(--ds-space-100, 8px)"} !important`,
|
|
45
|
+
border: `1px solid ${`var(--ds-border, ${N30})`}`,
|
|
46
|
+
display: 'block',
|
|
47
|
+
minHeight: '100px',
|
|
48
|
+
background: "var(--ds-surface, white)",
|
|
49
|
+
borderBottomLeftRadius: "var(--ds-border-radius, 3px)",
|
|
50
|
+
borderBottomRightRadius: "var(--ds-border-radius, 3px)",
|
|
51
|
+
marginLeft: "var(--ds-space-100, 8px)",
|
|
52
|
+
marginRight: "var(--ds-space-100, 8px)",
|
|
53
|
+
cursor: 'initial',
|
|
54
|
+
'.pm-table-with-controls': {
|
|
55
|
+
marginLeft: `${"var(--ds-space-150, 12px)"} !important`,
|
|
56
|
+
paddingRight: `${"var(--ds-space-150, 12px)"} !important`
|
|
57
|
+
},
|
|
58
|
+
'.bodiedExtensionView-content-wrap': {
|
|
59
|
+
marginTop: `${BODIED_EXT_MBE_MARGIN_TOP}px !important`
|
|
60
|
+
},
|
|
61
|
+
'.extensionView-content-wrap': {
|
|
62
|
+
marginTop: `${"var(--ds-space-100, 8px)"} !important`
|
|
63
|
+
},
|
|
64
|
+
'.decisionItemView-content-wrap': {
|
|
65
|
+
marginTop: '0px !important'
|
|
66
|
+
},
|
|
67
|
+
'.decisionItemView-content-wrap > [data-decision-wrapper]': {
|
|
68
|
+
marginTop: '0px !important'
|
|
81
69
|
}
|
|
82
|
-
|
|
70
|
+
});
|
|
83
71
|
export const sharedMultiBodiedExtensionStyles = {
|
|
84
72
|
mbeExtensionContainer,
|
|
85
73
|
mbeNavigation,
|
|
@@ -6,7 +6,7 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
|
|
|
6
6
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
7
7
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
8
8
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
9
|
-
var packageVersion = "78.8.
|
|
9
|
+
var packageVersion = "78.8.4";
|
|
10
10
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
11
11
|
// Remove URL as it has UGC
|
|
12
12
|
// TODO: Sanitise the URL instead of just removing it
|
package/dist/esm/styles/index.js
CHANGED
|
@@ -30,4 +30,5 @@ export { buttonGroupStyle, separatorStyles, wrapperStyle, triggerWrapperStyles }
|
|
|
30
30
|
export { UnsupportedSharedCssClassName, unsupportedStyles } from './shared/unsupported-content';
|
|
31
31
|
export { expandIconWrapperStyle, expandClassNames } from './shared/expand';
|
|
32
32
|
export { ClassNames as MediaSharedClassNames } from './shared/media';
|
|
33
|
-
export { BreakoutCssClassName } from './shared/breakout';
|
|
33
|
+
export { BreakoutCssClassName } from './shared/breakout';
|
|
34
|
+
export { BODIED_EXT_MBE_MARGIN_TOP } from './shared/extension';
|
|
@@ -4,4 +4,5 @@ import { gridSize } from '@atlaskit/theme/constants';
|
|
|
4
4
|
// TODO: Migrate away from gridSize
|
|
5
5
|
// Recommendation: Replace gridSize with 8
|
|
6
6
|
export var EXTENSION_PADDING = gridSize();
|
|
7
|
-
export var BODIED_EXT_PADDING = EXTENSION_PADDING * 2;
|
|
7
|
+
export var BODIED_EXT_PADDING = EXTENSION_PADDING * 2;
|
|
8
|
+
export var BODIED_EXT_MBE_MARGIN_TOP = 12;
|
|
@@ -17,7 +17,7 @@ import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@
|
|
|
17
17
|
import { N0, N50A, N60A, N900 } from '@atlaskit/theme/colors';
|
|
18
18
|
import Layer from '../Layer';
|
|
19
19
|
var packageName = "@atlaskit/editor-common";
|
|
20
|
-
var packageVersion = "78.8.
|
|
20
|
+
var packageVersion = "78.8.4";
|
|
21
21
|
var halfFocusRing = 1;
|
|
22
22
|
var dropOffset = '0, 8';
|
|
23
23
|
var DropList = /*#__PURE__*/function (_Component) {
|
|
@@ -1,13 +1,73 @@
|
|
|
1
|
-
import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
|
|
2
|
-
var _templateObject, _templateObject2, _templateObject3;
|
|
3
1
|
/** @jsx jsx */
|
|
4
2
|
|
|
5
3
|
import { css } from '@emotion/react';
|
|
6
4
|
import { N30, N40 } from '@atlaskit/theme/colors';
|
|
5
|
+
import { BODIED_EXT_MBE_MARGIN_TOP } from '../../styles';
|
|
6
|
+
|
|
7
7
|
// Wraps the navigation bar and extensionFrames
|
|
8
|
-
var mbeExtensionContainer = css(
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
var mbeExtensionContainer = css({
|
|
9
|
+
background: 'transpaent !important',
|
|
10
|
+
'padding:': {
|
|
11
|
+
bottom: "var(--ds-space-100, 8px)".concat(" !important"),
|
|
12
|
+
left: "var(--ds-space-100, 8px)".concat(" !important"),
|
|
13
|
+
right: "var(--ds-space-100, 8px)".concat(" !important")
|
|
14
|
+
},
|
|
15
|
+
paddingBottom: "var(--ds-space-100, 8px)",
|
|
16
|
+
position: 'relative',
|
|
17
|
+
verticalAlign: 'middle',
|
|
18
|
+
cursor: 'pointer',
|
|
19
|
+
'.multiBodiedExtension-handler-result': {
|
|
20
|
+
marginLeft: "var(--ds-space-100, 8px)"
|
|
21
|
+
},
|
|
22
|
+
".multiBodiedExtension-content-dom-wrapper > [data-extension-frame='true'], .multiBodiedExtension--frames > [data-extension-frame='true']": {
|
|
23
|
+
display: 'none',
|
|
24
|
+
background: "var(--ds-surface, white)"
|
|
25
|
+
},
|
|
26
|
+
'.multiBodiedExtension-content-dom-wrapper, .multiBodiedExtension--frames': {
|
|
27
|
+
"[data-extension-frame='true'] > :not(style):first-child, [data-extension-frame='true'] > style:first-child + *": {
|
|
28
|
+
marginTop: 0
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
var mbeNavigation = css({
|
|
33
|
+
borderTopLeftRadius: "var(--ds-border-radius, 3px)",
|
|
34
|
+
borderTopRightRadius: "var(--ds-border-radius, 3px)",
|
|
35
|
+
userSelect: 'none',
|
|
36
|
+
WebkitUserModify: 'read-only',
|
|
37
|
+
border: "1px solid ".concat("var(--ds-border, ".concat(N40, ")")),
|
|
38
|
+
borderBottom: 'none !important',
|
|
39
|
+
background: "var(--ds-surface, white)",
|
|
40
|
+
marginLeft: "var(--ds-space-100, 8px)",
|
|
41
|
+
marginRight: "var(--ds-space-100, 8px)"
|
|
42
|
+
});
|
|
43
|
+
var extensionFrameContent = css({
|
|
44
|
+
padding: "var(--ds-space-100, 8px)".concat(" !important"),
|
|
45
|
+
border: "1px solid ".concat("var(--ds-border, ".concat(N30, ")")),
|
|
46
|
+
display: 'block',
|
|
47
|
+
minHeight: '100px',
|
|
48
|
+
background: "var(--ds-surface, white)",
|
|
49
|
+
borderBottomLeftRadius: "var(--ds-border-radius, 3px)",
|
|
50
|
+
borderBottomRightRadius: "var(--ds-border-radius, 3px)",
|
|
51
|
+
marginLeft: "var(--ds-space-100, 8px)",
|
|
52
|
+
marginRight: "var(--ds-space-100, 8px)",
|
|
53
|
+
cursor: 'initial',
|
|
54
|
+
'.pm-table-with-controls': {
|
|
55
|
+
marginLeft: "var(--ds-space-150, 12px)".concat(" !important"),
|
|
56
|
+
paddingRight: "var(--ds-space-150, 12px)".concat(" !important")
|
|
57
|
+
},
|
|
58
|
+
'.bodiedExtensionView-content-wrap': {
|
|
59
|
+
marginTop: "".concat(BODIED_EXT_MBE_MARGIN_TOP, "px !important")
|
|
60
|
+
},
|
|
61
|
+
'.extensionView-content-wrap': {
|
|
62
|
+
marginTop: "var(--ds-space-100, 8px)".concat(" !important")
|
|
63
|
+
},
|
|
64
|
+
'.decisionItemView-content-wrap': {
|
|
65
|
+
marginTop: '0px !important'
|
|
66
|
+
},
|
|
67
|
+
'.decisionItemView-content-wrap > [data-decision-wrapper]': {
|
|
68
|
+
marginTop: '0px !important'
|
|
69
|
+
}
|
|
70
|
+
});
|
|
11
71
|
export var sharedMultiBodiedExtensionStyles = {
|
|
12
72
|
mbeExtensionContainer: mbeExtensionContainer,
|
|
13
73
|
mbeNavigation: mbeNavigation,
|
|
@@ -31,3 +31,4 @@ export { UnsupportedSharedCssClassName, unsupportedStyles, } from './shared/unsu
|
|
|
31
31
|
export { expandIconWrapperStyle, expandClassNames } from './shared/expand';
|
|
32
32
|
export { ClassNames as MediaSharedClassNames } from './shared/media';
|
|
33
33
|
export { BreakoutCssClassName } from './shared/breakout';
|
|
34
|
+
export { BODIED_EXT_MBE_MARGIN_TOP } from './shared/extension';
|
|
@@ -31,3 +31,4 @@ export { UnsupportedSharedCssClassName, unsupportedStyles, } from './shared/unsu
|
|
|
31
31
|
export { expandIconWrapperStyle, expandClassNames } from './shared/expand';
|
|
32
32
|
export { ClassNames as MediaSharedClassNames } from './shared/media';
|
|
33
33
|
export { BreakoutCssClassName } from './shared/breakout';
|
|
34
|
+
export { BODIED_EXT_MBE_MARGIN_TOP } from './shared/extension';
|
package/package.json
CHANGED