@tamagui/tooltip 1.89.20 → 1.89.22
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 +14 -14
- package/types/Tooltip.d.ts +38 -2
- package/types/Tooltip.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/tooltip",
|
|
3
|
-
"version": "1.89.
|
|
3
|
+
"version": "1.89.22",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -33,25 +33,25 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@floating-ui/react": "^0.26.6",
|
|
36
|
-
"@tamagui/compose-refs": "1.89.
|
|
37
|
-
"@tamagui/core": "1.89.
|
|
38
|
-
"@tamagui/create-context": "1.89.
|
|
39
|
-
"@tamagui/floating": "1.89.
|
|
40
|
-
"@tamagui/get-token": "1.89.
|
|
41
|
-
"@tamagui/helpers": "1.89.
|
|
42
|
-
"@tamagui/polyfill-dev": "1.89.
|
|
43
|
-
"@tamagui/popover": "1.89.
|
|
44
|
-
"@tamagui/popper": "1.89.
|
|
45
|
-
"@tamagui/stacks": "1.89.
|
|
46
|
-
"@tamagui/text": "1.89.
|
|
47
|
-
"@tamagui/use-controllable-state": "1.89.
|
|
36
|
+
"@tamagui/compose-refs": "1.89.22",
|
|
37
|
+
"@tamagui/core": "1.89.22",
|
|
38
|
+
"@tamagui/create-context": "1.89.22",
|
|
39
|
+
"@tamagui/floating": "1.89.22",
|
|
40
|
+
"@tamagui/get-token": "1.89.22",
|
|
41
|
+
"@tamagui/helpers": "1.89.22",
|
|
42
|
+
"@tamagui/polyfill-dev": "1.89.22",
|
|
43
|
+
"@tamagui/popover": "1.89.22",
|
|
44
|
+
"@tamagui/popper": "1.89.22",
|
|
45
|
+
"@tamagui/stacks": "1.89.22",
|
|
46
|
+
"@tamagui/text": "1.89.22",
|
|
47
|
+
"@tamagui/use-controllable-state": "1.89.22"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"react": "*",
|
|
51
51
|
"react-native": "*"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@tamagui/build": "1.89.
|
|
54
|
+
"@tamagui/build": "1.89.22",
|
|
55
55
|
"react": "^18.2.0",
|
|
56
56
|
"react-native": "^0.72.6"
|
|
57
57
|
},
|
package/types/Tooltip.d.ts
CHANGED
|
@@ -46,27 +46,63 @@ export declare const Tooltip: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
46
46
|
} & {
|
|
47
47
|
__scopeTooltip?: string | undefined;
|
|
48
48
|
} & React.RefAttributes<unknown>> & {
|
|
49
|
-
Anchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
49
|
+
Anchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "inset"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
50
50
|
elevation?: number | SizeTokens | undefined;
|
|
51
51
|
fullscreen?: boolean | undefined;
|
|
52
|
+
inset?: number | SizeTokens | {
|
|
53
|
+
top?: number | undefined;
|
|
54
|
+
bottom?: number | undefined;
|
|
55
|
+
left?: number | undefined;
|
|
56
|
+
right?: number | undefined;
|
|
57
|
+
} | undefined;
|
|
52
58
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
53
59
|
elevation?: number | SizeTokens | undefined;
|
|
54
60
|
fullscreen?: boolean | undefined;
|
|
61
|
+
inset?: number | SizeTokens | {
|
|
62
|
+
top?: number | undefined;
|
|
63
|
+
bottom?: number | undefined;
|
|
64
|
+
left?: number | undefined;
|
|
65
|
+
right?: number | undefined;
|
|
66
|
+
} | undefined;
|
|
55
67
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
56
68
|
elevation?: number | SizeTokens | undefined;
|
|
57
69
|
fullscreen?: boolean | undefined;
|
|
70
|
+
inset?: number | SizeTokens | {
|
|
71
|
+
top?: number | undefined;
|
|
72
|
+
bottom?: number | undefined;
|
|
73
|
+
left?: number | undefined;
|
|
74
|
+
right?: number | undefined;
|
|
75
|
+
} | undefined;
|
|
58
76
|
}>> & {
|
|
59
77
|
__scopeTooltip?: string | undefined;
|
|
60
78
|
} & React.RefAttributes<unknown>>;
|
|
61
|
-
Arrow: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
79
|
+
Arrow: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "inset"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
62
80
|
elevation?: number | SizeTokens | undefined;
|
|
63
81
|
fullscreen?: boolean | undefined;
|
|
82
|
+
inset?: number | SizeTokens | {
|
|
83
|
+
top?: number | undefined;
|
|
84
|
+
bottom?: number | undefined;
|
|
85
|
+
left?: number | undefined;
|
|
86
|
+
right?: number | undefined;
|
|
87
|
+
} | undefined;
|
|
64
88
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
65
89
|
elevation?: number | SizeTokens | undefined;
|
|
66
90
|
fullscreen?: boolean | undefined;
|
|
91
|
+
inset?: number | SizeTokens | {
|
|
92
|
+
top?: number | undefined;
|
|
93
|
+
bottom?: number | undefined;
|
|
94
|
+
left?: number | undefined;
|
|
95
|
+
right?: number | undefined;
|
|
96
|
+
} | undefined;
|
|
67
97
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
68
98
|
elevation?: number | SizeTokens | undefined;
|
|
69
99
|
fullscreen?: boolean | undefined;
|
|
100
|
+
inset?: number | SizeTokens | {
|
|
101
|
+
top?: number | undefined;
|
|
102
|
+
bottom?: number | undefined;
|
|
103
|
+
left?: number | undefined;
|
|
104
|
+
right?: number | undefined;
|
|
105
|
+
} | undefined;
|
|
70
106
|
}>> & import("@tamagui/popper").PopperArrowExtraProps & {
|
|
71
107
|
__scopeTooltip?: string | undefined;
|
|
72
108
|
} & React.RefAttributes<unknown>>;
|
package/types/Tooltip.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../src/Tooltip.tsx"],"names":[],"mappings":"AAAA,OAAO,uBAAuB,CAAA;AAa9B,OAAO,KAAK,EAAe,UAAU,EAAE,MAAM,eAAe,CAAA;AAmB5D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAGlD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAgD9B,MAAM,MAAM,YAAY,GAAG,WAAW,GAAG;IACvC,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAA;IACtC,KAAK,CAAC,EAAE;QACN,OAAO,CAAC,EAAE,OAAO,CAAA;QACjB,WAAW,CAAC,EAAE,OAAO,CAAA;KACtB,CAAA;IACD,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EACF,MAAM,GACN;QACE,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,KAAK,CAAC,EAAE,MAAM,CAAA;KACf,CAAA;IACL,wBAAwB,CAAC,EAAE,OAAO,CAAA;CACnC,CAAA;AAED,KAAK,KAAK,GACN,MAAM,GACN,OAAO,CAAC;IACN,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;CACd,CAAC,CAAA;AAEN,eAAO,MAAM,YAAY;eAAsC,GAAG;WAAS,KAAK;iBAM/E,CAAA;AAmJD,eAAO,MAAM,OAAO;;;eAjLP,MAAM,SAAS;2BACJ,OAAO,KAAK,IAAI
|
|
1
|
+
{"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../src/Tooltip.tsx"],"names":[],"mappings":"AAAA,OAAO,uBAAuB,CAAA;AAa9B,OAAO,KAAK,EAAe,UAAU,EAAE,MAAM,eAAe,CAAA;AAmB5D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAGlD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAgD9B,MAAM,MAAM,YAAY,GAAG,WAAW,GAAG;IACvC,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAA;IACtC,KAAK,CAAC,EAAE;QACN,OAAO,CAAC,EAAE,OAAO,CAAA;QACjB,WAAW,CAAC,EAAE,OAAO,CAAA;KACtB,CAAA;IACD,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EACF,MAAM,GACN;QACE,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,KAAK,CAAC,EAAE,MAAM,CAAA;KACf,CAAA;IACL,wBAAwB,CAAC,EAAE,OAAO,CAAA;CACnC,CAAA;AAED,KAAK,KAAK,GACN,MAAM,GACN,OAAO,CAAC;IACN,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;CACd,CAAC,CAAA;AAEN,eAAO,MAAM,YAAY;eAAsC,GAAG;WAAS,KAAK;iBAM/E,CAAA;AAmJD,eAAO,MAAM,OAAO;;;eAjLP,MAAM,SAAS;2BACJ,OAAO,KAAK,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqLtC,CAAA"}
|