@nimbus-ds/tag 2.4.0-rc.6 → 2.4.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 +12 -0
- package/dist/CHANGELOG.md +12 -0
- package/dist/index.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
The Tag component is used to categorize information, organize or indicate the status of elements or components using keywords, icons or colors.
|
|
4
4
|
|
|
5
|
+
## 2025-09-22 `2.4.0`
|
|
6
|
+
|
|
7
|
+
### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Added `ai-generative` appearance to `Tag` component. ([#355](https://github.com/TiendaNube/nimbus-design-system/pull/355) by [@joacotornello](https://github.com/joacotornello))
|
|
10
|
+
|
|
11
|
+
## 2025-03-18 `2.3.1`
|
|
12
|
+
|
|
13
|
+
### 💡 Others
|
|
14
|
+
|
|
15
|
+
- Rebuild after build process changes to add support for modular imports and Server Components. ([#276](https://github.com/TiendaNube/nimbus-design-system/pull/276) by [@joacotornello](https://github.com/joacotornello))
|
|
16
|
+
|
|
5
17
|
## 2023-03-13 `2.3.0`
|
|
6
18
|
|
|
7
19
|
### 💡 Others
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
The Tag component is used to categorize information, organize or indicate the status of elements or components using keywords, icons or colors.
|
|
4
4
|
|
|
5
|
+
## 2025-09-22 `2.4.0`
|
|
6
|
+
|
|
7
|
+
### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Added `ai-generative` appearance to `Tag` component. ([#355](https://github.com/TiendaNube/nimbus-design-system/pull/355) by [@joacotornello](https://github.com/joacotornello))
|
|
10
|
+
|
|
11
|
+
## 2025-03-18 `2.3.1`
|
|
12
|
+
|
|
13
|
+
### 💡 Others
|
|
14
|
+
|
|
15
|
+
- Rebuild after build process changes to add support for modular imports and Server Components. ([#276](https://github.com/TiendaNube/nimbus-design-system/pull/276) by [@joacotornello](https://github.com/joacotornello))
|
|
16
|
+
|
|
5
17
|
## 2023-03-13 `2.3.0`
|
|
6
18
|
|
|
7
19
|
### 💡 Others
|
package/dist/index.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export interface TagProperties {
|
|
|
43
43
|
* Change the visual style of the tag.
|
|
44
44
|
* @default neutral
|
|
45
45
|
*/
|
|
46
|
-
appearance?: "primary" | "success" | "warning" | "danger" | "neutral";
|
|
46
|
+
appearance?: "primary" | "success" | "warning" | "danger" | "neutral" | "ai-generative";
|
|
47
47
|
}
|
|
48
48
|
export type TagProps = TagProperties & HTMLAttributes<HTMLDivElement>;
|
|
49
49
|
export declare const Tag: React.FC<TagProps> & TagComponents;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-ds/tag",
|
|
3
|
-
"version": "2.4.0
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"version": "yarn version"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@nimbus-ds/skeleton": "^3.
|
|
17
|
+
"@nimbus-ds/skeleton": "^3.0.1"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"react": "^16.8 || ^17.0 || ^18.0",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"url": "https://github.com/TiendaNube/nimbus-design-system/issues"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@nimbus-ds/
|
|
33
|
-
"@nimbus-ds/
|
|
34
|
-
"@nimbus-ds/
|
|
35
|
-
|
|
36
|
-
|
|
32
|
+
"@nimbus-ds/icon": "^3.2.2",
|
|
33
|
+
"@nimbus-ds/icons": "^1.13.1",
|
|
34
|
+
"@nimbus-ds/text": "^6.4.0",
|
|
35
|
+
"@nimbus-ds/webpack": "^1.7.0"
|
|
36
|
+
}
|
|
37
37
|
}
|