@windstream/react-shared-components 0.0.84 → 0.0.87

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/README.md CHANGED
@@ -627,4 +627,10 @@ This package is part of the Kinetic ecosystem and works seamlessly with:
627
627
  - Commit -> Git commit
628
628
  - version -> npm version patch
629
629
  - build -> npm run build
630
- - publish -> npm publish --access public
630
+ - publish -> npm publish --access public
631
+
632
+ ## npm pack usage in local
633
+ - build -> npm run build
634
+ - pack -> npm pack
635
+ - reference in app -> relatiev path to teh zip
636
+ - eg: "@windstream/react-shared-components": "../kinetic-react-shared-components/windstream-react-shared-components-0.0.86.tgz",
@@ -321,11 +321,18 @@ type ButtonProps = {
321
321
 
322
322
  declare const Button: React$1.FC<ButtonProps>;
323
323
 
324
- type ModalProps = {};
324
+ type ModalProps = {
325
+ isOpen: boolean;
326
+ onRequestClose?: () => void;
327
+ size?: "lg" | "md" | "sm" | "xl" | "xs";
328
+ title?: string;
329
+ description?: React$1.ReactNode;
330
+ content?: React$1.ReactNode;
331
+ children?: React$1.ReactNode;
332
+ bodyClassName?: string;
333
+ };
325
334
 
326
- declare const Modal: React.FC<{
327
- fields: ModalProps;
328
- }>;
335
+ declare const Modal: React$1.FC<ModalProps>;
329
336
 
330
337
  declare const svgPaths: Record<string, string>;
331
338
  type ThemeKey = "blue" | "green" | "yellow" | "purple" | "white" | "navy";