@abdellatifui/react 3.2.54 → 3.2.55

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 CHANGED
@@ -62,7 +62,7 @@ export declare interface AccordionGroupProps {
62
62
  }) => void;
63
63
  }
64
64
 
65
- export declare const AccordionItem: (props: any) => JSX.Element;
65
+ export declare const AccordionItem: (props: AccordionItemProps) => JSX.Element;
66
66
 
67
67
  export declare interface AccordionItemProps {
68
68
  value: string;
@@ -70,6 +70,18 @@ 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;
84
+ delay?: number;
73
85
  }
74
86
 
75
87
  export declare interface AdvancedSpinnerProps extends SpinnerProps {
@@ -744,7 +756,9 @@ declare type NetworkMapProps_2 = {
744
756
  maxZoomOutForLinkCount: number;
745
757
  mapTilesCacheSize: number;
746
758
  nodeSizeScaler: number;
759
+ pathThikness: number;
747
760
  boundMargin: number;
761
+ pathCurvature: number;
748
762
  defaultAnimationLinkColor: string;
749
763
  nodeVirtualizationMethod: 'moving' | 'moveend';
750
764
  linkAnimation: boolean;