@synerise/ds-time-picker 0.11.1 → 0.11.2
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 +11 -0
- package/dist/TimePicker.styles.d.ts +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.11.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-time-picker@0.11.1...@synerise/ds-time-picker@0.11.2) (2024-11-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **core:** onError fn types ([c34bdfe](https://github.com/Synerise/synerise-design/commit/c34bdfe9da898d7999c605f9fbcbba4716dfb6d4))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.11.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-time-picker@0.11.0...@synerise/ds-time-picker@0.11.1) (2024-11-12)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @synerise/ds-time-picker
|
|
@@ -11,7 +11,7 @@ export declare const CellText: import("styled-components").StyledComponent<"labe
|
|
|
11
11
|
export declare const Cell: import("styled-components").StyledComponent<"button", any, {
|
|
12
12
|
active?: boolean | undefined;
|
|
13
13
|
}, never>;
|
|
14
|
-
export declare const ClearIcon: import("styled-components").StyledComponent<
|
|
14
|
+
export declare const ClearIcon: import("styled-components").StyledComponent<({ name, component, className, ...rest }: import("@synerise/ds-icon").IconProps) => import("react").JSX.Element, any, {}, never>;
|
|
15
15
|
export declare const TimePickerInput: import("styled-components").StyledComponent<import("react").ComponentType<import("@synerise/ds-input").BaseProps<HTMLInputElement> & import("antd/lib/input").InputProps>, any, {}, never>;
|
|
16
16
|
export declare const PlaceholderWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
17
17
|
export declare const Placeholder: import("styled-components").StyledComponent<"div", any, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-time-picker",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"description": "TimePicker UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -34,24 +34,24 @@
|
|
|
34
34
|
],
|
|
35
35
|
"types": "dist/index.d.ts",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@synerise/ds-data-format": "^0.6.
|
|
38
|
-
"@synerise/ds-dropdown": "^0.18.
|
|
39
|
-
"@synerise/ds-icon": "^0.
|
|
40
|
-
"@synerise/ds-input": "^0.24.
|
|
41
|
-
"@synerise/ds-scrollbar": "^0.11.
|
|
42
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
43
|
-
"@synerise/ds-typography": "^0.16.
|
|
44
|
-
"@synerise/ds-utils": "^0.31.
|
|
37
|
+
"@synerise/ds-data-format": "^0.6.1",
|
|
38
|
+
"@synerise/ds-dropdown": "^0.18.24",
|
|
39
|
+
"@synerise/ds-icon": "^0.67.0",
|
|
40
|
+
"@synerise/ds-input": "^0.24.14",
|
|
41
|
+
"@synerise/ds-scrollbar": "^0.11.19",
|
|
42
|
+
"@synerise/ds-tooltip": "^0.14.49",
|
|
43
|
+
"@synerise/ds-typography": "^0.16.6",
|
|
44
|
+
"@synerise/ds-utils": "^0.31.2",
|
|
45
45
|
"dayjs": "^1.8.19",
|
|
46
46
|
"debounce": "^1.2.0",
|
|
47
|
-
"lodash": "^4.17.21"
|
|
48
|
-
"react-intl": "6.8.4"
|
|
47
|
+
"lodash": "^4.17.21"
|
|
49
48
|
},
|
|
50
49
|
"peerDependencies": {
|
|
51
50
|
"@synerise/ds-core": "*",
|
|
52
51
|
"antd": "4.7.0",
|
|
53
52
|
"react": ">=16.9.0 <= 17.0.2",
|
|
53
|
+
"react-intl": ">=3.12.0 <= 6.8",
|
|
54
54
|
"styled-components": "5.0.1"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "05f083c767e2cec3c2f91c9475aee89852a77d6c"
|
|
57
57
|
}
|