@tamagui/helpers 1.0.1-beta.21 → 1.0.1-beta.210

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.
Files changed (68) hide show
  1. package/dist/cjs/clamp.js +1 -2
  2. package/dist/cjs/clamp.js.map +1 -1
  3. package/dist/cjs/composeEventHandlers.js +4 -5
  4. package/dist/cjs/composeEventHandlers.js.map +2 -2
  5. package/dist/cjs/concatClassName.js +4 -5
  6. package/dist/cjs/concatClassName.js.map +2 -2
  7. package/dist/cjs/index.js +2 -1
  8. package/dist/cjs/index.js.map +2 -2
  9. package/dist/cjs/log.js +3 -3
  10. package/dist/cjs/log.js.map +1 -1
  11. package/dist/cjs/types.js +1 -0
  12. package/dist/cjs/types.js.map +2 -2
  13. package/dist/cjs/validStyleProps.js +37 -58
  14. package/dist/cjs/validStyleProps.js.map +2 -2
  15. package/dist/esm/clamp.js +0 -3
  16. package/dist/esm/clamp.js.map +1 -1
  17. package/dist/esm/composeEventHandlers.js +3 -6
  18. package/dist/esm/composeEventHandlers.js.map +2 -2
  19. package/dist/esm/concatClassName.js +3 -6
  20. package/dist/esm/concatClassName.js.map +2 -2
  21. package/dist/esm/index.js +1 -1
  22. package/dist/esm/index.js.map +2 -2
  23. package/dist/esm/log.js +2 -4
  24. package/dist/esm/log.js.map +1 -1
  25. package/dist/esm/types.js +0 -0
  26. package/dist/esm/types.js.map +0 -0
  27. package/dist/esm/validStyleProps.js +3 -18
  28. package/dist/esm/validStyleProps.js.map +2 -2
  29. package/dist/jsx/clamp.js +1 -3
  30. package/dist/jsx/clamp.js.map +7 -0
  31. package/dist/jsx/composeEventHandlers.js +6 -8
  32. package/dist/jsx/composeEventHandlers.js.map +7 -0
  33. package/dist/jsx/concatClassName.js +4 -6
  34. package/dist/jsx/concatClassName.js.map +7 -0
  35. package/dist/jsx/index.js +2 -1
  36. package/dist/jsx/index.js.map +7 -0
  37. package/dist/jsx/log.js +3 -4
  38. package/dist/jsx/log.js.map +7 -0
  39. package/dist/jsx/types.js +1 -0
  40. package/dist/jsx/types.js.map +7 -0
  41. package/dist/jsx/validStyleProps.js +4 -18
  42. package/dist/jsx/validStyleProps.js.map +7 -0
  43. package/package.json +13 -8
  44. package/src/clamp.ts +3 -0
  45. package/src/composeEventHandlers.ts +22 -0
  46. package/src/concatClassName.ts +97 -0
  47. package/src/index.ts +6 -0
  48. package/src/types.ts +7 -0
  49. package/src/validStyleProps.ts +165 -0
  50. package/types/composeEventHandlers.d.ts +4 -4
  51. package/types/concatClassName.d.ts +6 -0
  52. package/types/index.d.ts +1 -1
  53. package/types/simpleHash.d.ts +2 -1
  54. package/types/types.d.ts +1 -1
  55. package/types/validStyleProps.d.ts +503 -507
  56. package/dist/cjs/simpleHash.js +0 -37
  57. package/dist/cjs/simpleHash.js.map +0 -7
  58. package/dist/esm/simpleHash.js +0 -15
  59. package/dist/esm/simpleHash.js.map +0 -7
  60. package/dist/jsx/simpleHash.js +0 -14
  61. package/types/clamp.d.ts.map +0 -1
  62. package/types/composeEventHandlers.d.ts.map +0 -1
  63. package/types/concatClassName.d.ts.map +0 -1
  64. package/types/index.d.ts.map +0 -1
  65. package/types/log.d.ts.map +0 -1
  66. package/types/simpleHash.d.ts.map +0 -1
  67. package/types/types.d.ts.map +0 -1
  68. package/types/validStyleProps.d.ts.map +0 -1
@@ -1,522 +1,518 @@
1
- import { ViewStyle } from 'react-native';
2
1
  export declare const stylePropsTransform: Readonly<{
3
- x: boolean;
4
- y: boolean;
5
- scale: boolean;
6
- perspective: boolean;
7
- scaleX: boolean;
8
- scaleY: boolean;
9
- skewX: boolean;
10
- skewY: boolean;
11
- matrix: boolean;
12
- rotate: boolean;
13
- rotateY: boolean;
14
- rotateX: boolean;
15
- rotateZ: boolean;
2
+ x: true;
3
+ y: true;
4
+ scale: true;
5
+ perspective: true;
6
+ scaleX: true;
7
+ scaleY: true;
8
+ skewX: true;
9
+ skewY: true;
10
+ matrix: true;
11
+ rotate: true;
12
+ rotateY: true;
13
+ rotateX: true;
14
+ rotateZ: true;
16
15
  }>;
