@atlaskit/link-datasource 6.4.11 → 6.4.13
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 +12 -0
- package/dist/cjs/ui/common/modal/popup-select/index.js +1 -3
- package/dist/cjs/ui/common/modal/popup-select/menu-list/index.js +1 -3
- package/dist/cjs/ui/confluence-search-modal/basic-filters/filters/date-range-picker/index.js +1 -3
- package/dist/cjs/ui/issue-like-table/column-picker/index.js +1 -3
- package/dist/cjs/ui/issue-like-table/table-cell-content/index.js +1 -3
- package/dist/es2019/ui/common/modal/popup-select/index.js +1 -3
- package/dist/es2019/ui/common/modal/popup-select/menu-list/index.js +1 -3
- package/dist/es2019/ui/confluence-search-modal/basic-filters/filters/date-range-picker/index.js +1 -3
- package/dist/es2019/ui/issue-like-table/column-picker/index.js +1 -3
- package/dist/es2019/ui/issue-like-table/table-cell-content/index.js +1 -3
- package/dist/esm/ui/common/modal/popup-select/index.js +1 -3
- package/dist/esm/ui/common/modal/popup-select/menu-list/index.js +1 -3
- package/dist/esm/ui/confluence-search-modal/basic-filters/filters/date-range-picker/index.js +1 -3
- package/dist/esm/ui/issue-like-table/column-picker/index.js +1 -3
- package/dist/esm/ui/issue-like-table/table-cell-content/index.js +1 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -188,9 +188,7 @@ var FilterPopupSelect = exports.FilterPopupSelect = function FilterPopupSelect(_
|
|
|
188
188
|
shouldCloseMenuOnTab: false,
|
|
189
189
|
hideSelectedOptions: false,
|
|
190
190
|
isLoading: showLoading,
|
|
191
|
-
placeholder: searchPlaceholder ? searchPlaceholder : formatMessage(_messages.asyncPopupSelectMessages.selectPlaceholder)
|
|
192
|
-
// @ts-ignore - https://product-fabric.atlassian.net/browse/DSP-21000
|
|
193
|
-
,
|
|
191
|
+
placeholder: searchPlaceholder ? searchPlaceholder : formatMessage(_messages.asyncPopupSelectMessages.selectPlaceholder),
|
|
194
192
|
menuListProps: menuListProps,
|
|
195
193
|
components: {
|
|
196
194
|
Option: _customCheckboxOption.CustomCheckboxOption,
|
|
@@ -26,9 +26,7 @@ var styles = {
|
|
|
26
26
|
var CustomMenuList = function CustomMenuList(_ref) {
|
|
27
27
|
var children = _ref.children,
|
|
28
28
|
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
29
|
-
var _props$selectProps$me =
|
|
30
|
-
// @ts-ignore - https://product-fabric.atlassian.net/browse/DSP-21000
|
|
31
|
-
props.selectProps.menuListProps,
|
|
29
|
+
var _props$selectProps$me = props.selectProps.menuListProps,
|
|
32
30
|
filterName = _props$selectProps$me.filterName,
|
|
33
31
|
isLoading = _props$selectProps$me.isLoading,
|
|
34
32
|
isLoadingMore = _props$selectProps$me.isLoadingMore,
|
package/dist/cjs/ui/confluence-search-modal/basic-filters/filters/date-range-picker/index.js
CHANGED
|
@@ -261,9 +261,7 @@ var DateRangePicker = exports.DateRangePicker = function DateRangePicker(_ref6)
|
|
|
261
261
|
};
|
|
262
262
|
return /*#__PURE__*/_react.default.createElement(_popup.default, {
|
|
263
263
|
isOpen: !!isPickerOpen,
|
|
264
|
-
onClose: handlePickerToggle
|
|
265
|
-
// @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
|
|
266
|
-
,
|
|
264
|
+
onClose: handlePickerToggle,
|
|
267
265
|
popupComponent: _PopupComponent.PopupComponent,
|
|
268
266
|
zIndex: _constants.layers.modal(),
|
|
269
267
|
content: popupContent,
|
|
@@ -133,9 +133,7 @@ var ColumnPicker = exports.ColumnPicker = function ColumnPicker(_ref) {
|
|
|
133
133
|
ignoreAccents: false
|
|
134
134
|
}),
|
|
135
135
|
options: allOptions,
|
|
136
|
-
value: selectedOptions
|
|
137
|
-
// @ts-ignore - https://product-fabric.atlassian.net/browse/DSP-21000
|
|
138
|
-
,
|
|
136
|
+
value: selectedOptions,
|
|
139
137
|
onOpen: handleOpen,
|
|
140
138
|
closeMenuOnSelect: false,
|
|
141
139
|
hideSelectedOptions: false,
|
|
@@ -40,9 +40,7 @@ var TooltipWrapper = function TooltipWrapper(_ref) {
|
|
|
40
40
|
return value !== '';
|
|
41
41
|
}).join(', ');
|
|
42
42
|
if (stringifiedContent && !(wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(columnKey))) {
|
|
43
|
-
return /*#__PURE__*/_react.default.createElement(_tooltip.default
|
|
44
|
-
// @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
|
|
45
|
-
, {
|
|
43
|
+
return /*#__PURE__*/_react.default.createElement(_tooltip.default, {
|
|
46
44
|
tag: _truncateTextTag.TruncateTextTag,
|
|
47
45
|
content: stringifiedContent,
|
|
48
46
|
testId: "issues-table-cell-tooltip"
|
|
@@ -139,9 +139,7 @@ export const FilterPopupSelect = ({
|
|
|
139
139
|
shouldCloseMenuOnTab: false,
|
|
140
140
|
hideSelectedOptions: false,
|
|
141
141
|
isLoading: showLoading,
|
|
142
|
-
placeholder: searchPlaceholder ? searchPlaceholder : formatMessage(asyncPopupSelectMessages.selectPlaceholder)
|
|
143
|
-
// @ts-ignore - https://product-fabric.atlassian.net/browse/DSP-21000
|
|
144
|
-
,
|
|
142
|
+
placeholder: searchPlaceholder ? searchPlaceholder : formatMessage(asyncPopupSelectMessages.selectPlaceholder),
|
|
145
143
|
menuListProps: menuListProps,
|
|
146
144
|
components: {
|
|
147
145
|
Option: CustomCheckboxOption,
|
|
@@ -28,9 +28,7 @@ const CustomMenuList = ({
|
|
|
28
28
|
showMore,
|
|
29
29
|
handleShowMore,
|
|
30
30
|
filterLabel
|
|
31
|
-
} =
|
|
32
|
-
// @ts-ignore - https://product-fabric.atlassian.net/browse/DSP-21000
|
|
33
|
-
props.selectProps.menuListProps;
|
|
31
|
+
} = props.selectProps.menuListProps;
|
|
34
32
|
const shouldDisplayShowMore = showMore && !isLoadingMore;
|
|
35
33
|
const isLoadingMoreData = !shouldDisplayShowMore && isLoadingMore;
|
|
36
34
|
const InlineSpinner = () => /*#__PURE__*/React.createElement(Flex, {
|
package/dist/es2019/ui/confluence-search-modal/basic-filters/filters/date-range-picker/index.js
CHANGED
|
@@ -227,9 +227,7 @@ export const DateRangePicker = ({
|
|
|
227
227
|
};
|
|
228
228
|
return /*#__PURE__*/React.createElement(Popup, {
|
|
229
229
|
isOpen: !!isPickerOpen,
|
|
230
|
-
onClose: handlePickerToggle
|
|
231
|
-
// @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
|
|
232
|
-
,
|
|
230
|
+
onClose: handlePickerToggle,
|
|
233
231
|
popupComponent: PopupComponent,
|
|
234
232
|
zIndex: layers.modal(),
|
|
235
233
|
content: popupContent,
|
|
@@ -106,9 +106,7 @@ export const ColumnPicker = ({
|
|
|
106
106
|
ignoreAccents: false
|
|
107
107
|
}),
|
|
108
108
|
options: allOptions,
|
|
109
|
-
value: selectedOptions
|
|
110
|
-
// @ts-ignore - https://product-fabric.atlassian.net/browse/DSP-21000
|
|
111
|
-
,
|
|
109
|
+
value: selectedOptions,
|
|
112
110
|
onOpen: handleOpen,
|
|
113
111
|
closeMenuOnSelect: false,
|
|
114
112
|
hideSelectedOptions: false,
|
|
@@ -31,9 +31,7 @@ const TooltipWrapper = ({
|
|
|
31
31
|
value
|
|
32
32
|
}, intl.formatMessage, intl.formatDate)).filter(value => value !== '').join(', ');
|
|
33
33
|
if (stringifiedContent && !(wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(columnKey))) {
|
|
34
|
-
return /*#__PURE__*/React.createElement(Tooltip
|
|
35
|
-
// @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
|
|
36
|
-
, {
|
|
34
|
+
return /*#__PURE__*/React.createElement(Tooltip, {
|
|
37
35
|
tag: TruncateTextTag,
|
|
38
36
|
content: stringifiedContent,
|
|
39
37
|
testId: "issues-table-cell-tooltip"
|
|
@@ -179,9 +179,7 @@ export var FilterPopupSelect = function FilterPopupSelect(_ref) {
|
|
|
179
179
|
shouldCloseMenuOnTab: false,
|
|
180
180
|
hideSelectedOptions: false,
|
|
181
181
|
isLoading: showLoading,
|
|
182
|
-
placeholder: searchPlaceholder ? searchPlaceholder : formatMessage(asyncPopupSelectMessages.selectPlaceholder)
|
|
183
|
-
// @ts-ignore - https://product-fabric.atlassian.net/browse/DSP-21000
|
|
184
|
-
,
|
|
182
|
+
placeholder: searchPlaceholder ? searchPlaceholder : formatMessage(asyncPopupSelectMessages.selectPlaceholder),
|
|
185
183
|
menuListProps: menuListProps,
|
|
186
184
|
components: {
|
|
187
185
|
Option: CustomCheckboxOption,
|
|
@@ -19,9 +19,7 @@ var styles = {
|
|
|
19
19
|
var CustomMenuList = function CustomMenuList(_ref) {
|
|
20
20
|
var children = _ref.children,
|
|
21
21
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
22
|
-
var _props$selectProps$me =
|
|
23
|
-
// @ts-ignore - https://product-fabric.atlassian.net/browse/DSP-21000
|
|
24
|
-
props.selectProps.menuListProps,
|
|
22
|
+
var _props$selectProps$me = props.selectProps.menuListProps,
|
|
25
23
|
filterName = _props$selectProps$me.filterName,
|
|
26
24
|
isLoading = _props$selectProps$me.isLoading,
|
|
27
25
|
isLoadingMore = _props$selectProps$me.isLoadingMore,
|
package/dist/esm/ui/confluence-search-modal/basic-filters/filters/date-range-picker/index.js
CHANGED
|
@@ -254,9 +254,7 @@ export var DateRangePicker = function DateRangePicker(_ref6) {
|
|
|
254
254
|
};
|
|
255
255
|
return /*#__PURE__*/React.createElement(Popup, {
|
|
256
256
|
isOpen: !!isPickerOpen,
|
|
257
|
-
onClose: handlePickerToggle
|
|
258
|
-
// @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
|
|
259
|
-
,
|
|
257
|
+
onClose: handlePickerToggle,
|
|
260
258
|
popupComponent: PopupComponent,
|
|
261
259
|
zIndex: layers.modal(),
|
|
262
260
|
content: popupContent,
|
|
@@ -124,9 +124,7 @@ export var ColumnPicker = function ColumnPicker(_ref) {
|
|
|
124
124
|
ignoreAccents: false
|
|
125
125
|
}),
|
|
126
126
|
options: allOptions,
|
|
127
|
-
value: selectedOptions
|
|
128
|
-
// @ts-ignore - https://product-fabric.atlassian.net/browse/DSP-21000
|
|
129
|
-
,
|
|
127
|
+
value: selectedOptions,
|
|
130
128
|
onOpen: handleOpen,
|
|
131
129
|
closeMenuOnSelect: false,
|
|
132
130
|
hideSelectedOptions: false,
|
|
@@ -33,9 +33,7 @@ var TooltipWrapper = function TooltipWrapper(_ref) {
|
|
|
33
33
|
return value !== '';
|
|
34
34
|
}).join(', ');
|
|
35
35
|
if (stringifiedContent && !(wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(columnKey))) {
|
|
36
|
-
return /*#__PURE__*/React.createElement(Tooltip
|
|
37
|
-
// @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
|
|
38
|
-
, {
|
|
36
|
+
return /*#__PURE__*/React.createElement(Tooltip, {
|
|
39
37
|
tag: TruncateTextTag,
|
|
40
38
|
content: stringifiedContent,
|
|
41
39
|
testId: "issues-table-cell-tooltip"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-datasource",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.13",
|
|
4
4
|
"description": "UI Components to support linking platform dataset feature",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"ak-postbuild": "ls -d dist/* | xargs -n 1 copyfiles -u 1 -V src/**/*.{svg,png}"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@atlaskit/adf-schema": "^
|
|
38
|
+
"@atlaskit/adf-schema": "^57.0.0",
|
|
39
39
|
"@atlaskit/afm-i18n-platform-linking-platform-link-datasource": "2.201.0",
|
|
40
40
|
"@atlaskit/analytics-next": "^12.3.0",
|
|
41
41
|
"@atlaskit/atlassian-context": "^1.1.0",
|
|
@@ -66,13 +66,13 @@
|
|
|
66
66
|
"@atlaskit/linking-common": "^11.1.0",
|
|
67
67
|
"@atlaskit/linking-types": "^15.0.0",
|
|
68
68
|
"@atlaskit/logo": "^21.4.0",
|
|
69
|
-
"@atlaskit/lozenge": "^15.
|
|
69
|
+
"@atlaskit/lozenge": "^15.1.0",
|
|
70
70
|
"@atlaskit/modal-dialog": "^16.3.0",
|
|
71
71
|
"@atlaskit/object": "^2.2.0",
|
|
72
72
|
"@atlaskit/outbound-auth-flow-client": "^4.1.0",
|
|
73
73
|
"@atlaskit/platform-feature-flags": "^2.1.0",
|
|
74
74
|
"@atlaskit/popup": "^6.0.0",
|
|
75
|
-
"@atlaskit/pragmatic-drag-and-drop": "^
|
|
75
|
+
"@atlaskit/pragmatic-drag-and-drop": "^3.0.0",
|
|
76
76
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^2.0.0",
|
|
77
77
|
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll": "^3.0.0",
|
|
78
78
|
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^4.1.0",
|