@atlaskit/datetime-picker 17.8.0 → 17.8.1

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.
@@ -0,0 +1,16 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ * @jsx jsx
4
+ */
5
+ import { type MenuProps, type OptionType } from '@atlaskit/select';
6
+ /**
7
+ * Top-layer version of the date picker menu.
8
+ *
9
+ * Uses `@atlaskit/top-layer/popup` (Popup.Content + Popup.Surface) so the
10
+ * calendar renders in the browser's top layer via the native Popover API
11
+ * and is positioned via CSS Anchor Positioning. This avoids overflow clipping,
12
+ * z-index wars, and portal-based layering.
13
+ *
14
+ * Gated behind the `platform-dst-top-layer` feature flag.
15
+ */
16
+ export declare const MenuTopLayer: ({ selectProps, innerProps }: MenuProps<OptionType>) => JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/datetime-picker",
3
- "version": "17.8.0",
3
+ "version": "17.8.1",
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/"
@@ -44,14 +44,15 @@
44
44
  "@atlaskit/calendar": "^17.2.0",
45
45
  "@atlaskit/css": "^0.19.0",
46
46
  "@atlaskit/ds-lib": "^7.0.0",
47
- "@atlaskit/icon": "^34.3.0",
47
+ "@atlaskit/icon": "^34.5.0",
48
48
  "@atlaskit/layering": "^3.7.0",
49
49
  "@atlaskit/locale": "^4.1.0",
50
50
  "@atlaskit/platform-feature-flags": "^1.1.0",
51
51
  "@atlaskit/popper": "^7.2.0",
52
52
  "@atlaskit/primitives": "^19.0.0",
53
- "@atlaskit/select": "^21.10.0",
53
+ "@atlaskit/select": "^21.11.0",
54
54
  "@atlaskit/tokens": "^13.0.0",
55
+ "@atlaskit/top-layer": "^0.6.0",
55
56
  "@babel/runtime": "^7.0.0",
56
57
  "@compiled/react": "^0.20.0",
57
58
  "date-fns": "^2.17.0"
@@ -69,13 +70,13 @@
69
70
  "@atlaskit/form": "^15.5.0",
70
71
  "@atlaskit/heading": "^5.4.0",
71
72
  "@atlaskit/link": "^3.4.0",
72
- "@atlaskit/modal-dialog": "^14.18.0",
73
- "@atlaskit/popup": "^4.17.0",
73
+ "@atlaskit/modal-dialog": "^15.0.0",
74
+ "@atlaskit/popup": "^4.18.0",
74
75
  "@atlaskit/range": "^10.1.0",
75
76
  "@atlaskit/section-message": "^8.12.0",
76
77
  "@atlaskit/textfield": "^8.3.0",
77
78
  "@atlaskit/toggle": "^15.6.0",
78
- "@atlassian/feature-flags-test-utils": "^1.0.0",
79
+ "@atlassian/feature-flags-test-utils": "^1.1.0",
79
80
  "@atlassian/react-compiler-gating": "workspace:^",
80
81
  "@atlassian/ssr-tests": "workspace:^",
81
82
  "@atlassian/structured-docs-types": "workspace:^",
@@ -118,6 +119,9 @@
118
119
  "dst-date-time-picker-use-functional-component": {
119
120
  "type": "boolean"
120
121
  },
122
+ "platform-dst-top-layer": {
123
+ "type": "boolean"
124
+ },
121
125
  "platform-dst-shape-theme-default": {
122
126
  "type": "boolean"
123
127
  },