@semcore/tag 3.5.3 → 3.5.4

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
@@ -2,6 +2,12 @@
2
2
 
3
3
  CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/).
4
4
 
5
+ ## [3.5.4] - 2021-12-28
6
+
7
+ ### Fixed
8
+
9
+ - [ts] Added type `custom` in property `use`.
10
+
5
11
  ## [3.5.3] - 2021-12-23
6
12
 
7
13
  ### Changed
@@ -26,6 +32,10 @@ CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangel
26
32
 
27
33
  - Added property for Tag color
28
34
 
35
+ ### Changed
36
+
37
+ - Changed the opacity of the Tag color from 0.15 to 0.5.
38
+
29
39
  ## [3.4.2] - 2021-8-26
30
40
 
31
41
  ### Changed
@@ -5,7 +5,7 @@ import { IIconProps } from '@semcore/icon';
5
5
 
6
6
  export type TagSize = 'xl' | 'l' | 'm' | 's';
7
7
  export type TagTheme = 'muted' | 'invert' | 'warning' | string;
8
- export type TagUse = 'primary' | 'secondary';
8
+ export type TagUse = 'primary' | 'secondary' | 'custom';
9
9
 
10
10
  export interface ITagProps extends IBoxProps {
11
11
  /** Value responsible for tag availability
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@semcore/tag",
3
3
  "description": "SEMRush Tag Component",
4
- "version": "3.5.3",
4
+ "version": "3.5.4",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/es6/index.js",
7
7
  "typings": "lib/types/index.d.ts",
package/src/index.d.ts CHANGED
@@ -5,7 +5,7 @@ import { IIconProps } from '@semcore/icon';
5
5
 
6
6
  export type TagSize = 'xl' | 'l' | 'm' | 's';
7
7
  export type TagTheme = 'muted' | 'invert' | 'warning' | string;
8
- export type TagUse = 'primary' | 'secondary';
8
+ export type TagUse = 'primary' | 'secondary' | 'custom';
9
9
 
10
10
  export interface ITagProps extends IBoxProps {
11
11
  /** Value responsible for tag availability