Lime Web Components API Documentation - v6.24.0
    Preparing search index...

    Function SelectFilters

    • Decorator that subscribes to filters from the FilterRepository.

      This decorator automatically updates the decorated property whenever filters change in the platform. You can optionally filter by limetype or filter ID.

      Parameters

      Returns PropertyDecorator

      A PropertyDecorator that sets up automatic subscription to filters

      @State()
      @SelectFilters()
      private filters: Filter[];
      @State()
      @SelectFilters({ limetype: 'company' })
      private companyFilters: Filter[];