@tamagui/roving-focus 1.110.5 → 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/cjs/RovingFocusGroup.native.js +10 -64
- package/dist/cjs/RovingFocusGroup.native.js.map +1 -1
- package/dist/esm/RovingFocusGroup.native.js +10 -63
- package/dist/esm/RovingFocusGroup.native.js.map +1 -1
- package/dist/esm/RovingFocusGroup.native.mjs +37 -0
- package/dist/esm/RovingFocusGroup.native.mjs.map +1 -0
- package/dist/esm/index.native.mjs +2 -0
- package/dist/esm/index.native.mjs.map +1 -0
- package/dist/jsx/RovingFocusGroup.native.js +10 -63
- package/dist/jsx/RovingFocusGroup.native.js.map +1 -1
- package/package.json +11 -11
|
@@ -27,74 +27,20 @@ __export(RovingFocusGroup_native_exports, {
|
|
|
27
27
|
createRovingFocusGroupScope: () => createRovingFocusGroupScope
|
|
28
28
|
});
|
|
29
29
|
module.exports = __toCommonJS(RovingFocusGroup_native_exports);
|
|
30
|
-
var import_jsx_runtime = require("react/jsx-runtime"), import_core = require("@tamagui/core"), import_helpers = require("@tamagui/helpers"), import_react = __toESM(require("react"))
|
|
31
|
-
|
|
32
|
-
return
|
|
33
|
-
|
|
34
|
-
enumerable: !0,
|
|
35
|
-
configurable: !0,
|
|
36
|
-
writable: !0
|
|
37
|
-
}) : obj[key] = value, obj;
|
|
38
|
-
}
|
|
39
|
-
function _object_spread(target) {
|
|
40
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
41
|
-
var source = arguments[i] != null ? arguments[i] : {}, ownKeys2 = Object.keys(source);
|
|
42
|
-
typeof Object.getOwnPropertySymbols == "function" && (ownKeys2 = ownKeys2.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
43
|
-
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
44
|
-
}))), ownKeys2.forEach(function(key) {
|
|
45
|
-
_define_property(target, key, source[key]);
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
return target;
|
|
49
|
-
}
|
|
50
|
-
function ownKeys(object, enumerableOnly) {
|
|
51
|
-
var keys = Object.keys(object);
|
|
52
|
-
if (Object.getOwnPropertySymbols) {
|
|
53
|
-
var symbols = Object.getOwnPropertySymbols(object);
|
|
54
|
-
enumerableOnly && (symbols = symbols.filter(function(sym) {
|
|
55
|
-
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
56
|
-
})), keys.push.apply(keys, symbols);
|
|
57
|
-
}
|
|
58
|
-
return keys;
|
|
59
|
-
}
|
|
60
|
-
function _object_spread_props(target, source) {
|
|
61
|
-
return source = source ?? {}, Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function(key) {
|
|
62
|
-
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
63
|
-
}), target;
|
|
64
|
-
}
|
|
65
|
-
function _object_without_properties(source, excluded) {
|
|
66
|
-
if (source == null) return {};
|
|
67
|
-
var target = _object_without_properties_loose(source, excluded), key, i;
|
|
68
|
-
if (Object.getOwnPropertySymbols) {
|
|
69
|
-
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
70
|
-
for (i = 0; i < sourceSymbolKeys.length; i++)
|
|
71
|
-
key = sourceSymbolKeys[i], !(excluded.indexOf(key) >= 0) && Object.prototype.propertyIsEnumerable.call(source, key) && (target[key] = source[key]);
|
|
72
|
-
}
|
|
73
|
-
return target;
|
|
74
|
-
}
|
|
75
|
-
function _object_without_properties_loose(source, excluded) {
|
|
76
|
-
if (source == null) return {};
|
|
77
|
-
var target = {}, sourceKeys = Object.keys(source), key, i;
|
|
78
|
-
for (i = 0; i < sourceKeys.length; i++)
|
|
79
|
-
key = sourceKeys[i], !(excluded.indexOf(key) >= 0) && (target[key] = source[key]);
|
|
80
|
-
return target;
|
|
81
|
-
}
|
|
82
|
-
var ITEM_NAME = "RovingFocusGroupItem", RovingFocusGroupItem = /* @__PURE__ */ import_react.default.forwardRef(function(_param, _ref) {
|
|
83
|
-
var children = _param.children, props = _object_without_properties(_param, [
|
|
84
|
-
"children"
|
|
85
|
-
]);
|
|
86
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_core.Stack, _object_spread_props(_object_spread({}, props), {
|
|
30
|
+
var import_jsx_runtime = require("react/jsx-runtime"), import_core = require("@tamagui/core"), import_helpers = require("@tamagui/helpers"), import_react = __toESM(require("react")), ITEM_NAME = "RovingFocusGroupItem", RovingFocusGroupItem = /* @__PURE__ */ import_react.default.forwardRef(function(param, _ref) {
|
|
31
|
+
var { children, ...props } = param;
|
|
32
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_core.Stack, {
|
|
33
|
+
...props,
|
|
87
34
|
children
|
|
88
|
-
})
|
|
35
|
+
});
|
|
89
36
|
});
|
|
90
37
|
RovingFocusGroupItem.displayName = ITEM_NAME;
|
|
91
|
-
var GROUP_NAME = "RovingFocusGroup", RovingFocusGroup = (0, import_helpers.withStaticProperties)(/* @__PURE__ */ import_react.default.forwardRef(function(
|
|
92
|
-
var
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_core.Stack, _object_spread_props(_object_spread({}, props), {
|
|
38
|
+
var GROUP_NAME = "RovingFocusGroup", RovingFocusGroup = (0, import_helpers.withStaticProperties)(/* @__PURE__ */ import_react.default.forwardRef(function(param, _ref) {
|
|
39
|
+
var { children, ...props } = param;
|
|
40
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_core.Stack, {
|
|
41
|
+
...props,
|
|
96
42
|
children
|
|
97
|
-
})
|
|
43
|
+
});
|
|
98
44
|
}), {
|
|
99
45
|
Item: RovingFocusGroupItem
|
|
100
46
|
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Users/n8/tamagui/code/ui/roving-focus/src/RovingFocusGroup.native.tsx"],
|
|
4
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;uDAAA,cAAsB,0BACtB,iBAAqC,6BACrC,eAAkB
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;uDAAA,cAAsB,0BACtB,iBAAqC,6BACrC,eAAkB,2BAMZA,YAAY,wBACZC,uBAAuBC,6BAAAA,QAAMC,WACjC,SAAA,OAA+CC,MAAAA;MAA9C,EAAEC,UAAU,GAAGC,MAAAA,IAA6B;SAC3C,uCAAAC,KAACC,mBAAAA;IAAO,GAAGF;;;;AAGfL,qBAAqBQ,cAAcT;AACnC,IAAMU,aAAa,oBAEbC,uBAAmBC,qCACvBV,6BAAAA,QAAMC,WAAW,SAAA,OAAgDC,MAAAA;MAA/C,EAAEC,UAAU,GAAGC,MAAAA,IAA8B;SAC7D,uCAAAC,KAACC,mBAAAA;IAAO,GAAGF;;;IAEb;EACEO,MAAMZ;AACR,CAAA;AAGFU,iBAAiBF,cAAcC;AAE/B,IAAMI,8BAA8B,WAAA;SAAM,WAAA;WAAO,CAAC;;;",
|
|
5
5
|
"names": ["ITEM_NAME", "RovingFocusGroupItem", "React", "forwardRef", "_ref", "children", "props", "_jsx", "Stack", "displayName", "GROUP_NAME", "RovingFocusGroup", "withStaticProperties", "Item", "createRovingFocusGroupScope"]
|
|
6
6
|
}
|
|
@@ -2,73 +2,20 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { Stack } from "@tamagui/core";
|
|
3
3
|
import { withStaticProperties } from "@tamagui/helpers";
|
|
4
4
|
import React from "react";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
configurable: !0,
|
|
10
|
-
writable: !0
|
|
11
|
-
}) : obj[key] = value, obj;
|
|
12
|
-
}
|
|
13
|
-
function _object_spread(target) {
|
|
14
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
15
|
-
var source = arguments[i] != null ? arguments[i] : {}, ownKeys2 = Object.keys(source);
|
|
16
|
-
typeof Object.getOwnPropertySymbols == "function" && (ownKeys2 = ownKeys2.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
17
|
-
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
18
|
-
}))), ownKeys2.forEach(function(key) {
|
|
19
|
-
_define_property(target, key, source[key]);
|
|
20
|
-
});
|
|
21
|
-
}
|
|
22
|
-
return target;
|
|
23
|
-
}
|
|
24
|
-
function ownKeys(object, enumerableOnly) {
|
|
25
|
-
var keys = Object.keys(object);
|
|
26
|
-
if (Object.getOwnPropertySymbols) {
|
|
27
|
-
var symbols = Object.getOwnPropertySymbols(object);
|
|
28
|
-
enumerableOnly && (symbols = symbols.filter(function(sym) {
|
|
29
|
-
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
30
|
-
})), keys.push.apply(keys, symbols);
|
|
31
|
-
}
|
|
32
|
-
return keys;
|
|
33
|
-
}
|
|
34
|
-
function _object_spread_props(target, source) {
|
|
35
|
-
return source = source ?? {}, Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function(key) {
|
|
36
|
-
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
37
|
-
}), target;
|
|
38
|
-
}
|
|
39
|
-
function _object_without_properties(source, excluded) {
|
|
40
|
-
if (source == null) return {};
|
|
41
|
-
var target = _object_without_properties_loose(source, excluded), key, i;
|
|
42
|
-
if (Object.getOwnPropertySymbols) {
|
|
43
|
-
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
44
|
-
for (i = 0; i < sourceSymbolKeys.length; i++)
|
|
45
|
-
key = sourceSymbolKeys[i], !(excluded.indexOf(key) >= 0) && Object.prototype.propertyIsEnumerable.call(source, key) && (target[key] = source[key]);
|
|
46
|
-
}
|
|
47
|
-
return target;
|
|
48
|
-
}
|
|
49
|
-
function _object_without_properties_loose(source, excluded) {
|
|
50
|
-
if (source == null) return {};
|
|
51
|
-
var target = {}, sourceKeys = Object.keys(source), key, i;
|
|
52
|
-
for (i = 0; i < sourceKeys.length; i++)
|
|
53
|
-
key = sourceKeys[i], !(excluded.indexOf(key) >= 0) && (target[key] = source[key]);
|
|
54
|
-
return target;
|
|
55
|
-
}
|
|
56
|
-
var ITEM_NAME = "RovingFocusGroupItem", RovingFocusGroupItem = /* @__PURE__ */ React.forwardRef(function(_param, _ref) {
|
|
57
|
-
var children = _param.children, props = _object_without_properties(_param, [
|
|
58
|
-
"children"
|
|
59
|
-
]);
|
|
60
|
-
return /* @__PURE__ */ _jsx(Stack, _object_spread_props(_object_spread({}, props), {
|
|
5
|
+
var ITEM_NAME = "RovingFocusGroupItem", RovingFocusGroupItem = /* @__PURE__ */ React.forwardRef(function(param, _ref) {
|
|
6
|
+
var { children, ...props } = param;
|
|
7
|
+
return /* @__PURE__ */ _jsx(Stack, {
|
|
8
|
+
...props,
|
|
61
9
|
children
|
|
62
|
-
})
|
|
10
|
+
});
|
|
63
11
|
});
|
|
64
12
|
RovingFocusGroupItem.displayName = ITEM_NAME;
|
|
65
|
-
var GROUP_NAME = "RovingFocusGroup", RovingFocusGroup = withStaticProperties(/* @__PURE__ */ React.forwardRef(function(
|
|
66
|
-
var
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
return /* @__PURE__ */ _jsx(Stack, _object_spread_props(_object_spread({}, props), {
|
|
13
|
+
var GROUP_NAME = "RovingFocusGroup", RovingFocusGroup = withStaticProperties(/* @__PURE__ */ React.forwardRef(function(param, _ref) {
|
|
14
|
+
var { children, ...props } = param;
|
|
15
|
+
return /* @__PURE__ */ _jsx(Stack, {
|
|
16
|
+
...props,
|
|
70
17
|
children
|
|
71
|
-
})
|
|
18
|
+
});
|
|
72
19
|
}), {
|
|
73
20
|
Item: RovingFocusGroupItem
|
|
74
21
|
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Users/n8/tamagui/code/ui/roving-focus/src/RovingFocusGroup.native.tsx"],
|
|
4
|
-
"mappings": ";AAAA,SAASA,aAAa;AACtB,SAASC,4BAA4B;AACrC,OAAOC,WAAW
|
|
4
|
+
"mappings": ";AAAA,SAASA,aAAa;AACtB,SAASC,4BAA4B;AACrC,OAAOC,WAAW;AAMlB,IAAMC,YAAY,wBACZC,uBAAuBF,sBAAMG,WACjC,SAAA,OAA+CC,MAAAA;MAA9C,EAAEC,UAAU,GAAGC,MAAAA,IAA6B;SAC3C,qBAACR,OAAAA;IAAO,GAAGQ;;;;AAGfJ,qBAAqBK,cAAcN;AACnC,IAAMO,aAAa,oBAEbC,mBAAmBV,qBACvBC,sBAAMG,WAAW,SAAA,OAAgDC,MAAAA;MAA/C,EAAEC,UAAU,GAAGC,MAAAA,IAA8B;SAC7D,qBAACR,OAAAA;IAAO,GAAGQ;;;IAEb;EACEI,MAAMR;AACR,CAAA;AAGFO,iBAAiBF,cAAcC;AAE/B,IAAMG,8BAA8B,WAAA;SAAM,WAAA;WAAO,CAAC;;;",
|
|
5
5
|
"names": ["Stack", "withStaticProperties", "React", "ITEM_NAME", "RovingFocusGroupItem", "forwardRef", "_ref", "children", "props", "displayName", "GROUP_NAME", "RovingFocusGroup", "Item", "createRovingFocusGroupScope"]
|
|
6
6
|
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Stack } from "@tamagui/core";
|
|
3
|
+
import { withStaticProperties } from "@tamagui/helpers";
|
|
4
|
+
import React from "react";
|
|
5
|
+
var ITEM_NAME = "RovingFocusGroupItem",
|
|
6
|
+
RovingFocusGroupItem = /* @__PURE__ */React.forwardRef(function (param, _ref) {
|
|
7
|
+
var {
|
|
8
|
+
children,
|
|
9
|
+
...props
|
|
10
|
+
} = param;
|
|
11
|
+
return /* @__PURE__ */_jsx(Stack, {
|
|
12
|
+
...props,
|
|
13
|
+
children
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
RovingFocusGroupItem.displayName = ITEM_NAME;
|
|
17
|
+
var GROUP_NAME = "RovingFocusGroup",
|
|
18
|
+
RovingFocusGroup = withStaticProperties(/* @__PURE__ */React.forwardRef(function (param, _ref) {
|
|
19
|
+
var {
|
|
20
|
+
children,
|
|
21
|
+
...props
|
|
22
|
+
} = param;
|
|
23
|
+
return /* @__PURE__ */_jsx(Stack, {
|
|
24
|
+
...props,
|
|
25
|
+
children
|
|
26
|
+
});
|
|
27
|
+
}), {
|
|
28
|
+
Item: RovingFocusGroupItem
|
|
29
|
+
});
|
|
30
|
+
RovingFocusGroup.displayName = GROUP_NAME;
|
|
31
|
+
var createRovingFocusGroupScope = function () {
|
|
32
|
+
return function () {
|
|
33
|
+
return {};
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
export { RovingFocusGroup, createRovingFocusGroupScope };
|
|
37
|
+
//# sourceMappingURL=RovingFocusGroup.native.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Stack","withStaticProperties","React","ITEM_NAME","RovingFocusGroupItem","forwardRef","param","_ref","children","props","_jsx","displayName","GROUP_NAME","RovingFocusGroup","Item","createRovingFocusGroupScope"],"sources":["../../src/Users/n8/tamagui/code/ui/roving-focus/src/RovingFocusGroup.native.tsx"],"sourcesContent":[null],"mappings":";AAAA,SAASA,KAAA,QAAa;AACtB,SAASC,oBAAA,QAA4B;AACrC,OAAOC,KAAA,MAAW;AAMlB,IAAMC,SAAA,GAAY;EACZC,oBAAA,GAAuB,eAAAF,KAAA,CAAMG,UAAA,CACjC,UAAAC,KAAA,EAA+CC,IAAA;QAA9C;MAAEC,QAAA;MAAU,GAAGC;IAAA,IAA6BH,KAAA;WAC3C,eAAAI,IAAA,CAACV,KAAA;MAAO,GAAGS,KAAA;;;;AAGfL,oBAAA,CAAqBO,WAAA,GAAcR,SAAA;AACnC,IAAMS,UAAA,GAAa;EAEbC,gBAAA,GAAmBZ,oBAAA,CACvB,eAAAC,KAAA,CAAMG,UAAA,CAAW,UAAAC,KAAA,EAAgDC,IAAA;QAA/C;MAAEC,QAAA;MAAU,GAAGC;IAAA,IAA8BH,KAAA;WAC7D,eAAAI,IAAA,CAACV,KAAA;MAAO,GAAGS,KAAA;;;MAEb;IACEK,IAAA,EAAMV;EACR;AAGFS,gBAAA,CAAiBF,WAAA,GAAcC,UAAA;AAE/B,IAAMG,2BAAA,GAA8B,SAAAA,CAAA;SAAM;WAAO,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,cAAc","ignoreList":[]}
|
|
@@ -2,73 +2,20 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { Stack } from "@tamagui/core";
|
|
3
3
|
import { withStaticProperties } from "@tamagui/helpers";
|
|
4
4
|
import React from "react";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
configurable: !0,
|
|
10
|
-
writable: !0
|
|
11
|
-
}) : obj[key] = value, obj;
|
|
12
|
-
}
|
|
13
|
-
function _object_spread(target) {
|
|
14
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
15
|
-
var source = arguments[i] != null ? arguments[i] : {}, ownKeys2 = Object.keys(source);
|
|
16
|
-
typeof Object.getOwnPropertySymbols == "function" && (ownKeys2 = ownKeys2.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
17
|
-
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
18
|
-
}))), ownKeys2.forEach(function(key) {
|
|
19
|
-
_define_property(target, key, source[key]);
|
|
20
|
-
});
|
|
21
|
-
}
|
|
22
|
-
return target;
|
|
23
|
-
}
|
|
24
|
-
function ownKeys(object, enumerableOnly) {
|
|
25
|
-
var keys = Object.keys(object);
|
|
26
|
-
if (Object.getOwnPropertySymbols) {
|
|
27
|
-
var symbols = Object.getOwnPropertySymbols(object);
|
|
28
|
-
enumerableOnly && (symbols = symbols.filter(function(sym) {
|
|
29
|
-
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
30
|
-
})), keys.push.apply(keys, symbols);
|
|
31
|
-
}
|
|
32
|
-
return keys;
|
|
33
|
-
}
|
|
34
|
-
function _object_spread_props(target, source) {
|
|
35
|
-
return source = source ?? {}, Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function(key) {
|
|
36
|
-
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
37
|
-
}), target;
|
|
38
|
-
}
|
|
39
|
-
function _object_without_properties(source, excluded) {
|
|
40
|
-
if (source == null) return {};
|
|
41
|
-
var target = _object_without_properties_loose(source, excluded), key, i;
|
|
42
|
-
if (Object.getOwnPropertySymbols) {
|
|
43
|
-
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
44
|
-
for (i = 0; i < sourceSymbolKeys.length; i++)
|
|
45
|
-
key = sourceSymbolKeys[i], !(excluded.indexOf(key) >= 0) && Object.prototype.propertyIsEnumerable.call(source, key) && (target[key] = source[key]);
|
|
46
|
-
}
|
|
47
|
-
return target;
|
|
48
|
-
}
|
|
49
|
-
function _object_without_properties_loose(source, excluded) {
|
|
50
|
-
if (source == null) return {};
|
|
51
|
-
var target = {}, sourceKeys = Object.keys(source), key, i;
|
|
52
|
-
for (i = 0; i < sourceKeys.length; i++)
|
|
53
|
-
key = sourceKeys[i], !(excluded.indexOf(key) >= 0) && (target[key] = source[key]);
|
|
54
|
-
return target;
|
|
55
|
-
}
|
|
56
|
-
var ITEM_NAME = "RovingFocusGroupItem", RovingFocusGroupItem = /* @__PURE__ */ React.forwardRef(function(_param, _ref) {
|
|
57
|
-
var children = _param.children, props = _object_without_properties(_param, [
|
|
58
|
-
"children"
|
|
59
|
-
]);
|
|
60
|
-
return /* @__PURE__ */ _jsx(Stack, _object_spread_props(_object_spread({}, props), {
|
|
5
|
+
var ITEM_NAME = "RovingFocusGroupItem", RovingFocusGroupItem = /* @__PURE__ */ React.forwardRef(function(param, _ref) {
|
|
6
|
+
var { children, ...props } = param;
|
|
7
|
+
return /* @__PURE__ */ _jsx(Stack, {
|
|
8
|
+
...props,
|
|
61
9
|
children
|
|
62
|
-
})
|
|
10
|
+
});
|
|
63
11
|
});
|
|
64
12
|
RovingFocusGroupItem.displayName = ITEM_NAME;
|
|
65
|
-
var GROUP_NAME = "RovingFocusGroup", RovingFocusGroup = withStaticProperties(/* @__PURE__ */ React.forwardRef(function(
|
|
66
|
-
var
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
return /* @__PURE__ */ _jsx(Stack, _object_spread_props(_object_spread({}, props), {
|
|
13
|
+
var GROUP_NAME = "RovingFocusGroup", RovingFocusGroup = withStaticProperties(/* @__PURE__ */ React.forwardRef(function(param, _ref) {
|
|
14
|
+
var { children, ...props } = param;
|
|
15
|
+
return /* @__PURE__ */ _jsx(Stack, {
|
|
16
|
+
...props,
|
|
70
17
|
children
|
|
71
|
-
})
|
|
18
|
+
});
|
|
72
19
|
}), {
|
|
73
20
|
Item: RovingFocusGroupItem
|
|
74
21
|
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Users/n8/tamagui/code/ui/roving-focus/src/RovingFocusGroup.native.tsx"],
|
|
4
|
-
"mappings": ";AAAA,SAASA,aAAa;AACtB,SAASC,4BAA4B;AACrC,OAAOC,WAAW
|
|
4
|
+
"mappings": ";AAAA,SAASA,aAAa;AACtB,SAASC,4BAA4B;AACrC,OAAOC,WAAW;AAMlB,IAAMC,YAAY,wBACZC,uBAAuBF,sBAAMG,WACjC,SAAA,OAA+CC,MAAAA;MAA9C,EAAEC,UAAU,GAAGC,MAAAA,IAA6B;SAC3C,qBAACR,OAAAA;IAAO,GAAGQ;;;;AAGfJ,qBAAqBK,cAAcN;AACnC,IAAMO,aAAa,oBAEbC,mBAAmBV,qBACvBC,sBAAMG,WAAW,SAAA,OAAgDC,MAAAA;MAA/C,EAAEC,UAAU,GAAGC,MAAAA,IAA8B;SAC7D,qBAACR,OAAAA;IAAO,GAAGQ;;;IAEb;EACEI,MAAMR;AACR,CAAA;AAGFO,iBAAiBF,cAAcC;AAE/B,IAAMG,8BAA8B,WAAA;SAAM,WAAA;WAAO,CAAC;;;",
|
|
5
5
|
"names": ["Stack", "withStaticProperties", "React", "ITEM_NAME", "RovingFocusGroupItem", "forwardRef", "_ref", "children", "props", "displayName", "GROUP_NAME", "RovingFocusGroup", "Item", "createRovingFocusGroupScope"]
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/roving-focus",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.111.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@tamagui/collection": "1.
|
|
37
|
-
"@tamagui/compose-refs": "1.
|
|
38
|
-
"@tamagui/constants": "1.
|
|
39
|
-
"@tamagui/core": "1.
|
|
40
|
-
"@tamagui/create-context": "1.
|
|
41
|
-
"@tamagui/helpers": "1.
|
|
42
|
-
"@tamagui/use-controllable-state": "1.
|
|
43
|
-
"@tamagui/use-direction": "1.
|
|
44
|
-
"@tamagui/use-event": "1.
|
|
36
|
+
"@tamagui/collection": "1.111.0",
|
|
37
|
+
"@tamagui/compose-refs": "1.111.0",
|
|
38
|
+
"@tamagui/constants": "1.111.0",
|
|
39
|
+
"@tamagui/core": "1.111.0",
|
|
40
|
+
"@tamagui/create-context": "1.111.0",
|
|
41
|
+
"@tamagui/helpers": "1.111.0",
|
|
42
|
+
"@tamagui/use-controllable-state": "1.111.0",
|
|
43
|
+
"@tamagui/use-direction": "1.111.0",
|
|
44
|
+
"@tamagui/use-event": "1.111.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@tamagui/build": "1.
|
|
47
|
+
"@tamagui/build": "1.111.0",
|
|
48
48
|
"react": "^18.2.0 || ^19.0.0"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|