@l3mpire/ui 2.16.3 → 2.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -716,16 +716,14 @@ type OperatorType = TextOperator | NumberOperator | DateOperator | EnumOperator
716
716
  * (e.g. "Me", "My team", "Unassigned"). The value is a sentinel string that
717
717
  * the consuming app resolves at query time (e.g. `__me__` → `currentUser.id`).
718
718
  *
719
- * The design system only handles the rendering (icon + label + description +
720
- * divider above the regular options). Resolving the sentinels is an app
721
- * concern.
719
+ * The design system renders label + optional description inline with regular
720
+ * options. Resolving the sentinels is an app concern.
722
721
  */
723
722
  interface DynamicOption {
724
723
  /** Sentinel value stored on FilterCondition.value (e.g. "__me__"). */
725
724
  value: string;
726
725
  label: string;
727
726
  description?: string;
728
- icon?: _l3mpire_icons.IconDefinition;
729
727
  }
730
728
  interface PropertyDefinition {
731
729
  id: string;
@@ -937,7 +935,7 @@ interface InteractiveFilterChipProps {
937
935
  }
938
936
  declare const InteractiveFilterChip: React.FC<InteractiveFilterChipProps>;
939
937
 
940
- type FilterBarMode = "default" | "minimal";
938
+ type FilterBarMode = "default" | "minimal" | "icon";
941
939
  /**
942
940
  * Observes the container width and returns the appropriate FilterBar mode.
943
941
  * - default: > breakpoint
package/dist/index.d.ts CHANGED
@@ -716,16 +716,14 @@ type OperatorType = TextOperator | NumberOperator | DateOperator | EnumOperator
716
716
  * (e.g. "Me", "My team", "Unassigned"). The value is a sentinel string that
717
717
  * the consuming app resolves at query time (e.g. `__me__` → `currentUser.id`).
718
718
  *
719
- * The design system only handles the rendering (icon + label + description +
720
- * divider above the regular options). Resolving the sentinels is an app
721
- * concern.
719
+ * The design system renders label + optional description inline with regular
720
+ * options. Resolving the sentinels is an app concern.
722
721
  */
723
722
  interface DynamicOption {
724
723
  /** Sentinel value stored on FilterCondition.value (e.g. "__me__"). */
725
724
  value: string;
726
725
  label: string;
727
726
  description?: string;
728
- icon?: _l3mpire_icons.IconDefinition;
729
727
  }
730
728
  interface PropertyDefinition {
731
729
  id: string;
@@ -937,7 +935,7 @@ interface InteractiveFilterChipProps {
937
935
  }
938
936
  declare const InteractiveFilterChip: React.FC<InteractiveFilterChipProps>;
939
937
 
940
- type FilterBarMode = "default" | "minimal";
938
+ type FilterBarMode = "default" | "minimal" | "icon";
941
939
  /**
942
940
  * Observes the container width and returns the appropriate FilterBar mode.
943
941
  * - default: > breakpoint