17
16
  export declare const stylePropsView: Readonly<{
18
- overflowX?: boolean | undefined;
19
- overflowY?: boolean | undefined;
20
- userSelect?: boolean | undefined;
21
- cursor?: boolean | undefined;
22
- contain?: boolean | undefined;
23
- pointerEvents?: boolean | undefined;
24
- boxSizing?: boolean | undefined;
25
- boxShadow?: boolean | undefined;
26
- x: boolean;
27
- y: boolean;
28
- scale: boolean;
29
- perspective: boolean;
30
- scaleX: boolean;
31
- scaleY: boolean;
32
- skewX: boolean;
33
- skewY: boolean;
34
- matrix: boolean;
35
- rotate: boolean;
36
- rotateY: boolean;
37
- rotateX: boolean;
38
- rotateZ: boolean;
39
- backfaceVisibility: boolean;
40
- backgroundColor: boolean;
41
- borderBottomColor: boolean;
42
- borderBottomStyle: boolean;
43
- borderTopStyle: boolean;
44
- borderLeftStyle: boolean;
45
- borderRightStyle: boolean;
46
- borderBottomEndRadius: boolean;
47
- borderBottomLeftRadius: boolean;
48
- borderBottomRightRadius: boolean;
49
- borderBottomStartRadius: boolean;
50
- borderBottomWidth: boolean;
51
- borderColor: boolean;
52
- borderEndColor: boolean;
53
- borderLeftColor: boolean;
54
- borderLeftWidth: boolean;
55
- borderRadius: boolean;
56
- borderRightColor: boolean;
57
- borderRightWidth: boolean;
58
- borderStartColor: boolean;
59
- borderStyle: boolean;
60
- borderTopColor: boolean;
61
- borderTopEndRadius: boolean;
62
- borderTopLeftRadius: boolean;
63
- borderTopRightRadius: boolean;
64
- borderTopStartRadius: boolean;
65
- borderTopWidth: boolean;
66
- borderWidth: boolean;
67
- opacity: boolean;
68
- transform: boolean;
69
- alignContent: boolean;
70
- alignItems: boolean;
71
- alignSelf: boolean;
72
- aspectRatio: boolean;
73
- borderEndWidth: boolean;
74
- borderStartWidth: boolean;
75
- bottom: boolean;
76
- display: boolean;
77
- end: boolean;
78
- flex: boolean;
79
- flexBasis: boolean;
80
- flexDirection: boolean;
81
- flexGrow: boolean;
82
- flexShrink: boolean;
83
- flexWrap: boolean;
84
- height: boolean;
85
- justifyContent: boolean;
86
- left: boolean;
87
- margin: boolean;
88
- marginBottom: boolean;
89
- marginEnd: boolean;
90
- marginHorizontal: boolean;
91
- marginLeft: boolean;
92
- marginRight: boolean;
93
- marginStart: boolean;
94
- marginTop: boolean;
95
- marginVertical: boolean;
96
- maxHeight: boolean;
97
- maxWidth: boolean;
98
- minHeight: boolean;
99
- minWidth: boolean;
100
- overflow: boolean;
101
- padding: boolean;
102
- paddingBottom: boolean;
103
- paddingEnd: boolean;
104
- paddingHorizontal: boolean;
105
- paddingLeft: boolean;
106
- paddingRight: boolean;
107
- paddingStart: boolean;
108
- paddingTop: boolean;
109
- paddingVertical: boolean;
110
- position: boolean;
111
- right: boolean;
112
- start: boolean;
113
- top: boolean;
114
- width: boolean;
115
- zIndex: boolean;
116
- direction: boolean;
117
- shadowColor: boolean;
118
- shadowOffset: boolean;
119
- shadowOpacity: boolean;
120
- shadowRadius: boolean;
17
+ overflowX?: true | undefined;
18
+ overflowY?: true | undefined;
19
+ userSelect?: true | undefined;
20
+ cursor?: true | undefined;
21
+ contain?: true | undefined;
22
+ pointerEvents?: true | undefined;
23
+ boxSizing?: true | undefined;
24
+ boxShadow?: true | undefined;
25
+ x: true;
26
+ y: true;
27
+ scale: true;
28
+ perspective: true;
29
+ scaleX: true;
30
+ scaleY: true;
31
+ skewX: true;
32
+ skewY: true;
33
+ matrix: true;
34
+ rotate: true;
35
+ rotateY: true;
36
+ rotateX: true;
37
+ rotateZ: true;
38
+ backfaceVisibility: true;
39
+ backgroundColor: true;
40
+ borderBottomColor: true;
41
+ borderBottomStyle: true;
42
+ borderTopStyle: true;
43
+ borderLeftStyle: true;
44
+ borderRightStyle: true;
45
+ borderBottomEndRadius: true;
46
+ borderBottomLeftRadius: true;
47
+ borderBottomRightRadius: true;
48
+ borderBottomStartRadius: true;
49
+ borderBottomWidth: true;
50
+ borderColor: true;
51
+ borderEndColor: true;
52
+ borderLeftColor: true;
53
+ borderLeftWidth: true;
54
+ borderRadius: true;
55
+ borderRightColor: true;
56
+ borderRightWidth: true;
57
+ borderStartColor: true;
58
+ borderStyle: true;
59
+ borderTopColor: true;
60
+ borderTopEndRadius: true;
61
+ borderTopLeftRadius: true;
62
+ borderTopRightRadius: true;
63
+ borderTopStartRadius: true;
64
+ borderTopWidth: true;
65
+ borderWidth: true;
66
+ opacity: true;
67
+ transform: true;
68
+ alignContent: true;
69
+ alignItems: true;
70
+ alignSelf: true;
71
+ aspectRatio: true;
72
+ borderEndWidth: true;
73
+ borderStartWidth: true;
74
+ bottom: true;
75
+ display: true;
76
+ end: true;
77
+ flex: true;
78
+ flexBasis: true;
79
+ flexDirection: true;
80
+ flexGrow: true;
81
+ flexShrink: true;
82
+ flexWrap: true;
83
+ height: true;
84
+ justifyContent: true;
85
+ left: true;
86
+ margin: true;
87
+ marginBottom: true;
88
+ marginEnd: true;
89
+ marginHorizontal: true;
90
+ marginLeft: true;
91
+ marginRight: true;
92
+ marginStart: true;
93
+ marginTop: true;
94
+ marginVertical: true;
95
+ maxHeight: true;
96
+ maxWidth: true;
97
+ minHeight: true;
98
+ minWidth: true;
99
+ overflow: true;
100
+ padding: true;
101
+ paddingBottom: true;
102
+ paddingEnd: true;
103
+ paddingHorizontal: true;
104
+ paddingLeft: true;
105
+ paddingRight: true;
106
+ paddingStart: true;
107
+ paddingTop: true;
108
+ paddingVertical: true;
109
+ position: true;
110
+ right: true;
111
+ start: true;
112
+ top: true;
113
+ width: true;
114
+ zIndex: true;
115
+ direction: true;
116
+ shadowColor: true;
117
+ shadowOffset: true;
118
+ shadowOpacity: true;
119
+ shadowRadius: true;
121
120
  }>;
