@nimbus-ds/button 2.9.0 → 2.10.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 CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  The Button component allows us to initiate actions, make state or page changes.
4
4
 
5
+ ## 2025-11-13 `2.10.0`
6
+
7
+ #### 🎉 New features
8
+
9
+ - Added `large` size to `Button` component. ([#383](https://github.com/TiendaNube/nimbus-design-system/pull/383) by [@joacotornello](https://github.com/joacotornello))
10
+
5
11
  ## 2025-10-17 `2.9.0`
6
12
 
7
13
  #### 🎉 New features
package/dist/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  The Button component allows us to initiate actions, make state or page changes.
4
4
 
5
+ ## 2025-11-13 `2.10.0`
6
+
7
+ #### 🎉 New features
8
+
9
+ - Added `large` size to `Button` component. ([#383](https://github.com/TiendaNube/nimbus-design-system/pull/383) by [@joacotornello](https://github.com/joacotornello))
10
+
5
11
  ## 2025-10-17 `2.9.0`
6
12
 
7
13
  #### 🎉 New features
package/dist/index.d.ts CHANGED
@@ -79,7 +79,7 @@ export interface ButtonProperties {
79
79
  * Change the size of the button.
80
80
  * @default medium
81
81
  */
82
- size?: "medium" | "small";
82
+ size?: "large" | "medium" | "small";
83
83
  }
84
84
  export type ButtonBaseProps = ButtonProperties & ButtonHTMLAttributes<HTMLButtonElement>;
85
85
  export declare const Button: PolymorphicForwardRefComponent<"a" | "button", ButtonBaseProps> & ButtonComponents;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimbus-ds/button",
3
- "version": "2.9.0",
3
+ "version": "2.10.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.34.0",
20
+ "@nimbus-ds/styles": "^9.42.0",
21
21
  "react": "^16.8 || ^17.0 || ^18.0",
22
22
  "react-dom": "^16.8 || ^17.0 || ^18.0"
23
23
  },
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "devDependencies": {
33
33
  "@nimbus-ds/badge": "^3.1.2",
34
- "@nimbus-ds/box": "^4.3.1",
35
- "@nimbus-ds/icon": "^3.2.2",
36
- "@nimbus-ds/icons": "^1.13.1",
34
+ "@nimbus-ds/box": "^4.3.2",
35
+ "@nimbus-ds/icon": "^3.3.0",
36
+ "@nimbus-ds/icons": "^1.14.0",
37
37
  "@nimbus-ds/skeleton": "^3.0.1",
38
38
  "@nimbus-ds/webpack": "^1.7.0"
39
39
  }