@atlaskit/link-datasource 3.15.3 → 3.15.5
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 +14 -0
- package/dist/cjs/hooks/useDatasourceTableState.js +13 -15
- package/dist/cjs/ui/issue-like-table/index.js +13 -28
- package/dist/es2019/hooks/useDatasourceTableState.js +13 -15
- package/dist/es2019/ui/issue-like-table/index.js +14 -29
- package/dist/esm/hooks/useDatasourceTableState.js +13 -15
- package/dist/esm/ui/issue-like-table/index.js +14 -29
- package/package.json +5 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/link-datasource
|
|
2
2
|
|
|
3
|
+
## 3.15.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 3.15.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#175841](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/175841)
|
|
14
|
+
[`f21aa44e58c1b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f21aa44e58c1b) -
|
|
15
|
+
removing platform-datasources-enable-two-way-sync FF
|
|
16
|
+
|
|
3
17
|
## 3.15.3
|
|
4
18
|
|
|
5
19
|
### 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
|
}
|
|
@@ -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
|
}
|
|
@@ -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
|
}
|
|
@@ -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.5",
|
|
4
4
|
"description": "UI Components to support linking platform dataset feature",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@atlaskit/editor-prosemirror": "6.2.1",
|
|
47
47
|
"@atlaskit/empty-state": "^8.0.0",
|
|
48
48
|
"@atlaskit/flag": "^15.8.0",
|
|
49
|
-
"@atlaskit/form": "^
|
|
49
|
+
"@atlaskit/form": "^11.0.0",
|
|
50
50
|
"@atlaskit/heading": "^4.0.0",
|
|
51
51
|
"@atlaskit/icon": "^23.1.0",
|
|
52
52
|
"@atlaskit/icon-object": "^6.9.0",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@atlaskit/inline-edit": "^14.0.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.13.0",
|
|
58
58
|
"@atlaskit/jql-editor-autocomplete-rest": "^2.1.0",
|
|
59
59
|
"@atlaskit/layering": "^1.0.0",
|
|
60
60
|
"@atlaskit/link-client-extension": "^3.0.0",
|
|
@@ -73,13 +73,13 @@
|
|
|
73
73
|
"@atlaskit/primitives": "^13.3.0",
|
|
74
74
|
"@atlaskit/react-select": "^1.6.0",
|
|
75
75
|
"@atlaskit/select": "^18.9.0",
|
|
76
|
-
"@atlaskit/smart-card": "^32.
|
|
76
|
+
"@atlaskit/smart-card": "^32.8.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.7.0",
|
|
81
81
|
"@atlaskit/theme": "^14.0.0",
|
|
82
|
-
"@atlaskit/tokens": "^2.
|
|
82
|
+
"@atlaskit/tokens": "^2.5.0",
|
|
83
83
|
"@atlaskit/tooltip": "^19.0.0",
|
|
84
84
|
"@atlaskit/ufo": "^0.3.0",
|
|
85
85
|
"@atlaskit/width-detector": "^4.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
|
},
|