@atlaskit/link-datasource 1.0.1 → 1.0.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 +6 -0
- package/dist/cjs/ui/issue-like-table/render-type/text/index.js +2 -2
- package/dist/cjs/ui/jira-issues-modal/modal/index.js +1 -1
- package/dist/es2019/ui/issue-like-table/render-type/text/index.js +2 -2
- package/dist/es2019/ui/jira-issues-modal/modal/index.js +1 -1
- package/dist/esm/ui/issue-like-table/render-type/text/index.js +2 -2
- package/dist/esm/ui/jira-issues-modal/modal/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/link-datasource
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`bfa189b840a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bfa189b840a) - [ux] String render types will now render each string on a new line
|
|
8
|
+
|
|
3
9
|
## 1.0.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -15,9 +15,9 @@ var TextRenderType = function TextRenderType(_ref) {
|
|
|
15
15
|
if (!(text && typeof text === 'string')) {
|
|
16
16
|
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null);
|
|
17
17
|
}
|
|
18
|
-
return /*#__PURE__*/_react.default.createElement("span", {
|
|
18
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement("span", {
|
|
19
19
|
"data-testid": testId
|
|
20
|
-
}, text);
|
|
20
|
+
}, text), /*#__PURE__*/_react.default.createElement("br", null));
|
|
21
21
|
};
|
|
22
22
|
var _default = TextRenderType;
|
|
23
23
|
exports.default = _default;
|
|
@@ -344,7 +344,7 @@ var analyticsContextAttributes = {
|
|
|
344
344
|
};
|
|
345
345
|
var analyticsContextData = {
|
|
346
346
|
packageName: "@atlaskit/link-datasource",
|
|
347
|
-
packageVersion: "1.0.
|
|
347
|
+
packageVersion: "1.0.2",
|
|
348
348
|
source: 'datasourceConfigModal'
|
|
349
349
|
};
|
|
350
350
|
var contextData = _objectSpread(_objectSpread({}, analyticsContextData), {}, {
|
|
@@ -7,8 +7,8 @@ const TextRenderType = ({
|
|
|
7
7
|
if (!(text && typeof text === 'string')) {
|
|
8
8
|
return /*#__PURE__*/React.createElement(React.Fragment, null);
|
|
9
9
|
}
|
|
10
|
-
return /*#__PURE__*/React.createElement("span", {
|
|
10
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", {
|
|
11
11
|
"data-testid": testId
|
|
12
|
-
}, text);
|
|
12
|
+
}, text), /*#__PURE__*/React.createElement("br", null));
|
|
13
13
|
};
|
|
14
14
|
export default TextRenderType;
|
|
@@ -7,8 +7,8 @@ var TextRenderType = function TextRenderType(_ref) {
|
|
|
7
7
|
if (!(text && typeof text === 'string')) {
|
|
8
8
|
return /*#__PURE__*/React.createElement(React.Fragment, null);
|
|
9
9
|
}
|
|
10
|
-
return /*#__PURE__*/React.createElement("span", {
|
|
10
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", {
|
|
11
11
|
"data-testid": testId
|
|
12
|
-
}, text);
|
|
12
|
+
}, text), /*#__PURE__*/React.createElement("br", null));
|
|
13
13
|
};
|
|
14
14
|
export default TextRenderType;
|
|
@@ -334,7 +334,7 @@ var analyticsContextAttributes = {
|
|
|
334
334
|
};
|
|
335
335
|
var analyticsContextData = {
|
|
336
336
|
packageName: "@atlaskit/link-datasource",
|
|
337
|
-
packageVersion: "1.0.
|
|
337
|
+
packageVersion: "1.0.2",
|
|
338
338
|
source: 'datasourceConfigModal'
|
|
339
339
|
};
|
|
340
340
|
var contextData = _objectSpread(_objectSpread({}, analyticsContextData), {}, {
|