@atlaskit/editor-common 87.13.0 → 87.13.2
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 +15 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/cjs/ui/WidthProvider/index.js +8 -3
- package/dist/cjs/ui/WidthProvider/isSSR.js +14 -0
- package/dist/cjs/ui/WidthProvider/isSsrButNoBreakoutScriptObserved.js +11 -0
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/es2019/ui/WidthProvider/index.js +9 -4
- package/dist/es2019/ui/WidthProvider/isSSR.js +8 -0
- package/dist/es2019/ui/WidthProvider/isSsrButNoBreakoutScriptObserved.js +6 -0
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/esm/ui/WidthProvider/index.js +9 -4
- package/dist/esm/ui/WidthProvider/isSSR.js +8 -0
- package/dist/esm/ui/WidthProvider/isSsrButNoBreakoutScriptObserved.js +6 -0
- package/dist/types/ui/WidthProvider/index.d.ts +5 -0
- package/dist/types/ui/WidthProvider/isSSR.d.ts +1 -0
- package/dist/types/ui/WidthProvider/isSsrButNoBreakoutScriptObserved.d.ts +1 -0
- package/dist/types-ts4.5/ui/WidthProvider/index.d.ts +5 -0
- package/dist/types-ts4.5/ui/WidthProvider/isSSR.d.ts +1 -0
- package/dist/types-ts4.5/ui/WidthProvider/isSsrButNoBreakoutScriptObserved.d.ts +1 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 87.13.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 87.13.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#131172](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/131172)
|
|
14
|
+
[`4b528c8da4120`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4b528c8da4120) -
|
|
15
|
+
No putting visibility hidden on width detector childen if in SSR but no breakout inline script
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 87.13.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -17,7 +17,7 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
|
|
|
17
17
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
18
18
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
19
19
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
20
|
-
var packageVersion = "87.13.
|
|
20
|
+
var packageVersion = "87.13.2";
|
|
21
21
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
22
22
|
// Remove URL as it has UGC
|
|
23
23
|
// TODO: Sanitise the URL instead of just removing it
|
|
@@ -23,7 +23,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
|
|
|
23
23
|
* @jsx jsx
|
|
24
24
|
*/ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
25
25
|
var packageName = "@atlaskit/editor-common";
|
|
26
|
-
var packageVersion = "87.13.
|
|
26
|
+
var packageVersion = "87.13.2";
|
|
27
27
|
var halfFocusRing = 1;
|
|
28
28
|
var dropOffset = '0, 8';
|
|
29
29
|
var DropList = /*#__PURE__*/function (_Component) {
|
|
@@ -16,6 +16,8 @@ var _memoizeOne = _interopRequireDefault(require("memoize-one"));
|
|
|
16
16
|
var _rafSchd = _interopRequireDefault(require("raf-schd"));
|
|
17
17
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
18
18
|
var _widthDetector = require("@atlaskit/width-detector");
|
|
19
|
+
var _isSSR = require("./isSSR");
|
|
20
|
+
var _isSsrButNoBreakoutScriptObserved = require("./isSsrButNoBreakoutScriptObserved");
|
|
19
21
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
20
22
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
21
23
|
/**
|
|
@@ -65,7 +67,7 @@ var Provider = WidthContext.Provider,
|
|
|
65
67
|
*/
|
|
66
68
|
var getBodyWidth = exports.getBodyWidth = (0, _memoizeOne.default)(function () {
|
|
67
69
|
var _document$body$offset, _document$body;
|
|
68
|
-
return
|
|
70
|
+
return (0, _isSSR.isSSR)() ? 0 : (_document$body$offset = (_document$body = document.body) === null || _document$body === void 0 ? void 0 : _document$body.offsetWidth) !== null && _document$body$offset !== void 0 ? _document$body$offset : 0;
|
|
69
71
|
});
|
|
70
72
|
var WidthProvider = exports.WidthProvider = function WidthProvider(_ref) {
|
|
71
73
|
var className = _ref.className,
|
|
@@ -103,7 +105,7 @@ var WidthProvider = exports.WidthProvider = function WidthProvider(_ref) {
|
|
|
103
105
|
});
|
|
104
106
|
}, []);
|
|
105
107
|
var skipWidthDetection = shouldCheckExistingValue && existingContextValue.width > 0;
|
|
106
|
-
|
|
108
|
+
_react.default.useLayoutEffect(function () {
|
|
107
109
|
isMountedRef.current = true;
|
|
108
110
|
if (shouldFixTableResizing && !isInitialWidthUpdated) {
|
|
109
111
|
// useLayoutEffect is not run in SSR mode
|
|
@@ -127,7 +129,10 @@ var WidthProvider = exports.WidthProvider = function WidthProvider(_ref) {
|
|
|
127
129
|
// It is done in packages/editor/renderer/src/ui/Renderer/breakout-ssr.tsx
|
|
128
130
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Intended
|
|
129
131
|
,
|
|
130
|
-
style:
|
|
132
|
+
style:
|
|
133
|
+
// The hidden visibility is relying on the observer in breakout-ssr.tsx to clear.
|
|
134
|
+
// Do not hide if the observer is not observed. This happens in editor SSR.
|
|
135
|
+
shouldFixTableResizing && !(0, _isSsrButNoBreakoutScriptObserved.isSsrButNoBreakoutScriptObserved)() && !isInitialWidthUpdated ? {
|
|
131
136
|
// Width is initialized with body width but in Confluence this is too wide as side nav takes some space.
|
|
132
137
|
// Putting the div into hidden until we can get the correct width.
|
|
133
138
|
// Only setting the visibility so children still takes space which will make scrollbar to correct appear.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.isSSR = isSSR;
|
|
7
|
+
function isSSR() {
|
|
8
|
+
var _process;
|
|
9
|
+
return Boolean(
|
|
10
|
+
// In most places there is no document when running on server-side
|
|
11
|
+
typeof document === 'undefined' || ( // When SSRing editor with full cycle mode we define the document
|
|
12
|
+
// Check Confluence specific environment variable
|
|
13
|
+
(_process = process) === null || _process === void 0 || (_process = _process.env) === null || _process === void 0 ? void 0 : _process.REACT_SSR));
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.isSsrButNoBreakoutScriptObserved = isSsrButNoBreakoutScriptObserved;
|
|
7
|
+
var _isSSR = require("./isSSR");
|
|
8
|
+
// export for testing
|
|
9
|
+
function isSsrButNoBreakoutScriptObserved() {
|
|
10
|
+
return (0, _isSSR.isSSR)() && !window.__SSR_BREAKOUT_OBSERVED;
|
|
11
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { isFedRamp } from './environment';
|
|
2
2
|
const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
3
3
|
const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
4
|
-
const packageVersion = "87.13.
|
|
4
|
+
const packageVersion = "87.13.2";
|
|
5
5
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
6
6
|
// Remove URL as it has UGC
|
|
7
7
|
// TODO: Sanitise the URL instead of just removing it
|
|
@@ -12,7 +12,7 @@ import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@
|
|
|
12
12
|
import { N0, N50A, N60A, N900 } from '@atlaskit/theme/colors';
|
|
13
13
|
import Layer from '../Layer';
|
|
14
14
|
const packageName = "@atlaskit/editor-common";
|
|
15
|
-
const packageVersion = "87.13.
|
|
15
|
+
const packageVersion = "87.13.2";
|
|
16
16
|
const halfFocusRing = 1;
|
|
17
17
|
const dropOffset = '0, 8';
|
|
18
18
|
class DropList extends Component {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @jsxRuntime classic
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
|
-
import React, { Fragment, useContext,
|
|
5
|
+
import React, { Fragment, useContext, useMemo, useRef, useState } from 'react';
|
|
6
6
|
|
|
7
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
|
@@ -10,6 +10,8 @@ import memoizeOne from 'memoize-one';
|
|
|
10
10
|
import rafSchedule from 'raf-schd';
|
|
11
11
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
12
12
|
import { WidthObserver } from '@atlaskit/width-detector';
|
|
13
|
+
import { isSSR } from './isSSR';
|
|
14
|
+
import { isSsrButNoBreakoutScriptObserved } from './isSsrButNoBreakoutScriptObserved';
|
|
13
15
|
const styles = css({
|
|
14
16
|
position: 'relative',
|
|
15
17
|
width: '100%'
|
|
@@ -50,7 +52,7 @@ const {
|
|
|
50
52
|
*/
|
|
51
53
|
export const getBodyWidth = memoizeOne(() => {
|
|
52
54
|
var _document$body$offset, _document$body;
|
|
53
|
-
return
|
|
55
|
+
return isSSR() ? 0 : (_document$body$offset = (_document$body = document.body) === null || _document$body === void 0 ? void 0 : _document$body.offsetWidth) !== null && _document$body$offset !== void 0 ? _document$body$offset : 0;
|
|
54
56
|
});
|
|
55
57
|
export const WidthProvider = ({
|
|
56
58
|
className,
|
|
@@ -81,7 +83,7 @@ export const WidthProvider = ({
|
|
|
81
83
|
});
|
|
82
84
|
}, []);
|
|
83
85
|
const skipWidthDetection = shouldCheckExistingValue && existingContextValue.width > 0;
|
|
84
|
-
useLayoutEffect(() => {
|
|
86
|
+
React.useLayoutEffect(() => {
|
|
85
87
|
isMountedRef.current = true;
|
|
86
88
|
if (shouldFixTableResizing && !isInitialWidthUpdated) {
|
|
87
89
|
// useLayoutEffect is not run in SSR mode
|
|
@@ -105,7 +107,10 @@ export const WidthProvider = ({
|
|
|
105
107
|
// It is done in packages/editor/renderer/src/ui/Renderer/breakout-ssr.tsx
|
|
106
108
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Intended
|
|
107
109
|
,
|
|
108
|
-
style:
|
|
110
|
+
style:
|
|
111
|
+
// The hidden visibility is relying on the observer in breakout-ssr.tsx to clear.
|
|
112
|
+
// Do not hide if the observer is not observed. This happens in editor SSR.
|
|
113
|
+
shouldFixTableResizing && !isSsrButNoBreakoutScriptObserved() && !isInitialWidthUpdated ? {
|
|
109
114
|
// Width is initialized with body width but in Confluence this is too wide as side nav takes some space.
|
|
110
115
|
// Putting the div into hidden until we can get the correct width.
|
|
111
116
|
// Only setting the visibility so children still takes space which will make scrollbar to correct appear.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export function isSSR() {
|
|
2
|
+
var _process, _process$env;
|
|
3
|
+
return Boolean(
|
|
4
|
+
// In most places there is no document when running on server-side
|
|
5
|
+
typeof document === 'undefined' || ( // When SSRing editor with full cycle mode we define the document
|
|
6
|
+
// Check Confluence specific environment variable
|
|
7
|
+
(_process = process) === null || _process === void 0 ? void 0 : (_process$env = _process.env) === null || _process$env === void 0 ? void 0 : _process$env.REACT_SSR));
|
|
8
|
+
}
|
|
@@ -7,7 +7,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
7
7
|
import { isFedRamp } from './environment';
|
|
8
8
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
9
9
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
10
|
-
var packageVersion = "87.13.
|
|
10
|
+
var packageVersion = "87.13.2";
|
|
11
11
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
12
12
|
// Remove URL as it has UGC
|
|
13
13
|
// TODO: Sanitise the URL instead of just removing it
|
|
@@ -20,7 +20,7 @@ import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@
|
|
|
20
20
|
import { N0, N50A, N60A, N900 } from '@atlaskit/theme/colors';
|
|
21
21
|
import Layer from '../Layer';
|
|
22
22
|
var packageName = "@atlaskit/editor-common";
|
|
23
|
-
var packageVersion = "87.13.
|
|
23
|
+
var packageVersion = "87.13.2";
|
|
24
24
|
var halfFocusRing = 1;
|
|
25
25
|
var dropOffset = '0, 8';
|
|
26
26
|
var DropList = /*#__PURE__*/function (_Component) {
|
|
@@ -3,7 +3,7 @@ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
|
3
3
|
* @jsxRuntime classic
|
|
4
4
|
* @jsx jsx
|
|
5
5
|
*/
|
|
6
|
-
import React, { Fragment, useContext,
|
|
6
|
+
import React, { Fragment, useContext, useMemo, useRef, useState } from 'react';
|
|
7
7
|
|
|
8
8
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
9
9
|
import { css, jsx } from '@emotion/react';
|
|
@@ -11,6 +11,8 @@ import memoizeOne from 'memoize-one';
|
|
|
11
11
|
import rafSchedule from 'raf-schd';
|
|
12
12
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
13
13
|
import { WidthObserver } from '@atlaskit/width-detector';
|
|
14
|
+
import { isSSR } from './isSSR';
|
|
15
|
+
import { isSsrButNoBreakoutScriptObserved } from './isSsrButNoBreakoutScriptObserved';
|
|
14
16
|
var styles = css({
|
|
15
17
|
position: 'relative',
|
|
16
18
|
width: '100%'
|
|
@@ -51,7 +53,7 @@ var Provider = WidthContext.Provider,
|
|
|
51
53
|
*/
|
|
52
54
|
export var getBodyWidth = memoizeOne(function () {
|
|
53
55
|
var _document$body$offset, _document$body;
|
|
54
|
-
return
|
|
56
|
+
return isSSR() ? 0 : (_document$body$offset = (_document$body = document.body) === null || _document$body === void 0 ? void 0 : _document$body.offsetWidth) !== null && _document$body$offset !== void 0 ? _document$body$offset : 0;
|
|
55
57
|
});
|
|
56
58
|
export var WidthProvider = function WidthProvider(_ref) {
|
|
57
59
|
var className = _ref.className,
|
|
@@ -89,7 +91,7 @@ export var WidthProvider = function WidthProvider(_ref) {
|
|
|
89
91
|
});
|
|
90
92
|
}, []);
|
|
91
93
|
var skipWidthDetection = shouldCheckExistingValue && existingContextValue.width > 0;
|
|
92
|
-
useLayoutEffect(function () {
|
|
94
|
+
React.useLayoutEffect(function () {
|
|
93
95
|
isMountedRef.current = true;
|
|
94
96
|
if (shouldFixTableResizing && !isInitialWidthUpdated) {
|
|
95
97
|
// useLayoutEffect is not run in SSR mode
|
|
@@ -113,7 +115,10 @@ export var WidthProvider = function WidthProvider(_ref) {
|
|
|
113
115
|
// It is done in packages/editor/renderer/src/ui/Renderer/breakout-ssr.tsx
|
|
114
116
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Intended
|
|
115
117
|
,
|
|
116
|
-
style:
|
|
118
|
+
style:
|
|
119
|
+
// The hidden visibility is relying on the observer in breakout-ssr.tsx to clear.
|
|
120
|
+
// Do not hide if the observer is not observed. This happens in editor SSR.
|
|
121
|
+
shouldFixTableResizing && !isSsrButNoBreakoutScriptObserved() && !isInitialWidthUpdated ? {
|
|
117
122
|
// Width is initialized with body width but in Confluence this is too wide as side nav takes some space.
|
|
118
123
|
// Putting the div into hidden until we can get the correct width.
|
|
119
124
|
// Only setting the visibility so children still takes space which will make scrollbar to correct appear.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export function isSSR() {
|
|
2
|
+
var _process;
|
|
3
|
+
return Boolean(
|
|
4
|
+
// In most places there is no document when running on server-side
|
|
5
|
+
typeof document === 'undefined' || ( // When SSRing editor with full cycle mode we define the document
|
|
6
|
+
// Check Confluence specific environment variable
|
|
7
|
+
(_process = process) === null || _process === void 0 || (_process = _process.env) === null || _process === void 0 ? void 0 : _process.REACT_SSR));
|
|
8
|
+
}
|
|
@@ -4,6 +4,11 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import React from 'react';
|
|
6
6
|
import { jsx } from '@emotion/react';
|
|
7
|
+
declare global {
|
|
8
|
+
interface Window {
|
|
9
|
+
__SSR_BREAKOUT_OBSERVED?: boolean;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
7
12
|
export type Breakpoints = 'S' | 'M' | 'L';
|
|
8
13
|
export type WidthConsumerContext = {
|
|
9
14
|
width: number;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isSSR(): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isSsrButNoBreakoutScriptObserved(): boolean;
|
|
@@ -4,6 +4,11 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import React from 'react';
|
|
6
6
|
import { jsx } from '@emotion/react';
|
|
7
|
+
declare global {
|
|
8
|
+
interface Window {
|
|
9
|
+
__SSR_BREAKOUT_OBSERVED?: boolean;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
7
12
|
export type Breakpoints = 'S' | 'M' | 'L';
|
|
8
13
|
export type WidthConsumerContext = {
|
|
9
14
|
width: number;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isSSR(): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isSsrButNoBreakoutScriptObserved(): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "87.13.
|
|
3
|
+
"version": "87.13.2",
|
|
4
4
|
"description": "A package that contains common classes and components for editor and renderer",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"@atlaskit/analytics-namespaced-context": "^6.11.0",
|
|
106
106
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
107
107
|
"@atlaskit/atlassian-context": "^0.0.0",
|
|
108
|
-
"@atlaskit/button": "^20.
|
|
108
|
+
"@atlaskit/button": "^20.1.0",
|
|
109
109
|
"@atlaskit/code": "^15.5.0",
|
|
110
110
|
"@atlaskit/codemod-utils": "^4.2.0",
|
|
111
111
|
"@atlaskit/custom-steps": "^0.7.0",
|
|
@@ -120,11 +120,11 @@
|
|
|
120
120
|
"@atlaskit/icon-object": "^6.5.0",
|
|
121
121
|
"@atlaskit/link-datasource": "^2.11.0",
|
|
122
122
|
"@atlaskit/link-picker": "^1.42.0",
|
|
123
|
-
"@atlaskit/media-card": "^78.
|
|
124
|
-
"@atlaskit/media-client": "^27.
|
|
123
|
+
"@atlaskit/media-card": "^78.1.0",
|
|
124
|
+
"@atlaskit/media-client": "^27.4.0",
|
|
125
125
|
"@atlaskit/media-client-react": "^2.1.0",
|
|
126
126
|
"@atlaskit/media-common": "^11.4.0",
|
|
127
|
-
"@atlaskit/media-file-preview": "^0.
|
|
127
|
+
"@atlaskit/media-file-preview": "^0.8.0",
|
|
128
128
|
"@atlaskit/media-picker": "^66.5.0",
|
|
129
129
|
"@atlaskit/media-ui": "^25.11.0",
|
|
130
130
|
"@atlaskit/media-viewer": "48.7.2",
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
"@atlaskit/task-decision": "^17.10.0",
|
|
141
141
|
"@atlaskit/textfield": "^6.5.0",
|
|
142
142
|
"@atlaskit/theme": "^13.0.0",
|
|
143
|
-
"@atlaskit/tokens": "^1.
|
|
143
|
+
"@atlaskit/tokens": "^1.59.0",
|
|
144
144
|
"@atlaskit/tooltip": "^18.7.0",
|
|
145
145
|
"@atlaskit/ufo": "^0.3.0",
|
|
146
146
|
"@atlaskit/width-detector": "^4.3.0",
|