@atlaskit/datetime-picker 14.0.0 → 14.0.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaskit/datetime-picker
2
2
 
3
+ ## 14.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#134343](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/134343)
8
+ [`e6aa0942ed680`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e6aa0942ed680) -
9
+ Deprecated props that were missed in the last deprecation patch, `13.11.1`.
10
+
3
11
  ## 14.0.0
4
12
 
5
13
  ### Major Changes
@@ -37,7 +37,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
37
37
  * @jsx jsx
38
38
  */ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
39
39
  var packageName = "@atlaskit/datetime-picker";
40
- var packageVersion = "14.0.0";
40
+ var packageVersion = "14.0.1";
41
41
  var datePickerDefaultProps = {
42
42
  appearance: 'default',
43
43
  autoFocus: false,
@@ -35,7 +35,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
35
35
  * @jsx jsx
36
36
  */ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
37
37
  var packageName = "@atlaskit/datetime-picker";
38
- var packageVersion = "14.0.0";
38
+ var packageVersion = "14.0.1";
39
39
  // Make DatePicker 50% the width of DateTimePicker
40
40
  // If rendering an icon container, shrink the TimePicker
41
41
  var datePickerContainerStyles = (0, _react2.css)({
@@ -35,7 +35,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
35
35
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } // eslint-disable-next-line no-restricted-imports
36
36
  // eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
37
37
  var packageName = "@atlaskit/datetime-picker";
38
- var packageVersion = "14.0.0";
38
+ var packageVersion = "14.0.1";
39
39
  var menuStyles = {
40
40
  /* Need to remove default absolute positioning as that causes issues with position fixed */
41
41
  position: 'static',
@@ -19,7 +19,7 @@ import { getSafeCalendarValue, getShortISOString } from '../internal/parse-date'
19
19
  import { convertTokens } from '../internal/parse-tokens';
20
20
  import { makeSingleValue } from '../internal/single-value';
21
21
  const packageName = "@atlaskit/datetime-picker";
22
- const packageVersion = "14.0.0";
22
+ const packageVersion = "14.0.1";
23
23
  const datePickerDefaultProps = {
24
24
  appearance: 'default',
25
25
  autoFocus: false,
@@ -18,7 +18,7 @@ import { convertTokens } from '../internal/parse-tokens';
18
18
  import DatePicker from './date-picker';
19
19
  import TimePicker from './time-picker';
20
20
  const packageName = "@atlaskit/datetime-picker";
21
- const packageVersion = "14.0.0";
21
+ const packageVersion = "14.0.1";
22
22
  // Make DatePicker 50% the width of DateTimePicker
23
23
  // If rendering an icon container, shrink the TimePicker
24
24
  const datePickerContainerStyles = css({
@@ -15,7 +15,7 @@ import parseTime from '../internal/parse-time';
15
15
  import { convertTokens } from '../internal/parse-tokens';
16
16
  import { makeSingleValue } from '../internal/single-value';
17
17
  const packageName = "@atlaskit/datetime-picker";
18
- const packageVersion = "14.0.0";
18
+ const packageVersion = "14.0.1";
19
19
  const menuStyles = {
20
20
  /* Need to remove default absolute positioning as that causes issues with position fixed */
21
21
  position: 'static',
@@ -30,7 +30,7 @@ import { getSafeCalendarValue, getShortISOString } from '../internal/parse-date'
30
30
  import { convertTokens } from '../internal/parse-tokens';
31
31
  import { makeSingleValue } from '../internal/single-value';
32
32
  var packageName = "@atlaskit/datetime-picker";
33
- var packageVersion = "14.0.0";
33
+ var packageVersion = "14.0.1";
34
34
  var datePickerDefaultProps = {
35
35
  appearance: 'default',
36
36
  autoFocus: false,
@@ -31,7 +31,7 @@ import { convertTokens } from '../internal/parse-tokens';
31
31
  import DatePicker from './date-picker';
32
32
  import TimePicker from './time-picker';
33
33
  var packageName = "@atlaskit/datetime-picker";
34
- var packageVersion = "14.0.0";
34
+ var packageVersion = "14.0.1";
35
35
  // Make DatePicker 50% the width of DateTimePicker
36
36
  // If rendering an icon container, shrink the TimePicker
37
37
  var datePickerContainerStyles = css({
@@ -27,7 +27,7 @@ import parseTime from '../internal/parse-time';
27
27
  import { convertTokens } from '../internal/parse-tokens';
28
28
  import { makeSingleValue } from '../internal/single-value';
29
29
  var packageName = "@atlaskit/datetime-picker";
30
- var packageVersion = "14.0.0";
30
+ var packageVersion = "14.0.1";
31
31
  var menuStyles = {
32
32
  /* Need to remove default absolute positioning as that causes issues with position fixed */
33
33
  position: 'static',
@@ -211,6 +211,8 @@ export interface TimePickerBaseProps extends WithAnalyticsEventsProps, PickerSel
211
211
  * `subtle` will remove the borders, background, and icon.
212
212
  *
213
213
  * __NOTE:__ Appearance values will be ignored if styles are parsed through `selectProps`.
214
+ *
215
+ * @deprecated
214
216
  */
215
217
  appearance?: Appearance;
216
218
  /**
@@ -329,6 +331,8 @@ export interface DateTimePickerBaseProps extends WithAnalyticsEventsProps {
329
331
  * Set the appearance of the picker.
330
332
  *
331
333
  * `subtle` will remove the borders and background.
334
+ *
335
+ * @deprecated
332
336
  */
333
337
  appearance?: Appearance;
334
338
  /**
@@ -211,6 +211,8 @@ export interface TimePickerBaseProps extends WithAnalyticsEventsProps, PickerSel
211
211
  * `subtle` will remove the borders, background, and icon.
212
212
  *
213
213
  * __NOTE:__ Appearance values will be ignored if styles are parsed through `selectProps`.
214
+ *
215
+ * @deprecated
214
216
  */
215
217
  appearance?: Appearance;
216
218
  /**
@@ -329,6 +331,8 @@ export interface DateTimePickerBaseProps extends WithAnalyticsEventsProps {
329
331
  * Set the appearance of the picker.
330
332
  *
331
333
  * `subtle` will remove the borders and background.
334
+ *
335
+ * @deprecated
332
336
  */
333
337
  appearance?: Appearance;
334
338
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/datetime-picker",
3
- "version": "14.0.0",
3
+ "version": "14.0.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/"
@@ -42,7 +42,7 @@
42
42
  "@atlaskit/analytics-next": "^10.1.0",
43
43
  "@atlaskit/calendar": "^14.5.0",
44
44
  "@atlaskit/ds-lib": "^2.5.0",
45
- "@atlaskit/icon": "^22.14.0",
45
+ "@atlaskit/icon": "^22.15.0",
46
46
  "@atlaskit/layering": "^0.4.0",
47
47
  "@atlaskit/locale": "^2.8.0",
48
48
  "@atlaskit/popper": "^6.2.0",