@opencxh/ui-kit 3.110.2 → 3.111.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.
@@ -26,6 +26,8 @@ export interface FilterChipProps {
26
26
  /** Accessible name for the clear affordance. */
27
27
  clearLabel?: string;
28
28
  onClick?: () => void;
29
+ /** Native tooltip, for a chip whose label is truncated or abbreviated. */
30
+ title?: string;
29
31
  className?: string;
30
32
  }
31
33
  /**
@@ -40,4 +42,4 @@ export interface FilterChipProps {
40
42
  * active={!!status} onClick={openMenu} onClear={() => setStatus(null)} />
41
43
  * ```
42
44
  */
43
- export declare function FilterChip({ label, icon, tone, shape, size, active, caret, onClear, clearLabel, onClick, className, }: FilterChipProps): React.JSX.Element;
45
+ export declare function FilterChip({ label, icon, tone, shape, size, active, caret, onClear, clearLabel, onClick, title, className, }: FilterChipProps): React.JSX.Element;
@@ -31,8 +31,14 @@ export interface PageHeaderProps {
31
31
  surface?: boolean;
32
32
  /** Page title */
33
33
  title: string;
34
- /** Page subtitle/description */
34
+ /** Page subtitle/description. Sits beside the title. */
35
35
  subtitle?: string;
36
+ /**
37
+ * Meta line under the title — a contact, a channel, a timestamp. Distinct
38
+ * from `subtitle`, which sits beside the title, and from `children`, which
39
+ * is the full-width row at the bottom of the header.
40
+ */
41
+ meta?: React.ReactNode;
36
42
  /** Breadcrumb items */
37
43
  breadcrumbs?: Array<{
38
44
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencxh/ui-kit",
3
- "version": "3.110.2",
3
+ "version": "3.111.0",
4
4
  "description": "Theme-aware UI component library for OpenCXH platform",
5
5
  "type": "module",
6
6
  "exports": {