tamagui 2.3.0 → 2.3.2
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/.turbo/turbo-build.log +2 -2
- package/dist/native.cjs +43 -37
- package/dist/test.cjs +43 -37
- package/package.json +65 -65
package/.turbo/turbo-build.log
CHANGED
package/dist/native.cjs
CHANGED
|
@@ -1021,7 +1021,7 @@ var init_index_native$11 = __esmMin((() => {
|
|
|
1021
1021
|
avoidUpdates = true;
|
|
1022
1022
|
queuedUpdates = /* @__PURE__ */ new Map();
|
|
1023
1023
|
if (ENABLE) {
|
|
1024
|
-
let
|
|
1024
|
+
let ensureRectFetchObserver2 = function() {
|
|
1025
1025
|
if (rectFetchObserver) return rectFetchObserver;
|
|
1026
1026
|
rectFetchObserver = new IntersectionObserver(function(entries) {
|
|
1027
1027
|
lastCallbackDelay = Math.round(performance.now() - rectFetchStartTime);
|
|
@@ -1118,7 +1118,7 @@ var init_index_native$11 = __esmMin((() => {
|
|
|
1118
1118
|
}
|
|
1119
1119
|
}
|
|
1120
1120
|
if (visibleNodes.length > 0) {
|
|
1121
|
-
var io =
|
|
1121
|
+
var io = ensureRectFetchObserver2();
|
|
1122
1122
|
rectFetchStartTime = performance.now();
|
|
1123
1123
|
for (var i = 0; i < visibleNodes.length; i++) io.observe(visibleNodes[i]);
|
|
1124
1124
|
var _iteratorNormalCompletion1 = true, _didIteratorError1 = false, _iteratorError1 = void 0;
|
|
@@ -11932,6 +11932,7 @@ var init_config_native = __esmMin((() => {
|
|
|
11932
11932
|
};
|
|
11933
11933
|
updateConfig = function(key, value) {
|
|
11934
11934
|
var config = getConfigFromGlobalOrLocal();
|
|
11935
|
+
if (!config || !Object.prototype.hasOwnProperty.call(config, key)) return;
|
|
11935
11936
|
Object.assign(config[key], value);
|
|
11936
11937
|
};
|
|
11937
11938
|
getFont = function(name) {
|
|
@@ -14446,25 +14447,28 @@ function expandStyle(key, value) {
|
|
|
14446
14447
|
}
|
|
14447
14448
|
return;
|
|
14448
14449
|
}
|
|
14449
|
-
if (key in
|
|
14450
|
+
if (key in nativeInlineExpansions) return nativeInlineExpansions[key].map(function(k) {
|
|
14451
|
+
return [k, value];
|
|
14452
|
+
});
|
|
14453
|
+
if (key in universalExpansions) return universalExpansions[key].map(function(k) {
|
|
14450
14454
|
return [k, value];
|
|
14451
14455
|
});
|
|
14452
14456
|
if (key in EXPANSIONS) return EXPANSIONS[key].map(function(k) {
|
|
14453
14457
|
return [k, value];
|
|
14454
14458
|
});
|
|
14455
14459
|
}
|
|
14456
|
-
var _loop, resizeModeMap, verticalAlignMap, all, horiz, vert, EXPANSIONS,
|
|
14460
|
+
var _loop, resizeModeMap, verticalAlignMap, all, horiz, vert, EXPANSIONS, universalExpansions, nativeInlineExpansions;
|
|
14457
14461
|
var init_expandStyle_native = __esmMin((() => {
|
|
14458
14462
|
init_index_native$7();
|
|
14459
14463
|
init_config_native();
|
|
14460
14464
|
init_parseBorderShorthand_native();
|
|
14461
14465
|
init_parseOutlineShorthand_native();
|
|
14462
14466
|
init_objectSpread2();
|
|
14463
|
-
_loop = function(
|
|
14467
|
+
_loop = function(parent2) {
|
|
14464
14468
|
var _exec;
|
|
14465
14469
|
var _exec_index;
|
|
14466
|
-
var prefix =
|
|
14467
|
-
EXPANSIONS[
|
|
14470
|
+
var prefix = parent2.slice(0, (_exec_index = (_exec = /[A-Z]/.exec(parent2)) === null || _exec === void 0 ? void 0 : _exec.index) !== null && _exec_index !== void 0 ? _exec_index : parent2.length);
|
|
14471
|
+
EXPANSIONS[parent2] = EXPANSIONS[parent2].map(function(k) {
|
|
14468
14472
|
return `${prefix}${k}`;
|
|
14469
14473
|
});
|
|
14470
14474
|
};
|
|
@@ -14516,52 +14520,54 @@ var init_expandStyle_native = __esmMin((() => {
|
|
|
14516
14520
|
paddingVertical: vert
|
|
14517
14521
|
}, false);
|
|
14518
14522
|
for (var parent in EXPANSIONS) _loop(parent);
|
|
14519
|
-
|
|
14523
|
+
universalExpansions = {
|
|
14524
|
+
inset: [
|
|
14525
|
+
"top",
|
|
14526
|
+
"right",
|
|
14527
|
+
"bottom",
|
|
14528
|
+
"left"
|
|
14529
|
+
],
|
|
14530
|
+
insetBlock: ["top", "bottom"],
|
|
14531
|
+
insetBlockStart: ["top"],
|
|
14532
|
+
insetBlockEnd: ["bottom"],
|
|
14533
|
+
marginBlock: ["marginTop", "marginBottom"],
|
|
14534
|
+
marginBlockStart: ["marginTop"],
|
|
14535
|
+
marginBlockEnd: ["marginBottom"],
|
|
14536
|
+
paddingBlock: ["paddingTop", "paddingBottom"],
|
|
14537
|
+
paddingBlockStart: ["paddingTop"],
|
|
14538
|
+
paddingBlockEnd: ["paddingBottom"],
|
|
14520
14539
|
borderBlockColor: ["borderTopColor", "borderBottomColor"],
|
|
14521
|
-
borderInlineColor: ["borderEndColor", "borderStartColor"],
|
|
14522
14540
|
borderBlockWidth: ["borderTopWidth", "borderBottomWidth"],
|
|
14523
|
-
borderInlineWidth: ["borderEndWidth", "borderStartWidth"],
|
|
14524
14541
|
borderBlockStyle: ["borderTopStyle", "borderBottomStyle"],
|
|
14525
|
-
borderInlineStyle: ["borderEndStyle", "borderStartStyle"],
|
|
14526
14542
|
borderBlockStartColor: ["borderTopColor"],
|
|
14527
14543
|
borderBlockEndColor: ["borderBottomColor"],
|
|
14528
|
-
borderInlineStartColor: ["borderStartColor"],
|
|
14529
|
-
borderInlineEndColor: ["borderEndColor"],
|
|
14530
14544
|
borderBlockStartWidth: ["borderTopWidth"],
|
|
14531
14545
|
borderBlockEndWidth: ["borderBottomWidth"],
|
|
14532
|
-
borderInlineStartWidth: ["borderStartWidth"],
|
|
14533
|
-
borderInlineEndWidth: ["borderEndWidth"],
|
|
14534
14546
|
borderBlockStartStyle: ["borderTopStyle"],
|
|
14535
14547
|
borderBlockEndStyle: ["borderBottomStyle"],
|
|
14548
|
+
minBlockSize: ["minHeight"],
|
|
14549
|
+
maxBlockSize: ["maxHeight"],
|
|
14550
|
+
minInlineSize: ["minWidth"],
|
|
14551
|
+
maxInlineSize: ["maxWidth"],
|
|
14552
|
+
blockSize: ["height"],
|
|
14553
|
+
inlineSize: ["width"]
|
|
14554
|
+
};
|
|
14555
|
+
nativeInlineExpansions = {
|
|
14556
|
+
borderInlineColor: ["borderEndColor", "borderStartColor"],
|
|
14557
|
+
borderInlineWidth: ["borderEndWidth", "borderStartWidth"],
|
|
14558
|
+
borderInlineStyle: ["borderEndStyle", "borderStartStyle"],
|
|
14559
|
+
borderInlineStartColor: ["borderStartColor"],
|
|
14560
|
+
borderInlineEndColor: ["borderEndColor"],
|
|
14561
|
+
borderInlineStartWidth: ["borderStartWidth"],
|
|
14562
|
+
borderInlineEndWidth: ["borderEndWidth"],
|
|
14536
14563
|
borderInlineStartStyle: ["borderStartStyle"],
|
|
14537
14564
|
borderInlineEndStyle: ["borderEndStyle"],
|
|
14538
|
-
marginBlock: ["marginTop", "marginBottom"],
|
|
14539
14565
|
marginInline: ["marginEnd", "marginStart"],
|
|
14540
|
-
paddingBlock: ["paddingTop", "paddingBottom"],
|
|
14541
|
-
paddingInline: ["paddingEnd", "paddingStart"],
|
|
14542
|
-
marginBlockStart: ["marginTop"],
|
|
14543
|
-
marginBlockEnd: ["marginBottom"],
|
|
14544
14566
|
marginInlineStart: ["marginStart"],
|
|
14545
14567
|
marginInlineEnd: ["marginEnd"],
|
|
14546
|
-
|
|
14547
|
-
paddingBlockEnd: ["paddingBottom"],
|
|
14568
|
+
paddingInline: ["paddingEnd", "paddingStart"],
|
|
14548
14569
|
paddingInlineStart: ["paddingStart"],
|
|
14549
14570
|
paddingInlineEnd: ["paddingEnd"],
|
|
14550
|
-
minBlockSize: ["minHeight"],
|
|
14551
|
-
maxBlockSize: ["maxHeight"],
|
|
14552
|
-
minInlineSize: ["minWidth"],
|
|
14553
|
-
maxInlineSize: ["maxWidth"],
|
|
14554
|
-
blockSize: ["height"],
|
|
14555
|
-
inlineSize: ["width"],
|
|
14556
|
-
inset: [
|
|
14557
|
-
"top",
|
|
14558
|
-
"right",
|
|
14559
|
-
"bottom",
|
|
14560
|
-
"left"
|
|
14561
|
-
],
|
|
14562
|
-
insetBlock: ["top", "bottom"],
|
|
14563
|
-
insetBlockStart: ["top"],
|
|
14564
|
-
insetBlockEnd: ["bottom"],
|
|
14565
14571
|
insetInlineStart: ["left"],
|
|
14566
14572
|
insetInlineEnd: ["right"]
|
|
14567
14573
|
};
|
package/dist/test.cjs
CHANGED
|
@@ -1021,7 +1021,7 @@ var init_index_native$11 = __esmMin((() => {
|
|
|
1021
1021
|
avoidUpdates = true;
|
|
1022
1022
|
queuedUpdates = /* @__PURE__ */ new Map();
|
|
1023
1023
|
if (ENABLE) {
|
|
1024
|
-
let
|
|
1024
|
+
let ensureRectFetchObserver2 = function() {
|
|
1025
1025
|
if (rectFetchObserver) return rectFetchObserver;
|
|
1026
1026
|
rectFetchObserver = new IntersectionObserver(function(entries) {
|
|
1027
1027
|
lastCallbackDelay = Math.round(performance.now() - rectFetchStartTime);
|
|
@@ -1118,7 +1118,7 @@ var init_index_native$11 = __esmMin((() => {
|
|
|
1118
1118
|
}
|
|
1119
1119
|
}
|
|
1120
1120
|
if (visibleNodes.length > 0) {
|
|
1121
|
-
var io =
|
|
1121
|
+
var io = ensureRectFetchObserver2();
|
|
1122
1122
|
rectFetchStartTime = performance.now();
|
|
1123
1123
|
for (var i = 0; i < visibleNodes.length; i++) io.observe(visibleNodes[i]);
|
|
1124
1124
|
var _iteratorNormalCompletion1 = true, _didIteratorError1 = false, _iteratorError1 = void 0;
|
|
@@ -12110,6 +12110,7 @@ var init_config_native = __esmMin((() => {
|
|
|
12110
12110
|
};
|
|
12111
12111
|
updateConfig = function(key, value) {
|
|
12112
12112
|
var config = getConfigFromGlobalOrLocal();
|
|
12113
|
+
if (!config || !Object.prototype.hasOwnProperty.call(config, key)) return;
|
|
12113
12114
|
Object.assign(config[key], value);
|
|
12114
12115
|
};
|
|
12115
12116
|
getFont = function(name) {
|
|
@@ -14624,25 +14625,28 @@ function expandStyle(key, value) {
|
|
|
14624
14625
|
}
|
|
14625
14626
|
return;
|
|
14626
14627
|
}
|
|
14627
|
-
if (key in
|
|
14628
|
+
if (key in nativeInlineExpansions) return nativeInlineExpansions[key].map(function(k) {
|
|
14629
|
+
return [k, value];
|
|
14630
|
+
});
|
|
14631
|
+
if (key in universalExpansions) return universalExpansions[key].map(function(k) {
|
|
14628
14632
|
return [k, value];
|
|
14629
14633
|
});
|
|
14630
14634
|
if (key in EXPANSIONS) return EXPANSIONS[key].map(function(k) {
|
|
14631
14635
|
return [k, value];
|
|
14632
14636
|
});
|
|
14633
14637
|
}
|
|
14634
|
-
var _loop, resizeModeMap, verticalAlignMap, all, horiz, vert, EXPANSIONS,
|
|
14638
|
+
var _loop, resizeModeMap, verticalAlignMap, all, horiz, vert, EXPANSIONS, universalExpansions, nativeInlineExpansions;
|
|
14635
14639
|
var init_expandStyle_native = __esmMin((() => {
|
|
14636
14640
|
init_index_native$7();
|
|
14637
14641
|
init_config_native();
|
|
14638
14642
|
init_parseBorderShorthand_native();
|
|
14639
14643
|
init_parseOutlineShorthand_native();
|
|
14640
14644
|
init_objectSpread2();
|
|
14641
|
-
_loop = function(
|
|
14645
|
+
_loop = function(parent2) {
|
|
14642
14646
|
var _exec;
|
|
14643
14647
|
var _exec_index;
|
|
14644
|
-
var prefix =
|
|
14645
|
-
EXPANSIONS[
|
|
14648
|
+
var prefix = parent2.slice(0, (_exec_index = (_exec = /[A-Z]/.exec(parent2)) === null || _exec === void 0 ? void 0 : _exec.index) !== null && _exec_index !== void 0 ? _exec_index : parent2.length);
|
|
14649
|
+
EXPANSIONS[parent2] = EXPANSIONS[parent2].map(function(k) {
|
|
14646
14650
|
return `${prefix}${k}`;
|
|
14647
14651
|
});
|
|
14648
14652
|
};
|
|
@@ -14694,52 +14698,54 @@ var init_expandStyle_native = __esmMin((() => {
|
|
|
14694
14698
|
paddingVertical: vert
|
|
14695
14699
|
}, false);
|
|
14696
14700
|
for (var parent in EXPANSIONS) _loop(parent);
|
|
14697
|
-
|
|
14701
|
+
universalExpansions = {
|
|
14702
|
+
inset: [
|
|
14703
|
+
"top",
|
|
14704
|
+
"right",
|
|
14705
|
+
"bottom",
|
|
14706
|
+
"left"
|
|
14707
|
+
],
|
|
14708
|
+
insetBlock: ["top", "bottom"],
|
|
14709
|
+
insetBlockStart: ["top"],
|
|
14710
|
+
insetBlockEnd: ["bottom"],
|
|
14711
|
+
marginBlock: ["marginTop", "marginBottom"],
|
|
14712
|
+
marginBlockStart: ["marginTop"],
|
|
14713
|
+
marginBlockEnd: ["marginBottom"],
|
|
14714
|
+
paddingBlock: ["paddingTop", "paddingBottom"],
|
|
14715
|
+
paddingBlockStart: ["paddingTop"],
|
|
14716
|
+
paddingBlockEnd: ["paddingBottom"],
|
|
14698
14717
|
borderBlockColor: ["borderTopColor", "borderBottomColor"],
|
|
14699
|
-
borderInlineColor: ["borderEndColor", "borderStartColor"],
|
|
14700
14718
|
borderBlockWidth: ["borderTopWidth", "borderBottomWidth"],
|
|
14701
|
-
borderInlineWidth: ["borderEndWidth", "borderStartWidth"],
|
|
14702
14719
|
borderBlockStyle: ["borderTopStyle", "borderBottomStyle"],
|
|
14703
|
-
borderInlineStyle: ["borderEndStyle", "borderStartStyle"],
|
|
14704
14720
|
borderBlockStartColor: ["borderTopColor"],
|
|
14705
14721
|
borderBlockEndColor: ["borderBottomColor"],
|
|
14706
|
-
borderInlineStartColor: ["borderStartColor"],
|
|
14707
|
-
borderInlineEndColor: ["borderEndColor"],
|
|
14708
14722
|
borderBlockStartWidth: ["borderTopWidth"],
|
|
14709
14723
|
borderBlockEndWidth: ["borderBottomWidth"],
|
|
14710
|
-
borderInlineStartWidth: ["borderStartWidth"],
|
|
14711
|
-
borderInlineEndWidth: ["borderEndWidth"],
|
|
14712
14724
|
borderBlockStartStyle: ["borderTopStyle"],
|
|
14713
14725
|
borderBlockEndStyle: ["borderBottomStyle"],
|
|
14726
|
+
minBlockSize: ["minHeight"],
|
|
14727
|
+
maxBlockSize: ["maxHeight"],
|
|
14728
|
+
minInlineSize: ["minWidth"],
|
|
14729
|
+
maxInlineSize: ["maxWidth"],
|
|
14730
|
+
blockSize: ["height"],
|
|
14731
|
+
inlineSize: ["width"]
|
|
14732
|
+
};
|
|
14733
|
+
nativeInlineExpansions = {
|
|
14734
|
+
borderInlineColor: ["borderEndColor", "borderStartColor"],
|
|
14735
|
+
borderInlineWidth: ["borderEndWidth", "borderStartWidth"],
|
|
14736
|
+
borderInlineStyle: ["borderEndStyle", "borderStartStyle"],
|
|
14737
|
+
borderInlineStartColor: ["borderStartColor"],
|
|
14738
|
+
borderInlineEndColor: ["borderEndColor"],
|
|
14739
|
+
borderInlineStartWidth: ["borderStartWidth"],
|
|
14740
|
+
borderInlineEndWidth: ["borderEndWidth"],
|
|
14714
14741
|
borderInlineStartStyle: ["borderStartStyle"],
|
|
14715
14742
|
borderInlineEndStyle: ["borderEndStyle"],
|
|
14716
|
-
marginBlock: ["marginTop", "marginBottom"],
|
|
14717
14743
|
marginInline: ["marginEnd", "marginStart"],
|
|
14718
|
-
paddingBlock: ["paddingTop", "paddingBottom"],
|
|
14719
|
-
paddingInline: ["paddingEnd", "paddingStart"],
|
|
14720
|
-
marginBlockStart: ["marginTop"],
|
|
14721
|
-
marginBlockEnd: ["marginBottom"],
|
|
14722
14744
|
marginInlineStart: ["marginStart"],
|
|
14723
14745
|
marginInlineEnd: ["marginEnd"],
|
|
14724
|
-
|
|
14725
|
-
paddingBlockEnd: ["paddingBottom"],
|
|
14746
|
+
paddingInline: ["paddingEnd", "paddingStart"],
|
|
14726
14747
|
paddingInlineStart: ["paddingStart"],
|
|
14727
14748
|
paddingInlineEnd: ["paddingEnd"],
|
|
14728
|
-
minBlockSize: ["minHeight"],
|
|
14729
|
-
maxBlockSize: ["maxHeight"],
|
|
14730
|
-
minInlineSize: ["minWidth"],
|
|
14731
|
-
maxInlineSize: ["maxWidth"],
|
|
14732
|
-
blockSize: ["height"],
|
|
14733
|
-
inlineSize: ["width"],
|
|
14734
|
-
inset: [
|
|
14735
|
-
"top",
|
|
14736
|
-
"right",
|
|
14737
|
-
"bottom",
|
|
14738
|
-
"left"
|
|
14739
|
-
],
|
|
14740
|
-
insetBlock: ["top", "bottom"],
|
|
14741
|
-
insetBlockStart: ["top"],
|
|
14742
|
-
insetBlockEnd: ["bottom"],
|
|
14743
14749
|
insetInlineStart: ["left"],
|
|
14744
14750
|
insetInlineEnd: ["right"]
|
|
14745
14751
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tamagui",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.2",
|
|
4
4
|
"gitHead": "a49cc7ea6b93ba384e77a4880ae48ac4a5635c14",
|
|
5
5
|
"description": "Style and UI for React (web and native) meet an optimizing compiler",
|
|
6
6
|
"repository": {
|
|
@@ -77,72 +77,72 @@
|
|
|
77
77
|
"check-circular-deps": "npx madge --circular ./src/index.ts"
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"@tamagui/accordion": "2.3.
|
|
81
|
-
"@tamagui/adapt": "2.3.
|
|
82
|
-
"@tamagui/alert-dialog": "2.3.
|
|
83
|
-
"@tamagui/animate": "2.3.
|
|
84
|
-
"@tamagui/animate-presence": "2.3.
|
|
85
|
-
"@tamagui/avatar": "2.3.
|
|
86
|
-
"@tamagui/button": "2.3.
|
|
87
|
-
"@tamagui/card": "2.3.
|
|
88
|
-
"@tamagui/checkbox": "2.3.
|
|
89
|
-
"@tamagui/collapsible": "2.3.
|
|
90
|
-
"@tamagui/compose-refs": "2.3.
|
|
91
|
-
"@tamagui/constants": "2.3.
|
|
92
|
-
"@tamagui/context-menu": "2.3.
|
|
93
|
-
"@tamagui/core": "2.3.
|
|
94
|
-
"@tamagui/create-context": "2.3.
|
|
95
|
-
"@tamagui/create-menu": "2.3.
|
|
96
|
-
"@tamagui/dialog": "2.3.
|
|
97
|
-
"@tamagui/element": "2.3.
|
|
98
|
-
"@tamagui/elements": "2.3.
|
|
99
|
-
"@tamagui/fake-react-native": "2.3.
|
|
100
|
-
"@tamagui/focusable": "2.3.
|
|
101
|
-
"@tamagui/form": "2.3.
|
|
102
|
-
"@tamagui/get-button-sized": "2.3.
|
|
103
|
-
"@tamagui/get-font-sized": "2.3.
|
|
104
|
-
"@tamagui/get-token": "2.3.
|
|
105
|
-
"@tamagui/group": "2.3.
|
|
106
|
-
"@tamagui/helpers-tamagui": "2.3.
|
|
107
|
-
"@tamagui/image": "2.3.
|
|
108
|
-
"@tamagui/input": "2.3.
|
|
109
|
-
"@tamagui/label": "2.3.
|
|
110
|
-
"@tamagui/linear-gradient": "2.3.
|
|
111
|
-
"@tamagui/list-item": "2.3.
|
|
112
|
-
"@tamagui/menu": "2.3.
|
|
113
|
-
"@tamagui/polyfill-dev": "2.3.
|
|
114
|
-
"@tamagui/popover": "2.3.
|
|
115
|
-
"@tamagui/popper": "2.3.
|
|
116
|
-
"@tamagui/portal": "2.3.
|
|
117
|
-
"@tamagui/progress": "2.3.
|
|
118
|
-
"@tamagui/radio-group": "2.3.
|
|
119
|
-
"@tamagui/react-native-media-driver": "2.3.
|
|
120
|
-
"@tamagui/scroll-view": "2.3.
|
|
121
|
-
"@tamagui/select": "2.3.
|
|
122
|
-
"@tamagui/separator": "2.3.
|
|
123
|
-
"@tamagui/shapes": "2.3.
|
|
124
|
-
"@tamagui/sheet": "2.3.
|
|
125
|
-
"@tamagui/slider": "2.3.
|
|
126
|
-
"@tamagui/spacer": "2.3.
|
|
127
|
-
"@tamagui/spinner": "2.3.
|
|
128
|
-
"@tamagui/stacks": "2.3.
|
|
129
|
-
"@tamagui/switch": "2.3.
|
|
130
|
-
"@tamagui/tabs": "2.3.
|
|
131
|
-
"@tamagui/text": "2.3.
|
|
132
|
-
"@tamagui/theme": "2.3.
|
|
133
|
-
"@tamagui/toast": "2.3.
|
|
134
|
-
"@tamagui/toggle-group": "2.3.
|
|
135
|
-
"@tamagui/tooltip": "2.3.
|
|
136
|
-
"@tamagui/use-controllable-state": "2.3.
|
|
137
|
-
"@tamagui/use-debounce": "2.3.
|
|
138
|
-
"@tamagui/use-force-update": "2.3.
|
|
139
|
-
"@tamagui/use-window-dimensions": "2.3.
|
|
140
|
-
"@tamagui/visually-hidden": "2.3.
|
|
141
|
-
"@tamagui/font-size": "2.3.
|
|
142
|
-
"@tamagui/z-index-stack": "2.3.
|
|
80
|
+
"@tamagui/accordion": "2.3.2",
|
|
81
|
+
"@tamagui/adapt": "2.3.2",
|
|
82
|
+
"@tamagui/alert-dialog": "2.3.2",
|
|
83
|
+
"@tamagui/animate": "2.3.2",
|
|
84
|
+
"@tamagui/animate-presence": "2.3.2",
|
|
85
|
+
"@tamagui/avatar": "2.3.2",
|
|
86
|
+
"@tamagui/button": "2.3.2",
|
|
87
|
+
"@tamagui/card": "2.3.2",
|
|
88
|
+
"@tamagui/checkbox": "2.3.2",
|
|
89
|
+
"@tamagui/collapsible": "2.3.2",
|
|
90
|
+
"@tamagui/compose-refs": "2.3.2",
|
|
91
|
+
"@tamagui/constants": "2.3.2",
|
|
92
|
+
"@tamagui/context-menu": "2.3.2",
|
|
93
|
+
"@tamagui/core": "2.3.2",
|
|
94
|
+
"@tamagui/create-context": "2.3.2",
|
|
95
|
+
"@tamagui/create-menu": "2.3.2",
|
|
96
|
+
"@tamagui/dialog": "2.3.2",
|
|
97
|
+
"@tamagui/element": "2.3.2",
|
|
98
|
+
"@tamagui/elements": "2.3.2",
|
|
99
|
+
"@tamagui/fake-react-native": "2.3.2",
|
|
100
|
+
"@tamagui/focusable": "2.3.2",
|
|
101
|
+
"@tamagui/form": "2.3.2",
|
|
102
|
+
"@tamagui/get-button-sized": "2.3.2",
|
|
103
|
+
"@tamagui/get-font-sized": "2.3.2",
|
|
104
|
+
"@tamagui/get-token": "2.3.2",
|
|
105
|
+
"@tamagui/group": "2.3.2",
|
|
106
|
+
"@tamagui/helpers-tamagui": "2.3.2",
|
|
107
|
+
"@tamagui/image": "2.3.2",
|
|
108
|
+
"@tamagui/input": "2.3.2",
|
|
109
|
+
"@tamagui/label": "2.3.2",
|
|
110
|
+
"@tamagui/linear-gradient": "2.3.2",
|
|
111
|
+
"@tamagui/list-item": "2.3.2",
|
|
112
|
+
"@tamagui/menu": "2.3.2",
|
|
113
|
+
"@tamagui/polyfill-dev": "2.3.2",
|
|
114
|
+
"@tamagui/popover": "2.3.2",
|
|
115
|
+
"@tamagui/popper": "2.3.2",
|
|
116
|
+
"@tamagui/portal": "2.3.2",
|
|
117
|
+
"@tamagui/progress": "2.3.2",
|
|
118
|
+
"@tamagui/radio-group": "2.3.2",
|
|
119
|
+
"@tamagui/react-native-media-driver": "2.3.2",
|
|
120
|
+
"@tamagui/scroll-view": "2.3.2",
|
|
121
|
+
"@tamagui/select": "2.3.2",
|
|
122
|
+
"@tamagui/separator": "2.3.2",
|
|
123
|
+
"@tamagui/shapes": "2.3.2",
|
|
124
|
+
"@tamagui/sheet": "2.3.2",
|
|
125
|
+
"@tamagui/slider": "2.3.2",
|
|
126
|
+
"@tamagui/spacer": "2.3.2",
|
|
127
|
+
"@tamagui/spinner": "2.3.2",
|
|
128
|
+
"@tamagui/stacks": "2.3.2",
|
|
129
|
+
"@tamagui/switch": "2.3.2",
|
|
130
|
+
"@tamagui/tabs": "2.3.2",
|
|
131
|
+
"@tamagui/text": "2.3.2",
|
|
132
|
+
"@tamagui/theme": "2.3.2",
|
|
133
|
+
"@tamagui/toast": "2.3.2",
|
|
134
|
+
"@tamagui/toggle-group": "2.3.2",
|
|
135
|
+
"@tamagui/tooltip": "2.3.2",
|
|
136
|
+
"@tamagui/use-controllable-state": "2.3.2",
|
|
137
|
+
"@tamagui/use-debounce": "2.3.2",
|
|
138
|
+
"@tamagui/use-force-update": "2.3.2",
|
|
139
|
+
"@tamagui/use-window-dimensions": "2.3.2",
|
|
140
|
+
"@tamagui/visually-hidden": "2.3.2",
|
|
141
|
+
"@tamagui/font-size": "2.3.2",
|
|
142
|
+
"@tamagui/z-index-stack": "2.3.2"
|
|
143
143
|
},
|
|
144
144
|
"devDependencies": {
|
|
145
|
-
"@tamagui/build": "2.3.
|
|
145
|
+
"@tamagui/build": "2.3.2",
|
|
146
146
|
"react": ">=19",
|
|
147
147
|
"react-native": "0.83.2",
|
|
148
148
|
"react-native-web": "^0.21.0"
|