122
121
  export declare const stylePropsTextOnly: Readonly<{
123
- whiteSpace?: boolean | undefined;
124
- wordWrap?: boolean | undefined;
125
- textOverflow?: boolean | undefined;
126
- textDecorationDistance?: boolean | undefined;
127
- userSelect?: boolean | undefined;
128
- selectable?: boolean | undefined;
129
- cursor?: boolean | undefined;
130
- color: boolean;
131
- fontFamily: boolean;
132
- fontSize: boolean;
133
- fontStyle: boolean;
134
- fontWeight: boolean;
135
- letterSpacing: boolean;
136
- lineHeight: boolean;
137
- textAlign: boolean;
138
- textDecorationLine: boolean;
139
- textDecorationStyle: boolean;
140
- textDecorationColor: boolean;
141
- textShadowColor: boolean;
142
- textShadowOffset: boolean;
143
- textShadowRadius: boolean;
144
- textTransform: boolean;
122
+ whiteSpace?: true | undefined;
123
+ wordWrap?: true | undefined;
124
+ textOverflow?: true | undefined;
125
+ textDecorationDistance?: true | undefined;
126
+ userSelect?: true | undefined;
127
+ selectable?: true | undefined;
128
+ cursor?: true | undefined;
129
+ WebkitLineClamp?: true | undefined;
130
+ WebkitBoxOrient?: true | undefined;
131
+ color: true;
132
+ fontFamily: true;
133
+ fontSize: true;
134
+ fontStyle: true;
135
+ fontWeight: true;
136
+ letterSpacing: true;
137
+ lineHeight: true;
138
+ textAlign: true;
139
+ textDecorationLine: true;
140
+ textDecorationStyle: true;
141
+ textDecorationColor: true;
142
+ textShadowColor: true;
143
+ textShadowOffset: true;
144
+ textShadowRadius: true;
145
+ textTransform: true;
145
146
  }>;
