@synerise/ds-autocomplete 0.5.2 → 0.5.4

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.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-autocomplete@0.5.3...@synerise/ds-autocomplete@0.5.4) (2023-10-11)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-autocomplete
9
+
10
+
11
+
12
+
13
+
14
+ ## [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)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-autocomplete
17
+
18
+
19
+
20
+
21
+
6
22
  ## [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)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-autocomplete
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import '@synerise/ds-core/dist/js/style';
3
2
  import './style/index.less';
4
3
  import { AutocompleteProps } from './Autocomplete.types';
@@ -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 declare type AutoResizeProps = {
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 declare type OverrideProps = {
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 declare type AutocompleteProps = OverrideProps & OriginalProps;
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.2",
3
+ "version": "0.5.4",
4
4
  "description": "Autocomplete UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -21,6 +21,7 @@
21
21
  "build:js": "babel --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
22
22
  "build:watch": "npm run build:js -- --watch",
23
23
  "defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
24
+ "pack:ci": "npm pack --pack-destination ../../portal/storybook-static/static",
24
25
  "prepublish": "npm run build",
25
26
  "test": "jest",
26
27
  "test:watch": "npm run test -- --watchAll",
@@ -32,8 +33,8 @@
32
33
  ],
33
34
  "types": "dist/index.d.ts",
34
35
  "dependencies": {
35
- "@synerise/ds-input": "^0.19.2",
36
- "@synerise/ds-typography": "^0.13.0"
36
+ "@synerise/ds-input": "^0.19.4",
37
+ "@synerise/ds-typography": "^0.13.2"
37
38
  },
38
39
  "peerDependencies": {
39
40
  "@synerise/ds-core": "*",
@@ -42,9 +43,9 @@
42
43
  "styled-components": "5.0.1"
43
44
  },
44
45
  "devDependencies": {
45
- "@synerise/ds-utils": "^0.24.16",
46
+ "@synerise/ds-utils": "^0.24.18",
46
47
  "@testing-library/jest-dom": "5.1.1",
47
48
  "@testing-library/react": "10.0.1"
48
49
  },
49
- "gitHead": "f1f520c4c5ef9f90bacb5d5e0b2e778ceb8fdf79"
50
+ "gitHead": "8eb4a3e304406a8dbb9258803c48952461fc5a55"
50
51
  }