@atlaskit/datetime-picker 13.5.2 → 13.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +1321 -1305
  2. package/README.md +2 -1
  3. package/dist/cjs/components/date-picker.js +7 -3
  4. package/dist/cjs/components/date-time-picker.js +5 -2
  5. package/dist/cjs/components/time-picker.js +1 -1
  6. package/dist/cjs/internal/date-time-picker-container.js +6 -1
  7. package/dist/cjs/internal/fixed-layer-menu.js +4 -0
  8. package/dist/cjs/internal/menu.js +4 -0
  9. package/dist/es2019/components/date-picker.js +9 -2
  10. package/dist/es2019/components/date-time-picker.js +7 -1
  11. package/dist/es2019/components/time-picker.js +1 -1
  12. package/dist/es2019/internal/date-time-picker-container.js +6 -1
  13. package/dist/es2019/internal/fixed-layer-menu.js +4 -0
  14. package/dist/es2019/internal/menu.js +4 -0
  15. package/dist/esm/components/date-picker.js +9 -2
  16. package/dist/esm/components/date-time-picker.js +7 -1
  17. package/dist/esm/components/time-picker.js +1 -1
  18. package/dist/esm/internal/date-time-picker-container.js +6 -1
  19. package/dist/esm/internal/fixed-layer-menu.js +4 -0
  20. package/dist/esm/internal/menu.js +4 -0
  21. package/dist/types/components/date-picker.d.ts +3 -0
  22. package/dist/types/components/date-time-picker.d.ts +3 -0
  23. package/dist/types/internal/date-time-picker-container.d.ts +3 -0
  24. package/dist/types/internal/fixed-layer-menu.d.ts +3 -0
  25. package/dist/types/internal/menu.d.ts +3 -0
  26. package/dist/types/types.d.ts +0 -2
  27. package/dist/types-ts4.5/components/date-picker.d.ts +3 -0
  28. package/dist/types-ts4.5/components/date-time-picker.d.ts +3 -0
  29. package/dist/types-ts4.5/internal/date-time-picker-container.d.ts +3 -0
  30. package/dist/types-ts4.5/internal/fixed-layer-menu.d.ts +3 -0
  31. package/dist/types-ts4.5/internal/menu.d.ts +3 -0
  32. package/dist/types-ts4.5/types.d.ts +0 -2
  33. package/extract-react-types/date-picker-props.tsx +1 -1
  34. package/extract-react-types/time-picker-props.tsx +1 -1
  35. package/package.json +114 -116
  36. package/report.api.md +424 -436
