@abdellatifui/react 3.2.195 → 3.2.196
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/dist/nextgen.d.ts +12 -1
- package/dist/nextgen.js +394 -390
- package/package.json +1 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -1196,7 +1196,7 @@ export declare interface SizeVariants {
|
|
|
1196
1196
|
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1197
1197
|
}
|
|
1198
1198
|
|
|
1199
|
-
export declare const Spinner: (props:
|
|
1199
|
+
export declare const Spinner: (props: SpinnerProps_2) => JSX.Element;
|
|
1200
1200
|
|
|
1201
1201
|
export declare const SpinnerDialog: (props: SpinnerDialogProps) => JSX.Element;
|
|
1202
1202
|
|
|
@@ -1223,6 +1223,17 @@ export declare interface SpinnerProps {
|
|
|
1223
1223
|
ref?: default_2.Ref<any>;
|
|
1224
1224
|
}
|
|
1225
1225
|
|
|
1226
|
+
declare interface SpinnerProps_2 {
|
|
1227
|
+
variant?: 'blur' | 'primary' | 'white' | 'dark' | 'transparent';
|
|
1228
|
+
size?: 'xs' | 'small' | 'large';
|
|
1229
|
+
className?: string;
|
|
1230
|
+
text?: string;
|
|
1231
|
+
period?: number;
|
|
1232
|
+
abortTimeout?: number;
|
|
1233
|
+
onAbort?: () => void;
|
|
1234
|
+
ref?: default_2.RefObject<HTMLDivElement>;
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1226
1237
|
export declare const SplitButton: default_2.MemoExoticComponent<(props: any) => JSX.Element>;
|
|
1227
1238
|
|
|
1228
1239
|
export declare interface SplitButtonProps extends ButtonProps {
|