@tamagui/scroll-view 1.82.1 → 1.82.3
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 +7 -5
- package/dist/esm/ScrollView.mjs +0 -19
- package/dist/esm/ScrollView.mjs.map +0 -6
- package/dist/esm/index.mjs +0 -2
- package/dist/esm/index.mjs.map +0 -6
- package/dist/jsx/ScrollView.mjs +0 -19
- package/dist/jsx/ScrollView.mjs.map +0 -6
- package/dist/jsx/index.mjs +0 -2
- package/dist/jsx/index.mjs.map +0 -6
- package/types/Separator.d.ts +0 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/scroll-view",
|
|
3
|
-
"version": "1.82.
|
|
3
|
+
"version": "1.82.3",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -18,7 +18,9 @@
|
|
|
18
18
|
"build": "tamagui-build",
|
|
19
19
|
"watch": "tamagui-build --watch",
|
|
20
20
|
"lint": "../../node_modules/.bin/biome check src",
|
|
21
|
-
"lint:fix": "../../node_modules/.bin/biome check --apply-unsafe src"
|
|
21
|
+
"lint:fix": "../../node_modules/.bin/biome check --apply-unsafe src",
|
|
22
|
+
"clean": "tamagui-build clean",
|
|
23
|
+
"clean:build": "tamagui-build clean:build"
|
|
22
24
|
},
|
|
23
25
|
"exports": {
|
|
24
26
|
"./package.json": "./package.json",
|
|
@@ -30,14 +32,14 @@
|
|
|
30
32
|
}
|
|
31
33
|
},
|
|
32
34
|
"dependencies": {
|
|
33
|
-
"@tamagui/stacks": "1.82.
|
|
34
|
-
"@tamagui/web": "1.82.
|
|
35
|
+
"@tamagui/stacks": "1.82.3",
|
|
36
|
+
"@tamagui/web": "1.82.3"
|
|
35
37
|
},
|
|
36
38
|
"peerDependencies": {
|
|
37
39
|
"react": "*"
|
|
38
40
|
},
|
|
39
41
|
"devDependencies": {
|
|
40
|
-
"@tamagui/build": "1.82.
|
|
42
|
+
"@tamagui/build": "1.82.3",
|
|
41
43
|
"react": "^18.2.0"
|
|
42
44
|
},
|
|
43
45
|
"publishConfig": {
|
package/dist/esm/ScrollView.mjs
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { fullscreenStyle } from "@tamagui/stacks";
|
|
2
|
-
import { setupReactNative, styled } from "@tamagui/web";
|
|
3
|
-
import { ScrollView as ScrollViewNative } from "react-native";
|
|
4
|
-
setupReactNative({
|
|
5
|
-
ScrollView: ScrollViewNative
|
|
6
|
-
});
|
|
7
|
-
const ScrollView = styled(ScrollViewNative, {
|
|
8
|
-
name: "ScrollView",
|
|
9
|
-
scrollEnabled: !0,
|
|
10
|
-
variants: {
|
|
11
|
-
fullscreen: {
|
|
12
|
-
true: fullscreenStyle
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
export {
|
|
17
|
-
ScrollView
|
|
18
|
-
};
|
|
19
|
-
//# sourceMappingURL=ScrollView.mjs.map
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../src/ScrollView.tsx"],
|
|
4
|
-
"mappings": "AAAA,SAAS,uBAAuB;AAChC,SAAmB,kBAAkB,cAAc;AACnD,SAAS,cAAc,wBAAwB;AAE/C,iBAAiB;AAAA,EACf,YAAY;AACd,CAAC;AAEM,MAAM,aAAa,OAAO,kBAAkB;AAAA,EACjD,MAAM;AAAA,EACN,eAAe;AAAA,EAEf,UAAU;AAAA,IACR,YAAY;AAAA,MACV,MAAM;AAAA,IACR;AAAA,EACF;AACF,CAAC;",
|
|
5
|
-
"names": []
|
|
6
|
-
}
|
package/dist/esm/index.mjs
DELETED
package/dist/esm/index.mjs.map
DELETED
package/dist/jsx/ScrollView.mjs
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { fullscreenStyle } from "@tamagui/stacks";
|
|
2
|
-
import { setupReactNative, styled } from "@tamagui/web";
|
|
3
|
-
import { ScrollView as ScrollViewNative } from "react-native";
|
|
4
|
-
setupReactNative({
|
|
5
|
-
ScrollView: ScrollViewNative
|
|
6
|
-
});
|
|
7
|
-
const ScrollView = styled(ScrollViewNative, {
|
|
8
|
-
name: "ScrollView",
|
|
9
|
-
scrollEnabled: true,
|
|
10
|
-
variants: {
|
|
11
|
-
fullscreen: {
|
|
12
|
-
true: fullscreenStyle
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
export {
|
|
17
|
-
ScrollView
|
|
18
|
-
};
|
|
19
|
-
//# sourceMappingURL=ScrollView.mjs.map
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../src/ScrollView.tsx"],
|
|
4
|
-
"mappings": "AAAA,SAAS,uBAAuB;AAChC,SAAmB,kBAAkB,cAAc;AACnD,SAAS,cAAc,wBAAwB;AAE/C,iBAAiB;AAAA,EACf,YAAY;AACd,CAAC;AAEM,MAAM,aAAa,OAAO,kBAAkB;AAAA,EACjD,MAAM;AAAA,EACN,eAAe;AAAA,EAEf,UAAU;AAAA,IACR,YAAY;AAAA,MACV,MAAM;AAAA,IACR;AAAA,EACF;AACF,CAAC;",
|
|
5
|
-
"names": []
|
|
6
|
-
}
|
package/dist/jsx/index.mjs
DELETED
package/dist/jsx/index.mjs.map
DELETED
package/types/Separator.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare const Separator: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, "vertical"> & {
|
|
2
|
-
readonly vertical?: boolean | undefined;
|
|
3
|
-
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, "vertical"> & {
|
|
4
|
-
readonly vertical?: boolean | undefined;
|
|
5
|
-
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, "vertical"> & {
|
|
6
|
-
readonly vertical?: boolean | undefined;
|
|
7
|
-
}>>, import("@tamagui/core").TamaguiElement, import("@tamagui/core").StackPropsBase, {
|
|
8
|
-
readonly vertical?: boolean | undefined;
|
|
9
|
-
}>;
|
|
10
|
-
//# sourceMappingURL=Separator.d.ts.map
|