diff --git a/compiler/components/grid.json b/compiler/components/grid.json index 1a9682a..260ee96 100644 --- a/compiler/components/grid.json +++ b/compiler/components/grid.json @@ -5,6 +5,6 @@ "columnsTemplate", "rowsTemplate", "columnsGap", "rowsGap", "scrollBar", "scrollBarWidth", "scrollBarColor", "editMode", "maxCount", "minCount", "cellLength", "onItemDragStart", "onItemDragMove", "onItemDragEnter", "onItemDragMove", "onItemDrop", "layoutDirection", "direction", - "supportAnimation", "onItemDragLeave" + "supportAnimation", "onItemDragLeave", "multiSelectable" ] } \ No newline at end of file diff --git a/compiler/components/gridItem.json b/compiler/components/gridItem.json index be369c1..e245093 100644 --- a/compiler/components/gridItem.json +++ b/compiler/components/gridItem.json @@ -2,5 +2,5 @@ "name": "GridItem", "parents": ["Grid"], "single": true, - "attrs": ["rowStart", "rowEnd", "columnStart", "columnEnd", "forceRebuild"] + "attrs": ["rowStart", "rowEnd", "columnStart", "columnEnd", "forceRebuild", "selectable", "onSelect"] } \ No newline at end of file diff --git a/compiler/components/list.json b/compiler/components/list.json index acf726d..3655d8f 100644 --- a/compiler/components/list.json +++ b/compiler/components/list.json @@ -4,6 +4,7 @@ "attrs": [ "listDirection", "scrollBar", "edgeEffect", "divider", "editMode", "cachedCount", "chainAnimation", "onScroll", "onReachStart", "onReachEnd", "onScrollStop", "onItemDelete", - "onItemMove", "onItemDragStart", "onItemDragEnter", "onItemDragMove", "onItemDragLeave", "onItemDrop" + "onItemMove", "onItemDragStart", "onItemDragEnter", "onItemDragMove", "onItemDragLeave", "onItemDrop", + "multiSelectable" ] } \ No newline at end of file diff --git a/compiler/components/listItem.json b/compiler/components/listItem.json index 467c66e..7c704e6 100644 --- a/compiler/components/listItem.json +++ b/compiler/components/listItem.json @@ -2,5 +2,5 @@ "name": "ListItem", "parents": ["List"], "single": true, - "attrs": ["sticky", "editable"] + "attrs": ["sticky", "editable", "selectable", "onSelect"] } \ No newline at end of file