@windstream/react-shared-components 0.1.25 → 0.1.26
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.
|
@@ -347,7 +347,11 @@ type ModalProps = {
|
|
|
347
347
|
bodyClassName?: string;
|
|
348
348
|
};
|
|
349
349
|
|
|
350
|
-
|
|
350
|
+
type ExtendedModalProps = ModalProps & {
|
|
351
|
+
type?: "modal";
|
|
352
|
+
index?: 0;
|
|
353
|
+
};
|
|
354
|
+
declare const Modal: React$1.FC<ExtendedModalProps>;
|
|
351
355
|
|
|
352
356
|
declare const svgPaths: Record<string, string>;
|
|
353
357
|
type ThemeKey = "blue" | "green" | "yellow" | "purple" | "white" | "navy";
|