@tamagui/tabs 2.7.7 → 3.0.0-beta.643.1

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.
Files changed (67) hide show
  1. package/dist/cjs/StyledContext.cjs +16 -20
  2. package/dist/cjs/StyledContext.native.cjs +31 -0
  3. package/dist/cjs/StyledContext.native.js +17 -20
  4. package/dist/cjs/StyledContext.native.js.map +1 -1
  5. package/dist/cjs/Tabs.cjs +227 -68
  6. package/dist/cjs/Tabs.native.cjs +250 -0
  7. package/dist/cjs/Tabs.native.js +233 -67
  8. package/dist/cjs/Tabs.native.js.map +1 -1
  9. package/dist/cjs/index.cjs +10 -27
  10. package/dist/cjs/index.native.cjs +22 -0
  11. package/dist/cjs/index.native.js +11 -27
  12. package/dist/cjs/index.native.js.map +1 -1
  13. package/dist/esm/StyledContext.mjs +3 -4
  14. package/dist/esm/StyledContext.mjs.map +1 -1
  15. package/dist/esm/StyledContext.native.js +3 -4
  16. package/dist/esm/StyledContext.native.js.map +1 -1
  17. package/dist/esm/Tabs.mjs +206 -55
  18. package/dist/esm/Tabs.mjs.map +1 -1
  19. package/dist/esm/Tabs.native.js +212 -55
  20. package/dist/esm/Tabs.native.js.map +1 -1
  21. package/dist/esm/index.js +3 -11
  22. package/dist/esm/index.mjs +3 -11
  23. package/dist/esm/index.native.js +3 -11
  24. package/dist/jsx/StyledContext.mjs +3 -4
  25. package/dist/jsx/StyledContext.mjs.map +1 -1
  26. package/dist/jsx/StyledContext.native.cjs +31 -0
  27. package/dist/jsx/StyledContext.native.js +17 -20
  28. package/dist/jsx/StyledContext.native.js.map +1 -1
  29. package/dist/jsx/Tabs.mjs +206 -55
  30. package/dist/jsx/Tabs.mjs.map +1 -1
  31. package/dist/jsx/Tabs.native.cjs +250 -0
  32. package/dist/jsx/Tabs.native.js +233 -67
  33. package/dist/jsx/Tabs.native.js.map +1 -1
  34. package/dist/jsx/index.js +3 -11
  35. package/dist/jsx/index.mjs +3 -11
  36. package/dist/jsx/index.native.cjs +22 -0
  37. package/dist/jsx/index.native.js +11 -27
  38. package/dist/jsx/index.native.js.map +1 -1
  39. package/package.json +11 -17
  40. package/src/StyledContext.tsx +3 -3
  41. package/src/Tabs.tsx +368 -55
  42. package/src/index.ts +1 -9
  43. package/types/StyledContext.d.ts +3 -3
  44. package/types/StyledContext.d.ts.map +1 -1
  45. package/types/Tabs.d.ts +398 -35
  46. package/types/Tabs.d.ts.map +1 -1
  47. package/types/index.d.ts +1 -537
  48. package/types/index.d.ts.map +1 -1
  49. package/dist/cjs/createTabs.cjs +0 -293
  50. package/dist/cjs/createTabs.native.js +0 -308
  51. package/dist/cjs/createTabs.native.js.map +0 -1
  52. package/dist/esm/createTabs.mjs +0 -257
  53. package/dist/esm/createTabs.mjs.map +0 -1
  54. package/dist/esm/createTabs.native.js +0 -269
  55. package/dist/esm/createTabs.native.js.map +0 -1
  56. package/dist/esm/index.js.map +0 -1
  57. package/dist/esm/index.mjs.map +0 -1
  58. package/dist/esm/index.native.js.map +0 -1
  59. package/dist/jsx/createTabs.mjs +0 -257
  60. package/dist/jsx/createTabs.mjs.map +0 -1
  61. package/dist/jsx/createTabs.native.js +0 -308
  62. package/dist/jsx/createTabs.native.js.map +0 -1
  63. package/dist/jsx/index.js.map +0 -1
  64. package/dist/jsx/index.mjs.map +0 -1
  65. package/src/createTabs.tsx +0 -438
  66. package/types/createTabs.d.ts +0 -527
  67. package/types/createTabs.d.ts.map +0 -1
