@atlaskit/renderer 108.15.15 → 108.15.16
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 +8 -0
- package/dist/cjs/i18n/tr.js +1 -1
- package/dist/cjs/react/nodes/mediaInline.js +2 -2
- package/dist/cjs/ui/MediaCard.js +2 -2
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/cjs/ui/Renderer/style.js +1 -1
- package/dist/es2019/i18n/tr.js +1 -1
- package/dist/es2019/react/nodes/mediaInline.js +1 -1
- package/dist/es2019/ui/MediaCard.js +1 -1
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/es2019/ui/Renderer/style.js +4 -2
- package/dist/esm/i18n/tr.js +1 -1
- package/dist/esm/react/nodes/mediaInline.js +1 -1
- package/dist/esm/ui/MediaCard.js +1 -1
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/dist/esm/ui/Renderer/style.js +1 -1
- package/dist/types/react/nodes/mediaInline.d.ts +7 -7
- package/dist/types-ts4.5/react/nodes/mediaInline.d.ts +7 -7
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 108.15.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#41659](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41659) [`a0c97a19dba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a0c97a19dba) - Remove unused utils and depreciated exports in mediaClient.
|
|
8
|
+
- [#42195](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42195) [`09876d718cc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/09876d718cc) - add back important styles to nested table, fixes table in expand width issue
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 108.15.15
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/cjs/i18n/tr.js
CHANGED
|
@@ -27,6 +27,6 @@ var _default = exports.default = {
|
|
|
27
27
|
'fabric.editor.tableHeader.sorting.asc': 'Artan biçimde sıralama uygulandı',
|
|
28
28
|
'fabric.editor.tableHeader.sorting.default': 'Sütunu sırala',
|
|
29
29
|
'fabric.editor.tableHeader.sorting.desc': 'Azalan biçimde sıralama uygulandı',
|
|
30
|
-
'fabric.editor.tableHeader.sorting.invalid': 'Birleştirilmiş
|
|
30
|
+
'fabric.editor.tableHeader.sorting.invalid': 'Birleştirilmiş hücreler içeren bir tabloyu sıralayamazsınız',
|
|
31
31
|
'fabric.editor.tableHeader.sorting.no': 'Sütuna sıralama uygulanmadı'
|
|
32
32
|
};
|
|
@@ -15,7 +15,7 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
15
15
|
var _mediaCard = require("@atlaskit/media-card");
|
|
16
16
|
var _mediaUi = require("@atlaskit/media-ui");
|
|
17
17
|
var _providerFactory = require("@atlaskit/editor-common/provider-factory");
|
|
18
|
-
var
|
|
18
|
+
var _mediaClientReact = require("@atlaskit/media-client-react");
|
|
19
19
|
var _MediaCard = require("../../ui/MediaCard");
|
|
20
20
|
var _reactIntlNext = require("react-intl-next");
|
|
21
21
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
@@ -74,7 +74,7 @@ var RenderMediaInline = exports.RenderMediaInline = function RenderMediaInline(_
|
|
|
74
74
|
return _regenerator.default.wrap(function _callee2$(_context2) {
|
|
75
75
|
while (1) switch (_context2.prev = _context2.next) {
|
|
76
76
|
case 0:
|
|
77
|
-
mediaClient = (0,
|
|
77
|
+
mediaClient = (0, _mediaClientReact.getMediaClient)(mediaClientConfig);
|
|
78
78
|
options = {
|
|
79
79
|
collectionName: collectionName
|
|
80
80
|
};
|
package/dist/cjs/ui/MediaCard.js
CHANGED
|
@@ -18,7 +18,7 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
|
|
|
18
18
|
var _react = _interopRequireWildcard(require("react"));
|
|
19
19
|
var _traverse = require("@atlaskit/adf-utils/traverse");
|
|
20
20
|
var _mediaCard = require("@atlaskit/media-card");
|
|
21
|
-
var
|
|
21
|
+
var _mediaClientReact = require("@atlaskit/media-client-react");
|
|
22
22
|
var _utils = require("@atlaskit/editor-common/utils");
|
|
23
23
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
24
24
|
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; }
|
|
@@ -73,7 +73,7 @@ var MediaCardInternal = exports.MediaCardInternal = /*#__PURE__*/function (_Comp
|
|
|
73
73
|
while (1) switch (_context.prev = _context.next) {
|
|
74
74
|
case 0:
|
|
75
75
|
collectionName = _this.props.collection;
|
|
76
|
-
mediaClient = (0,
|
|
76
|
+
mediaClient = (0, _mediaClientReact.getMediaClient)(mediaClientConfig);
|
|
77
77
|
options = {
|
|
78
78
|
collectionName: collectionName
|
|
79
79
|
};
|
|
@@ -53,7 +53,7 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
|
|
|
53
53
|
var NORMAL_SEVERITY_THRESHOLD = exports.NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
54
54
|
var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
55
55
|
var packageName = "@atlaskit/renderer";
|
|
56
|
-
var packageVersion = "108.15.
|
|
56
|
+
var packageVersion = "108.15.16";
|
|
57
57
|
var Renderer = exports.Renderer = /*#__PURE__*/function (_PureComponent) {
|
|
58
58
|
(0, _inherits2.default)(Renderer, _PureComponent);
|
|
59
59
|
var _super = _createSuper(Renderer);
|
|
@@ -110,7 +110,7 @@ var fullWidthStyles = function fullWidthStyles(_ref5) {
|
|
|
110
110
|
return (0, _react.css)(_templateObject6 || (_templateObject6 = (0, _taggedTemplateLiteral2.default)(["\n max-width: ", "px;\n margin: 0 auto;\n\n .fabric-editor-breakout-mark,\n .ak-renderer-extension {\n width: 100% !important;\n }\n\n ", "\n "])), _editorSharedStyles.akEditorFullWidthLayoutWidth, (0, _table.isTableResizingEnabled)(appearance) ? '' : "\n .pm-table-container {\n width: 100% !important;\n }\n ");
|
|
111
111
|
};
|
|
112
112
|
var breakoutWidthStyle = function breakoutWidthStyle() {
|
|
113
|
-
return (0, _react.css)(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2.default)(["\n *:not([data-mark-type='fragment'])\n .", " {\n width: 100
|
|
113
|
+
return (0, _react.css)(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2.default)(["\n *:not([data-mark-type='fragment'])\n .", " {\n // TODO - improve inline style logic on table container so important styles aren't required here\n width: 100% !important;\n left: 0 !important;\n }\n\n [data-mark-type='fragment'] * .", " {\n // TODO - improve inline style logic on table container so important styles aren't required here\n width: 100% !important;\n left: 0 !important;\n }\n "])), _styles.TableSharedCssClassName.TABLE_CONTAINER, _styles.TableSharedCssClassName.TABLE_CONTAINER);
|
|
114
114
|
};
|
|
115
115
|
var getShadowOverrides = function getShadowOverrides() {
|
|
116
116
|
return (0, _platformFeatureFlags.getBooleanFF)('platform.editor.table.increase-shadow-visibility_lh89r') ? (0, _react.css)(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2.default)(["\n /** Shadow overrides */\n &.", "::after,\n &.", "::before {\n width: ", "px;\n background: linear-gradient(\n to left,\n transparent 0,\n ", " 140%\n ),\n linear-gradient(\n to right,\n ", " 0px,\n transparent 1px\n );\n }\n\n &.", "::after {\n background: linear-gradient(\n to right,\n transparent 0,\n ", " 140%\n ),\n linear-gradient(\n to left,\n ", " 0px,\n transparent 1px\n );\n left: calc(100% - ", "px);\n }\n "])), _ui.shadowClassNames.RIGHT_SHADOW, _ui.shadowClassNames.LEFT_SHADOW, tableShadowWidth, "var(--ds-shadow-overflow-spread, ".concat(_colors.N40A, ")"), "var(--ds-shadow-overflow-perimeter, transparent)", _ui.shadowClassNames.RIGHT_SHADOW, "var(--ds-shadow-overflow-spread, ".concat(_colors.N40A, ")"), "var(--ds-shadow-overflow-perimeter, transparent)", tableShadowWidth) : '';
|
package/dist/es2019/i18n/tr.js
CHANGED
|
@@ -21,6 +21,6 @@ export default {
|
|
|
21
21
|
'fabric.editor.tableHeader.sorting.asc': 'Artan biçimde sıralama uygulandı',
|
|
22
22
|
'fabric.editor.tableHeader.sorting.default': 'Sütunu sırala',
|
|
23
23
|
'fabric.editor.tableHeader.sorting.desc': 'Azalan biçimde sıralama uygulandı',
|
|
24
|
-
'fabric.editor.tableHeader.sorting.invalid': 'Birleştirilmiş
|
|
24
|
+
'fabric.editor.tableHeader.sorting.invalid': 'Birleştirilmiş hücreler içeren bir tabloyu sıralayamazsınız',
|
|
25
25
|
'fabric.editor.tableHeader.sorting.no': 'Sütuna sıralama uygulanmadı'
|
|
26
26
|
};
|
|
@@ -3,7 +3,7 @@ import React, { useEffect, useState, useCallback } from 'react';
|
|
|
3
3
|
import { MediaInlineCard } from '@atlaskit/media-card';
|
|
4
4
|
import { MediaInlineCardErroredView, MediaInlineCardLoadingView, messages } from '@atlaskit/media-ui';
|
|
5
5
|
import { WithProviders } from '@atlaskit/editor-common/provider-factory';
|
|
6
|
-
import { getMediaClient } from '@atlaskit/media-client';
|
|
6
|
+
import { getMediaClient } from '@atlaskit/media-client-react';
|
|
7
7
|
import { getClipboardAttrs, mediaIdentifierMap } from '../../ui/MediaCard';
|
|
8
8
|
import { createIntl, injectIntl } from 'react-intl-next';
|
|
9
9
|
export const RenderMediaInline = ({
|
|
@@ -2,7 +2,7 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
|
2
2
|
import React, { Component } from 'react';
|
|
3
3
|
import { filter } from '@atlaskit/adf-utils/traverse';
|
|
4
4
|
import { Card, CardLoading, CardError } from '@atlaskit/media-card';
|
|
5
|
-
import { getMediaClient } from '@atlaskit/media-client';
|
|
5
|
+
import { getMediaClient } from '@atlaskit/media-client-react';
|
|
6
6
|
import { withImageLoader } from '@atlaskit/editor-common/utils';
|
|
7
7
|
export const mediaIdentifierMap = new Map();
|
|
8
8
|
export const getListOfIdentifiersFromDoc = doc => {
|
|
@@ -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.16";
|
|
39
39
|
export class Renderer extends PureComponent {
|
|
40
40
|
constructor(props) {
|
|
41
41
|
super(props);
|
|
@@ -347,12 +347,14 @@ const breakoutWidthStyle = () => {
|
|
|
347
347
|
return css`
|
|
348
348
|
*:not([data-mark-type='fragment'])
|
|
349
349
|
.${TableSharedCssClassName.TABLE_CONTAINER} {
|
|
350
|
-
|
|
350
|
+
// TODO - improve inline style logic on table container so important styles aren't required here
|
|
351
|
+
width: 100% !important;
|
|
351
352
|
left: 0 !important;
|
|
352
353
|
}
|
|
353
354
|
|
|
354
355
|
[data-mark-type='fragment'] * .${TableSharedCssClassName.TABLE_CONTAINER} {
|
|
355
|
-
|
|
356
|
+
// TODO - improve inline style logic on table container so important styles aren't required here
|
|
357
|
+
width: 100% !important;
|
|
356
358
|
left: 0 !important;
|
|
357
359
|
}
|
|
358
360
|
`;
|
package/dist/esm/i18n/tr.js
CHANGED
|
@@ -21,6 +21,6 @@ export default {
|
|
|
21
21
|
'fabric.editor.tableHeader.sorting.asc': 'Artan biçimde sıralama uygulandı',
|
|
22
22
|
'fabric.editor.tableHeader.sorting.default': 'Sütunu sırala',
|
|
23
23
|
'fabric.editor.tableHeader.sorting.desc': 'Azalan biçimde sıralama uygulandı',
|
|
24
|
-
'fabric.editor.tableHeader.sorting.invalid': 'Birleştirilmiş
|
|
24
|
+
'fabric.editor.tableHeader.sorting.invalid': 'Birleştirilmiş hücreler içeren bir tabloyu sıralayamazsınız',
|
|
25
25
|
'fabric.editor.tableHeader.sorting.no': 'Sütuna sıralama uygulanmadı'
|
|
26
26
|
};
|
|
@@ -9,7 +9,7 @@ import React, { useEffect, useState, useCallback } from 'react';
|
|
|
9
9
|
import { MediaInlineCard } from '@atlaskit/media-card';
|
|
10
10
|
import { MediaInlineCardErroredView, MediaInlineCardLoadingView, messages } from '@atlaskit/media-ui';
|
|
11
11
|
import { WithProviders } from '@atlaskit/editor-common/provider-factory';
|
|
12
|
-
import { getMediaClient } from '@atlaskit/media-client';
|
|
12
|
+
import { getMediaClient } from '@atlaskit/media-client-react';
|
|
13
13
|
import { getClipboardAttrs, mediaIdentifierMap } from '../../ui/MediaCard';
|
|
14
14
|
import { createIntl, injectIntl } from 'react-intl-next';
|
|
15
15
|
export var RenderMediaInline = function RenderMediaInline(_ref) {
|
package/dist/esm/ui/MediaCard.js
CHANGED
|
@@ -14,7 +14,7 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
|
|
|
14
14
|
import React, { Component } from 'react';
|
|
15
15
|
import { filter } from '@atlaskit/adf-utils/traverse';
|
|
16
16
|
import { Card, CardLoading, CardError } from '@atlaskit/media-card';
|
|
17
|
-
import { getMediaClient } from '@atlaskit/media-client';
|
|
17
|
+
import { getMediaClient } from '@atlaskit/media-client-react';
|
|
18
18
|
import { withImageLoader } from '@atlaskit/editor-common/utils';
|
|
19
19
|
export var mediaIdentifierMap = new Map();
|
|
20
20
|
export var getListOfIdentifiersFromDoc = function getListOfIdentifiersFromDoc(doc) {
|
|
@@ -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.16";
|
|
49
49
|
export var Renderer = /*#__PURE__*/function (_PureComponent) {
|
|
50
50
|
_inherits(Renderer, _PureComponent);
|
|
51
51
|
var _super = _createSuper(Renderer);
|
|
@@ -101,7 +101,7 @@ var fullWidthStyles = function fullWidthStyles(_ref5) {
|
|
|
101
101
|
return css(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["\n max-width: ", "px;\n margin: 0 auto;\n\n .fabric-editor-breakout-mark,\n .ak-renderer-extension {\n width: 100% !important;\n }\n\n ", "\n "])), akEditorFullWidthLayoutWidth, isTableResizingEnabled(appearance) ? '' : "\n .pm-table-container {\n width: 100% !important;\n }\n ");
|
|
102
102
|
};
|
|
103
103
|
var breakoutWidthStyle = function breakoutWidthStyle() {
|
|
104
|
-
return css(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n *:not([data-mark-type='fragment'])\n .", " {\n width: 100
|
|
104
|
+
return css(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n *:not([data-mark-type='fragment'])\n .", " {\n // TODO - improve inline style logic on table container so important styles aren't required here\n width: 100% !important;\n left: 0 !important;\n }\n\n [data-mark-type='fragment'] * .", " {\n // TODO - improve inline style logic on table container so important styles aren't required here\n width: 100% !important;\n left: 0 !important;\n }\n "])), TableSharedCssClassName.TABLE_CONTAINER, TableSharedCssClassName.TABLE_CONTAINER);
|
|
105
105
|
};
|
|
106
106
|
var getShadowOverrides = function getShadowOverrides() {
|
|
107
107
|
return getBooleanFF('platform.editor.table.increase-shadow-visibility_lh89r') ? css(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["\n /** Shadow overrides */\n &.", "::after,\n &.", "::before {\n width: ", "px;\n background: linear-gradient(\n to left,\n transparent 0,\n ", " 140%\n ),\n linear-gradient(\n to right,\n ", " 0px,\n transparent 1px\n );\n }\n\n &.", "::after {\n background: linear-gradient(\n to right,\n transparent 0,\n ", " 140%\n ),\n linear-gradient(\n to left,\n ", " 0px,\n transparent 1px\n );\n left: calc(100% - ", "px);\n }\n "])), shadowClassNames.RIGHT_SHADOW, shadowClassNames.LEFT_SHADOW, tableShadowWidth, "var(--ds-shadow-overflow-spread, ".concat(N40A, ")"), "var(--ds-shadow-overflow-perimeter, transparent)", shadowClassNames.RIGHT_SHADOW, "var(--ds-shadow-overflow-spread, ".concat(N40A, ")"), "var(--ds-shadow-overflow-perimeter, transparent)", tableShadowWidth) : '';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { ContextIdentifierProvider, ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
3
|
-
import { FileIdentifier } from '@atlaskit/media-client';
|
|
4
|
-
import { MediaProvider, ClipboardAttrs } from '../../ui/MediaCard';
|
|
5
|
-
import { IntlShape, WrappedComponentProps } from 'react-intl-next';
|
|
2
|
+
import type { ContextIdentifierProvider, ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
3
|
+
import type { FileIdentifier } from '@atlaskit/media-client';
|
|
4
|
+
import type { MediaProvider, ClipboardAttrs } from '../../ui/MediaCard';
|
|
5
|
+
import type { IntlShape, WrappedComponentProps } from 'react-intl-next';
|
|
6
6
|
import type { EventHandlers } from '@atlaskit/editor-common/ui';
|
|
7
|
-
import { RendererAppearance } from '../../ui/Renderer/types';
|
|
8
|
-
import { MediaFeatureFlags } from '@atlaskit/media-common';
|
|
9
|
-
import { RendererContext } from '../types';
|
|
7
|
+
import type { RendererAppearance } from '../../ui/Renderer/types';
|
|
8
|
+
import type { MediaFeatureFlags } from '@atlaskit/media-common';
|
|
9
|
+
import type { RendererContext } from '../types';
|
|
10
10
|
type MediaInlineProviders = {
|
|
11
11
|
mediaProvider?: Promise<MediaProvider>;
|
|
12
12
|
contextIdentifierProvider?: Promise<ContextIdentifierProvider>;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { ContextIdentifierProvider, ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
3
|
-
import { FileIdentifier } from '@atlaskit/media-client';
|
|
4
|
-
import { MediaProvider, ClipboardAttrs } from '../../ui/MediaCard';
|
|
5
|
-
import { IntlShape, WrappedComponentProps } from 'react-intl-next';
|
|
2
|
+
import type { ContextIdentifierProvider, ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
3
|
+
import type { FileIdentifier } from '@atlaskit/media-client';
|
|
4
|
+
import type { MediaProvider, ClipboardAttrs } from '../../ui/MediaCard';
|
|
5
|
+
import type { IntlShape, WrappedComponentProps } from 'react-intl-next';
|
|
6
6
|
import type { EventHandlers } from '@atlaskit/editor-common/ui';
|
|
7
|
-
import { RendererAppearance } from '../../ui/Renderer/types';
|
|
8
|
-
import { MediaFeatureFlags } from '@atlaskit/media-common';
|
|
9
|
-
import { RendererContext } from '../types';
|
|
7
|
+
import type { RendererAppearance } from '../../ui/Renderer/types';
|
|
8
|
+
import type { MediaFeatureFlags } from '@atlaskit/media-common';
|
|
9
|
+
import type { RendererContext } from '../types';
|
|
10
10
|
type MediaInlineProviders = {
|
|
11
11
|
mediaProvider?: Promise<MediaProvider>;
|
|
12
12
|
contextIdentifierProvider?: Promise<ContextIdentifierProvider>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "108.15.
|
|
3
|
+
"version": "108.15.16",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -31,22 +31,23 @@
|
|
|
31
31
|
"@atlaskit/analytics-next": "^9.1.0",
|
|
32
32
|
"@atlaskit/button": "^16.11.0",
|
|
33
33
|
"@atlaskit/code": "^14.6.0",
|
|
34
|
-
"@atlaskit/editor-common": "^76.
|
|
34
|
+
"@atlaskit/editor-common": "^76.15.0",
|
|
35
35
|
"@atlaskit/editor-json-transformer": "^8.10.0",
|
|
36
36
|
"@atlaskit/editor-palette": "1.5.1",
|
|
37
37
|
"@atlaskit/editor-prosemirror": "1.1.0",
|
|
38
38
|
"@atlaskit/editor-shared-styles": "^2.8.0",
|
|
39
39
|
"@atlaskit/emoji": "^67.5.0",
|
|
40
40
|
"@atlaskit/icon": "^21.12.0",
|
|
41
|
-
"@atlaskit/link-datasource": "^1.
|
|
41
|
+
"@atlaskit/link-datasource": "^1.10.0",
|
|
42
42
|
"@atlaskit/media-card": "^77.2.0",
|
|
43
|
-
"@atlaskit/media-client": "^
|
|
43
|
+
"@atlaskit/media-client": "^25.0.0",
|
|
44
|
+
"@atlaskit/media-client-react": "^1.3.0",
|
|
44
45
|
"@atlaskit/media-common": "^9.0.0",
|
|
45
46
|
"@atlaskit/media-filmstrip": "^47.0.0",
|
|
46
47
|
"@atlaskit/media-ui": "^25.0.0",
|
|
47
48
|
"@atlaskit/media-viewer": "^48.1.0",
|
|
48
49
|
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
49
|
-
"@atlaskit/smart-card": "^26.
|
|
50
|
+
"@atlaskit/smart-card": "^26.39.0",
|
|
50
51
|
"@atlaskit/status": "^1.4.0",
|
|
51
52
|
"@atlaskit/task-decision": "^17.9.0",
|
|
52
53
|
"@atlaskit/theme": "^12.6.0",
|
|
@@ -71,7 +72,7 @@
|
|
|
71
72
|
"@atlaskit/analytics-gas-types": "^5.1.0",
|
|
72
73
|
"@atlaskit/css-reset": "^6.6.0",
|
|
73
74
|
"@atlaskit/link-provider": "^1.6.0",
|
|
74
|
-
"@atlaskit/link-test-helpers": "^6.
|
|
75
|
+
"@atlaskit/link-test-helpers": "^6.2.0",
|
|
75
76
|
"@atlaskit/media-core": "^34.1.0",
|
|
76
77
|
"@atlaskit/media-integration-test-helpers": "^3.0.0",
|
|
77
78
|
"@atlaskit/media-test-helpers": "^33.0.0",
|