alouette 19.0.0-beta.5 → 19.0.0-beta.6
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/definitions/ui/primitives/ScrollView.d.ts +3 -2
- package/dist/definitions/ui/primitives/ScrollView.d.ts.map +1 -1
- package/dist/index-browser.es.js +4 -5
- package/dist/index-browser.es.js.map +1 -1
- package/dist/index-node22.cjs +4 -5
- package/dist/index-node22.cjs.map +1 -1
- package/dist/index-node22.mjs +4 -5
- package/dist/index-node22.mjs.map +1 -1
- package/dist/index-react-native.cjs.js +4 -5
- package/dist/index-react-native.cjs.js.map +1 -1
- package/dist/index-react-native.es.js +4 -5
- package/dist/index-react-native.es.js.map +1 -1
- package/package.json +1 -1
- package/src/ui/primitives/ScrollView.tsx +6 -6
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { ComponentType } from "react";
|
|
2
|
+
import { type ScrollViewProps as RNScrollViewProps } from "react-native";
|
|
2
3
|
export type ScrollViewProps = RNScrollViewProps;
|
|
3
|
-
export declare const ScrollView:
|
|
4
|
+
export declare const ScrollView: ComponentType<ScrollViewProps>;
|
|
4
5
|
//# sourceMappingURL=ScrollView.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScrollView.d.ts","sourceRoot":"","sources":["../../../../src/ui/primitives/ScrollView.tsx"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"ScrollView.d.ts","sourceRoot":"","sources":["../../../../src/ui/primitives/ScrollView.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAC3C,OAAO,EAEL,KAAK,eAAe,IAAI,iBAAiB,EAC1C,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,eAAe,GAAG,iBAAiB,CAAC;AAEhD,eAAO,MAAM,UAAU,EAGjB,aAAa,CAAC,eAAe,CAAC,CAAC"}
|
package/dist/index-browser.es.js
CHANGED
|
@@ -681,11 +681,10 @@ const Paragraph = forwardRef(
|
|
|
681
681
|
}
|
|
682
682
|
);
|
|
683
683
|
|
|
684
|
-
const ScrollView =
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
);
|
|
684
|
+
const ScrollView = styled$1(ScrollView$1, {
|
|
685
|
+
className: "style",
|
|
686
|
+
contentContainerClassName: "contentContainerStyle"
|
|
687
|
+
});
|
|
689
688
|
|
|
690
689
|
const FlatList = styled$1(FlatList$1, {
|
|
691
690
|
className: "style",
|