@synerise/ds-time-picker 0.10.8 → 0.10.10
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 +16 -0
- package/dist/TimePicker.d.ts +2 -1
- package/dist/Unit.d.ts +2 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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
|
+
## [0.10.10](https://github.com/Synerise/synerise-design/compare/@synerise/ds-time-picker@0.10.9...@synerise/ds-time-picker@0.10.10) (2024-05-29)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-time-picker
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.10.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-time-picker@0.10.8...@synerise/ds-time-picker@0.10.9) (2024-05-23)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-time-picker
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [0.10.8](https://github.com/Synerise/synerise-design/compare/@synerise/ds-time-picker@0.10.7...@synerise/ds-time-picker@0.10.8) (2024-05-16)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @synerise/ds-time-picker
|
package/dist/TimePicker.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import dayjs from 'dayjs';
|
|
2
3
|
import { TimePickerProps } from './types/TimePicker.types';
|
|
3
4
|
declare const TimePicker: {
|
|
4
|
-
({ placement, placeholder, trigger, value, units, defaultOpen, onChange, containerStyle, timeFormat, valueFormatOptions, use12HourClock, alwaysOpen, dropdownProps, inputProps, disabled, disabledHours, disabledMinutes, disabledSeconds, overlayClassName, className, clearTooltip, raw, onClockModeChange, errorText, }: TimePickerProps): JSX.Element;
|
|
5
|
+
({ placement, placeholder, trigger, value, units, defaultOpen, onChange, containerStyle, timeFormat, valueFormatOptions, use12HourClock, alwaysOpen, dropdownProps, inputProps, disabled, disabledHours, disabledMinutes, disabledSeconds, overlayClassName, className, clearTooltip, raw, onClockModeChange, errorText, }: TimePickerProps): React.JSX.Element;
|
|
5
6
|
defaultProps: {
|
|
6
7
|
placement: string;
|
|
7
8
|
trigger: string[];
|
package/dist/Unit.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import dayjs from 'dayjs';
|
|
2
3
|
export type UnitConfig = {
|
|
3
4
|
unit: dayjs.UnitType;
|
|
@@ -10,5 +11,5 @@ export type UnitProps = UnitConfig & {
|
|
|
10
11
|
value?: Date;
|
|
11
12
|
onSelect: (value: number) => void;
|
|
12
13
|
};
|
|
13
|
-
declare const Unit: ({ options, disabled, value, unit, onSelect, use12HourClock }: UnitProps) => JSX.Element;
|
|
14
|
+
declare const Unit: ({ options, disabled, value, unit, onSelect, use12HourClock }: UnitProps) => React.JSX.Element;
|
|
14
15
|
export default Unit;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-time-picker",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.10",
|
|
4
4
|
"description": "TimePicker UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@synerise/ds-data-format": "^0.5.0",
|
|
37
|
-
"@synerise/ds-dropdown": "^0.
|
|
38
|
-
"@synerise/ds-icon": "^0.
|
|
39
|
-
"@synerise/ds-input": "^0.21.
|
|
40
|
-
"@synerise/ds-scrollbar": "^0.
|
|
41
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
37
|
+
"@synerise/ds-dropdown": "^0.18.0",
|
|
38
|
+
"@synerise/ds-icon": "^0.62.0",
|
|
39
|
+
"@synerise/ds-input": "^0.21.5",
|
|
40
|
+
"@synerise/ds-scrollbar": "^0.11.0",
|
|
41
|
+
"@synerise/ds-tooltip": "^0.14.29",
|
|
42
42
|
"@synerise/ds-typography": "^0.15.0",
|
|
43
|
-
"@synerise/ds-utils": "^0.
|
|
43
|
+
"@synerise/ds-utils": "^0.27.0",
|
|
44
44
|
"dayjs": "^1.8.19",
|
|
45
45
|
"debounce": "^1.2.0",
|
|
46
46
|
"lodash": "^4.17.19",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"@testing-library/react": "10.0.1",
|
|
56
56
|
"@types/debounce": "^1.2.1"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "6bd94c78745df68ee3b853120a863ab24fc233ef"
|
|
59
59
|
}
|