nullListItemProperty
fun <T> CSStore.nullListItemProperty(key: String, getValues: () -> List<T>, getDefault: () -> T?, onChange: ArgFun<T?>? = null): CSListItemNullableStoreProperty<T>
fun <T> CSStore.nullListItemProperty(key: String, values: List<T>, getDefault: () -> T?, onChange: ArgFun<T?>? = null): CSStoreProperty<T?>
fun <T> CSStore.nullListItemProperty(key: String, values: List<T>, default: T? = null, onChange: ArgFun<T?>? = null): CSListItemNullableStoreProperty<T>
fun <T> CSStore.nullListItemProperty(key: String, getList: () -> List<T>, defaultIndex: Int, onChange: ArgFun<T?>? = null): CSStoreProperty<T?>
fun <T> CSStore.nullListItemProperty(key: String, list: List<T>, defaultIndex: Int, onChange: ArgFun<T?>? = null): CSStoreProperty<T?>