@@ -0,0 +1,250 @@
1
+ "use strict";
2
+
3
+
4
+ var __create = Object.create;
5
+ var __defProp = Object.defineProperty;
6
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
7
+ var __getOwnPropNames = Object.getOwnPropertyNames;
8
+ var __getProtoOf = Object.getPrototypeOf;
9
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
10
+ var __export = (target, all) => {
11
+ for (var name in all) __defProp(target, name, {
12
+ get: all[name],
13
+ enumerable: true
14
+ });
15
+ };
16
+ var __copyProps = (to, from, except, desc) => {
17
+ if (from && typeof from === "object" || typeof from === "function") {
18
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
19
+ get: () => from[key],
20
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
21
+ });
22
+ }
23
+ return to;
24
+ };
25
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
26
+ value: mod,
27
+ enumerable: true
28
+ }) : target, mod));
29
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
30
+ var Tabs_exports = {};
31
+ __export(Tabs_exports, {
32
+ Tabs: () => Tabs2,
33
+ TabsContent: () => TabsContent,
34
+ TabsContentFrame: () => TabsContentFrame,
35
+ TabsFrame: () => TabsFrame,
36
+ TabsList: () => TabsList,
37
+ TabsListFrame: () => TabsListFrame,
38
+ TabsTab: () => TabsTab,
39
+ TabsTabFrame: () => TabsTabFrame
40
+ });
41
+ module.exports = __toCommonJS(Tabs_exports);
42
+ var import_jsx_runtime = require("react/jsx-runtime");
43
+ var import_compose_refs = require("@tamagui/compose-refs");
44
+ var import_constants = require("@tamagui/constants");
45
+ var import_core = require("@tamagui/core");
46
+ var import_helpers = require("@tamagui/helpers");
47
+ var import_roving_focus = require("@tamagui/roving-focus");
48
+ var import_size = require("@tamagui/size");
49
+ var import_tabs_headless = require("@tamagui/tabs-headless");
50
+ var import_web = require("@tamagui/web");
51
+ var React = __toESM(require("react"), 1);
52
+ var import_StyledContext = require("./StyledContext.native.js");
53
+ var TABS_CONTEXT = "TabsContext";
54
+ var TabsFrame = (0, import_core.styled)(import_core.View, {
55
+ displayName: "Tabs",
56
+ context: import_size.SizeContext
57
+ });
58
+ var TabsListFrame = (0, import_core.styled)(import_core.View, {
59
+ displayName: "TabsList",
60
+ context: import_size.SizeContext,
61
+ role: "tablist"
62
+ });
63
+ var TabsTabFrame = (0, import_core.styled)(import_core.View, {
64
+ displayName: "TabsTrigger",
65
+ context: import_size.SizeContext,
66
+ role: "tab",
67
+ variants: { disabled: { true: { pointerEvents: "none" } } }
68
+ });
69
+ var TabsContentFrame = (0, import_core.styled)(import_core.View, {
70
+ displayName: "TabsContent",
71
+ context: import_size.SizeContext
72
+ });
73
+ var TabsListDisabledContext = /* @__PURE__ */ React.createContext(false);
74
+ var TabsList = (0, import_core.createStyledHOC)(TabsListFrame, function TabsList2(props, forwardedRef) {
75
+ var { __scopeTabs, loop = true, disabled = false, children, ...listProps } = props;
76
+ var context = (0, import_StyledContext.useTabsContext)(__scopeTabs);
77
+ var { listProps: headlessListProps } = (0, import_tabs_headless.useTabsList)({
78
+ orientation: context.orientation,
79
+ disabled
80
+ });
81
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsListDisabledContext.Provider, {
82
+ value: disabled,
83
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_roving_focus.RovingFocusGroup, {
84
+ __scopeRovingFocusGroup: __scopeTabs || TABS_CONTEXT,
85
+ orientation: context.orientation,
86
+ dir: context.dir,
87
+ loop,
88
+ asChild: true,
89
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsListFrame, {
90
+ ...headlessListProps,
91
+ flexDirection: context.orientation === "vertical" ? "column" : "row",
92
+ ref: forwardedRef,
93
+ ...listProps,
94
+ children
95
+ })
96
+ })
97
+ });
98
+ });
99
+ var TabsTab = (0, import_core.createStyledHOC)(TabsTabFrame, function TabsTab2(props, forwardedRef) {
100
+ var { __scopeTabs, value, disabled: disabledProp, onInteraction, activeStyle, activeTheme, onLayout, onMouseEnter, onMouseLeave, onPress, onKeyDown, onFocus, onBlur, ...triggerProps } = props;
101
+ var context = (0, import_StyledContext.useTabsContext)(__scopeTabs);
102
+ var listDisabled = React.useContext(TabsListDisabledContext);
103
+ var disabled = disabledProp !== null && disabledProp !== void 0 ? disabledProp : listDisabled;
104
+ var { isSelected, tabProps } = (0, import_tabs_headless.useTab)({
105
+ baseId: context.baseId,
106
+ value,
107
+ selectedValue: context.value,
108
+ disabled,
109
+ activationMode: context.activationMode,
110
+ onChange: context.onChange
111
+ });
112
+ var { onPress: activateOnPress, onKeyDown: activateOnKeyDown, onFocus: activateOnFocus, ...tabA11yProps } = tabProps;
113
+ var [layout, setLayout] = React.useState(null);
114
+ var triggerRef = React.useRef(null);
115
+ var emitInteraction = (0, import_web.useEvent)(function(type, layout2) {
116
+ onInteraction === null || onInteraction === void 0 ? void 0 : onInteraction(type, layout2);
117
+ });
118
+ React.useEffect(function() {
119
+ context.registerTrigger();
120
+ return function() {
121
+ return context.unregisterTrigger();
122
+ };
123
+ }, []);
124
+ React.useEffect(function() {
125
+ if (!triggerRef.current || !import_constants.isWeb) return;
126
+ var element = triggerRef.current;
127
+ function updateTriggerSize() {
128
+ var next = {
129
+ width: element.offsetWidth,
130
+ height: element.offsetHeight,
131
+ x: element.offsetLeft,
132
+ y: element.offsetTop
133
+ };
134
+ setLayout(function(previous) {
135
+ return previous && previous.width === next.width && previous.height === next.height && previous.x === next.x && previous.y === next.y ? previous : next;
136
+ });
137
+ }
138
+ updateTriggerSize();
139
+ var observer = new ResizeObserver(updateTriggerSize);
140
+ observer.observe(element);
141
+ return function() {
142
+ return observer.disconnect();
143
+ };
144
+ }, [context.triggersCount]);
145
+ React.useEffect(function() {
146
+ if (isSelected && layout) {
147
+ emitInteraction("select", layout);
148
+ }
149
+ }, [
150
+ emitInteraction,
151
+ isSelected,
152
+ layout
153
+ ]);
154
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_roving_focus.RovingFocusGroup.Item, {
155
+ __scopeRovingFocusGroup: __scopeTabs || TABS_CONTEXT,
156
+ asChild: true,
157
+ tabIndex: disabled ? -1 : 0,
158
+ active: isSelected,
159
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsTabFrame, {
160
+ onLayout: import_constants.isWeb ? onLayout : (0, import_helpers.composeEventHandlers)(onLayout, function(event) {
161
+ setLayout(event.nativeEvent.layout);
162
+ }),
163
+ onMouseEnter: (0, import_helpers.composeEventHandlers)(onMouseEnter, function() {
164
+ if (layout) {
165
+ emitInteraction("hover", layout);
166
+ }
167
+ }),
168
+ onMouseLeave: (0, import_helpers.composeEventHandlers)(onMouseLeave, function() {
169
+ emitInteraction("hover", null);
170
+ }),
171
+ ...tabA11yProps,
172
+ theme: isSelected ? activeTheme !== null && activeTheme !== void 0 ? activeTheme : null : null,
173
+ size: context.size,
174
+ ...triggerProps,
175
+ ...isSelected && activeStyle,
176
+ ref: (0, import_compose_refs.composeRefs)(forwardedRef, triggerRef),
177
+ onPress: (0, import_helpers.composeEventHandlers)(onPress !== null && onPress !== void 0 ? onPress : void 0, activateOnPress),
178
+ ...import_constants.isWeb && {
179
+ onKeyDown: (0, import_helpers.composeEventHandlers)(onKeyDown, activateOnKeyDown),
180
+ onFocus: (0, import_helpers.composeEventHandlers)(onFocus, (0, import_helpers.composeEventHandlers)(function() {
181
+ if (layout) {
182
+ emitInteraction("focus", layout);
183
+ }
184
+ }, activateOnFocus)),
185
+ onBlur: (0, import_helpers.composeEventHandlers)(onBlur, function() {
186
+ emitInteraction("focus", null);
187
+ })
188
+ }
189
+ })
190
+ });
191
+ });
192
+ var TabsContent = (0, import_core.createStyledHOC)(TabsContentFrame, function TabsContent2(props, forwardedRef) {
193
+ var { __scopeTabs, value, forceMount, children, ...contentProps } = props;
194
+ var context = (0, import_StyledContext.useTabsContext)(__scopeTabs);
195
+ var { shouldMount, contentProps: headlessContentProps } = (0, import_tabs_headless.useTabContent)({
196
+ baseId: context.baseId,
197
+ value,
198
+ selectedValue: context.value,
199
+ orientation: context.orientation,
200
+ forceMount
201
+ });
202
+ if (!shouldMount) {
203
+ return null;
204
+ }
205
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsContentFrame, {
206
+ ...headlessContentProps,
207
+ ...contentProps,
208
+ ref: forwardedRef,
209
+ children
210
+ }, value);
211
+ });
212
+ var TabsComponent = (0, import_core.createStyledHOC)(TabsFrame, function Tabs(props, forwardedRef) {
213
+ var { __scopeTabs, value: valueProp, onValueChange, defaultValue, orientation = "horizontal", dir, activationMode = "automatic", size = true, ...tabsProps } = props;
214
+ var { value, setValue, baseId, direction, triggersCount, registerTrigger, unregisterTrigger, tabsProps: headlessTabsProps } = (0, import_tabs_headless.useTabs)({
215
+ value: valueProp,
216
+ onValueChange,
217
+ defaultValue,
218
+ orientation,
219
+ dir,
220
+ activationMode
221
+ });
222
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_size.SizeContext.Provider, {
223
+ size,
224
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_StyledContext.TabsProvider, {
225
+ scope: __scopeTabs,
226
+ baseId,
227
+ value,
228
+ onChange: setValue,
229
+ orientation,
230
+ dir: direction,
231
+ activationMode,
232
+ size,
233
+ registerTrigger,
234
+ triggersCount,
235
+ unregisterTrigger,
236
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsFrame, {
237
+ direction,
238
+ ...headlessTabsProps,
239
+ ...tabsProps,
240
+ ref: forwardedRef
241
+ })
242
+ })
243
+ });
244
+ });
245
+ var Tabs2 = (0, import_helpers.withStaticProperties)(TabsComponent, {
246
+ Frame: TabsFrame,
247
+ List: TabsList,
248
+ Tab: TabsTab,
249
+ Content: TabsContent
250
+ });
@@ -1,86 +1,252 @@
1
1
  "use strict";
