@nimbus-ds/button 2.7.0 → 2.8.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 +7 -0
- package/dist/CHANGELOG.md +7 -0
- package/dist/index.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
The Button component allows us to initiate actions, make state or page changes.
|
|
4
4
|
|
|
5
|
+
## 2025-09-17 `2.8.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- New `ai-primary` and `ai-secondary` appearances to `Button` component to match Nimbus AI gradient style. ([#353](https://github.com/TiendaNube/nimbus-design-system/pull/353) by [@joacotornello](https://github.com/joacotornello))
|
|
10
|
+
- Added `:hover` and `:active` properties to `Button` component AI State to improve hover and active states. ([#353](https://github.com/TiendaNube/nimbus-design-system/pull/353) by [@joacotornello](https://github.com/joacotornello))
|
|
11
|
+
|
|
5
12
|
## 2025-08-04 `2.7.0`
|
|
6
13
|
|
|
7
14
|
#### 🎉 New features
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
The Button component allows us to initiate actions, make state or page changes.
|
|
4
4
|
|
|
5
|
+
## 2025-09-17 `2.8.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- New `ai-primary` and `ai-secondary` appearances to `Button` component to match Nimbus AI gradient style. ([#353](https://github.com/TiendaNube/nimbus-design-system/pull/353) by [@joacotornello](https://github.com/joacotornello))
|
|
10
|
+
- Added `:hover` and `:active` properties to `Button` component AI State to improve hover and active states. ([#353](https://github.com/TiendaNube/nimbus-design-system/pull/353) by [@joacotornello](https://github.com/joacotornello))
|
|
11
|
+
|
|
5
12
|
## 2025-08-04 `2.7.0`
|
|
6
13
|
|
|
7
14
|
#### 🎉 New features
|
package/dist/index.d.ts
CHANGED
|
@@ -64,7 +64,7 @@ export interface ButtonProperties {
|
|
|
64
64
|
* Change the visual style of the button.
|
|
65
65
|
* @default neutral
|
|
66
66
|
*/
|
|
67
|
-
appearance?: "primary" | "danger" | "neutral" | "transparent";
|
|
67
|
+
appearance?: "primary" | "danger" | "neutral" | "transparent" | "ai-primary" | "ai-secondary";
|
|
68
68
|
/**
|
|
69
69
|
* Disables the button, disallowing user interaction.
|
|
70
70
|
* @default false
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-ds/button",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@nimbus-ds/skeleton": "^3.0.1"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"@nimbus-ds/styles": "^9.
|
|
20
|
+
"@nimbus-ds/styles": "^9.27.0",
|
|
21
21
|
"react": "^16.8 || ^17.0 || ^18.0",
|
|
22
22
|
"react-dom": "^16.8 || ^17.0 || ^18.0"
|
|
23
23
|
},
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@nimbus-ds/badge": "^3.1.2",
|
|
34
|
-
"@nimbus-ds/box": "^4.
|
|
35
|
-
"@nimbus-ds/icon": "^3.2.
|
|
36
|
-
"@nimbus-ds/icons": "^1.
|
|
34
|
+
"@nimbus-ds/box": "^4.3.1",
|
|
35
|
+
"@nimbus-ds/icon": "^3.2.2",
|
|
36
|
+
"@nimbus-ds/icons": "^1.13.0",
|
|
37
37
|
"@nimbus-ds/skeleton": "^3.0.1",
|
|
38
|
-
"@nimbus-ds/webpack": "^1.
|
|
38
|
+
"@nimbus-ds/webpack": "^1.7.0"
|
|
39
39
|
}
|
|
40
40
|
}
|