@tamagui/tooltip 1.120.1 → 1.121.0
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 +15 -15
- package/types/Tooltip.d.ts +14 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/tooltip",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.121.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -37,26 +37,26 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@floating-ui/react": "^0.26.24",
|
|
40
|
-
"@tamagui/compose-refs": "1.
|
|
41
|
-
"@tamagui/core": "1.
|
|
42
|
-
"@tamagui/create-context": "1.
|
|
43
|
-
"@tamagui/floating": "1.
|
|
44
|
-
"@tamagui/get-token": "1.
|
|
45
|
-
"@tamagui/helpers": "1.
|
|
46
|
-
"@tamagui/polyfill-dev": "1.
|
|
47
|
-
"@tamagui/popover": "1.
|
|
48
|
-
"@tamagui/popper": "1.
|
|
49
|
-
"@tamagui/stacks": "1.
|
|
50
|
-
"@tamagui/text": "1.
|
|
51
|
-
"@tamagui/use-controllable-state": "1.
|
|
40
|
+
"@tamagui/compose-refs": "1.121.0",
|
|
41
|
+
"@tamagui/core": "1.121.0",
|
|
42
|
+
"@tamagui/create-context": "1.121.0",
|
|
43
|
+
"@tamagui/floating": "1.121.0",
|
|
44
|
+
"@tamagui/get-token": "1.121.0",
|
|
45
|
+
"@tamagui/helpers": "1.121.0",
|
|
46
|
+
"@tamagui/polyfill-dev": "1.121.0",
|
|
47
|
+
"@tamagui/popover": "1.121.0",
|
|
48
|
+
"@tamagui/popper": "1.121.0",
|
|
49
|
+
"@tamagui/stacks": "1.121.0",
|
|
50
|
+
"@tamagui/text": "1.121.0",
|
|
51
|
+
"@tamagui/use-controllable-state": "1.121.0"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": "*"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@tamagui/build": "1.
|
|
57
|
+
"@tamagui/build": "1.121.0",
|
|
58
58
|
"react": "*",
|
|
59
|
-
"react-native": "0.
|
|
59
|
+
"react-native": "^0.76.5"
|
|
60
60
|
},
|
|
61
61
|
"publishConfig": {
|
|
62
62
|
"access": "public"
|
package/types/Tooltip.d.ts
CHANGED
|
@@ -48,63 +48,63 @@ export declare const Tooltip: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
48
48
|
} & {
|
|
49
49
|
__scopeTooltip?: string | undefined;
|
|
50
50
|
} & React.RefAttributes<unknown>> & {
|
|
51
|
-
Anchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"
|
|
51
|
+
Anchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
52
52
|
elevation?: number | SizeTokens | undefined;
|
|
53
|
-
fullscreen?: boolean | undefined;
|
|
54
53
|
inset?: number | SizeTokens | {
|
|
55
54
|
top?: number;
|
|
56
55
|
bottom?: number;
|
|
57
56
|
left?: number;
|
|
58
57
|
right?: number;
|
|
59
|
-
} | undefined;
|
|
58
|
+
} | null | undefined;
|
|
59
|
+
fullscreen?: boolean | undefined;
|
|
60
60
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
61
61
|
elevation?: number | SizeTokens | undefined;
|
|
62
|
-
fullscreen?: boolean | undefined;
|
|
63
62
|
inset?: number | SizeTokens | {
|
|
64
63
|
top?: number;
|
|
65
64
|
bottom?: number;
|
|
66
65
|
left?: number;
|
|
67
66
|
right?: number;
|
|
68
|
-
} | undefined;
|
|
67
|
+
} | null | undefined;
|
|
68
|
+
fullscreen?: boolean | undefined;
|
|
69
69
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
70
70
|
elevation?: number | SizeTokens | undefined;
|
|
71
|
-
fullscreen?: boolean | undefined;
|
|
72
71
|
inset?: number | SizeTokens | {
|
|
73
72
|
top?: number;
|
|
74
73
|
bottom?: number;
|
|
75
74
|
left?: number;
|
|
76
75
|
right?: number;
|
|
77
|
-
} | undefined;
|
|
76
|
+
} | null | undefined;
|
|
77
|
+
fullscreen?: boolean | undefined;
|
|
78
78
|
}>> & {
|
|
79
79
|
__scopeTooltip?: string | undefined;
|
|
80
80
|
} & React.RefAttributes<unknown>>;
|
|
81
|
-
Arrow: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"
|
|
81
|
+
Arrow: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
82
82
|
elevation?: number | SizeTokens | undefined;
|
|
83
|
-
fullscreen?: boolean | undefined;
|
|
84
83
|
inset?: number | SizeTokens | {
|
|
85
84
|
top?: number;
|
|
86
85
|
bottom?: number;
|
|
87
86
|
left?: number;
|
|
88
87
|
right?: number;
|
|
89
|
-
} | undefined;
|
|
88
|
+
} | null | undefined;
|
|
89
|
+
fullscreen?: boolean | undefined;
|
|
90
90
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
91
91
|
elevation?: number | SizeTokens | undefined;
|
|
92
|
-
fullscreen?: boolean | undefined;
|
|
93
92
|
inset?: number | SizeTokens | {
|
|
94
93
|
top?: number;
|
|
95
94
|
bottom?: number;
|
|
96
95
|
left?: number;
|
|
97
96
|
right?: number;
|
|
98
|
-
} | undefined;
|
|
97
|
+
} | null | undefined;
|
|
98
|
+
fullscreen?: boolean | undefined;
|
|
99
99
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
100
100
|
elevation?: number | SizeTokens | undefined;
|
|
101
|
-
fullscreen?: boolean | undefined;
|
|
102
101
|
inset?: number | SizeTokens | {
|
|
103
102
|
top?: number;
|
|
104
103
|
bottom?: number;
|
|
105
104
|
left?: number;
|
|
106
105
|
right?: number;
|
|
107
|
-
} | undefined;
|
|
106
|
+
} | null | undefined;
|
|
107
|
+
fullscreen?: boolean | undefined;
|
|
108
108
|
}>> & import("@tamagui/popper").PopperArrowExtraProps & {
|
|
109
109
|
__scopeTooltip?: string | undefined;
|
|
110
110
|
} & React.RefAttributes<unknown>>;
|