@synerise/ds-time-picker 1.0.4 → 1.1.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
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.1.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-time-picker@1.1.0...@synerise/ds-time-picker@1.1.1) (2025-04-24)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-time-picker
9
+
10
+
11
+
12
+
13
+
14
+ # [1.1.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-time-picker@1.0.4...@synerise/ds-time-picker@1.1.0) (2025-04-16)
15
+
16
+
17
+ ### Features
18
+
19
+ * **form-field:** add form-field component ([7f6b191](https://github.com/Synerise/synerise-design/commit/7f6b191132a3b0d694c21fb4d649f4deea6acb89))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [1.0.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-time-picker@1.0.3...@synerise/ds-time-picker@1.0.4) (2025-04-02)
7
26
 
8
27
  **Note:** Version bump only for package @synerise/ds-time-picker
@@ -1,4 +1,4 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
2
  import React, { Fragment, useCallback, useMemo, useState } from 'react';
3
3
  import { FormattedMessage, useIntl } from 'react-intl';
4
4
  import { range } from 'lodash';
@@ -1,9 +1,9 @@
1
- import { ReactNode, CSSProperties } from 'react';
2
- import dayjs from 'dayjs';
3
- import { InputProps } from 'antd/es/input/Input';
4
- import { DropdownProps } from '@synerise/ds-dropdown/dist/Dropdown';
5
- import { DateToFormatOptions } from '@synerise/ds-data-format';
6
- import { CLOCK_MODES } from '../constants/timePicker.constants';
1
+ import type { ReactNode, CSSProperties } from 'react';
2
+ import type dayjs from 'dayjs';
3
+ import type { InputProps } from '@synerise/ds-input';
4
+ import type { DropdownProps } from '@synerise/ds-dropdown';
5
+ import type { DateToFormatOptions } from '@synerise/ds-data-format';
6
+ import type { CLOCK_MODES } from '../constants/timePicker.constants';
7
7
  export type ClockModes = typeof CLOCK_MODES[number];
8
8
  export type TimePickerDisabledUnits = {
9
9
  disabledSeconds?: number[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-time-picker",
3
- "version": "1.0.4",
3
+ "version": "1.1.1",
4
4
  "description": "TimePicker UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -35,12 +35,12 @@
35
35
  "types": "dist/index.d.ts",
36
36
  "dependencies": {
37
37
  "@synerise/ds-data-format": "^1.0.0",
38
- "@synerise/ds-dropdown": "^1.0.4",
39
- "@synerise/ds-icon": "^1.3.0",
40
- "@synerise/ds-input": "^1.0.4",
41
- "@synerise/ds-scrollbar": "^1.0.4",
42
- "@synerise/ds-tooltip": "^1.1.3",
43
- "@synerise/ds-typography": "^1.0.4",
38
+ "@synerise/ds-dropdown": "^1.0.6",
39
+ "@synerise/ds-icon": "^1.4.1",
40
+ "@synerise/ds-input": "^1.1.1",
41
+ "@synerise/ds-scrollbar": "^1.0.6",
42
+ "@synerise/ds-tooltip": "^1.1.5",
43
+ "@synerise/ds-typography": "^1.0.6",
44
44
  "@synerise/ds-utils": "^1.0.1",
45
45
  "dayjs": "^1.8.19",
46
46
  "debounce": "^1.2.0",
@@ -53,5 +53,5 @@
53
53
  "react-intl": ">=3.12.0 <= 6.8",
54
54
  "styled-components": "^5.3.3"
55
55
  },
56
- "gitHead": "dc78b03be09e793ec84f1dafc59c5616e77f1196"
56
+ "gitHead": "fc601270d3c84a5a52b62473a01f1b3c1c7014a7"
57
57
  }