@synerise/ds-tags 1.4.8 → 1.4.9

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,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
+ ## [1.4.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@1.4.8...@synerise/ds-tags@1.4.9) (2025-10-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **tags:** delay search focus ([7cefbd1](https://github.com/Synerise/synerise-design/commit/7cefbd16ee75a46df6d6de2fe62ad62ddba6e464))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.4.8](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@1.4.7...@synerise/ds-tags@1.4.8) (2025-10-22)
7
18
 
8
19
 
@@ -58,10 +58,11 @@ export var AddTags = function AddTags(_ref) {
58
58
  var noTagsContentLabel = !!(notSelectedList != null && notSelectedList.length) && !!searchQuery ? texts == null ? void 0 : texts.noResultsLabel : texts == null ? void 0 : texts.dropdownNoTags;
59
59
  useEffect(function () {
60
60
  if (isTagAddDropdownOpen) {
61
+ // revert delay to 0 after STOR-1881
61
62
  setTimeout(function () {
62
63
  var _searchRef$current;
63
64
  return (_searchRef$current = searchRef.current) == null ? void 0 : _searchRef$current.focus();
64
- }, 0);
65
+ }, 500);
65
66
  }
66
67
  }, [isTagAddDropdownOpen]);
67
68
  return /*#__PURE__*/React.createElement(TagsDropdown, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-tags",
3
- "version": "1.4.8",
3
+ "version": "1.4.9",
4
4
  "description": "Tags UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -50,5 +50,5 @@
50
50
  "react": ">=16.9.0 <= 18.3.1",
51
51
  "styled-components": "^5.3.3"
52
52
  },
53
- "gitHead": "a40fca2cc78eda64afa96d18dc4d177538a22404"
53
+ "gitHead": "008db2f1307c61bb1c9acffab50956eaba409b3a"
54
54
  }