@codeleap/web 3.12.21 → 3.12.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codeleap/web",
3
- "version": "3.12.21",
3
+ "version": "3.12.23",
4
4
  "main": "src/index.ts",
5
5
  "repository": {
6
6
  "url": "https://github.com/codeleap-uk/internal-libs-monorepo.git",
@@ -410,6 +410,8 @@ export const Select = forwardRef<HTMLInputElement, SelectProps>(
410
410
  tabSelectsValue={false}
411
411
  tabIndex={0}
412
412
  backspaceRemovesValue={true}
413
+ escapeRemoves={true}
414
+ deleteRemoves={true}
413
415
  {...otherProps}
414
416
  {..._props}
415
417
  onKeyDown={isFocused ? handleKeyDown : null}