@nimbus-ds/alert 2.0.0-rc.2 → 2.0.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 +6 -0
- package/package.json +6 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
The alert component is used to showcase relevant or time-sensitive information to the user in a visually prominent banner.
|
|
4
4
|
|
|
5
|
+
## 2022-12-22 `2.0.0`
|
|
6
|
+
|
|
7
|
+
### 💡 Others
|
|
8
|
+
|
|
9
|
+
- Removed direct dependency on `nimbus-ds/styles` package from component build. ([#69](https://github.com/TiendaNube/nimbus-design-system/pull/69) by [@juniorconquista](https://github.com/juniorconquista))
|
|
10
|
+
|
|
5
11
|
## 2022-12-07 `1.1.0`
|
|
6
12
|
|
|
7
13
|
### 🎉 New features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-ds/alert",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"version": "yarn version"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@nimbus-ds/icon": "^2.0.0
|
|
18
|
-
"@nimbus-ds/skeleton": "^2.0.0
|
|
19
|
-
"@nimbus-ds/title": "^2.0.0
|
|
17
|
+
"@nimbus-ds/icon": "^2.0.0",
|
|
18
|
+
"@nimbus-ds/skeleton": "^2.0.0",
|
|
19
|
+
"@nimbus-ds/title": "^2.0.0"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"react": "^16.8 || ^17.0 || ^18.0",
|
|
@@ -31,8 +31,7 @@
|
|
|
31
31
|
"url": "https://github.com/TiendaNube/nimbus-design-system/issues"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@nimbus-ds/button": "^2.0.0
|
|
34
|
+
"@nimbus-ds/button": "^2.0.0",
|
|
35
35
|
"webpack": "^5.74.0"
|
|
36
|
-
}
|
|
37
|
-
"stableVersion": "1.1.0"
|
|
36
|
+
}
|
|
38
37
|
}
|