package/package.json CHANGED
@@ -1,117 +1,115 @@
1
1
  {
2
- "name": "@atlaskit/datetime-picker",
3
- "version": "13.5.2",
4
- "description": "A date time picker allows the user to select an associated date and time.",
5
- "publishConfig": {
6
- "registry": "https://registry.npmjs.org/"
7
- },
8
- "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
9
- "author": "Atlassian Pty Ltd",
10
- "license": "Apache-2.0",
11
- "main": "dist/cjs/index.js",
12
- "module": "dist/esm/index.js",
13
- "module:es2019": "dist/es2019/index.js",
14
- "types": "dist/types/index.d.ts",
15
- "typesVersions": {
16
- ">=4.5 <4.9": {
17
- "*": [
18
- "dist/types-ts4.5/*",
19
- "dist/types-ts4.5/index.d.ts"
20
- ]
21
- }
22
- },
23
- "sideEffects": false,
24
- "atlaskit:src": "src/index.tsx",
25
- "af:exports": {
26
- ".": "./src/index.tsx",
27
- "./types": "./src/types.tsx"
28
- },
29
- "atlassian": {
30
- "team": "Design System Team",
31
- "releaseModel": "continuous",
32
- "productPushConsumption": [
33
- "jira"
34
- ],
35
- "website": {
36
- "name": "Date time picker",
37
- "category": "Components"
38
- },
39
- "runReact18": true
40
- },
41
- "dependencies": {
42
- "@atlaskit/analytics-next": "^9.3.0",
43
- "@atlaskit/calendar": "^14.2.0",
44
- "@atlaskit/ds-lib": "^2.3.0",
45
- "@atlaskit/icon": "^22.3.0",
46
- "@atlaskit/layering": "^0.3.0",
47
- "@atlaskit/locale": "^2.7.0",
48
- "@atlaskit/platform-feature-flags": "^0.2.0",
49
- "@atlaskit/popper": "^6.0.0",
50
- "@atlaskit/select": "^17.10.0",
51
- "@atlaskit/theme": "^12.8.0",
52
- "@atlaskit/tokens": "^1.49.0",
53
- "@babel/runtime": "^7.0.0",
54
- "@emotion/react": "^11.7.1",
55
- "date-fns": "^2.17.0",
56
- "lodash": "^4.17.21",
57
- "react-scrolllock": "^5.0.1"
58
- },
59
- "peerDependencies": {
60
- "react": "^16.8.0 || ^17.0.0 || ~18.2.0"
61
- },
62
- "devDependencies": {
63
- "@af/accessibility-testing": "*",
64
- "@af/integration-testing": "*",
65
- "@af/visual-regression": "*",
66
- "@atlaskit/button": "^17.17.0",
67
- "@atlaskit/docs": "*",
68
- "@atlaskit/form": "^10.2.0",
69
- "@atlaskit/modal-dialog": "^12.13.0",
70
- "@atlaskit/popup": "^1.17.0",
71
- "@atlaskit/range": "^7.2.0",
72
- "@atlaskit/section-message": "^6.5.0",
73
- "@atlaskit/ssr": "*",
74
- "@atlaskit/textfield": "^6.3.0",
75
- "@atlaskit/toggle": "^13.1.0",
76
- "@atlaskit/visual-regression": "*",
77
- "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
78
- "@atlassian/feature-flags-test-utils": "*",
79
- "@testing-library/react": "^12.1.5",
80
- "@testing-library/user-event": "^14.4.3",
81
- "@types/testing-library__jest-dom": "^5.14.5",
82
- "jest-in-case": "^1.0.2",
83
- "moment": "^2.29.2",
84
- "react-dom": "^16.8.0",
85
- "react-lorem-component": "^0.13.0",
86
- "react-test-renderer": "^16.8.0",
87
- "typescript": "~5.4.2"
88
- },
89
- "techstack": {
90
- "@atlassian/frontend": {
91
- "import-structure": "atlassian-conventions"
92
- },
93
- "@repo/internal": {
94
- "dom-events": "use-bind-event-listener",
95
- "design-system": "v1",
96
- "styling": [
97
- "emotion",
98
- "emotion"
99
- ],
100
- "design-tokens": [
101
- "color",
102
- "spacing"
103
- ],
104
- "deprecation": "no-deprecated-imports"
105
- }
106
- },
107
- "platform-feature-flags": {
108
- "platform.design-system-team.layering_qmiw3": {
109
- "type": "boolean"
110
- },
111
- "platform.design-system-team.date-picker-input-a11y-fix_cbbxs": {
112
- "type": "boolean"
113
- }
114
- },
115
- "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1",
116
- "homepage": "https://atlassian.design/components/datetime-picker/"
117
- }
2
+ "name": "@atlaskit/datetime-picker",
3
+ "version": "13.6.0",
4
+ "description": "A date time picker allows the user to select an associated date and time.",
5
+ "publishConfig": {
6
+ "registry": "https://registry.npmjs.org/"
7
+ },
8
+ "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
9
+ "author": "Atlassian Pty Ltd",
10
+ "license": "Apache-2.0",
11
+ "main": "dist/cjs/index.js",
12
+ "module": "dist/esm/index.js",
13
+ "module:es2019": "dist/es2019/index.js",
14
+ "types": "dist/types/index.d.ts",
15
+ "typesVersions": {
16
+ ">=4.5 <4.9": {
17
+ "*": [
18
+ "dist/types-ts4.5/*",
19
+ "dist/types-ts4.5/index.d.ts"
20
+ ]
21
+ }
22
+ },
23
+ "sideEffects": false,
24
+ "atlaskit:src": "src/index.tsx",
25
+ "af:exports": {
26
+ ".": "./src/index.tsx",
27
+ "./types": "./src/types.tsx"
28
+ },
29
+ "atlassian": {
30
+ "team": "Design System Team",
31
+ "releaseModel": "continuous",
32
+ "productPushConsumption": [
33
+ "jira"
34
+ ],
35
+ "website": {
36
+ "name": "Date time picker",
37
+ "category": "Components"
38
+ },
39
+ "runReact18": true
40
+ },
41
+ "dependencies": {
42
+ "@atlaskit/analytics-next": "^9.3.0",
43
+ "@atlaskit/calendar": "^14.3.0",
44
+ "@atlaskit/ds-lib": "^2.3.0",
45
+ "@atlaskit/icon": "^22.4.0",
46
+ "@atlaskit/layering": "^0.3.0",
47
+ "@atlaskit/locale": "^2.7.0",
48
+ "@atlaskit/platform-feature-flags": "^0.2.0",
49
+ "@atlaskit/popper": "^6.1.0",
50
+ "@atlaskit/select": "^17.11.0",
51
+ "@atlaskit/theme": "^12.10.0",
52
+ "@atlaskit/tokens": "^1.51.0",
53
+ "@babel/runtime": "^7.0.0",
54
+ "@emotion/react": "^11.7.1",
55
+ "date-fns": "^2.17.0",
56
+ "lodash": "^4.17.21",
57
+ "react-scrolllock": "^5.0.1"
58
+ },
59
+ "peerDependencies": {
60
+ "react": "^16.8.0 || ^17.0.0 || ~18.2.0"
61
+ },
62
+ "devDependencies": {
63
+ "@af/accessibility-testing": "*",
64
+ "@af/integration-testing": "*",
65
+ "@af/visual-regression": "*",
66
+ "@atlaskit/button": "^17.19.0",
67
+ "@atlaskit/docs": "*",
68
+ "@atlaskit/form": "^10.4.0",
69
+ "@atlaskit/modal-dialog": "^12.14.0",
70
+ "@atlaskit/popup": "^1.19.0",
71
+ "@atlaskit/range": "^7.3.0",
72
+ "@atlaskit/section-message": "^6.5.0",
73
+ "@atlaskit/ssr": "*",
74
+ "@atlaskit/textfield": "^6.4.0",
75
+ "@atlaskit/toggle": "^13.2.0",
76
+ "@atlaskit/visual-regression": "*",
77
+ "@atlassian/feature-flags-test-utils": "*",
78
+ "@testing-library/react": "^12.1.5",
79
+ "@testing-library/user-event": "^14.4.3",
80
+ "@types/testing-library__jest-dom": "^5.14.5",
81
+ "jest-in-case": "^1.0.2",
82
+ "moment": "^2.29.2",
83
+ "react-dom": "^16.8.0",
84
+ "react-lorem-component": "^0.13.0",
85
+ "react-test-renderer": "^16.8.0",
86
+ "typescript": "~5.4.2"
87
+ },
88
+ "techstack": {
89
+ "@atlassian/frontend": {
90
+ "import-structure": "atlassian-conventions"
91
+ },
92
+ "@repo/internal": {
93
+ "dom-events": "use-bind-event-listener",
94
+ "design-system": "v1",
95
+ "styling": [
96
+ "emotion",
97
+ "emotion"
98
+ ],
99
+ "design-tokens": [
100
+ "color",
101
+ "spacing"
102
+ ],
103
+ "deprecation": "no-deprecated-imports"
104
+ }
105
+ },
106
+ "platform-feature-flags": {
107
+ "platform.design-system-team.layering_qmiw3": {
108
+ "type": "boolean"
109
+ },
110
+ "platform.design-system-team.date-picker-input-a11y-fix_cbbxs": {
111
+ "type": "boolean"
112
+ }
113
+ },
114
+ "homepage": "https://atlassian.design/components/datetime-picker/"
115
+ }