@atlaskit/renderer 124.21.2 → 124.22.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 +19 -0
- package/dist/cjs/ui/Expand.js +3 -6
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/ui/Expand.js +0 -3
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/ui/Expand.js +0 -3
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 124.22.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`4cb9e393d31fb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4cb9e393d31fb) -
|
|
8
|
+
ENGHEALTH-40105: add missing a117 coverage
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 124.22.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`762b79e21f96a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/762b79e21f96a) -
|
|
16
|
+
Migrated and cleaned up legacy iconography usage.
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
|
|
3
22
|
## 124.21.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/dist/cjs/ui/Expand.js
CHANGED
|
@@ -14,8 +14,7 @@ var _react2 = _interopRequireWildcard(require("react"));
|
|
|
14
14
|
var _analytics = require("@atlaskit/editor-common/analytics");
|
|
15
15
|
var _ui = require("@atlaskit/editor-common/ui");
|
|
16
16
|
var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
|
|
17
|
-
var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/
|
|
18
|
-
var _chevronRight2 = _interopRequireDefault(require("@atlaskit/icon/core/chevron-right"));
|
|
17
|
+
var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/core/chevron-right"));
|
|
19
18
|
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
20
19
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
21
20
|
var _uniqueId2 = _interopRequireDefault(require("lodash/uniqueId"));
|
|
@@ -266,9 +265,8 @@ function Expand(_ref2) {
|
|
|
266
265
|
expanded: expanded
|
|
267
266
|
}, isMobile ? (0, _react.jsx)(_ui.ExpandIconWrapper, {
|
|
268
267
|
expanded: expanded
|
|
269
|
-
}, (0, _react.jsx)(
|
|
268
|
+
}, (0, _react.jsx)(_chevronRight.default, {
|
|
270
269
|
label: label,
|
|
271
|
-
LEGACY_fallbackIcon: _chevronRight.default,
|
|
272
270
|
spacing: "spacious",
|
|
273
271
|
size: "small"
|
|
274
272
|
})) : (0, _react.jsx)(_tooltip.default, {
|
|
@@ -280,9 +278,8 @@ function Expand(_ref2) {
|
|
|
280
278
|
testId: 'tooltip'
|
|
281
279
|
}, (0, _react.jsx)(_ui.ExpandIconWrapper, {
|
|
282
280
|
expanded: expanded
|
|
283
|
-
}, (0, _react.jsx)(
|
|
281
|
+
}, (0, _react.jsx)(_chevronRight.default, {
|
|
284
282
|
label: label,
|
|
285
|
-
LEGACY_fallbackIcon: _chevronRight.default,
|
|
286
283
|
spacing: "spacious",
|
|
287
284
|
size: "small"
|
|
288
285
|
}))), (0, _react.jsx)("span", {
|
|
@@ -69,7 +69,7 @@ var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
69
69
|
// we want to calculate all the table widths (which causes reflows) after the renderer has finished loading to mitigate performance impact
|
|
70
70
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
71
71
|
var packageName = "@atlaskit/renderer";
|
|
72
|
-
var packageVersion = "124.
|
|
72
|
+
var packageVersion = "124.22.1";
|
|
73
73
|
var setAsQueryContainerStyles = (0, _react2.css)({
|
|
74
74
|
containerName: 'ak-renderer-wrapper',
|
|
75
75
|
containerType: 'inline-size'
|
package/dist/es2019/ui/Expand.js
CHANGED
|
@@ -10,7 +10,6 @@ import React, { useCallback, useRef, Suspense, lazy } from 'react';
|
|
|
10
10
|
import { ACTION, ACTION_SUBJECT, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
|
|
11
11
|
import { ExpandIconWrapper, ExpandLayoutWrapperWithRef, expandMessages, WidthProvider } from '@atlaskit/editor-common/ui';
|
|
12
12
|
import { akEditorLineHeight, akEditorSwoopCubicBezier, akLayoutGutterOffset } from '@atlaskit/editor-shared-styles';
|
|
13
|
-
import { default as ChevronRightIconLegacy } from '@atlaskit/icon/glyph/chevron-right';
|
|
14
13
|
import ChevronRightIcon from '@atlaskit/icon/core/chevron-right';
|
|
15
14
|
import Tooltip from '@atlaskit/tooltip';
|
|
16
15
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
@@ -248,7 +247,6 @@ function Expand({
|
|
|
248
247
|
expanded: expanded
|
|
249
248
|
}, jsx(ChevronRightIcon, {
|
|
250
249
|
label: label,
|
|
251
|
-
LEGACY_fallbackIcon: ChevronRightIconLegacy,
|
|
252
250
|
spacing: "spacious",
|
|
253
251
|
size: "small"
|
|
254
252
|
})) : jsx(Tooltip, {
|
|
@@ -262,7 +260,6 @@ function Expand({
|
|
|
262
260
|
expanded: expanded
|
|
263
261
|
}, jsx(ChevronRightIcon, {
|
|
264
262
|
label: label,
|
|
265
|
-
LEGACY_fallbackIcon: ChevronRightIconLegacy,
|
|
266
263
|
spacing: "spacious",
|
|
267
264
|
size: "small"
|
|
268
265
|
}))), jsx("span", {
|
|
@@ -55,7 +55,7 @@ export const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
55
55
|
// we want to calculate all the table widths (which causes reflows) after the renderer has finished loading to mitigate performance impact
|
|
56
56
|
const TABLE_INFO_TIMEOUT = 10000;
|
|
57
57
|
const packageName = "@atlaskit/renderer";
|
|
58
|
-
const packageVersion = "124.
|
|
58
|
+
const packageVersion = "124.22.1";
|
|
59
59
|
const setAsQueryContainerStyles = css({
|
|
60
60
|
containerName: 'ak-renderer-wrapper',
|
|
61
61
|
containerType: 'inline-size'
|
package/dist/esm/ui/Expand.js
CHANGED
|
@@ -13,7 +13,6 @@ import React, { useCallback, useRef, Suspense, lazy } from 'react';
|
|
|
13
13
|
import { ACTION, ACTION_SUBJECT, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
|
|
14
14
|
import { ExpandIconWrapper, ExpandLayoutWrapperWithRef, expandMessages, WidthProvider } from '@atlaskit/editor-common/ui';
|
|
15
15
|
import { akEditorLineHeight, akEditorSwoopCubicBezier, akLayoutGutterOffset } from '@atlaskit/editor-shared-styles';
|
|
16
|
-
import { default as ChevronRightIconLegacy } from '@atlaskit/icon/glyph/chevron-right';
|
|
17
16
|
import ChevronRightIcon from '@atlaskit/icon/core/chevron-right';
|
|
18
17
|
import Tooltip from '@atlaskit/tooltip';
|
|
19
18
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
@@ -259,7 +258,6 @@ function Expand(_ref2) {
|
|
|
259
258
|
expanded: expanded
|
|
260
259
|
}, jsx(ChevronRightIcon, {
|
|
261
260
|
label: label,
|
|
262
|
-
LEGACY_fallbackIcon: ChevronRightIconLegacy,
|
|
263
261
|
spacing: "spacious",
|
|
264
262
|
size: "small"
|
|
265
263
|
})) : jsx(Tooltip, {
|
|
@@ -273,7 +271,6 @@ function Expand(_ref2) {
|
|
|
273
271
|
expanded: expanded
|
|
274
272
|
}, jsx(ChevronRightIcon, {
|
|
275
273
|
label: label,
|
|
276
|
-
LEGACY_fallbackIcon: ChevronRightIconLegacy,
|
|
277
274
|
spacing: "spacious",
|
|
278
275
|
size: "small"
|
|
279
276
|
}))), jsx("span", {
|
|
@@ -60,7 +60,7 @@ export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
60
60
|
// we want to calculate all the table widths (which causes reflows) after the renderer has finished loading to mitigate performance impact
|
|
61
61
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
62
62
|
var packageName = "@atlaskit/renderer";
|
|
63
|
-
var packageVersion = "124.
|
|
63
|
+
var packageVersion = "124.22.1";
|
|
64
64
|
var setAsQueryContainerStyles = css({
|
|
65
65
|
containerName: 'ak-renderer-wrapper',
|
|
66
66
|
containerType: 'inline-size'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "124.
|
|
3
|
+
"version": "124.22.1",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@atlaskit/analytics-namespaced-context": "^7.2.0",
|
|
31
31
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
32
32
|
"@atlaskit/browser-apis": "^0.0.1",
|
|
33
|
-
"@atlaskit/button": "^23.
|
|
33
|
+
"@atlaskit/button": "^23.8.0",
|
|
34
34
|
"@atlaskit/code": "^17.4.0",
|
|
35
35
|
"@atlaskit/editor-json-transformer": "^8.31.0",
|
|
36
36
|
"@atlaskit/editor-palette": "^2.1.0",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"@atlaskit/editor-shared-styles": "^3.10.0",
|
|
39
39
|
"@atlaskit/emoji": "^69.9.0",
|
|
40
40
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
41
|
-
"@atlaskit/icon": "^29.
|
|
41
|
+
"@atlaskit/icon": "^29.3.0",
|
|
42
42
|
"@atlaskit/link": "^3.2.0",
|
|
43
43
|
"@atlaskit/link-datasource": "^4.30.0",
|
|
44
44
|
"@atlaskit/link-extractors": "^2.4.0",
|
|
45
45
|
"@atlaskit/linking-common": "^9.9.0",
|
|
46
|
-
"@atlaskit/media-card": "^79.
|
|
46
|
+
"@atlaskit/media-card": "^79.11.0",
|
|
47
47
|
"@atlaskit/media-client": "^35.7.0",
|
|
48
48
|
"@atlaskit/media-client-react": "^4.1.0",
|
|
49
49
|
"@atlaskit/media-common": "^12.3.0",
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
54
54
|
"@atlaskit/platform-feature-flags-react": "^0.4.0",
|
|
55
55
|
"@atlaskit/react-ufo": "^4.16.0",
|
|
56
|
-
"@atlaskit/smart-card": "^43.
|
|
56
|
+
"@atlaskit/smart-card": "^43.17.0",
|
|
57
57
|
"@atlaskit/status": "^3.0.0",
|
|
58
58
|
"@atlaskit/task-decision": "^19.2.0",
|
|
59
59
|
"@atlaskit/theme": "^21.0.0",
|
|
60
|
-
"@atlaskit/tmp-editor-statsig": "^15.
|
|
61
|
-
"@atlaskit/tokens": "^8.
|
|
60
|
+
"@atlaskit/tmp-editor-statsig": "^15.13.0",
|
|
61
|
+
"@atlaskit/tokens": "^8.6.0",
|
|
62
62
|
"@atlaskit/tooltip": "^20.11.0",
|
|
63
63
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
64
64
|
"@babel/runtime": "^7.0.0",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"uuid": "^3.1.0"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|
|
74
|
-
"@atlaskit/editor-common": "^110.
|
|
74
|
+
"@atlaskit/editor-common": "^110.46.0",
|
|
75
75
|
"@atlaskit/link-provider": "^4.0.0",
|
|
76
76
|
"@atlaskit/media-core": "^37.0.0",
|
|
77
77
|
"react": "^18.2.0",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"@atlaskit/mention": "^24.4.0",
|
|
91
91
|
"@atlaskit/modal-dialog": "^14.9.0",
|
|
92
92
|
"@atlaskit/navigation-next": "patch:@atlaskit/navigation-next@npm%3A9.0.17#~/.yarn/patches/@atlaskit-navigation-next-npm-9.0.17-958ca0ab9d.patch",
|
|
93
|
-
"@atlaskit/profilecard": "^24.
|
|
93
|
+
"@atlaskit/profilecard": "^24.26.0",
|
|
94
94
|
"@atlaskit/util-data-test": "^18.3.0",
|
|
95
95
|
"@atlassian/feature-flags-test-utils": "^1.0.0",
|
|
96
96
|
"@testing-library/react": "^16.3.0",
|