Is partiallyRenderComponentsAfterStateUpdated() supposed to rerender the suffix here? I can't get it to work.
Repeater::make('BillOfMaterials')
->schema([
Select::make('Component')
->searchable()
->getSearchResultsUsing(fn ($search) => StockCode::search($search))
->getOptionLabelUsing(fn ($value) => StockCode::find($value)?->getLabel())
->live()
->partiallyRenderComponentsAfterStateUpdated(['QtyPer']),
TextInput::make('QtyPer')
->suffix(fn (Get $get) => StockCode::find($get('Component'))?->StockUom),
])