2
2
 
3
+
4
+ var __create = Object.create;
3
5
  var __defProp = Object.defineProperty;
4
6
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
7
  var __getOwnPropNames = Object.getOwnPropertyNames;
8
+ var __getProtoOf = Object.getPrototypeOf;
6
9
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
10
  var __export = (target, all) => {
8
- for (var name in all) __defProp(target, name, {
9
- get: all[name],
10
- enumerable: true
11
- });
11
+ for (var name in all) __defProp(target, name, {
12
+ get: all[name],
13
+ enumerable: true
14
+ });
12
15
  };
13
16
  var __copyProps = (to, from, except, desc) => {
14
- if (from && typeof from === "object" || typeof from === "function") {
15
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
16
- get: () => from[key],
17
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
18
- });
19
- }
20
- return to;
17
+ if (from && typeof from === "object" || typeof from === "function") {
18
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
19
+ get: () => from[key],
20
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
21
+ });
22
+ }
23
+ return to;
21
24
  };
22
- var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
23
- value: true
24
- }), mod);
25
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
26
+ value: mod,
27
+ enumerable: true
28
+ }) : target, mod));
29
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
25
30
  var Tabs_exports = {};
26
31
  __export(Tabs_exports, {
27
- DefaultTabsContentFrame: () => DefaultTabsContentFrame,
28
- DefaultTabsFrame: () => DefaultTabsFrame,
29
- DefaultTabsTabFrame: () => DefaultTabsTabFrame
32
+ Tabs: () => Tabs2,
33
+ TabsContent: () => TabsContent,
34
+ TabsContentFrame: () => TabsContentFrame,
35
+ TabsFrame: () => TabsFrame,
36
+ TabsList: () => TabsList,
37
+ TabsListFrame: () => TabsListFrame,
38
+ TabsTab: () => TabsTab,
39
+ TabsTabFrame: () => TabsTabFrame
30
40
  });
