@abdellatifui/react 3.1.121 → 3.1.125
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 +21 -0
- package/dist/nextgen.js +1098 -1047
- package/dist/types/components/NetworkMap/utils.d.ts +1 -46
- package/dist/types/components/NetworkMap/utils.d.ts.map +1 -1
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/components/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -268,6 +268,20 @@ export declare interface CopyButtonProps extends ButtonProps {
|
|
|
268
268
|
onCopy?: (text: string) => void;
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
+
/**
|
|
272
|
+
* Creates a default connection template from parameters
|
|
273
|
+
* @param params - Connection creation parameters
|
|
274
|
+
* @returns Formatted connection template object
|
|
275
|
+
*/
|
|
276
|
+
export declare const createDefaultConnTemplate: (params: ConnectionParams) => ConnectionTemplate;
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* Creates a default node template from parameters
|
|
280
|
+
* @param params - Node creation parameters
|
|
281
|
+
* @returns Formatted node template object
|
|
282
|
+
*/
|
|
283
|
+
export declare const createDefaultNodeTempate: (params: NodeParams) => NodeTemplate;
|
|
284
|
+
|
|
271
285
|
export { cva }
|
|
272
286
|
|
|
273
287
|
export declare const DataTable: default_2.MemoExoticComponent<default_2.ForwardRefExoticComponent<TableProps_2 & default_2.RefAttributes<HTMLDivElement>>>;
|
|
@@ -374,6 +388,13 @@ export declare interface HelpPopoverProps {
|
|
|
374
388
|
className?: string;
|
|
375
389
|
}
|
|
376
390
|
|
|
391
|
+
/**
|
|
392
|
+
* Converts a hex color string to RGB values
|
|
393
|
+
* @param hex - Hex color string (with or without #)
|
|
394
|
+
* @returns Array of [r, g, b] values (0-255)
|
|
395
|
+
*/
|
|
396
|
+
export declare const hex2rgb: (hex: string) => [number, number, number];
|
|
397
|
+
|
|
377
398
|
export declare const HorizontalDiv: (props: any) => JSX_2.Element;
|
|
378
399
|
|
|
379
400
|
export declare interface HorizontalDivProps extends ContainerProps {
|