@nimbus-ds/alert 2.1.0-rc.1 → 2.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
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
+ ## 2023-02-16 `2.1.0`
6
+
7
+ ### 🎉 New features
8
+
9
+ - Removed external dependency from `@tiendanube/icons` package to now use internal `@nimbus-ds/icons` package. ([#94](https://github.com/TiendaNube/nimbus-design-system/pull/#94) by [@juniorconquista](https://github.com/juniorconquista))
10
+
11
+ ### 📚 3rd party library updates
12
+
13
+ - Removed `@tiendanube/icons@0.3.1`. ([#94](https://github.com/TiendaNube/nimbus-design-system/pull/#94) by [@juniorconquista](https://github.com/juniorconquista))
14
+
5
15
  ## 2022-12-22 `2.0.0`
6
16
 
7
17
  ### 💡 Others
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimbus-ds/alert",
3
- "version": "2.1.0-rc.1",
3
+ "version": "2.1.0",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -14,7 +14,8 @@
14
14
  "version": "yarn version"
15
15
  },
16
16
  "dependencies": {
17
- "@nimbus-ds/icon": "^2.1.0-rc.1",
17
+ "@nimbus-ds/icon": "^2.1.0",
18
+ "@nimbus-ds/icons": "^1.0.0",
18
19
  "@nimbus-ds/skeleton": "^2.0.0",
19
20
  "@nimbus-ds/title": "^2.0.0"
20
21
  },
@@ -32,8 +33,7 @@
32
33
  },
33
34
  "devDependencies": {
34
35
  "@nimbus-ds/box": "^2.5.0",
35
- "@nimbus-ds/button": "^2.3.0-rc.1",
36
+ "@nimbus-ds/button": "^2.3.0",
36
37
  "webpack": "^5.74.0"
37
- },
38
- "stableVersion": "2.0.0"
38
+ }
39
39
  }