@tamagui/scroll-view 1.0.1-beta.197 → 1.0.1-beta.199
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/ScrollView.js
CHANGED
|
@@ -23,9 +23,15 @@ __export(ScrollView_exports, {
|
|
|
23
23
|
module.exports = __toCommonJS(ScrollView_exports);
|
|
24
24
|
var import_core = require("@tamagui/core");
|
|
25
25
|
var import_react_native = require("react-native");
|
|
26
|
-
const ScrollView = (0, import_core.styled)(
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
const ScrollView = (0, import_core.styled)(
|
|
27
|
+
import_react_native.ScrollView,
|
|
28
|
+
{
|
|
29
|
+
name: "ScrollView"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
isReactNative: true
|
|
33
|
+
}
|
|
34
|
+
);
|
|
29
35
|
// Annotate the CommonJS export names for ESM import in node:
|
|
30
36
|
0 && (module.exports = {
|
|
31
37
|
ScrollView
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/ScrollView.tsx"],
|
|
4
|
-
"sourcesContent": ["import { GetProps, styled } from '@tamagui/core'\nimport { ScrollView as ScrollViewNative } from 'react-native'\n\nexport const ScrollView = styled(ScrollViewNative
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAAiC;AACjC,0BAA+C;AAExC,MAAM,iBAAa,
|
|
4
|
+
"sourcesContent": ["import { GetProps, styled } from '@tamagui/core'\nimport { ScrollView as ScrollViewNative } from 'react-native'\n\nexport const ScrollView = styled(\n ScrollViewNative,\n {\n name: 'ScrollView',\n },\n {\n isReactNative: true,\n }\n)\n\nexport type ScrollViewProps = GetProps<typeof ScrollView>\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAAiC;AACjC,0BAA+C;AAExC,MAAM,iBAAa;AAAA,EACxB,oBAAAA;AAAA,EACA;AAAA,IACE,MAAM;AAAA,EACR;AAAA,EACA;AAAA,IACE,eAAe;AAAA,EACjB;AACF;",
|
|
6
6
|
"names": ["ScrollViewNative"]
|
|
7
7
|
}
|
package/dist/esm/ScrollView.js
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
import { styled } from "@tamagui/core";
|
|
2
2
|
import { ScrollView as ScrollViewNative } from "react-native";
|
|
3
|
-
const ScrollView = styled(
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
const ScrollView = styled(
|
|
4
|
+
ScrollViewNative,
|
|
5
|
+
{
|
|
6
|
+
name: "ScrollView"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
isReactNative: true
|
|
10
|
+
}
|
|
11
|
+
);
|
|
6
12
|
export {
|
|
7
13
|
ScrollView
|
|
8
14
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/ScrollView.tsx"],
|
|
4
|
-
"sourcesContent": ["import { GetProps, styled } from '@tamagui/core'\nimport { ScrollView as ScrollViewNative } from 'react-native'\n\nexport const ScrollView = styled(ScrollViewNative
|
|
5
|
-
"mappings": "AAAA,SAAmB,cAAc;AACjC,SAAS,cAAc,wBAAwB;AAExC,MAAM,aAAa,
|
|
4
|
+
"sourcesContent": ["import { GetProps, styled } from '@tamagui/core'\nimport { ScrollView as ScrollViewNative } from 'react-native'\n\nexport const ScrollView = styled(\n ScrollViewNative,\n {\n name: 'ScrollView',\n },\n {\n isReactNative: true,\n }\n)\n\nexport type ScrollViewProps = GetProps<typeof ScrollView>\n"],
|
|
5
|
+
"mappings": "AAAA,SAAmB,cAAc;AACjC,SAAS,cAAc,wBAAwB;AAExC,MAAM,aAAa;AAAA,EACxB;AAAA,EACA;AAAA,IACE,MAAM;AAAA,EACR;AAAA,EACA;AAAA,IACE,eAAe;AAAA,EACjB;AACF;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/jsx/ScrollView.js
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
import { styled } from "@tamagui/core";
|
|
2
2
|
import { ScrollView as ScrollViewNative } from "react-native";
|
|
3
|
-
const ScrollView = styled(
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
const ScrollView = styled(
|
|
4
|
+
ScrollViewNative,
|
|
5
|
+
{
|
|
6
|
+
name: "ScrollView"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
isReactNative: true
|
|
10
|
+
}
|
|
11
|
+
);
|
|
6
12
|
export {
|
|
7
13
|
ScrollView
|
|
8
14
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/ScrollView.tsx"],
|
|
4
|
-
"sourcesContent": ["import { GetProps, styled } from '@tamagui/core'\nimport { ScrollView as ScrollViewNative } from 'react-native'\n\nexport const ScrollView = styled(ScrollViewNative
|
|
5
|
-
"mappings": "AAAA,SAAmB,cAAc;AACjC,SAAS,cAAc,wBAAwB;AAExC,MAAM,aAAa,
|
|
4
|
+
"sourcesContent": ["import { GetProps, styled } from '@tamagui/core'\nimport { ScrollView as ScrollViewNative } from 'react-native'\n\nexport const ScrollView = styled(\n ScrollViewNative,\n {\n name: 'ScrollView',\n },\n {\n isReactNative: true,\n }\n)\n\nexport type ScrollViewProps = GetProps<typeof ScrollView>\n"],
|
|
5
|
+
"mappings": "AAAA,SAAmB,cAAc;AACjC,SAAS,cAAc,wBAAwB;AAExC,MAAM,aAAa;AAAA,EACxB;AAAA,EACA;AAAA,IACE,MAAM;AAAA,EACR;AAAA,EACA;AAAA,IACE,eAAe;AAAA,EACjB;AACF;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/scroll-view",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.199",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"lint:fix": "yarn lint --fix"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@tamagui/core": "^1.0.1-beta.
|
|
24
|
+
"@tamagui/core": "^1.0.1-beta.199"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"react": "*",
|
|
28
28
|
"react-dom": "*"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@tamagui/build": "^1.0.1-beta.
|
|
31
|
+
"@tamagui/build": "^1.0.1-beta.199",
|
|
32
32
|
"react": "*",
|
|
33
33
|
"react-dom": "*"
|
|
34
34
|
},
|
package/src/ScrollView.tsx
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
import { GetProps, styled } from '@tamagui/core'
|
|
2
2
|
import { ScrollView as ScrollViewNative } from 'react-native'
|
|
3
3
|
|
|
4
|
-
export const ScrollView = styled(
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
export const ScrollView = styled(
|
|
5
|
+
ScrollViewNative,
|
|
6
|
+
{
|
|
7
|
+
name: 'ScrollView',
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
isReactNative: true,
|
|
11
|
+
}
|
|
12
|
+
)
|
|
7
13
|
|
|
8
14
|
export type ScrollViewProps = GetProps<typeof ScrollView>
|