tamagui 1.75.3 → 1.75.5
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/views/Anchor.js +1 -1
- package/dist/cjs/views/Input.js +1 -1
- package/dist/cjs/views/Spinner.js +1 -1
- package/dist/esm/views/Anchor.js +1 -1
- package/dist/esm/views/Input.js +1 -1
- package/dist/esm/views/Spinner.js +1 -1
- package/dist/jsx/views/Anchor.js +1 -1
- package/dist/jsx/views/Input.js +1 -1
- package/dist/jsx/views/Spinner.js +1 -1
- package/dist/native.js.map +1 -1
- package/dist/test.native.js.map +1 -1
- package/package.json +52 -52
- package/types/views/Anchor.d.ts +20 -1
- package/types/views/Anchor.d.ts.map +1 -1
- package/types/views/Input.d.ts +13 -1
- package/types/views/Input.d.ts.map +1 -1
- package/types/views/TextArea.d.ts +13 -1
- package/types/views/TextArea.d.ts.map +1 -1
package/dist/cjs/views/Anchor.js
CHANGED
|
@@ -17,7 +17,7 @@ __export(Anchor_exports, {
|
|
|
17
17
|
Anchor: () => Anchor
|
|
18
18
|
});
|
|
19
19
|
module.exports = __toCommonJS(Anchor_exports);
|
|
20
|
-
var import_core = require("@tamagui/core"), import_text = require("@tamagui/text"), import_react_native = require("react-native"), import_jsx_runtime = require("react/jsx-runtime");
|
|
20
|
+
var import_core = require("@tamagui/core"), import_text = require("@tamagui/text"), import_react_native = require("react-native-web"), import_jsx_runtime = require("react/jsx-runtime");
|
|
21
21
|
const AnchorFrame = (0, import_core.styled)(import_text.SizableText, {
|
|
22
22
|
name: "Anchor",
|
|
23
23
|
tag: "a",
|
package/dist/cjs/views/Input.js
CHANGED
|
@@ -20,7 +20,7 @@ __export(Input_exports, {
|
|
|
20
20
|
useInputProps: () => useInputProps
|
|
21
21
|
});
|
|
22
22
|
module.exports = __toCommonJS(Input_exports);
|
|
23
|
-
var import_core = require("@tamagui/core"), import_focusable = require("@tamagui/focusable"), import_react_native = require("react-native"), import_inputHelpers = require("../helpers/inputHelpers"), import_jsx_runtime = require("react/jsx-runtime");
|
|
23
|
+
var import_core = require("@tamagui/core"), import_focusable = require("@tamagui/focusable"), import_react_native = require("react-native-web"), import_inputHelpers = require("../helpers/inputHelpers"), import_jsx_runtime = require("react/jsx-runtime");
|
|
24
24
|
const defaultStyles = {
|
|
25
25
|
size: "$true",
|
|
26
26
|
fontFamily: "$body",
|
|
@@ -25,7 +25,7 @@ __export(Spinner_exports, {
|
|
|
25
25
|
Spinner: () => Spinner
|
|
26
26
|
});
|
|
27
27
|
module.exports = __toCommonJS(Spinner_exports);
|
|
28
|
-
var import_core = require("@tamagui/core"), import_stacks = require("@tamagui/stacks"), React = __toESM(require("react")), import_react_native = require("react-native"), import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var import_core = require("@tamagui/core"), import_stacks = require("@tamagui/stacks"), React = __toESM(require("react")), import_react_native = require("react-native-web"), import_jsx_runtime = require("react/jsx-runtime");
|
|
29
29
|
const Spinner = import_stacks.YStack.extractable(
|
|
30
30
|
(0, import_core.themeable)(
|
|
31
31
|
React.forwardRef((props, ref) => {
|
package/dist/esm/views/Anchor.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { isWeb, styled } from "@tamagui/core";
|
|
2
2
|
import { SizableText } from "@tamagui/text";
|
|
3
|
-
import { Linking } from "react-native";
|
|
3
|
+
import { Linking } from "react-native-web";
|
|
4
4
|
import { jsx } from "react/jsx-runtime";
|
|
5
5
|
const AnchorFrame = styled(SizableText, {
|
|
6
6
|
name: "Anchor",
|
package/dist/esm/views/Input.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { isWeb, styled, useTheme } from "@tamagui/core";
|
|
2
2
|
import { useFocusable } from "@tamagui/focusable";
|
|
3
|
-
import { TextInput } from "react-native";
|
|
3
|
+
import { TextInput } from "react-native-web";
|
|
4
4
|
import { inputSizeVariant } from "../helpers/inputHelpers";
|
|
5
5
|
import { jsx } from "react/jsx-runtime";
|
|
6
6
|
const defaultStyles = {
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
} from "@tamagui/core";
|
|
6
6
|
import { YStack } from "@tamagui/stacks";
|
|
7
7
|
import * as React from "react";
|
|
8
|
-
import { ActivityIndicator } from "react-native";
|
|
8
|
+
import { ActivityIndicator } from "react-native-web";
|
|
9
9
|
import { jsx } from "react/jsx-runtime";
|
|
10
10
|
const Spinner = YStack.extractable(
|
|
11
11
|
themeable(
|
package/dist/jsx/views/Anchor.js
CHANGED
package/dist/jsx/views/Input.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { isWeb, styled, useTheme } from "@tamagui/core";
|
|
2
2
|
import { useFocusable } from "@tamagui/focusable";
|
|
3
|
-
import { TextInput } from "react-native";
|
|
3
|
+
import { TextInput } from "react-native-web";
|
|
4
4
|
import { inputSizeVariant } from "../helpers/inputHelpers";
|
|
5
5
|
const defaultStyles = {
|
|
6
6
|
size: "$true",
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
} from "@tamagui/core";
|
|
6
6
|
import { YStack } from "@tamagui/stacks";
|
|
7
7
|
import * as React from "react";
|
|
8
|
-
import { ActivityIndicator } from "react-native";
|
|
8
|
+
import { ActivityIndicator } from "react-native-web";
|
|
9
9
|
const Spinner = YStack.extractable(
|
|
10
10
|
themeable(
|
|
11
11
|
React.forwardRef((props, ref) => {
|