31
41
  module.exports = __toCommonJS(Tabs_exports);
42
+ var import_jsx_runtime = require("react/jsx-runtime");
43
+ var import_compose_refs = require("@tamagui/compose-refs");
44
+ var import_constants = require("@tamagui/constants");
32
45
  var import_core = require("@tamagui/core");
33
- var import_get_button_sized = require("@tamagui/get-button-sized");
34
- var import_stacks = require("@tamagui/stacks");
35
- var TABS_NAME = "Tabs";
36
- var DefaultTabsFrame = (0, import_core.styled)(import_stacks.SizableStack, {
37
- name: TABS_NAME
46
+ var import_helpers = require("@tamagui/helpers");
47
+ var import_roving_focus = require("@tamagui/roving-focus");
48
+ var import_size = require("@tamagui/size");
49
+ var import_tabs_headless = require("@tamagui/tabs-headless");
50
+ var import_web = require("@tamagui/web");
51
+ var React = __toESM(require("react"), 1);
52
+ var import_StyledContext = require("./StyledContext.native.js");
53
+ var TABS_CONTEXT = "TabsContext";
54
+ var TabsFrame = (0, import_core.styled)(import_core.View, {
55
+ displayName: "Tabs",
56
+ context: import_size.SizeContext
57
+ });
58
+ var TabsListFrame = (0, import_core.styled)(import_core.View, {
59
+ displayName: "TabsList",
60
+ context: import_size.SizeContext,
61
+ role: "tablist"
62
+ });
63
+ var TabsTabFrame = (0, import_core.styled)(import_core.View, {
64
+ displayName: "TabsTrigger",
65
+ context: import_size.SizeContext,
66
+ role: "tab",
67
+ variants: { disabled: { true: { pointerEvents: "none" } } }
68
+ });
69
+ var TabsContentFrame = (0, import_core.styled)(import_core.View, {
70
+ displayName: "TabsContent",
71
+ context: import_size.SizeContext
38
72
  });
39
- var TRIGGER_NAME = "TabsTrigger";
40
- var DefaultTabsTabFrame = (0, import_core.styled)(import_core.View, {
41
- name: TRIGGER_NAME,
42
- role: "tab",
43
- variants: {
44
- size: {
45
- "...size": import_get_button_sized.getButtonSized
46
- },
47
- disabled: {
48
- true: {
49
- pointerEvents: "none"
50
- }
51
- },
52
- unstyled: {
53
- false: {
54
- borderWidth: 0,
55
- backgroundColor: "$background",
56
- userSelect: "none",
57
- justifyContent: "center",
58
- alignItems: "center",
59
- flexWrap: "nowrap",
60
- flexDirection: "row",
61
- cursor: "pointer",
62
- pressStyle: {
63
- backgroundColor: "$backgroundPress"
64
- },
65
- focusVisibleStyle: {
66
- outlineColor: "$outlineColor",
67
- outlineWidth: 2,
68
- outlineStyle: "solid",
69
- zIndex: 10
70
- }
71
- }
72
- }
73
- },
74
- defaultVariants: {
75
- unstyled: process.env.TAMAGUI_HEADLESS === "1"
76
- }
77
- }, {
78
- accept: {
79
- activeStyle: "style"
80
- }
73
+ var TabsListDisabledContext = /* @__PURE__ */ React.createContext(false);
74
+ var TabsList = (0, import_core.createStyledHOC)(TabsListFrame, function TabsList2(props, forwardedRef) {
75
+ var { __scopeTabs, loop = true, disabled = false, children, ...listProps } = props;
76
+ var context = (0, import_StyledContext.useTabsContext)(__scopeTabs);
77
+ var { listProps: headlessListProps } = (0, import_tabs_headless.useTabsList)({
78
+ orientation: context.orientation,
79
+ disabled
80
+ });
81
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsListDisabledContext.Provider, {
82
+ value: disabled,
83
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_roving_focus.RovingFocusGroup, {
84
+ __scopeRovingFocusGroup: __scopeTabs || TABS_CONTEXT,
85
+ orientation: context.orientation,
86
+ dir: context.dir,
87
+ loop,
88
+ asChild: true,
89
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsListFrame, {
90
+ ...headlessListProps,
91
+ flexDirection: context.orientation === "vertical" ? "column" : "row",
92
+ ref: forwardedRef,
93
+ ...listProps,
94
+ children
95
+ })
96
+ })
97
+ });
81
98
  });
82
- var CONTENT_NAME = "TabsContent";
83
- var DefaultTabsContentFrame = (0, import_core.styled)(import_stacks.ThemeableStack, {
84
- name: CONTENT_NAME
99
+ var TabsTab = (0, import_core.createStyledHOC)(TabsTabFrame, function TabsTab2(props, forwardedRef) {
100
+ var { __scopeTabs, value, disabled: disabledProp, onInteraction, activeStyle, activeTheme, onLayout, onMouseEnter, onMouseLeave, onPress, onKeyDown, onFocus, onBlur, ...triggerProps } = props;
101
+ var context = (0, import_StyledContext.useTabsContext)(__scopeTabs);
102
+ var listDisabled = React.useContext(TabsListDisabledContext);
103
+ var disabled = disabledProp !== null && disabledProp !== void 0 ? disabledProp : listDisabled;
104
+ var { isSelected, tabProps } = (0, import_tabs_headless.useTab)({
105
+ baseId: context.baseId,
106
+ value,
107
+ selectedValue: context.value,
108
+ disabled,
109
+ activationMode: context.activationMode,
110
+ onChange: context.onChange
111
+ });
112
+ var { onPress: activateOnPress, onKeyDown: activateOnKeyDown, onFocus: activateOnFocus, ...tabA11yProps } = tabProps;
113
+ var [layout, setLayout] = React.useState(null);
114
+ var triggerRef = React.useRef(null);
115
+ var emitInteraction = (0, import_web.useEvent)(function(type, layout2) {
116
+ onInteraction === null || onInteraction === void 0 ? void 0 : onInteraction(type, layout2);
117
+ });
118
+ React.useEffect(function() {
119
+ context.registerTrigger();
120
+ return function() {
121
+ return context.unregisterTrigger();
122
+ };
123
+ }, []);
124
+ React.useEffect(function() {
125
+ if (!triggerRef.current || !import_constants.isWeb) return;
126
+ var element = triggerRef.current;
127
+ function updateTriggerSize() {
128
+ var next = {
129
+ width: element.offsetWidth,
130
+ height: element.offsetHeight,
131
+ x: element.offsetLeft,
132
+ y: element.offsetTop
133
+ };
134
+ setLayout(function(previous) {
135
+ return previous && previous.width === next.width && previous.height === next.height && previous.x === next.x && previous.y === next.y ? previous : next;
136
+ });
137
+ }
138
+ updateTriggerSize();
139
+ var observer = new ResizeObserver(updateTriggerSize);
140
+ observer.observe(element);
141
+ return function() {
142
+ return observer.disconnect();
143
+ };
144
+ }, [context.triggersCount]);
145
+ React.useEffect(function() {
146
+ if (isSelected && layout) {
147
+ emitInteraction("select", layout);
148
+ }
149
+ }, [
150
+ emitInteraction,
151
+ isSelected,
152
+ layout
153
+ ]);
154
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_roving_focus.RovingFocusGroup.Item, {
155
+ __scopeRovingFocusGroup: __scopeTabs || TABS_CONTEXT,
156
+ asChild: true,
157
+ tabIndex: disabled ? -1 : 0,
158
+ active: isSelected,
159
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsTabFrame, {
160
+ onLayout: import_constants.isWeb ? onLayout : (0, import_helpers.composeEventHandlers)(onLayout, function(event) {
161
+ setLayout(event.nativeEvent.layout);
162
+ }),
163
+ onMouseEnter: (0, import_helpers.composeEventHandlers)(onMouseEnter, function() {
164
+ if (layout) {
165
+ emitInteraction("hover", layout);
166
+ }
167
+ }),
168
+ onMouseLeave: (0, import_helpers.composeEventHandlers)(onMouseLeave, function() {
169
+ emitInteraction("hover", null);
170
+ }),
171
+ ...tabA11yProps,
172
+ theme: isSelected ? activeTheme !== null && activeTheme !== void 0 ? activeTheme : null : null,
173
+ size: context.size,
174
+ ...triggerProps,
175
+ ...isSelected && activeStyle,
176
+ ref: (0, import_compose_refs.composeRefs)(forwardedRef, triggerRef),
177
+ onPress: (0, import_helpers.composeEventHandlers)(onPress !== null && onPress !== void 0 ? onPress : void 0, activateOnPress),
178
+ ...import_constants.isWeb && {
179
+ onKeyDown: (0, import_helpers.composeEventHandlers)(onKeyDown, activateOnKeyDown),
180
+ onFocus: (0, import_helpers.composeEventHandlers)(onFocus, (0, import_helpers.composeEventHandlers)(function() {
181
+ if (layout) {
182
+ emitInteraction("focus", layout);
183
+ }
184
+ }, activateOnFocus)),
185
+ onBlur: (0, import_helpers.composeEventHandlers)(onBlur, function() {
186
+ emitInteraction("focus", null);
187
+ })
188
+ }
189
+ })
190
+ });
85
191
  });
192
+ var TabsContent = (0, import_core.createStyledHOC)(TabsContentFrame, function TabsContent2(props, forwardedRef) {
193
+ var { __scopeTabs, value, forceMount, children, ...contentProps } = props;
194
+ var context = (0, import_StyledContext.useTabsContext)(__scopeTabs);
195
+ var { shouldMount, contentProps: headlessContentProps } = (0, import_tabs_headless.useTabContent)({
196
+ baseId: context.baseId,
197
+ value,
198
+ selectedValue: context.value,
199
+ orientation: context.orientation,
200
+ forceMount
201
+ });
202
+ if (!shouldMount) {
203
+ return null;
204
+ }
205
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsContentFrame, {
206
+ ...headlessContentProps,
207
+ ...contentProps,
208
+ ref: forwardedRef,
209
+ children
210
+ }, value);
211
+ });
212
+ var TabsComponent = (0, import_core.createStyledHOC)(TabsFrame, function Tabs(props, forwardedRef) {
213
+ var { __scopeTabs, value: valueProp, onValueChange, defaultValue, orientation = "horizontal", dir, activationMode = "automatic", size = true, ...tabsProps } = props;
214
+ var { value, setValue, baseId, direction, triggersCount, registerTrigger, unregisterTrigger, tabsProps: headlessTabsProps } = (0, import_tabs_headless.useTabs)({
215
+ value: valueProp,
216
+ onValueChange,
217
+ defaultValue,
218
+ orientation,
219
+ dir,
220
+ activationMode
221
+ });
222
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_size.SizeContext.Provider, {
223
+ size,
224
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_StyledContext.TabsProvider, {
225
+ scope: __scopeTabs,
226
+ baseId,
227
+ value,
228
+ onChange: setValue,
229
+ orientation,
230
+ dir: direction,
231
+ activationMode,
232
+ size,
233
+ registerTrigger,
234
+ triggersCount,
235
+ unregisterTrigger,
236
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsFrame, {
237
+ direction,
238
+ ...headlessTabsProps,
239
+ ...tabsProps,
240
+ ref: forwardedRef
241
+ })
242
+ })
243
+ });
244
+ });
245
+ var Tabs2 = (0, import_helpers.withStaticProperties)(TabsComponent, {
246
+ Frame: TabsFrame,
247
+ List: TabsList,
248
+ Tab: TabsTab,
249
+ Content: TabsContent
250
+ });
251
+
86
252
  //# sourceMappingURL=Tabs.native.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","Tabs_exports","__export","DefaultTabsContentFrame","DefaultTabsFrame","DefaultTabsTabFrame","module","exports","import_core","require","import_get_button_sized","import_stacks","TABS_NAME","styled","SizableStack","name","TRIGGER_NAME","View","role","variants","size","getButtonSized","disabled","true","pointerEvents","unstyled","false","borderWidth","backgroundColor","userSelect","justifyContent","alignItems","flexWrap","flexDirection","cursor","pressStyle","focusVisibleStyle","outlineColor","outlineWidth","outlineStyle","zIndex","defaultVariants","process","env","TAMAGUI_HEADLESS","accept","activeStyle","CONTENT_NAME","ThemeableStack"],"sources":["../../src/Tabs.tsx"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,YAAA;AAAAC,QAAA,CAAAD,YAAA;EAAAE,uBAAA,EAAAA,CAAA,KAAAA,uBAAA;EAAAC,gBAAA,EAAAA,CAAA,KAAAA,gBAAA;EAAAC,mBAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAX,YAA6B,CAAAK,YAAA;AAC7B,IAAAO,WAAA,GAAAC,OAAA,gBAA+B;AAC/B,IAAAC,uBAA6C,GAAAD,OAAA;AAE7C,IAAAE,aAAM,GAAYF,OAAA;AACX,IAAAG,SAAM;AAAwC,IACnDR,gBAAM,OAAAI,WAAA,CAAAK,MAAA,EAAAF,aAAA,CAAAG,YAAA;EACPC,IAAA,EAAAH;AAED;AAEO,IAAAI,YAAM,gBAAsB;AAAA,IACjCX,mBAAA,OAAAG,WAAA,CAAAK,MAAA,EAAAL,WAAA,CAAAS,IAAA;EACAF,IAAA,EAAAC,YAAA;EAAAE,IACE,OAAM;EAAAC,QACA;IAENC,IAAA;MACE,SAAM,EAAAV,uBAAA,CAAAW;IAAA;IACOC,QACb;MAEAC,IAAA;QACEC,aAAM;MAAA;IACW;IACjBC,QACF;MAEAC,KAAA;QACEC,WAAO;QAAAC,eACQ;QAAAC,UACb;QAAiBC,cACL;QAAAC,UACZ,UAAgB;QAAAC,QAChB,UAAY;QAAAC,aACF;QAAAC,MACV,WAAe;QAAAC,UACP;UAERP,eAAY;QAAA;QACOQ,iBACnB;UAEAC,YAAA,iBAAmB;UAAAC,YACjB;UAAcC,YACd,SAAc;UAAAC,MACd;QAAc;MACN;IACV;EACF;EACFC,eACF;IAEAhB,QAAA,EAAAiB,OAAiB,CAAAC,GAAA,CAAAC,gBAAA;EAAA;AAC4B;EAE/CC,MAAA;IACAC,WAAA;EAAA;AACU;AACO,IACfC,YAAA;AAAA,IACF5C,uBAAA,OAAAK,WAAA,CAAAK,MAAA,EAAAF,aAAA,CAAAqC,cAAA;EACFjC,IAAA,EAAAgC;AAEA","ignoreList":[]}
