@synerise/ds-search-bar 2.0.5 → 2.0.6
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/CLAUDE.md +1 -1
- package/package.json +7 -7
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
|
+
## [2.0.6](https://github.com/Synerise/synerise-design/compare/@synerise/ds-search-bar@2.0.5...@synerise/ds-search-bar@2.0.6) (2026-09-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **core:** move test helpers to a ./testing subpath export ([b38cd82](https://github.com/Synerise/synerise-design/commit/b38cd82c956111d2331d5c1e0efd1935366f1139))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [2.0.5](https://github.com/Synerise/synerise-design/compare/@synerise/ds-search-bar@2.0.4...@synerise/ds-search-bar@2.0.5) (2026-09-18)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @synerise/ds-search-bar
|
package/CLAUDE.md
CHANGED
|
@@ -105,7 +105,7 @@ const [query, setQuery] = React.useState('');
|
|
|
105
105
|
- `@synerise/ds-tooltip` — wraps the clear icon
|
|
106
106
|
- `@synerise/ds-typography` — `Title` (level 6) used to render `valuePrefix`
|
|
107
107
|
- `@synerise/ds-utils` — `useResizeObserver` (measures `valuePrefix` width), `WithHTMLAttributes` type
|
|
108
|
-
- `@synerise/ds-core` — `useTheme` for palette access; `renderWithProvider` in tests
|
|
108
|
+
- `@synerise/ds-core` — `useTheme` for palette access; `renderWithProvider` in tests, from its `/testing` subpath
|
|
109
109
|
- `classnames` — merges `className` with `is-focused` state class
|
|
110
110
|
- `react-intl` — default `clearTooltip` message (`DS.SEARCH-BAR.CLEAR-TOOLTIP`)
|
|
111
111
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-search-bar",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "SearchBar UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -42,11 +42,11 @@
|
|
|
42
42
|
],
|
|
43
43
|
"types": "dist/index.d.ts",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@synerise/ds-icon": "^2.1.
|
|
46
|
-
"@synerise/ds-input": "^2.0.
|
|
47
|
-
"@synerise/ds-tooltip": "^2.0.
|
|
48
|
-
"@synerise/ds-typography": "^2.0.
|
|
49
|
-
"@synerise/ds-utils": "^2.
|
|
45
|
+
"@synerise/ds-icon": "^2.1.3",
|
|
46
|
+
"@synerise/ds-input": "^2.0.6",
|
|
47
|
+
"@synerise/ds-tooltip": "^2.0.5",
|
|
48
|
+
"@synerise/ds-typography": "^2.0.5",
|
|
49
|
+
"@synerise/ds-utils": "^2.2.0",
|
|
50
50
|
"classnames": "^2.5.1"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"styled-components": "^5.3.3",
|
|
57
57
|
"vitest": "4"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "5e795fa4fd23f6b07277edb517a84bb9b5b6d256"
|
|
60
60
|
}
|