@gataca/design-system 0.3.29 → 0.3.31
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/components/index.native.d.ts +1 -0
- package/dist/components/index.web.d.ts +1 -0
- package/dist/components/native/Popover/Popover.native.d.ts +3 -0
- package/dist/components/native/Popover/index.native.d.ts +2 -0
- package/dist/components/native/Popover/popover_styles.native.d.ts +63 -0
- package/dist/components/native/Popover/popover_types.native.d.ts +7 -0
- package/dist/components/web/Popover/Popover.web.d.ts +3 -0
- package/dist/components/web/Popover/index.web.d.ts +2 -0
- package/dist/components/web/Popover/popover_styles.web.d.ts +12 -0
- package/dist/components/web/Popover/popover_types.web.d.ts +7 -0
- package/dist/index.native.js +1 -1
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +1 -1
- package/dist/index.web.js.map +1 -1
- package/package.json +1 -1
|
@@ -26,6 +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
30
|
export { default as Illustration } from './native/Illustrations/index.native';
|
|
30
31
|
export { default as GatacaLogoHorIcon } from './native/Icons/icons/brand/gatacaLogoHor';
|
|
31
32
|
export { default as GatacaLogoIcon } from './native/Icons/icons/brand/gatacaLogo';
|
|
@@ -29,6 +29,7 @@ export { default as YoutubeIcon } from './web/Icons/icons/rrss/youtube';
|
|
|
29
29
|
export { default as Twittercon } from './web/Icons/icons/rrss/twitter';
|
|
30
30
|
export { default as LinkedinIcon } from './web/Icons/icons/rrss/linkedin';
|
|
31
31
|
export { default as DiscordIcon } from './web/Icons/icons/rrss/discord';
|
|
32
|
+
export { default as Popover } from './web/Popover/Popover.web';
|
|
32
33
|
export { default as Illustration } from './web/Illustrations/index.web';
|
|
33
34
|
export { default as HomeIcon } from './web/Icons/icons/withSelectedState/home';
|
|
34
35
|
export { default as CredentialIcon } from './web/Icons/icons/withSelectedState/credential';
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
bg: {
|
|
3
|
+
backgroundColor: string;
|
|
4
|
+
position: "absolute";
|
|
5
|
+
bottom: number;
|
|
6
|
+
top: number;
|
|
7
|
+
left: number;
|
|
8
|
+
right: number;
|
|
9
|
+
width: "100%";
|
|
10
|
+
height: "100%";
|
|
11
|
+
flexDirection: "column";
|
|
12
|
+
zIndex: number;
|
|
13
|
+
display: "flex";
|
|
14
|
+
justifyContent: "center";
|
|
15
|
+
alignItems: "center";
|
|
16
|
+
};
|
|
17
|
+
popover: {
|
|
18
|
+
borderRadius: number;
|
|
19
|
+
display: "flex";
|
|
20
|
+
flexDirection: "column";
|
|
21
|
+
justifyContent: "center";
|
|
22
|
+
alignItems: "center";
|
|
23
|
+
width: number;
|
|
24
|
+
height: number;
|
|
25
|
+
zIndex: number;
|
|
26
|
+
shadowOpacity: number;
|
|
27
|
+
shadowRadius: number;
|
|
28
|
+
overflow: "hidden";
|
|
29
|
+
maxWidth: "90%";
|
|
30
|
+
maxHeight: "90%";
|
|
31
|
+
padding: number;
|
|
32
|
+
gap: number;
|
|
33
|
+
};
|
|
34
|
+
imageContainer: {
|
|
35
|
+
position: "relative";
|
|
36
|
+
flex: number;
|
|
37
|
+
maxHeight: number;
|
|
38
|
+
width: "100%";
|
|
39
|
+
overflow: "hidden";
|
|
40
|
+
borderRadius: number;
|
|
41
|
+
};
|
|
42
|
+
landscapeImage: {
|
|
43
|
+
minWidth: "100%";
|
|
44
|
+
minHeight: "100%";
|
|
45
|
+
maxHeight: "100%";
|
|
46
|
+
objectFit: "cover";
|
|
47
|
+
};
|
|
48
|
+
portraitImage: {
|
|
49
|
+
minWidth: "100%";
|
|
50
|
+
minHeight: "100%";
|
|
51
|
+
maxWidth: "100%";
|
|
52
|
+
objectFit: "cover";
|
|
53
|
+
};
|
|
54
|
+
squareImage: {
|
|
55
|
+
minWidth: "100%";
|
|
56
|
+
minHeight: "100%";
|
|
57
|
+
objectFit: "cover";
|
|
58
|
+
};
|
|
59
|
+
bottomContainer: {
|
|
60
|
+
width: "100%";
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const styles: () => {
|
|
3
|
+
overlay: React.CSSProperties;
|
|
4
|
+
container: React.CSSProperties;
|
|
5
|
+
handle: React.CSSProperties;
|
|
6
|
+
imageContainer: React.CSSProperties;
|
|
7
|
+
landscape: React.CSSProperties;
|
|
8
|
+
portrait: React.CSSProperties;
|
|
9
|
+
even: React.CSSProperties;
|
|
10
|
+
bottomContainer: React.CSSProperties;
|
|
11
|
+
button: React.CSSProperties;
|
|
12
|
+
};
|