146
147
  export declare const stylePropsText: Readonly<{
147
- whiteSpace?: boolean | undefined;
148
- wordWrap?: boolean | undefined;
149
- textOverflow?: boolean | undefined;
150
- textDecorationDistance?: boolean | undefined;
151
- userSelect?: boolean | undefined;
152
- selectable?: boolean | undefined;
153
- cursor?: boolean | undefined;
154
- color: boolean;
155
- fontFamily: boolean;
156
- fontSize: boolean;
157
- fontStyle: boolean;
158
- fontWeight: boolean;
159
- letterSpacing: boolean;
160
- lineHeight: boolean;
161
- textAlign: boolean;
162
- textDecorationLine: boolean;
163
- textDecorationStyle: boolean;
164
- textDecorationColor: boolean;
165
- textShadowColor: boolean;
166
- textShadowOffset: boolean;
167
- textShadowRadius: boolean;
168
- textTransform: boolean;
169
- overflowX?: boolean | undefined;
170
- overflowY?: boolean | undefined;
171
- contain?: boolean | undefined;
172
- pointerEvents?: boolean | undefined;
173
- boxSizing?: boolean | undefined;
174
- boxShadow?: boolean | undefined;
175
- x: boolean;
176
- y: boolean;
177
- scale: boolean;
178
- perspective: boolean;
179
- scaleX: boolean;
180
- scaleY: boolean;
181
- skewX: boolean;
182
- skewY: boolean;
183
- matrix: boolean;
184
- rotate: boolean;
185
- rotateY: boolean;
186
- rotateX: boolean;
187
- rotateZ: boolean;
188
- backfaceVisibility: boolean;
189
- backgroundColor: boolean;
190
- borderBottomColor: boolean;
191
- borderBottomStyle: boolean;
192
- borderTopStyle: boolean;
193
- borderLeftStyle: boolean;
194
- borderRightStyle: boolean;
195
- borderBottomEndRadius: boolean;
196
- borderBottomLeftRadius: boolean;
197
- borderBottomRightRadius: boolean;
198
- borderBottomStartRadius: boolean;
199
- borderBottomWidth: boolean;
200
- borderColor: boolean;
201
- borderEndColor: boolean;
202
- borderLeftColor: boolean;
203
- borderLeftWidth: boolean;
204
- borderRadius: boolean;
205
- borderRightColor: boolean;
206
- borderRightWidth: boolean;
207
- borderStartColor: boolean;
208
- borderStyle: boolean;
209
- borderTopColor: boolean;
210
- borderTopEndRadius: boolean;
211
- borderTopLeftRadius: boolean;
212
- borderTopRightRadius: boolean;
213
- borderTopStartRadius: boolean;
214
- borderTopWidth: boolean;
215
- borderWidth: boolean;
216
- opacity: boolean;
217
- transform: boolean;
218
- alignContent: boolean;
219
- alignItems: boolean;
220
- alignSelf: boolean;
221
- aspectRatio: boolean;
222
- borderEndWidth: boolean;
223
- borderStartWidth: boolean;
224
- bottom: boolean;
225
- display: boolean;
226
- end: boolean;
227
- flex: boolean;
228
- flexBasis: boolean;
229
- flexDirection: boolean;
230
- flexGrow: boolean;
231
- flexShrink: boolean;
232
- flexWrap: boolean;
233
- height: boolean;
234
- justifyContent: boolean;
235
- left: boolean;
236
- margin: boolean;
237
- marginBottom: boolean;
238
- marginEnd: boolean;
239
- marginHorizontal: boolean;
240
- marginLeft: boolean;
241
- marginRight: boolean;
242
- marginStart: boolean;
243
- marginTop: boolean;
244
- marginVertical: boolean;
245
- maxHeight: boolean;
246
- maxWidth: boolean;
247
- minHeight: boolean;
248
- minWidth: boolean;
249
- overflow: boolean;
250
- padding: boolean;
251
- paddingBottom: boolean;
252
- paddingEnd: boolean;
253
- paddingHorizontal: boolean;
254
- paddingLeft: boolean;
255
- paddingRight: boolean;
256
- paddingStart: boolean;
257
- paddingTop: boolean;
258
- paddingVertical: boolean;
259
- position: boolean;
260
- right: boolean;
261
- start: boolean;
262
- top: boolean;
263
- width: boolean;
264
- zIndex: boolean;
265
- direction: boolean;
266
- shadowColor: boolean;
267
- shadowOffset: boolean;
268
- shadowOpacity: boolean;
269
- shadowRadius: boolean;
148
+ whiteSpace?: true | undefined;
149
+ wordWrap?: true | undefined;
150
+ textOverflow?: true | undefined;
151
+ textDecorationDistance?: true | undefined;
152
+ userSelect?: true | undefined;
153
+ selectable?: true | undefined;
154
+ cursor?: true | undefined;
155
+ WebkitLineClamp?: true | undefined;
156
+ WebkitBoxOrient?: true | undefined;
157
+ color: true;
158
+ fontFamily: true;
159
+ fontSize: true;
160
+ fontStyle: true;
161
+ fontWeight: true;
162
+ letterSpacing: true;
163
+ lineHeight: true;
164
+ textAlign: true;
165
+ textDecorationLine: true;
166
+ textDecorationStyle: true;
167
+ textDecorationColor: true;
168
+ textShadowColor: true;
169
+ textShadowOffset: true;
170
+ textShadowRadius: true;
171
+ textTransform: true;
172
+ overflowX?: true | undefined;
173
+ overflowY?: true | undefined;
174
+ contain?: true | undefined;
175
+ pointerEvents?: true | undefined;
176
+ boxSizing?: true | undefined;
177
+ boxShadow?: true | undefined;
178
+ x: true;
179
+ y: true;
180
+ scale: true;
181
+ perspective: true;
182
+ scaleX: true;
183
+ scaleY: true;
184
+ skewX: true;
185
+ skewY: true;
186
+ matrix: true;
187
+ rotate: true;
188
+ rotateY: true;
189
+ rotateX: true;
190
+ rotateZ: true;
191
+ backfaceVisibility: true;
192
+ backgroundColor: true;
193
+ borderBottomColor: true;
194
+ borderBottomStyle: true;
195
+ borderTopStyle: true;
196
+ borderLeftStyle: true;
197
+ borderRightStyle: true;
198
+ borderBottomEndRadius: true;
199
+ borderBottomLeftRadius: true;
200
+ borderBottomRightRadius: true;
201
+ borderBottomStartRadius: true;
202
+ borderBottomWidth: true;
203
+ borderColor: true;
204
+ borderEndColor: true;
205
+ borderLeftColor: true;
206
+ borderLeftWidth: true;
207
+ borderRadius: true;
208
+ borderRightColor: true;
209
+ borderRightWidth: true;
210
+ borderStartColor: true;
211
+ borderStyle: true;
212
+ borderTopColor: true;
213
+ borderTopEndRadius: true;
214
+ borderTopLeftRadius: true;
215
+ borderTopRightRadius: true;
216
+ borderTopStartRadius: true;
217
+ borderTopWidth: true;
218
+ borderWidth: true;
219
+ opacity: true;
220
+ transform: true;
221
+ alignContent: true;
222
+ alignItems: true;
223
+ alignSelf: true;
224
+ aspectRatio: true;
225
+ borderEndWidth: true;
226
+ borderStartWidth: true;
227
+ bottom: true;
228
+ display: true;
229
+ end: true;
230
+ flex: true;
231
+ flexBasis: true;
232
+ flexDirection: true;
233
+ flexGrow: true;
234
+ flexShrink: true;
235
+ flexWrap: true;
236
+ height: true;
237
+ justifyContent: true;
238
+ left: true;
239
+ margin: true;
240
+ marginBottom: true;
241
+ marginEnd: true;
242
+ marginHorizontal: true;
243
+ marginLeft: true;
244
+ marginRight: true;
245
+ marginStart: true;
246
+ marginTop: true;
247
+ marginVertical: true;
248
+ maxHeight: true;
249
+ maxWidth: true;
250
+ minHeight: true;
251
+ minWidth: true;
252
+ overflow: true;
253
+ padding: true;
254
+ paddingBottom: true;
255
+ paddingEnd: true;
256
+ paddingHorizontal: true;
257
+ paddingLeft: true;
258
+ paddingRight: true;
259
+ paddingStart: true;
260
+ paddingTop: true;
261
+ paddingVertical: true;
262
+ position: true;
263
+ right: true;
264
+ start: true;
265
+ top: true;
266
+ width: true;
267
+ zIndex: true;
268
+ direction: true;
269
+ shadowColor: true;
270
+ shadowOffset: true;
271
+ shadowOpacity: true;
272
+ shadowRadius: true;
270
273
  }>;
