@tamagui/dialog 1.15.4 → 1.15.6
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/Dialog.js +12 -3
- package/dist/cjs/Dialog.js.map +2 -2
- package/dist/esm/Dialog.js +12 -3
- package/dist/esm/Dialog.js.map +2 -2
- package/dist/esm/Dialog.mjs +12 -3
- package/dist/esm/Dialog.mjs.map +2 -2
- package/dist/jsx/Dialog.js +8 -3
- package/dist/jsx/Dialog.js.map +2 -2
- package/dist/jsx/Dialog.mjs +8 -3
- package/dist/jsx/Dialog.mjs.map +2 -2
- package/package.json +18 -18
- package/src/Dialog.tsx +13 -2
- package/types/Dialog.d.ts +632 -710
- package/types/Dialog.d.ts.map +1 -1
package/types/Dialog.d.ts
CHANGED
|
@@ -14,6 +14,10 @@ interface DialogProps {
|
|
|
14
14
|
defaultOpen?: boolean;
|
|
15
15
|
onOpenChange?(open: boolean): void;
|
|
16
16
|
modal?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Used to disable the remove scroll functionality when open
|
|
19
|
+
*/
|
|
20
|
+
disableRemoveScroll?: boolean;
|
|
17
21
|
/**
|
|
18
22
|
* @see https://github.com/theKashey/react-remove-scroll#usage
|
|
19
23
|
*/
|
|
@@ -21,6 +25,7 @@ interface DialogProps {
|
|
|
21
25
|
}
|
|
22
26
|
type NonNull<A> = Exclude<A, void | null>;
|
|
23
27
|
type DialogContextValue = {
|
|
28
|
+
disableRemoveScroll?: boolean;
|
|
24
29
|
triggerRef: React.RefObject<TamaguiElement>;
|
|
25
30
|
contentRef: React.RefObject<TamaguiElement>;
|
|
26
31
|
contentId: string;
|
|
@@ -71,12 +76,9 @@ export declare const DialogPortalFrame: import("@tamagui/core").TamaguiComponent
|
|
|
71
76
|
}>>), TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps, {
|
|
72
77
|
readonly fullscreen?: boolean | undefined;
|
|
73
78
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
74
|
-
} | ({
|
|
75
|
-
readonly fullscreen?: boolean | undefined;
|
|
76
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
77
79
|
} & {
|
|
78
80
|
[x: string]: undefined;
|
|
79
|
-
}
|
|
81
|
+
}, {
|
|
80
82
|
displayName: string | undefined;
|
|
81
83
|
}>;
|
|
82
84
|
declare const DialogPortal: React.FC<DialogPortalProps>;
|
|
@@ -125,10 +127,7 @@ export declare const DialogOverlayFrame: import("@tamagui/core").TamaguiComponen
|
|
|
125
127
|
readonly radiused?: boolean | undefined;
|
|
126
128
|
readonly hoverTheme?: boolean | undefined;
|
|
127
129
|
readonly pressTheme?: boolean | undefined;
|
|
128
|
-
readonly focusTheme?: boolean | undefined;
|
|
129
|
-
* Used to force mounting when more control is needed. Useful when
|
|
130
|
-
* controlling animation with React animation libraries.
|
|
131
|
-
*/
|
|
130
|
+
readonly focusTheme?: boolean | undefined;
|
|
132
131
|
readonly circular?: boolean | undefined;
|
|
133
132
|
readonly padded?: boolean | undefined;
|
|
134
133
|
readonly elevate?: boolean | undefined;
|
|
@@ -211,9 +210,9 @@ export declare const DialogOverlayFrame: import("@tamagui/core").TamaguiComponen
|
|
|
211
210
|
readonly chromeless?: boolean | "all" | undefined;
|
|
212
211
|
} & {
|
|
213
212
|
readonly closed?: boolean | undefined;
|
|
214
|
-
} &
|
|
213
|
+
} & {
|
|
215
214
|
[x: string]: undefined;
|
|
216
|
-
}
|
|
215
|
+
}, {
|
|
217
216
|
displayName: string | undefined;
|
|
218
217
|
}>;
|
|
219
218
|
interface DialogOverlayProps extends YStackProps {
|
|
@@ -346,207 +345,195 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
346
345
|
[x: string]: undefined;
|
|
347
346
|
}>>) | (Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
348
347
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
349
|
-
} | ({
|
|
350
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
351
348
|
} & {
|
|
352
349
|
[x: string]: undefined;
|
|
353
|
-
}
|
|
350
|
+
}, string | number> & {
|
|
354
351
|
[x: string]: undefined;
|
|
355
352
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
356
353
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
357
|
-
} | ({
|
|
358
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
359
354
|
} & {
|
|
360
355
|
[x: string]: undefined;
|
|
361
|
-
}
|
|
356
|
+
}, string | number> & {
|
|
362
357
|
[x: string]: undefined;
|
|
363
358
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
364
359
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
365
|
-
} | ({
|
|
366
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
367
360
|
} & {
|
|
368
361
|
[x: string]: undefined;
|
|
369
|
-
}
|
|
362
|
+
}, string | number> & {
|
|
370
363
|
[x: string]: undefined;
|
|
371
364
|
}>>) | (Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
372
365
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
373
|
-
} | ({
|
|
374
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
375
366
|
} & {
|
|
376
367
|
[x: string]: undefined;
|
|
377
|
-
}
|
|
368
|
+
}, string | number> & {
|
|
378
369
|
[x: string]: undefined;
|
|
379
370
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
380
371
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
381
|
-
} | ({
|
|
382
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
383
372
|
} & {
|
|
384
373
|
[x: string]: undefined;
|
|
385
|
-
}
|
|
374
|
+
}, string | number> & {
|
|
386
375
|
[x: string]: undefined;
|
|
387
376
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
388
377
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
389
|
-
} | ({
|
|
390
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
391
378
|
} & {
|
|
392
379
|
[x: string]: undefined;
|
|
393
|
-
}
|
|
380
|
+
}, string | number> & {
|
|
394
381
|
[x: string]: undefined;
|
|
395
382
|
}>>) | (Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
396
383
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
397
|
-
} | ({
|
|
398
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
399
384
|
} & {
|
|
400
385
|
[x: string]: undefined;
|
|
401
|
-
})
|
|
386
|
+
}) | ({
|
|
387
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
388
|
+
} & {
|
|
402
389
|
[x: string]: undefined;
|
|
403
|
-
}
|
|
390
|
+
} & {
|
|
404
391
|
[x: string]: undefined;
|
|
405
392
|
}), string | number> & {
|
|
406
393
|
[x: string]: undefined;
|
|
407
394
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
408
395
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
409
|
-
} | ({
|
|
410
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
411
396
|
} & {
|
|
412
397
|
[x: string]: undefined;
|
|
413
|
-
})
|
|
398
|
+
}) | ({
|
|
399
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
400
|
+
} & {
|
|
414
401
|
[x: string]: undefined;
|
|
415
|
-
}
|
|
402
|
+
} & {
|
|
416
403
|
[x: string]: undefined;
|
|
417
404
|
}), string | number> & {
|
|
418
405
|
[x: string]: undefined;
|
|
419
406
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
420
407
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
421
|
-
} | ({
|
|
422
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
423
408
|
} & {
|
|
424
409
|
[x: string]: undefined;
|
|
425
|
-
})
|
|
410
|
+
}) | ({
|
|
411
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
412
|
+
} & {
|
|
426
413
|
[x: string]: undefined;
|
|
427
|
-
}
|
|
414
|
+
} & {
|
|
428
415
|
[x: string]: undefined;
|
|
429
416
|
}), string | number> & {
|
|
430
417
|
[x: string]: undefined;
|
|
431
418
|
}>>) | (Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
432
419
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
433
|
-
} | ({
|
|
434
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
435
420
|
} & {
|
|
436
421
|
[x: string]: undefined;
|
|
437
|
-
})
|
|
422
|
+
}) | ({
|
|
423
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
424
|
+
} & {
|
|
438
425
|
[x: string]: undefined;
|
|
439
|
-
}
|
|
426
|
+
} & {
|
|
440
427
|
[x: string]: undefined;
|
|
441
428
|
}), string | number> & {
|
|
442
429
|
[x: string]: undefined;
|
|
443
430
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
444
431
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
445
|
-
} | ({
|
|
446
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
447
432
|
} & {
|
|
448
433
|
[x: string]: undefined;
|
|
449
|
-
})
|
|
434
|
+
}) | ({
|
|
435
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
436
|
+
} & {
|
|
450
437
|
[x: string]: undefined;
|
|
451
|
-
}
|
|
438
|
+
} & {
|
|
452
439
|
[x: string]: undefined;
|
|
453
440
|
}), string | number> & {
|
|
454
441
|
[x: string]: undefined;
|
|
455
442
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
456
443
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
457
|
-
} | ({
|
|
458
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
459
444
|
} & {
|
|
460
445
|
[x: string]: undefined;
|
|
461
|
-
})
|
|
446
|
+
}) | ({
|
|
447
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
448
|
+
} & {
|
|
462
449
|
[x: string]: undefined;
|
|
463
|
-
}
|
|
450
|
+
} & {
|
|
464
451
|
[x: string]: undefined;
|
|
465
452
|
}), string | number> & {
|
|
466
453
|
[x: string]: undefined;
|
|
467
454
|
}>>) | (Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
468
455
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
469
|
-
} | ({
|
|
470
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
471
456
|
} & {
|
|
472
457
|
[x: string]: undefined;
|
|
473
|
-
})
|
|
458
|
+
}) | ({
|
|
459
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
460
|
+
} & {
|
|
474
461
|
[x: string]: undefined;
|
|
475
|
-
}
|
|
462
|
+
} & {
|
|
476
463
|
[x: string]: undefined;
|
|
477
464
|
}), string | number> & {
|
|
478
465
|
[x: string]: undefined;
|
|
479
466
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
480
467
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
481
|
-
} | ({
|
|
482
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
483
468
|
} & {
|
|
484
469
|
[x: string]: undefined;
|
|
485
|
-
})
|
|
470
|
+
}) | ({
|
|
471
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
472
|
+
} & {
|
|
486
473
|
[x: string]: undefined;
|
|
487
|
-
}
|
|
474
|
+
} & {
|
|
488
475
|
[x: string]: undefined;
|
|
489
476
|
}), string | number> & {
|
|
490
477
|
[x: string]: undefined;
|
|
491
478
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
492
479
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
493
|
-
} | ({
|
|
494
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
495
480
|
} & {
|
|
496
481
|
[x: string]: undefined;
|
|
497
|
-
})
|
|
482
|
+
}) | ({
|
|
483
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
484
|
+
} & {
|
|
498
485
|
[x: string]: undefined;
|
|
499
|
-
}
|
|
486
|
+
} & {
|
|
500
487
|
[x: string]: undefined;
|
|
501
488
|
}), string | number> & {
|
|
502
489
|
[x: string]: undefined;
|
|
503
490
|
}>>) | (Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
504
491
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
505
|
-
} | ({
|
|
506
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
507
492
|
} & {
|
|
508
493
|
[x: string]: undefined;
|
|
509
|
-
})
|
|
494
|
+
}) | ({
|
|
495
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
496
|
+
} & {
|
|
510
497
|
[x: string]: undefined;
|
|
511
|
-
}
|
|
498
|
+
} & {
|
|
512
499
|
[x: string]: undefined;
|
|
513
500
|
}), string | number> & {
|
|
514
501
|
[x: string]: undefined;
|
|
515
502
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
516
503
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
517
|
-
} | ({
|
|
518
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
519
504
|
} & {
|
|
520
505
|
[x: string]: undefined;
|
|
521
|
-
})
|
|
506
|
+
}) | ({
|
|
507
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
508
|
+
} & {
|
|
522
509
|
[x: string]: undefined;
|
|
523
|
-
}
|
|
510
|
+
} & {
|
|
524
511
|
[x: string]: undefined;
|
|
525
512
|
}), string | number> & {
|
|
526
513
|
[x: string]: undefined;
|
|
527
514
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
528
515
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
529
|
-
} | ({
|
|
530
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
531
516
|
} & {
|
|
532
517
|
[x: string]: undefined;
|
|
533
|
-
})
|
|
518
|
+
}) | ({
|
|
519
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
520
|
+
} & {
|
|
534
521
|
[x: string]: undefined;
|
|
535
|
-
}
|
|
522
|
+
} & {
|
|
536
523
|
[x: string]: undefined;
|
|
537
524
|
}), string | number> & {
|
|
538
525
|
[x: string]: undefined;
|
|
539
526
|
}>>) | (Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
540
527
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
541
|
-
} | ({
|
|
542
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
543
528
|
} & {
|
|
544
529
|
[x: string]: undefined;
|
|
545
|
-
})
|
|
530
|
+
}) | ({
|
|
531
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
532
|
+
} & {
|
|
546
533
|
[x: string]: undefined;
|
|
547
|
-
}
|
|
534
|
+
} & {
|
|
548
535
|
[x: string]: undefined;
|
|
549
|
-
})) & ({
|
|
536
|
+
})) & ({
|
|
550
537
|
[x: string]: undefined;
|
|
551
538
|
} | {
|
|
552
539
|
[x: string]: undefined;
|
|
@@ -554,19 +541,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
554
541
|
[x: string]: undefined;
|
|
555
542
|
} | {
|
|
556
543
|
[x: string]: undefined;
|
|
557
|
-
}), string | number> & {
|
|
544
|
+
} | undefined), string | number> & {
|
|
558
545
|
[x: string]: undefined;
|
|
559
546
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
560
547
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
561
|
-
} | ({
|
|
562
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
563
548
|
} & {
|
|
564
549
|
[x: string]: undefined;
|
|
565
|
-
})
|
|
550
|
+
}) | ({
|
|
551
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
552
|
+
} & {
|
|
566
553
|
[x: string]: undefined;
|
|
567
|
-
}
|
|
554
|
+
} & {
|
|
568
555
|
[x: string]: undefined;
|
|
569
|
-
})) & ({
|
|
556
|
+
})) & ({
|
|
570
557
|
[x: string]: undefined;
|
|
571
558
|
} | {
|
|
572
559
|
[x: string]: undefined;
|
|
@@ -574,19 +561,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
574
561
|
[x: string]: undefined;
|
|
575
562
|
} | {
|
|
576
563
|
[x: string]: undefined;
|
|
577
|
-
}), string | number> & {
|
|
564
|
+
} | undefined), string | number> & {
|
|
578
565
|
[x: string]: undefined;
|
|
579
566
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
580
567
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
581
|
-
} | ({
|
|
582
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
583
568
|
} & {
|
|
584
569
|
[x: string]: undefined;
|
|
585
|
-
})
|
|
570
|
+
}) | ({
|
|
571
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
572
|
+
} & {
|
|
586
573
|
[x: string]: undefined;
|
|
587
|
-
}
|
|
574
|
+
} & {
|
|
588
575
|
[x: string]: undefined;
|
|
589
|
-
})) & ({
|
|
576
|
+
})) & ({
|
|
590
577
|
[x: string]: undefined;
|
|
591
578
|
} | {
|
|
592
579
|
[x: string]: undefined;
|
|
@@ -594,19 +581,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
594
581
|
[x: string]: undefined;
|
|
595
582
|
} | {
|
|
596
583
|
[x: string]: undefined;
|
|
597
|
-
}), string | number> & {
|
|
584
|
+
} | undefined), string | number> & {
|
|
598
585
|
[x: string]: undefined;
|
|
599
586
|
}>>) | (Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
600
587
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
601
|
-
} | ({
|
|
602
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
603
588
|
} & {
|
|
604
589
|
[x: string]: undefined;
|
|
605
|
-
})
|
|
590
|
+
}) | ({
|
|
591
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
592
|
+
} & {
|
|
606
593
|
[x: string]: undefined;
|
|
607
|
-
}
|
|
594
|
+
} & {
|
|
608
595
|
[x: string]: undefined;
|
|
609
|
-
})) & ({
|
|
596
|
+
})) & ({
|
|
610
597
|
[x: string]: undefined;
|
|
611
598
|
} | {
|
|
612
599
|
[x: string]: undefined;
|
|
@@ -614,19 +601,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
614
601
|
[x: string]: undefined;
|
|
615
602
|
} | {
|
|
616
603
|
[x: string]: undefined;
|
|
617
|
-
}), string | number> & {
|
|
604
|
+
} | undefined), string | number> & {
|
|
618
605
|
[x: string]: undefined;
|
|
619
606
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
620
607
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
621
|
-
} | ({
|
|
622
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
623
608
|
} & {
|
|
624
609
|
[x: string]: undefined;
|
|
625
|
-
})
|
|
610
|
+
}) | ({
|
|
611
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
612
|
+
} & {
|
|
626
613
|
[x: string]: undefined;
|
|
627
|
-
}
|
|
614
|
+
} & {
|
|
628
615
|
[x: string]: undefined;
|
|
629
|
-
})) & ({
|
|
616
|
+
})) & ({
|
|
630
617
|
[x: string]: undefined;
|
|
631
618
|
} | {
|
|
632
619
|
[x: string]: undefined;
|
|
@@ -634,19 +621,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
634
621
|
[x: string]: undefined;
|
|
635
622
|
} | {
|
|
636
623
|
[x: string]: undefined;
|
|
637
|
-
}), string | number> & {
|
|
624
|
+
} | undefined), string | number> & {
|
|
638
625
|
[x: string]: undefined;
|
|
639
626
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
640
627
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
641
|
-
} | ({
|
|
642
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
643
628
|
} & {
|
|
644
629
|
[x: string]: undefined;
|
|
645
|
-
})
|
|
630
|
+
}) | ({
|
|
631
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
632
|
+
} & {
|
|
646
633
|
[x: string]: undefined;
|
|
647
|
-
}
|
|
634
|
+
} & {
|
|
648
635
|
[x: string]: undefined;
|
|
649
|
-
})) & ({
|
|
636
|
+
})) & ({
|
|
650
637
|
[x: string]: undefined;
|
|
651
638
|
} | {
|
|
652
639
|
[x: string]: undefined;
|
|
@@ -654,19 +641,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
654
641
|
[x: string]: undefined;
|
|
655
642
|
} | {
|
|
656
643
|
[x: string]: undefined;
|
|
657
|
-
}), string | number> & {
|
|
644
|
+
} | undefined), string | number> & {
|
|
658
645
|
[x: string]: undefined;
|
|
659
646
|
}>>) | (Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
660
647
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
661
|
-
} | ({
|
|
662
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
663
648
|
} & {
|
|
664
649
|
[x: string]: undefined;
|
|
665
|
-
})
|
|
650
|
+
}) | ({
|
|
651
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
652
|
+
} & {
|
|
666
653
|
[x: string]: undefined;
|
|
667
|
-
}
|
|
654
|
+
} & {
|
|
668
655
|
[x: string]: undefined;
|
|
669
|
-
})) & ({
|
|
656
|
+
})) & ({
|
|
670
657
|
[x: string]: undefined;
|
|
671
658
|
} | {
|
|
672
659
|
[x: string]: undefined;
|
|
@@ -674,19 +661,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
674
661
|
[x: string]: undefined;
|
|
675
662
|
} | {
|
|
676
663
|
[x: string]: undefined;
|
|
677
|
-
}), string | number> & {
|
|
664
|
+
} | undefined), string | number> & {
|
|
678
665
|
[x: string]: undefined;
|
|
679
666
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
680
667
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
681
|
-
} | ({
|
|
682
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
683
668
|
} & {
|
|
684
669
|
[x: string]: undefined;
|
|
685
|
-
})
|
|
670
|
+
}) | ({
|
|
671
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
672
|
+
} & {
|
|
686
673
|
[x: string]: undefined;
|
|
687
|
-
}
|
|
674
|
+
} & {
|
|
688
675
|
[x: string]: undefined;
|
|
689
|
-
})) & ({
|
|
676
|
+
})) & ({
|
|
690
677
|
[x: string]: undefined;
|
|
691
678
|
} | {
|
|
692
679
|
[x: string]: undefined;
|
|
@@ -694,19 +681,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
694
681
|
[x: string]: undefined;
|
|
695
682
|
} | {
|
|
696
683
|
[x: string]: undefined;
|
|
697
|
-
}), string | number> & {
|
|
684
|
+
} | undefined), string | number> & {
|
|
698
685
|
[x: string]: undefined;
|
|
699
686
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
700
687
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
701
|
-
} | ({
|
|
702
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
703
688
|
} & {
|
|
704
689
|
[x: string]: undefined;
|
|
705
|
-
})
|
|
690
|
+
}) | ({
|
|
691
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
692
|
+
} & {
|
|
706
693
|
[x: string]: undefined;
|
|
707
|
-
}
|
|
694
|
+
} & {
|
|
708
695
|
[x: string]: undefined;
|
|
709
|
-
})) & ({
|
|
696
|
+
})) & ({
|
|
710
697
|
[x: string]: undefined;
|
|
711
698
|
} | {
|
|
712
699
|
[x: string]: undefined;
|
|
@@ -714,19 +701,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
714
701
|
[x: string]: undefined;
|
|
715
702
|
} | {
|
|
716
703
|
[x: string]: undefined;
|
|
717
|
-
}), string | number> & {
|
|
704
|
+
} | undefined), string | number> & {
|
|
718
705
|
[x: string]: undefined;
|
|
719
706
|
}>>) | (Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
720
707
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
721
|
-
} | ({
|
|
722
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
723
708
|
} & {
|
|
724
709
|
[x: string]: undefined;
|
|
725
|
-
})
|
|
710
|
+
}) | ({
|
|
711
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
712
|
+
} & {
|
|
726
713
|
[x: string]: undefined;
|
|
727
|
-
}
|
|
714
|
+
} & {
|
|
728
715
|
[x: string]: undefined;
|
|
729
|
-
})) & ({
|
|
716
|
+
})) & ({
|
|
730
717
|
[x: string]: undefined;
|
|
731
718
|
} | {
|
|
732
719
|
[x: string]: undefined;
|
|
@@ -734,19 +721,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
734
721
|
[x: string]: undefined;
|
|
735
722
|
} | {
|
|
736
723
|
[x: string]: undefined;
|
|
737
|
-
}), string | number> & {
|
|
724
|
+
} | undefined), string | number> & {
|
|
738
725
|
[x: string]: undefined;
|
|
739
726
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
740
727
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
741
|
-
} | ({
|
|
742
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
743
728
|
} & {
|
|
744
729
|
[x: string]: undefined;
|
|
745
|
-
})
|
|
730
|
+
}) | ({
|
|
731
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
732
|
+
} & {
|
|
746
733
|
[x: string]: undefined;
|
|
747
|
-
}
|
|
734
|
+
} & {
|
|
748
735
|
[x: string]: undefined;
|
|
749
|
-
})) & ({
|
|
736
|
+
})) & ({
|
|
750
737
|
[x: string]: undefined;
|
|
751
738
|
} | {
|
|
752
739
|
[x: string]: undefined;
|
|
@@ -754,19 +741,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
754
741
|
[x: string]: undefined;
|
|
755
742
|
} | {
|
|
756
743
|
[x: string]: undefined;
|
|
757
|
-
}), string | number> & {
|
|
744
|
+
} | undefined), string | number> & {
|
|
758
745
|
[x: string]: undefined;
|
|
759
746
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
760
747
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
761
|
-
} | ({
|
|
762
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
763
748
|
} & {
|
|
764
749
|
[x: string]: undefined;
|
|
765
|
-
})
|
|
750
|
+
}) | ({
|
|
751
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
752
|
+
} & {
|
|
766
753
|
[x: string]: undefined;
|
|
767
|
-
}
|
|
754
|
+
} & {
|
|
768
755
|
[x: string]: undefined;
|
|
769
|
-
})) & ({
|
|
756
|
+
})) & ({
|
|
770
757
|
[x: string]: undefined;
|
|
771
758
|
} | {
|
|
772
759
|
[x: string]: undefined;
|
|
@@ -774,19 +761,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
774
761
|
[x: string]: undefined;
|
|
775
762
|
} | {
|
|
776
763
|
[x: string]: undefined;
|
|
777
|
-
}), string | number> & {
|
|
764
|
+
} | undefined), string | number> & {
|
|
778
765
|
[x: string]: undefined;
|
|
779
766
|
}>>) | (Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
780
767
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
781
|
-
} | ({
|
|
782
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
783
768
|
} & {
|
|
784
769
|
[x: string]: undefined;
|
|
785
|
-
})
|
|
770
|
+
}) | ({
|
|
771
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
772
|
+
} & {
|
|
786
773
|
[x: string]: undefined;
|
|
787
|
-
}
|
|
774
|
+
} & {
|
|
788
775
|
[x: string]: undefined;
|
|
789
|
-
})) & ({
|
|
776
|
+
})) & ({
|
|
790
777
|
[x: string]: undefined;
|
|
791
778
|
} | {
|
|
792
779
|
[x: string]: undefined;
|
|
@@ -794,19 +781,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
794
781
|
[x: string]: undefined;
|
|
795
782
|
} | {
|
|
796
783
|
[x: string]: undefined;
|
|
797
|
-
}), string | number> & {
|
|
784
|
+
} | undefined), string | number> & {
|
|
798
785
|
[x: string]: undefined;
|
|
799
786
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
800
787
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
801
|
-
} | ({
|
|
802
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
803
788
|
} & {
|
|
804
789
|
[x: string]: undefined;
|
|
805
|
-
})
|
|
790
|
+
}) | ({
|
|
791
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
792
|
+
} & {
|
|
806
793
|
[x: string]: undefined;
|
|
807
|
-
}
|
|
794
|
+
} & {
|
|
808
795
|
[x: string]: undefined;
|
|
809
|
-
})) & ({
|
|
796
|
+
})) & ({
|
|
810
797
|
[x: string]: undefined;
|
|
811
798
|
} | {
|
|
812
799
|
[x: string]: undefined;
|
|
@@ -814,19 +801,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
814
801
|
[x: string]: undefined;
|
|
815
802
|
} | {
|
|
816
803
|
[x: string]: undefined;
|
|
817
|
-
}), string | number> & {
|
|
804
|
+
} | undefined), string | number> & {
|
|
818
805
|
[x: string]: undefined;
|
|
819
806
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
820
807
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
821
|
-
} | ({
|
|
822
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
823
808
|
} & {
|
|
824
809
|
[x: string]: undefined;
|
|
825
|
-
})
|
|
810
|
+
}) | ({
|
|
811
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
812
|
+
} & {
|
|
826
813
|
[x: string]: undefined;
|
|
827
|
-
}
|
|
814
|
+
} & {
|
|
828
815
|
[x: string]: undefined;
|
|
829
|
-
})) & ({
|
|
816
|
+
})) & ({
|
|
830
817
|
[x: string]: undefined;
|
|
831
818
|
} | {
|
|
832
819
|
[x: string]: undefined;
|
|
@@ -834,19 +821,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
834
821
|
[x: string]: undefined;
|
|
835
822
|
} | {
|
|
836
823
|
[x: string]: undefined;
|
|
837
|
-
}), string | number> & {
|
|
824
|
+
} | undefined), string | number> & {
|
|
838
825
|
[x: string]: undefined;
|
|
839
826
|
}>>) | (Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
840
827
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
841
|
-
} | ({
|
|
842
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
843
828
|
} & {
|
|
844
829
|
[x: string]: undefined;
|
|
845
|
-
})
|
|
830
|
+
}) | ({
|
|
831
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
832
|
+
} & {
|
|
846
833
|
[x: string]: undefined;
|
|
847
|
-
}
|
|
834
|
+
} & {
|
|
848
835
|
[x: string]: undefined;
|
|
849
|
-
})) & ({
|
|
836
|
+
})) & ({
|
|
850
837
|
[x: string]: undefined;
|
|
851
838
|
} | {
|
|
852
839
|
[x: string]: undefined;
|
|
@@ -854,19 +841,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
854
841
|
[x: string]: undefined;
|
|
855
842
|
} | {
|
|
856
843
|
[x: string]: undefined;
|
|
857
|
-
}), string | number> & {
|
|
844
|
+
} | undefined), string | number> & {
|
|
858
845
|
[x: string]: undefined;
|
|
859
846
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
860
847
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
861
|
-
} | ({
|
|
862
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
863
848
|
} & {
|
|
864
849
|
[x: string]: undefined;
|
|
865
|
-
})
|
|
850
|
+
}) | ({
|
|
851
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
852
|
+
} & {
|
|
866
853
|
[x: string]: undefined;
|
|
867
|
-
}
|
|
854
|
+
} & {
|
|
868
855
|
[x: string]: undefined;
|
|
869
|
-
})) & ({
|
|
856
|
+
})) & ({
|
|
870
857
|
[x: string]: undefined;
|
|
871
858
|
} | {
|
|
872
859
|
[x: string]: undefined;
|
|
@@ -874,19 +861,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
874
861
|
[x: string]: undefined;
|
|
875
862
|
} | {
|
|
876
863
|
[x: string]: undefined;
|
|
877
|
-
}), string | number> & {
|
|
864
|
+
} | undefined), string | number> & {
|
|
878
865
|
[x: string]: undefined;
|
|
879
866
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
880
867
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
881
|
-
} | ({
|
|
882
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
883
868
|
} & {
|
|
884
869
|
[x: string]: undefined;
|
|
885
|
-
})
|
|
870
|
+
}) | ({
|
|
871
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
872
|
+
} & {
|
|
886
873
|
[x: string]: undefined;
|
|
887
|
-
}
|
|
874
|
+
} & {
|
|
888
875
|
[x: string]: undefined;
|
|
889
|
-
})) & ({
|
|
876
|
+
})) & ({
|
|
890
877
|
[x: string]: undefined;
|
|
891
878
|
} | {
|
|
892
879
|
[x: string]: undefined;
|
|
@@ -894,19 +881,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
894
881
|
[x: string]: undefined;
|
|
895
882
|
} | {
|
|
896
883
|
[x: string]: undefined;
|
|
897
|
-
}), string | number> & {
|
|
884
|
+
} | undefined), string | number> & {
|
|
898
885
|
[x: string]: undefined;
|
|
899
886
|
}>>) | (Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
900
887
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
901
|
-
} | ({
|
|
902
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
903
888
|
} & {
|
|
904
889
|
[x: string]: undefined;
|
|
905
|
-
})
|
|
890
|
+
}) | ({
|
|
891
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
892
|
+
} & {
|
|
906
893
|
[x: string]: undefined;
|
|
907
|
-
}
|
|
894
|
+
} & {
|
|
908
895
|
[x: string]: undefined;
|
|
909
|
-
})) & ({
|
|
896
|
+
})) & ({
|
|
910
897
|
[x: string]: undefined;
|
|
911
898
|
} | {
|
|
912
899
|
[x: string]: undefined;
|
|
@@ -914,19 +901,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
914
901
|
[x: string]: undefined;
|
|
915
902
|
} | {
|
|
916
903
|
[x: string]: undefined;
|
|
917
|
-
}), string | number> & {
|
|
904
|
+
} | undefined), string | number> & {
|
|
918
905
|
[x: string]: undefined;
|
|
919
906
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
920
907
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
921
|
-
} | ({
|
|
922
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
923
908
|
} & {
|
|
924
909
|
[x: string]: undefined;
|
|
925
|
-
})
|
|
910
|
+
}) | ({
|
|
911
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
912
|
+
} & {
|
|
926
913
|
[x: string]: undefined;
|
|
927
|
-
}
|
|
914
|
+
} & {
|
|
928
915
|
[x: string]: undefined;
|
|
929
|
-
})) & ({
|
|
916
|
+
})) & ({
|
|
930
917
|
[x: string]: undefined;
|
|
931
918
|
} | {
|
|
932
919
|
[x: string]: undefined;
|
|
@@ -934,19 +921,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
934
921
|
[x: string]: undefined;
|
|
935
922
|
} | {
|
|
936
923
|
[x: string]: undefined;
|
|
937
|
-
}), string | number> & {
|
|
924
|
+
} | undefined), string | number> & {
|
|
938
925
|
[x: string]: undefined;
|
|
939
926
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
940
927
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
941
|
-
} | ({
|
|
942
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
943
928
|
} & {
|
|
944
929
|
[x: string]: undefined;
|
|
945
|
-
})
|
|
930
|
+
}) | ({
|
|
931
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
932
|
+
} & {
|
|
946
933
|
[x: string]: undefined;
|
|
947
|
-
}
|
|
934
|
+
} & {
|
|
948
935
|
[x: string]: undefined;
|
|
949
|
-
})) & ({
|
|
936
|
+
})) & ({
|
|
950
937
|
[x: string]: undefined;
|
|
951
938
|
} | {
|
|
952
939
|
[x: string]: undefined;
|
|
@@ -954,19 +941,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
954
941
|
[x: string]: undefined;
|
|
955
942
|
} | {
|
|
956
943
|
[x: string]: undefined;
|
|
957
|
-
}), string | number> & {
|
|
944
|
+
} | undefined), string | number> & {
|
|
958
945
|
[x: string]: undefined;
|
|
959
946
|
}>>) | (Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
960
947
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
961
|
-
} | ({
|
|
962
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
963
948
|
} & {
|
|
964
949
|
[x: string]: undefined;
|
|
965
|
-
})
|
|
950
|
+
}) | ({
|
|
951
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
952
|
+
} & {
|
|
966
953
|
[x: string]: undefined;
|
|
967
|
-
}
|
|
954
|
+
} & {
|
|
968
955
|
[x: string]: undefined;
|
|
969
|
-
})) & ({
|
|
956
|
+
})) & ({
|
|
970
957
|
[x: string]: undefined;
|
|
971
958
|
} | {
|
|
972
959
|
[x: string]: undefined;
|
|
@@ -974,19 +961,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
974
961
|
[x: string]: undefined;
|
|
975
962
|
} | {
|
|
976
963
|
[x: string]: undefined;
|
|
977
|
-
}), string | number> & {
|
|
964
|
+
} | undefined), string | number> & {
|
|
978
965
|
[x: string]: undefined;
|
|
979
966
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
980
967
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
981
|
-
} | ({
|
|
982
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
983
968
|
} & {
|
|
984
969
|
[x: string]: undefined;
|
|
985
|
-
})
|
|
970
|
+
}) | ({
|
|
971
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
972
|
+
} & {
|
|
986
973
|
[x: string]: undefined;
|
|
987
|
-
}
|
|
974
|
+
} & {
|
|
988
975
|
[x: string]: undefined;
|
|
989
|
-
})) & ({
|
|
976
|
+
})) & ({
|
|
990
977
|
[x: string]: undefined;
|
|
991
978
|
} | {
|
|
992
979
|
[x: string]: undefined;
|
|
@@ -994,19 +981,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
994
981
|
[x: string]: undefined;
|
|
995
982
|
} | {
|
|
996
983
|
[x: string]: undefined;
|
|
997
|
-
}), string | number> & {
|
|
984
|
+
} | undefined), string | number> & {
|
|
998
985
|
[x: string]: undefined;
|
|
999
986
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1000
987
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1001
|
-
} | ({
|
|
1002
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1003
988
|
} & {
|
|
1004
989
|
[x: string]: undefined;
|
|
1005
|
-
})
|
|
990
|
+
}) | ({
|
|
991
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
992
|
+
} & {
|
|
1006
993
|
[x: string]: undefined;
|
|
1007
|
-
}
|
|
994
|
+
} & {
|
|
1008
995
|
[x: string]: undefined;
|
|
1009
|
-
})) & ({
|
|
996
|
+
})) & ({
|
|
1010
997
|
[x: string]: undefined;
|
|
1011
998
|
} | {
|
|
1012
999
|
[x: string]: undefined;
|
|
@@ -1014,19 +1001,19 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
1014
1001
|
[x: string]: undefined;
|
|
1015
1002
|
} | {
|
|
1016
1003
|
[x: string]: undefined;
|
|
1017
|
-
}), string | number> & {
|
|
1004
|
+
} | undefined), string | number> & {
|
|
1018
1005
|
[x: string]: undefined;
|
|
1019
1006
|
}>>), TamaguiElement, import("@tamagui/core").TextPropsBase, ((({
|
|
1020
1007
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1021
|
-
} | ({
|
|
1022
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1023
1008
|
} & {
|
|
1024
1009
|
[x: string]: undefined;
|
|
1025
|
-
})
|
|
1010
|
+
}) | ({
|
|
1011
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1012
|
+
} & {
|
|
1026
1013
|
[x: string]: undefined;
|
|
1027
|
-
}
|
|
1014
|
+
} & {
|
|
1028
1015
|
[x: string]: undefined;
|
|
1029
|
-
})) & ({
|
|
1016
|
+
})) & ({
|
|
1030
1017
|
[x: string]: undefined;
|
|
1031
1018
|
} | {
|
|
1032
1019
|
[x: string]: undefined;
|
|
@@ -1034,7 +1021,7 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
1034
1021
|
[x: string]: undefined;
|
|
1035
1022
|
} | {
|
|
1036
1023
|
[x: string]: undefined;
|
|
1037
|
-
})) & ({
|
|
1024
|
+
} | undefined)) & ({
|
|
1038
1025
|
[x: string]: undefined;
|
|
1039
1026
|
} | {
|
|
1040
1027
|
[x: string]: undefined;
|
|
@@ -1050,7 +1037,7 @@ declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<(Omit<i
|
|
|
1050
1037
|
[x: string]: undefined;
|
|
1051
1038
|
} | {
|
|
1052
1039
|
[x: string]: undefined;
|
|
1053
|
-
}), {
|
|
1040
|
+
} | undefined), {
|
|
1054
1041
|
displayName: string | undefined;
|
|
1055
1042
|
}>;
|
|
1056
1043
|
type DialogTitleProps = GetProps<typeof DialogTitleFrame>;
|
|
@@ -1074,207 +1061,195 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1074
1061
|
[x: string]: undefined;
|
|
1075
1062
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1076
1063
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1077
|
-
} | ({
|
|
1078
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1079
1064
|
} & {
|
|
1080
1065
|
[x: string]: undefined;
|
|
1081
|
-
}
|
|
1066
|
+
}, string | number> & {
|
|
1082
1067
|
[x: string]: undefined;
|
|
1083
1068
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1084
1069
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1085
|
-
} | ({
|
|
1086
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1087
1070
|
} & {
|
|
1088
1071
|
[x: string]: undefined;
|
|
1089
|
-
}
|
|
1072
|
+
}, string | number> & {
|
|
1090
1073
|
[x: string]: undefined;
|
|
1091
1074
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1092
1075
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1093
|
-
} | ({
|
|
1094
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1095
1076
|
} & {
|
|
1096
1077
|
[x: string]: undefined;
|
|
1097
|
-
}
|
|
1078
|
+
}, string | number> & {
|
|
1098
1079
|
[x: string]: undefined;
|
|
1099
1080
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1100
1081
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1101
|
-
} | ({
|
|
1102
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1103
1082
|
} & {
|
|
1104
1083
|
[x: string]: undefined;
|
|
1105
|
-
}
|
|
1084
|
+
}, string | number> & {
|
|
1106
1085
|
[x: string]: undefined;
|
|
1107
1086
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1108
1087
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1109
|
-
} | ({
|
|
1110
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1111
1088
|
} & {
|
|
1112
1089
|
[x: string]: undefined;
|
|
1113
|
-
}
|
|
1090
|
+
}, string | number> & {
|
|
1114
1091
|
[x: string]: undefined;
|
|
1115
1092
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1116
1093
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1117
|
-
} | ({
|
|
1118
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1119
1094
|
} & {
|
|
1120
1095
|
[x: string]: undefined;
|
|
1121
|
-
}
|
|
1096
|
+
}, string | number> & {
|
|
1122
1097
|
[x: string]: undefined;
|
|
1123
1098
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
1124
1099
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1125
|
-
} | ({
|
|
1126
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1127
1100
|
} & {
|
|
1128
1101
|
[x: string]: undefined;
|
|
1129
|
-
})
|
|
1102
|
+
}) | ({
|
|
1103
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1104
|
+
} & {
|
|
1130
1105
|
[x: string]: undefined;
|
|
1131
|
-
}
|
|
1106
|
+
} & {
|
|
1132
1107
|
[x: string]: undefined;
|
|
1133
1108
|
}), string | number> & {
|
|
1134
1109
|
[x: string]: undefined;
|
|
1135
1110
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
1136
1111
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1137
|
-
} | ({
|
|
1138
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1139
1112
|
} & {
|
|
1140
1113
|
[x: string]: undefined;
|
|
1141
|
-
})
|
|
1114
|
+
}) | ({
|
|
1115
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1116
|
+
} & {
|
|
1142
1117
|
[x: string]: undefined;
|
|
1143
|
-
}
|
|
1118
|
+
} & {
|
|
1144
1119
|
[x: string]: undefined;
|
|
1145
1120
|
}), string | number> & {
|
|
1146
1121
|
[x: string]: undefined;
|
|
1147
1122
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
1148
1123
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1149
|
-
} | ({
|
|
1150
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1151
1124
|
} & {
|
|
1152
1125
|
[x: string]: undefined;
|
|
1153
|
-
})
|
|
1126
|
+
}) | ({
|
|
1127
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1128
|
+
} & {
|
|
1154
1129
|
[x: string]: undefined;
|
|
1155
|
-
}
|
|
1130
|
+
} & {
|
|
1156
1131
|
[x: string]: undefined;
|
|
1157
1132
|
}), string | number> & {
|
|
1158
1133
|
[x: string]: undefined;
|
|
1159
1134
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
1160
1135
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1161
|
-
} | ({
|
|
1162
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1163
1136
|
} & {
|
|
1164
1137
|
[x: string]: undefined;
|
|
1165
|
-
})
|
|
1138
|
+
}) | ({
|
|
1139
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1140
|
+
} & {
|
|
1166
1141
|
[x: string]: undefined;
|
|
1167
|
-
}
|
|
1142
|
+
} & {
|
|
1168
1143
|
[x: string]: undefined;
|
|
1169
1144
|
}), string | number> & {
|
|
1170
1145
|
[x: string]: undefined;
|
|
1171
1146
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
1172
1147
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1173
|
-
} | ({
|
|
1174
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1175
1148
|
} & {
|
|
1176
1149
|
[x: string]: undefined;
|
|
1177
|
-
})
|
|
1150
|
+
}) | ({
|
|
1151
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1152
|
+
} & {
|
|
1178
1153
|
[x: string]: undefined;
|
|
1179
|
-
}
|
|
1154
|
+
} & {
|
|
1180
1155
|
[x: string]: undefined;
|
|
1181
1156
|
}), string | number> & {
|
|
1182
1157
|
[x: string]: undefined;
|
|
1183
1158
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
1184
1159
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1185
|
-
} | ({
|
|
1186
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1187
1160
|
} & {
|
|
1188
1161
|
[x: string]: undefined;
|
|
1189
|
-
})
|
|
1162
|
+
}) | ({
|
|
1163
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1164
|
+
} & {
|
|
1190
1165
|
[x: string]: undefined;
|
|
1191
|
-
}
|
|
1166
|
+
} & {
|
|
1192
1167
|
[x: string]: undefined;
|
|
1193
1168
|
}), string | number> & {
|
|
1194
1169
|
[x: string]: undefined;
|
|
1195
1170
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
1196
1171
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1197
|
-
} | ({
|
|
1198
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1199
1172
|
} & {
|
|
1200
1173
|
[x: string]: undefined;
|
|
1201
|
-
})
|
|
1174
|
+
}) | ({
|
|
1175
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1176
|
+
} & {
|
|
1202
1177
|
[x: string]: undefined;
|
|
1203
|
-
}
|
|
1178
|
+
} & {
|
|
1204
1179
|
[x: string]: undefined;
|
|
1205
1180
|
}), string | number> & {
|
|
1206
1181
|
[x: string]: undefined;
|
|
1207
1182
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
1208
1183
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1209
|
-
} | ({
|
|
1210
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1211
1184
|
} & {
|
|
1212
1185
|
[x: string]: undefined;
|
|
1213
|
-
})
|
|
1186
|
+
}) | ({
|
|
1187
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1188
|
+
} & {
|
|
1214
1189
|
[x: string]: undefined;
|
|
1215
|
-
}
|
|
1190
|
+
} & {
|
|
1216
1191
|
[x: string]: undefined;
|
|
1217
1192
|
}), string | number> & {
|
|
1218
1193
|
[x: string]: undefined;
|
|
1219
1194
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
1220
1195
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1221
|
-
} | ({
|
|
1222
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1223
1196
|
} & {
|
|
1224
1197
|
[x: string]: undefined;
|
|
1225
|
-
})
|
|
1198
|
+
}) | ({
|
|
1199
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1200
|
+
} & {
|
|
1226
1201
|
[x: string]: undefined;
|
|
1227
|
-
}
|
|
1202
|
+
} & {
|
|
1228
1203
|
[x: string]: undefined;
|
|
1229
1204
|
}), string | number> & {
|
|
1230
1205
|
[x: string]: undefined;
|
|
1231
1206
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
1232
1207
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1233
|
-
} | ({
|
|
1234
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1235
1208
|
} & {
|
|
1236
1209
|
[x: string]: undefined;
|
|
1237
|
-
})
|
|
1210
|
+
}) | ({
|
|
1211
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1212
|
+
} & {
|
|
1238
1213
|
[x: string]: undefined;
|
|
1239
|
-
}
|
|
1214
|
+
} & {
|
|
1240
1215
|
[x: string]: undefined;
|
|
1241
1216
|
}), string | number> & {
|
|
1242
1217
|
[x: string]: undefined;
|
|
1243
1218
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
1244
1219
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1245
|
-
} | ({
|
|
1246
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1247
1220
|
} & {
|
|
1248
1221
|
[x: string]: undefined;
|
|
1249
|
-
})
|
|
1222
|
+
}) | ({
|
|
1223
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1224
|
+
} & {
|
|
1250
1225
|
[x: string]: undefined;
|
|
1251
|
-
}
|
|
1226
|
+
} & {
|
|
1252
1227
|
[x: string]: undefined;
|
|
1253
1228
|
}), string | number> & {
|
|
1254
1229
|
[x: string]: undefined;
|
|
1255
1230
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
1256
1231
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1257
|
-
} | ({
|
|
1258
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1259
1232
|
} & {
|
|
1260
1233
|
[x: string]: undefined;
|
|
1261
|
-
})
|
|
1234
|
+
}) | ({
|
|
1235
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1236
|
+
} & {
|
|
1262
1237
|
[x: string]: undefined;
|
|
1263
|
-
}
|
|
1238
|
+
} & {
|
|
1264
1239
|
[x: string]: undefined;
|
|
1265
1240
|
}), string | number> & {
|
|
1266
1241
|
[x: string]: undefined;
|
|
1267
1242
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1268
1243
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1269
|
-
} | ({
|
|
1270
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1271
1244
|
} & {
|
|
1272
1245
|
[x: string]: undefined;
|
|
1273
|
-
})
|
|
1246
|
+
}) | ({
|
|
1247
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1248
|
+
} & {
|
|
1274
1249
|
[x: string]: undefined;
|
|
1275
|
-
}
|
|
1250
|
+
} & {
|
|
1276
1251
|
[x: string]: undefined;
|
|
1277
|
-
})) & ({
|
|
1252
|
+
})) & ({
|
|
1278
1253
|
[x: string]: undefined;
|
|
1279
1254
|
} | {
|
|
1280
1255
|
[x: string]: undefined;
|
|
@@ -1282,19 +1257,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1282
1257
|
[x: string]: undefined;
|
|
1283
1258
|
} | {
|
|
1284
1259
|
[x: string]: undefined;
|
|
1285
|
-
}), string | number> & {
|
|
1260
|
+
} | undefined), string | number> & {
|
|
1286
1261
|
[x: string]: undefined;
|
|
1287
1262
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1288
1263
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1289
|
-
} | ({
|
|
1290
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1291
1264
|
} & {
|
|
1292
1265
|
[x: string]: undefined;
|
|
1293
|
-
})
|
|
1266
|
+
}) | ({
|
|
1267
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1268
|
+
} & {
|
|
1294
1269
|
[x: string]: undefined;
|
|
1295
|
-
}
|
|
1270
|
+
} & {
|
|
1296
1271
|
[x: string]: undefined;
|
|
1297
|
-
})) & ({
|
|
1272
|
+
})) & ({
|
|
1298
1273
|
[x: string]: undefined;
|
|
1299
1274
|
} | {
|
|
1300
1275
|
[x: string]: undefined;
|
|
@@ -1302,19 +1277,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1302
1277
|
[x: string]: undefined;
|
|
1303
1278
|
} | {
|
|
1304
1279
|
[x: string]: undefined;
|
|
1305
|
-
}), string | number> & {
|
|
1280
|
+
} | undefined), string | number> & {
|
|
1306
1281
|
[x: string]: undefined;
|
|
1307
1282
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1308
1283
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1309
|
-
} | ({
|
|
1310
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1311
1284
|
} & {
|
|
1312
1285
|
[x: string]: undefined;
|
|
1313
|
-
})
|
|
1286
|
+
}) | ({
|
|
1287
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1288
|
+
} & {
|
|
1314
1289
|
[x: string]: undefined;
|
|
1315
|
-
}
|
|
1290
|
+
} & {
|
|
1316
1291
|
[x: string]: undefined;
|
|
1317
|
-
})) & ({
|
|
1292
|
+
})) & ({
|
|
1318
1293
|
[x: string]: undefined;
|
|
1319
1294
|
} | {
|
|
1320
1295
|
[x: string]: undefined;
|
|
@@ -1322,19 +1297,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1322
1297
|
[x: string]: undefined;
|
|
1323
1298
|
} | {
|
|
1324
1299
|
[x: string]: undefined;
|
|
1325
|
-
}), string | number> & {
|
|
1300
|
+
} | undefined), string | number> & {
|
|
1326
1301
|
[x: string]: undefined;
|
|
1327
1302
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1328
1303
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1329
|
-
} | ({
|
|
1330
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1331
1304
|
} & {
|
|
1332
1305
|
[x: string]: undefined;
|
|
1333
|
-
})
|
|
1306
|
+
}) | ({
|
|
1307
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1308
|
+
} & {
|
|
1334
1309
|
[x: string]: undefined;
|
|
1335
|
-
}
|
|
1310
|
+
} & {
|
|
1336
1311
|
[x: string]: undefined;
|
|
1337
|
-
})) & ({
|
|
1312
|
+
})) & ({
|
|
1338
1313
|
[x: string]: undefined;
|
|
1339
1314
|
} | {
|
|
1340
1315
|
[x: string]: undefined;
|
|
@@ -1342,19 +1317,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1342
1317
|
[x: string]: undefined;
|
|
1343
1318
|
} | {
|
|
1344
1319
|
[x: string]: undefined;
|
|
1345
|
-
}), string | number> & {
|
|
1320
|
+
} | undefined), string | number> & {
|
|
1346
1321
|
[x: string]: undefined;
|
|
1347
1322
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1348
1323
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1349
|
-
} | ({
|
|
1350
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1351
1324
|
} & {
|
|
1352
1325
|
[x: string]: undefined;
|
|
1353
|
-
})
|
|
1326
|
+
}) | ({
|
|
1327
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1328
|
+
} & {
|
|
1354
1329
|
[x: string]: undefined;
|
|
1355
|
-
}
|
|
1330
|
+
} & {
|
|
1356
1331
|
[x: string]: undefined;
|
|
1357
|
-
})) & ({
|
|
1332
|
+
})) & ({
|
|
1358
1333
|
[x: string]: undefined;
|
|
1359
1334
|
} | {
|
|
1360
1335
|
[x: string]: undefined;
|
|
@@ -1362,19 +1337,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1362
1337
|
[x: string]: undefined;
|
|
1363
1338
|
} | {
|
|
1364
1339
|
[x: string]: undefined;
|
|
1365
|
-
}), string | number> & {
|
|
1340
|
+
} | undefined), string | number> & {
|
|
1366
1341
|
[x: string]: undefined;
|
|
1367
1342
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1368
1343
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1369
|
-
} | ({
|
|
1370
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1371
1344
|
} & {
|
|
1372
1345
|
[x: string]: undefined;
|
|
1373
|
-
})
|
|
1346
|
+
}) | ({
|
|
1347
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1348
|
+
} & {
|
|
1374
1349
|
[x: string]: undefined;
|
|
1375
|
-
}
|
|
1350
|
+
} & {
|
|
1376
1351
|
[x: string]: undefined;
|
|
1377
|
-
})) & ({
|
|
1352
|
+
})) & ({
|
|
1378
1353
|
[x: string]: undefined;
|
|
1379
1354
|
} | {
|
|
1380
1355
|
[x: string]: undefined;
|
|
@@ -1382,19 +1357,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1382
1357
|
[x: string]: undefined;
|
|
1383
1358
|
} | {
|
|
1384
1359
|
[x: string]: undefined;
|
|
1385
|
-
}), string | number> & {
|
|
1360
|
+
} | undefined), string | number> & {
|
|
1386
1361
|
[x: string]: undefined;
|
|
1387
1362
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1388
1363
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1389
|
-
} | ({
|
|
1390
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1391
1364
|
} & {
|
|
1392
1365
|
[x: string]: undefined;
|
|
1393
|
-
})
|
|
1366
|
+
}) | ({
|
|
1367
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1368
|
+
} & {
|
|
1394
1369
|
[x: string]: undefined;
|
|
1395
|
-
}
|
|
1370
|
+
} & {
|
|
1396
1371
|
[x: string]: undefined;
|
|
1397
|
-
})) & ({
|
|
1372
|
+
})) & ({
|
|
1398
1373
|
[x: string]: undefined;
|
|
1399
1374
|
} | {
|
|
1400
1375
|
[x: string]: undefined;
|
|
@@ -1402,19 +1377,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1402
1377
|
[x: string]: undefined;
|
|
1403
1378
|
} | {
|
|
1404
1379
|
[x: string]: undefined;
|
|
1405
|
-
}), string | number> & {
|
|
1380
|
+
} | undefined), string | number> & {
|
|
1406
1381
|
[x: string]: undefined;
|
|
1407
1382
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1408
1383
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1409
|
-
} | ({
|
|
1410
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1411
1384
|
} & {
|
|
1412
1385
|
[x: string]: undefined;
|
|
1413
|
-
})
|
|
1386
|
+
}) | ({
|
|
1387
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1388
|
+
} & {
|
|
1414
1389
|
[x: string]: undefined;
|
|
1415
|
-
}
|
|
1390
|
+
} & {
|
|
1416
1391
|
[x: string]: undefined;
|
|
1417
|
-
})) & ({
|
|
1392
|
+
})) & ({
|
|
1418
1393
|
[x: string]: undefined;
|
|
1419
1394
|
} | {
|
|
1420
1395
|
[x: string]: undefined;
|
|
@@ -1422,19 +1397,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1422
1397
|
[x: string]: undefined;
|
|
1423
1398
|
} | {
|
|
1424
1399
|
[x: string]: undefined;
|
|
1425
|
-
}), string | number> & {
|
|
1400
|
+
} | undefined), string | number> & {
|
|
1426
1401
|
[x: string]: undefined;
|
|
1427
1402
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1428
1403
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1429
|
-
} | ({
|
|
1430
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1431
1404
|
} & {
|
|
1432
1405
|
[x: string]: undefined;
|
|
1433
|
-
})
|
|
1406
|
+
}) | ({
|
|
1407
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1408
|
+
} & {
|
|
1434
1409
|
[x: string]: undefined;
|
|
1435
|
-
}
|
|
1410
|
+
} & {
|
|
1436
1411
|
[x: string]: undefined;
|
|
1437
|
-
})) & ({
|
|
1412
|
+
})) & ({
|
|
1438
1413
|
[x: string]: undefined;
|
|
1439
1414
|
} | {
|
|
1440
1415
|
[x: string]: undefined;
|
|
@@ -1442,19 +1417,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1442
1417
|
[x: string]: undefined;
|
|
1443
1418
|
} | {
|
|
1444
1419
|
[x: string]: undefined;
|
|
1445
|
-
}), string | number> & {
|
|
1420
|
+
} | undefined), string | number> & {
|
|
1446
1421
|
[x: string]: undefined;
|
|
1447
1422
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1448
1423
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1449
|
-
} | ({
|
|
1450
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1451
1424
|
} & {
|
|
1452
1425
|
[x: string]: undefined;
|
|
1453
|
-
})
|
|
1426
|
+
}) | ({
|
|
1427
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1428
|
+
} & {
|
|
1454
1429
|
[x: string]: undefined;
|
|
1455
|
-
}
|
|
1430
|
+
} & {
|
|
1456
1431
|
[x: string]: undefined;
|
|
1457
|
-
})) & ({
|
|
1432
|
+
})) & ({
|
|
1458
1433
|
[x: string]: undefined;
|
|
1459
1434
|
} | {
|
|
1460
1435
|
[x: string]: undefined;
|
|
@@ -1462,19 +1437,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1462
1437
|
[x: string]: undefined;
|
|
1463
1438
|
} | {
|
|
1464
1439
|
[x: string]: undefined;
|
|
1465
|
-
}), string | number> & {
|
|
1440
|
+
} | undefined), string | number> & {
|
|
1466
1441
|
[x: string]: undefined;
|
|
1467
1442
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1468
1443
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1469
|
-
} | ({
|
|
1470
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1471
1444
|
} & {
|
|
1472
1445
|
[x: string]: undefined;
|
|
1473
|
-
})
|
|
1446
|
+
}) | ({
|
|
1447
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1448
|
+
} & {
|
|
1474
1449
|
[x: string]: undefined;
|
|
1475
|
-
}
|
|
1450
|
+
} & {
|
|
1476
1451
|
[x: string]: undefined;
|
|
1477
|
-
})) & ({
|
|
1452
|
+
})) & ({
|
|
1478
1453
|
[x: string]: undefined;
|
|
1479
1454
|
} | {
|
|
1480
1455
|
[x: string]: undefined;
|
|
@@ -1482,19 +1457,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1482
1457
|
[x: string]: undefined;
|
|
1483
1458
|
} | {
|
|
1484
1459
|
[x: string]: undefined;
|
|
1485
|
-
}), string | number> & {
|
|
1460
|
+
} | undefined), string | number> & {
|
|
1486
1461
|
[x: string]: undefined;
|
|
1487
1462
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1488
1463
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1489
|
-
} | ({
|
|
1490
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1491
1464
|
} & {
|
|
1492
1465
|
[x: string]: undefined;
|
|
1493
|
-
})
|
|
1466
|
+
}) | ({
|
|
1467
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1468
|
+
} & {
|
|
1494
1469
|
[x: string]: undefined;
|
|
1495
|
-
}
|
|
1470
|
+
} & {
|
|
1496
1471
|
[x: string]: undefined;
|
|
1497
|
-
})) & ({
|
|
1472
|
+
})) & ({
|
|
1498
1473
|
[x: string]: undefined;
|
|
1499
1474
|
} | {
|
|
1500
1475
|
[x: string]: undefined;
|
|
@@ -1502,19 +1477,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1502
1477
|
[x: string]: undefined;
|
|
1503
1478
|
} | {
|
|
1504
1479
|
[x: string]: undefined;
|
|
1505
|
-
}), string | number> & {
|
|
1480
|
+
} | undefined), string | number> & {
|
|
1506
1481
|
[x: string]: undefined;
|
|
1507
1482
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1508
1483
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1509
|
-
} | ({
|
|
1510
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1511
1484
|
} & {
|
|
1512
1485
|
[x: string]: undefined;
|
|
1513
|
-
})
|
|
1486
|
+
}) | ({
|
|
1487
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1488
|
+
} & {
|
|
1514
1489
|
[x: string]: undefined;
|
|
1515
|
-
}
|
|
1490
|
+
} & {
|
|
1516
1491
|
[x: string]: undefined;
|
|
1517
|
-
})) & ({
|
|
1492
|
+
})) & ({
|
|
1518
1493
|
[x: string]: undefined;
|
|
1519
1494
|
} | {
|
|
1520
1495
|
[x: string]: undefined;
|
|
@@ -1522,19 +1497,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1522
1497
|
[x: string]: undefined;
|
|
1523
1498
|
} | {
|
|
1524
1499
|
[x: string]: undefined;
|
|
1525
|
-
}), string | number> & {
|
|
1500
|
+
} | undefined), string | number> & {
|
|
1526
1501
|
[x: string]: undefined;
|
|
1527
1502
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1528
1503
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1529
|
-
} | ({
|
|
1530
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1531
1504
|
} & {
|
|
1532
1505
|
[x: string]: undefined;
|
|
1533
|
-
})
|
|
1506
|
+
}) | ({
|
|
1507
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1508
|
+
} & {
|
|
1534
1509
|
[x: string]: undefined;
|
|
1535
|
-
}
|
|
1510
|
+
} & {
|
|
1536
1511
|
[x: string]: undefined;
|
|
1537
|
-
})) & ({
|
|
1512
|
+
})) & ({
|
|
1538
1513
|
[x: string]: undefined;
|
|
1539
1514
|
} | {
|
|
1540
1515
|
[x: string]: undefined;
|
|
@@ -1542,19 +1517,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1542
1517
|
[x: string]: undefined;
|
|
1543
1518
|
} | {
|
|
1544
1519
|
[x: string]: undefined;
|
|
1545
|
-
}), string | number> & {
|
|
1520
|
+
} | undefined), string | number> & {
|
|
1546
1521
|
[x: string]: undefined;
|
|
1547
1522
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1548
1523
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1549
|
-
} | ({
|
|
1550
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1551
1524
|
} & {
|
|
1552
1525
|
[x: string]: undefined;
|
|
1553
|
-
})
|
|
1526
|
+
}) | ({
|
|
1527
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1528
|
+
} & {
|
|
1554
1529
|
[x: string]: undefined;
|
|
1555
|
-
}
|
|
1530
|
+
} & {
|
|
1556
1531
|
[x: string]: undefined;
|
|
1557
|
-
})) & ({
|
|
1532
|
+
})) & ({
|
|
1558
1533
|
[x: string]: undefined;
|
|
1559
1534
|
} | {
|
|
1560
1535
|
[x: string]: undefined;
|
|
@@ -1562,19 +1537,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1562
1537
|
[x: string]: undefined;
|
|
1563
1538
|
} | {
|
|
1564
1539
|
[x: string]: undefined;
|
|
1565
|
-
}), string | number> & {
|
|
1540
|
+
} | undefined), string | number> & {
|
|
1566
1541
|
[x: string]: undefined;
|
|
1567
1542
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1568
1543
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1569
|
-
} | ({
|
|
1570
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1571
1544
|
} & {
|
|
1572
1545
|
[x: string]: undefined;
|
|
1573
|
-
})
|
|
1546
|
+
}) | ({
|
|
1547
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1548
|
+
} & {
|
|
1574
1549
|
[x: string]: undefined;
|
|
1575
|
-
}
|
|
1550
|
+
} & {
|
|
1576
1551
|
[x: string]: undefined;
|
|
1577
|
-
})) & ({
|
|
1552
|
+
})) & ({
|
|
1578
1553
|
[x: string]: undefined;
|
|
1579
1554
|
} | {
|
|
1580
1555
|
[x: string]: undefined;
|
|
@@ -1582,19 +1557,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1582
1557
|
[x: string]: undefined;
|
|
1583
1558
|
} | {
|
|
1584
1559
|
[x: string]: undefined;
|
|
1585
|
-
}), string | number> & {
|
|
1560
|
+
} | undefined), string | number> & {
|
|
1586
1561
|
[x: string]: undefined;
|
|
1587
1562
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1588
1563
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1589
|
-
} | ({
|
|
1590
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1591
1564
|
} & {
|
|
1592
1565
|
[x: string]: undefined;
|
|
1593
|
-
})
|
|
1566
|
+
}) | ({
|
|
1567
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1568
|
+
} & {
|
|
1594
1569
|
[x: string]: undefined;
|
|
1595
|
-
}
|
|
1570
|
+
} & {
|
|
1596
1571
|
[x: string]: undefined;
|
|
1597
|
-
})) & ({
|
|
1572
|
+
})) & ({
|
|
1598
1573
|
[x: string]: undefined;
|
|
1599
1574
|
} | {
|
|
1600
1575
|
[x: string]: undefined;
|
|
@@ -1602,19 +1577,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1602
1577
|
[x: string]: undefined;
|
|
1603
1578
|
} | {
|
|
1604
1579
|
[x: string]: undefined;
|
|
1605
|
-
}), string | number> & {
|
|
1580
|
+
} | undefined), string | number> & {
|
|
1606
1581
|
[x: string]: undefined;
|
|
1607
1582
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1608
1583
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1609
|
-
} | ({
|
|
1610
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1611
1584
|
} & {
|
|
1612
1585
|
[x: string]: undefined;
|
|
1613
|
-
})
|
|
1586
|
+
}) | ({
|
|
1587
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1588
|
+
} & {
|
|
1614
1589
|
[x: string]: undefined;
|
|
1615
|
-
}
|
|
1590
|
+
} & {
|
|
1616
1591
|
[x: string]: undefined;
|
|
1617
|
-
})) & ({
|
|
1592
|
+
})) & ({
|
|
1618
1593
|
[x: string]: undefined;
|
|
1619
1594
|
} | {
|
|
1620
1595
|
[x: string]: undefined;
|
|
@@ -1622,19 +1597,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1622
1597
|
[x: string]: undefined;
|
|
1623
1598
|
} | {
|
|
1624
1599
|
[x: string]: undefined;
|
|
1625
|
-
}), string | number> & {
|
|
1600
|
+
} | undefined), string | number> & {
|
|
1626
1601
|
[x: string]: undefined;
|
|
1627
1602
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1628
1603
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1629
|
-
} | ({
|
|
1630
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1631
1604
|
} & {
|
|
1632
1605
|
[x: string]: undefined;
|
|
1633
|
-
})
|
|
1606
|
+
}) | ({
|
|
1607
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1608
|
+
} & {
|
|
1634
1609
|
[x: string]: undefined;
|
|
1635
|
-
}
|
|
1610
|
+
} & {
|
|
1636
1611
|
[x: string]: undefined;
|
|
1637
|
-
})) & ({
|
|
1612
|
+
})) & ({
|
|
1638
1613
|
[x: string]: undefined;
|
|
1639
1614
|
} | {
|
|
1640
1615
|
[x: string]: undefined;
|
|
@@ -1642,19 +1617,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1642
1617
|
[x: string]: undefined;
|
|
1643
1618
|
} | {
|
|
1644
1619
|
[x: string]: undefined;
|
|
1645
|
-
}), string | number> & {
|
|
1620
|
+
} | undefined), string | number> & {
|
|
1646
1621
|
[x: string]: undefined;
|
|
1647
1622
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1648
1623
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1649
|
-
} | ({
|
|
1650
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1651
1624
|
} & {
|
|
1652
1625
|
[x: string]: undefined;
|
|
1653
|
-
})
|
|
1626
|
+
}) | ({
|
|
1627
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1628
|
+
} & {
|
|
1654
1629
|
[x: string]: undefined;
|
|
1655
|
-
}
|
|
1630
|
+
} & {
|
|
1656
1631
|
[x: string]: undefined;
|
|
1657
|
-
})) & ({
|
|
1632
|
+
})) & ({
|
|
1658
1633
|
[x: string]: undefined;
|
|
1659
1634
|
} | {
|
|
1660
1635
|
[x: string]: undefined;
|
|
@@ -1662,19 +1637,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1662
1637
|
[x: string]: undefined;
|
|
1663
1638
|
} | {
|
|
1664
1639
|
[x: string]: undefined;
|
|
1665
|
-
}), string | number> & {
|
|
1640
|
+
} | undefined), string | number> & {
|
|
1666
1641
|
[x: string]: undefined;
|
|
1667
1642
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1668
1643
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1669
|
-
} | ({
|
|
1670
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1671
1644
|
} & {
|
|
1672
1645
|
[x: string]: undefined;
|
|
1673
|
-
})
|
|
1646
|
+
}) | ({
|
|
1647
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1648
|
+
} & {
|
|
1674
1649
|
[x: string]: undefined;
|
|
1675
|
-
}
|
|
1650
|
+
} & {
|
|
1676
1651
|
[x: string]: undefined;
|
|
1677
|
-
})) & ({
|
|
1652
|
+
})) & ({
|
|
1678
1653
|
[x: string]: undefined;
|
|
1679
1654
|
} | {
|
|
1680
1655
|
[x: string]: undefined;
|
|
@@ -1682,19 +1657,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1682
1657
|
[x: string]: undefined;
|
|
1683
1658
|
} | {
|
|
1684
1659
|
[x: string]: undefined;
|
|
1685
|
-
}), string | number> & {
|
|
1660
|
+
} | undefined), string | number> & {
|
|
1686
1661
|
[x: string]: undefined;
|
|
1687
1662
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1688
1663
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1689
|
-
} | ({
|
|
1690
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1691
1664
|
} & {
|
|
1692
1665
|
[x: string]: undefined;
|
|
1693
|
-
})
|
|
1666
|
+
}) | ({
|
|
1667
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1668
|
+
} & {
|
|
1694
1669
|
[x: string]: undefined;
|
|
1695
|
-
}
|
|
1670
|
+
} & {
|
|
1696
1671
|
[x: string]: undefined;
|
|
1697
|
-
})) & ({
|
|
1672
|
+
})) & ({
|
|
1698
1673
|
[x: string]: undefined;
|
|
1699
1674
|
} | {
|
|
1700
1675
|
[x: string]: undefined;
|
|
@@ -1702,19 +1677,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1702
1677
|
[x: string]: undefined;
|
|
1703
1678
|
} | {
|
|
1704
1679
|
[x: string]: undefined;
|
|
1705
|
-
}), string | number> & {
|
|
1680
|
+
} | undefined), string | number> & {
|
|
1706
1681
|
[x: string]: undefined;
|
|
1707
1682
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1708
1683
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1709
|
-
} | ({
|
|
1710
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1711
1684
|
} & {
|
|
1712
1685
|
[x: string]: undefined;
|
|
1713
|
-
})
|
|
1686
|
+
}) | ({
|
|
1687
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1688
|
+
} & {
|
|
1714
1689
|
[x: string]: undefined;
|
|
1715
|
-
}
|
|
1690
|
+
} & {
|
|
1716
1691
|
[x: string]: undefined;
|
|
1717
|
-
})) & ({
|
|
1692
|
+
})) & ({
|
|
1718
1693
|
[x: string]: undefined;
|
|
1719
1694
|
} | {
|
|
1720
1695
|
[x: string]: undefined;
|
|
@@ -1722,19 +1697,19 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1722
1697
|
[x: string]: undefined;
|
|
1723
1698
|
} | {
|
|
1724
1699
|
[x: string]: undefined;
|
|
1725
|
-
}), string | number> & {
|
|
1700
|
+
} | undefined), string | number> & {
|
|
1726
1701
|
[x: string]: undefined;
|
|
1727
1702
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
1728
1703
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1729
|
-
} | ({
|
|
1730
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1731
1704
|
} & {
|
|
1732
1705
|
[x: string]: undefined;
|
|
1733
|
-
})
|
|
1706
|
+
}) | ({
|
|
1707
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1708
|
+
} & {
|
|
1734
1709
|
[x: string]: undefined;
|
|
1735
|
-
}
|
|
1710
|
+
} & {
|
|
1736
1711
|
[x: string]: undefined;
|
|
1737
|
-
})) & ({
|
|
1712
|
+
})) & ({
|
|
1738
1713
|
[x: string]: undefined;
|
|
1739
1714
|
} | {
|
|
1740
1715
|
[x: string]: undefined;
|
|
@@ -1742,7 +1717,7 @@ declare const DialogTitle: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
1742
1717
|
[x: string]: undefined;
|
|
1743
1718
|
} | {
|
|
1744
1719
|
[x: string]: undefined;
|
|
1745
|
-
}), string | number> & {
|
|
1720
|
+
} | undefined), string | number> & {
|
|
1746
1721
|
[x: string]: undefined;
|
|
1747
1722
|
}>>, "ref">) & React.RefAttributes<TamaguiElement>>;
|
|
1748
1723
|
declare const DialogDescriptionFrame: import("@tamagui/core").TamaguiComponent<(Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{}, "size"> & {
|
|
@@ -1765,63 +1740,49 @@ declare const DialogDescriptionFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
1765
1740
|
[x: string]: undefined;
|
|
1766
1741
|
}>>) | (Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1767
1742
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1768
|
-
} | ({
|
|
1769
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1770
1743
|
} & {
|
|
1771
1744
|
[x: string]: undefined;
|
|
1772
|
-
}
|
|
1745
|
+
}, string | number> & {
|
|
1773
1746
|
[x: string]: undefined;
|
|
1774
1747
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1775
1748
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1776
|
-
} | ({
|
|
1777
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1778
1749
|
} & {
|
|
1779
1750
|
[x: string]: undefined;
|
|
1780
|
-
}
|
|
1751
|
+
}, string | number> & {
|
|
1781
1752
|
[x: string]: undefined;
|
|
1782
1753
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1783
1754
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1784
|
-
} | ({
|
|
1785
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1786
1755
|
} & {
|
|
1787
1756
|
[x: string]: undefined;
|
|
1788
|
-
}
|
|
1757
|
+
}, string | number> & {
|
|
1789
1758
|
[x: string]: undefined;
|
|
1790
1759
|
}>>) | (Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1791
1760
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1792
|
-
} | ({
|
|
1793
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1794
1761
|
} & {
|
|
1795
1762
|
[x: string]: undefined;
|
|
1796
|
-
}
|
|
1763
|
+
}, string | number> & {
|
|
1797
1764
|
[x: string]: undefined;
|
|
1798
1765
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1799
1766
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1800
|
-
} | ({
|
|
1801
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1802
1767
|
} & {
|
|
1803
1768
|
[x: string]: undefined;
|
|
1804
|
-
}
|
|
1769
|
+
}, string | number> & {
|
|
1805
1770
|
[x: string]: undefined;
|
|
1806
1771
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1807
1772
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1808
|
-
} | ({
|
|
1809
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1810
1773
|
} & {
|
|
1811
1774
|
[x: string]: undefined;
|
|
1812
|
-
}
|
|
1775
|
+
}, string | number> & {
|
|
1813
1776
|
[x: string]: undefined;
|
|
1814
|
-
}>>), TamaguiElement, import("@tamagui/core").TextPropsBase,
|
|
1815
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1816
|
-
} | ({
|
|
1777
|
+
}>>), TamaguiElement, import("@tamagui/core").TextPropsBase, {
|
|
1817
1778
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1818
1779
|
} & {
|
|
1819
1780
|
[x: string]: undefined;
|
|
1820
|
-
}
|
|
1781
|
+
} & ({
|
|
1821
1782
|
[x: string]: undefined;
|
|
1822
1783
|
} | {
|
|
1823
1784
|
[x: string]: undefined;
|
|
1824
|
-
}), {
|
|
1785
|
+
} | undefined), {
|
|
1825
1786
|
displayName: string | undefined;
|
|
1826
1787
|
}>;
|
|
1827
1788
|
type DialogDescriptionProps = GetProps<typeof DialogDescriptionFrame>;
|
|
@@ -1845,51 +1806,39 @@ declare const DialogDescription: React.ForwardRefExoticComponent<((Omit<import("
|
|
|
1845
1806
|
[x: string]: undefined;
|
|
1846
1807
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1847
1808
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1848
|
-
} | ({
|
|
1849
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1850
1809
|
} & {
|
|
1851
1810
|
[x: string]: undefined;
|
|
1852
|
-
}
|
|
1811
|
+
}, string | number> & {
|
|
1853
1812
|
[x: string]: undefined;
|
|
1854
1813
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1855
1814
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1856
|
-
} | ({
|
|
1857
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1858
1815
|
} & {
|
|
1859
1816
|
[x: string]: undefined;
|
|
1860
|
-
}
|
|
1817
|
+
}, string | number> & {
|
|
1861
1818
|
[x: string]: undefined;
|
|
1862
1819
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1863
1820
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1864
|
-
} | ({
|
|
1865
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1866
1821
|
} & {
|
|
1867
1822
|
[x: string]: undefined;
|
|
1868
|
-
}
|
|
1823
|
+
}, string | number> & {
|
|
1869
1824
|
[x: string]: undefined;
|
|
1870
1825
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1871
1826
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1872
|
-
} | ({
|
|
1873
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1874
1827
|
} & {
|
|
1875
1828
|
[x: string]: undefined;
|
|
1876
|
-
}
|
|
1829
|
+
}, string | number> & {
|
|
1877
1830
|
[x: string]: undefined;
|
|
1878
1831
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1879
1832
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1880
|
-
} | ({
|
|
1881
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1882
1833
|
} & {
|
|
1883
1834
|
[x: string]: undefined;
|
|
1884
|
-
}
|
|
1835
|
+
}, string | number> & {
|
|
1885
1836
|
[x: string]: undefined;
|
|
1886
1837
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1887
1838
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1888
|
-
} | ({
|
|
1889
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1890
1839
|
} & {
|
|
1891
1840
|
[x: string]: undefined;
|
|
1892
|
-
}
|
|
1841
|
+
}, string | number> & {
|
|
1893
1842
|
[x: string]: undefined;
|
|
1894
1843
|
}>>, "ref">) & React.RefAttributes<TamaguiElement>>;
|
|
1895
1844
|
type DialogCloseProps = YStackProps & {
|
|
@@ -1944,207 +1893,195 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
1944
1893
|
[x: string]: undefined;
|
|
1945
1894
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1946
1895
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1947
|
-
} | ({
|
|
1948
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1949
1896
|
} & {
|
|
1950
1897
|
[x: string]: undefined;
|
|
1951
|
-
}
|
|
1898
|
+
}, string | number> & {
|
|
1952
1899
|
[x: string]: undefined;
|
|
1953
1900
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1954
1901
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1955
|
-
} | ({
|
|
1956
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1957
1902
|
} & {
|
|
1958
1903
|
[x: string]: undefined;
|
|
1959
|
-
}
|
|
1904
|
+
}, string | number> & {
|
|
1960
1905
|
[x: string]: undefined;
|
|
1961
1906
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1962
1907
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1963
|
-
} | ({
|
|
1964
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1965
1908
|
} & {
|
|
1966
1909
|
[x: string]: undefined;
|
|
1967
|
-
}
|
|
1910
|
+
}, string | number> & {
|
|
1968
1911
|
[x: string]: undefined;
|
|
1969
1912
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1970
1913
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1971
|
-
} | ({
|
|
1972
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1973
1914
|
} & {
|
|
1974
1915
|
[x: string]: undefined;
|
|
1975
|
-
}
|
|
1916
|
+
}, string | number> & {
|
|
1976
1917
|
[x: string]: undefined;
|
|
1977
1918
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1978
1919
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1979
|
-
} | ({
|
|
1980
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1981
1920
|
} & {
|
|
1982
1921
|
[x: string]: undefined;
|
|
1983
|
-
}
|
|
1922
|
+
}, string | number> & {
|
|
1984
1923
|
[x: string]: undefined;
|
|
1985
1924
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
1986
1925
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1987
|
-
} | ({
|
|
1988
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1989
1926
|
} & {
|
|
1990
1927
|
[x: string]: undefined;
|
|
1991
|
-
}
|
|
1928
|
+
}, string | number> & {
|
|
1992
1929
|
[x: string]: undefined;
|
|
1993
1930
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
1994
1931
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1995
|
-
} | ({
|
|
1996
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1997
1932
|
} & {
|
|
1998
1933
|
[x: string]: undefined;
|
|
1999
|
-
})
|
|
1934
|
+
}) | ({
|
|
1935
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1936
|
+
} & {
|
|
2000
1937
|
[x: string]: undefined;
|
|
2001
|
-
}
|
|
1938
|
+
} & {
|
|
2002
1939
|
[x: string]: undefined;
|
|
2003
1940
|
}), string | number> & {
|
|
2004
1941
|
[x: string]: undefined;
|
|
2005
1942
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
2006
1943
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2007
|
-
} | ({
|
|
2008
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2009
1944
|
} & {
|
|
2010
1945
|
[x: string]: undefined;
|
|
2011
|
-
})
|
|
1946
|
+
}) | ({
|
|
1947
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1948
|
+
} & {
|
|
2012
1949
|
[x: string]: undefined;
|
|
2013
|
-
}
|
|
1950
|
+
} & {
|
|
2014
1951
|
[x: string]: undefined;
|
|
2015
1952
|
}), string | number> & {
|
|
2016
1953
|
[x: string]: undefined;
|
|
2017
1954
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
2018
1955
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2019
|
-
} | ({
|
|
2020
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2021
1956
|
} & {
|
|
2022
1957
|
[x: string]: undefined;
|
|
2023
|
-
})
|
|
1958
|
+
}) | ({
|
|
1959
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1960
|
+
} & {
|
|
2024
1961
|
[x: string]: undefined;
|
|
2025
|
-
}
|
|
1962
|
+
} & {
|
|
2026
1963
|
[x: string]: undefined;
|
|
2027
1964
|
}), string | number> & {
|
|
2028
1965
|
[x: string]: undefined;
|
|
2029
1966
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
2030
1967
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2031
|
-
} | ({
|
|
2032
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2033
1968
|
} & {
|
|
2034
1969
|
[x: string]: undefined;
|
|
2035
|
-
})
|
|
1970
|
+
}) | ({
|
|
1971
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1972
|
+
} & {
|
|
2036
1973
|
[x: string]: undefined;
|
|
2037
|
-
}
|
|
1974
|
+
} & {
|
|
2038
1975
|
[x: string]: undefined;
|
|
2039
1976
|
}), string | number> & {
|
|
2040
1977
|
[x: string]: undefined;
|
|
2041
1978
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
2042
1979
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2043
|
-
} | ({
|
|
2044
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2045
1980
|
} & {
|
|
2046
1981
|
[x: string]: undefined;
|
|
2047
|
-
})
|
|
1982
|
+
}) | ({
|
|
1983
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1984
|
+
} & {
|
|
2048
1985
|
[x: string]: undefined;
|
|
2049
|
-
}
|
|
1986
|
+
} & {
|
|
2050
1987
|
[x: string]: undefined;
|
|
2051
1988
|
}), string | number> & {
|
|
2052
1989
|
[x: string]: undefined;
|
|
2053
1990
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
2054
1991
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2055
|
-
} | ({
|
|
2056
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2057
1992
|
} & {
|
|
2058
1993
|
[x: string]: undefined;
|
|
2059
|
-
})
|
|
1994
|
+
}) | ({
|
|
1995
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
1996
|
+
} & {
|
|
2060
1997
|
[x: string]: undefined;
|
|
2061
|
-
}
|
|
1998
|
+
} & {
|
|
2062
1999
|
[x: string]: undefined;
|
|
2063
2000
|
}), string | number> & {
|
|
2064
2001
|
[x: string]: undefined;
|
|
2065
2002
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
2066
2003
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2067
|
-
} | ({
|
|
2068
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2069
2004
|
} & {
|
|
2070
2005
|
[x: string]: undefined;
|
|
2071
|
-
})
|
|
2006
|
+
}) | ({
|
|
2007
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2008
|
+
} & {
|
|
2072
2009
|
[x: string]: undefined;
|
|
2073
|
-
}
|
|
2010
|
+
} & {
|
|
2074
2011
|
[x: string]: undefined;
|
|
2075
2012
|
}), string | number> & {
|
|
2076
2013
|
[x: string]: undefined;
|
|
2077
2014
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
2078
2015
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2079
|
-
} | ({
|
|
2080
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2081
2016
|
} & {
|
|
2082
2017
|
[x: string]: undefined;
|
|
2083
|
-
})
|
|
2018
|
+
}) | ({
|
|
2019
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2020
|
+
} & {
|
|
2084
2021
|
[x: string]: undefined;
|
|
2085
|
-
}
|
|
2022
|
+
} & {
|
|
2086
2023
|
[x: string]: undefined;
|
|
2087
2024
|
}), string | number> & {
|
|
2088
2025
|
[x: string]: undefined;
|
|
2089
2026
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
2090
2027
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2091
|
-
} | ({
|
|
2092
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2093
2028
|
} & {
|
|
2094
2029
|
[x: string]: undefined;
|
|
2095
|
-
})
|
|
2030
|
+
}) | ({
|
|
2031
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2032
|
+
} & {
|
|
2096
2033
|
[x: string]: undefined;
|
|
2097
|
-
}
|
|
2034
|
+
} & {
|
|
2098
2035
|
[x: string]: undefined;
|
|
2099
2036
|
}), string | number> & {
|
|
2100
2037
|
[x: string]: undefined;
|
|
2101
2038
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
2102
2039
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2103
|
-
} | ({
|
|
2104
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2105
2040
|
} & {
|
|
2106
2041
|
[x: string]: undefined;
|
|
2107
|
-
})
|
|
2042
|
+
}) | ({
|
|
2043
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2044
|
+
} & {
|
|
2108
2045
|
[x: string]: undefined;
|
|
2109
|
-
}
|
|
2046
|
+
} & {
|
|
2110
2047
|
[x: string]: undefined;
|
|
2111
2048
|
}), string | number> & {
|
|
2112
2049
|
[x: string]: undefined;
|
|
2113
2050
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
2114
2051
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2115
|
-
} | ({
|
|
2116
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2117
2052
|
} & {
|
|
2118
2053
|
[x: string]: undefined;
|
|
2119
|
-
})
|
|
2054
|
+
}) | ({
|
|
2055
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2056
|
+
} & {
|
|
2120
2057
|
[x: string]: undefined;
|
|
2121
|
-
}
|
|
2058
|
+
} & {
|
|
2122
2059
|
[x: string]: undefined;
|
|
2123
2060
|
}), string | number> & {
|
|
2124
2061
|
[x: string]: undefined;
|
|
2125
2062
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<({
|
|
2126
2063
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2127
|
-
} | ({
|
|
2128
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2129
2064
|
} & {
|
|
2130
2065
|
[x: string]: undefined;
|
|
2131
|
-
})
|
|
2066
|
+
}) | ({
|
|
2067
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2068
|
+
} & {
|
|
2132
2069
|
[x: string]: undefined;
|
|
2133
|
-
}
|
|
2070
|
+
} & {
|
|
2134
2071
|
[x: string]: undefined;
|
|
2135
2072
|
}), string | number> & {
|
|
2136
2073
|
[x: string]: undefined;
|
|
2137
2074
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2138
2075
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2139
|
-
} | ({
|
|
2140
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2141
2076
|
} & {
|
|
2142
2077
|
[x: string]: undefined;
|
|
2143
|
-
})
|
|
2078
|
+
}) | ({
|
|
2079
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2080
|
+
} & {
|
|
2144
2081
|
[x: string]: undefined;
|
|
2145
|
-
}
|
|
2082
|
+
} & {
|
|
2146
2083
|
[x: string]: undefined;
|
|
2147
|
-
})) & ({
|
|
2084
|
+
})) & ({
|
|
2148
2085
|
[x: string]: undefined;
|
|
2149
2086
|
} | {
|
|
2150
2087
|
[x: string]: undefined;
|
|
@@ -2152,19 +2089,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2152
2089
|
[x: string]: undefined;
|
|
2153
2090
|
} | {
|
|
2154
2091
|
[x: string]: undefined;
|
|
2155
|
-
}), string | number> & {
|
|
2092
|
+
} | undefined), string | number> & {
|
|
2156
2093
|
[x: string]: undefined;
|
|
2157
2094
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2158
2095
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2159
|
-
} | ({
|
|
2160
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2161
2096
|
} & {
|
|
2162
2097
|
[x: string]: undefined;
|
|
2163
|
-
})
|
|
2098
|
+
}) | ({
|
|
2099
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2100
|
+
} & {
|
|
2164
2101
|
[x: string]: undefined;
|
|
2165
|
-
}
|
|
2102
|
+
} & {
|
|
2166
2103
|
[x: string]: undefined;
|
|
2167
|
-
})) & ({
|
|
2104
|
+
})) & ({
|
|
2168
2105
|
[x: string]: undefined;
|
|
2169
2106
|
} | {
|
|
2170
2107
|
[x: string]: undefined;
|
|
@@ -2172,19 +2109,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2172
2109
|
[x: string]: undefined;
|
|
2173
2110
|
} | {
|
|
2174
2111
|
[x: string]: undefined;
|
|
2175
|
-
}), string | number> & {
|
|
2112
|
+
} | undefined), string | number> & {
|
|
2176
2113
|
[x: string]: undefined;
|
|
2177
2114
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2178
2115
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2179
|
-
} | ({
|
|
2180
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2181
2116
|
} & {
|
|
2182
2117
|
[x: string]: undefined;
|
|
2183
|
-
})
|
|
2118
|
+
}) | ({
|
|
2119
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2120
|
+
} & {
|
|
2184
2121
|
[x: string]: undefined;
|
|
2185
|
-
}
|
|
2122
|
+
} & {
|
|
2186
2123
|
[x: string]: undefined;
|
|
2187
|
-
})) & ({
|
|
2124
|
+
})) & ({
|
|
2188
2125
|
[x: string]: undefined;
|
|
2189
2126
|
} | {
|
|
2190
2127
|
[x: string]: undefined;
|
|
@@ -2192,19 +2129,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2192
2129
|
[x: string]: undefined;
|
|
2193
2130
|
} | {
|
|
2194
2131
|
[x: string]: undefined;
|
|
2195
|
-
}), string | number> & {
|
|
2132
|
+
} | undefined), string | number> & {
|
|
2196
2133
|
[x: string]: undefined;
|
|
2197
2134
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2198
2135
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2199
|
-
} | ({
|
|
2200
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2201
2136
|
} & {
|
|
2202
2137
|
[x: string]: undefined;
|
|
2203
|
-
})
|
|
2138
|
+
}) | ({
|
|
2139
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2140
|
+
} & {
|
|
2204
2141
|
[x: string]: undefined;
|
|
2205
|
-
}
|
|
2142
|
+
} & {
|
|
2206
2143
|
[x: string]: undefined;
|
|
2207
|
-
})) & ({
|
|
2144
|
+
})) & ({
|
|
2208
2145
|
[x: string]: undefined;
|
|
2209
2146
|
} | {
|
|
2210
2147
|
[x: string]: undefined;
|
|
@@ -2212,19 +2149,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2212
2149
|
[x: string]: undefined;
|
|
2213
2150
|
} | {
|
|
2214
2151
|
[x: string]: undefined;
|
|
2215
|
-
}), string | number> & {
|
|
2152
|
+
} | undefined), string | number> & {
|
|
2216
2153
|
[x: string]: undefined;
|
|
2217
2154
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2218
2155
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2219
|
-
} | ({
|
|
2220
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2221
2156
|
} & {
|
|
2222
2157
|
[x: string]: undefined;
|
|
2223
|
-
})
|
|
2158
|
+
}) | ({
|
|
2159
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2160
|
+
} & {
|
|
2224
2161
|
[x: string]: undefined;
|
|
2225
|
-
}
|
|
2162
|
+
} & {
|
|
2226
2163
|
[x: string]: undefined;
|
|
2227
|
-
})) & ({
|
|
2164
|
+
})) & ({
|
|
2228
2165
|
[x: string]: undefined;
|
|
2229
2166
|
} | {
|
|
2230
2167
|
[x: string]: undefined;
|
|
@@ -2232,19 +2169,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2232
2169
|
[x: string]: undefined;
|
|
2233
2170
|
} | {
|
|
2234
2171
|
[x: string]: undefined;
|
|
2235
|
-
}), string | number> & {
|
|
2172
|
+
} | undefined), string | number> & {
|
|
2236
2173
|
[x: string]: undefined;
|
|
2237
2174
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2238
2175
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2239
|
-
} | ({
|
|
2240
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2241
2176
|
} & {
|
|
2242
2177
|
[x: string]: undefined;
|
|
2243
|
-
})
|
|
2178
|
+
}) | ({
|
|
2179
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2180
|
+
} & {
|
|
2244
2181
|
[x: string]: undefined;
|
|
2245
|
-
}
|
|
2182
|
+
} & {
|
|
2246
2183
|
[x: string]: undefined;
|
|
2247
|
-
})) & ({
|
|
2184
|
+
})) & ({
|
|
2248
2185
|
[x: string]: undefined;
|
|
2249
2186
|
} | {
|
|
2250
2187
|
[x: string]: undefined;
|
|
@@ -2252,19 +2189,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2252
2189
|
[x: string]: undefined;
|
|
2253
2190
|
} | {
|
|
2254
2191
|
[x: string]: undefined;
|
|
2255
|
-
}), string | number> & {
|
|
2192
|
+
} | undefined), string | number> & {
|
|
2256
2193
|
[x: string]: undefined;
|
|
2257
2194
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2258
2195
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2259
|
-
} | ({
|
|
2260
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2261
2196
|
} & {
|
|
2262
2197
|
[x: string]: undefined;
|
|
2263
|
-
})
|
|
2198
|
+
}) | ({
|
|
2199
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2200
|
+
} & {
|
|
2264
2201
|
[x: string]: undefined;
|
|
2265
|
-
}
|
|
2202
|
+
} & {
|
|
2266
2203
|
[x: string]: undefined;
|
|
2267
|
-
})) & ({
|
|
2204
|
+
})) & ({
|
|
2268
2205
|
[x: string]: undefined;
|
|
2269
2206
|
} | {
|
|
2270
2207
|
[x: string]: undefined;
|
|
@@ -2272,19 +2209,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2272
2209
|
[x: string]: undefined;
|
|
2273
2210
|
} | {
|
|
2274
2211
|
[x: string]: undefined;
|
|
2275
|
-
}), string | number> & {
|
|
2212
|
+
} | undefined), string | number> & {
|
|
2276
2213
|
[x: string]: undefined;
|
|
2277
2214
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2278
2215
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2279
|
-
} | ({
|
|
2280
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2281
2216
|
} & {
|
|
2282
2217
|
[x: string]: undefined;
|
|
2283
|
-
})
|
|
2218
|
+
}) | ({
|
|
2219
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2220
|
+
} & {
|
|
2284
2221
|
[x: string]: undefined;
|
|
2285
|
-
}
|
|
2222
|
+
} & {
|
|
2286
2223
|
[x: string]: undefined;
|
|
2287
|
-
})) & ({
|
|
2224
|
+
})) & ({
|
|
2288
2225
|
[x: string]: undefined;
|
|
2289
2226
|
} | {
|
|
2290
2227
|
[x: string]: undefined;
|
|
@@ -2292,19 +2229,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2292
2229
|
[x: string]: undefined;
|
|
2293
2230
|
} | {
|
|
2294
2231
|
[x: string]: undefined;
|
|
2295
|
-
}), string | number> & {
|
|
2232
|
+
} | undefined), string | number> & {
|
|
2296
2233
|
[x: string]: undefined;
|
|
2297
2234
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2298
2235
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2299
|
-
} | ({
|
|
2300
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2301
2236
|
} & {
|
|
2302
2237
|
[x: string]: undefined;
|
|
2303
|
-
})
|
|
2238
|
+
}) | ({
|
|
2239
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2240
|
+
} & {
|
|
2304
2241
|
[x: string]: undefined;
|
|
2305
|
-
}
|
|
2242
|
+
} & {
|
|
2306
2243
|
[x: string]: undefined;
|
|
2307
|
-
})) & ({
|
|
2244
|
+
})) & ({
|
|
2308
2245
|
[x: string]: undefined;
|
|
2309
2246
|
} | {
|
|
2310
2247
|
[x: string]: undefined;
|
|
@@ -2312,19 +2249,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2312
2249
|
[x: string]: undefined;
|
|
2313
2250
|
} | {
|
|
2314
2251
|
[x: string]: undefined;
|
|
2315
|
-
}), string | number> & {
|
|
2252
|
+
} | undefined), string | number> & {
|
|
2316
2253
|
[x: string]: undefined;
|
|
2317
2254
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2318
2255
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2319
|
-
} | ({
|
|
2320
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2321
2256
|
} & {
|
|
2322
2257
|
[x: string]: undefined;
|
|
2323
|
-
})
|
|
2258
|
+
}) | ({
|
|
2259
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2260
|
+
} & {
|
|
2324
2261
|
[x: string]: undefined;
|
|
2325
|
-
}
|
|
2262
|
+
} & {
|
|
2326
2263
|
[x: string]: undefined;
|
|
2327
|
-
})) & ({
|
|
2264
|
+
})) & ({
|
|
2328
2265
|
[x: string]: undefined;
|
|
2329
2266
|
} | {
|
|
2330
2267
|
[x: string]: undefined;
|
|
@@ -2332,19 +2269,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2332
2269
|
[x: string]: undefined;
|
|
2333
2270
|
} | {
|
|
2334
2271
|
[x: string]: undefined;
|
|
2335
|
-
}), string | number> & {
|
|
2272
|
+
} | undefined), string | number> & {
|
|
2336
2273
|
[x: string]: undefined;
|
|
2337
2274
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2338
2275
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2339
|
-
} | ({
|
|
2340
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2341
2276
|
} & {
|
|
2342
2277
|
[x: string]: undefined;
|
|
2343
|
-
})
|
|
2278
|
+
}) | ({
|
|
2279
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2280
|
+
} & {
|
|
2344
2281
|
[x: string]: undefined;
|
|
2345
|
-
}
|
|
2282
|
+
} & {
|
|
2346
2283
|
[x: string]: undefined;
|
|
2347
|
-
})) & ({
|
|
2284
|
+
})) & ({
|
|
2348
2285
|
[x: string]: undefined;
|
|
2349
2286
|
} | {
|
|
2350
2287
|
[x: string]: undefined;
|
|
@@ -2352,19 +2289,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2352
2289
|
[x: string]: undefined;
|
|
2353
2290
|
} | {
|
|
2354
2291
|
[x: string]: undefined;
|
|
2355
|
-
}), string | number> & {
|
|
2292
|
+
} | undefined), string | number> & {
|
|
2356
2293
|
[x: string]: undefined;
|
|
2357
2294
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2358
2295
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2359
|
-
} | ({
|
|
2360
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2361
2296
|
} & {
|
|
2362
2297
|
[x: string]: undefined;
|
|
2363
|
-
})
|
|
2298
|
+
}) | ({
|
|
2299
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2300
|
+
} & {
|
|
2364
2301
|
[x: string]: undefined;
|
|
2365
|
-
}
|
|
2302
|
+
} & {
|
|
2366
2303
|
[x: string]: undefined;
|
|
2367
|
-
})) & ({
|
|
2304
|
+
})) & ({
|
|
2368
2305
|
[x: string]: undefined;
|
|
2369
2306
|
} | {
|
|
2370
2307
|
[x: string]: undefined;
|
|
@@ -2372,19 +2309,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2372
2309
|
[x: string]: undefined;
|
|
2373
2310
|
} | {
|
|
2374
2311
|
[x: string]: undefined;
|
|
2375
|
-
}), string | number> & {
|
|
2312
|
+
} | undefined), string | number> & {
|
|
2376
2313
|
[x: string]: undefined;
|
|
2377
2314
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2378
2315
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2379
|
-
} | ({
|
|
2380
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2381
2316
|
} & {
|
|
2382
2317
|
[x: string]: undefined;
|
|
2383
|
-
})
|
|
2318
|
+
}) | ({
|
|
2319
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2320
|
+
} & {
|
|
2384
2321
|
[x: string]: undefined;
|
|
2385
|
-
}
|
|
2322
|
+
} & {
|
|
2386
2323
|
[x: string]: undefined;
|
|
2387
|
-
})) & ({
|
|
2324
|
+
})) & ({
|
|
2388
2325
|
[x: string]: undefined;
|
|
2389
2326
|
} | {
|
|
2390
2327
|
[x: string]: undefined;
|
|
@@ -2392,19 +2329,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2392
2329
|
[x: string]: undefined;
|
|
2393
2330
|
} | {
|
|
2394
2331
|
[x: string]: undefined;
|
|
2395
|
-
}), string | number> & {
|
|
2332
|
+
} | undefined), string | number> & {
|
|
2396
2333
|
[x: string]: undefined;
|
|
2397
2334
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2398
2335
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2399
|
-
} | ({
|
|
2400
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2401
2336
|
} & {
|
|
2402
2337
|
[x: string]: undefined;
|
|
2403
|
-
})
|
|
2338
|
+
}) | ({
|
|
2339
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2340
|
+
} & {
|
|
2404
2341
|
[x: string]: undefined;
|
|
2405
|
-
}
|
|
2342
|
+
} & {
|
|
2406
2343
|
[x: string]: undefined;
|
|
2407
|
-
})) & ({
|
|
2344
|
+
})) & ({
|
|
2408
2345
|
[x: string]: undefined;
|
|
2409
2346
|
} | {
|
|
2410
2347
|
[x: string]: undefined;
|
|
@@ -2412,19 +2349,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2412
2349
|
[x: string]: undefined;
|
|
2413
2350
|
} | {
|
|
2414
2351
|
[x: string]: undefined;
|
|
2415
|
-
}), string | number> & {
|
|
2352
|
+
} | undefined), string | number> & {
|
|
2416
2353
|
[x: string]: undefined;
|
|
2417
2354
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2418
2355
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2419
|
-
} | ({
|
|
2420
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2421
2356
|
} & {
|
|
2422
2357
|
[x: string]: undefined;
|
|
2423
|
-
})
|
|
2358
|
+
}) | ({
|
|
2359
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2360
|
+
} & {
|
|
2424
2361
|
[x: string]: undefined;
|
|
2425
|
-
}
|
|
2362
|
+
} & {
|
|
2426
2363
|
[x: string]: undefined;
|
|
2427
|
-
})) & ({
|
|
2364
|
+
})) & ({
|
|
2428
2365
|
[x: string]: undefined;
|
|
2429
2366
|
} | {
|
|
2430
2367
|
[x: string]: undefined;
|
|
@@ -2432,19 +2369,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2432
2369
|
[x: string]: undefined;
|
|
2433
2370
|
} | {
|
|
2434
2371
|
[x: string]: undefined;
|
|
2435
|
-
}), string | number> & {
|
|
2372
|
+
} | undefined), string | number> & {
|
|
2436
2373
|
[x: string]: undefined;
|
|
2437
2374
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2438
2375
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2439
|
-
} | ({
|
|
2440
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2441
2376
|
} & {
|
|
2442
2377
|
[x: string]: undefined;
|
|
2443
|
-
})
|
|
2378
|
+
}) | ({
|
|
2379
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2380
|
+
} & {
|
|
2444
2381
|
[x: string]: undefined;
|
|
2445
|
-
}
|
|
2382
|
+
} & {
|
|
2446
2383
|
[x: string]: undefined;
|
|
2447
|
-
})) & ({
|
|
2384
|
+
})) & ({
|
|
2448
2385
|
[x: string]: undefined;
|
|
2449
2386
|
} | {
|
|
2450
2387
|
[x: string]: undefined;
|
|
@@ -2452,19 +2389,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2452
2389
|
[x: string]: undefined;
|
|
2453
2390
|
} | {
|
|
2454
2391
|
[x: string]: undefined;
|
|
2455
|
-
}), string | number> & {
|
|
2392
|
+
} | undefined), string | number> & {
|
|
2456
2393
|
[x: string]: undefined;
|
|
2457
2394
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2458
2395
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2459
|
-
} | ({
|
|
2460
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2461
2396
|
} & {
|
|
2462
2397
|
[x: string]: undefined;
|
|
2463
|
-
})
|
|
2398
|
+
}) | ({
|
|
2399
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2400
|
+
} & {
|
|
2464
2401
|
[x: string]: undefined;
|
|
2465
|
-
}
|
|
2402
|
+
} & {
|
|
2466
2403
|
[x: string]: undefined;
|
|
2467
|
-
})) & ({
|
|
2404
|
+
})) & ({
|
|
2468
2405
|
[x: string]: undefined;
|
|
2469
2406
|
} | {
|
|
2470
2407
|
[x: string]: undefined;
|
|
@@ -2472,19 +2409,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2472
2409
|
[x: string]: undefined;
|
|
2473
2410
|
} | {
|
|
2474
2411
|
[x: string]: undefined;
|
|
2475
|
-
}), string | number> & {
|
|
2412
|
+
} | undefined), string | number> & {
|
|
2476
2413
|
[x: string]: undefined;
|
|
2477
2414
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2478
2415
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2479
|
-
} | ({
|
|
2480
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2481
2416
|
} & {
|
|
2482
2417
|
[x: string]: undefined;
|
|
2483
|
-
})
|
|
2418
|
+
}) | ({
|
|
2419
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2420
|
+
} & {
|
|
2484
2421
|
[x: string]: undefined;
|
|
2485
|
-
}
|
|
2422
|
+
} & {
|
|
2486
2423
|
[x: string]: undefined;
|
|
2487
|
-
})) & ({
|
|
2424
|
+
})) & ({
|
|
2488
2425
|
[x: string]: undefined;
|
|
2489
2426
|
} | {
|
|
2490
2427
|
[x: string]: undefined;
|
|
@@ -2492,19 +2429,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2492
2429
|
[x: string]: undefined;
|
|
2493
2430
|
} | {
|
|
2494
2431
|
[x: string]: undefined;
|
|
2495
|
-
}), string | number> & {
|
|
2432
|
+
} | undefined), string | number> & {
|
|
2496
2433
|
[x: string]: undefined;
|
|
2497
2434
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2498
2435
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2499
|
-
} | ({
|
|
2500
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2501
2436
|
} & {
|
|
2502
2437
|
[x: string]: undefined;
|
|
2503
|
-
})
|
|
2438
|
+
}) | ({
|
|
2439
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2440
|
+
} & {
|
|
2504
2441
|
[x: string]: undefined;
|
|
2505
|
-
}
|
|
2442
|
+
} & {
|
|
2506
2443
|
[x: string]: undefined;
|
|
2507
|
-
})) & ({
|
|
2444
|
+
})) & ({
|
|
2508
2445
|
[x: string]: undefined;
|
|
2509
2446
|
} | {
|
|
2510
2447
|
[x: string]: undefined;
|
|
@@ -2512,19 +2449,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2512
2449
|
[x: string]: undefined;
|
|
2513
2450
|
} | {
|
|
2514
2451
|
[x: string]: undefined;
|
|
2515
|
-
}), string | number> & {
|
|
2452
|
+
} | undefined), string | number> & {
|
|
2516
2453
|
[x: string]: undefined;
|
|
2517
2454
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2518
2455
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2519
|
-
} | ({
|
|
2520
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2521
2456
|
} & {
|
|
2522
2457
|
[x: string]: undefined;
|
|
2523
|
-
})
|
|
2458
|
+
}) | ({
|
|
2459
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2460
|
+
} & {
|
|
2524
2461
|
[x: string]: undefined;
|
|
2525
|
-
}
|
|
2462
|
+
} & {
|
|
2526
2463
|
[x: string]: undefined;
|
|
2527
|
-
})) & ({
|
|
2464
|
+
})) & ({
|
|
2528
2465
|
[x: string]: undefined;
|
|
2529
2466
|
} | {
|
|
2530
2467
|
[x: string]: undefined;
|
|
@@ -2532,19 +2469,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2532
2469
|
[x: string]: undefined;
|
|
2533
2470
|
} | {
|
|
2534
2471
|
[x: string]: undefined;
|
|
2535
|
-
}), string | number> & {
|
|
2472
|
+
} | undefined), string | number> & {
|
|
2536
2473
|
[x: string]: undefined;
|
|
2537
2474
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2538
2475
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2539
|
-
} | ({
|
|
2540
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2541
2476
|
} & {
|
|
2542
2477
|
[x: string]: undefined;
|
|
2543
|
-
})
|
|
2478
|
+
}) | ({
|
|
2479
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2480
|
+
} & {
|
|
2544
2481
|
[x: string]: undefined;
|
|
2545
|
-
}
|
|
2482
|
+
} & {
|
|
2546
2483
|
[x: string]: undefined;
|
|
2547
|
-
})) & ({
|
|
2484
|
+
})) & ({
|
|
2548
2485
|
[x: string]: undefined;
|
|
2549
2486
|
} | {
|
|
2550
2487
|
[x: string]: undefined;
|
|
@@ -2552,19 +2489,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2552
2489
|
[x: string]: undefined;
|
|
2553
2490
|
} | {
|
|
2554
2491
|
[x: string]: undefined;
|
|
2555
|
-
}), string | number> & {
|
|
2492
|
+
} | undefined), string | number> & {
|
|
2556
2493
|
[x: string]: undefined;
|
|
2557
2494
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2558
2495
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2559
|
-
} | ({
|
|
2560
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2561
2496
|
} & {
|
|
2562
2497
|
[x: string]: undefined;
|
|
2563
|
-
})
|
|
2498
|
+
}) | ({
|
|
2499
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2500
|
+
} & {
|
|
2564
2501
|
[x: string]: undefined;
|
|
2565
|
-
}
|
|
2502
|
+
} & {
|
|
2566
2503
|
[x: string]: undefined;
|
|
2567
|
-
})) & ({
|
|
2504
|
+
})) & ({
|
|
2568
2505
|
[x: string]: undefined;
|
|
2569
2506
|
} | {
|
|
2570
2507
|
[x: string]: undefined;
|
|
@@ -2572,19 +2509,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2572
2509
|
[x: string]: undefined;
|
|
2573
2510
|
} | {
|
|
2574
2511
|
[x: string]: undefined;
|
|
2575
|
-
}), string | number> & {
|
|
2512
|
+
} | undefined), string | number> & {
|
|
2576
2513
|
[x: string]: undefined;
|
|
2577
2514
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2578
2515
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2579
|
-
} | ({
|
|
2580
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2581
2516
|
} & {
|
|
2582
2517
|
[x: string]: undefined;
|
|
2583
|
-
})
|
|
2518
|
+
}) | ({
|
|
2519
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2520
|
+
} & {
|
|
2584
2521
|
[x: string]: undefined;
|
|
2585
|
-
}
|
|
2522
|
+
} & {
|
|
2586
2523
|
[x: string]: undefined;
|
|
2587
|
-
})) & ({
|
|
2524
|
+
})) & ({
|
|
2588
2525
|
[x: string]: undefined;
|
|
2589
2526
|
} | {
|
|
2590
2527
|
[x: string]: undefined;
|
|
@@ -2592,19 +2529,19 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2592
2529
|
[x: string]: undefined;
|
|
2593
2530
|
} | {
|
|
2594
2531
|
[x: string]: undefined;
|
|
2595
|
-
}), string | number> & {
|
|
2532
|
+
} | undefined), string | number> & {
|
|
2596
2533
|
[x: string]: undefined;
|
|
2597
2534
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<(({
|
|
2598
2535
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2599
|
-
} | ({
|
|
2600
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2601
2536
|
} & {
|
|
2602
2537
|
[x: string]: undefined;
|
|
2603
|
-
})
|
|
2538
|
+
}) | ({
|
|
2539
|
+
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2540
|
+
} & {
|
|
2604
2541
|
[x: string]: undefined;
|
|
2605
|
-
}
|
|
2542
|
+
} & {
|
|
2606
2543
|
[x: string]: undefined;
|
|
2607
|
-
})) & ({
|
|
2544
|
+
})) & ({
|
|
2608
2545
|
[x: string]: undefined;
|
|
2609
2546
|
} | {
|
|
2610
2547
|
[x: string]: undefined;
|
|
@@ -2612,7 +2549,7 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2612
2549
|
[x: string]: undefined;
|
|
2613
2550
|
} | {
|
|
2614
2551
|
[x: string]: undefined;
|
|
2615
|
-
}), string | number> & {
|
|
2552
|
+
} | undefined), string | number> & {
|
|
2616
2553
|
[x: string]: undefined;
|
|
2617
2554
|
}>>, "ref">) & React.RefAttributes<TamaguiElement>>;
|
|
2618
2555
|
Description: React.ForwardRefExoticComponent<((Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{}, "size"> & {
|
|
@@ -2635,51 +2572,39 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2635
2572
|
[x: string]: undefined;
|
|
2636
2573
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
2637
2574
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2638
|
-
} | ({
|
|
2639
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2640
2575
|
} & {
|
|
2641
2576
|
[x: string]: undefined;
|
|
2642
|
-
}
|
|
2577
|
+
}, string | number> & {
|
|
2643
2578
|
[x: string]: undefined;
|
|
2644
2579
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
2645
2580
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2646
|
-
} | ({
|
|
2647
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2648
2581
|
} & {
|
|
2649
2582
|
[x: string]: undefined;
|
|
2650
|
-
}
|
|
2583
|
+
}, string | number> & {
|
|
2651
2584
|
[x: string]: undefined;
|
|
2652
2585
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
2653
2586
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2654
|
-
} | ({
|
|
2655
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2656
2587
|
} & {
|
|
2657
2588
|
[x: string]: undefined;
|
|
2658
|
-
}
|
|
2589
|
+
}, string | number> & {
|
|
2659
2590
|
[x: string]: undefined;
|
|
2660
2591
|
}>>, "ref"> | Omit<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
2661
2592
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2662
|
-
} | ({
|
|
2663
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2664
2593
|
} & {
|
|
2665
2594
|
[x: string]: undefined;
|
|
2666
|
-
}
|
|
2595
|
+
}, string | number> & {
|
|
2667
2596
|
[x: string]: undefined;
|
|
2668
2597
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
2669
2598
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2670
|
-
} | ({
|
|
2671
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2672
2599
|
} & {
|
|
2673
2600
|
[x: string]: undefined;
|
|
2674
|
-
}
|
|
2601
|
+
}, string | number> & {
|
|
2675
2602
|
[x: string]: undefined;
|
|
2676
2603
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendsBaseTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{
|
|
2677
2604
|
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2678
|
-
} | ({
|
|
2679
|
-
readonly size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
2680
2605
|
} & {
|
|
2681
2606
|
[x: string]: undefined;
|
|
2682
|
-
}
|
|
2607
|
+
}, string | number> & {
|
|
2683
2608
|
[x: string]: undefined;
|
|
2684
2609
|
}>>, "ref">) & React.RefAttributes<TamaguiElement>>;
|
|
2685
2610
|
Close: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
|
|
@@ -2759,10 +2684,7 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
2759
2684
|
readonly radiused?: boolean | undefined;
|
|
2760
2685
|
readonly hoverTheme?: boolean | undefined;
|
|
2761
2686
|
readonly pressTheme?: boolean | undefined;
|
|
2762
|
-
readonly focusTheme?: boolean | undefined;
|
|
2763
|
-
* Used to force mounting when more control is needed. Useful when
|
|
2764
|
-
* controlling animation with React animation libraries.
|
|
2765
|
-
*/
|
|
2687
|
+
readonly focusTheme?: boolean | undefined;
|
|
2766
2688
|
readonly circular?: boolean | undefined;
|
|
2767
2689
|
readonly padded?: boolean | undefined;
|
|
2768
2690
|
readonly elevate?: boolean | undefined;
|