Not sure if this is an intented change in terms of UI on 27 beta 1, but I think the previous implementation of configuring array of App Entity is better with a list and options and reorder and remove items.
My widget configuration code:
struct BusWidgetConfiguration: WidgetConfigurationIntent {
static var title: LocalizedStringResource { "Bus Stop Configuration" }
static var description: IntentDescription { "Configure youe top 3 most commonly used bus stop to open in app." }
@Parameter(title: "Bus Stop", default: [], size: IntentCollectionSize(min: 0, max: 3)) var busStops: [BusStopEntity]
@Parameter(title: "Open in Maps", default: false) var openInMaps: Bool
}
iOS 27 Beta 1:
iOS 26.5: