@nimbus-ds/components 5.16.0 → 5.17.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
|
@@ -2217,6 +2217,11 @@ export interface ButtonProperties {
|
|
|
2217
2217
|
* @default false
|
|
2218
2218
|
*/
|
|
2219
2219
|
disabled?: boolean;
|
|
2220
|
+
/**
|
|
2221
|
+
* Determines if the button should grow to fill the full width of its container.
|
|
2222
|
+
* @default false
|
|
2223
|
+
*/
|
|
2224
|
+
fullWidth?: boolean;
|
|
2220
2225
|
}
|
|
2221
2226
|
export type ButtonBaseProps = ButtonProperties & ButtonHTMLAttributes<HTMLButtonElement>;
|
|
2222
2227
|
export declare const Button: PolymorphicForwardRefComponent<"button" | "a", ButtonBaseProps> & ButtonComponents;
|