@abdellatifui/react 3.2.100 → 3.2.101
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 +9 -7
- package/dist/nextgen.js +2377 -2353
- package/package.json +1 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -492,14 +492,14 @@ export declare interface InformationTableProps {
|
|
|
492
492
|
className?: string;
|
|
493
493
|
}
|
|
494
494
|
|
|
495
|
-
export declare const InlineSpinner: default_2.
|
|
495
|
+
export declare const InlineSpinner: default_2.MemoExoticComponent<{
|
|
496
|
+
(props: InlineSpinnerProps): JSX.Element;
|
|
497
|
+
displayName: string;
|
|
498
|
+
}>;
|
|
496
499
|
|
|
497
500
|
export declare interface InlineSpinnerHandle extends ModelHandle {
|
|
498
501
|
}
|
|
499
502
|
|
|
500
|
-
declare interface InlineSpinnerHandle_2 extends ModelHandle_2 {
|
|
501
|
-
}
|
|
502
|
-
|
|
503
503
|
export declare interface InlineSpinnerProps extends SpinnerProps {
|
|
504
504
|
inline?: boolean;
|
|
505
505
|
defaultOpen?: boolean;
|
|
@@ -636,7 +636,7 @@ export declare interface MenuButtonProps extends ButtonProps {
|
|
|
636
636
|
}>;
|
|
637
637
|
}
|
|
638
638
|
|
|
639
|
-
export declare const Model: default_2.
|
|
639
|
+
export declare const Model: default_2.MemoExoticComponent<(props: ModelProps_2) => JSX.Element>;
|
|
640
640
|
|
|
641
641
|
export declare const ModelContext: Context< {}>;
|
|
642
642
|
|
|
@@ -1092,9 +1092,9 @@ export declare interface SizeVariants {
|
|
|
1092
1092
|
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1093
1093
|
}
|
|
1094
1094
|
|
|
1095
|
-
export declare const Spinner:
|
|
1095
|
+
export declare const Spinner: (props: any) => JSX.Element;
|
|
1096
1096
|
|
|
1097
|
-
export declare const SpinnerDialog:
|
|
1097
|
+
export declare const SpinnerDialog: (props: SpinnerDialogProps) => JSX.Element;
|
|
1098
1098
|
|
|
1099
1099
|
export declare interface SpinnerDialogProps extends SpinnerProps {
|
|
1100
1100
|
modelVariant?: 'transparent' | 'blur' | 'dimmed';
|
|
@@ -1105,6 +1105,7 @@ export declare interface SpinnerDialogProps extends SpinnerProps {
|
|
|
1105
1105
|
text?: string;
|
|
1106
1106
|
timeout?: boolean;
|
|
1107
1107
|
period?: number;
|
|
1108
|
+
modelProps?: ModelProps_2;
|
|
1108
1109
|
}
|
|
1109
1110
|
|
|
1110
1111
|
export declare interface SpinnerProps {
|
|
@@ -1115,6 +1116,7 @@ export declare interface SpinnerProps {
|
|
|
1115
1116
|
period?: number;
|
|
1116
1117
|
onAbort?: () => void;
|
|
1117
1118
|
className?: string;
|
|
1119
|
+
ref?: default_2.Ref<any>;
|
|
1118
1120
|
}
|
|
1119
1121
|
|
|
1120
1122
|
export declare const SplitButton: default_2.MemoExoticComponent<(props: any) => JSX.Element>;
|