@tamagui/core 1.26.0 → 1.27.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/core",
3
- "version": "1.26.0",
3
+ "version": "1.27.0",
4
4
  "source": "src/index.ts",
5
5
  "main": "dist/cjs",
6
6
  "module": "dist/esm",
@@ -28,16 +28,16 @@
28
28
  "reset.css"
29
29
  ],
30
30
  "dependencies": {
31
- "@tamagui/react-native-use-pressable": "1.26.0",
32
- "@tamagui/react-native-use-responder-events": "1.26.0",
33
- "@tamagui/use-event": "1.26.0",
34
- "@tamagui/web": "1.26.0"
31
+ "@tamagui/react-native-use-pressable": "1.27.0",
32
+ "@tamagui/react-native-use-responder-events": "1.27.0",
33
+ "@tamagui/use-event": "1.27.0",
34
+ "@tamagui/web": "1.27.0"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "react": "*"
38
38
  },
39
39
  "devDependencies": {
40
- "@tamagui/build": "1.26.0",
40
+ "@tamagui/build": "1.27.0",
41
41
  "@testing-library/react": "^13.4.0",
42
42
  "csstype": "^3.0.10",
43
43
  "react": "^18.2.0",
@@ -1,7 +0,0 @@
1
- function getBaseViews() {
2
- return null;
3
- }
4
- export {
5
- getBaseViews
6
- };
7
- //# sourceMappingURL=getBaseViews.mjs.map
@@ -1,6 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/getBaseViews.ts"],
4
- "mappings": "AAAO,SAAS,eAAe;AAE7B,SAAO;AACT;",
5
- "names": []
6
- }
@@ -1,11 +0,0 @@
1
- function getBaseViews() {
2
- const native = require("react-native");
3
- return {
4
- View: native.View || native.default.View,
5
- Text: native.Text || native.default.Text
6
- };
7
- }
8
- export {
9
- getBaseViews
10
- };
11
- //# sourceMappingURL=getBaseViews.native.mjs.map
@@ -1,6 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/getBaseViews.native.ts"],
4
- "mappings": "AAAO,SAAS,eAAe;AAC7B,QAAM,SAAS,QAAQ,cAAc;AACrC,SAAO;AAAA,IACL,MAAM,OAAO,QAAQ,OAAO,QAAQ;AAAA,IACpC,MAAM,OAAO,QAAQ,OAAO,QAAQ;AAAA,EACtC;AACF;",
5
- "names": []
6
- }
@@ -1,10 +0,0 @@
1
- const getBoundingClientRect = (node) => {
2
- var _a;
3
- if (!node || node.nodeType !== 1)
4
- return;
5
- return (_a = node.getBoundingClientRect) == null ? void 0 : _a.call(node);
6
- };
7
- export {
8
- getBoundingClientRect
9
- };
10
- //# sourceMappingURL=getBoundingClientRect.mjs.map
@@ -1,6 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/helpers/getBoundingClientRect.tsx"],
4
- "mappings": "AAAO,MAAM,wBAAwB,CAAC,SAA6C;AAAnF;AACE,MAAI,CAAC,QAAQ,KAAK,aAAa;AAAG;AAClC,UAAO,UAAK,0BAAL;AACT;",
5
- "names": []
6
- }
@@ -1,12 +0,0 @@
1
- import { getBoundingClientRect } from "./getBoundingClientRect";
2
- const getRect = (node) => {
3
- const rect = getBoundingClientRect(node);
4
- if (!rect)
5
- return;
6
- const { x, y, top, left } = rect;
7
- return { x, y, width: node.offsetWidth, height: node.offsetHeight, top, left };
8
- };
9
- export {
10
- getRect
11
- };
12
- //# sourceMappingURL=getRect.mjs.map
@@ -1,6 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/helpers/getRect.tsx"],
4
- "mappings": "AAAA,SAAS,6BAA6B;AAE/B,MAAM,UAAU,CAAC,SAAsB;AAC5C,QAAM,OAAO,sBAAsB,IAAI;AACvC,MAAI,CAAC;AAAM;AACX,QAAM,EAAE,GAAG,GAAG,KAAK,KAAK,IAAI;AAC5B,SAAO,EAAE,GAAG,GAAG,OAAO,KAAK,aAAa,QAAQ,KAAK,cAAc,KAAK,KAAK;AAC/E;",
5
- "names": []
6
- }
@@ -1,59 +0,0 @@
1
- import { useIsomorphicLayoutEffect } from "@tamagui/constants";
2
- import { useEvent } from "@tamagui/use-event";
3
- import { getBoundingClientRect } from "../helpers/getBoundingClientRect";
4
- import { getRect } from "../helpers/getRect";
5
- const LayoutHandlers = /* @__PURE__ */ new WeakMap();
6
- let resizeObserver = null;
7
- if (typeof window !== "undefined" && "ResizeObserver" in window) {
8
- resizeObserver = new ResizeObserver((entries) => {
9
- for (const { target } of entries) {
10
- const onLayout = LayoutHandlers.get(target);
11
- if (typeof onLayout !== "function")
12
- return;
13
- measureLayout(target, null, (x, y, width, height, left, top) => {
14
- onLayout({
15
- nativeEvent: {
16
- layout: { x, y, width, height, left, top },
17
- target
18
- },
19
- timeStamp: Date.now()
20
- });
21
- });
22
- }
23
- });
24
- }
25
- const measureLayout = (node, relativeTo, callback) => {
26
- const relativeNode = relativeTo || (node == null ? void 0 : node.parentNode);
27
- if (relativeNode instanceof HTMLElement) {
28
- setTimeout(() => {
29
- const relativeRect = getBoundingClientRect(relativeNode);
30
- const { height, left, top, width } = getRect(node);
31
- const x = left - relativeRect.left;
32
- const y = top - relativeRect.top;
33
- callback(x, y, width, height, left, top);
34
- }, 0);
35
- }
36
- };
37
- const idFn = () => {
38
- };
39
- function useElementLayout(ref, onLayout) {
40
- const hasLayoutEvent = !!onLayout;
41
- const onLayoutEvent = useEvent(onLayout || idFn);
42
- useIsomorphicLayoutEffect(() => {
43
- if (!resizeObserver || !hasLayoutEvent)
44
- return;
45
- const node = ref.current;
46
- if (!node)
47
- return;
48
- LayoutHandlers.set(node, onLayoutEvent);
49
- resizeObserver.observe(node);
50
- return () => {
51
- resizeObserver == null ? void 0 : resizeObserver.unobserve(node);
52
- };
53
- }, [ref, hasLayoutEvent]);
54
- }
55
- export {
56
- measureLayout,
57
- useElementLayout
58
- };
59
- //# sourceMappingURL=useElementLayout.mjs.map
@@ -1,6 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/hooks/useElementLayout.tsx"],
4
- "mappings": "AAAA,SAAS,iCAAiC;AAC1C,SAAS,gBAAgB;AAGzB,SAAS,6BAA6B;AACtC,SAAS,eAAe;AAExB,MAAM,iBAAiB,oBAAI,QAA2B;AAmBtD,IAAI,iBAAwC;AAE5C,IAAI,OAAO,WAAW,eAAe,oBAAoB,QAAQ;AAC/D,mBAAiB,IAAI,eAAe,CAAC,YAAY;AAC/C,eAAW,EAAE,OAAO,KAAK,SAAS;AAChC,YAAM,WAAW,eAAe,IAAI,MAAM;AAC1C,UAAI,OAAO,aAAa;AAAY;AACpC,oBAAc,QAAuB,MAAM,CAAC,GAAG,GAAG,OAAO,QAAQ,MAAM,QAAQ;AAC7E,iBAAS;AAAA,UACP,aAAa;AAAA,YACX,QAAQ,EAAE,GAAG,GAAG,OAAO,QAAQ,MAAM,IAAI;AAAA,YACzC;AAAA,UACF;AAAA,UACA,WAAW,KAAK,IAAI;AAAA,QACtB,CAAC;AAAA,MACH,CAAC;AAAA,IACH;AAAA,EACF,CAAC;AACH;AAEO,MAAM,gBAAgB,CAC3B,MACA,YACA,aACG;AACH,QAAM,eAAe,eAAc,6BAAM;AACzC,MAAI,wBAAwB,aAAa;AACvC,eAAW,MAAM;AACf,YAAM,eAAe,sBAAsB,YAAY;AACvD,YAAM,EAAE,QAAQ,MAAM,KAAK,MAAM,IAAI,QAAQ,IAAI;AACjD,YAAM,IAAI,OAAO,aAAa;AAC9B,YAAM,IAAI,MAAM,aAAa;AAC7B,eAAS,GAAG,GAAG,OAAO,QAAQ,MAAM,GAAG;AAAA,IACzC,GAAG,CAAC;AAAA,EACN;AACF;AAEA,MAAM,OAAO,MAAM;AAAC;AAEb,SAAS,iBACd,KACA,UACA;AACA,QAAM,iBAAiB,CAAC,CAAC;AACzB,QAAM,gBAAgB,SAAS,YAAY,IAAI;AAI/C,4BAA0B,MAAM;AAC9B,QAAI,CAAC,kBAAkB,CAAC;AAAgB;AACxC,UAAM,OAAO,IAAI;AACjB,QAAI,CAAC;AAAM;AACX,mBAAe,IAAI,MAAM,aAAa;AACtC,mBAAe,QAAQ,IAAI;AAC3B,WAAO,MAAM;AACX,uDAAgB,UAAU;AAAA,IAC5B;AAAA,EACF,GAAG,CAAC,KAAK,cAAc,CAAC;AAC1B;",
5
- "names": []
6
- }
@@ -1,24 +0,0 @@
1
- import { useIsomorphicLayoutEffect } from "@tamagui/web";
2
- import { getRect } from "../helpers/getRect";
3
- import { measureLayout } from "./useElementLayout";
4
- function usePlatformMethods(hostRef) {
5
- useIsomorphicLayoutEffect(() => {
6
- const node = hostRef.current;
7
- if (!node)
8
- return;
9
- node.measure = (callback) => measureLayout(node, null, callback);
10
- node.measureLayout = (relativeToNode, success) => measureLayout(node, relativeToNode, success);
11
- node.measureInWindow = (callback) => {
12
- if (!node)
13
- return;
14
- setTimeout(() => {
15
- const { height, left, top, width } = getRect(node);
16
- callback(left, top, width, height);
17
- }, 0);
18
- };
19
- }, [hostRef]);
20
- }
21
- export {
22
- usePlatformMethods
23
- };
24
- //# sourceMappingURL=usePlatformMethods.mjs.map
@@ -1,6 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/hooks/usePlatformMethods.ts"],
4
- "mappings": "AAAA,SAAS,iCAAiC;AAG1C,SAAS,eAAe;AACxB,SAAS,qBAAqB;AAGvB,SAAS,mBAAmB,SAA6B;AAC9D,4BAA0B,MAAM;AAC9B,UAAM,OAAO,QAAQ;AACrB,QAAI,CAAC;AAAM;AAEX,SAAK,UAAU,CAAC,aAAa,cAAc,MAAM,MAAM,QAAQ;AAE/D,SAAK,gBAAgB,CAAC,gBAAgB,YACpC,cAAc,MAAqB,gBAAgB,OAAO;AAE5D,SAAK,kBAAkB,CAAC,aAAa;AACnC,UAAI,CAAC;AAAM;AACX,iBAAW,MAAM;AACf,cAAM,EAAE,QAAQ,MAAM,KAAK,MAAM,IAAI,QAAQ,IAAmB;AAChE,iBAAS,MAAM,KAAK,OAAO,MAAM;AAAA,MACnC,GAAG,CAAC;AAAA,IACN;AAAA,EACF,GAAG,CAAC,OAAO,CAAC;AACd;",
5
- "names": []
6
- }
@@ -1,140 +0,0 @@
1
- import { useResponderEvents } from "@tamagui/react-native-use-responder-events";
2
- import {
3
- Stack as WebStack,
4
- Text as WebText,
5
- composeEventHandlers,
6
- isRSC,
7
- mergeEvent,
8
- setupHooks
9
- } from "@tamagui/web";
10
- import { getBaseViews } from "./getBaseViews";
11
- import { useElementLayout } from "./hooks/useElementLayout";
12
- import { usePlatformMethods } from "./hooks/usePlatformMethods";
13
- import { usePressability } from "./vendor/Pressability";
14
- export * from "@tamagui/web";
15
- const Stack = WebStack;
16
- const Text = WebText;
17
- setupHooks({
18
- getBaseViews,
19
- usePropsTransform(elementType, propsIn, hostRef) {
20
- const {
21
- // event props
22
- onMoveShouldSetResponder,
23
- onMoveShouldSetResponderCapture,
24
- onResponderEnd,
25
- onResponderGrant,
26
- onResponderMove,
27
- onResponderReject,
28
- onResponderRelease,
29
- onResponderStart,
30
- onResponderTerminate,
31
- onResponderTerminationRequest,
32
- onScrollShouldSetResponder,
33
- onScrollShouldSetResponderCapture,
34
- onSelectionChangeShouldSetResponder,
35
- onSelectionChangeShouldSetResponderCapture,
36
- onStartShouldSetResponder,
37
- onStartShouldSetResponderCapture,
38
- // android
39
- collapsable,
40
- focusable,
41
- // deprecated,
42
- accessible,
43
- accessibilityDisabled,
44
- onLayout,
45
- hrefAttrs,
46
- ...viewProps
47
- } = propsIn;
48
- if (!isRSC) {
49
- usePlatformMethods(hostRef);
50
- useElementLayout(hostRef, onLayout);
51
- useResponderEvents(hostRef, {
52
- onMoveShouldSetResponder,
53
- onMoveShouldSetResponderCapture,
54
- onResponderEnd,
55
- onResponderGrant,
56
- onResponderMove,
57
- onResponderReject,
58
- onResponderRelease,
59
- onResponderStart,
60
- onResponderTerminate,
61
- onResponderTerminationRequest,
62
- onScrollShouldSetResponder,
63
- onScrollShouldSetResponderCapture,
64
- onSelectionChangeShouldSetResponder,
65
- onSelectionChangeShouldSetResponderCapture,
66
- onStartShouldSetResponder,
67
- onStartShouldSetResponderCapture
68
- });
69
- }
70
- if (viewProps.href !== void 0 && hrefAttrs !== void 0) {
71
- const { download, rel, target } = hrefAttrs;
72
- if (download != null) {
73
- viewProps.download = download;
74
- }
75
- if (rel != null) {
76
- viewProps.rel = rel;
77
- }
78
- if (typeof target === "string") {
79
- viewProps.target = target.charAt(0) !== "_" ? `_${target}` : target;
80
- }
81
- }
82
- if (!viewProps.tabIndex) {
83
- const _focusable = focusable !== void 0 ? focusable : accessible;
84
- const role = viewProps.role;
85
- if (_focusable === false) {
86
- viewProps.tabIndex = "-1";
87
- }
88
- if (
89
- // These native elements are focusable by default
90
- elementType === "a" || elementType === "button" || elementType === "input" || elementType === "select" || elementType === "textarea"
91
- ) {
92
- if (_focusable === false || accessibilityDisabled === true) {
93
- viewProps.tabIndex = "-1";
94
- }
95
- } else if (
96
- // These roles are made focusable by default
97
- role === "button" || role === "checkbox" || role === "link" || role === "radio" || role === "textbox" || role === "switch"
98
- ) {
99
- if (_focusable !== false) {
100
- viewProps.tabIndex = "0";
101
- }
102
- }
103
- if (_focusable === true) {
104
- viewProps.tabIndex = "0";
105
- }
106
- }
107
- return viewProps;
108
- },
109
- useEvents(viewProps, events, { pseudos }, setStateShallow) {
110
- if (process.env.TAMAGUI_TARGET === "native") {
111
- const attachFocus = !!(pseudos == null ? void 0 : pseudos.focusStyle);
112
- if (attachFocus) {
113
- viewProps.onFocus = mergeEvent(viewProps.onFocus, () => {
114
- setStateShallow({ focus: true });
115
- });
116
- viewProps.onBlur = mergeEvent(viewProps.onBlur, () => {
117
- setStateShallow({ focus: false });
118
- });
119
- }
120
- const pressability = usePressability(
121
- events ? { ...events, hitSlop: viewProps.hitSlop } : {}
122
- );
123
- if (events == null ? void 0 : events.onPress) {
124
- for (const key in pressability) {
125
- const og = viewProps[key];
126
- const val = pressability[key];
127
- viewProps[key] = og && !dontComposePressabilityKeys[key] ? composeEventHandlers(og, val) : val;
128
- }
129
- }
130
- }
131
- }
132
- });
133
- const dontComposePressabilityKeys = {
134
- onClick: true
135
- };
136
- export {
137
- Stack,
138
- Text
139
- };
140
- //# sourceMappingURL=index.mjs.map
@@ -1,6 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/index.ts"],
4
- "mappings": "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",
5
- "names": []
6
- }
@@ -1,16 +0,0 @@
1
- const stylesheets = {};
2
- const injectStyles = ({ filePath, css }) => {
3
- let stylesheet = stylesheets[filePath];
4
- if (!stylesheet) {
5
- const styleEl = document.createElement("style");
6
- styleEl.setAttribute("data-file", filePath);
7
- styleEl.setAttribute("type", "text/css");
8
- stylesheet = stylesheets[filePath] = styleEl;
9
- document.head.appendChild(styleEl);
10
- }
11
- stylesheet.innerHTML = css;
12
- };
13
- export {
14
- injectStyles
15
- };
16
- //# sourceMappingURL=inject-styles.mjs.map
@@ -1,6 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/inject-styles.ts"],
4
- "mappings": "AAEA,MAAM,cAA2C,CAAC;AAO3C,MAAM,eAAe,CAAC,EAAE,UAAU,IAAI,MAA2B;AACtE,MAAI,aAAa,YAAY,QAAQ;AACrC,MAAI,CAAC,YAAY;AACf,UAAM,UAAU,SAAS,cAAc,OAAO;AAC9C,YAAQ,aAAa,aAAa,QAAQ;AAC1C,YAAQ,aAAa,QAAQ,UAAU;AACvC,iBAAa,YAAY,QAAQ,IAAI;AACrC,aAAS,KAAK,YAAY,OAAO;AAAA,EACnC;AACA,aAAW,YAAY;AACzB;",
5
- "names": []
6
- }
@@ -1 +0,0 @@
1
- //# sourceMappingURL=reactNativeTypes.mjs.map
@@ -1,6 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": [],
4
- "mappings": "",
5
- "names": []
6
- }
@@ -1,7 +0,0 @@
1
- const Pressability = {};
2
- const usePressability = {};
3
- export {
4
- Pressability,
5
- usePressability
6
- };
7
- //# sourceMappingURL=Pressability.mjs.map
@@ -1,6 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/vendor/Pressability.tsx"],
4
- "mappings": "AAAO,MAAM,eAAe,CAAC;AACtB,MAAM,kBAAkB,CAAC;",
5
- "names": []
6
- }
@@ -1,7 +0,0 @@
1
- const Pressability = require("react-native/Libraries/Pressability/Pressability").default;
2
- const usePressability = require("react-native/Libraries/Pressability/usePressability").default;
3
- export {
4
- Pressability,
5
- usePressability
6
- };
7
- //# sourceMappingURL=Pressability.native.mjs.map
@@ -1,6 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/vendor/Pressability.native.tsx"],
4
- "mappings": "AAAO,MAAM,eACX,QAAQ,kDAAkD,EAAE;AACvD,MAAM,kBACX,QAAQ,qDAAqD,EAAE;",
5
- "names": []
6
- }
@@ -1,2 +0,0 @@
1
- export declare function getBaseViews(): void;
2
- //# sourceMappingURL=getBaseViews.web.d.ts.map