func WithContextValues(
keyVals map[any]any,
return func(rc *RegistrableComponent) {
if rc.contextValues == nil {
rc.contextValues = make(map[any]any, len(keyVals))
}
maps.Copy(rc.contextValues, keyVals)
}
}