I just ran into the same issue. This works:
.create({
component: ModalSelectSearch,
componentProps: {
// This gets passed to the component's data values
data: {
dataItem: dataItemVal
},
// This gets passed as the actual 'props' values
propsData: {
title: 'Test'
}
}
})