@abdellatifui/react 3.2.19 → 3.2.21
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.css +1 -1
- package/dist/nextgen.d.ts +19 -6
- package/dist/nextgen.js +3997 -3884
- package/package.json +3 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -151,6 +151,8 @@ export declare interface AutoCompleteProps extends InputProps {
|
|
|
151
151
|
filterOptions?: boolean;
|
|
152
152
|
}
|
|
153
153
|
|
|
154
|
+
export declare const BadgeLegend: (props: any) => JSX.Element;
|
|
155
|
+
|
|
154
156
|
declare const Body_2: default_2.ForwardRefExoticComponent<default_2.RefAttributes<unknown>>;
|
|
155
157
|
export { Body_2 as Body }
|
|
156
158
|
|
|
@@ -288,7 +290,7 @@ export { cva }
|
|
|
288
290
|
|
|
289
291
|
export declare const DataTable: default_2.MemoExoticComponent<(props: TableProps_2) => JSX.Element>;
|
|
290
292
|
|
|
291
|
-
export declare const DialogPanel:
|
|
293
|
+
export declare const DialogPanel: (props: DialogPanelProps_2) => JSX.Element;
|
|
292
294
|
|
|
293
295
|
export declare interface DialogPanelProps extends ContainerProps {
|
|
294
296
|
header: string;
|
|
@@ -303,9 +305,16 @@ declare interface DialogPanelProps_2 {
|
|
|
303
305
|
shortInfo: string;
|
|
304
306
|
defaultClose: boolean | string;
|
|
305
307
|
collapsable: boolean;
|
|
306
|
-
|
|
308
|
+
dialogRef?: any;
|
|
307
309
|
defaultOpen: boolean;
|
|
308
310
|
closeButton: string;
|
|
311
|
+
className?: any;
|
|
312
|
+
ref?: any;
|
|
313
|
+
modelProps?: ModelProps_2;
|
|
314
|
+
panelProps?: PanelProps_2;
|
|
315
|
+
maximizedOffset?: boolean;
|
|
316
|
+
maximizeButton: boolean;
|
|
317
|
+
animated?: boolean;
|
|
309
318
|
}
|
|
310
319
|
|
|
311
320
|
export declare interface DisabledProps {
|
|
@@ -440,7 +449,7 @@ export declare interface InlineSpinnerProps extends SpinnerProps {
|
|
|
440
449
|
modelClassName?: string | Record<string, any>;
|
|
441
450
|
}
|
|
442
451
|
|
|
443
|
-
export declare const Input: default_2.
|
|
452
|
+
export declare const Input: default_2.MemoExoticComponent<(props: any) => JSX.Element>;
|
|
444
453
|
|
|
445
454
|
export declare interface InputProps extends default_2.InputHTMLAttributes<HTMLInputElement> {
|
|
446
455
|
placeholder: string;
|
|
@@ -474,6 +483,7 @@ declare interface InputProps_2 extends InputProps_3 {
|
|
|
474
483
|
onClick: any;
|
|
475
484
|
onChange: void;
|
|
476
485
|
multiple: boolean;
|
|
486
|
+
debounce: number;
|
|
477
487
|
placement: 'top' | 'bottom';
|
|
478
488
|
}
|
|
479
489
|
|
|
@@ -586,6 +596,7 @@ declare interface ModelProps_2 {
|
|
|
586
596
|
onBodyClick?: (event: default_2.MouseEvent<HTMLDivElement>) => void;
|
|
587
597
|
blur?: boolean;
|
|
588
598
|
container?: MutableRefObject<HTMLDivElement>;
|
|
599
|
+
onChange?: ({}: {}) => void;
|
|
589
600
|
}
|
|
590
601
|
|
|
591
602
|
export declare const MuiTable: (props: any) => JSX.Element;
|
|
@@ -808,7 +819,7 @@ declare interface NotifyProps_2 {
|
|
|
808
819
|
toastProps?: ToastProps;
|
|
809
820
|
}
|
|
810
821
|
|
|
811
|
-
export declare const Panel:
|
|
822
|
+
export declare const Panel: (props: PanelProps_2) => JSX.Element;
|
|
812
823
|
|
|
813
824
|
export declare interface PanelProps extends ContainerProps {
|
|
814
825
|
header?: default_2.ReactNode;
|
|
@@ -823,10 +834,12 @@ declare interface PanelProps_2 {
|
|
|
823
834
|
header: string;
|
|
824
835
|
moreInfo: string;
|
|
825
836
|
description: string;
|
|
826
|
-
spinnerArgs: object;
|
|
827
|
-
spinnerState: any;
|
|
828
837
|
className?: string;
|
|
838
|
+
bodyClassName?: string;
|
|
839
|
+
headerClassName?: string;
|
|
829
840
|
defaultClose: string;
|
|
841
|
+
maximizeButton: boolean;
|
|
842
|
+
ref: MutableRefObject<any>;
|
|
830
843
|
}
|
|
831
844
|
|
|
832
845
|
export declare interface PropertiesItemProps {
|