@nimbus-ds/select 2.3.1 → 2.3.2-rc.1

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 +6 -0
  2. package/package.json +4 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  Use a select box when a user needs to select one option from a list.
4
4
 
5
+ ## 2023-04-03 `2.3.2`
6
+
7
+ ### 🐛 Bug fixes
8
+
9
+ - Add missing dependency for `@nimbus-ds/icon` external package. ([#135](https://github.com/TiendaNube/nimbus-design-system/pull/135) by [@juanchigallego](https://github.com/juanchigallego))
10
+
5
11
  ## 2023-03-27 `2.3.1`
6
12
 
7
13
  ### 🐛 Bug fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimbus-ds/select",
3
- "version": "2.3.1",
3
+ "version": "2.3.2-rc.1",
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/icon": "^3.0.0",
17
18
  "@nimbus-ds/icons": "^1.1.0",
18
19
  "@nimbus-ds/skeleton": "^3.0.0"
19
20
  },
@@ -31,5 +32,6 @@
31
32
  },
32
33
  "devDependencies": {
33
34
  "@nimbus-ds/webpack": "^1.1.0"
34
- }
35
+ },
36
+ "stableVersion": "2.3.1"
35
37
  }