@nimbus-ds/multi-select 1.1.0-rc.4 → 1.1.0-rc.6
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/dist/CHANGELOG.md +18 -0
- package/dist/README.md +19 -0
- package/package.json +5 -5
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
Use a multi-select box when a user needs to select more than one option from a list.
|
|
4
|
+
|
|
5
|
+
## 2023-12-15 `1.0.1`
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug fixes
|
|
8
|
+
|
|
9
|
+
- Fixed bug where value was not being updated.([#203](https://github.com/TiendaNube/nimbus-design-system/pull/212) by [@vrlopess](https://github.com/vrlopess))
|
|
10
|
+
|
|
11
|
+
## 2023-10-30 `1.0.0`
|
|
12
|
+
|
|
13
|
+
#### 🎉 New features
|
|
14
|
+
|
|
15
|
+
- Added `name`, `id`, `appearance`, `options` and `onChange` properties to the component. ([#203](https://github.com/TiendaNube/nimbus-design-system/pull/203) by [@juniorconquista](https://github.com/juniorconquista))
|
|
16
|
+
- Added stories on component. ([#203](https://github.com/TiendaNube/nimbus-design-system/pull/203) by [@juniorconquista](https://github.com/juniorconquista))
|
|
17
|
+
- Added `width` property to the component `Select.Skeleton`. ([#203](https://github.com/TiendaNube/nimbus-design-system/pull/203) by [@juniorconquista](https://github.com/juniorconquista))
|
|
18
|
+
- Added stories on component `Select.Skeleton`. ([#203](https://github.com/TiendaNube/nimbus-design-system/pull/203) by [@juniorconquista](https://github.com/juniorconquista))
|
package/dist/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# `@nimbus-ds/multi-select`
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@nimbus-ds/multi-select)
|
|
4
|
+
|
|
5
|
+
Use a multi-select box when a user needs to select more than one option from a list.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
$ yarn add @nimbus-ds/multi-select
|
|
11
|
+
# or
|
|
12
|
+
$ npm install @nimbus-ds/multi-select
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
View docs [here](https://nimbus.nuvemshop.com.br/documentation/atomic-components/multi-select).
|
|
18
|
+
|
|
19
|
+
<img alt="Nimbus" style="margin-bottom: 30px;" src="https://tiendanube.github.io/design-system-nimbus/static/media/nimbus-logo.ab60bd79.png" height="30" />
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-ds/multi-select",
|
|
3
|
-
"version": "1.1.0-rc.
|
|
3
|
+
"version": "1.1.0-rc.6",
|
|
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": "^3.1.0-rc.
|
|
18
|
-
"@nimbus-ds/icons": "^1.7.0-rc.
|
|
19
|
-
"@nimbus-ds/skeleton": "^3.1.0-rc.
|
|
17
|
+
"@nimbus-ds/icon": "^3.1.0-rc.6",
|
|
18
|
+
"@nimbus-ds/icons": "^1.7.0-rc.3",
|
|
19
|
+
"@nimbus-ds/skeleton": "^3.1.0-rc.6"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"react": "^16.8 || ^17.0 || ^18.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"url": "https://github.com/TiendaNube/nimbus-design-system/issues"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@nimbus-ds/webpack": "^1.
|
|
34
|
+
"@nimbus-ds/webpack": "^1.5.0-rc.2"
|
|
35
35
|
},
|
|
36
36
|
"stableVersion": "1.0.1"
|
|
37
37
|
}
|