@nimbus-ds/components 5.30.0 → 5.31.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 +6 -0
- package/dist/Button/index.d.ts +5 -0
- package/dist/Button/index.js +1 -1
- package/dist/CHANGELOG.md +6 -0
- package/dist/Pagination/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2251,6 +2251,11 @@ export interface ButtonProperties {
|
|
|
2251
2251
|
* @default false
|
|
2252
2252
|
*/
|
|
2253
2253
|
fullWidth?: boolean;
|
|
2254
|
+
/**
|
|
2255
|
+
* Change the size of the button.
|
|
2256
|
+
* @default medium
|
|
2257
|
+
*/
|
|
2258
|
+
size?: "medium" | "small";
|
|
2254
2259
|
}
|
|
2255
2260
|
export type ButtonBaseProps = ButtonProperties & ButtonHTMLAttributes<HTMLButtonElement>;
|
|
2256
2261
|
export declare const Button: PolymorphicForwardRefComponent<"button" | "a", ButtonBaseProps> & ButtonComponents;
|