@atlaskit/renderer 108.14.0 → 108.15.0
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 +10 -0
- package/dist/cjs/react/nodes/blockCard.js +2 -1
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/react/nodes/blockCard.js +2 -1
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/react/nodes/blockCard.js +2 -1
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/dist/types/react/nodes/blockCard.d.ts +2 -2
- package/dist/types-ts4.5/react/nodes/blockCard.d.ts +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 108.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`e4721cc5a3f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4721cc5a3f) - Make issue count clickable
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
3
13
|
## 108.14.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -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.
|
|
58
|
+
var packageVersion = "108.15.0";
|
|
59
59
|
var Renderer = /*#__PURE__*/function (_PureComponent) {
|
|
60
60
|
(0, _inherits2.default)(Renderer, _PureComponent);
|
|
61
61
|
var _super = _createSuper(Renderer);
|
|
@@ -87,7 +87,8 @@ export default function BlockCard(props) {
|
|
|
87
87
|
datasourceId: datasource.id,
|
|
88
88
|
parameters: datasource.parameters,
|
|
89
89
|
visibleColumnKeys: visibleColumnKeys,
|
|
90
|
-
onVisibleColumnKeysChange: undefined
|
|
90
|
+
onVisibleColumnKeysChange: undefined,
|
|
91
|
+
url: url
|
|
91
92
|
})))));
|
|
92
93
|
}
|
|
93
94
|
return jsx(InlineCard, {
|
|
@@ -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.
|
|
38
|
+
const packageVersion = "108.15.0";
|
|
39
39
|
export class Renderer extends PureComponent {
|
|
40
40
|
constructor(props) {
|
|
41
41
|
super(props);
|
|
@@ -86,7 +86,8 @@ export default function BlockCard(props) {
|
|
|
86
86
|
datasourceId: datasource.id,
|
|
87
87
|
parameters: datasource.parameters,
|
|
88
88
|
visibleColumnKeys: visibleColumnKeys,
|
|
89
|
-
onVisibleColumnKeysChange: undefined
|
|
89
|
+
onVisibleColumnKeysChange: undefined,
|
|
90
|
+
url: url
|
|
90
91
|
}));
|
|
91
92
|
})));
|
|
92
93
|
}
|
|
@@ -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.
|
|
48
|
+
var packageVersion = "108.15.0";
|
|
49
49
|
export var Renderer = /*#__PURE__*/function (_PureComponent) {
|
|
50
50
|
_inherits(Renderer, _PureComponent);
|
|
51
51
|
var _super = _createSuper(Renderer);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from '@emotion/react';
|
|
2
2
|
import type { EventHandlers } from '@atlaskit/editor-common/ui';
|
|
3
|
-
import { RendererAppearance } from '../../ui/Renderer/types';
|
|
4
|
-
import { SmartLinksOptions } from '../../types/smartLinksOptions';
|
|
3
|
+
import type { RendererAppearance } from '../../ui/Renderer/types';
|
|
4
|
+
import type { SmartLinksOptions } from '../../types/smartLinksOptions';
|
|
5
5
|
import type { DatasourceAttributeProperties } from '@atlaskit/adf-schema/schema';
|
|
6
6
|
export default function BlockCard(props: {
|
|
7
7
|
url?: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from '@emotion/react';
|
|
2
2
|
import type { EventHandlers } from '@atlaskit/editor-common/ui';
|
|
3
|
-
import { RendererAppearance } from '../../ui/Renderer/types';
|
|
4
|
-
import { SmartLinksOptions } from '../../types/smartLinksOptions';
|
|
3
|
+
import type { RendererAppearance } from '../../ui/Renderer/types';
|
|
4
|
+
import type { SmartLinksOptions } from '../../types/smartLinksOptions';
|
|
5
5
|
import type { DatasourceAttributeProperties } from '@atlaskit/adf-schema/schema';
|
|
6
6
|
export default function BlockCard(props: {
|
|
7
7
|
url?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "108.
|
|
3
|
+
"version": "108.15.0",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@atlaskit/editor-shared-styles": "^2.7.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.3.0",
|
|
42
42
|
"@atlaskit/media-card": "^77.0.0",
|
|
43
43
|
"@atlaskit/media-client": "^24.0.0",
|
|
44
44
|
"@atlaskit/media-common": "^9.0.0",
|