1
+ {"version":3,"file":"Tabs.native.js","names":[],"sources":["cjs/Tabs.native.js"],"sourcesContent":["\"use strict\";\nvar __create = Object.create;\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __getProtoOf = Object.getPrototypeOf;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(\n // If the importer is in node compatibility mode or this is not an ESM\n // file that has been converted to a CommonJS file using a Babel-\n // compatible transform (i.e. \"__esModule\" has not been set), then set\n // \"default\" to the CommonJS \"module.exports\" for node compatibility.\n isNodeMode || !mod || !mod.__esModule ? __defProp(target, \"default\", { value: mod, enumerable: true }) : target,\n mod\n));\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\nvar Tabs_exports = {};\n__export(Tabs_exports, {\n Tabs: () => Tabs2,\n TabsContent: () => TabsContent,\n TabsContentFrame: () => TabsContentFrame,\n TabsFrame: () => TabsFrame,\n TabsList: () => TabsList,\n TabsListFrame: () => TabsListFrame,\n TabsTab: () => TabsTab,\n TabsTabFrame: () => TabsTabFrame\n});\nmodule.exports = __toCommonJS(Tabs_exports);\nvar import_jsx_runtime = require(\"react/jsx-runtime\");\nvar import_compose_refs = require(\"@tamagui/compose-refs\");\nvar import_constants = require(\"@tamagui/constants\");\nvar import_core = require(\"@tamagui/core\");\nvar import_helpers = require(\"@tamagui/helpers\");\nvar import_roving_focus = require(\"@tamagui/roving-focus\");\nvar import_size = require(\"@tamagui/size\");\nvar import_tabs_headless = require(\"@tamagui/tabs-headless\");\nvar import_web = require(\"@tamagui/web\");\nvar React = __toESM(require(\"react\"), 1);\nvar import_StyledContext = require(\"./StyledContext\");\nvar TABS_CONTEXT = \"TabsContext\";\nvar TabsFrame = (0, import_core.styled)(import_core.View, {\n displayName: \"Tabs\",\n context: import_size.SizeContext\n});\nvar TabsListFrame = (0, import_core.styled)(import_core.View, {\n displayName: \"TabsList\",\n context: import_size.SizeContext,\n role: \"tablist\"\n});\nvar TabsTabFrame = (0, import_core.styled)(import_core.View, {\n displayName: \"TabsTrigger\",\n context: import_size.SizeContext,\n role: \"tab\",\n variants: {\n disabled: {\n true: {\n pointerEvents: \"none\"\n }\n }\n }\n});\nvar TabsContentFrame = (0, import_core.styled)(import_core.View, {\n displayName: \"TabsContent\",\n context: import_size.SizeContext\n});\nvar TabsListDisabledContext = /* @__PURE__ */ React.createContext(false);\nvar TabsList = (0, import_core.createStyledHOC)(TabsListFrame, function TabsList2(props, forwardedRef) {\n var { __scopeTabs, loop = true, disabled = false, children, ...listProps } = props;\n var context = (0, import_StyledContext.useTabsContext)(__scopeTabs);\n var { listProps: headlessListProps } = (0, import_tabs_headless.useTabsList)({\n orientation: context.orientation,\n disabled\n });\n return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsListDisabledContext.Provider, {\n value: disabled,\n children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_roving_focus.RovingFocusGroup, {\n __scopeRovingFocusGroup: __scopeTabs || TABS_CONTEXT,\n orientation: context.orientation,\n dir: context.dir,\n loop,\n asChild: true,\n children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsListFrame, {\n ...headlessListProps,\n flexDirection: context.orientation === \"vertical\" ? \"column\" : \"row\",\n ref: forwardedRef,\n ...listProps,\n children\n })\n })\n });\n});\nvar TabsTab = (0, import_core.createStyledHOC)(TabsTabFrame, function TabsTab2(props, forwardedRef) {\n var { __scopeTabs, value, disabled: disabledProp, onInteraction, activeStyle, activeTheme, onLayout, onMouseEnter, onMouseLeave, onPress, onKeyDown, onFocus, onBlur, ...triggerProps } = props;\n var context = (0, import_StyledContext.useTabsContext)(__scopeTabs);\n var listDisabled = React.useContext(TabsListDisabledContext);\n var disabled = disabledProp !== null && disabledProp !== void 0 ? disabledProp : listDisabled;\n var { isSelected, tabProps } = (0, import_tabs_headless.useTab)({\n baseId: context.baseId,\n value,\n selectedValue: context.value,\n disabled,\n activationMode: context.activationMode,\n onChange: context.onChange\n });\n var { onPress: activateOnPress, onKeyDown: activateOnKeyDown, onFocus: activateOnFocus, ...tabA11yProps } = tabProps;\n var [layout, setLayout] = React.useState(null);\n var triggerRef = React.useRef(null);\n var emitInteraction = (0, import_web.useEvent)(function(type, layout2) {\n onInteraction === null || onInteraction === void 0 ? void 0 : onInteraction(type, layout2);\n });\n React.useEffect(function() {\n context.registerTrigger();\n return function() {\n return context.unregisterTrigger();\n };\n }, []);\n React.useEffect(function() {\n if (!triggerRef.current || !import_constants.isWeb) return;\n var element = triggerRef.current;\n function updateTriggerSize() {\n var next = {\n width: element.offsetWidth,\n height: element.offsetHeight,\n x: element.offsetLeft,\n y: element.offsetTop\n };\n setLayout(function(previous) {\n return previous && previous.width === next.width && previous.height === next.height && previous.x === next.x && previous.y === next.y ? previous : next;\n });\n }\n updateTriggerSize();\n var observer = new ResizeObserver(updateTriggerSize);\n observer.observe(element);\n return function() {\n return observer.disconnect();\n };\n }, [\n context.triggersCount\n ]);\n React.useEffect(function() {\n if (isSelected && layout) {\n emitInteraction(\"select\", layout);\n }\n }, [\n emitInteraction,\n isSelected,\n layout\n ]);\n return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_roving_focus.RovingFocusGroup.Item, {\n __scopeRovingFocusGroup: __scopeTabs || TABS_CONTEXT,\n asChild: true,\n tabIndex: disabled ? -1 : 0,\n active: isSelected,\n children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsTabFrame, {\n onLayout: import_constants.isWeb ? onLayout : (0, import_helpers.composeEventHandlers)(onLayout, function(event) {\n setLayout(event.nativeEvent.layout);\n }),\n onMouseEnter: (0, import_helpers.composeEventHandlers)(onMouseEnter, function() {\n if (layout) {\n emitInteraction(\"hover\", layout);\n }\n }),\n onMouseLeave: (0, import_helpers.composeEventHandlers)(onMouseLeave, function() {\n emitInteraction(\"hover\", null);\n }),\n ...tabA11yProps,\n theme: isSelected ? activeTheme !== null && activeTheme !== void 0 ? activeTheme : null : null,\n size: context.size,\n ...triggerProps,\n // after triggerProps so active styles beat base styles from styled() skins\n ...isSelected && activeStyle,\n ref: (0, import_compose_refs.composeRefs)(forwardedRef, triggerRef),\n onPress: (0, import_helpers.composeEventHandlers)(onPress !== null && onPress !== void 0 ? onPress : void 0, activateOnPress),\n ...import_constants.isWeb && {\n onKeyDown: (0, import_helpers.composeEventHandlers)(onKeyDown, activateOnKeyDown),\n // emit the focus interaction before activating, matching the order\n // the indicator animations were built against\n onFocus: (0, import_helpers.composeEventHandlers)(onFocus, (0, import_helpers.composeEventHandlers)(function() {\n if (layout) {\n emitInteraction(\"focus\", layout);\n }\n }, activateOnFocus)),\n onBlur: (0, import_helpers.composeEventHandlers)(onBlur, function() {\n emitInteraction(\"focus\", null);\n })\n }\n })\n });\n});\nvar TabsContent = (0, import_core.createStyledHOC)(TabsContentFrame, function TabsContent2(props, forwardedRef) {\n var { __scopeTabs, value, forceMount, children, ...contentProps } = props;\n var context = (0, import_StyledContext.useTabsContext)(__scopeTabs);\n var { shouldMount, contentProps: headlessContentProps } = (0, import_tabs_headless.useTabContent)({\n baseId: context.baseId,\n value,\n selectedValue: context.value,\n orientation: context.orientation,\n forceMount\n });\n if (!shouldMount) {\n return null;\n }\n return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsContentFrame, {\n // @ts-ignore hidden is a web-only accessibility attribute\n ...headlessContentProps,\n ...contentProps,\n ref: forwardedRef,\n children\n }, value);\n});\nvar TabsComponent = (0, import_core.createStyledHOC)(TabsFrame, function Tabs(props, forwardedRef) {\n var { __scopeTabs, value: valueProp, onValueChange, defaultValue, orientation = \"horizontal\", dir, activationMode = \"automatic\", size = true, ...tabsProps } = props;\n var { value, setValue, baseId, direction, triggersCount, registerTrigger, unregisterTrigger, tabsProps: headlessTabsProps } = (0, import_tabs_headless.useTabs)({\n value: valueProp,\n onValueChange,\n defaultValue,\n orientation,\n dir,\n activationMode\n });\n return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_size.SizeContext.Provider, {\n size,\n children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_StyledContext.TabsProvider, {\n scope: __scopeTabs,\n baseId,\n value,\n onChange: setValue,\n orientation,\n dir: direction,\n activationMode,\n size,\n registerTrigger,\n triggersCount,\n unregisterTrigger,\n children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TabsFrame, {\n direction,\n ...headlessTabsProps,\n ...tabsProps,\n ref: forwardedRef\n })\n })\n });\n});\nvar Tabs2 = (0, import_helpers.withStaticProperties)(TabsComponent, {\n Frame: TabsFrame,\n List: TabsList,\n Tab: TabsTab,\n Content: TabsContent\n});\n//# sourceMappingURL=Tabs.js.map\n"],"mappings":"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"}
@@ -1,37 +1,20 @@
1
+
1
2
  var __defProp = Object.defineProperty;
