@tamagui/tooltip 1.110.4 → 1.111.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/dist/esm/Tooltip.native.mjs +16 -0
- package/dist/esm/Tooltip.native.mjs.map +1 -0
- package/dist/esm/TooltipSimple.native.mjs +6 -0
- package/dist/esm/TooltipSimple.native.mjs.map +1 -0
- package/dist/esm/index.native.mjs +3 -0
- package/dist/esm/index.native.mjs.map +1 -0
- package/package.json +14 -14
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { withStaticProperties } from "@tamagui/helpers";
|
|
2
|
+
var RenderChildren = function (props) {
|
|
3
|
+
return props.children;
|
|
4
|
+
},
|
|
5
|
+
RenderNull = function (props) {
|
|
6
|
+
return null;
|
|
7
|
+
},
|
|
8
|
+
Tooltip = withStaticProperties(RenderChildren, {
|
|
9
|
+
Anchor: RenderChildren,
|
|
10
|
+
Arrow: RenderNull,
|
|
11
|
+
Close: RenderNull,
|
|
12
|
+
Content: RenderNull,
|
|
13
|
+
Trigger: RenderChildren
|
|
14
|
+
});
|
|
15
|
+
export { Tooltip };
|
|
16
|
+
//# sourceMappingURL=Tooltip.native.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["withStaticProperties","RenderChildren","props","children","RenderNull","Tooltip","Anchor","Arrow","Close","Content","Trigger"],"sources":["../../src/Users/n8/tamagui/code/ui/tooltip/src/Tooltip.native.tsx"],"sourcesContent":[null],"mappings":"AAAA,SAASA,oBAAA,QAA4B;AAKrC,IAAMC,cAAA,GAAiB,SAAAA,CAACC,KAAA;IACtB,OAAOA,KAAA,CAAMC,QAAA;EACf;EAEMC,UAAA,GAAa,SAAAA,CAACF,KAAA;IAClB,OAAO;EACT;EAEaG,OAAA,GAAUL,oBAAA,CAAqBC,cAAA,EAAgB;IAC1DK,MAAA,EAAQL,cAAA;IACRM,KAAA,EAAOH,UAAA;IACPI,KAAA,EAAOJ,UAAA;IACPK,OAAA,EAASL,UAAA;IACTM,OAAA,EAAST;EACX","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["RenderChildren","props","children","TooltipSimple"],"sources":["../../src/Users/n8/tamagui/code/ui/tooltip/src/TooltipSimple.native.tsx"],"sourcesContent":[null],"mappings":"AAAA,IAAMA,cAAA,GAAiB,SAAAA,CAACC,KAAA;IACtB,OAAOA,KAAA,CAAMC,QAAA;EACf;EAEaC,aAAA,GAAgBH,cAAA","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sources":["../../src/index.tsx"],"sourcesContent":[null],"mappings":"AAAA,cAAc;AACd,cAAc","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/tooltip",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.111.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -34,24 +34,24 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@floating-ui/react": "^0.26.16",
|
|
37
|
-
"@tamagui/compose-refs": "1.
|
|
38
|
-
"@tamagui/core": "1.
|
|
39
|
-
"@tamagui/create-context": "1.
|
|
40
|
-
"@tamagui/floating": "1.
|
|
41
|
-
"@tamagui/get-token": "1.
|
|
42
|
-
"@tamagui/helpers": "1.
|
|
43
|
-
"@tamagui/polyfill-dev": "1.
|
|
44
|
-
"@tamagui/popover": "1.
|
|
45
|
-
"@tamagui/popper": "1.
|
|
46
|
-
"@tamagui/stacks": "1.
|
|
47
|
-
"@tamagui/text": "1.
|
|
48
|
-
"@tamagui/use-controllable-state": "1.
|
|
37
|
+
"@tamagui/compose-refs": "1.111.0",
|
|
38
|
+
"@tamagui/core": "1.111.0",
|
|
39
|
+
"@tamagui/create-context": "1.111.0",
|
|
40
|
+
"@tamagui/floating": "1.111.0",
|
|
41
|
+
"@tamagui/get-token": "1.111.0",
|
|
42
|
+
"@tamagui/helpers": "1.111.0",
|
|
43
|
+
"@tamagui/polyfill-dev": "1.111.0",
|
|
44
|
+
"@tamagui/popover": "1.111.0",
|
|
45
|
+
"@tamagui/popper": "1.111.0",
|
|
46
|
+
"@tamagui/stacks": "1.111.0",
|
|
47
|
+
"@tamagui/text": "1.111.0",
|
|
48
|
+
"@tamagui/use-controllable-state": "1.111.0"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"react": "*"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@tamagui/build": "1.
|
|
54
|
+
"@tamagui/build": "1.111.0",
|
|
55
55
|
"react": "^18.2.0 || ^19.0.0",
|
|
56
56
|
"react-native": "0.74.1"
|
|
57
57
|
},
|