Skip to content

Commit dd5b2e8

Browse files
committed
Fix links in components api.json
1 parent 564953c commit dd5b2e8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/components/gridList/gridList.api.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"category": "layoutsAndTemplates",
44
"description": "An auto-generated grid list that calculate item size according to given props",
55
"extends": ["FlatList"],
6+
"extendsLink": ["https://reactnative.dev/docs/flatlist"],
67
"example": "https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/GridListScreen.tsx",
78
"props": [
89
{"name": "numColumns", "type": "number", "description": "Number of items to show in a row (ignored when passing maxItemWidth)"},

src/components/sortableGridList/sortableGridList.api.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"category": "layoutsAndTemplates",
44
"description": "An sortable grid list (based on GridList component)",
55
"notes": "This component supports square items only",
6-
"extends": ["GridList"],
6+
"extends": ["layoutsAndTemplates/GridList"],
77
"example": "https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/SortableGridListScreen.tsx",
88
"props": [
99
{"name": "data", "type": "any[]", "description": "Data of items"},

0 commit comments

Comments
 (0)