@snack-uikit/tag 0.14.2-preview-a29fd7b9.0 → 0.15.0

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
+ # 0.15.0 (2025-05-29)
7
+
8
+
9
+ ### Features
10
+
11
+ * **HYCL-000:** possibility to pass id in tag row to avoid collisions ([815cbe1](https://github.com/cloud-ru-tech/snack-uikit/commit/815cbe11a8d91fe69b44b55cd6c37403c2577a26))
12
+
13
+
14
+
15
+
16
+
6
17
  ## 0.14.1 (2025-05-16)
7
18
 
8
19
  ### Only dependencies have been changed
@@ -14,6 +14,7 @@ export type TagTooltipProps = {
14
14
  tooltip?: TooltipProps;
15
15
  };
16
16
  export type TagRowItem = {
17
+ /** Уникальный идентификатор, используется в качестве key. По умолчанию key: label. */
17
18
  id?: string;
18
19
  label: string;
19
20
  appearance?: Appearance;
@@ -14,6 +14,7 @@ export type TagTooltipProps = {
14
14
  tooltip?: TooltipProps;
15
15
  };
16
16
  export type TagRowItem = {
17
+ /** Уникальный идентификатор, используется в качестве key. По умолчанию key: label. */
17
18
  id?: string;
18
19
  label: string;
19
20
  appearance?: Appearance;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "title": "Tag",
7
- "version": "0.14.2-preview-a29fd7b9.0",
7
+ "version": "0.15.0",
8
8
  "sideEffects": [
9
9
  "*.css",
10
10
  "*.woff",
@@ -43,5 +43,5 @@
43
43
  "@snack-uikit/utils": "3.8.2",
44
44
  "classnames": "2.5.1"
45
45
  },
46
- "gitHead": "7016ab566a5ea93a3826418392eec532fe490dde"
46
+ "gitHead": "0a9a9ccdd99b7d010a1c93a4911c9684e8af485d"
47
47
  }
package/src/types.ts CHANGED
@@ -21,6 +21,7 @@ export type TagTooltipProps = {
21
21
  };
22
22
 
23
23
  export type TagRowItem = {
24
+ /** Уникальный идентификатор, используется в качестве key. По умолчанию key: label. */
24
25
  id?: string;
25
26
  label: string;
26
27
  appearance?: Appearance;