271
274
  export declare const stylePropsAll: Readonly<{
272
- whiteSpace?: boolean | undefined;
273
- wordWrap?: boolean | undefined;
274
- textOverflow?: boolean | undefined;
275
- textDecorationDistance?: boolean | undefined;
276
- userSelect?: boolean | undefined;
277
- selectable?: boolean | undefined;
278
- cursor?: boolean | undefined;
279
- color: boolean;
280
- fontFamily: boolean;
281
- fontSize: boolean;
282
- fontStyle: boolean;
283
- fontWeight: boolean;
284
- letterSpacing: boolean;
285
- lineHeight: boolean;
286
- textAlign: boolean;
287
- textDecorationLine: boolean;
288
- textDecorationStyle: boolean;
289
- textDecorationColor: boolean;
290
- textShadowColor: boolean;
291
- textShadowOffset: boolean;
292
- textShadowRadius: boolean;
293
- textTransform: boolean;
294
- overflowX?: boolean | undefined;
295
- overflowY?: boolean | undefined;
296
- contain?: boolean | undefined;
297
- pointerEvents?: boolean | undefined;
298
- boxSizing?: boolean | undefined;
299
- boxShadow?: boolean | undefined;
300
- x: boolean;
301
- y: boolean;
302
- scale: boolean;
303
- perspective: boolean;
304
- scaleX: boolean;
305
- scaleY: boolean;
306
- skewX: boolean;
307
- skewY: boolean;
308
- matrix: boolean;
309
- rotate: boolean;
310
- rotateY: boolean;
311
- rotateX: boolean;
312
- rotateZ: boolean;
313
- backfaceVisibility: boolean;
314
- backgroundColor: boolean;
315
- borderBottomColor: boolean;
316
- borderBottomStyle: boolean;
317
- borderTopStyle: boolean;
318
- borderLeftStyle: boolean;
319
- borderRightStyle: boolean;
320
- borderBottomEndRadius: boolean;
321
- borderBottomLeftRadius: boolean;
322
- borderBottomRightRadius: boolean;
323
- borderBottomStartRadius: boolean;
324
- borderBottomWidth: boolean;
325
- borderColor: boolean;
326
- borderEndColor: boolean;
327
- borderLeftColor: boolean;
328
- borderLeftWidth: boolean;
329
- borderRadius: boolean;
330
- borderRightColor: boolean;
331
- borderRightWidth: boolean;
332
- borderStartColor: boolean;
333
- borderStyle: boolean;
334
- borderTopColor: boolean;
335
- borderTopEndRadius: boolean;
336
- borderTopLeftRadius: boolean;
337
- borderTopRightRadius: boolean;
338
- borderTopStartRadius: boolean;
339
- borderTopWidth: boolean;
340
- borderWidth: boolean;
341
- opacity: boolean;
342
- transform: boolean;
343
- alignContent: boolean;
344
- alignItems: boolean;
345
- alignSelf: boolean;
346
- aspectRatio: boolean;
347
- borderEndWidth: boolean;
348
- borderStartWidth: boolean;
349
- bottom: boolean;
350
- display: boolean;
351
- end: boolean;
352
- flex: boolean;
353
- flexBasis: boolean;
354
- flexDirection: boolean;
355
- flexGrow: boolean;
356
- flexShrink: boolean;
357
- flexWrap: boolean;
358
- height: boolean;
359
- justifyContent: boolean;
360
- left: boolean;
361
- margin: boolean;
362
- marginBottom: boolean;
363
- marginEnd: boolean;
364
- marginHorizontal: boolean;
365
- marginLeft: boolean;
366
- marginRight: boolean;
367
- marginStart: boolean;
368
- marginTop: boolean;
369
- marginVertical: boolean;
370
- maxHeight: boolean;
371
- maxWidth: boolean;
372
- minHeight: boolean;
373
- minWidth: boolean;
374
- overflow: boolean;
375
- padding: boolean;
376
- paddingBottom: boolean;
377
- paddingEnd: boolean;
378
- paddingHorizontal: boolean;
379
- paddingLeft: boolean;
380
- paddingRight: boolean;
381
- paddingStart: boolean;
382
- paddingTop: boolean;
383
- paddingVertical: boolean;
384
- position: boolean;
385
- right: boolean;
386
- start: boolean;
387
- top: boolean;
388
- width: boolean;
389
- zIndex: boolean;
390
- direction: boolean;
391
- shadowColor: boolean;
392
- shadowOffset: boolean;
393
- shadowOpacity: boolean;
394
- shadowRadius: boolean;
275
+ whiteSpace?: true | undefined;
276
+ wordWrap?: true | undefined;
277
+ textOverflow?: true | undefined;
278
+ textDecorationDistance?: true | undefined;
279
+ userSelect?: true | undefined;
280
+ selectable?: true | undefined;
281
+ cursor?: true | undefined;
282
+ WebkitLineClamp?: true | undefined;
283
+ WebkitBoxOrient?: true | undefined;
284
+ color: true;
285
+ fontFamily: true;
286
+ fontSize: true;
287
+ fontStyle: true;
288
+ fontWeight: true;
289
+ letterSpacing: true;
290
+ lineHeight: true;
291
+ textAlign: true;
292
+ textDecorationLine: true;
293
+ textDecorationStyle: true;
294
+ textDecorationColor: true;
295
+ textShadowColor: true;
296
+ textShadowOffset: true;
297
+ textShadowRadius: true;
298
+ textTransform: true;
299
+ overflowX?: true | undefined;
300
+ overflowY?: true | undefined;
301
+ contain?: true | undefined;
302
+ pointerEvents?: true | undefined;
303
+ boxSizing?: true | undefined;
304
+ boxShadow?: true | undefined;
305
+ x: true;
306
+ y: true;
307
+ scale: true;
308
+ perspective: true;
309
+ scaleX: true;
310
+ scaleY: true;
311
+ skewX: true;
312
+ skewY: true;
313
+ matrix: true;
314
+ rotate: true;
315
+ rotateY: true;
316
+ rotateX: true;
317
+ rotateZ: true;
318
+ backfaceVisibility: true;
319
+ backgroundColor: true;
320
+ borderBottomColor: true;
321
+ borderBottomStyle: true;
322
+ borderTopStyle: true;
323
+ borderLeftStyle: true;
324
+ borderRightStyle: true;
325
+ borderBottomEndRadius: true;
326
+ borderBottomLeftRadius: true;
327
+ borderBottomRightRadius: true;
328
+ borderBottomStartRadius: true;
329
+ borderBottomWidth: true;
330
+ borderColor: true;
331
+ borderEndColor: true;
332
+ borderLeftColor: true;
333
+ borderLeftWidth: true;
334
+ borderRadius: true;
335
+ borderRightColor: true;
336
+ borderRightWidth: true;
337
+ borderStartColor: true;
338
+ borderStyle: true;
339
+ borderTopColor: true;
340
+ borderTopEndRadius: true;
341
+ borderTopLeftRadius: true;
342
+ borderTopRightRadius: true;
343
+ borderTopStartRadius: true;
344
+ borderTopWidth: true;
345
+ borderWidth: true;
346
+ opacity: true;
347
+ transform: true;
348
+ alignContent: true;
349
+ alignItems: true;
350
+ alignSelf: true;
351
+ aspectRatio: true;
352
+ borderEndWidth: true;
353
+ borderStartWidth: true;
354
+ bottom: true;
355
+ display: true;
356
+ end: true;
357
+ flex: true;
358
+ flexBasis: true;
359
+ flexDirection: true;
360
+ flexGrow: true;
361
+ flexShrink: true;
362
+ flexWrap: true;
363
+ height: true;
364
+ justifyContent: true;
365
+ left: true;
366
+ margin: true;
367
+ marginBottom: true;
368
+ marginEnd: true;
369
+ marginHorizontal: true;
370
+ marginLeft: true;
371
+ marginRight: true;
372
+ marginStart: true;
373
+ marginTop: true;
374
+ marginVertical: true;
375
+ maxHeight: true;
376
+ maxWidth: true;
377
+ minHeight: true;
378
+ minWidth: true;
379
+ overflow: true;
380
+ padding: true;
381
+ paddingBottom: true;
382
+ paddingEnd: true;
383
+ paddingHorizontal: true;
384
+ paddingLeft: true;
385
+ paddingRight: true;
386
+ paddingStart: true;
387
+ paddingTop: true;
388
+ paddingVertical: true;
389
+ position: true;
390
+ right: true;
391
+ start: true;
392
+ top: true;
393
+ width: true;
394
+ zIndex: true;
395
+ direction: true;
396
+ shadowColor: true;
397
+ shadowOffset: true;
398
+ shadowOpacity: true;
399
+ shadowRadius: true;
395
400
  }>;
