@simoncomputing/mui-bueno-v2 0.36.3 → 0.37.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 +28 -0
- package/dist/index.cjs.js +98 -98
- package/dist/index.d.ts +0 -2
- package/dist/index.es.js +4805 -4826
- package/dist/index.umd.js +99 -99
- package/package.json +1 -1
- package/dist/components/Buttons/LoadingButton/LoadingButton.d.ts +0 -11
package/package.json
CHANGED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ButtonProps } from '../Button/Button';
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
export type LoadingButtonProps = Omit<ButtonProps, 'startIcon' | 'loading'> & {
|
|
4
|
-
loading?: boolean;
|
|
5
|
-
};
|
|
6
|
-
/**
|
|
7
|
-
* Button with a loading spinner. Automatically disables itself when loading.
|
|
8
|
-
*
|
|
9
|
-
* Intended to be used with forms, so the default type is `submit`.
|
|
10
|
-
*/
|
|
11
|
-
export declare const LoadingButton: React.FC<LoadingButtonProps>;
|