2
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
5
  var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all) __defProp(target, name, {
7
- get: all[name],
8
- enumerable: true
9
- });
10
- };
11
6
  var __copyProps = (to, from, except, desc) => {
12
- if (from && typeof from === "object" || typeof from === "function") {
13
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
14
- get: () => from[key],
15
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
16
- });
17
- }
18
- return to;
7
+ if (from && typeof from === "object" || typeof from === "function") {
8
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
9
+ get: () => from[key],
10
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
11
+ });
12
+ }
13
+ return to;
19
14
  };
20
15
  var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
21
- var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
22
- value: true
23
- }), mod);
16
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
24
17
  var index_exports = {};
25
- __export(index_exports, {
26
- Tabs: () => Tabs
27
- });
28
18
  module.exports = __toCommonJS(index_exports);
29
- var import_createTabs = require("./createTabs.cjs");
30
- var import_Tabs = require("./Tabs.cjs");
31
- __reExport(index_exports, require("./createTabs.cjs"), module.exports);
32
19
  __reExport(index_exports, require("./StyledContext.cjs"), module.exports);
33
- const Tabs = (0, import_createTabs.createTabs)({
34
- ContentFrame: import_Tabs.DefaultTabsContentFrame,
35
- TabFrame: import_Tabs.DefaultTabsTabFrame,
36
- TabsFrame: import_Tabs.DefaultTabsFrame
37
- });
20
+ __reExport(index_exports, require("./Tabs.cjs"), module.exports);