@gataca/design-system 0.3.31 → 0.3.33

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.
@@ -26,7 +26,7 @@ export { default as NavigationBar } from './native/NavBar/NavigationBar/index.na
26
26
  export { default as Alert } from './native/Alerts/Alert/index.native';
27
27
  export { default as Dialog } from './native/Dialog/Dialog/index.native';
28
28
  export { default as Tooltip } from './native/Tooltips/Tooltip/index.native';
29
- export { default as Popover } from './native/Popover/Popover.native';
29
+ export { default as Popover } from './native/Popover/index.native';
30
30
  export { default as Illustration } from './native/Illustrations/index.native';
31
31
  export { default as GatacaLogoHorIcon } from './native/Icons/icons/brand/gatacaLogoHor';
32
32
  export { default as GatacaLogoIcon } from './native/Icons/icons/brand/gatacaLogo';
@@ -23,14 +23,14 @@ export { default as NavOption } from './web/NavBar/NavOption/index.web';
23
23
  export { default as NavigationBar } from './web/NavBar/NavigationBar/index.web';
24
24
  export { default as Alert } from './web/Alerts/Alert/index.web';
25
25
  export { default as Tooltip } from './web/Tooltips/Tooltip/index.web';
26
+ export { default as Popover } from './web/Popover/index.web';
27
+ export { default as Illustration } from './web/Illustrations/index.web';
26
28
  export { default as GatacaLogoHorIcon } from './web/Icons/icons/brand/gatacaLogoHor';
27
29
  export { default as GatacaLogoIcon } from './web/Icons/icons/brand/gatacaLogo';
28
30
  export { default as YoutubeIcon } from './web/Icons/icons/rrss/youtube';
29
31
  export { default as Twittercon } from './web/Icons/icons/rrss/twitter';
30
32
  export { default as LinkedinIcon } from './web/Icons/icons/rrss/linkedin';
31
33
  export { default as DiscordIcon } from './web/Icons/icons/rrss/discord';
32
- export { default as Popover } from './web/Popover/Popover.web';
33
- export { default as Illustration } from './web/Illustrations/index.web';
34
34
  export { default as HomeIcon } from './web/Icons/icons/withSelectedState/home';
35
35
  export { default as CredentialIcon } from './web/Icons/icons/withSelectedState/credential';
36
36
  export { default as HelpIcon } from './web/Icons/icons/withSelectedState/help';
@@ -4,4 +4,5 @@ export interface PopoverProps {
4
4
  button: ButtonProps;
5
5
  onClose: (x?: any) => void;
6
6
  containerStyle?: any;
7
+ overlayStyle?: any;
7
8
  }
@@ -4,4 +4,5 @@ export interface PopoverProps {
4
4
  button: ButtonProps;
5
5
  onClose: (x?: any) => void;
6
6
  containerStyle?: any;
7
+ overlayStyle?: any;
7
8
  }