-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.d.ts
246 lines (222 loc) · 4.97 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
import React from "react";
import {
NativeSyntheticEvent,
TextInputFocusEventData,
TouchableHighlightProps,
TouchableNativeFeedbackProps,
TouchableWithoutFeedbackProps
} from "react-native";
/**
* Global Component Types
*/
interface SizingProps {
width?: number | string;
height?: number | string;
borderWidth?: number;
}
interface ColorsProps {
color?: string;
primary?: boolean;
secondary?: boolean;
tertiary?: boolean;
black?: boolean;
white?: boolean;
gray?: boolean;
error?: boolean;
warning?: boolean;
success?: boolean;
info?: boolean;
borderColor?: string;
}
interface PositioningProps {
flex?: number | boolean;
noflex?: boolean;
space?: "between" | "around" | "evenly";
row?: boolean;
column?: boolean;
center?: boolean;
middle?: boolean;
top?: boolean;
right?: boolean;
bottom?: boolean;
left?: boolean;
}
interface StylingProps {
opacity?: number;
color?: string;
shadow?: boolean;
elevation?: number;
radius?: number;
wrap?: boolean;
style?: Record<string, any>;
theme?: Record<string, any>;
}
declare type StringNumberBoolean = string | number | boolean;
declare type SNB = StringNumberBoolean;
interface ExcludedProps {
margin?: SNB | number[];
marginTop?: SNB;
marginRight?: SNB;
marginBottom?: SNB;
marginLeft?: SNB;
marginVertical?: SNB;
marginHorizontal?: SNB;
padding?: SNB | number[];
paddingTop?: SNB;
paddingRight?: SNB;
paddingBottom?: SNB;
paddingLeft?: SNB;
paddingVertical?: SNB;
paddingHorizontal?: SNB;
}
export interface ThemeProps
extends SizingProps,
PositioningProps,
StylingProps,
ColorsProps,
ExcludedProps {}
/**
* The Subtract type is a difference operator as it does T - K and return the difference.
* @param T - Minuend, base value
* @param K - Subtraend, the props you want to discard
* @returns Rest or difference of the operation
*/
type Subtract<T, K> = Pick<T, Exclude<keyof T, keyof K>>;
export type ExtraProps<P> = Subtract<P, ExcludedProps>;
interface BlockOptions {
animated?: boolean;
safe?: boolean;
card?: boolean;
scroll?: boolean;
}
interface ButtonOptions {
outlined?: boolean;
highlight?: boolean;
nativeFeedback?: boolean;
withoutFeedback?: boolean;
}
interface TextOptions {
animated?: boolean;
weight?: string | boolean;
h1?: boolean;
h2?: boolean;
h3?: boolean;
title?: boolean;
subtitle?: boolean;
caption?: boolean;
small?: boolean;
size?: number;
// styling
transform?: string;
regular?: boolean;
bold?: boolean;
semibold?: boolean;
medium?: boolean;
light?: boolean;
center?: boolean;
right?: boolean;
spacing?: string; // letter-spacing
}
interface CardOptions {
outlined?: boolean;
disabled?: boolean;
}
interface InputOptions {
pattern?: string | string[];
autoCorrect?: any;
autoCapitalize?: any;
placeholder?: string;
internalRef?: any;
type?: string;
onChangeText?(e: InputState);
onFocus?(e: NativeSyntheticEvent<TextInputFocusEventData>);
onBlur?(e: NativeSyntheticEvent<TextInputFocusEventData>);
onValidation?(e: boolean | boolean[]);
}
export type InputState = {
value?: any;
focused?: boolean;
blurred?: boolean;
};
export type InputAction = {
type?: string;
payload?: InputState;
};
/**
* Props
*/
export interface BlockProps extends BlockOptions, ThemeProps {}
export interface ButtonProps extends ButtonOptions, ThemeProps {}
export type ButtonInstanceProps = ButtonProps &
TouchableWithoutFeedbackProps &
TouchableHighlightProps &
TouchableNativeFeedbackProps & {
Touchable?: any;
children: any;
};
export interface TextProps extends TextOptions, ThemeProps {}
export interface CardProps extends CardOptions, ThemeProps {}
export interface InputProps extends InputOptions, ThemeProps {}
export declare const Block: React.FC<BlockProps>;
export declare const styles: {
block: {
flex: number;
};
row: {
flexDirection: "row";
};
column: {
flexDirection: "column";
};
center: {
alignItems: "center";
};
middle: {
justifyContent: "center";
};
left: {
justifyContent: "flex-start";
};
right: {
justifyContent: "flex-end";
};
top: {
justifyContent: "flex-start";
};
bottom: {
justifyContent: "flex-end";
};
wrap: {
flexWrap: "wrap";
};
};
export declare const ButtonInstance: ({
Touchable,
children,
...props
}: ButtonInstanceProps) => JSX.Element;
export declare const Button: React.FC<
ButtonProps & TouchableWithoutFeedbackProps & TouchableNativeFeedbackProps
>;
export declare const Card: React.FC<CardProps>;
export declare const INITIAL_STATE: InputState;
export declare const change: (
value: any
) => {
type: string;
payload: {
value: any;
};
};
export declare const focus: () => {
type: string;
};
export declare const blur: () => {
type: string;
};
export declare const reducer: (
state: InputState,
action: InputAction
) => InputState;
export declare const Input: React.FC<InputProps>;
export declare const Text: React.FC<TextProps>;