@atlaskit/link-datasource 3.15.2 → 3.15.4
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/hooks/useDatasourceTableState.js +13 -15
- package/dist/cjs/ui/common/modal/popup-select/index.js +1 -3
- package/dist/cjs/ui/issue-like-table/index.js +13 -28
- package/dist/es2019/hooks/useDatasourceTableState.js +13 -15
- package/dist/es2019/ui/common/modal/popup-select/index.js +1 -3
- package/dist/es2019/ui/issue-like-table/index.js +14 -29
- package/dist/esm/hooks/useDatasourceTableState.js +13 -15
- package/dist/esm/ui/common/modal/popup-select/index.js +1 -3
- package/dist/esm/ui/issue-like-table/index.js +14 -29
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/link-datasource
|
|
2
2
|
|
|
3
|
+
## 3.15.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#175841](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/175841)
|
|
8
|
+
[`f21aa44e58c1b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f21aa44e58c1b) -
|
|
9
|
+
removing platform-datasources-enable-two-way-sync FF
|
|
10
|
+
|
|
11
|
+
## 3.15.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#177875](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/177875)
|
|
16
|
+
[`d0c3d27216b7c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d0c3d27216b7c) -
|
|
17
|
+
Clean up props for select new improvement on theme and customized components
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 3.15.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -325,21 +325,19 @@ var useDatasourceTableState = exports.useDatasourceTableState = function useData
|
|
|
325
325
|
setResponseItemIds(function (currentIds) {
|
|
326
326
|
return [].concat((0, _toConsumableArray2.default)(currentIds), (0, _toConsumableArray2.default)(newIds));
|
|
327
327
|
});
|
|
328
|
-
if ((0,
|
|
329
|
-
if (
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
});
|
|
342
|
-
}
|
|
328
|
+
if (!(0, _atlassianContext.isFedRamp)()) {
|
|
329
|
+
if (typeof integrationKey === 'string') {
|
|
330
|
+
aris = items.reduce(function (acc, item) {
|
|
331
|
+
var _item$ari;
|
|
332
|
+
return typeof ((_item$ari = item.ari) === null || _item$ari === void 0 ? void 0 : _item$ari.data) === 'string' ? [].concat((0, _toConsumableArray2.default)(acc), [item.ari.data]) : acc;
|
|
333
|
+
}, []);
|
|
334
|
+
if (aris.length && entityType) {
|
|
335
|
+
discoverActions({
|
|
336
|
+
aris: aris,
|
|
337
|
+
integrationKey: integrationKey,
|
|
338
|
+
fieldKeys: fieldKeys,
|
|
339
|
+
entityType: entityType
|
|
340
|
+
});
|
|
343
341
|
}
|
|
344
342
|
}
|
|
345
343
|
}
|
|
@@ -193,9 +193,7 @@ var FilterPopupSelect = exports.FilterPopupSelect = function FilterPopupSelect(_
|
|
|
193
193
|
Control: _control.default,
|
|
194
194
|
MenuList: _menuList.default,
|
|
195
195
|
DropdownIndicator: _dropdownIndicator.default,
|
|
196
|
-
LoadingIndicator: undefined
|
|
197
|
-
// disables the three ... indicator in the searchbox when picker is loading
|
|
198
|
-
IndicatorSeparator: undefined // disables the | separator between search input and icon
|
|
196
|
+
LoadingIndicator: undefined // disables the three ... indicator in the searchbox when picker is loading
|
|
199
197
|
},
|
|
200
198
|
options: sortedOptions,
|
|
201
199
|
value: selectedOptions,
|
|
@@ -369,19 +369,14 @@ var IssueLikeDataTableView = exports.IssueLikeDataTableView = function IssueLike
|
|
|
369
369
|
key: 'loading',
|
|
370
370
|
cells: headerColumns.map(function (column) {
|
|
371
371
|
return {
|
|
372
|
-
content: (0,
|
|
372
|
+
content: (0, _react2.jsx)(_primitives.Box, {
|
|
373
373
|
paddingInline: "space.100"
|
|
374
374
|
}, (0, _react2.jsx)(_linkingCommon.Skeleton, {
|
|
375
375
|
borderRadius: 8,
|
|
376
376
|
width: "100%",
|
|
377
377
|
height: 14,
|
|
378
378
|
testId: "issues-table-row-loading"
|
|
379
|
-
}))
|
|
380
|
-
borderRadius: 8,
|
|
381
|
-
width: "100%",
|
|
382
|
-
height: 14,
|
|
383
|
-
testId: "issues-table-row-loading"
|
|
384
|
-
}),
|
|
379
|
+
})),
|
|
385
380
|
key: column.key
|
|
386
381
|
};
|
|
387
382
|
})
|
|
@@ -482,20 +477,13 @@ var IssueLikeDataTableView = exports.IssueLikeDataTableView = function IssueLike
|
|
|
482
477
|
key: key,
|
|
483
478
|
columnKey: key,
|
|
484
479
|
// eslint-disable-next-line @atlaskit/platform/ensure-feature-flag-prefix
|
|
485
|
-
content: (0,
|
|
480
|
+
content: (0, _react2.jsx)(_tableCellContent.TableCellContent, {
|
|
486
481
|
id: id,
|
|
487
482
|
columnKey: key,
|
|
488
483
|
columnType: type,
|
|
489
484
|
columnTitle: title,
|
|
490
485
|
wrappedColumnKeys: wrappedColumnKeys,
|
|
491
486
|
renderItem: renderItem
|
|
492
|
-
}) : (0, _react2.jsx)(_tableCellContent.ReadOnlyCell, {
|
|
493
|
-
id: id,
|
|
494
|
-
columnKey: key,
|
|
495
|
-
columnTitle: title,
|
|
496
|
-
columnType: type,
|
|
497
|
-
wrappedColumnKeys: wrappedColumnKeys,
|
|
498
|
-
renderItem: renderItem
|
|
499
487
|
}),
|
|
500
488
|
width: getColumnWidth(key, type, cellIndex === visibleSortedColumns.length - 1)
|
|
501
489
|
};
|
|
@@ -724,18 +712,15 @@ var IssueLikeDataTableView = exports.IssueLikeDataTableView = function IssueLike
|
|
|
724
712
|
});
|
|
725
713
|
// eslint-disable-next-line @atlaskit/platform/ensure-feature-flag-prefix
|
|
726
714
|
if ((0, _platformFeatureFlags.fg)('enable_datasource_react_sweet_state')) {
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
css: [wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(cellKey) ? null : truncateStyles]
|
|
737
|
-
}, content);
|
|
738
|
-
}
|
|
715
|
+
return (0, _react2.jsx)(_styled2.InlineEditableTableCell, {
|
|
716
|
+
key: cellKey,
|
|
717
|
+
"data-testid": testId && "".concat(testId, "--cell-").concat(cellIndex),
|
|
718
|
+
colSpan: isEditable && isLastCell ? 2 : undefined
|
|
719
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
720
|
+
,
|
|
721
|
+
style: loadingRowStyle,
|
|
722
|
+
css: [wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(cellKey) ? null : truncateStyles]
|
|
723
|
+
}, content);
|
|
739
724
|
}
|
|
740
725
|
|
|
741
726
|
// extra padding is required around skeleton loader to avoid vertical jumps when data loads
|
|
@@ -755,6 +740,6 @@ var IssueLikeDataTableView = exports.IssueLikeDataTableView = function IssueLike
|
|
|
755
740
|
}, content);
|
|
756
741
|
}));
|
|
757
742
|
}))));
|
|
758
|
-
return (0,
|
|
743
|
+
return (0, _react2.jsx)(_flag.FlagsProvider, null, view);
|
|
759
744
|
};
|
|
760
745
|
var EmptyState = exports.EmptyState = _emptyState.default;
|
|
@@ -208,21 +208,19 @@ export const useDatasourceTableState = ({
|
|
|
208
208
|
const entityType = objectTypesEntity;
|
|
209
209
|
const newIds = onAddItems(items, typeof integrationKey === 'string' ? integrationKey : undefined, entityType);
|
|
210
210
|
setResponseItemIds(currentIds => [...currentIds, ...newIds]);
|
|
211
|
-
if (
|
|
212
|
-
if (
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
});
|
|
225
|
-
}
|
|
211
|
+
if (!isFedRamp()) {
|
|
212
|
+
if (typeof integrationKey === 'string') {
|
|
213
|
+
const aris = items.reduce((acc, item) => {
|
|
214
|
+
var _item$ari;
|
|
215
|
+
return typeof ((_item$ari = item.ari) === null || _item$ari === void 0 ? void 0 : _item$ari.data) === 'string' ? [...acc, item.ari.data] : acc;
|
|
216
|
+
}, []);
|
|
217
|
+
if (aris.length && entityType) {
|
|
218
|
+
discoverActions({
|
|
219
|
+
aris,
|
|
220
|
+
integrationKey,
|
|
221
|
+
fieldKeys,
|
|
222
|
+
entityType
|
|
223
|
+
});
|
|
226
224
|
}
|
|
227
225
|
}
|
|
228
226
|
}
|
|
@@ -146,9 +146,7 @@ export const FilterPopupSelect = ({
|
|
|
146
146
|
Control: CustomControl,
|
|
147
147
|
MenuList: CustomMenuList,
|
|
148
148
|
DropdownIndicator: CustomDropdownIndicator,
|
|
149
|
-
LoadingIndicator: undefined
|
|
150
|
-
// disables the three ... indicator in the searchbox when picker is loading
|
|
151
|
-
IndicatorSeparator: undefined // disables the | separator between search input and icon
|
|
149
|
+
LoadingIndicator: undefined // disables the three ... indicator in the searchbox when picker is loading
|
|
152
150
|
},
|
|
153
151
|
options: sortedOptions,
|
|
154
152
|
value: selectedOptions,
|
|
@@ -33,7 +33,7 @@ import { DraggableTableHeading } from './draggable-table-heading';
|
|
|
33
33
|
import TableEmptyState from './empty-state';
|
|
34
34
|
import { renderType, stringifyType } from './render-type';
|
|
35
35
|
import { InlineEditableTableCell, Table, TableCell, TableHeading, withTablePluginHeaderPrefix } from './styled';
|
|
36
|
-
import {
|
|
36
|
+
import { TableCellContent } from './table-cell-content';
|
|
37
37
|
import { TruncateTextTag } from './truncate-text-tag';
|
|
38
38
|
import { useIsOnScreen } from './useIsOnScreen';
|
|
39
39
|
import { COLUMN_BASE_WIDTH, getFieldLabelById, getWidthCss } from './utils';
|
|
@@ -366,19 +366,14 @@ export const IssueLikeDataTableView = ({
|
|
|
366
366
|
const loadingRow = useMemo(() => ({
|
|
367
367
|
key: 'loading',
|
|
368
368
|
cells: headerColumns.map(column => ({
|
|
369
|
-
content:
|
|
369
|
+
content: jsx(Box, {
|
|
370
370
|
paddingInline: "space.100"
|
|
371
371
|
}, jsx(Skeleton, {
|
|
372
372
|
borderRadius: 8,
|
|
373
373
|
width: "100%",
|
|
374
374
|
height: 14,
|
|
375
375
|
testId: "issues-table-row-loading"
|
|
376
|
-
}))
|
|
377
|
-
borderRadius: 8,
|
|
378
|
-
width: "100%",
|
|
379
|
-
height: 14,
|
|
380
|
-
testId: "issues-table-row-loading"
|
|
381
|
-
}),
|
|
376
|
+
})),
|
|
382
377
|
key: column.key
|
|
383
378
|
}))
|
|
384
379
|
}), [headerColumns]);
|
|
@@ -480,20 +475,13 @@ export const IssueLikeDataTableView = ({
|
|
|
480
475
|
key,
|
|
481
476
|
columnKey: key,
|
|
482
477
|
// eslint-disable-next-line @atlaskit/platform/ensure-feature-flag-prefix
|
|
483
|
-
content:
|
|
478
|
+
content: jsx(TableCellContent, {
|
|
484
479
|
id: id,
|
|
485
480
|
columnKey: key,
|
|
486
481
|
columnType: type,
|
|
487
482
|
columnTitle: title,
|
|
488
483
|
wrappedColumnKeys: wrappedColumnKeys,
|
|
489
484
|
renderItem: renderItem
|
|
490
|
-
}) : jsx(ReadOnlyCell, {
|
|
491
|
-
id: id,
|
|
492
|
-
columnKey: key,
|
|
493
|
-
columnTitle: title,
|
|
494
|
-
columnType: type,
|
|
495
|
-
wrappedColumnKeys: wrappedColumnKeys,
|
|
496
|
-
renderItem: renderItem
|
|
497
485
|
}),
|
|
498
486
|
width: getColumnWidth(key, type, cellIndex === visibleSortedColumns.length - 1)
|
|
499
487
|
};
|
|
@@ -697,18 +685,15 @@ export const IssueLikeDataTableView = ({
|
|
|
697
685
|
});
|
|
698
686
|
// eslint-disable-next-line @atlaskit/platform/ensure-feature-flag-prefix
|
|
699
687
|
if (fg('enable_datasource_react_sweet_state')) {
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
css: [wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(cellKey) ? null : truncateStyles]
|
|
710
|
-
}, content);
|
|
711
|
-
}
|
|
688
|
+
return jsx(InlineEditableTableCell, {
|
|
689
|
+
key: cellKey,
|
|
690
|
+
"data-testid": testId && `${testId}--cell-${cellIndex}`,
|
|
691
|
+
colSpan: isEditable && isLastCell ? 2 : undefined
|
|
692
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
693
|
+
,
|
|
694
|
+
style: loadingRowStyle,
|
|
695
|
+
css: [wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(cellKey) ? null : truncateStyles]
|
|
696
|
+
}, content);
|
|
712
697
|
}
|
|
713
698
|
|
|
714
699
|
// extra padding is required around skeleton loader to avoid vertical jumps when data loads
|
|
@@ -728,6 +713,6 @@ export const IssueLikeDataTableView = ({
|
|
|
728
713
|
css: [wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(cellKey) ? null : truncateStyles]
|
|
729
714
|
}, content);
|
|
730
715
|
}))))));
|
|
731
|
-
return
|
|
716
|
+
return jsx(FlagsProvider, null, view);
|
|
732
717
|
};
|
|
733
718
|
export const EmptyState = TableEmptyState;
|
|
@@ -318,21 +318,19 @@ export var useDatasourceTableState = function useDatasourceTableState(_ref) {
|
|
|
318
318
|
setResponseItemIds(function (currentIds) {
|
|
319
319
|
return [].concat(_toConsumableArray(currentIds), _toConsumableArray(newIds));
|
|
320
320
|
});
|
|
321
|
-
if (
|
|
322
|
-
if (
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
});
|
|
335
|
-
}
|
|
321
|
+
if (!isFedRamp()) {
|
|
322
|
+
if (typeof integrationKey === 'string') {
|
|
323
|
+
aris = items.reduce(function (acc, item) {
|
|
324
|
+
var _item$ari;
|
|
325
|
+
return typeof ((_item$ari = item.ari) === null || _item$ari === void 0 ? void 0 : _item$ari.data) === 'string' ? [].concat(_toConsumableArray(acc), [item.ari.data]) : acc;
|
|
326
|
+
}, []);
|
|
327
|
+
if (aris.length && entityType) {
|
|
328
|
+
discoverActions({
|
|
329
|
+
aris: aris,
|
|
330
|
+
integrationKey: integrationKey,
|
|
331
|
+
fieldKeys: fieldKeys,
|
|
332
|
+
entityType: entityType
|
|
333
|
+
});
|
|
336
334
|
}
|
|
337
335
|
}
|
|
338
336
|
}
|
|
@@ -183,9 +183,7 @@ export var FilterPopupSelect = function FilterPopupSelect(_ref) {
|
|
|
183
183
|
Control: CustomControl,
|
|
184
184
|
MenuList: CustomMenuList,
|
|
185
185
|
DropdownIndicator: CustomDropdownIndicator,
|
|
186
|
-
LoadingIndicator: undefined
|
|
187
|
-
// disables the three ... indicator in the searchbox when picker is loading
|
|
188
|
-
IndicatorSeparator: undefined // disables the | separator between search input and icon
|
|
186
|
+
LoadingIndicator: undefined // disables the three ... indicator in the searchbox when picker is loading
|
|
189
187
|
},
|
|
190
188
|
options: sortedOptions,
|
|
191
189
|
value: selectedOptions,
|
|
@@ -40,7 +40,7 @@ import { DraggableTableHeading } from './draggable-table-heading';
|
|
|
40
40
|
import TableEmptyState from './empty-state';
|
|
41
41
|
import { renderType, stringifyType } from './render-type';
|
|
42
42
|
import { InlineEditableTableCell, Table, TableCell, TableHeading, withTablePluginHeaderPrefix } from './styled';
|
|
43
|
-
import {
|
|
43
|
+
import { TableCellContent } from './table-cell-content';
|
|
44
44
|
import { TruncateTextTag } from './truncate-text-tag';
|
|
45
45
|
import { useIsOnScreen } from './useIsOnScreen';
|
|
46
46
|
import { COLUMN_BASE_WIDTH, getFieldLabelById, getWidthCss } from './utils';
|
|
@@ -365,19 +365,14 @@ export var IssueLikeDataTableView = function IssueLikeDataTableView(_ref5) {
|
|
|
365
365
|
key: 'loading',
|
|
366
366
|
cells: headerColumns.map(function (column) {
|
|
367
367
|
return {
|
|
368
|
-
content:
|
|
368
|
+
content: jsx(Box, {
|
|
369
369
|
paddingInline: "space.100"
|
|
370
370
|
}, jsx(Skeleton, {
|
|
371
371
|
borderRadius: 8,
|
|
372
372
|
width: "100%",
|
|
373
373
|
height: 14,
|
|
374
374
|
testId: "issues-table-row-loading"
|
|
375
|
-
}))
|
|
376
|
-
borderRadius: 8,
|
|
377
|
-
width: "100%",
|
|
378
|
-
height: 14,
|
|
379
|
-
testId: "issues-table-row-loading"
|
|
380
|
-
}),
|
|
375
|
+
})),
|
|
381
376
|
key: column.key
|
|
382
377
|
};
|
|
383
378
|
})
|
|
@@ -478,20 +473,13 @@ export var IssueLikeDataTableView = function IssueLikeDataTableView(_ref5) {
|
|
|
478
473
|
key: key,
|
|
479
474
|
columnKey: key,
|
|
480
475
|
// eslint-disable-next-line @atlaskit/platform/ensure-feature-flag-prefix
|
|
481
|
-
content:
|
|
476
|
+
content: jsx(TableCellContent, {
|
|
482
477
|
id: id,
|
|
483
478
|
columnKey: key,
|
|
484
479
|
columnType: type,
|
|
485
480
|
columnTitle: title,
|
|
486
481
|
wrappedColumnKeys: wrappedColumnKeys,
|
|
487
482
|
renderItem: renderItem
|
|
488
|
-
}) : jsx(ReadOnlyCell, {
|
|
489
|
-
id: id,
|
|
490
|
-
columnKey: key,
|
|
491
|
-
columnTitle: title,
|
|
492
|
-
columnType: type,
|
|
493
|
-
wrappedColumnKeys: wrappedColumnKeys,
|
|
494
|
-
renderItem: renderItem
|
|
495
483
|
}),
|
|
496
484
|
width: getColumnWidth(key, type, cellIndex === visibleSortedColumns.length - 1)
|
|
497
485
|
};
|
|
@@ -720,18 +708,15 @@ export var IssueLikeDataTableView = function IssueLikeDataTableView(_ref5) {
|
|
|
720
708
|
});
|
|
721
709
|
// eslint-disable-next-line @atlaskit/platform/ensure-feature-flag-prefix
|
|
722
710
|
if (fg('enable_datasource_react_sweet_state')) {
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
css: [wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(cellKey) ? null : truncateStyles]
|
|
733
|
-
}, content);
|
|
734
|
-
}
|
|
711
|
+
return jsx(InlineEditableTableCell, {
|
|
712
|
+
key: cellKey,
|
|
713
|
+
"data-testid": testId && "".concat(testId, "--cell-").concat(cellIndex),
|
|
714
|
+
colSpan: isEditable && isLastCell ? 2 : undefined
|
|
715
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
716
|
+
,
|
|
717
|
+
style: loadingRowStyle,
|
|
718
|
+
css: [wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(cellKey) ? null : truncateStyles]
|
|
719
|
+
}, content);
|
|
735
720
|
}
|
|
736
721
|
|
|
737
722
|
// extra padding is required around skeleton loader to avoid vertical jumps when data loads
|
|
@@ -751,6 +736,6 @@ export var IssueLikeDataTableView = function IssueLikeDataTableView(_ref5) {
|
|
|
751
736
|
}, content);
|
|
752
737
|
}));
|
|
753
738
|
}))));
|
|
754
|
-
return
|
|
739
|
+
return jsx(FlagsProvider, null, view);
|
|
755
740
|
};
|
|
756
741
|
export var EmptyState = TableEmptyState;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-datasource",
|
|
3
|
-
"version": "3.15.
|
|
3
|
+
"version": "3.15.4",
|
|
4
4
|
"description": "UI Components to support linking platform dataset feature",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -71,8 +71,8 @@
|
|
|
71
71
|
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll": "^1.2.0",
|
|
72
72
|
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^1.1.0",
|
|
73
73
|
"@atlaskit/primitives": "^13.3.0",
|
|
74
|
-
"@atlaskit/react-select": "^1.
|
|
75
|
-
"@atlaskit/select": "^18.
|
|
74
|
+
"@atlaskit/react-select": "^1.6.0",
|
|
75
|
+
"@atlaskit/select": "^18.9.0",
|
|
76
76
|
"@atlaskit/smart-card": "^32.7.0",
|
|
77
77
|
"@atlaskit/smart-user-picker": "6.11.2",
|
|
78
78
|
"@atlaskit/spinner": "^16.3.0",
|
|
@@ -159,9 +159,6 @@
|
|
|
159
159
|
"enable_datasource_react_sweet_state": {
|
|
160
160
|
"type": "boolean"
|
|
161
161
|
},
|
|
162
|
-
"platform-datasources-enable-two-way-sync": {
|
|
163
|
-
"type": "boolean"
|
|
164
|
-
},
|
|
165
162
|
"enable_datasource_supporting_actions": {
|
|
166
163
|
"type": "boolean"
|
|
167
164
|
},
|