@abdellatifui/react 3.2.54 → 3.2.56
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 +14 -1
- package/dist/nextgen.js +3499 -3467
- package/package.json +1 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ export declare interface AccordionGroupProps {
|
|
|
62
62
|
}) => void;
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
-
export declare const AccordionItem: (props:
|
|
65
|
+
export declare const AccordionItem: (props: AccordionItemProps) => JSX.Element;
|
|
66
66
|
|
|
67
67
|
export declare interface AccordionItemProps {
|
|
68
68
|
value: string;
|
|
@@ -70,6 +70,17 @@ export declare interface AccordionItemProps {
|
|
|
70
70
|
children: default_2.ReactNode;
|
|
71
71
|
disabled?: boolean;
|
|
72
72
|
className?: string;
|
|
73
|
+
defaultOpen?: boolean;
|
|
74
|
+
onOpen?: (params: {
|
|
75
|
+
value: any;
|
|
76
|
+
props: any;
|
|
77
|
+
api: any;
|
|
78
|
+
}) => void;
|
|
79
|
+
onClose?: (params: {
|
|
80
|
+
value: any;
|
|
81
|
+
props: any;
|
|
82
|
+
api: any;
|
|
83
|
+
}) => void;
|
|
73
84
|
}
|
|
74
85
|
|
|
75
86
|
export declare interface AdvancedSpinnerProps extends SpinnerProps {
|
|
@@ -744,7 +755,9 @@ declare type NetworkMapProps_2 = {
|
|
|
744
755
|
maxZoomOutForLinkCount: number;
|
|
745
756
|
mapTilesCacheSize: number;
|
|
746
757
|
nodeSizeScaler: number;
|
|
758
|
+
pathThikness: number;
|
|
747
759
|
boundMargin: number;
|
|
760
|
+
pathCurvature: number;
|
|
748
761
|
defaultAnimationLinkColor: string;
|
|
749
762
|
nodeVirtualizationMethod: 'moving' | 'moveend';
|
|
750
763
|
linkAnimation: boolean;
|