@opencxh/ui-kit 3.110.3 → 3.111.1
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1152 -1158
- package/dist/index.js.map +1 -1
- package/dist/src/action/FilterChip.d.ts +3 -1
- package/dist/src/content/PageHeader.d.ts +7 -1
- package/package.json +1 -1
|
@@ -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;
|