@synerise/ds-tags 0.7.24 → 0.8.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 +19 -0
- package/dist/Tag/Tag.js +1 -1
- package/dist/Tag/Tag.styles.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.8.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@0.7.25...@synerise/ds-tags@0.8.0) (2023-07-04)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **filter:** adds letter tags to step cards and filter header ([ad9a366](https://github.com/Synerise/synerise-design/commit/ad9a366ae6bb8127eaeafa5e7bd89f7e35c1bcde))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.7.25](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@0.7.24...@synerise/ds-tags@0.7.25) (2023-06-28)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @synerise/ds-tags
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.7.24](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@0.7.23...@synerise/ds-tags@0.7.24) (2023-06-14)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-tags
|
package/dist/Tag/Tag.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import Icon, { CloseS } from '@synerise/ds-icon';
|
|
3
|
-
import theme from '@synerise/ds-core
|
|
3
|
+
import { theme } from '@synerise/ds-core';
|
|
4
4
|
import Tooltip from '@synerise/ds-tooltip/dist/Tooltip';
|
|
5
5
|
import { TagShape } from './Tag.types';
|
|
6
6
|
import * as S from './Tag.styles';
|
package/dist/Tag/Tag.styles.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ThemeProps, ThemePropsVars } from '@synerise/ds-core
|
|
1
|
+
import { ThemeProps, ThemePropsVars } from '@synerise/ds-core';
|
|
2
2
|
import { TagShape } from './Tag.types';
|
|
3
3
|
export declare const getColorText: (theme: ThemePropsVars, color?: string | undefined) => string;
|
|
4
4
|
export declare const TagName: import("styled-components").StyledComponent<"span", any, {}, never>;
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -2,4 +2,4 @@ export { default } from './Tags';
|
|
|
2
2
|
export { default as Tag } from './Tag/Tag';
|
|
3
3
|
import * as _TagsStyles from './Tags.styles';
|
|
4
4
|
export { _TagsStyles as TagsStyles };
|
|
5
|
-
export { TagShape } from './Tag/Tag.types';
|
|
5
|
+
export { TagShape, Props as TagProps } from './Tag/Tag.types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-tags",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Tags UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
],
|
|
33
33
|
"types": "dist/index.d.ts",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@synerise/ds-button": "^0.17.
|
|
36
|
-
"@synerise/ds-dropdown": "^0.17.
|
|
37
|
-
"@synerise/ds-icon": "^0.
|
|
38
|
-
"@synerise/ds-search-bar": "^0.6.
|
|
35
|
+
"@synerise/ds-button": "^0.17.19",
|
|
36
|
+
"@synerise/ds-dropdown": "^0.17.68",
|
|
37
|
+
"@synerise/ds-icon": "^0.57.0",
|
|
38
|
+
"@synerise/ds-search-bar": "^0.6.34"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@synerise/ds-core": "*",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@synerise/ds-utils": "^0.19.0"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "e8a06c902ef96e767576df5377b8965e1034d6c0"
|
|
48
48
|
}
|