@lateralus-ai/shipping-ui 2.0.0-dev.21 → 2.0.0-dev.22

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.
@@ -12,10 +12,7 @@ export type FilterPillsProps = {
12
12
  };
13
13
  /**
14
14
  * Partner row for FilterDropdown — active filter pills.
15
- * Lives outside the dropdown DOM so callers can place it anywhere
16
- * (same row, new row, sticky footer, etc.).
17
- *
18
- * Multi-select chip *content* (when to show, label format) is owned by the
19
- * consumer; use `formatActiveFilterChipLabel` for audit-prep-style labels.
15
+ * Always renders the row wrapper (even when empty) so sibling filter
16
+ * triggers can stay pinned with `ml-auto` / flex layouts.
20
17
  */
21
- export declare const FilterPills: ({ chips, className }: FilterPillsProps) => import("react/jsx-runtime").JSX.Element | null;
18
+ export declare const FilterPills: ({ chips, className }: FilterPillsProps) => import("react/jsx-runtime").JSX.Element;
@@ -3,7 +3,7 @@ export type FilteredPillProps = {
3
3
  onRemove: () => void;
4
4
  removeAriaLabel?: string;
5
5
  className?: string;
6
- /** Optional tone overrides (e.g. criticality-colored chips). */
6
+ /** Optional tone overrides. Prefer default beige unless a product needs a custom tone. */
7
7
  classNames?: {
8
8
  root?: string;
9
9
  label?: string;
@@ -12,7 +12,7 @@ export type FilteredPillProps = {
12
12
  };
13
13
  /**
14
14
  * Active filter value pill — Figma Filtered (6154:149787).
15
- * Clear control on the left, label on the right. Partner to FilterDropdown;
16
- * render via FilterPills outside the dropdown DOM.
15
+ * Clear control on the left, label on the right. Max 300px with ellipsis;
16
+ * full label in a tooltip on hover.
17
17
  */
18
18
  export declare const FilteredPill: ({ label, onRemove, removeAriaLabel, className, classNames, }: FilteredPillProps) => import("react/jsx-runtime").JSX.Element;