@synerise/ds-select 2.0.1 → 2.0.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,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
+ ## [2.0.3](https://github.com/synerise/synerise-design/compare/@synerise/ds-select@2.0.2...@synerise/ds-select@2.0.3) (2026-09-07)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-select
9
+
10
+ ## [2.0.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-select@2.0.1...@synerise/ds-select@2.0.2) (2026-09-02)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-select
13
+
6
14
  ## [2.0.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-select@2.0.0...@synerise/ds-select@2.0.1) (2026-09-01)
7
15
 
8
16
  ### Performance Improvements
package/CLAUDE.md CHANGED
@@ -31,8 +31,8 @@ src/
31
31
  ```
32
32
 
33
33
  > No `style/` dir and no `antd` peerDep — the component is styled purely with styled-components. The
34
- > old antd-era LESS (`select.mixin.less`, `.ant-select-*` overrides) was relocated to `ds-table`
35
- > (`table/src/style/`), the only consumer that still renders antd selects.
34
+ > old antd-era LESS (`select.mixin.less`, `.ant-select-*` overrides) was relocated to `ds-table`,
35
+ > its only remaining consumer, and was deleted along with that package when it was retired.
36
36
 
37
37
  ## Public exports
38
38
 
@@ -148,9 +148,9 @@ Class hooks are `ds-select-*` (`.ds-select`, `.ds-select-selection-item`, `.ds-s
148
148
  - `@synerise/ds-tooltip` — wraps the clear control for `clearTooltip`.
149
149
  - `@synerise/ds-utils` — default `getPopupContainer`.
150
150
  - `react-window` — `VariableSizeList`, the windowing engine behind `OptionList` (already a DS-wide
151
- dependency: `dropdown`, `context-selector`, `item-picker`, `table`, …).
151
+ dependency: `dropdown`, `context-selector`, `item-picker`, `table-new`, …).
152
152
  - `@synerise/ds-core` — theme tokens (peerDep). **No `antd` peerDep** — the component imports zero
153
- antd; the LESS that pulled `~antd/lib/select/style` was relocated to `ds-table` (see below).
153
+ antd; the LESS that pulled `~antd/lib/select/style` went with the retired `ds-table` (see below).
154
154
 
155
155
  ## Implementation notes
156
156
 
@@ -205,9 +205,8 @@ Class hooks are `ds-select-*` (`.ds-select`, `.ds-select-selection-item`, `.ds-s
205
205
  by internal state; `onSearch` still fires when `searchValue` is controlled.
206
206
  - **antd-free; no LESS** — styling is entirely styled-components. The old antd-era LESS
207
207
  (`style/index.less` + `select.mixin.less`, `.ant-select-*` overrides for antd selects) was
208
- **relocated to `ds-table`** (`table/src/style/select.mixin.less` + a direct
209
- `@import '~antd/lib/select/style'`), since `ds-table` (out of scope, stays on antd) was the only
210
- remaining consumer. ds-select ships no `dist/style` and no longer declares an `antd` peerDep.
208
+ **relocated to `ds-table`**, then deleted outright when that package was retired and `antd` left
209
+ the repo. ds-select ships no `dist/style` and declares no `antd` peerDep.
211
210
  - **Tests** — Vitest + React Testing Library (`src/__specs__/Select.spec.tsx`): render/parity,
212
211
  keyboard + ARIA, and focus/blur (autofocus, onBlur on leave / not on internal move, onFocus).
213
212
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-select",
3
- "version": "2.0.1",
3
+ "version": "2.0.3",
4
4
  "description": "Select UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -42,13 +42,13 @@
42
42
  ],
43
43
  "types": "dist/index.d.ts",
44
44
  "dependencies": {
45
- "@synerise/ds-dropdown": "^2.0.0",
46
- "@synerise/ds-form-field": "^2.0.0",
47
- "@synerise/ds-icon": "^2.0.0",
48
- "@synerise/ds-list-item": "^2.0.0",
45
+ "@synerise/ds-dropdown": "^2.0.2",
46
+ "@synerise/ds-form-field": "^2.0.1",
47
+ "@synerise/ds-icon": "^2.1.0",
48
+ "@synerise/ds-list-item": "^2.0.1",
49
49
  "@synerise/ds-loader": "^2.0.0",
50
- "@synerise/ds-scrollbar": "^2.0.0",
51
- "@synerise/ds-tooltip": "^2.0.0",
50
+ "@synerise/ds-scrollbar": "^2.0.1",
51
+ "@synerise/ds-tooltip": "^2.0.1",
52
52
  "@synerise/ds-utils": "^2.0.0",
53
53
  "classnames": "^2.5.1",
54
54
  "react-window": "^1.8.11"
@@ -59,5 +59,5 @@
59
59
  "styled-components": "^5.3.3",
60
60
  "vitest": "4"
61
61
  },
62
- "gitHead": "a57eb7eaf98318b364468368d1aa4fd9fa6a6dc8"
62
+ "gitHead": "788eba77544b291f7e938864a3994df4b4d904e2"
63
63
  }