Skip to content

Commit e6cb5be

Browse files
authored
Merge pull request #4811 from GeekyAnts/release/3.3.8-alpha.10
Release/3.3.8 alpha.10
2 parents 84c3356 + 5c00d6a commit e6cb5be

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"prettier --write"
3737
]
3838
},
39-
"version": "3.3.8-alpha.9",
39+
"version": "3.3.8-alpha.10",
4040
"license": "MIT",
4141
"private": false,
4242
"main": "lib/commonjs/index",

src/components/basic/FlatList/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export interface InterfaceFlatListProps<ItemT>
99
/**
1010
* pass props to contentContainerStyle, and this also resolved NB tokens.
1111
*/
12-
_contentContainerStyle?: IFlatListProps<ItemT>;
12+
_contentContainerStyle?: Partial<IFlatListProps<ItemT>>;
1313
}
1414

1515
export type IFlatListProps<ItemT> =

src/components/basic/ScrollView/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export interface InterfaceScrollViewProps
1212
/**
1313
* pass props to contentContainerStyle, and this also resolved NB tokens.
1414
*/
15-
_contentContainerStyle?: IScrollViewProps;
15+
_contentContainerStyle?: Partial<IScrollViewProps>;
1616
}
1717

1818
export type IScrollViewProps =

0 commit comments

Comments
 (0)