@atlaskit/renderer 108.15.5 → 108.15.6
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 +83 -0
- package/dist/cjs/react/nodes/table/sticky.js +1 -1
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/react/nodes/table/sticky.js +1 -1
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/react/nodes/table/sticky.js +1 -1
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,88 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 108.15.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#40718](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40718) [`c1d4b48bdd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c1d4b48bdd9) - WHAT: This change removes plugin exports from editor-core that were used only for the mobile bridge.
|
|
8
|
+
|
|
9
|
+
This includes:
|
|
10
|
+
|
|
11
|
+
- All plugin keys
|
|
12
|
+
- Plugin commands
|
|
13
|
+
- Plugin types
|
|
14
|
+
|
|
15
|
+
The full list is:
|
|
16
|
+
|
|
17
|
+
- EditorFeatureFlags (available via '@atlaskit/editor-common/types' as `FeatureFlags`)
|
|
18
|
+
- EmojiResource (available via '@atlaskit/emoji/resource' as `EmojiResource`)
|
|
19
|
+
- mediaPlugin
|
|
20
|
+
- insertMediaSingleNode
|
|
21
|
+
- CustomMediaPicker
|
|
22
|
+
- mediaPluginKey
|
|
23
|
+
- textColorPluginKey
|
|
24
|
+
- TextColorPluginState
|
|
25
|
+
- changeColor
|
|
26
|
+
- CodeBlockPlugin
|
|
27
|
+
- PanelPlugin
|
|
28
|
+
- subscribeToToolbarAndPickerUpdates
|
|
29
|
+
- subscribeTypeAheadUpdates
|
|
30
|
+
- TextFormattingInputMethodToolbar
|
|
31
|
+
- TextFormattingInputMethodBasic
|
|
32
|
+
- createTable
|
|
33
|
+
- insertTaskDecisionCommand
|
|
34
|
+
- TaskDecisionInputMethod
|
|
35
|
+
- EventDispatcher
|
|
36
|
+
- statusPluginKey
|
|
37
|
+
- StatusState
|
|
38
|
+
- StatusType
|
|
39
|
+
- DatePluginState
|
|
40
|
+
- insertDate
|
|
41
|
+
- openDatePicker
|
|
42
|
+
- deleteDate
|
|
43
|
+
- dateToDateType
|
|
44
|
+
- datePluginKey
|
|
45
|
+
- commitStatusPicker
|
|
46
|
+
- setStatusPickerAt
|
|
47
|
+
- updateStatus
|
|
48
|
+
- updateStatusWithAnalytics
|
|
49
|
+
- removeStatus
|
|
50
|
+
- typeAheadPluginKey
|
|
51
|
+
- TypeAheadPluginState
|
|
52
|
+
- setKeyboardHeight
|
|
53
|
+
- setMobilePaddingTop
|
|
54
|
+
- setIsExpanded
|
|
55
|
+
- dedupe (available via '@atlaskit/editor-common/utils' as `dedupe`)
|
|
56
|
+
- GapCursorSelection (available via '@atlaskit/editor-common/selection' as `GapCursorSelection`)
|
|
57
|
+
- GapCursorSide (available via '@atlaskit/editor-common/selection' as `Side`)
|
|
58
|
+
- HistoryPluginState
|
|
59
|
+
- MentionPluginState
|
|
60
|
+
- InsertBlockInputMethodToolbar
|
|
61
|
+
- selectionPluginKey
|
|
62
|
+
- SelectionData
|
|
63
|
+
- SelectionDataState
|
|
64
|
+
- insertExpand
|
|
65
|
+
- createTypeAheadTools
|
|
66
|
+
- AbstractMentionResource (available via '@atlaskit/mention/resource' as `AbstractMentionResource`)
|
|
67
|
+
- PresenceResource (available via '@atlaskit/mention/resource' as `PresenceResource`)
|
|
68
|
+
- ReactEditorView
|
|
69
|
+
- BaseReactEditorView
|
|
70
|
+
- getDefaultPresetOptionsFromEditorProps
|
|
71
|
+
- lightModeStatusColorPalette
|
|
72
|
+
- darkModeStatusColorPalette
|
|
73
|
+
- PaletteColor
|
|
74
|
+
- DEFAULT_BORDER_COLOR
|
|
75
|
+
|
|
76
|
+
WHY: We have been extracting plugins out of `editor-core` and as we move them out we need to remove these exports as the new architecture does not support plugin keys or commands.
|
|
77
|
+
|
|
78
|
+
This major bump will remove all remaining commands and keys in one go - some of these features will be accessible in a safe manner in the future via the `ComposableEditor` and the appropriate plugins.
|
|
79
|
+
|
|
80
|
+
HOW: Should be no consumers using these methods currently (only mobile bridge which has been updated).
|
|
81
|
+
|
|
82
|
+
If there are any issues please reach out to the #help-editor for information on how to update appropriately.
|
|
83
|
+
|
|
84
|
+
- [#40841](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40841) [`de739cb4d0b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de739cb4d0b) - update renderer sticky header position to avoid flashing
|
|
85
|
+
|
|
3
86
|
## 108.15.5
|
|
4
87
|
|
|
5
88
|
### Patch Changes
|
|
@@ -73,7 +73,7 @@ var StickyTable = function StickyTable(_ref) {
|
|
|
73
73
|
if ((0, _table2.isTableResizingEnabled)(rendererAppearance)) {
|
|
74
74
|
styles = (0, _react2.css)({
|
|
75
75
|
top: mode === 'pin-bottom' ? top : undefined,
|
|
76
|
-
position: '
|
|
76
|
+
position: 'absolute'
|
|
77
77
|
});
|
|
78
78
|
} else {
|
|
79
79
|
styles = (0, _react2.css)({
|
|
@@ -55,7 +55,7 @@ exports.NORMAL_SEVERITY_THRESHOLD = NORMAL_SEVERITY_THRESHOLD;
|
|
|
55
55
|
var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
56
56
|
exports.DEGRADED_SEVERITY_THRESHOLD = DEGRADED_SEVERITY_THRESHOLD;
|
|
57
57
|
var packageName = "@atlaskit/renderer";
|
|
58
|
-
var packageVersion = "108.15.
|
|
58
|
+
var packageVersion = "108.15.6";
|
|
59
59
|
var Renderer = /*#__PURE__*/function (_PureComponent) {
|
|
60
60
|
(0, _inherits2.default)(Renderer, _PureComponent);
|
|
61
61
|
var _super = _createSuper(Renderer);
|
|
@@ -35,7 +35,7 @@ import { RenderTracking } from '../../react/utils/performance/RenderTracking';
|
|
|
35
35
|
export const NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
36
36
|
export const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
37
37
|
const packageName = "@atlaskit/renderer";
|
|
38
|
-
const packageVersion = "108.15.
|
|
38
|
+
const packageVersion = "108.15.6";
|
|
39
39
|
export class Renderer extends PureComponent {
|
|
40
40
|
constructor(props) {
|
|
41
41
|
super(props);
|
|
@@ -45,7 +45,7 @@ import { RenderTracking } from '../../react/utils/performance/RenderTracking';
|
|
|
45
45
|
export var NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
46
46
|
export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
47
47
|
var packageName = "@atlaskit/renderer";
|
|
48
|
-
var packageVersion = "108.15.
|
|
48
|
+
var packageVersion = "108.15.6";
|
|
49
49
|
export var Renderer = /*#__PURE__*/function (_PureComponent) {
|
|
50
50
|
_inherits(Renderer, _PureComponent);
|
|
51
51
|
var _super = _createSuper(Renderer);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "108.15.
|
|
3
|
+
"version": "108.15.6",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@atlaskit/media-ui": "^25.0.0",
|
|
47
47
|
"@atlaskit/media-viewer": "^48.1.0",
|
|
48
48
|
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
49
|
-
"@atlaskit/smart-card": "^26.
|
|
49
|
+
"@atlaskit/smart-card": "^26.30.0",
|
|
50
50
|
"@atlaskit/status": "^1.4.0",
|
|
51
51
|
"@atlaskit/task-decision": "^17.9.0",
|
|
52
52
|
"@atlaskit/theme": "^12.6.0",
|