@synerise/ds-tags 1.5.24 → 1.5.26
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 +8 -0
- package/README.md +8 -5
- package/package.json +12 -12
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
|
+
## [1.5.26](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@1.5.25...@synerise/ds-tags@1.5.26) (2026-03-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-tags
|
|
9
|
+
|
|
10
|
+
## [1.5.25](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@1.5.24...@synerise/ds-tags@1.5.25) (2026-03-09)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @synerise/ds-tags
|
|
13
|
+
|
|
6
14
|
## [1.5.24](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@1.5.23...@synerise/ds-tags@1.5.24) (2026-02-26)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @synerise/ds-tags
|
package/README.md
CHANGED
|
@@ -24,10 +24,14 @@ Tags UI Component
|
|
|
24
24
|
| style | Tag Group container styles | React.CSSProperties | - |
|
|
25
25
|
| selected | Selected tags | (Tag & {informationCardProps?: InformationCardProps})[] | [] |
|
|
26
26
|
| tagShape | Shape of tags | TagShape | - |
|
|
27
|
-
| texts | necessary texts to render tags group |
|
|
27
|
+
| texts | necessary texts to render tags group | Partial\<TagTexts\> | - |
|
|
28
28
|
| dropdownFooter | Allows adding custom content to the footer of the dropdown | ReactNode | - |
|
|
29
29
|
| maxVisibleTags | Defines the max number of selected tags that are visible by default. Additional selected tags will appear in a dropdown | number | - |
|
|
30
|
-
| addButtonType | Defines the type of button used to add more tags. 'icon-label'
|
|
30
|
+
| addButtonType | Defines the type of button used to add more tags. Defaults to `'icon-label'` when `texts.addButtonLabel` is set, otherwise `'single-icon'` | `'single-icon' \| 'icon-label'` | - |
|
|
31
|
+
| overlayPlacement | Placement of the add-tags dropdown | `'topLeft' \| 'topCenter' \| 'topRight' \| 'bottomLeft' \| 'bottomCenter' \| 'bottomRight'` | - |
|
|
32
|
+
| overlayStyle | Inline style override for the add-tags dropdown overlay | React.CSSProperties | - |
|
|
33
|
+
| maxHeight | Max height (px) of the add-tags dropdown scrollable area | number | - |
|
|
34
|
+
| asPill | Render all tags as pills | boolean | - |
|
|
31
35
|
|
|
32
36
|
## ActionTaken
|
|
33
37
|
|
|
@@ -36,7 +40,7 @@ Tags UI Component
|
|
|
36
40
|
| tag | Affected tag | Tag |
|
|
37
41
|
| type | Type of action taken that caused onSelectedChange to be called | 'ADD' / 'REMOVE' |
|
|
38
42
|
|
|
39
|
-
##
|
|
43
|
+
## TagTexts
|
|
40
44
|
|
|
41
45
|
| Property | Description | Type | Default |
|
|
42
46
|
| -------------------- | ------------------------------------------------------------- | ------------------ | ------------ |
|
|
@@ -46,6 +50,5 @@ Tags UI Component
|
|
|
46
50
|
| searchPlaceholder | Search input placeholder for add tag dropdown | string | |
|
|
47
51
|
| manageLinkLabel | Label for manage link for add tag dropdown | string / ReactNode | |
|
|
48
52
|
| createTagButtonLabel | Label for create tag button for add tag dropdown | string / ReactNode | |
|
|
49
|
-
| noResultsLabel | Label displayed when filtering tags returns an empty array | string / ReactNode | `No
|
|
53
|
+
| noResultsLabel | Label displayed when filtering tags returns an empty array | string / ReactNode | `No tags found` |
|
|
50
54
|
| dropdownNoTags | Text for a label displayed when no tags are found to be added | string / ReactNode | |
|
|
51
|
-
| title | Text for a tags group | ReactNode | |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-tags",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.26",
|
|
4
4
|
"description": "Tags UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -35,16 +35,16 @@
|
|
|
35
35
|
],
|
|
36
36
|
"types": "dist/index.d.ts",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@synerise/ds-button": "^1.5.
|
|
39
|
-
"@synerise/ds-dropdown": "^1.
|
|
40
|
-
"@synerise/ds-icon": "^1.
|
|
41
|
-
"@synerise/ds-information-card": "^1.6.
|
|
42
|
-
"@synerise/ds-result": "^1.0.
|
|
43
|
-
"@synerise/ds-scrollbar": "^1.2.
|
|
44
|
-
"@synerise/ds-search-bar": "^1.4.
|
|
45
|
-
"@synerise/ds-tag": "^1.4.
|
|
46
|
-
"@synerise/ds-tooltip": "^1.4.
|
|
47
|
-
"@synerise/ds-utils": "^1.
|
|
38
|
+
"@synerise/ds-button": "^1.5.17",
|
|
39
|
+
"@synerise/ds-dropdown": "^1.3.1",
|
|
40
|
+
"@synerise/ds-icon": "^1.15.0",
|
|
41
|
+
"@synerise/ds-information-card": "^1.6.4",
|
|
42
|
+
"@synerise/ds-result": "^1.0.48",
|
|
43
|
+
"@synerise/ds-scrollbar": "^1.2.16",
|
|
44
|
+
"@synerise/ds-search-bar": "^1.4.19",
|
|
45
|
+
"@synerise/ds-tag": "^1.4.17",
|
|
46
|
+
"@synerise/ds-tooltip": "^1.4.9",
|
|
47
|
+
"@synerise/ds-utils": "^1.7.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@testing-library/user-event": "^14"
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"react": ">=16.9.0 <= 18.3.1",
|
|
55
55
|
"styled-components": "^5.3.3"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
|
|
58
58
|
}
|