@tamagui/accordion 1.45.3 → 1.45.5
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/package.json +10 -10
- package/types/Accordion.d.ts +45 -3
- package/types/Accordion.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/accordion",
|
|
3
|
-
"version": "1.45.
|
|
3
|
+
"version": "1.45.5",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -19,20 +19,20 @@
|
|
|
19
19
|
"watch": "tamagui-build --watch"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@tamagui/collapsible": "1.45.
|
|
23
|
-
"@tamagui/collection": "1.45.
|
|
24
|
-
"@tamagui/compose-refs": "1.45.
|
|
25
|
-
"@tamagui/core": "1.45.
|
|
26
|
-
"@tamagui/create-context": "1.45.
|
|
27
|
-
"@tamagui/polyfill-dev": "1.45.
|
|
28
|
-
"@tamagui/stacks": "1.45.
|
|
29
|
-
"@tamagui/use-controllable-state": "1.45.
|
|
22
|
+
"@tamagui/collapsible": "1.45.5",
|
|
23
|
+
"@tamagui/collection": "1.45.5",
|
|
24
|
+
"@tamagui/compose-refs": "1.45.5",
|
|
25
|
+
"@tamagui/core": "1.45.5",
|
|
26
|
+
"@tamagui/create-context": "1.45.5",
|
|
27
|
+
"@tamagui/polyfill-dev": "1.45.5",
|
|
28
|
+
"@tamagui/stacks": "1.45.5",
|
|
29
|
+
"@tamagui/use-controllable-state": "1.45.5"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"react": "*"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@tamagui/build": "1.45.
|
|
35
|
+
"@tamagui/build": "1.45.5",
|
|
36
36
|
"react": "^18.2.0"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
package/types/Accordion.d.ts
CHANGED
|
@@ -507,24 +507,28 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
507
507
|
};
|
|
508
508
|
Header: React.ForwardRefExoticComponent<(Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
509
509
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
510
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{}, "unstyled" | "size"> & {
|
|
510
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{}, "fontFamily" | "unstyled" | "size"> & {
|
|
511
511
|
readonly unstyled?: boolean | undefined;
|
|
512
512
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
513
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
513
514
|
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
514
515
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
515
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{}, "unstyled" | "size"> & {
|
|
516
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{}, "fontFamily" | "unstyled" | "size"> & {
|
|
516
517
|
readonly unstyled?: boolean | undefined;
|
|
517
518
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
519
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
518
520
|
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
519
521
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
520
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{}, "unstyled" | "size"> & {
|
|
522
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{}, "fontFamily" | "unstyled" | "size"> & {
|
|
521
523
|
readonly unstyled?: boolean | undefined;
|
|
522
524
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
525
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
523
526
|
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
524
527
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
525
528
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
526
529
|
readonly unstyled?: boolean | undefined;
|
|
527
530
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
531
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
528
532
|
}, string | number> & {
|
|
529
533
|
[x: string]: undefined;
|
|
530
534
|
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
@@ -532,6 +536,7 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
532
536
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
533
537
|
readonly unstyled?: boolean | undefined;
|
|
534
538
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
539
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
535
540
|
}, string | number> & {
|
|
536
541
|
[x: string]: undefined;
|
|
537
542
|
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
@@ -539,6 +544,7 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
539
544
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
540
545
|
readonly unstyled?: boolean | undefined;
|
|
541
546
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
547
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
542
548
|
}, string | number> & {
|
|
543
549
|
[x: string]: undefined;
|
|
544
550
|
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
@@ -546,9 +552,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
546
552
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
547
553
|
readonly unstyled?: boolean | undefined;
|
|
548
554
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
555
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
549
556
|
} | ({
|
|
550
557
|
readonly unstyled?: boolean | undefined;
|
|
551
558
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
559
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
552
560
|
} & {
|
|
553
561
|
[x: string]: undefined;
|
|
554
562
|
}), string | number> & {
|
|
@@ -558,9 +566,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
558
566
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
559
567
|
readonly unstyled?: boolean | undefined;
|
|
560
568
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
569
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
561
570
|
} | ({
|
|
562
571
|
readonly unstyled?: boolean | undefined;
|
|
563
572
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
573
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
564
574
|
} & {
|
|
565
575
|
[x: string]: undefined;
|
|
566
576
|
}), string | number> & {
|
|
@@ -570,9 +580,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
570
580
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
571
581
|
readonly unstyled?: boolean | undefined;
|
|
572
582
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
583
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
573
584
|
} | ({
|
|
574
585
|
readonly unstyled?: boolean | undefined;
|
|
575
586
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
587
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
576
588
|
} & {
|
|
577
589
|
[x: string]: undefined;
|
|
578
590
|
}), string | number> & {
|
|
@@ -582,9 +594,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
582
594
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
583
595
|
readonly unstyled?: boolean | undefined;
|
|
584
596
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
597
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
585
598
|
} | ({
|
|
586
599
|
readonly unstyled?: boolean | undefined;
|
|
587
600
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
601
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
588
602
|
} & {
|
|
589
603
|
[x: string]: undefined;
|
|
590
604
|
}), string | number> & {
|
|
@@ -594,9 +608,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
594
608
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
595
609
|
readonly unstyled?: boolean | undefined;
|
|
596
610
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
611
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
597
612
|
} | ({
|
|
598
613
|
readonly unstyled?: boolean | undefined;
|
|
599
614
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
615
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
600
616
|
} & {
|
|
601
617
|
[x: string]: undefined;
|
|
602
618
|
}), string | number> & {
|
|
@@ -606,9 +622,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
606
622
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
607
623
|
readonly unstyled?: boolean | undefined;
|
|
608
624
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
625
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
609
626
|
} | ({
|
|
610
627
|
readonly unstyled?: boolean | undefined;
|
|
611
628
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
629
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
612
630
|
} & {
|
|
613
631
|
[x: string]: undefined;
|
|
614
632
|
}), string | number> & {
|
|
@@ -618,9 +636,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
618
636
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
619
637
|
readonly unstyled?: boolean | undefined;
|
|
620
638
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
639
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
621
640
|
} | ({
|
|
622
641
|
readonly unstyled?: boolean | undefined;
|
|
623
642
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
643
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
624
644
|
} & {
|
|
625
645
|
[x: string]: undefined;
|
|
626
646
|
})) & ({} | {
|
|
@@ -634,9 +654,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
634
654
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
635
655
|
readonly unstyled?: boolean | undefined;
|
|
636
656
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
657
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
637
658
|
} | ({
|
|
638
659
|
readonly unstyled?: boolean | undefined;
|
|
639
660
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
661
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
640
662
|
} & {
|
|
641
663
|
[x: string]: undefined;
|
|
642
664
|
})) & ({} | {
|
|
@@ -650,9 +672,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
650
672
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
651
673
|
readonly unstyled?: boolean | undefined;
|
|
652
674
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
675
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
653
676
|
} | ({
|
|
654
677
|
readonly unstyled?: boolean | undefined;
|
|
655
678
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
679
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
656
680
|
} & {
|
|
657
681
|
[x: string]: undefined;
|
|
658
682
|
})) & ({} | {
|
|
@@ -666,9 +690,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
666
690
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
667
691
|
readonly unstyled?: boolean | undefined;
|
|
668
692
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
693
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
669
694
|
} | ({
|
|
670
695
|
readonly unstyled?: boolean | undefined;
|
|
671
696
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
697
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
672
698
|
} & {
|
|
673
699
|
[x: string]: undefined;
|
|
674
700
|
})) & ({} | {
|
|
@@ -682,9 +708,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
682
708
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
683
709
|
readonly unstyled?: boolean | undefined;
|
|
684
710
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
711
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
685
712
|
} | ({
|
|
686
713
|
readonly unstyled?: boolean | undefined;
|
|
687
714
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
715
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
688
716
|
} & {
|
|
689
717
|
[x: string]: undefined;
|
|
690
718
|
})) & ({} | {
|
|
@@ -698,9 +726,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
698
726
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
699
727
|
readonly unstyled?: boolean | undefined;
|
|
700
728
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
729
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
701
730
|
} | ({
|
|
702
731
|
readonly unstyled?: boolean | undefined;
|
|
703
732
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
733
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
704
734
|
} & {
|
|
705
735
|
[x: string]: undefined;
|
|
706
736
|
})) & ({} | {
|
|
@@ -714,9 +744,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
714
744
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
715
745
|
readonly unstyled?: boolean | undefined;
|
|
716
746
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
747
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
717
748
|
} | ({
|
|
718
749
|
readonly unstyled?: boolean | undefined;
|
|
719
750
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
751
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
720
752
|
} & {
|
|
721
753
|
[x: string]: undefined;
|
|
722
754
|
})) & ({} | {
|
|
@@ -730,9 +762,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
730
762
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
731
763
|
readonly unstyled?: boolean | undefined;
|
|
732
764
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
765
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
733
766
|
} | ({
|
|
734
767
|
readonly unstyled?: boolean | undefined;
|
|
735
768
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
769
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
736
770
|
} & {
|
|
737
771
|
[x: string]: undefined;
|
|
738
772
|
})) & ({} | {
|
|
@@ -746,9 +780,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
746
780
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
747
781
|
readonly unstyled?: boolean | undefined;
|
|
748
782
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
783
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
749
784
|
} | ({
|
|
750
785
|
readonly unstyled?: boolean | undefined;
|
|
751
786
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
787
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
752
788
|
} & {
|
|
753
789
|
[x: string]: undefined;
|
|
754
790
|
})) & ({} | {
|
|
@@ -762,9 +798,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
762
798
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
763
799
|
readonly unstyled?: boolean | undefined;
|
|
764
800
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
801
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
765
802
|
} | ({
|
|
766
803
|
readonly unstyled?: boolean | undefined;
|
|
767
804
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
805
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
768
806
|
} & {
|
|
769
807
|
[x: string]: undefined;
|
|
770
808
|
})) & ({} | {
|
|
@@ -778,9 +816,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
778
816
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
779
817
|
readonly unstyled?: boolean | undefined;
|
|
780
818
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
819
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
781
820
|
} | ({
|
|
782
821
|
readonly unstyled?: boolean | undefined;
|
|
783
822
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
823
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
784
824
|
} & {
|
|
785
825
|
[x: string]: undefined;
|
|
786
826
|
})) & ({} | {
|
|
@@ -794,9 +834,11 @@ declare const Accordion: React.ForwardRefExoticComponent<(AccordionSingleProps |
|
|
|
794
834
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
795
835
|
readonly unstyled?: boolean | undefined;
|
|
796
836
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
837
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
797
838
|
} | ({
|
|
798
839
|
readonly unstyled?: boolean | undefined;
|
|
799
840
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
841
|
+
readonly fontFamily?: `$${string}` | undefined;
|
|
800
842
|
} & {
|
|
801
843
|
[x: string]: undefined;
|
|
802
844
|
})) & ({} | {
|
package/types/Accordion.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../src/Accordion.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../src/Accordion.tsx"],"names":[],"mappings":"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"}
|