@nimbus-ds/select 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.
- package/CHANGELOG.md +10 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
Use a select box when a user needs to select one option from a list.
|
|
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/select",
|
|
3
|
-
"version": "2.1.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"version": "yarn version"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
+
"@nimbus-ds/icons": "^1.0.0",
|
|
17
18
|
"@nimbus-ds/skeleton": "^2.0.0"
|
|
18
19
|
},
|
|
19
20
|
"peerDependencies": {
|
|
@@ -30,6 +31,5 @@
|
|
|
30
31
|
},
|
|
31
32
|
"devDependencies": {
|
|
32
33
|
"webpack": "^5.74.0"
|
|
33
|
-
}
|
|
34
|
-
"stableVersion": "2.0.0"
|
|
34
|
+
}
|
|
35
35
|
}
|