@atlaskit/link-datasource 3.13.7 → 3.13.9
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 +17 -0
- package/dist/cjs/ui/issue-like-table/edit-type/icon/index.js +1 -1
- package/dist/cjs/ui/issue-like-table/edit-type/status/index.js +1 -1
- package/dist/cjs/ui/issue-like-table/edit-type/user/index.js +1 -1
- package/dist/es2019/ui/issue-like-table/edit-type/icon/index.js +1 -1
- package/dist/es2019/ui/issue-like-table/edit-type/status/index.js +1 -1
- package/dist/es2019/ui/issue-like-table/edit-type/user/index.js +1 -1
- package/dist/esm/ui/issue-like-table/edit-type/icon/index.js +1 -1
- package/dist/esm/ui/issue-like-table/edit-type/status/index.js +1 -1
- package/dist/esm/ui/issue-like-table/edit-type/user/index.js +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/link-datasource
|
|
2
2
|
|
|
3
|
+
## 3.13.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#167504](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/167504)
|
|
8
|
+
[`83a2ce1f5117e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/83a2ce1f5117e) -
|
|
9
|
+
Replaced deprecated typography styles with new components and tokens.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 3.13.8
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- [#170440](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/170440)
|
|
17
|
+
[`9ad9b0b68bcea`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9ad9b0b68bcea) -
|
|
18
|
+
Fix persisting values of inline select components in link-datasource
|
|
19
|
+
|
|
3
20
|
## 3.13.7
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -59,7 +59,7 @@ var IconEditType = function IconEditType(props) {
|
|
|
59
59
|
isLoading: isLoading,
|
|
60
60
|
filterOption: filterOption,
|
|
61
61
|
testId: "inline-edit-priority",
|
|
62
|
-
|
|
62
|
+
value: currentValue === null || currentValue === void 0 || (_currentValue$values = currentValue.values) === null || _currentValue$values === void 0 ? void 0 : _currentValue$values[0],
|
|
63
63
|
getOptionValue: function getOptionValue(option) {
|
|
64
64
|
return option.text || '';
|
|
65
65
|
},
|
|
@@ -56,7 +56,7 @@ var StatusEditType = function StatusEditType(props) {
|
|
|
56
56
|
getOptionValue: function getOptionValue(option) {
|
|
57
57
|
return option.text;
|
|
58
58
|
},
|
|
59
|
-
|
|
59
|
+
value: currentValue === null || currentValue === void 0 || (_currentValue$values = currentValue.values) === null || _currentValue$values === void 0 ? void 0 : _currentValue$values[0],
|
|
60
60
|
formatOptionLabel: function formatOptionLabel(option) {
|
|
61
61
|
return /*#__PURE__*/_react.default.createElement(_lozenge.default, (0, _extends2.default)({
|
|
62
62
|
testId: "inline-edit-status-option-".concat(option.text)
|
|
@@ -85,7 +85,7 @@ var UserEditType = function UserEditType(props) {
|
|
|
85
85
|
filterOption: filterOption,
|
|
86
86
|
menuPlacement: "auto",
|
|
87
87
|
onInputChange: handleUserInputDebounced,
|
|
88
|
-
|
|
88
|
+
value: currentValue === null || currentValue === void 0 || (_currentValue$values = currentValue.values) === null || _currentValue$values === void 0 ? void 0 : _currentValue$values[0],
|
|
89
89
|
getOptionValue: function getOptionValue(option) {
|
|
90
90
|
return option.atlassianUserId;
|
|
91
91
|
},
|
|
@@ -53,7 +53,7 @@ const IconEditType = props => {
|
|
|
53
53
|
isLoading: isLoading,
|
|
54
54
|
filterOption: filterOption,
|
|
55
55
|
testId: "inline-edit-priority",
|
|
56
|
-
|
|
56
|
+
value: currentValue === null || currentValue === void 0 ? void 0 : (_currentValue$values = currentValue.values) === null || _currentValue$values === void 0 ? void 0 : _currentValue$values[0],
|
|
57
57
|
getOptionValue: option => option.text || '',
|
|
58
58
|
formatOptionLabel: ({
|
|
59
59
|
source,
|
|
@@ -47,7 +47,7 @@ const StatusEditType = props => {
|
|
|
47
47
|
filterOption: filterOption,
|
|
48
48
|
testId: "inline-edit-status",
|
|
49
49
|
getOptionValue: option => option.text,
|
|
50
|
-
|
|
50
|
+
value: currentValue === null || currentValue === void 0 ? void 0 : (_currentValue$values = currentValue.values) === null || _currentValue$values === void 0 ? void 0 : _currentValue$values[0],
|
|
51
51
|
formatOptionLabel: option => /*#__PURE__*/React.createElement(Lozenge, _extends({
|
|
52
52
|
testId: `inline-edit-status-option-${option.text}`
|
|
53
53
|
}, option.style), option.text),
|
|
@@ -69,7 +69,7 @@ const UserEditType = props => {
|
|
|
69
69
|
filterOption: filterOption,
|
|
70
70
|
menuPlacement: "auto",
|
|
71
71
|
onInputChange: handleUserInputDebounced,
|
|
72
|
-
|
|
72
|
+
value: currentValue === null || currentValue === void 0 ? void 0 : (_currentValue$values = currentValue.values) === null || _currentValue$values === void 0 ? void 0 : _currentValue$values[0],
|
|
73
73
|
getOptionValue: option => option.atlassianUserId,
|
|
74
74
|
formatOptionLabel: option => /*#__PURE__*/React.createElement(Tooltip, {
|
|
75
75
|
content: option.displayName
|
|
@@ -50,7 +50,7 @@ var IconEditType = function IconEditType(props) {
|
|
|
50
50
|
isLoading: isLoading,
|
|
51
51
|
filterOption: filterOption,
|
|
52
52
|
testId: "inline-edit-priority",
|
|
53
|
-
|
|
53
|
+
value: currentValue === null || currentValue === void 0 || (_currentValue$values = currentValue.values) === null || _currentValue$values === void 0 ? void 0 : _currentValue$values[0],
|
|
54
54
|
getOptionValue: function getOptionValue(option) {
|
|
55
55
|
return option.text || '';
|
|
56
56
|
},
|
|
@@ -46,7 +46,7 @@ var StatusEditType = function StatusEditType(props) {
|
|
|
46
46
|
getOptionValue: function getOptionValue(option) {
|
|
47
47
|
return option.text;
|
|
48
48
|
},
|
|
49
|
-
|
|
49
|
+
value: currentValue === null || currentValue === void 0 || (_currentValue$values = currentValue.values) === null || _currentValue$values === void 0 ? void 0 : _currentValue$values[0],
|
|
50
50
|
formatOptionLabel: function formatOptionLabel(option) {
|
|
51
51
|
return /*#__PURE__*/React.createElement(Lozenge, _extends({
|
|
52
52
|
testId: "inline-edit-status-option-".concat(option.text)
|
|
@@ -75,7 +75,7 @@ var UserEditType = function UserEditType(props) {
|
|
|
75
75
|
filterOption: filterOption,
|
|
76
76
|
menuPlacement: "auto",
|
|
77
77
|
onInputChange: handleUserInputDebounced,
|
|
78
|
-
|
|
78
|
+
value: currentValue === null || currentValue === void 0 || (_currentValue$values = currentValue.values) === null || _currentValue$values === void 0 ? void 0 : _currentValue$values[0],
|
|
79
79
|
getOptionValue: function getOptionValue(option) {
|
|
80
80
|
return option.atlassianUserId;
|
|
81
81
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-datasource",
|
|
3
|
-
"version": "3.13.
|
|
3
|
+
"version": "3.13.9",
|
|
4
4
|
"description": "UI Components to support linking platform dataset feature",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -43,18 +43,18 @@
|
|
|
43
43
|
"@atlaskit/button": "^20.3.0",
|
|
44
44
|
"@atlaskit/datetime-picker": "^15.9.0",
|
|
45
45
|
"@atlaskit/dropdown-menu": "^12.23.0",
|
|
46
|
-
"@atlaskit/editor-prosemirror": "6.
|
|
46
|
+
"@atlaskit/editor-prosemirror": "6.2.1",
|
|
47
47
|
"@atlaskit/empty-state": "^7.12.0",
|
|
48
48
|
"@atlaskit/flag": "^15.8.0",
|
|
49
|
-
"@atlaskit/form": "^10.
|
|
49
|
+
"@atlaskit/form": "^10.6.0",
|
|
50
50
|
"@atlaskit/heading": "^3.1.0",
|
|
51
|
-
"@atlaskit/icon": "^22.
|
|
52
|
-
"@atlaskit/icon-object": "^6.
|
|
51
|
+
"@atlaskit/icon": "^22.28.0",
|
|
52
|
+
"@atlaskit/icon-object": "^6.8.0",
|
|
53
53
|
"@atlaskit/image": "^1.3.0",
|
|
54
54
|
"@atlaskit/inline-edit": "^13.7.0",
|
|
55
55
|
"@atlaskit/intl-messages-provider": "^1.0.0",
|
|
56
56
|
"@atlaskit/jql-ast": "^3.3.0",
|
|
57
|
-
"@atlaskit/jql-editor": "^4.
|
|
57
|
+
"@atlaskit/jql-editor": "^4.11.0",
|
|
58
58
|
"@atlaskit/jql-editor-autocomplete-rest": "^2.1.0",
|
|
59
59
|
"@atlaskit/layering": "^0.8.0",
|
|
60
60
|
"@atlaskit/link-client-extension": "^3.0.0",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"@atlaskit/linking-types": "^9.5.0",
|
|
63
63
|
"@atlaskit/logo": "^14.3.0",
|
|
64
64
|
"@atlaskit/lozenge": "^11.12.0",
|
|
65
|
-
"@atlaskit/modal-dialog": "^12.
|
|
65
|
+
"@atlaskit/modal-dialog": "^12.18.0",
|
|
66
66
|
"@atlaskit/outbound-auth-flow-client": "^3.4.5",
|
|
67
67
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
68
68
|
"@atlaskit/popup": "^1.29.0",
|
|
@@ -73,13 +73,13 @@
|
|
|
73
73
|
"@atlaskit/primitives": "^13.3.0",
|
|
74
74
|
"@atlaskit/react-select": "^1.4.0",
|
|
75
75
|
"@atlaskit/select": "^18.6.0",
|
|
76
|
-
"@atlaskit/smart-card": "^32.
|
|
76
|
+
"@atlaskit/smart-card": "^32.2.0",
|
|
77
77
|
"@atlaskit/smart-user-picker": "6.11.2",
|
|
78
78
|
"@atlaskit/spinner": "^16.3.0",
|
|
79
79
|
"@atlaskit/tag": "^12.6.0",
|
|
80
80
|
"@atlaskit/textfield": "6.6.0",
|
|
81
81
|
"@atlaskit/theme": "^14.0.0",
|
|
82
|
-
"@atlaskit/tokens": "^2.
|
|
82
|
+
"@atlaskit/tokens": "^2.4.0",
|
|
83
83
|
"@atlaskit/tooltip": "^18.9.0",
|
|
84
84
|
"@atlaskit/ufo": "^0.3.0",
|
|
85
85
|
"@atlaskit/width-detector": "^4.3.0",
|