@atlaskit/datetime-picker 12.5.2 → 12.6.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,21 @@
1
1
  # @atlaskit/datetime-picker
2
2
 
3
+ ## 12.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`6e51e0d5358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e51e0d5358) - [ux] update border width from 2px to 1px and add 1px box-shadow when focus or error
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+
13
+ ## 12.5.3
14
+
15
+ ### Patch Changes
16
+
17
+ - [`49b08bfdf5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/49b08bfdf5f) - Migrated use of `gridSize` to space tokens where possible. There is no expected visual or behaviour change.
18
+
3
19
  ## 12.5.2
4
20
 
5
21
  ### Patch Changes
@@ -35,8 +35,9 @@ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (O
35
35
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
36
36
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
37
37
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /* eslint-disable @repo/internal/react/use-noop */ /** @jsx jsx */ // eslint-disable-next-line no-restricted-imports
38
+ // eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
38
39
  var packageName = "@atlaskit/datetime-picker";
39
- var packageVersion = "12.5.2";
40
+ var packageVersion = "12.6.0";
40
41
 
41
42
  /* eslint-disable react/no-unused-prop-types */
42
43
 
@@ -19,6 +19,7 @@ var _dateFns = require("date-fns");
19
19
  var _pick = _interopRequireDefault(require("lodash/pick"));
20
20
  var _analyticsNext = require("@atlaskit/analytics-next");
21
21
  var _selectClear = _interopRequireDefault(require("@atlaskit/icon/glyph/select-clear"));
22
+ var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
22
23
  var _select = require("@atlaskit/select");
23
24
  var _colors = require("@atlaskit/theme/colors");
24
25
  var _constants = require("@atlaskit/theme/constants");
@@ -31,7 +32,7 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
31
32
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
32
33
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } /* eslint-disable @repo/internal/react/use-noop */ /** @jsx jsx */ // eslint-disable-next-line no-restricted-imports
33
34
  var packageName = "@atlaskit/datetime-picker";
34
- var packageVersion = "12.5.2";
35
+ var packageVersion = "12.6.0";
35
36
 
36
37
  /* eslint-disable react/no-unused-prop-types */
37
38
 
@@ -63,7 +64,7 @@ var noBgStyles = (0, _react2.css)({
63
64
  var hoverStyles = (0, _react2.css)({
64
65
  '&:hover': {
65
66
  backgroundColor: "var(--ds-background-input-hovered, ".concat(_colors.N30, ")"),
66
- borderColor: "var(--ds-border-input, ".concat(_colors.N30, ")")
67
+ borderColor: "var(--ds-border-input, ".concat((0, _platformFeatureFlags.getBooleanFF)('platform.design-system-team.update-border-input_ff9l1') ? _colors.N100 : _colors.N30, ")")
67
68
  }
68
69
  });
69
70
  var isInvalidHoverStyles = (0, _react2.css)({
@@ -80,7 +81,7 @@ var isDisabledStyles = (0, _react2.css)({
80
81
  var baseContainerStyles = (0, _react2.css)({
81
82
  display: 'flex',
82
83
  backgroundColor: "var(--ds-background-input, ".concat(_colors.N20, ")"),
83
- border: "2px solid ".concat("var(--ds-border-input, ".concat(_colors.N20, ")")),
84
+ border: (0, _platformFeatureFlags.getBooleanFF)('platform.design-system-team.update-border-input_ff9l1') ? "1px solid ".concat("var(--ds-border-input, ".concat(_colors.N100, ")")) : "2px solid ".concat("var(--ds-border-input, ".concat(_colors.N20, ")")),
84
85
  borderRadius: "".concat((0, _constants.borderRadius)(), "px"),
85
86
  transition: 'background-color 200ms ease-in-out, border-color 200ms ease-in-out',
86
87
  '&:hover': {
@@ -102,9 +103,9 @@ var timePickerContainerStyles = (0, _react2.css)({
102
103
  var ICON_PADDING = 2;
103
104
  var iconContainerStyles = (0, _react2.css)({
104
105
  display: 'flex',
105
- paddingTop: "6px",
106
- paddingRight: "".concat((0, _constants.gridSize)(), "px"),
107
- paddingBottom: "6px",
106
+ paddingTop: "var(--ds-space-075, 6px)",
107
+ paddingRight: "var(--ds-space-100, 8px)",
108
+ paddingBottom: "var(--ds-space-075, 6px)",
108
109
  paddingLeft: "".concat(ICON_PADDING * 2, "px"),
109
110
  alignItems: 'center',
110
111
  flexBasis: 'inherit',
@@ -38,7 +38,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
38
38
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
39
39
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
40
40
  var packageName = "@atlaskit/datetime-picker";
41
- var packageVersion = "12.5.2";
41
+ var packageVersion = "12.6.0";
42
42
 
43
43
  /* eslint-disable react/no-unused-prop-types */
44
44
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/datetime-picker",
3
- "version": "12.5.2",
3
+ "version": "12.6.0",
4
4
  "sideEffects": false
5
5
  }
@@ -13,12 +13,13 @@ import CalendarIcon from '@atlaskit/icon/glyph/calendar';
13
13
  import { createLocalizationProvider } from '@atlaskit/locale';
14
14
  import Select, { mergeStyles } from '@atlaskit/select';
15
15
  import { N0, N50A, N60A } from '@atlaskit/theme/colors';
16
+ // eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
16
17
  import { borderRadius, gridSize, layers } from '@atlaskit/theme/constants';
17
18
  import { defaultDateFormat, EmptyComponent, padToTwo, placeholderDatetime } from '../internal';
18
19
  import FixedLayer from '../internal/fixed-layer';
19
20
  import { convertTokens } from './utils';
20
21
  const packageName = "@atlaskit/datetime-picker";
21
- const packageVersion = "12.5.2";
22
+ const packageVersion = "12.6.0";
22
23
 
23
24
  /* eslint-disable react/no-unused-prop-types */
24
25
 
@@ -9,15 +9,16 @@ import { format, isValid, parseISO } from 'date-fns';
9
9
  import pick from 'lodash/pick';
10
10
  import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@atlaskit/analytics-next';
11
11
  import SelectClearIcon from '@atlaskit/icon/glyph/select-clear';
12
+ import { getBooleanFF } from '@atlaskit/platform-feature-flags';
12
13
  import { mergeStyles } from '@atlaskit/select';
13
- import { B100, N0, N20, N30, N500, N70, R400 } from '@atlaskit/theme/colors';
14
- import { borderRadius, gridSize } from '@atlaskit/theme/constants';
14
+ import { B100, N0, N100, N20, N30, N500, N70, R400 } from '@atlaskit/theme/colors';
15
+ import { borderRadius } from '@atlaskit/theme/constants';
15
16
  import { defaultTimes, formatDateTimeZoneIntoIso } from '../internal';
16
17
  import DatePicker from './date-picker';
17
18
  import TimePicker from './time-picker';
18
19
  import { convertTokens } from './utils';
19
20
  const packageName = "@atlaskit/datetime-picker";
20
- const packageVersion = "12.5.2";
21
+ const packageVersion = "12.6.0";
21
22
 
22
23
  /* eslint-disable react/no-unused-prop-types */
23
24
 
@@ -49,7 +50,7 @@ const noBgStyles = css({
49
50
  const hoverStyles = css({
50
51
  '&:hover': {
51
52
  backgroundColor: `var(--ds-background-input-hovered, ${N30})`,
52
- borderColor: `var(--ds-border-input, ${N30})`
53
+ borderColor: `var(--ds-border-input, ${getBooleanFF('platform.design-system-team.update-border-input_ff9l1') ? N100 : N30})`
53
54
  }
54
55
  });
55
56
  const isInvalidHoverStyles = css({
@@ -66,7 +67,7 @@ const isDisabledStyles = css({
66
67
  const baseContainerStyles = css({
67
68
  display: 'flex',
68
69
  backgroundColor: `var(--ds-background-input, ${N20})`,
69
- border: `2px solid ${`var(--ds-border-input, ${N20})`}`,
70
+ border: getBooleanFF('platform.design-system-team.update-border-input_ff9l1') ? `1px solid ${`var(--ds-border-input, ${N100})`}` : `2px solid ${`var(--ds-border-input, ${N20})`}`,
70
71
  borderRadius: `${borderRadius()}px`,
71
72
  transition: 'background-color 200ms ease-in-out, border-color 200ms ease-in-out',
72
73
  '&:hover': {
@@ -88,9 +89,9 @@ const timePickerContainerStyles = css({
88
89
  const ICON_PADDING = 2;
89
90
  const iconContainerStyles = css({
90
91
  display: 'flex',
91
- paddingTop: `6px`,
92
- paddingRight: `${gridSize()}px`,
93
- paddingBottom: `6px`,
92
+ paddingTop: "var(--ds-space-075, 6px)",
93
+ paddingRight: "var(--ds-space-100, 8px)",
94
+ paddingBottom: "var(--ds-space-075, 6px)",
94
95
  paddingLeft: `${ICON_PADDING * 2}px`,
95
96
  alignItems: 'center',
96
97
  flexBasis: 'inherit',
@@ -16,7 +16,7 @@ import FixedLayer from '../internal/fixed-layer';
16
16
  import parseTime from '../internal/parse-time';
17
17
  import { convertTokens } from './utils';
18
18
  const packageName = "@atlaskit/datetime-picker";
19
- const packageVersion = "12.5.2";
19
+ const packageVersion = "12.6.0";
20
20
 
21
21
  /* eslint-disable react/no-unused-prop-types */
22
22
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/datetime-picker",
3
- "version": "12.5.2",
3
+ "version": "12.6.0",
4
4
  "sideEffects": false
5
5
  }
@@ -24,12 +24,13 @@ import CalendarIcon from '@atlaskit/icon/glyph/calendar';
24
24
  import { createLocalizationProvider } from '@atlaskit/locale';
25
25
  import Select, { mergeStyles } from '@atlaskit/select';
26
26
  import { N0, N50A, N60A } from '@atlaskit/theme/colors';
27
+ // eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
27
28
  import { borderRadius, gridSize, layers } from '@atlaskit/theme/constants';
28
29
  import { defaultDateFormat, EmptyComponent, padToTwo, placeholderDatetime } from '../internal';
29
30
  import FixedLayer from '../internal/fixed-layer';
30
31
  import { convertTokens } from './utils';
31
32
  var packageName = "@atlaskit/datetime-picker";
32
- var packageVersion = "12.5.2";
33
+ var packageVersion = "12.6.0";
33
34
 
34
35
  /* eslint-disable react/no-unused-prop-types */
35
36
 
@@ -19,15 +19,16 @@ import { format, isValid, parseISO } from 'date-fns';
19
19
  import pick from 'lodash/pick';
20
20
  import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@atlaskit/analytics-next';
21
21
  import SelectClearIcon from '@atlaskit/icon/glyph/select-clear';
22
+ import { getBooleanFF } from '@atlaskit/platform-feature-flags';
22
23
  import { mergeStyles } from '@atlaskit/select';
23
- import { B100, N0, N20, N30, N500, N70, R400 } from '@atlaskit/theme/colors';
24
- import { borderRadius, gridSize } from '@atlaskit/theme/constants';
24
+ import { B100, N0, N100, N20, N30, N500, N70, R400 } from '@atlaskit/theme/colors';
25
+ import { borderRadius } from '@atlaskit/theme/constants';
25
26
  import { defaultTimes, formatDateTimeZoneIntoIso } from '../internal';
26
27
  import DatePicker from './date-picker';
27
28
  import TimePicker from './time-picker';
28
29
  import { convertTokens } from './utils';
29
30
  var packageName = "@atlaskit/datetime-picker";
30
- var packageVersion = "12.5.2";
31
+ var packageVersion = "12.6.0";
31
32
 
32
33
  /* eslint-disable react/no-unused-prop-types */
33
34
 
@@ -59,7 +60,7 @@ var noBgStyles = css({
59
60
  var hoverStyles = css({
60
61
  '&:hover': {
61
62
  backgroundColor: "var(--ds-background-input-hovered, ".concat(N30, ")"),
62
- borderColor: "var(--ds-border-input, ".concat(N30, ")")
63
+ borderColor: "var(--ds-border-input, ".concat(getBooleanFF('platform.design-system-team.update-border-input_ff9l1') ? N100 : N30, ")")
63
64
  }
64
65
  });
65
66
  var isInvalidHoverStyles = css({
@@ -76,7 +77,7 @@ var isDisabledStyles = css({
76
77
  var baseContainerStyles = css({
77
78
  display: 'flex',
78
79
  backgroundColor: "var(--ds-background-input, ".concat(N20, ")"),
79
- border: "2px solid ".concat("var(--ds-border-input, ".concat(N20, ")")),
80
+ border: getBooleanFF('platform.design-system-team.update-border-input_ff9l1') ? "1px solid ".concat("var(--ds-border-input, ".concat(N100, ")")) : "2px solid ".concat("var(--ds-border-input, ".concat(N20, ")")),
80
81
  borderRadius: "".concat(borderRadius(), "px"),
81
82
  transition: 'background-color 200ms ease-in-out, border-color 200ms ease-in-out',
82
83
  '&:hover': {
@@ -98,9 +99,9 @@ var timePickerContainerStyles = css({
98
99
  var ICON_PADDING = 2;
99
100
  var iconContainerStyles = css({
100
101
  display: 'flex',
101
- paddingTop: "6px",
102
- paddingRight: "".concat(gridSize(), "px"),
103
- paddingBottom: "6px",
102
+ paddingTop: "var(--ds-space-075, 6px)",
103
+ paddingRight: "var(--ds-space-100, 8px)",
104
+ paddingBottom: "var(--ds-space-075, 6px)",
104
105
  paddingLeft: "".concat(ICON_PADDING * 2, "px"),
105
106
  alignItems: 'center',
106
107
  flexBasis: 'inherit',
@@ -29,7 +29,7 @@ import FixedLayer from '../internal/fixed-layer';
29
29
  import parseTime from '../internal/parse-time';
30
30
  import { convertTokens } from './utils';
31
31
  var packageName = "@atlaskit/datetime-picker";
32
- var packageVersion = "12.5.2";
32
+ var packageVersion = "12.6.0";
33
33
 
34
34
  /* eslint-disable react/no-unused-prop-types */
35
35
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/datetime-picker",
3
- "version": "12.5.2",
3
+ "version": "12.6.0",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/datetime-picker",
3
- "version": "12.5.2",
3
+ "version": "12.6.0",
4
4
  "description": "A date time picker allows the user to select an associated date and time.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -37,8 +37,9 @@
37
37
  "@atlaskit/ds-lib": "^2.2.0",
38
38
  "@atlaskit/icon": "^21.12.0",
39
39
  "@atlaskit/locale": "^2.5.0",
40
+ "@atlaskit/platform-feature-flags": "^0.2.0",
40
41
  "@atlaskit/popper": "^5.5.0",
41
- "@atlaskit/select": "^16.2.0",
42
+ "@atlaskit/select": "^16.3.0",
42
43
  "@atlaskit/theme": "^12.5.0",
43
44
  "@atlaskit/tokens": "^1.4.0",
44
45
  "@babel/runtime": "^7.0.0",
@@ -65,6 +66,7 @@
65
66
  "@atlaskit/visual-regression": "*",
66
67
  "@atlaskit/webdriver-runner": "*",
67
68
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
69
+ "@atlassian/feature-flags-test-utils": "*",
68
70
  "@emotion/react": "^11.7.1",
69
71
  "@testing-library/react": "^12.1.5",
70
72
  "@testing-library/user-event": "^14.4.3",
@@ -92,6 +94,11 @@
92
94
  "deprecation": "no-deprecated-imports"
93
95
  }
94
96
  },
97
+ "platform-feature-flags": {
98
+ "platform.design-system-team.update-border-input_ff9l1": {
99
+ "type": "boolean"
100
+ }
101
+ },
95
102
  "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1",
96
103
  "homepage": "https://atlassian.design/components/datetime-picker/"
97
104
  }