"""Widget group definitions — one file per category.""" from app.kpi_cache.widget_groups.operations import OPERATIONS_WIDGETS from app.kpi_cache.widget_groups.inventory import INVENTORY_WIDGETS from app.kpi_cache.widget_groups.financial import FINANCIAL_WIDGETS from app.kpi_cache.widget_groups.sales import SALES_WIDGETS from app.kpi_cache.widget_groups.customers import CUSTOMERS_WIDGETS from app.kpi_cache.widget_groups.catalogue import CATALOGUE_WIDGETS from app.kpi_cache.widget_groups.spa_bookings import SPA_BOOKINGS_WIDGETS from app.kpi_cache.widget_groups.trade_network import TRADE_NETWORK_WIDGETS from app.kpi_cache.widget_groups.sales_charts import SALES_CHART_WIDGETS from app.kpi_cache.widget_groups.operations_charts import OPERATIONS_CHART_WIDGETS from app.kpi_cache.widget_groups.staff_charts import STAFF_CHART_WIDGETS from app.kpi_cache.widget_groups.customers_charts import CUSTOMERS_CHART_WIDGETS from app.kpi_cache.widget_groups.catalogue_charts import CATALOGUE_CHART_WIDGETS from app.kpi_cache.widget_groups.sales_tables import SALES_TABLE_WIDGETS from app.kpi_cache.widget_groups.operations_tables import OPERATIONS_TABLE_WIDGETS from app.kpi_cache.widget_groups.staff_tables import STAFF_TABLE_WIDGETS from app.kpi_cache.widget_groups.customers_tables import CUSTOMERS_TABLE_WIDGETS from app.kpi_cache.widget_groups.catalogue_tables import CATALOGUE_TABLE_WIDGETS __all__ = [ "OPERATIONS_WIDGETS", "INVENTORY_WIDGETS", "FINANCIAL_WIDGETS", "SALES_WIDGETS", "CUSTOMERS_WIDGETS", "CATALOGUE_WIDGETS", "SPA_BOOKINGS_WIDGETS", "TRADE_NETWORK_WIDGETS", "SALES_CHART_WIDGETS", "OPERATIONS_CHART_WIDGETS", "STAFF_CHART_WIDGETS", "CUSTOMERS_CHART_WIDGETS", "CATALOGUE_CHART_WIDGETS", "SALES_TABLE_WIDGETS", "OPERATIONS_TABLE_WIDGETS", "STAFF_TABLE_WIDGETS", "CUSTOMERS_TABLE_WIDGETS", "CATALOGUE_TABLE_WIDGETS", ]