react-asc 25.7.4 → 25.8.1
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/index.d.ts +2 -0
- package/index.es.js +309 -271
- package/index.js +309 -271
- package/lib/components/Button/Button.d.ts +1 -0
- package/lib/components/IconButton/IconButton.d.ts +1 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -119,6 +119,7 @@ interface IButtonProps extends React$1.ComponentProps<'button'> {
|
|
|
119
119
|
endIcon?: React$1.ReactNode;
|
|
120
120
|
shadow?: boolean;
|
|
121
121
|
block?: boolean;
|
|
122
|
+
loading?: boolean;
|
|
122
123
|
}
|
|
123
124
|
declare const Button: React$1.FunctionComponent<IButtonProps>;
|
|
124
125
|
|
|
@@ -462,6 +463,7 @@ interface IIconButtonProps extends React$1.ComponentProps<'button'> {
|
|
|
462
463
|
isActive?: boolean;
|
|
463
464
|
variant?: VARIANT;
|
|
464
465
|
shadow?: boolean;
|
|
466
|
+
loading?: boolean;
|
|
465
467
|
}
|
|
466
468
|
declare const IconButton: (props: IIconButtonProps) => JSX.Element;
|
|
467
469
|
|