396
401
  export declare const validPseudoKeys: Readonly<{
397
- enterStyle: boolean;
398
- exitStyle: boolean;
399
- hoverStyle: boolean;
400
- pressStyle: boolean;
401
- focusStyle: boolean;
402
+ enterStyle: true;
403
+ exitStyle: true;
404
+ hoverStyle: true;
405
+ pressStyle: true;
406
+ focusStyle: true;
402
407
  }>;
403
408
  export declare const validStyles: Readonly<{
404
- overflowX?: boolean | undefined;
405
- overflowY?: boolean | undefined;
406
- userSelect?: boolean | undefined;
407
- cursor?: boolean | undefined;
408
- contain?: boolean | undefined;
409
- pointerEvents?: boolean | undefined;
410
- boxSizing?: boolean | undefined;
411
- boxShadow?: boolean | undefined;
412
- x: boolean;
413
- y: boolean;
414
- scale: boolean;
415
- perspective: boolean;
416
- scaleX: boolean;
417
- scaleY: boolean;
418
- skewX: boolean;
419
- skewY: boolean;
420
- matrix: boolean;
421
- rotate: boolean;
422
- rotateY: boolean;
423
- rotateX: boolean;
424
- rotateZ: boolean;
425
- backfaceVisibility: boolean;
426
- backgroundColor: boolean;
427
- borderBottomColor: boolean;
428
- borderBottomStyle: boolean;
429
- borderTopStyle: boolean;
430
- borderLeftStyle: boolean;
431
- borderRightStyle: boolean;
432
- borderBottomEndRadius: boolean;
433
- borderBottomLeftRadius: boolean;
434
- borderBottomRightRadius: boolean;
435
- borderBottomStartRadius: boolean;
436
- borderBottomWidth: boolean;
437
- borderColor: boolean;
438
- borderEndColor: boolean;
439
- borderLeftColor: boolean;
440
- borderLeftWidth: boolean;
441
- borderRadius: boolean;
442
- borderRightColor: boolean;
443
- borderRightWidth: boolean;
444
- borderStartColor: boolean;
445
- borderStyle: boolean;
446
- borderTopColor: boolean;
447
- borderTopEndRadius: boolean;
448
- borderTopLeftRadius: boolean;
449
- borderTopRightRadius: boolean;
450
- borderTopStartRadius: boolean;
451
- borderTopWidth: boolean;
452
- borderWidth: boolean;
453
- opacity: boolean;
454
- transform: boolean;
455
- alignContent: boolean;
456
- alignItems: boolean;
457
- alignSelf: boolean;
458
- aspectRatio: boolean;
459
- borderEndWidth: boolean;
460
- borderStartWidth: boolean;
461
- bottom: boolean;
462
- display: boolean;
463
- end: boolean;
464
- flex: boolean;
465
- flexBasis: boolean;
466
- flexDirection: boolean;
467
- flexGrow: boolean;
468
- flexShrink: boolean;
469
- flexWrap: boolean;
470
- height: boolean;
471
- justifyContent: boolean;
472
- left: boolean;
473
- margin: boolean;
474
- marginBottom: boolean;
475
- marginEnd: boolean;
476
- marginHorizontal: boolean;
477
- marginLeft: boolean;
478
- marginRight: boolean;
479
- marginStart: boolean;
480
- marginTop: boolean;
481
- marginVertical: boolean;
482
- maxHeight: boolean;
483
- maxWidth: boolean;
484
- minHeight: boolean;
485
- minWidth: boolean;
486
- overflow: boolean;
487
- padding: boolean;
488
- paddingBottom: boolean;
489
- paddingEnd: boolean;
490
- paddingHorizontal: boolean;
491
- paddingLeft: boolean;
492
- paddingRight: boolean;
493
- paddingStart: boolean;
494
- paddingTop: boolean;
495
- paddingVertical: boolean;
496
- position: boolean;
497
- right: boolean;
498
- start: boolean;
499
- top: boolean;
500
- width: boolean;
501
- zIndex: boolean;
502
- direction: boolean;
503
- shadowColor: boolean;
504
- shadowOffset: boolean;
505
- shadowOpacity: boolean;
506
- shadowRadius: boolean;
507
- enterStyle: boolean;
508
- exitStyle: boolean;
509
- hoverStyle: boolean;
510
- pressStyle: boolean;
511
- focusStyle: boolean;
409
+ overflowX?: true | undefined;
410
+ overflowY?: true | undefined;
411
+ userSelect?: true | undefined;
412
+ cursor?: true | undefined;
413
+ contain?: true | undefined;
414
+ pointerEvents?: true | undefined;
415
+ boxSizing?: true | undefined;
416
+ boxShadow?: true | undefined;
417
+ x: true;
418
+ y: true;
419
+ scale: true;
420
+ perspective: true;
421
+ scaleX: true;
422
+ scaleY: true;
423
+ skewX: true;
424
+ skewY: true;
425
+ matrix: true;
426
+ rotate: true;
427
+ rotateY: true;
428
+ rotateX: true;
429
+ rotateZ: true;
430
+ backfaceVisibility: true;
431
+ backgroundColor: true;
432
+ borderBottomColor: true;
433
+ borderBottomStyle: true;
434
+ borderTopStyle: true;
435
+ borderLeftStyle: true;
436
+ borderRightStyle: true;
437
+ borderBottomEndRadius: true;
438
+ borderBottomLeftRadius: true;
439
+ borderBottomRightRadius: true;
440
+ borderBottomStartRadius: true;
441
+ borderBottomWidth: true;
442
+ borderColor: true;
443
+ borderEndColor: true;
444
+ borderLeftColor: true;
445
+ borderLeftWidth: true;
446
+ borderRadius: true;
447
+ borderRightColor: true;
448
+ borderRightWidth: true;
449
+ borderStartColor: true;
450
+ borderStyle: true;
451
+ borderTopColor: true;
452
+ borderTopEndRadius: true;
453
+ borderTopLeftRadius: true;
454
+ borderTopRightRadius: true;
455
+ borderTopStartRadius: true;
456
+ borderTopWidth: true;
457
+ borderWidth: true;
458
+ opacity: true;
459
+ transform: true;
460
+ alignContent: true;
461
+ alignItems: true;
462
+ alignSelf: true;
463
+ aspectRatio: true;
464
+ borderEndWidth: true;
465
+ borderStartWidth: true;
466
+ bottom: true;
467
+ display: true;
468
+ end: true;
469
+ flex: true;
470
+ flexBasis: true;
471
+ flexDirection: true;
472
+ flexGrow: true;
473
+ flexShrink: true;
474
+ flexWrap: true;
475
+ height: true;
476
+ justifyContent: true;
477
+ left: true;
478
+ margin: true;
479
+ marginBottom: true;
480
+ marginEnd: true;
481
+ marginHorizontal: true;
482
+ marginLeft: true;
483
+ marginRight: true;
484
+ marginStart: true;
485
+ marginTop: true;
486
+ marginVertical: true;
487
+ maxHeight: true;
488
+ maxWidth: true;
489
+ minHeight: true;
490
+ minWidth: true;
491
+ overflow: true;
492
+ padding: true;
493
+ paddingBottom: true;
494
+ paddingEnd: true;
495
+ paddingHorizontal: true;
496
+ paddingLeft: true;
497
+ paddingRight: true;
498
+ paddingStart: true;
499
+ paddingTop: true;
500
+ paddingVertical: true;
501
+ position: true;
502
+ right: true;
503
+ start: true;
504
+ top: true;
505
+ width: true;
506
+ zIndex: true;
507
+ direction: true;
508
+ shadowColor: true;
509
+ shadowOffset: true;
510
+ shadowOpacity: true;
511
+ shadowRadius: true;
512
+ enterStyle: true;
513
+ exitStyle: true;
514
+ hoverStyle: true;
515
+ pressStyle: true;
516
+ focusStyle: true;
512
517
  }>;
513
- export declare const mapTransformKeys: {
514
- x: string;
515
- y: string;
516
- };
517
- export declare const invertMapTransformKeys: {
518
- translateX: string;
519
- translateY: string;
520
- };
521
- export declare const mergeTransform: (obj: ViewStyle, key: string, val: any) => void;
522
518
  //# sourceMappingURL=validStyleProps.d.ts.map