@synerise/ds-autocomplete 1.2.32 → 1.2.34

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,14 @@
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.2.34](https://github.com/Synerise/synerise-design/compare/@synerise/ds-autocomplete@1.2.33...@synerise/ds-autocomplete@1.2.34) (2026-03-20)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-autocomplete
9
+
10
+ ## [1.2.33](https://github.com/Synerise/synerise-design/compare/@synerise/ds-autocomplete@1.2.32...@synerise/ds-autocomplete@1.2.33) (2026-03-09)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-autocomplete
13
+
6
14
  ## [1.2.32](https://github.com/Synerise/synerise-design/compare/@synerise/ds-autocomplete@1.2.31...@synerise/ds-autocomplete@1.2.32) (2026-02-23)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-autocomplete
package/README.md CHANGED
@@ -32,7 +32,6 @@ import Autocomplete from '@synerise/ds-autocomplete'
32
32
  | -------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- |
33
33
  | allowClear | Show clear button, effective in multiple mode only. | boolean | `false` |
34
34
  | autoFocus | get focus when component mounted | boolean | `false` |
35
- | backfill | backfill selected item the input when using keyboard | boolean | `false` |
36
35
  | children (for customize input element) | customize input element | `HTMLInputElement HTMLTextAreaElement React.ReactElement<InputProps>` | <Input /> |
37
36
  | children (for dataSource) | Data source to auto complete | `React.ReactElement<OptionProps> Array<React.ReactElement<OptionProps>>` | - |
38
37
  | dataSource | Data source for autocomplete | DataSourceItemType[] | - |
@@ -40,7 +39,7 @@ import Autocomplete from '@synerise/ds-autocomplete'
40
39
  | defaultActiveFirstOption | Whether active first option by default | boolean | `true` |
41
40
  | defaultValue | Initial selected option. | string or string[] | - |
42
41
  | disabled | Whether disabled select | boolean | - |
43
- | readonly | Whether disabled select with readonly styles applied | boolean | - |
42
+ | readOnly | Whether disabled select with readonly styles applied | boolean | - |
44
43
  | filterOption | If true, filter options by input, if function, filter options against it. The function will receive two arguments, inputValue and option, if the function returns true, the option will be included in the filtered set; Otherwise, it will be excluded. | boolean or function(inputValue, option) | `true` |
45
44
  | icon1 | Renders an icon at the right end of the input | ReactNode | `-` |
46
45
  | icon2 | Renders an icon at the right end of the input | ReactNode | `-` |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-autocomplete",
3
- "version": "1.2.32",
3
+ "version": "1.2.34",
4
4
  "description": "Autocomplete UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -23,8 +23,8 @@
23
23
  "defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
24
24
  "pack:ci": "pnpm pack --pack-destination ../../storybook/storybook-static/static",
25
25
  "prepublish": "pnpm run build",
26
- "test": "vitest",
27
- "test:watch": "pnpm run test -- --watch",
26
+ "test": "vitest run",
27
+ "test:watch": "vitest",
28
28
  "types": "tsc --noEmit",
29
29
  "check:circular-dependencies": "madge --circular --extensions ts,tsx,js,jsx --ts-config tsconfig.json src/ --exclude '/dist/'",
30
30
  "upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
@@ -35,10 +35,10 @@
35
35
  ],
36
36
  "types": "dist/index.d.ts",
37
37
  "dependencies": {
38
- "@synerise/ds-form-field": "^1.3.7",
39
- "@synerise/ds-input": "^1.6.7",
40
- "@synerise/ds-tooltip": "^1.4.7",
41
- "@synerise/ds-utils": "^1.6.0"
38
+ "@synerise/ds-form-field": "^1.3.9",
39
+ "@synerise/ds-input": "^1.6.9",
40
+ "@synerise/ds-tooltip": "^1.4.9",
41
+ "@synerise/ds-utils": "^1.7.0"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "@synerise/ds-core": "*",
@@ -47,5 +47,5 @@
47
47
  "styled-components": "^5.3.3",
48
48
  "vitest": "4"
49
49
  },
50
- "gitHead": "2997f77d657c1aed2fc39901d3e0b8f88b05cc53"
50
+ "gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
51
51
  }