@semcore/tag 4.0.2 → 4.0.3
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 +6 -0
- package/lib/cjs/index.d.ts +2 -1
- package/lib/es6/index.d.ts +2 -1
- package/lib/types/index.d.ts +2 -1
- package/package.json +1 -1
- package/src/index.d.ts +2 -1
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
|
+
## [4.0.3] - 2022-05-23
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Version patch update due to children dependencies update (`@semcore/icon` [2.25.1 ~> 2.26.0]).
|
|
10
|
+
|
|
5
11
|
## [4.0.2] - 2022-05-19
|
|
6
12
|
|
|
7
13
|
### Changed
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -20,7 +20,8 @@ export interface ITagProps extends IBoxProps {
|
|
|
20
20
|
interactive?: boolean;
|
|
21
21
|
/** Tag type
|
|
22
22
|
* @default secondary
|
|
23
|
-
* @deprecated
|
|
23
|
+
* @deprecated v4.0.0
|
|
24
|
+
* @use ITagProps.theme
|
|
24
25
|
*/
|
|
25
26
|
use?: TagUse;
|
|
26
27
|
/** Tag theme, there are several default themes or you can use your color
|
package/lib/es6/index.d.ts
CHANGED
|
@@ -20,7 +20,8 @@ export interface ITagProps extends IBoxProps {
|
|
|
20
20
|
interactive?: boolean;
|
|
21
21
|
/** Tag type
|
|
22
22
|
* @default secondary
|
|
23
|
-
* @deprecated
|
|
23
|
+
* @deprecated v4.0.0
|
|
24
|
+
* @use ITagProps.theme
|
|
24
25
|
*/
|
|
25
26
|
use?: TagUse;
|
|
26
27
|
/** Tag theme, there are several default themes or you can use your color
|
package/lib/types/index.d.ts
CHANGED
|
@@ -20,7 +20,8 @@ export interface ITagProps extends IBoxProps {
|
|
|
20
20
|
interactive?: boolean;
|
|
21
21
|
/** Tag type
|
|
22
22
|
* @default secondary
|
|
23
|
-
* @deprecated
|
|
23
|
+
* @deprecated v4.0.0
|
|
24
|
+
* @use ITagProps.theme
|
|
24
25
|
*/
|
|
25
26
|
use?: TagUse;
|
|
26
27
|
/** Tag theme, there are several default themes or you can use your color
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -20,7 +20,8 @@ export interface ITagProps extends IBoxProps {
|
|
|
20
20
|
interactive?: boolean;
|
|
21
21
|
/** Tag type
|
|
22
22
|
* @default secondary
|
|
23
|
-
* @deprecated
|
|
23
|
+
* @deprecated v4.0.0
|
|
24
|
+
* @use ITagProps.theme
|
|
24
25
|
*/
|
|
25
26
|
use?: TagUse;
|
|
26
27
|
/** Tag theme, there are several default themes or you can use your color
|