@abdellatifui/react 3.2.18 → 3.2.20
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 +26 -13
- package/dist/nextgen.js +4336 -4211
- 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
|
|
|
@@ -549,7 +559,7 @@ export declare interface MenuButtonProps extends ButtonProps {
|
|
|
549
559
|
}>;
|
|
550
560
|
}
|
|
551
561
|
|
|
552
|
-
export declare const Model: default_2.
|
|
562
|
+
export declare const Model: default_2.NamedExoticComponent<ModelProps_2 & default_2.RefAttributes<ModelHandle_2>>;
|
|
553
563
|
|
|
554
564
|
export declare const ModelContext: Context< {}>;
|
|
555
565
|
|
|
@@ -585,6 +595,8 @@ declare interface ModelProps_2 {
|
|
|
585
595
|
hideOnContextMenu?: boolean;
|
|
586
596
|
onBodyClick?: (event: default_2.MouseEvent<HTMLDivElement>) => void;
|
|
587
597
|
blur?: boolean;
|
|
598
|
+
container?: MutableRefObject<HTMLDivElement>;
|
|
599
|
+
onChange?: ({}: {}) => void;
|
|
588
600
|
}
|
|
589
601
|
|
|
590
602
|
export declare const MuiTable: (props: any) => JSX.Element;
|
|
@@ -807,7 +819,7 @@ declare interface NotifyProps_2 {
|
|
|
807
819
|
toastProps?: ToastProps;
|
|
808
820
|
}
|
|
809
821
|
|
|
810
|
-
export declare const Panel:
|
|
822
|
+
export declare const Panel: (props: PanelProps_2) => JSX.Element;
|
|
811
823
|
|
|
812
824
|
export declare interface PanelProps extends ContainerProps {
|
|
813
825
|
header?: default_2.ReactNode;
|
|
@@ -822,10 +834,12 @@ declare interface PanelProps_2 {
|
|
|
822
834
|
header: string;
|
|
823
835
|
moreInfo: string;
|
|
824
836
|
description: string;
|
|
825
|
-
spinnerArgs: object;
|
|
826
|
-
spinnerState: any;
|
|
827
837
|
className?: string;
|
|
838
|
+
bodyClassName?: string;
|
|
839
|
+
headerClassName?: string;
|
|
828
840
|
defaultClose: string;
|
|
841
|
+
maximizeButton: boolean;
|
|
842
|
+
ref: MutableRefObject<any>;
|
|
829
843
|
}
|
|
830
844
|
|
|
831
845
|
export declare interface PropertiesItemProps {
|
|
@@ -907,7 +921,7 @@ export declare const Sidebar: default_2.ForwardRefExoticComponent<Omit<SidebarPr
|
|
|
907
921
|
|
|
908
922
|
export declare type SidebarDirection = 'left' | 'right';
|
|
909
923
|
|
|
910
|
-
declare type SidebarDirection_2 =
|
|
924
|
+
declare type SidebarDirection_2 = "left" | "right";
|
|
911
925
|
|
|
912
926
|
export declare interface SidebarEvent {
|
|
913
927
|
isOpen: boolean;
|
|
@@ -943,7 +957,7 @@ declare interface SidebarHandle_2 {
|
|
|
943
957
|
|
|
944
958
|
export declare type SidebarModelProps = Partial<Omit<ModelProps, 'children'>>;
|
|
945
959
|
|
|
946
|
-
declare type SidebarModelProps_2 = Partial<Omit<ModelProps_2,
|
|
960
|
+
declare type SidebarModelProps_2 = Partial<Omit<ModelProps_2, "children">>;
|
|
947
961
|
|
|
948
962
|
export declare interface SidebarProps {
|
|
949
963
|
variant?: SidebarVariant;
|
|
@@ -964,9 +978,9 @@ export declare interface SidebarProps {
|
|
|
964
978
|
|
|
965
979
|
declare interface SidebarProps_2 {
|
|
966
980
|
variant?: SidebarVariant_2;
|
|
967
|
-
rounded?:
|
|
981
|
+
rounded?: "none" | "sm" | "md" | "lg" | "xl" | "xxl";
|
|
968
982
|
padding?: boolean;
|
|
969
|
-
margin?:
|
|
983
|
+
margin?: "none" | "sm" | "md" | "lg" | "xl" | "xxl";
|
|
970
984
|
direction?: SidebarDirection_2;
|
|
971
985
|
defaultOpen?: boolean;
|
|
972
986
|
children?: ReactNode;
|
|
@@ -977,12 +991,11 @@ declare interface SidebarProps_2 {
|
|
|
977
991
|
className?: string;
|
|
978
992
|
style?: default_2.CSSProperties;
|
|
979
993
|
ref?: default_2.RefObject<HTMLDivElement>;
|
|
980
|
-
container?: MutableRefObject<HTMLDivElement>;
|
|
981
994
|
}
|
|
982
995
|
|
|
983
996
|
export declare type SidebarVariant = 'default';
|
|
984
997
|
|
|
985
|
-
declare type SidebarVariant_2 =
|
|
998
|
+
declare type SidebarVariant_2 = "default";
|
|
986
999
|
|
|
987
1000
|
export declare interface SizeVariants {
|
|
988
1001
|
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|