For AI agents: the complete documentation index is available at /llms.txt, the full documentation bundle is available at /llms-full.txt, and this page is available as Markdown at /developers/blog/2023-10-12-country_selector.md.

Country selector

Selectors 已扩展,现在也包含了 CountrySelector

config flows中使用它可以让 frontend 自动将国家代码翻译成正确的国家名称。

示例:

vol.Schema(
    {
        vol.Optional(CONF_COUNTRY): CountrySelector(
            CountrySelectorConfig(
                countries=["DE", "US"],
            )
        ),
    }
)