@atlaskit/editor-core 221.11.1 → 221.12.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 +23 -0
- package/EditorContentContainer/package.json +10 -0
- package/dist/cjs/entry-points/EditorContentContainer.js +13 -0
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +202 -3688
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.js +206 -202
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-emotion.js +3 -1
- package/dist/cjs/ui/EditorContentContainer/styles/dateStyles.js +16 -1
- package/dist/cjs/ui/EditorContentContainer/styles/emoji.js +34 -0
- package/dist/cjs/ui/EditorContentContainer/styles/layout.js +10 -6
- package/dist/cjs/ui/EditorContentContainer/styles/mentions.js +14 -0
- package/dist/cjs/ui/EditorContentContainer/styles/statusStyles.js +14 -0
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/entry-points/EditorContentContainer.js +2 -0
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +202 -3688
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.js +206 -202
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-emotion.js +4 -2
- package/dist/es2019/ui/EditorContentContainer/styles/dateStyles.js +14 -0
- package/dist/es2019/ui/EditorContentContainer/styles/emoji.js +34 -0
- package/dist/es2019/ui/EditorContentContainer/styles/layout.js +9 -5
- package/dist/es2019/ui/EditorContentContainer/styles/mentions.js +14 -0
- package/dist/es2019/ui/EditorContentContainer/styles/statusStyles.js +14 -0
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/entry-points/EditorContentContainer.js +2 -0
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +202 -3688
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.js +206 -202
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-emotion.js +4 -2
- package/dist/esm/ui/EditorContentContainer/styles/dateStyles.js +16 -1
- package/dist/esm/ui/EditorContentContainer/styles/emoji.js +34 -0
- package/dist/esm/ui/EditorContentContainer/styles/layout.js +9 -5
- package/dist/esm/ui/EditorContentContainer/styles/mentions.js +14 -0
- package/dist/esm/ui/EditorContentContainer/styles/statusStyles.js +14 -0
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/entry-points/EditorContentContainer.d.ts +1 -0
- package/dist/types/ui/EditorContentContainer/styles/layout.d.ts +1 -0
- package/package.json +7 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 221.12.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`00f3166426df4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/00f3166426df4) -
|
|
8
|
+
adopt cssMapScoped for editor core compiled css migration
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 221.12.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`8c398862a4d1d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8c398862a4d1d) -
|
|
16
|
+
Add an `EditorContentContainer` entry point.
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- [`161922d5b8cee`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/161922d5b8cee) -
|
|
21
|
+
Fix editor tooltips affected by inline top-layer rendering. Table cell menu tooltips are no longer
|
|
22
|
+
constrained by the button background selector, and layout column drag handles now own their
|
|
23
|
+
wrapper layout without flattening the tooltip's visual surface.
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
|
|
3
26
|
## 221.11.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-core/EditorContentContainer",
|
|
3
|
+
"main": "../dist/cjs/entry-points/EditorContentContainer.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/EditorContentContainer.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/EditorContentContainer.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/EditorContentContainer.d.ts"
|
|
10
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "EditorContentContainer", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _EditorContentContainer.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _EditorContentContainer = _interopRequireDefault(require("../ui/EditorContentContainer/EditorContentContainer"));
|