@synerise/ds-autocomplete 0.5.1 → 0.5.3
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,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.5.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-autocomplete@0.5.2...@synerise/ds-autocomplete@0.5.3) (2023-10-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-autocomplete
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.5.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-autocomplete@0.5.1...@synerise/ds-autocomplete@0.5.2) (2023-09-26)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-autocomplete
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [0.5.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-autocomplete@0.5.0...@synerise/ds-autocomplete@0.5.1) (2023-09-19)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @synerise/ds-autocomplete
|
package/dist/Autocomplete.d.ts
CHANGED
package/dist/Autocomplete.js
CHANGED
|
@@ -40,7 +40,6 @@ var Autocomplete = function Autocomplete(props) {
|
|
|
40
40
|
autoResize: autoResize,
|
|
41
41
|
autosizeProps: autosizeProps
|
|
42
42
|
} : {}, props, {
|
|
43
|
-
// eslint-disable-next-line @typescript-eslint/ban-ts-ignore
|
|
44
43
|
// @ts-ignore
|
|
45
44
|
ref: inputRef,
|
|
46
45
|
dropdownClassName: "ds-autocomplete-dropdown ps__child--consume",
|
|
@@ -2,7 +2,7 @@ export declare const LabelWrapper: import("styled-components").StyledComponent<"
|
|
|
2
2
|
export declare const ErrorWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
3
|
export declare const DescWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
4
|
export declare const LoaderWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
|
-
export
|
|
5
|
+
export type AutoResizeProps = {
|
|
6
6
|
autoResize?: boolean | {
|
|
7
7
|
minWidth: string;
|
|
8
8
|
maxWidth: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ReactNode, MutableRefObject } from 'react';
|
|
2
2
|
import { AutoCompleteProps as OriginalProps } from 'antd/lib/auto-complete';
|
|
3
3
|
import Select from 'antd/lib/select';
|
|
4
|
-
export
|
|
4
|
+
export type OverrideProps = {
|
|
5
5
|
className?: string;
|
|
6
6
|
errorText?: ReactNode | string;
|
|
7
7
|
label?: ReactNode | string;
|
|
@@ -13,4 +13,4 @@ export declare type OverrideProps = {
|
|
|
13
13
|
maxWidth: string;
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
|
-
export
|
|
16
|
+
export type AutocompleteProps = OverrideProps & OriginalProps;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-autocomplete",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "Autocomplete UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
],
|
|
33
33
|
"types": "dist/index.d.ts",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@synerise/ds-input": "^0.19.
|
|
36
|
-
"@synerise/ds-typography": "^0.
|
|
35
|
+
"@synerise/ds-input": "^0.19.3",
|
|
36
|
+
"@synerise/ds-typography": "^0.13.1"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@synerise/ds-core": "*",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
"styled-components": "5.0.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@synerise/ds-utils": "^0.24.
|
|
45
|
+
"@synerise/ds-utils": "^0.24.17",
|
|
46
46
|
"@testing-library/jest-dom": "5.1.1",
|
|
47
47
|
"@testing-library/react": "10.0.1"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "1c1adf344f447e404a1d6320ad1d3f8486f29f67"
|
|
50
50
|
}
|