@tamagui/input 1.125.8 → 1.125.9
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/cjs/Input.cjs +2 -2
- package/dist/cjs/Input.js +1 -1
- package/dist/cjs/Input.js.map +1 -1
- package/dist/cjs/shared.cjs +1 -4
- package/dist/cjs/shared.js +1 -4
- package/dist/cjs/shared.js.map +1 -1
- package/dist/cjs/shared.native.js +1 -4
- package/dist/cjs/shared.native.js.map +2 -2
- package/dist/esm/Input.js +1 -1
- package/dist/esm/Input.js.map +1 -1
- package/dist/esm/Input.mjs +1 -1
- package/dist/esm/Input.mjs.map +1 -1
- package/dist/esm/shared.js +2 -5
- package/dist/esm/shared.js.map +1 -1
- package/dist/esm/shared.mjs +2 -5
- package/dist/esm/shared.mjs.map +1 -1
- package/dist/esm/shared.native.js +2 -5
- package/dist/esm/shared.native.js.map +1 -1
- package/dist/jsx/Input.js +1 -1
- package/dist/jsx/Input.js.map +1 -1
- package/dist/jsx/Input.mjs +1 -1
- package/dist/jsx/Input.mjs.map +1 -1
- package/dist/jsx/shared.js +2 -5
- package/dist/jsx/shared.js.map +1 -1
- package/dist/jsx/shared.mjs +2 -5
- package/dist/jsx/shared.mjs.map +1 -1
- package/dist/jsx/shared.native.js +2 -5
- package/dist/jsx/shared.native.js.map +2 -2
- package/package.json +11 -11
- package/src/Input.tsx +2 -3
- package/src/shared.tsx +4 -5
- package/types/Input.d.ts +4 -256
- package/types/Input.d.ts.map +1 -1
- package/types/Input.native.d.ts +2 -253
- package/types/Input.native.d.ts.map +1 -1
- package/types/TextArea.d.ts +2 -253
- package/types/TextArea.d.ts.map +1 -1
- package/types/shared.d.ts +2 -253
- package/types/shared.d.ts.map +1 -1
package/types/Input.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { InputModeOptions } from 'react-native';
|
|
3
2
|
/**
|
|
4
3
|
* @summary An input is a text field that allows users to enter text.
|
|
5
4
|
* @see — Docs https://tamagui.dev/ui/inputs#input
|
|
@@ -14,7 +13,7 @@ export declare const Input: import("@tamagui/core").TamaguiComponent<Omit<import
|
|
|
14
13
|
editable?: import("react-native").TextInputProps["editable"];
|
|
15
14
|
enterKeyHint?: "done" | "go" | "next" | "search" | "send" | "enter" | "previous";
|
|
16
15
|
keyboardType?: import("react-native").TextInputProps["keyboardType"];
|
|
17
|
-
inputMode?: InputModeOptions;
|
|
16
|
+
inputMode?: import("react-native").InputModeOptions;
|
|
18
17
|
placeholderTextColor?: import("@tamagui/core").ColorTokens;
|
|
19
18
|
selectionColor?: import("@tamagui/core").ColorTokens;
|
|
20
19
|
tag?: import("@tamagui/core").TamaguiComponentPropsBase["tag"];
|
|
@@ -26,7 +25,7 @@ export declare const Input: import("@tamagui/core").TamaguiComponent<Omit<import
|
|
|
26
25
|
editable?: import("react-native").TextInputProps["editable"];
|
|
27
26
|
enterKeyHint?: "done" | "go" | "next" | "search" | "send" | "enter" | "previous";
|
|
28
27
|
keyboardType?: import("react-native").TextInputProps["keyboardType"];
|
|
29
|
-
inputMode?: InputModeOptions;
|
|
28
|
+
inputMode?: import("react-native").InputModeOptions;
|
|
30
29
|
placeholderTextColor?: import("@tamagui/core").ColorTokens;
|
|
31
30
|
selectionColor?: import("@tamagui/core").ColorTokens;
|
|
32
31
|
tag?: import("@tamagui/core").TamaguiComponentPropsBase["tag"];
|
|
@@ -105,259 +104,8 @@ export declare const Input: import("@tamagui/core").TamaguiComponent<Omit<import
|
|
|
105
104
|
readonly selectionColor: "color";
|
|
106
105
|
};
|
|
107
106
|
validStyles: {
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
textOverflow?: boolean | undefined;
|
|
111
|
-
textDecorationDistance?: boolean | undefined;
|
|
112
|
-
cursor?: boolean | undefined;
|
|
113
|
-
WebkitLineClamp: boolean;
|
|
114
|
-
WebkitBoxOrient?: boolean | undefined;
|
|
115
|
-
textShadowOffset: boolean;
|
|
116
|
-
textShadowRadius: boolean;
|
|
117
|
-
userSelect: boolean;
|
|
118
|
-
selectable: boolean;
|
|
119
|
-
verticalAlign: boolean;
|
|
120
|
-
color: boolean;
|
|
121
|
-
textDecorationColor: boolean;
|
|
122
|
-
textShadowColor: boolean;
|
|
123
|
-
textAlign: boolean;
|
|
124
|
-
textDecorationLine: boolean;
|
|
125
|
-
textDecorationStyle: boolean;
|
|
126
|
-
fontFamily: boolean;
|
|
127
|
-
fontSize: boolean;
|
|
128
|
-
fontStyle: boolean;
|
|
129
|
-
fontWeight: boolean;
|
|
130
|
-
fontVariant: boolean;
|
|
131
|
-
letterSpacing: boolean;
|
|
132
|
-
lineHeight: boolean;
|
|
133
|
-
textTransform: boolean;
|
|
134
|
-
elevationAndroid?: boolean | undefined;
|
|
135
|
-
transition?: boolean | undefined;
|
|
136
|
-
textWrap?: boolean | undefined;
|
|
137
|
-
backdropFilter?: boolean | undefined;
|
|
138
|
-
background?: boolean | undefined;
|
|
139
|
-
backgroundAttachment?: boolean | undefined;
|
|
140
|
-
backgroundBlendMode?: boolean | undefined;
|
|
141
|
-
backgroundClip?: boolean | undefined;
|
|
142
|
-
backgroundColor: boolean;
|
|
143
|
-
backgroundImage?: boolean | undefined;
|
|
144
|
-
backgroundOrigin?: boolean | undefined;
|
|
145
|
-
backgroundPosition?: boolean | undefined;
|
|
146
|
-
backgroundRepeat?: boolean | undefined;
|
|
147
|
-
backgroundSize?: boolean | undefined;
|
|
148
|
-
borderBottomStyle?: boolean | undefined;
|
|
149
|
-
borderImage?: boolean | undefined;
|
|
150
|
-
borderLeftStyle?: boolean | undefined;
|
|
151
|
-
borderRightStyle?: boolean | undefined;
|
|
152
|
-
borderTopStyle?: boolean | undefined;
|
|
153
|
-
boxSizing?: boolean | undefined;
|
|
154
|
-
caretColor?: boolean | undefined;
|
|
155
|
-
clipPath?: boolean | undefined;
|
|
156
|
-
contain?: boolean | undefined;
|
|
157
|
-
containerType?: boolean | undefined;
|
|
158
|
-
content?: boolean | undefined;
|
|
159
|
-
float?: boolean | undefined;
|
|
160
|
-
mask?: boolean | undefined;
|
|
161
|
-
maskBorder?: boolean | undefined;
|
|
162
|
-
maskBorderMode?: boolean | undefined;
|
|
163
|
-
maskBorderOutset?: boolean | undefined;
|
|
164
|
-
maskBorderRepeat?: boolean | undefined;
|
|
165
|
-
maskBorderSlice?: boolean | undefined;
|
|
166
|
-
maskBorderSource?: boolean | undefined;
|
|
167
|
-
maskBorderWidth?: boolean | undefined;
|
|
168
|
-
maskClip?: boolean | undefined;
|
|
169
|
-
maskComposite?: boolean | undefined;
|
|
170
|
-
maskImage?: boolean | undefined;
|
|
171
|
-
maskMode?: boolean | undefined;
|
|
172
|
-
maskOrigin?: boolean | undefined;
|
|
173
|
-
maskPosition?: boolean | undefined;
|
|
174
|
-
maskRepeat?: boolean | undefined;
|
|
175
|
-
maskSize?: boolean | undefined;
|
|
176
|
-
maskType?: boolean | undefined;
|
|
177
|
-
mixBlendMode?: boolean | undefined;
|
|
178
|
-
objectFit?: boolean | undefined;
|
|
179
|
-
objectPosition?: boolean | undefined;
|
|
180
|
-
outlineOffset?: boolean | undefined;
|
|
181
|
-
outlineStyle?: boolean | undefined;
|
|
182
|
-
outlineWidth?: boolean | undefined;
|
|
183
|
-
overflowBlock?: boolean | undefined;
|
|
184
|
-
overflowInline?: boolean | undefined;
|
|
185
|
-
overflowX?: boolean | undefined;
|
|
186
|
-
overflowY?: boolean | undefined;
|
|
187
|
-
pointerEvents?: boolean | undefined;
|
|
188
|
-
scrollbarWidth?: boolean | undefined;
|
|
189
|
-
textEmphasis?: boolean | undefined;
|
|
190
|
-
touchAction?: boolean | undefined;
|
|
191
|
-
transformStyle?: boolean | undefined;
|
|
192
|
-
boxShadow: boolean;
|
|
193
|
-
filter: boolean;
|
|
194
|
-
animationIterationCount: boolean;
|
|
195
|
-
aspectRatio: boolean;
|
|
196
|
-
borderImageOutset: boolean;
|
|
197
|
-
borderImageSlice: boolean;
|
|
198
|
-
borderImageWidth: boolean;
|
|
199
|
-
columnCount: boolean;
|
|
200
|
-
flex: boolean;
|
|
201
|
-
flexGrow: boolean;
|
|
202
|
-
flexOrder: boolean;
|
|
203
|
-
flexPositive: boolean;
|
|
204
|
-
flexShrink: boolean;
|
|
205
|
-
flexNegative: boolean;
|
|
206
|
-
gridRow: boolean;
|
|
207
|
-
gridRowEnd: boolean;
|
|
208
|
-
gridRowGap: boolean;
|
|
209
|
-
gridRowStart: boolean;
|
|
210
|
-
gridColumn: boolean;
|
|
211
|
-
gridColumnEnd: boolean;
|
|
212
|
-
gridColumnGap: boolean;
|
|
213
|
-
gridColumnStart: boolean;
|
|
214
|
-
gridTemplateColumns: boolean;
|
|
215
|
-
gridTemplateAreas: boolean;
|
|
216
|
-
lineClamp: boolean;
|
|
217
|
-
opacity: boolean;
|
|
218
|
-
order: boolean;
|
|
219
|
-
orphans: boolean;
|
|
220
|
-
tabSize: boolean;
|
|
221
|
-
widows: boolean;
|
|
222
|
-
zIndex: boolean;
|
|
223
|
-
zoom: boolean;
|
|
224
|
-
scale: boolean;
|
|
225
|
-
scaleX: boolean;
|
|
226
|
-
scaleY: boolean;
|
|
227
|
-
scaleZ: boolean;
|
|
228
|
-
shadowOpacity: boolean;
|
|
229
|
-
x: boolean;
|
|
230
|
-
y: boolean;
|
|
231
|
-
perspective: boolean;
|
|
232
|
-
skewX: boolean;
|
|
233
|
-
skewY: boolean;
|
|
234
|
-
matrix: boolean;
|
|
235
|
-
rotate: boolean;
|
|
236
|
-
rotateY: boolean;
|
|
237
|
-
rotateX: boolean;
|
|
238
|
-
rotateZ: boolean;
|
|
239
|
-
borderRadius: boolean;
|
|
240
|
-
borderTopLeftRadius: boolean;
|
|
241
|
-
borderTopRightRadius: boolean;
|
|
242
|
-
borderBottomLeftRadius: boolean;
|
|
243
|
-
borderBottomRightRadius: boolean;
|
|
244
|
-
borderStartStartRadius: boolean;
|
|
245
|
-
borderStartEndRadius: boolean;
|
|
246
|
-
borderEndStartRadius: boolean;
|
|
247
|
-
borderEndEndRadius: boolean;
|
|
248
|
-
width: boolean;
|
|
249
|
-
height: boolean;
|
|
250
|
-
minWidth: boolean;
|
|
251
|
-
minHeight: boolean;
|
|
252
|
-
maxWidth: boolean;
|
|
253
|
-
maxHeight: boolean;
|
|
254
|
-
blockSize: boolean;
|
|
255
|
-
minBlockSize: boolean;
|
|
256
|
-
maxBlockSize: boolean;
|
|
257
|
-
inlineSize: boolean;
|
|
258
|
-
minInlineSize: boolean;
|
|
259
|
-
maxInlineSize: boolean;
|
|
260
|
-
outlineColor?: boolean | undefined;
|
|
261
|
-
borderColor: boolean;
|
|
262
|
-
borderBlockStartColor: boolean;
|
|
263
|
-
borderBlockEndColor: boolean;
|
|
264
|
-
borderBlockColor: boolean;
|
|
265
|
-
borderBottomColor: boolean;
|
|
266
|
-
borderInlineColor: boolean;
|
|
267
|
-
borderInlineStartColor: boolean;
|
|
268
|
-
borderInlineEndColor: boolean;
|
|
269
|
-
borderTopColor: boolean;
|
|
270
|
-
borderLeftColor: boolean;
|
|
271
|
-
borderRightColor: boolean;
|
|
272
|
-
borderEndColor: boolean;
|
|
273
|
-
borderStartColor: boolean;
|
|
274
|
-
shadowColor: boolean;
|
|
275
|
-
backfaceVisibility: boolean;
|
|
276
|
-
borderBottomEndRadius: boolean;
|
|
277
|
-
borderBottomStartRadius: boolean;
|
|
278
|
-
borderBottomWidth: boolean;
|
|
279
|
-
borderLeftWidth: boolean;
|
|
280
|
-
borderRightWidth: boolean;
|
|
281
|
-
borderBlockWidth: boolean;
|
|
282
|
-
borderBlockEndWidth: boolean;
|
|
283
|
-
borderBlockStartWidth: boolean;
|
|
284
|
-
borderInlineWidth: boolean;
|
|
285
|
-
borderInlineEndWidth: boolean;
|
|
286
|
-
borderInlineStartWidth: boolean;
|
|
287
|
-
borderStyle: boolean;
|
|
288
|
-
borderBlockStyle: boolean;
|
|
289
|
-
borderBlockEndStyle: boolean;
|
|
290
|
-
borderBlockStartStyle: boolean;
|
|
291
|
-
borderInlineStyle: boolean;
|
|
292
|
-
borderInlineEndStyle: boolean;
|
|
293
|
-
borderInlineStartStyle: boolean;
|
|
294
|
-
borderTopEndRadius: boolean;
|
|
295
|
-
borderTopStartRadius: boolean;
|
|
296
|
-
borderTopWidth: boolean;
|
|
297
|
-
borderWidth: boolean;
|
|
298
|
-
transform: boolean;
|
|
299
|
-
transformOrigin: boolean;
|
|
300
|
-
alignContent: boolean;
|
|
301
|
-
alignItems: boolean;
|
|
302
|
-
alignSelf: boolean;
|
|
303
|
-
borderEndWidth: boolean;
|
|
304
|
-
borderStartWidth: boolean;
|
|
305
|
-
bottom: boolean;
|
|
306
|
-
display: boolean;
|
|
307
|
-
end: boolean;
|
|
308
|
-
flexBasis: boolean;
|
|
309
|
-
flexDirection: boolean;
|
|
310
|
-
flexWrap: boolean;
|
|
311
|
-
gap: boolean;
|
|
312
|
-
columnGap: boolean;
|
|
313
|
-
rowGap: boolean;
|
|
314
|
-
justifyContent: boolean;
|
|
315
|
-
left: boolean;
|
|
316
|
-
margin: boolean;
|
|
317
|
-
marginBlock: boolean;
|
|
318
|
-
marginBlockEnd: boolean;
|
|
319
|
-
marginBlockStart: boolean;
|
|
320
|
-
marginInline: boolean;
|
|
321
|
-
marginInlineStart: boolean;
|
|
322
|
-
marginInlineEnd: boolean;
|
|
323
|
-
marginBottom: boolean;
|
|
324
|
-
marginEnd: boolean;
|
|
325
|
-
marginHorizontal: boolean;
|
|
326
|
-
marginLeft: boolean;
|
|
327
|
-
marginRight: boolean;
|
|
328
|
-
marginStart: boolean;
|
|
329
|
-
marginTop: boolean;
|
|
330
|
-
marginVertical: boolean;
|
|
331
|
-
overflow: boolean;
|
|
332
|
-
padding: boolean;
|
|
333
|
-
paddingBottom: boolean;
|
|
334
|
-
paddingInline: boolean;
|
|
335
|
-
paddingBlock: boolean;
|
|
336
|
-
paddingBlockStart: boolean;
|
|
337
|
-
paddingInlineEnd: boolean;
|
|
338
|
-
paddingInlineStart: boolean;
|
|
339
|
-
paddingEnd: boolean;
|
|
340
|
-
paddingHorizontal: boolean;
|
|
341
|
-
paddingLeft: boolean;
|
|
342
|
-
paddingRight: boolean;
|
|
343
|
-
paddingStart: boolean;
|
|
344
|
-
paddingTop: boolean;
|
|
345
|
-
paddingVertical: boolean;
|
|
346
|
-
position: boolean;
|
|
347
|
-
right: boolean;
|
|
348
|
-
start: boolean;
|
|
349
|
-
top: boolean;
|
|
350
|
-
inset: boolean;
|
|
351
|
-
insetBlock: boolean;
|
|
352
|
-
insetBlockEnd: boolean;
|
|
353
|
-
insetBlockStart: boolean;
|
|
354
|
-
insetInline: boolean;
|
|
355
|
-
insetInlineEnd: boolean;
|
|
356
|
-
insetInlineStart: boolean;
|
|
357
|
-
direction: boolean;
|
|
358
|
-
shadowOffset: boolean;
|
|
359
|
-
shadowRadius: boolean;
|
|
360
|
-
};
|
|
107
|
+
[key: string]: boolean;
|
|
108
|
+
} | undefined;
|
|
361
109
|
name?: undefined;
|
|
362
110
|
tag?: undefined;
|
|
363
111
|
variants?: undefined;
|
package/types/Input.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../src/Input.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../src/Input.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA2D,MAAM,OAAO,CAAA;AAM/E;;;GAGG;AACH,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgLhB,CAAA"}
|
package/types/Input.native.d.ts
CHANGED
|
@@ -101,259 +101,8 @@ export declare const Input: import("@tamagui/core").TamaguiComponent<Omit<import
|
|
|
101
101
|
readonly selectionColor: "color";
|
|
102
102
|
};
|
|
103
103
|
validStyles: {
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
textOverflow?: boolean | undefined;
|
|
107
|
-
textDecorationDistance?: boolean | undefined;
|
|
108
|
-
cursor?: boolean | undefined;
|
|
109
|
-
WebkitLineClamp: boolean;
|
|
110
|
-
WebkitBoxOrient?: boolean | undefined;
|
|
111
|
-
textShadowOffset: boolean;
|
|
112
|
-
textShadowRadius: boolean;
|
|
113
|
-
userSelect: boolean;
|
|
114
|
-
selectable: boolean;
|
|
115
|
-
verticalAlign: boolean;
|
|
116
|
-
color: boolean;
|
|
117
|
-
textDecorationColor: boolean;
|
|
118
|
-
textShadowColor: boolean;
|
|
119
|
-
textAlign: boolean;
|
|
120
|
-
textDecorationLine: boolean;
|
|
121
|
-
textDecorationStyle: boolean;
|
|
122
|
-
fontFamily: boolean;
|
|
123
|
-
fontSize: boolean;
|
|
124
|
-
fontStyle: boolean;
|
|
125
|
-
fontWeight: boolean;
|
|
126
|
-
fontVariant: boolean;
|
|
127
|
-
letterSpacing: boolean;
|
|
128
|
-
lineHeight: boolean;
|
|
129
|
-
textTransform: boolean;
|
|
130
|
-
elevationAndroid?: boolean | undefined;
|
|
131
|
-
transition?: boolean | undefined;
|
|
132
|
-
textWrap?: boolean | undefined;
|
|
133
|
-
backdropFilter?: boolean | undefined;
|
|
134
|
-
background?: boolean | undefined;
|
|
135
|
-
backgroundAttachment?: boolean | undefined;
|
|
136
|
-
backgroundBlendMode?: boolean | undefined;
|
|
137
|
-
backgroundClip?: boolean | undefined;
|
|
138
|
-
backgroundColor: boolean;
|
|
139
|
-
backgroundImage?: boolean | undefined;
|
|
140
|
-
backgroundOrigin?: boolean | undefined;
|
|
141
|
-
backgroundPosition?: boolean | undefined;
|
|
142
|
-
backgroundRepeat?: boolean | undefined;
|
|
143
|
-
backgroundSize?: boolean | undefined;
|
|
144
|
-
borderBottomStyle?: boolean | undefined;
|
|
145
|
-
borderImage?: boolean | undefined;
|
|
146
|
-
borderLeftStyle?: boolean | undefined;
|
|
147
|
-
borderRightStyle?: boolean | undefined;
|
|
148
|
-
borderTopStyle?: boolean | undefined;
|
|
149
|
-
boxSizing?: boolean | undefined;
|
|
150
|
-
caretColor?: boolean | undefined;
|
|
151
|
-
clipPath?: boolean | undefined;
|
|
152
|
-
contain?: boolean | undefined;
|
|
153
|
-
containerType?: boolean | undefined;
|
|
154
|
-
content?: boolean | undefined;
|
|
155
|
-
float?: boolean | undefined;
|
|
156
|
-
mask?: boolean | undefined;
|
|
157
|
-
maskBorder?: boolean | undefined;
|
|
158
|
-
maskBorderMode?: boolean | undefined;
|
|
159
|
-
maskBorderOutset?: boolean | undefined;
|
|
160
|
-
maskBorderRepeat?: boolean | undefined;
|
|
161
|
-
maskBorderSlice?: boolean | undefined;
|
|
162
|
-
maskBorderSource?: boolean | undefined;
|
|
163
|
-
maskBorderWidth?: boolean | undefined;
|
|
164
|
-
maskClip?: boolean | undefined;
|
|
165
|
-
maskComposite?: boolean | undefined;
|
|
166
|
-
maskImage?: boolean | undefined;
|
|
167
|
-
maskMode?: boolean | undefined;
|
|
168
|
-
maskOrigin?: boolean | undefined;
|
|
169
|
-
maskPosition?: boolean | undefined;
|
|
170
|
-
maskRepeat?: boolean | undefined;
|
|
171
|
-
maskSize?: boolean | undefined;
|
|
172
|
-
maskType?: boolean | undefined;
|
|
173
|
-
mixBlendMode?: boolean | undefined;
|
|
174
|
-
objectFit?: boolean | undefined;
|
|
175
|
-
objectPosition?: boolean | undefined;
|
|
176
|
-
outlineOffset?: boolean | undefined;
|
|
177
|
-
outlineStyle?: boolean | undefined;
|
|
178
|
-
outlineWidth?: boolean | undefined;
|
|
179
|
-
overflowBlock?: boolean | undefined;
|
|
180
|
-
overflowInline?: boolean | undefined;
|
|
181
|
-
overflowX?: boolean | undefined;
|
|
182
|
-
overflowY?: boolean | undefined;
|
|
183
|
-
pointerEvents?: boolean | undefined;
|
|
184
|
-
scrollbarWidth?: boolean | undefined;
|
|
185
|
-
textEmphasis?: boolean | undefined;
|
|
186
|
-
touchAction?: boolean | undefined;
|
|
187
|
-
transformStyle?: boolean | undefined;
|
|
188
|
-
boxShadow: boolean;
|
|
189
|
-
filter: boolean;
|
|
190
|
-
animationIterationCount: boolean;
|
|
191
|
-
aspectRatio: boolean;
|
|
192
|
-
borderImageOutset: boolean;
|
|
193
|
-
borderImageSlice: boolean;
|
|
194
|
-
borderImageWidth: boolean;
|
|
195
|
-
columnCount: boolean;
|
|
196
|
-
flex: boolean;
|
|
197
|
-
flexGrow: boolean;
|
|
198
|
-
flexOrder: boolean;
|
|
199
|
-
flexPositive: boolean;
|
|
200
|
-
flexShrink: boolean;
|
|
201
|
-
flexNegative: boolean;
|
|
202
|
-
gridRow: boolean;
|
|
203
|
-
gridRowEnd: boolean;
|
|
204
|
-
gridRowGap: boolean;
|
|
205
|
-
gridRowStart: boolean;
|
|
206
|
-
gridColumn: boolean;
|
|
207
|
-
gridColumnEnd: boolean;
|
|
208
|
-
gridColumnGap: boolean;
|
|
209
|
-
gridColumnStart: boolean;
|
|
210
|
-
gridTemplateColumns: boolean;
|
|
211
|
-
gridTemplateAreas: boolean;
|
|
212
|
-
lineClamp: boolean;
|
|
213
|
-
opacity: boolean;
|
|
214
|
-
order: boolean;
|
|
215
|
-
orphans: boolean;
|
|
216
|
-
tabSize: boolean;
|
|
217
|
-
widows: boolean;
|
|
218
|
-
zIndex: boolean;
|
|
219
|
-
zoom: boolean;
|
|
220
|
-
scale: boolean;
|
|
221
|
-
scaleX: boolean;
|
|
222
|
-
scaleY: boolean;
|
|
223
|
-
scaleZ: boolean;
|
|
224
|
-
shadowOpacity: boolean;
|
|
225
|
-
x: boolean;
|
|
226
|
-
y: boolean;
|
|
227
|
-
perspective: boolean;
|
|
228
|
-
skewX: boolean;
|
|
229
|
-
skewY: boolean;
|
|
230
|
-
matrix: boolean;
|
|
231
|
-
rotate: boolean;
|
|
232
|
-
rotateY: boolean;
|
|
233
|
-
rotateX: boolean;
|
|
234
|
-
rotateZ: boolean;
|
|
235
|
-
borderRadius: boolean;
|
|
236
|
-
borderTopLeftRadius: boolean;
|
|
237
|
-
borderTopRightRadius: boolean;
|
|
238
|
-
borderBottomLeftRadius: boolean;
|
|
239
|
-
borderBottomRightRadius: boolean;
|
|
240
|
-
borderStartStartRadius: boolean;
|
|
241
|
-
borderStartEndRadius: boolean;
|
|
242
|
-
borderEndStartRadius: boolean;
|
|
243
|
-
borderEndEndRadius: boolean;
|
|
244
|
-
width: boolean;
|
|
245
|
-
height: boolean;
|
|
246
|
-
minWidth: boolean;
|
|
247
|
-
minHeight: boolean;
|
|
248
|
-
maxWidth: boolean;
|
|
249
|
-
maxHeight: boolean;
|
|
250
|
-
blockSize: boolean;
|
|
251
|
-
minBlockSize: boolean;
|
|
252
|
-
maxBlockSize: boolean;
|
|
253
|
-
inlineSize: boolean;
|
|
254
|
-
minInlineSize: boolean;
|
|
255
|
-
maxInlineSize: boolean;
|
|
256
|
-
outlineColor?: boolean | undefined;
|
|
257
|
-
borderColor: boolean;
|
|
258
|
-
borderBlockStartColor: boolean;
|
|
259
|
-
borderBlockEndColor: boolean;
|
|
260
|
-
borderBlockColor: boolean;
|
|
261
|
-
borderBottomColor: boolean;
|
|
262
|
-
borderInlineColor: boolean;
|
|
263
|
-
borderInlineStartColor: boolean;
|
|
264
|
-
borderInlineEndColor: boolean;
|
|
265
|
-
borderTopColor: boolean;
|
|
266
|
-
borderLeftColor: boolean;
|
|
267
|
-
borderRightColor: boolean;
|
|
268
|
-
borderEndColor: boolean;
|
|
269
|
-
borderStartColor: boolean;
|
|
270
|
-
shadowColor: boolean;
|
|
271
|
-
backfaceVisibility: boolean;
|
|
272
|
-
borderBottomEndRadius: boolean;
|
|
273
|
-
borderBottomStartRadius: boolean;
|
|
274
|
-
borderBottomWidth: boolean;
|
|
275
|
-
borderLeftWidth: boolean;
|
|
276
|
-
borderRightWidth: boolean;
|
|
277
|
-
borderBlockWidth: boolean;
|
|
278
|
-
borderBlockEndWidth: boolean;
|
|
279
|
-
borderBlockStartWidth: boolean;
|
|
280
|
-
borderInlineWidth: boolean;
|
|
281
|
-
borderInlineEndWidth: boolean;
|
|
282
|
-
borderInlineStartWidth: boolean;
|
|
283
|
-
borderStyle: boolean;
|
|
284
|
-
borderBlockStyle: boolean;
|
|
285
|
-
borderBlockEndStyle: boolean;
|
|
286
|
-
borderBlockStartStyle: boolean;
|
|
287
|
-
borderInlineStyle: boolean;
|
|
288
|
-
borderInlineEndStyle: boolean;
|
|
289
|
-
borderInlineStartStyle: boolean;
|
|
290
|
-
borderTopEndRadius: boolean;
|
|
291
|
-
borderTopStartRadius: boolean;
|
|
292
|
-
borderTopWidth: boolean;
|
|
293
|
-
borderWidth: boolean;
|
|
294
|
-
transform: boolean;
|
|
295
|
-
transformOrigin: boolean;
|
|
296
|
-
alignContent: boolean;
|
|
297
|
-
alignItems: boolean;
|
|
298
|
-
alignSelf: boolean;
|
|
299
|
-
borderEndWidth: boolean;
|
|
300
|
-
borderStartWidth: boolean;
|
|
301
|
-
bottom: boolean;
|
|
302
|
-
display: boolean;
|
|
303
|
-
end: boolean;
|
|
304
|
-
flexBasis: boolean;
|
|
305
|
-
flexDirection: boolean;
|
|
306
|
-
flexWrap: boolean;
|
|
307
|
-
gap: boolean;
|
|
308
|
-
columnGap: boolean;
|
|
309
|
-
rowGap: boolean;
|
|
310
|
-
justifyContent: boolean;
|
|
311
|
-
left: boolean;
|
|
312
|
-
margin: boolean;
|
|
313
|
-
marginBlock: boolean;
|
|
314
|
-
marginBlockEnd: boolean;
|
|
315
|
-
marginBlockStart: boolean;
|
|
316
|
-
marginInline: boolean;
|
|
317
|
-
marginInlineStart: boolean;
|
|
318
|
-
marginInlineEnd: boolean;
|
|
319
|
-
marginBottom: boolean;
|
|
320
|
-
marginEnd: boolean;
|
|
321
|
-
marginHorizontal: boolean;
|
|
322
|
-
marginLeft: boolean;
|
|
323
|
-
marginRight: boolean;
|
|
324
|
-
marginStart: boolean;
|
|
325
|
-
marginTop: boolean;
|
|
326
|
-
marginVertical: boolean;
|
|
327
|
-
overflow: boolean;
|
|
328
|
-
padding: boolean;
|
|
329
|
-
paddingBottom: boolean;
|
|
330
|
-
paddingInline: boolean;
|
|
331
|
-
paddingBlock: boolean;
|
|
332
|
-
paddingBlockStart: boolean;
|
|
333
|
-
paddingInlineEnd: boolean;
|
|
334
|
-
paddingInlineStart: boolean;
|
|
335
|
-
paddingEnd: boolean;
|
|
336
|
-
paddingHorizontal: boolean;
|
|
337
|
-
paddingLeft: boolean;
|
|
338
|
-
paddingRight: boolean;
|
|
339
|
-
paddingStart: boolean;
|
|
340
|
-
paddingTop: boolean;
|
|
341
|
-
paddingVertical: boolean;
|
|
342
|
-
position: boolean;
|
|
343
|
-
right: boolean;
|
|
344
|
-
start: boolean;
|
|
345
|
-
top: boolean;
|
|
346
|
-
inset: boolean;
|
|
347
|
-
insetBlock: boolean;
|
|
348
|
-
insetBlockEnd: boolean;
|
|
349
|
-
insetBlockStart: boolean;
|
|
350
|
-
insetInline: boolean;
|
|
351
|
-
insetInlineEnd: boolean;
|
|
352
|
-
insetInlineStart: boolean;
|
|
353
|
-
direction: boolean;
|
|
354
|
-
shadowOffset: boolean;
|
|
355
|
-
shadowRadius: boolean;
|
|
356
|
-
};
|
|
104
|
+
[key: string]: boolean;
|
|
105
|
+
} | undefined;
|
|
357
106
|
name?: undefined;
|
|
358
107
|
tag?: undefined;
|
|
359
108
|
variants?: undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Input.native.d.ts","sourceRoot":"","sources":["../src/Input.native.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAKxC,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"Input.native.d.ts","sourceRoot":"","sources":["../src/Input.native.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAKxC,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0IhB,CAAA"}
|