@gataca/design-system 0.3.73 → 0.3.75
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/native/Drawer/BottomDrawer/BottomDrawer.native.d.ts +4 -0
- package/dist/components/native/Drawer/BottomDrawer/bottomDrawer_styles.native.d.ts +121 -0
- package/dist/components/native/Drawer/BottomDrawer/bottomDrawer_types.native.d.ts +12 -0
- package/dist/components/native/Drawer/BottomDrawer/index.native.d.ts +2 -0
- package/dist/components/native/Lists/ListItem/listItem_types.native.d.ts +1 -0
- package/dist/components/native/Lists/ListMetaContainer/listMetaContainer_types.native.d.ts +1 -0
- package/dist/components/web/Lists/ListItem/listItem_types.web.d.ts +1 -0
- package/dist/components/web/Lists/ListMetaContainer/listMetaContainer_types.web.d.ts +1 -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 +3 -2
|
@@ -0,0 +1,121 @@
|
|
|
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
|
+
bottomDrawer: {
|
|
18
|
+
borderTopLeftRadius: number;
|
|
19
|
+
borderTopRightRadius: number;
|
|
20
|
+
display: "flex";
|
|
21
|
+
flexDirection: "column";
|
|
22
|
+
width: number;
|
|
23
|
+
elevation: number;
|
|
24
|
+
shadowOffset: {
|
|
25
|
+
width: number;
|
|
26
|
+
height: number;
|
|
27
|
+
};
|
|
28
|
+
zIndex: number;
|
|
29
|
+
shadowOpacity: number;
|
|
30
|
+
shadowRadius: number;
|
|
31
|
+
overflow: "hidden";
|
|
32
|
+
maxWidth: "90%";
|
|
33
|
+
maxHeight: "90%";
|
|
34
|
+
flex: number;
|
|
35
|
+
position: "absolute";
|
|
36
|
+
bottom: "-100%";
|
|
37
|
+
height: "100%";
|
|
38
|
+
};
|
|
39
|
+
topSeparator: {
|
|
40
|
+
width: "100%";
|
|
41
|
+
paddingTop: number;
|
|
42
|
+
display: "flex";
|
|
43
|
+
justifyContent: "center";
|
|
44
|
+
};
|
|
45
|
+
topSeparatorLine: {
|
|
46
|
+
width: number;
|
|
47
|
+
paddingTop: number;
|
|
48
|
+
borderRadius: number;
|
|
49
|
+
backgroundColor: string;
|
|
50
|
+
margin: "auto";
|
|
51
|
+
};
|
|
52
|
+
topContainer: {
|
|
53
|
+
display: "flex";
|
|
54
|
+
flexDirection: "row";
|
|
55
|
+
justifyContent: "space-between";
|
|
56
|
+
alignItems: "flex-start";
|
|
57
|
+
width: "100%";
|
|
58
|
+
flexWrap: "wrap-reverse";
|
|
59
|
+
paddingVertical: number;
|
|
60
|
+
paddingHorizontal: number;
|
|
61
|
+
};
|
|
62
|
+
closeButton: {
|
|
63
|
+
height: number;
|
|
64
|
+
display: "flex";
|
|
65
|
+
justifyContent: "flex-start";
|
|
66
|
+
alignItems: "flex-start";
|
|
67
|
+
marginLeft: "auto";
|
|
68
|
+
alignSelf: "center";
|
|
69
|
+
};
|
|
70
|
+
mainContainer: {
|
|
71
|
+
display: "flex";
|
|
72
|
+
justifyContent: "flex-start";
|
|
73
|
+
alignItems: "flex-start";
|
|
74
|
+
flexDirection: "column";
|
|
75
|
+
gap: number;
|
|
76
|
+
maxHeight: number;
|
|
77
|
+
paddingVertical: number;
|
|
78
|
+
paddingHorizontal: number;
|
|
79
|
+
paddingBottom: number;
|
|
80
|
+
};
|
|
81
|
+
statusTextImageContainer: {
|
|
82
|
+
display: "flex";
|
|
83
|
+
flexDirection: "column";
|
|
84
|
+
justifyContent: "flex-start";
|
|
85
|
+
alignItems: "flex-start";
|
|
86
|
+
gap: number;
|
|
87
|
+
width: "100%";
|
|
88
|
+
};
|
|
89
|
+
scrollableArea: {
|
|
90
|
+
display: "flex";
|
|
91
|
+
flexDirection: "column";
|
|
92
|
+
justifyContent: "flex-start";
|
|
93
|
+
paddingHorizontal: number;
|
|
94
|
+
alignItems: "flex-start";
|
|
95
|
+
gap: number;
|
|
96
|
+
overflow: "scroll";
|
|
97
|
+
width: "100%";
|
|
98
|
+
};
|
|
99
|
+
textsContainer: {
|
|
100
|
+
display: "flex";
|
|
101
|
+
flexDirection: "column";
|
|
102
|
+
gap: number;
|
|
103
|
+
alignItems: "flex-start";
|
|
104
|
+
paddingHorizontal: number;
|
|
105
|
+
width: "100%";
|
|
106
|
+
};
|
|
107
|
+
bottomContainer: {
|
|
108
|
+
paddingVertical: number;
|
|
109
|
+
paddingHorizontal: number;
|
|
110
|
+
};
|
|
111
|
+
buttonsContainer: {
|
|
112
|
+
display: "flex";
|
|
113
|
+
flexDirection: "row";
|
|
114
|
+
justifyContent: "flex-start";
|
|
115
|
+
gap: number;
|
|
116
|
+
alignItems: "center";
|
|
117
|
+
flexWrap: "wrap-reverse";
|
|
118
|
+
marginLeft: "auto";
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BottomStickyContainerProps } from '../../BottomSticky/BottomStickyContainer/bottomStickyContainer_types.native';
|
|
2
|
+
import { TopDrawerBarProps } from '../../TopAppBar/TopDrawerBar/topDrawerBar_types.native';
|
|
3
|
+
export type BottomDrawerType = 'main' | 'sub';
|
|
4
|
+
export interface BottomDrawerProps {
|
|
5
|
+
type: BottomDrawerType;
|
|
6
|
+
topDrawerBar?: TopDrawerBarProps;
|
|
7
|
+
bottomStykyContainer?: BottomStickyContainerProps;
|
|
8
|
+
containerStyle?: any;
|
|
9
|
+
closableByBg?: boolean;
|
|
10
|
+
children?: any;
|
|
11
|
+
onClose?: (x?: any) => void;
|
|
12
|
+
}
|
|
@@ -9,6 +9,7 @@ export interface ListMetaContainerProps {
|
|
|
9
9
|
condition: ListMetaContainerCondition;
|
|
10
10
|
size?: ListMetaContainerSize;
|
|
11
11
|
color?: ListMetaContainerColor;
|
|
12
|
+
infoColor?: ListMetaContainerColor;
|
|
12
13
|
align?: ListMetaContainerAlign;
|
|
13
14
|
tooltip?: ParentComponentTooltipProps;
|
|
14
15
|
chip?: ChipProps;
|
|
@@ -9,6 +9,7 @@ export interface ListMetaContainerProps {
|
|
|
9
9
|
condition: ListMetaContainerCondition;
|
|
10
10
|
size?: ListMetaContainerSize;
|
|
11
11
|
color?: ListMetaContainerColor;
|
|
12
|
+
infoColor?: ListMetaContainerColor;
|
|
12
13
|
align?: ListMetaContainerAlign;
|
|
13
14
|
tooltip?: ParentComponentTooltipProps;
|
|
14
15
|
chip?: ChipProps;
|