@atlaskit/link-datasource 4.14.5 → 4.15.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 CHANGED
@@ -1,5 +1,22 @@
1
1
  # @atlaskit/link-datasource
2
2
 
3
+ ## 4.15.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#191152](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/191152)
8
+ [`a3d8c4e7ad18a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a3d8c4e7ad18a) -
9
+ Removing FG that set shouldShowCalendarButton on a modal
10
+
11
+ ## 4.14.6
12
+
13
+ ### Patch Changes
14
+
15
+ - [#191110](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/191110)
16
+ [`14f7f807a5bdc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/14f7f807a5bdc) -
17
+ NAVX-1184 adding a11y unit tests to linking-platform packages missing a11y coverage
18
+ - Updated dependencies
19
+
3
20
  ## 4.14.5
4
21
 
5
22
  ### Patch Changes
@@ -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: (0, _platformFeatureFlags.fg)('platform_linking_set_should_show_calender_button'),
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: (0, _platformFeatureFlags.fg)('platform_linking_set_should_show_calender_button'),
230
+ shouldShowCalendarButton: true,
232
231
  maxDate: todayDate,
233
232
  innerProps: {
234
233
  style: {
@@ -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: fg('platform_linking_set_should_show_calender_button'),
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: fg('platform_linking_set_should_show_calender_button'),
197
+ shouldShowCalendarButton: true,
199
198
  maxDate: todayDate,
200
199
  innerProps: {
201
200
  style: {
@@ -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: fg('platform_linking_set_should_show_calender_button'),
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: fg('platform_linking_set_should_show_calender_button'),
223
+ shouldShowCalendarButton: true,
225
224
  maxDate: todayDate,
226
225
  innerProps: {
227
226
  style: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/link-datasource",
3
- "version": "4.14.5",
3
+ "version": "4.15.0",
4
4
  "description": "UI Components to support linking platform dataset feature",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -51,7 +51,7 @@
51
51
  "@atlaskit/flag": "^17.2.0",
52
52
  "@atlaskit/form": "^12.0.0",
53
53
  "@atlaskit/heading": "^5.2.0",
54
- "@atlaskit/icon": "^27.6.0",
54
+ "@atlaskit/icon": "^27.7.0",
55
55
  "@atlaskit/icon-object": "^7.1.0",
56
56
  "@atlaskit/image": "^3.0.0",
57
57
  "@atlaskit/inline-edit": "^15.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.5.0",
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,7 +75,7 @@
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.2.0",
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",
@@ -187,9 +187,6 @@
187
187
  "should-render-to-parent-should-be-true-linking-pla": {
188
188
  "type": "boolean"
189
189
  },
190
- "platform_linking_set_should_show_calender_button": {
191
- "type": "boolean"
192
- },
193
190
  "linking-platform-assests-schema-selector-refresh": {
194
191
  "type": "boolean"
195
192
  },