@atlaskit/datetime-picker 18.1.1 → 18.1.3
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 +15 -0
- package/__tests__/playwright/top-layer-focus.spec.tsx +13 -1
- package/compass.yml +47 -0
- package/datetime-picker.docs.tsx +10 -6
- package/dist/cjs/components/date-picker.js +1 -1
- package/dist/cjs/components/date-time-picker.js +1 -1
- package/dist/cjs/components/time-picker.js +1 -1
- package/dist/cjs/internal/single-value.js +1 -2
- package/dist/es2019/components/date-picker.js +1 -1
- package/dist/es2019/components/date-time-picker.js +1 -1
- package/dist/es2019/components/time-picker.js +1 -1
- package/dist/es2019/internal/single-value.js +1 -2
- package/dist/esm/components/date-picker.js +1 -1
- package/dist/esm/components/date-time-picker.js +1 -1
- package/dist/esm/components/time-picker.js +1 -1
- package/dist/esm/internal/single-value.js +1 -2
- package/package.json +9 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/datetime-picker
|
|
2
2
|
|
|
3
|
+
## 18.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 18.1.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`9e0acecb39163`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9e0acecb39163) -
|
|
14
|
+
Cleanup feature gate `platform-dst-single-value-lang-replace`. Locale values in picker selected
|
|
15
|
+
values now always use hyphenated language tags.
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 18.1.1
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -63,7 +63,7 @@ test.describe('Date picker: top-layer focus contract', () => {
|
|
|
63
63
|
await expect(combobox).toBeFocused();
|
|
64
64
|
});
|
|
65
65
|
|
|
66
|
-
test('focus movement: Tab
|
|
66
|
+
test('focus movement: Tab moves focus and keeps it inside the calendar dialog', async ({
|
|
67
67
|
page,
|
|
68
68
|
}) => {
|
|
69
69
|
await page.visitExample<typeof import('../../examples/testing-top-layer-focus.tsx')>(
|
|
@@ -75,11 +75,23 @@ test.describe('Date picker: top-layer focus contract', () => {
|
|
|
75
75
|
|
|
76
76
|
await page.getByTestId('date-picker--container').click();
|
|
77
77
|
|
|
78
|
+
const calendar = page.getByRole('dialog', { name: 'calendar' });
|
|
79
|
+
await expect(calendar).toBeVisible();
|
|
80
|
+
|
|
78
81
|
const previousYearButton = page.getByTestId('date-picker--calendar--previous-year');
|
|
79
82
|
await expect(previousYearButton).toBeFocused();
|
|
80
83
|
|
|
81
84
|
// `useFocusWrap` keeps Tab inside the dialog for role="dialog" popovers.
|
|
82
85
|
await page.keyboard.press('Tab');
|
|
83
86
|
await expect(previousYearButton).not.toBeFocused();
|
|
87
|
+
|
|
88
|
+
// Focus must stay within the calendar dialog: for a role="dialog" popover
|
|
89
|
+
// `useFocusWrap` intercepts Tab so focus never escapes to page content
|
|
90
|
+
// behind the popover.
|
|
91
|
+
const focusWithinCalendar = await calendar.evaluate(
|
|
92
|
+
(calendarElement) =>
|
|
93
|
+
document.activeElement !== null && calendarElement.contains(document.activeElement),
|
|
94
|
+
);
|
|
95
|
+
expect(focusWithinCalendar).toBe(true);
|
|
84
96
|
});
|
|
85
97
|
});
|
package/compass.yml
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
configVersion: 1
|
|
2
|
+
id: ari:cloud:compass:a436116f-02ce-4520-8fbb-7301462a1674:component/c5751cc6-3513-4070-9deb-af31e86aed34/2a66e786-e8e6-4a43-8b8d-ad3d3a1efb07
|
|
3
|
+
name: '@atlaskit/datetime-picker'
|
|
4
|
+
ownerId: ari:cloud:teams::team/814283d6-8695-4329-b2f8-d78b2645722f # Design System Team (ADS)
|
|
5
|
+
labels:
|
|
6
|
+
- platform-code
|
|
7
|
+
- platform-afm
|
|
8
|
+
typeId: OTHER
|
|
9
|
+
fields:
|
|
10
|
+
tier: 4
|
|
11
|
+
lifecycle: Active
|
|
12
|
+
isMonorepoProject: true
|
|
13
|
+
links:
|
|
14
|
+
- name: Root Repository
|
|
15
|
+
type: REPOSITORY
|
|
16
|
+
url: https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master
|
|
17
|
+
- name: Slack Channel
|
|
18
|
+
type: CHAT_CHANNEL
|
|
19
|
+
url: https://atlassian.enterprise.slack.com/archives/CFJ9DU39U # #help-design-system
|
|
20
|
+
- name: Datetime Picker
|
|
21
|
+
type: REPOSITORY
|
|
22
|
+
url: https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/design-system/datetime-picker
|
|
23
|
+
customFields:
|
|
24
|
+
- name: Department
|
|
25
|
+
type: text
|
|
26
|
+
value: Eng - Design System Fundamentals
|
|
27
|
+
- name: Technical Owner
|
|
28
|
+
type: user
|
|
29
|
+
value: ari:cloud:identity::user/557058:86a9b692-7997-49cb-9984-080801b1de91 # Jared Crowe
|
|
30
|
+
- name: Reviewer Team
|
|
31
|
+
type: text
|
|
32
|
+
value: ari:cloud:teams::team/be19136e-6275-419f-be0c-fcee844b8684 # Design System Engineers
|
|
33
|
+
- name: Required Reviewers Opt In
|
|
34
|
+
type: boolean
|
|
35
|
+
value: true
|
|
36
|
+
- name: Reviewer Selection Mechanism
|
|
37
|
+
type: text
|
|
38
|
+
value: random(3)
|
|
39
|
+
- name: Required Reviewer Approvals
|
|
40
|
+
type: number
|
|
41
|
+
value: 1
|
|
42
|
+
- name: Trusted Committers
|
|
43
|
+
type: text
|
|
44
|
+
value: ari:cloud:teams::team/814283d6-8695-4329-b2f8-d78b2645722f # Design System Team (ADS)
|
|
45
|
+
- name: Trusted Reviewer Teams
|
|
46
|
+
type: text
|
|
47
|
+
value: ari:cloud:teams::team/42f4416b-e028-4daa-b2a5-afe213ac75e1 # Design System Designers
|
package/datetime-picker.docs.tsx
CHANGED
|
@@ -8,10 +8,14 @@ const documentation: StructuredContentSource = {
|
|
|
8
8
|
name: 'DatePicker',
|
|
9
9
|
description: 'A component for selecting date values with calendar support.',
|
|
10
10
|
status: 'general-availability',
|
|
11
|
+
designSource: {
|
|
12
|
+
figmaUrl:
|
|
13
|
+
'https://www.figma.com/design/BGz5AdkWe3yTIYdKnTSZuY/ADS-Components?node-id=13285-45993',
|
|
14
|
+
},
|
|
11
15
|
import: {
|
|
12
16
|
name: 'DatePicker',
|
|
13
|
-
package: '@atlaskit/datetime-picker',
|
|
14
|
-
type: '
|
|
17
|
+
package: '@atlaskit/datetime-picker/date-picker',
|
|
18
|
+
type: 'default',
|
|
15
19
|
packagePath: path.resolve(__dirname),
|
|
16
20
|
packageJson: require('./package.json'),
|
|
17
21
|
},
|
|
@@ -49,8 +53,8 @@ const documentation: StructuredContentSource = {
|
|
|
49
53
|
status: 'general-availability',
|
|
50
54
|
import: {
|
|
51
55
|
name: 'TimePicker',
|
|
52
|
-
package: '@atlaskit/datetime-picker',
|
|
53
|
-
type: '
|
|
56
|
+
package: '@atlaskit/datetime-picker/time-picker',
|
|
57
|
+
type: 'default',
|
|
54
58
|
packagePath: path.resolve(__dirname),
|
|
55
59
|
packageJson: require('./package.json'),
|
|
56
60
|
},
|
|
@@ -89,8 +93,8 @@ const documentation: StructuredContentSource = {
|
|
|
89
93
|
status: 'general-availability',
|
|
90
94
|
import: {
|
|
91
95
|
name: 'DateTimePicker',
|
|
92
|
-
package: '@atlaskit/datetime-picker',
|
|
93
|
-
type: '
|
|
96
|
+
package: '@atlaskit/datetime-picker/date-time-picker',
|
|
97
|
+
type: 'default',
|
|
94
98
|
packagePath: path.resolve(__dirname),
|
|
95
99
|
packageJson: require('./package.json'),
|
|
96
100
|
},
|
|
@@ -44,7 +44,7 @@ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r
|
|
|
44
44
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
45
45
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
46
46
|
var packageName = "@atlaskit/datetime-picker";
|
|
47
|
-
var packageVersion = "18.1.
|
|
47
|
+
var packageVersion = "18.1.2";
|
|
48
48
|
var styles = {
|
|
49
49
|
pickerContainerStyle: "_kqswh2mm",
|
|
50
50
|
dropdownIndicatorStyles: "_1ul91k8s _1tke1k8s _1e0c1txw _4cvr1h6o _1bah1h6o",
|
|
@@ -33,7 +33,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
33
33
|
// for typing `process`
|
|
34
34
|
// oxlint-disable-next-line @atlassian/no-restricted-imports
|
|
35
35
|
var packageName = "@atlaskit/datetime-picker";
|
|
36
|
-
var packageVersion = "18.1.
|
|
36
|
+
var packageVersion = "18.1.2";
|
|
37
37
|
var analyticsAttributes = {
|
|
38
38
|
componentName: 'dateTimePicker',
|
|
39
39
|
packageName: packageName,
|
|
@@ -30,7 +30,7 @@ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r
|
|
|
30
30
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
31
31
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } // oxlint-disable-next-line @atlassian/no-restricted-imports
|
|
32
32
|
var packageName = "@atlaskit/datetime-picker";
|
|
33
|
-
var packageVersion = "18.1.
|
|
33
|
+
var packageVersion = "18.1.2";
|
|
34
34
|
var defaultTimeFormat = 'h:mma';
|
|
35
35
|
var menuStyles = {
|
|
36
36
|
/* Need to remove default absolute positioning as that causes issues with position fixed */
|
|
@@ -8,7 +8,6 @@ exports.makeSingleValue = void 0;
|
|
|
8
8
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
9
9
|
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
10
10
|
var _react = _interopRequireDefault(require("react"));
|
|
11
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
12
11
|
var _select = require("@atlaskit/select");
|
|
13
12
|
var _excluded = ["children", "className", "clearValue", "cx", "data", "getStyles", "getValue", "hasValue", "isDisabled", "isMulti", "isRtl", "options", "selectOption", "selectProps", "setValue"];
|
|
14
13
|
/**
|
|
@@ -48,7 +47,7 @@ function makeSingleValue(_ref) {
|
|
|
48
47
|
hasValue: hasValue,
|
|
49
48
|
innerProps: {
|
|
50
49
|
id: id,
|
|
51
|
-
lang:
|
|
50
|
+
lang: lang.replace('_', '-')
|
|
52
51
|
},
|
|
53
52
|
isDisabled: isDisabled,
|
|
54
53
|
isMulti: isMulti,
|
|
@@ -31,7 +31,7 @@ import { MenuTopLayer } from '../internal/menu-top-layer';
|
|
|
31
31
|
import { parseDate } from '../internal/parse-date';
|
|
32
32
|
import { makeSingleValue } from '../internal/single-value';
|
|
33
33
|
const packageName = "@atlaskit/datetime-picker";
|
|
34
|
-
const packageVersion = "18.1.
|
|
34
|
+
const packageVersion = "18.1.2";
|
|
35
35
|
const styles = {
|
|
36
36
|
pickerContainerStyle: "_kqswh2mm",
|
|
37
37
|
dropdownIndicatorStyles: "_1ul91k8s _1tke1k8s _1e0c1txw _4cvr1h6o _1bah1h6o",
|
|
@@ -20,7 +20,7 @@ import { convertTokens } from '../internal/parse-tokens';
|
|
|
20
20
|
import DatePicker from './date-picker';
|
|
21
21
|
import TimePicker from './time-picker';
|
|
22
22
|
const packageName = "@atlaskit/datetime-picker";
|
|
23
|
-
const packageVersion = "18.1.
|
|
23
|
+
const packageVersion = "18.1.2";
|
|
24
24
|
const analyticsAttributes = {
|
|
25
25
|
componentName: 'dateTimePicker',
|
|
26
26
|
packageName,
|
|
@@ -17,7 +17,7 @@ import { convertTokens } from '../internal/parse-tokens';
|
|
|
17
17
|
import { placeholderDatetime } from '../internal/placeholder-date-time';
|
|
18
18
|
import { makeSingleValue } from '../internal/single-value';
|
|
19
19
|
const packageName = "@atlaskit/datetime-picker";
|
|
20
|
-
const packageVersion = "18.1.
|
|
20
|
+
const packageVersion = "18.1.2";
|
|
21
21
|
const defaultTimeFormat = 'h:mma';
|
|
22
22
|
const menuStyles = {
|
|
23
23
|
/* Need to remove default absolute positioning as that causes issues with position fixed */
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
4
3
|
import { components } from '@atlaskit/select';
|
|
5
4
|
|
|
6
5
|
/**
|
|
@@ -41,7 +40,7 @@ export const makeSingleValue =
|
|
|
41
40
|
hasValue: hasValue,
|
|
42
41
|
innerProps: {
|
|
43
42
|
id,
|
|
44
|
-
lang:
|
|
43
|
+
lang: lang.replace('_', '-')
|
|
45
44
|
},
|
|
46
45
|
isDisabled: isDisabled,
|
|
47
46
|
isMulti: isMulti,
|
|
@@ -37,7 +37,7 @@ import { MenuTopLayer } from '../internal/menu-top-layer';
|
|
|
37
37
|
import { parseDate } from '../internal/parse-date';
|
|
38
38
|
import { makeSingleValue } from '../internal/single-value';
|
|
39
39
|
var packageName = "@atlaskit/datetime-picker";
|
|
40
|
-
var packageVersion = "18.1.
|
|
40
|
+
var packageVersion = "18.1.2";
|
|
41
41
|
var styles = {
|
|
42
42
|
pickerContainerStyle: "_kqswh2mm",
|
|
43
43
|
dropdownIndicatorStyles: "_1ul91k8s _1tke1k8s _1e0c1txw _4cvr1h6o _1bah1h6o",
|
|
@@ -27,7 +27,7 @@ import { convertTokens } from '../internal/parse-tokens';
|
|
|
27
27
|
import DatePicker from './date-picker';
|
|
28
28
|
import TimePicker from './time-picker';
|
|
29
29
|
var packageName = "@atlaskit/datetime-picker";
|
|
30
|
-
var packageVersion = "18.1.
|
|
30
|
+
var packageVersion = "18.1.2";
|
|
31
31
|
var analyticsAttributes = {
|
|
32
32
|
componentName: 'dateTimePicker',
|
|
33
33
|
packageName: packageName,
|
|
@@ -23,7 +23,7 @@ import { convertTokens } from '../internal/parse-tokens';
|
|
|
23
23
|
import { placeholderDatetime } from '../internal/placeholder-date-time';
|
|
24
24
|
import { makeSingleValue } from '../internal/single-value';
|
|
25
25
|
var packageName = "@atlaskit/datetime-picker";
|
|
26
|
-
var packageVersion = "18.1.
|
|
26
|
+
var packageVersion = "18.1.2";
|
|
27
27
|
var defaultTimeFormat = 'h:mma';
|
|
28
28
|
var menuStyles = {
|
|
29
29
|
/* Need to remove default absolute positioning as that causes issues with position fixed */
|
|
@@ -2,7 +2,6 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
3
3
|
var _excluded = ["children", "className", "clearValue", "cx", "data", "getStyles", "getValue", "hasValue", "isDisabled", "isMulti", "isRtl", "options", "selectOption", "selectProps", "setValue"];
|
|
4
4
|
import React from 'react';
|
|
5
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
6
5
|
import { components } from '@atlaskit/select';
|
|
7
6
|
|
|
8
7
|
/**
|
|
@@ -42,7 +41,7 @@ function makeSingleValue(_ref) {
|
|
|
42
41
|
hasValue: hasValue,
|
|
43
42
|
innerProps: {
|
|
44
43
|
id: id,
|
|
45
|
-
lang:
|
|
44
|
+
lang: lang.replace('_', '-')
|
|
46
45
|
},
|
|
47
46
|
isDisabled: isDisabled,
|
|
48
47
|
isMulti: isMulti,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/datetime-picker",
|
|
3
|
-
"version": "18.1.
|
|
3
|
+
"version": "18.1.3",
|
|
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/"
|
|
@@ -31,21 +31,21 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@atlaskit/analytics-next": "^12.
|
|
34
|
+
"@atlaskit/analytics-next": "^12.2.0",
|
|
35
35
|
"@atlaskit/button": "^24.3.0",
|
|
36
|
-
"@atlaskit/calendar": "^18.
|
|
36
|
+
"@atlaskit/calendar": "^18.2.0",
|
|
37
37
|
"@atlaskit/css": "^1.0.0",
|
|
38
38
|
"@atlaskit/ds-lib": "^8.0.0",
|
|
39
|
-
"@atlaskit/icon": "^
|
|
39
|
+
"@atlaskit/icon": "^37.0.0",
|
|
40
40
|
"@atlaskit/layering": "^4.1.0",
|
|
41
41
|
"@atlaskit/locale": "^5.0.0",
|
|
42
42
|
"@atlaskit/platform-feature-flags": "^2.0.0",
|
|
43
43
|
"@atlaskit/popper": "^8.2.0",
|
|
44
|
-
"@atlaskit/primitives": "^20.
|
|
44
|
+
"@atlaskit/primitives": "^20.5.0",
|
|
45
45
|
"@atlaskit/react-compiler-gating": "^0.2.0",
|
|
46
|
-
"@atlaskit/select": "^22.
|
|
47
|
-
"@atlaskit/tokens": "^15.
|
|
48
|
-
"@atlaskit/top-layer": "^1.
|
|
46
|
+
"@atlaskit/select": "^22.5.0",
|
|
47
|
+
"@atlaskit/tokens": "^15.5.0",
|
|
48
|
+
"@atlaskit/top-layer": "^1.6.0",
|
|
49
49
|
"@babel/runtime": "^7.0.0",
|
|
50
50
|
"@compiled/react": "^0.20.0",
|
|
51
51
|
"date-fns": "^2.17.0"
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@atlaskit/codemod-utils": "^5.0.0",
|
|
62
62
|
"@atlaskit/docs": "^12.0.0",
|
|
63
63
|
"@atlaskit/form": "^16.1.0",
|
|
64
|
-
"@atlaskit/heading": "^6.
|
|
64
|
+
"@atlaskit/heading": "^6.2.0",
|
|
65
65
|
"@atlaskit/link": "^4.1.0",
|
|
66
66
|
"@atlaskit/modal-dialog": "^16.1.0",
|
|
67
67
|
"@atlaskit/popup": "^5.1.0",
|
|
@@ -69,7 +69,6 @@
|
|
|
69
69
|
"@atlaskit/section-message": "^9.2.0",
|
|
70
70
|
"@atlaskit/textfield": "^9.1.0",
|
|
71
71
|
"@atlaskit/toggle": "^17.1.0",
|
|
72
|
-
"@atlassian/feature-flags-test-utils": "^1.1.0",
|
|
73
72
|
"@atlassian/ssr-tests": "workspace:^",
|
|
74
73
|
"@atlassian/structured-docs-types": "workspace:^",
|
|
75
74
|
"@testing-library/react": "^16.3.0",
|
|
@@ -111,9 +110,6 @@
|
|
|
111
110
|
},
|
|
112
111
|
"platform-dst-shape-theme-default": {
|
|
113
112
|
"type": "boolean"
|
|
114
|
-
},
|
|
115
|
-
"platform-dst-single-value-lang-replace": {
|
|
116
|
-
"type": "boolean"
|
|
117
113
|
}
|
|
118
114
|
},
|
|
119
115
|
"homepage": "https://atlassian.design/components/datetime-picker/"
|