@gataca/design-system 0.3.42 → 0.3.44

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.
@@ -29,6 +29,7 @@ export { default as Alert } from './native/Alerts/Alert/index.native';
29
29
  export { default as Dialog } from './native/Dialog/Dialog/index.native';
30
30
  export { default as Tooltip } from './native/Tooltips/Tooltip/index.native';
31
31
  export { default as Popover } from './native/Popover/index.native';
32
+ export { default as BottomStickyContainer } from './native/BottomSticky/BottomStickyContainer/index.native';
32
33
  export { default as Illustration } from './native/Illustrations/index.native';
33
34
  export { default as GatacaLogoHorIcon } from './native/Icons/icons/brand/gatacaLogoHor';
34
35
  export { default as GatacaLogoIcon } from './native/Icons/icons/brand/gatacaLogo';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { BottomStickyContainerProps } from './bottomStickyContainer_types.native';
3
+ declare const BottomStickyContainer: (props: React.PropsWithChildren<BottomStickyContainerProps>) => import("react/jsx-runtime").JSX.Element;
4
+ export default BottomStickyContainer;
@@ -0,0 +1,37 @@
1
+ declare const _default: {
2
+ bottomStickyContainerContainer: {
3
+ display: "flex";
4
+ flexDirection: "column";
5
+ alignItems: "center";
6
+ justifyContent: "center";
7
+ alignSelf: "stretch";
8
+ width: "100%";
9
+ right: number;
10
+ left: number;
11
+ position: "absolute";
12
+ bottom: number;
13
+ zIndex: number;
14
+ minHeight: number;
15
+ };
16
+ buttonsContainer: {
17
+ display: "flex";
18
+ flexDirection: "row";
19
+ alignItems: "center";
20
+ justifyContent: "center";
21
+ gap: number;
22
+ width: "100%";
23
+ flexWrap: "wrap-reverse";
24
+ marginLeft: "auto";
25
+ padding: number;
26
+ };
27
+ homeIndicator: {
28
+ width: number;
29
+ height: number;
30
+ borderRadius: number;
31
+ backgroundColor: string;
32
+ marginHorizontal: "auto";
33
+ marginTop: number;
34
+ marginBottom: number;
35
+ };
36
+ };
37
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ButtonProps } from '../../Buttons/Button/Button.types.native';
2
+ export interface BottomStickyContainerProps {
3
+ bg?: boolean;
4
+ divider?: boolean;
5
+ showHomeIncicator?: boolean;
6
+ primaryButton: ButtonProps;
7
+ secondaryButton?: ButtonProps;
8
+ containerStyle?: any;
9
+ }
@@ -0,0 +1,2 @@
1
+ import BottomStickyContainer from './BottomStickyContainer.native';
2
+ export default BottomStickyContainer;