@atlaskit/link-datasource 4.14.6 → 4.16.0
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 +16 -0
- package/dist/cjs/ui/confluence-search-modal/basic-filters/filters/date-range-picker/index.js +2 -3
- package/dist/cjs/ui/issue-like-table/edit-type/icon/index.js +2 -3
- package/dist/cjs/ui/issue-like-table/table-cell-content/inline-edit.js +13 -19
- package/dist/es2019/ui/confluence-search-modal/basic-filters/filters/date-range-picker/index.js +2 -3
- package/dist/es2019/ui/issue-like-table/edit-type/icon/index.js +1 -2
- package/dist/es2019/ui/issue-like-table/table-cell-content/inline-edit.js +13 -19
- package/dist/esm/ui/confluence-search-modal/basic-filters/filters/date-range-picker/index.js +2 -3
- package/dist/esm/ui/issue-like-table/edit-type/icon/index.js +2 -3
- package/dist/esm/ui/issue-like-table/table-cell-content/inline-edit.js +13 -19
- package/package.json +6 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/link-datasource
|
|
2
2
|
|
|
3
|
+
## 4.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#191067](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/191067)
|
|
8
|
+
[`ede531b6a7c94`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ede531b6a7c94) -
|
|
9
|
+
Clean up platform-datasources-inline-edit-id-checks ff
|
|
10
|
+
|
|
11
|
+
## 4.15.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#191152](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/191152)
|
|
16
|
+
[`a3d8c4e7ad18a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a3d8c4e7ad18a) -
|
|
17
|
+
Removing FG that set shouldShowCalendarButton on a modal
|
|
18
|
+
|
|
3
19
|
## 4.14.6
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/cjs/ui/confluence-search-modal/basic-filters/filters/date-range-picker/index.js
CHANGED
|
@@ -17,7 +17,6 @@ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/h
|
|
|
17
17
|
var _reactIntlNext = require("react-intl-next");
|
|
18
18
|
var _datetimePicker = require("@atlaskit/datetime-picker");
|
|
19
19
|
var _statusErrorError = _interopRequireDefault(require("@atlaskit/icon/core/migration/status-error--error"));
|
|
20
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
21
20
|
var _popup = _interopRequireDefault(require("@atlaskit/popup"));
|
|
22
21
|
var _colors = require("@atlaskit/theme/colors");
|
|
23
22
|
var _constants = require("@atlaskit/theme/constants");
|
|
@@ -204,7 +203,7 @@ var DateRangePicker = exports.DateRangePicker = function DateRangePicker(_ref6)
|
|
|
204
203
|
}
|
|
205
204
|
}, (0, _utils.getDropdownLabel)(option, formatMessage));
|
|
206
205
|
}), isPickerOpen && isCustomSelected && /*#__PURE__*/_react.default.createElement(CustomDateWrapper, null, /*#__PURE__*/_react.default.createElement(DatePickersWrapper, null, /*#__PURE__*/_react.default.createElement(_datetimePicker.DatePicker, {
|
|
207
|
-
shouldShowCalendarButton:
|
|
206
|
+
shouldShowCalendarButton: true,
|
|
208
207
|
maxDate: todayDate,
|
|
209
208
|
innerProps: {
|
|
210
209
|
style: {
|
|
@@ -228,7 +227,7 @@ var DateRangePicker = exports.DateRangePicker = function DateRangePicker(_ref6)
|
|
|
228
227
|
}
|
|
229
228
|
}
|
|
230
229
|
}), /*#__PURE__*/_react.default.createElement(_reactIntlNext.FormattedMessage, _messages.dateRangeMessages.dateRangeToLabel), /*#__PURE__*/_react.default.createElement(_datetimePicker.DatePicker, {
|
|
231
|
-
shouldShowCalendarButton:
|
|
230
|
+
shouldShowCalendarButton: true,
|
|
232
231
|
maxDate: todayDate,
|
|
233
232
|
innerProps: {
|
|
234
233
|
style: {
|
|
@@ -9,7 +9,6 @@ exports.default = void 0;
|
|
|
9
9
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
10
10
|
var _react = _interopRequireWildcard(require("react"));
|
|
11
11
|
var _layering = require("@atlaskit/layering");
|
|
12
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
13
12
|
var _select = _interopRequireDefault(require("@atlaskit/select"));
|
|
14
13
|
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
15
14
|
var _ufoExperiences = require("../../../../analytics/ufoExperiences");
|
|
@@ -54,9 +53,9 @@ var IconEditType = function IconEditType(props) {
|
|
|
54
53
|
// We can't update this field if we don't have an ID - however the ID
|
|
55
54
|
// is typed optional.
|
|
56
55
|
,
|
|
57
|
-
options:
|
|
56
|
+
options: options.filter(function (option) {
|
|
58
57
|
return option.id;
|
|
59
|
-
})
|
|
58
|
+
}),
|
|
60
59
|
menuPlacement: "auto",
|
|
61
60
|
isLoading: isLoading,
|
|
62
61
|
filterOption: filterOption,
|
|
@@ -16,7 +16,6 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
|
|
|
16
16
|
var _react = _interopRequireWildcard(require("react"));
|
|
17
17
|
var _reactIntlNext = require("react-intl-next");
|
|
18
18
|
var _inlineEdit = _interopRequireDefault(require("@atlaskit/inline-edit"));
|
|
19
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
20
19
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
21
20
|
var _hooks = require("@atlaskit/smart-card/hooks");
|
|
22
21
|
var _analytics = require("../../../analytics");
|
|
@@ -174,25 +173,20 @@ var InlineEdit = exports.InlineEdit = function InlineEdit(_ref) {
|
|
|
174
173
|
onUpdateItem(ari, newItem);
|
|
175
174
|
fireEvent('ui.form.submitted.inlineEdit', {});
|
|
176
175
|
var updateValue;
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
return;
|
|
190
|
-
}
|
|
176
|
+
try {
|
|
177
|
+
// TODO: Refactor types so that valid update values are guaranteed for
|
|
178
|
+
// all object types. Invalid options should be filtered out of options -
|
|
179
|
+
// this frontend error flag is a last resort.
|
|
180
|
+
updateValue = newGetBackendUpdateValue(newValue);
|
|
181
|
+
} catch (_unused) {
|
|
182
|
+
// Show an error as the new value that was going to be sent to the
|
|
183
|
+
// backend is invalid (and would have failed anyway, silently to the user)
|
|
184
|
+
showErrorFlag({});
|
|
185
|
+
onUpdateItem(ari, existingData);
|
|
186
|
+
setIsEditing(false);
|
|
187
|
+
return;
|
|
191
188
|
}
|
|
192
|
-
execute(updateValue !== undefined
|
|
193
|
-
// Old behaviour is preserved in non-FFed path: errors thrown by getBackendUpdateValue are caught by
|
|
194
|
-
// the error boundary, _not_ by the catch block & frontend flag here.
|
|
195
|
-
getBackendUpdateValue(newValue)).then(refreshDatasourceItem).catch(function (error) {
|
|
189
|
+
execute(updateValue !== undefined ? updateValue : getBackendUpdateValue(newValue)).then(refreshDatasourceItem).catch(function (error) {
|
|
196
190
|
var status = error && (0, _typeof2.default)(error) === 'object' ? error.status : undefined;
|
|
197
191
|
showErrorFlag({
|
|
198
192
|
status: status
|
package/dist/es2019/ui/confluence-search-modal/basic-filters/filters/date-range-picker/index.js
CHANGED
|
@@ -7,7 +7,6 @@ import React, { useCallback, useEffect, useMemo, useState } from 'react';
|
|
|
7
7
|
import { FormattedMessage, useIntl } from 'react-intl-next';
|
|
8
8
|
import { DatePicker } from '@atlaskit/datetime-picker';
|
|
9
9
|
import ErrorIcon from '@atlaskit/icon/core/migration/status-error--error';
|
|
10
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
11
10
|
import Popup from '@atlaskit/popup';
|
|
12
11
|
import { N0, N20, N30, R400 } from '@atlaskit/theme/colors';
|
|
13
12
|
import { layers } from '@atlaskit/theme/constants';
|
|
@@ -172,7 +171,7 @@ export const DateRangePicker = ({
|
|
|
172
171
|
isSelected: selectedValue ? option === selectedValue : option === defaultOptionValue,
|
|
173
172
|
onClick: () => handleClickFilterOption(option)
|
|
174
173
|
}, getDropdownLabel(option, formatMessage))), isPickerOpen && isCustomSelected && /*#__PURE__*/React.createElement(CustomDateWrapper, null, /*#__PURE__*/React.createElement(DatePickersWrapper, null, /*#__PURE__*/React.createElement(DatePicker, {
|
|
175
|
-
shouldShowCalendarButton:
|
|
174
|
+
shouldShowCalendarButton: true,
|
|
176
175
|
maxDate: todayDate,
|
|
177
176
|
innerProps: {
|
|
178
177
|
style: {
|
|
@@ -195,7 +194,7 @@ export const DateRangePicker = ({
|
|
|
195
194
|
}
|
|
196
195
|
}
|
|
197
196
|
}), /*#__PURE__*/React.createElement(FormattedMessage, dateRangeMessages.dateRangeToLabel), /*#__PURE__*/React.createElement(DatePicker, {
|
|
198
|
-
shouldShowCalendarButton:
|
|
197
|
+
shouldShowCalendarButton: true,
|
|
199
198
|
maxDate: todayDate,
|
|
200
199
|
innerProps: {
|
|
201
200
|
style: {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
import React, { useEffect } from 'react';
|
|
3
3
|
import { Layering } from '@atlaskit/layering';
|
|
4
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
5
4
|
import Select from '@atlaskit/select';
|
|
6
5
|
import Tooltip from '@atlaskit/tooltip';
|
|
7
6
|
import { failUfoExperience, succeedUfoExperience } from '../../../../analytics/ufoExperiences';
|
|
@@ -48,7 +47,7 @@ const IconEditType = props => {
|
|
|
48
47
|
// We can't update this field if we don't have an ID - however the ID
|
|
49
48
|
// is typed optional.
|
|
50
49
|
,
|
|
51
|
-
options:
|
|
50
|
+
options: options.filter(option => option.id),
|
|
52
51
|
menuPlacement: "auto",
|
|
53
52
|
isLoading: isLoading,
|
|
54
53
|
filterOption: filterOption,
|
|
@@ -5,7 +5,6 @@ import { ax, ix } from "@compiled/react/runtime";
|
|
|
5
5
|
import React, { useCallback, useMemo, useState } from 'react';
|
|
6
6
|
import { useIntl } from 'react-intl-next';
|
|
7
7
|
import AKInlineEdit from '@atlaskit/inline-edit';
|
|
8
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
9
8
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
10
9
|
import { useSmartLinkReload } from '@atlaskit/smart-card/hooks';
|
|
11
10
|
import { useDatasourceAnalyticsEvents } from '../../../analytics';
|
|
@@ -171,25 +170,20 @@ export const InlineEdit = ({
|
|
|
171
170
|
onUpdateItem(ari, newItem);
|
|
172
171
|
fireEvent('ui.form.submitted.inlineEdit', {});
|
|
173
172
|
let updateValue;
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
return;
|
|
187
|
-
}
|
|
173
|
+
try {
|
|
174
|
+
// TODO: Refactor types so that valid update values are guaranteed for
|
|
175
|
+
// all object types. Invalid options should be filtered out of options -
|
|
176
|
+
// this frontend error flag is a last resort.
|
|
177
|
+
updateValue = newGetBackendUpdateValue(newValue);
|
|
178
|
+
} catch {
|
|
179
|
+
// Show an error as the new value that was going to be sent to the
|
|
180
|
+
// backend is invalid (and would have failed anyway, silently to the user)
|
|
181
|
+
showErrorFlag({});
|
|
182
|
+
onUpdateItem(ari, existingData);
|
|
183
|
+
setIsEditing(false);
|
|
184
|
+
return;
|
|
188
185
|
}
|
|
189
|
-
execute(updateValue !== undefined
|
|
190
|
-
// Old behaviour is preserved in non-FFed path: errors thrown by getBackendUpdateValue are caught by
|
|
191
|
-
// the error boundary, _not_ by the catch block & frontend flag here.
|
|
192
|
-
getBackendUpdateValue(newValue)).then(refreshDatasourceItem).catch(error => {
|
|
186
|
+
execute(updateValue !== undefined ? updateValue : getBackendUpdateValue(newValue)).then(refreshDatasourceItem).catch(error => {
|
|
193
187
|
const status = error && typeof error === 'object' ? error.status : undefined;
|
|
194
188
|
showErrorFlag({
|
|
195
189
|
status
|
package/dist/esm/ui/confluence-search-modal/basic-filters/filters/date-range-picker/index.js
CHANGED
|
@@ -17,7 +17,6 @@ import React, { useCallback, useEffect, useMemo, useState } from 'react';
|
|
|
17
17
|
import { FormattedMessage, useIntl } from 'react-intl-next';
|
|
18
18
|
import { DatePicker } from '@atlaskit/datetime-picker';
|
|
19
19
|
import ErrorIcon from '@atlaskit/icon/core/migration/status-error--error';
|
|
20
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
21
20
|
import Popup from '@atlaskit/popup';
|
|
22
21
|
import { N0, N20, N30, R400 } from '@atlaskit/theme/colors';
|
|
23
22
|
import { layers } from '@atlaskit/theme/constants';
|
|
@@ -197,7 +196,7 @@ export var DateRangePicker = function DateRangePicker(_ref6) {
|
|
|
197
196
|
}
|
|
198
197
|
}, getDropdownLabel(option, formatMessage));
|
|
199
198
|
}), isPickerOpen && isCustomSelected && /*#__PURE__*/React.createElement(CustomDateWrapper, null, /*#__PURE__*/React.createElement(DatePickersWrapper, null, /*#__PURE__*/React.createElement(DatePicker, {
|
|
200
|
-
shouldShowCalendarButton:
|
|
199
|
+
shouldShowCalendarButton: true,
|
|
201
200
|
maxDate: todayDate,
|
|
202
201
|
innerProps: {
|
|
203
202
|
style: {
|
|
@@ -221,7 +220,7 @@ export var DateRangePicker = function DateRangePicker(_ref6) {
|
|
|
221
220
|
}
|
|
222
221
|
}
|
|
223
222
|
}), /*#__PURE__*/React.createElement(FormattedMessage, dateRangeMessages.dateRangeToLabel), /*#__PURE__*/React.createElement(DatePicker, {
|
|
224
|
-
shouldShowCalendarButton:
|
|
223
|
+
shouldShowCalendarButton: true,
|
|
225
224
|
maxDate: todayDate,
|
|
226
225
|
innerProps: {
|
|
227
226
|
style: {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
import React, { useEffect } from 'react';
|
|
3
3
|
import { Layering } from '@atlaskit/layering';
|
|
4
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
5
4
|
import Select from '@atlaskit/select';
|
|
6
5
|
import Tooltip from '@atlaskit/tooltip';
|
|
7
6
|
import { failUfoExperience, succeedUfoExperience } from '../../../../analytics/ufoExperiences';
|
|
@@ -45,9 +44,9 @@ var IconEditType = function IconEditType(props) {
|
|
|
45
44
|
// We can't update this field if we don't have an ID - however the ID
|
|
46
45
|
// is typed optional.
|
|
47
46
|
,
|
|
48
|
-
options:
|
|
47
|
+
options: options.filter(function (option) {
|
|
49
48
|
return option.id;
|
|
50
|
-
})
|
|
49
|
+
}),
|
|
51
50
|
menuPlacement: "auto",
|
|
52
51
|
isLoading: isLoading,
|
|
53
52
|
filterOption: filterOption,
|
|
@@ -10,7 +10,6 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
10
10
|
import React, { useCallback, useMemo, useState } from 'react';
|
|
11
11
|
import { useIntl } from 'react-intl-next';
|
|
12
12
|
import AKInlineEdit from '@atlaskit/inline-edit';
|
|
13
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
14
13
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
15
14
|
import { useSmartLinkReload } from '@atlaskit/smart-card/hooks';
|
|
16
15
|
import { useDatasourceAnalyticsEvents } from '../../../analytics';
|
|
@@ -165,25 +164,20 @@ export var InlineEdit = function InlineEdit(_ref) {
|
|
|
165
164
|
onUpdateItem(ari, newItem);
|
|
166
165
|
fireEvent('ui.form.submitted.inlineEdit', {});
|
|
167
166
|
var updateValue;
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
return;
|
|
181
|
-
}
|
|
167
|
+
try {
|
|
168
|
+
// TODO: Refactor types so that valid update values are guaranteed for
|
|
169
|
+
// all object types. Invalid options should be filtered out of options -
|
|
170
|
+
// this frontend error flag is a last resort.
|
|
171
|
+
updateValue = newGetBackendUpdateValue(newValue);
|
|
172
|
+
} catch (_unused) {
|
|
173
|
+
// Show an error as the new value that was going to be sent to the
|
|
174
|
+
// backend is invalid (and would have failed anyway, silently to the user)
|
|
175
|
+
showErrorFlag({});
|
|
176
|
+
onUpdateItem(ari, existingData);
|
|
177
|
+
setIsEditing(false);
|
|
178
|
+
return;
|
|
182
179
|
}
|
|
183
|
-
execute(updateValue !== undefined
|
|
184
|
-
// Old behaviour is preserved in non-FFed path: errors thrown by getBackendUpdateValue are caught by
|
|
185
|
-
// the error boundary, _not_ by the catch block & frontend flag here.
|
|
186
|
-
getBackendUpdateValue(newValue)).then(refreshDatasourceItem).catch(function (error) {
|
|
180
|
+
execute(updateValue !== undefined ? updateValue : getBackendUpdateValue(newValue)).then(refreshDatasourceItem).catch(function (error) {
|
|
187
181
|
var status = error && _typeof(error) === 'object' ? error.status : undefined;
|
|
188
182
|
showErrorFlag({
|
|
189
183
|
status: status
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-datasource",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.16.0",
|
|
4
4
|
"description": "UI Components to support linking platform dataset feature",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@atlaskit/avatar": "^25.1.0",
|
|
43
43
|
"@atlaskit/avatar-group": "^12.1.0",
|
|
44
44
|
"@atlaskit/badge": "^18.1.0",
|
|
45
|
-
"@atlaskit/button": "^23.
|
|
45
|
+
"@atlaskit/button": "^23.3.0",
|
|
46
46
|
"@atlaskit/css": "^0.12.0",
|
|
47
47
|
"@atlaskit/datetime-picker": "^17.0.0",
|
|
48
48
|
"@atlaskit/dropdown-menu": "^16.3.0",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"@atlaskit/link-client-extension": "^5.0.0",
|
|
65
65
|
"@atlaskit/linking-common": "^9.2.0",
|
|
66
66
|
"@atlaskit/linking-types": "^14.0.0",
|
|
67
|
-
"@atlaskit/logo": "^19.
|
|
67
|
+
"@atlaskit/logo": "^19.6.0",
|
|
68
68
|
"@atlaskit/lozenge": "^13.0.0",
|
|
69
69
|
"@atlaskit/modal-dialog": "^14.3.0",
|
|
70
70
|
"@atlaskit/outbound-auth-flow-client": "^3.4.0",
|
|
@@ -75,12 +75,12 @@
|
|
|
75
75
|
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll": "^2.0.0",
|
|
76
76
|
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^3.2.0",
|
|
77
77
|
"@atlaskit/primitives": "^14.10.0",
|
|
78
|
-
"@atlaskit/react-select": "^3.
|
|
78
|
+
"@atlaskit/react-select": "^3.3.0",
|
|
79
79
|
"@atlaskit/select": "^21.2.0",
|
|
80
80
|
"@atlaskit/smart-card": "^40.5.0",
|
|
81
81
|
"@atlaskit/smart-user-picker": "^8.0.0",
|
|
82
82
|
"@atlaskit/spinner": "^18.0.0",
|
|
83
|
-
"@atlaskit/tag": "^14.
|
|
83
|
+
"@atlaskit/tag": "^14.1.0",
|
|
84
84
|
"@atlaskit/temp-nav-app-icons": "^0.9.0",
|
|
85
85
|
"@atlaskit/textfield": "^8.0.0",
|
|
86
86
|
"@atlaskit/theme": "^19.0.0",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"@af/visual-regression": "workspace:^",
|
|
108
108
|
"@atlaskit/json-ld-types": "^1.4.0",
|
|
109
109
|
"@atlaskit/link-provider": "^3.4.0",
|
|
110
|
-
"@atlaskit/link-test-helpers": "^8.
|
|
110
|
+
"@atlaskit/link-test-helpers": "^8.3.0",
|
|
111
111
|
"@atlaskit/ssr": "workspace:^",
|
|
112
112
|
"@atlaskit/visual-regression": "workspace:^",
|
|
113
113
|
"@atlassian/feature-flags-test-utils": "^0.3.0",
|
|
@@ -160,9 +160,6 @@
|
|
|
160
160
|
"./elements": "./src/elements.ts"
|
|
161
161
|
},
|
|
162
162
|
"platform-feature-flags": {
|
|
163
|
-
"platform-datasources-inline-edit-id-checks": {
|
|
164
|
-
"type": "boolean"
|
|
165
|
-
},
|
|
166
163
|
"platform-datasources-enable-two-way-sync-assignee": {
|
|
167
164
|
"type": "boolean"
|
|
168
165
|
},
|
|
@@ -187,9 +184,6 @@
|
|
|
187
184
|
"should-render-to-parent-should-be-true-linking-pla": {
|
|
188
185
|
"type": "boolean"
|
|
189
186
|
},
|
|
190
|
-
"platform_linking_set_should_show_calender_button": {
|
|
191
|
-
"type": "boolean"
|
|
192
|
-
},
|
|
193
187
|
"linking-platform-assests-schema-selector-refresh": {
|
|
194
188
|
"type": "boolean"
|
|
195
189
|
},
|