@nimbus-ds/accordion 1.1.0-rc.1 → 1.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.
- package/CHANGELOG.md +10 -0
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
The Accordion component allows us to compress content into containers that can be opened or closed.
|
|
4
4
|
|
|
5
|
+
## 2023-02-16 `1.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
|
## 2023-02-07 `1.0.0`
|
|
6
16
|
|
|
7
17
|
### 📚 3rd party library updates
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-ds/accordion",
|
|
3
|
-
"version": "1.1.0
|
|
3
|
+
"version": "1.1.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/icon": "^2.1.0
|
|
17
|
+
"@nimbus-ds/icon": "^2.1.0",
|
|
18
18
|
"@nimbus-ds/icons": "^1.0.0",
|
|
19
19
|
"@nimbus-ds/text": "^5.0.0",
|
|
20
20
|
"@nimbus-ds/title": "^2.0.0"
|
|
@@ -36,6 +36,5 @@
|
|
|
36
36
|
"@nimbus-ds/card": "^2.0.0",
|
|
37
37
|
"@nimbus-ds/radio": "^2.0.1",
|
|
38
38
|
"webpack": "^5.74.0"
|
|
39
|
-
}
|
|
40
|
-
"stableVersion": "1.0.0"
|
|
39
|
+
}
|
|
41
40
|
}
|