@mieweb/ui 0.2.1 → 0.2.2
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/README.md +28 -0
- package/dist/ag-grid.cjs +5 -5
- package/dist/ag-grid.js +1 -1
- package/dist/brands/bluehive.css +20 -0
- package/dist/brands/enterprise-health.css +32 -4
- package/dist/brands/index.d.cts +1 -1
- package/dist/brands/index.d.ts +1 -1
- package/dist/brands/mieweb.css +20 -0
- package/dist/brands/ozwell.css +20 -0
- package/dist/brands/waggleline.css +46 -0
- package/dist/brands/webchart.css +20 -0
- package/dist/chunk-EYH7OUX5.js +445 -0
- package/dist/chunk-EYH7OUX5.js.map +1 -0
- package/dist/{chunk-WN2FJE23.js → chunk-KWDTTGH2.js} +3 -3
- package/dist/{chunk-WN2FJE23.js.map → chunk-KWDTTGH2.js.map} +1 -1
- package/dist/{chunk-MKJDBXX4.cjs → chunk-PEH4ZOEM.cjs} +4 -4
- package/dist/{chunk-MKJDBXX4.cjs.map → chunk-PEH4ZOEM.cjs.map} +1 -1
- package/dist/{chunk-D3BUYVLN.cjs → chunk-QUA7WVHK.cjs} +70 -2
- package/dist/{chunk-D3BUYVLN.cjs.map → chunk-QUA7WVHK.cjs.map} +1 -1
- package/dist/chunk-SSKI6VTW.cjs +449 -0
- package/dist/chunk-SSKI6VTW.cjs.map +1 -0
- package/dist/{chunk-SN52QMRT.js → chunk-TPGT236K.js} +28 -24
- package/dist/chunk-TPGT236K.js.map +1 -0
- package/dist/{chunk-N5EKL4DH.js → chunk-VBHPXSCV.js} +4 -4
- package/dist/{chunk-N5EKL4DH.js.map → chunk-VBHPXSCV.js.map} +1 -1
- package/dist/{chunk-B7DA35BY.cjs → chunk-VZUVYJFU.cjs} +14 -14
- package/dist/{chunk-B7DA35BY.cjs.map → chunk-VZUVYJFU.cjs.map} +1 -1
- package/dist/{chunk-KMN7JX2X.cjs → chunk-WH6I7CMP.cjs} +28 -24
- package/dist/chunk-WH6I7CMP.cjs.map +1 -0
- package/dist/chunk-Y22SOAJM.js +3 -0
- package/dist/{chunk-K5T2PT4M.js.map → chunk-Y22SOAJM.js.map} +1 -1
- package/dist/components/Button/index.cjs +3 -3
- package/dist/components/Button/index.js +1 -1
- package/dist/components/DateInput/index.cjs +3 -3
- package/dist/components/DateInput/index.js +2 -2
- package/dist/index.cjs +2817 -1078
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +250 -3
- package/dist/index.d.ts +250 -3
- package/dist/index.js +2665 -933
- package/dist/index.js.map +1 -1
- package/dist/styles.css +2 -2
- package/dist/tailwind-preset.cjs +4 -4
- package/dist/tailwind-preset.js +1 -1
- package/dist/utils/index.cjs +9 -9
- package/dist/utils/index.js +1 -1
- package/package.json +42 -38
- package/dist/chunk-5YRTFJ7K.js +0 -247
- package/dist/chunk-5YRTFJ7K.js.map +0 -1
- package/dist/chunk-ERIGUDFS.cjs +0 -251
- package/dist/chunk-ERIGUDFS.cjs.map +0 -1
- package/dist/chunk-K5T2PT4M.js +0 -3
- package/dist/chunk-KMN7JX2X.cjs.map +0 -1
- package/dist/chunk-SN52QMRT.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -43,7 +43,7 @@ export { calculateAge, cn, formatDateValue, formatPhoneNumber, isDateEmpty, isDa
|
|
|
43
43
|
export { default as miewebUIPreset, miewebUISafelist } from './tailwind-preset.cjs';
|
|
44
44
|
export { brands, defaultBrand, enterpriseHealthBrand, miewebBrand, wagglelineBrand, webchartBrand } from './brands/index.cjs';
|
|
45
45
|
export { BrandBorderRadius, BrandBoxShadow, BrandColors, BrandConfig, BrandTypography, ColorScale, SemanticColors, createBrandPreset, generateBrandCSS, generateTailwindTheme } from './brands/types.cjs';
|
|
46
|
-
export {
|
|
46
|
+
export { bluehiveBrand } from './brands/bluehive.cjs';
|
|
47
47
|
export { ozwellBrand } from './brands/ozwell.cjs';
|
|
48
48
|
import 'clsx';
|
|
49
49
|
|
|
@@ -1425,8 +1425,9 @@ interface DialogOverlayProps {
|
|
|
1425
1425
|
onClose: () => void;
|
|
1426
1426
|
children: React$1.ReactNode;
|
|
1427
1427
|
className?: string;
|
|
1428
|
+
titleId?: string;
|
|
1428
1429
|
}
|
|
1429
|
-
declare function DialogOverlay({ isOpen, onClose, children, className, }: DialogOverlayProps): react_jsx_runtime.JSX.Element | null;
|
|
1430
|
+
declare function DialogOverlay({ isOpen, onClose, children, className, titleId, }: DialogOverlayProps): react_jsx_runtime.JSX.Element | null;
|
|
1430
1431
|
declare function BookingDialog({ isOpen, onClose, onSubmit, onCall, provider, services, defaultValues, isLoading, className, }: BookingDialogProps): react_jsx_runtime.JSX.Element;
|
|
1431
1432
|
interface InlineBookingFormProps {
|
|
1432
1433
|
provider: BookingProvider;
|
|
@@ -1926,6 +1927,30 @@ declare const countBadgeVariants: (props?: ({
|
|
|
1926
1927
|
declare const countChipVariants: (props?: ({
|
|
1927
1928
|
variant?: "alert" | "default" | "success" | "info" | "warning" | "informative" | null | undefined;
|
|
1928
1929
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1930
|
+
/** Status options for items in the hover menu */
|
|
1931
|
+
type CountBadgeItemStatus = 'active' | 'pending' | 'overdue' | 'completed' | 'cancelled';
|
|
1932
|
+
/** A single item displayed as a row in the hover menu table */
|
|
1933
|
+
interface CountBadgeItem {
|
|
1934
|
+
/** Unique identifier for the item */
|
|
1935
|
+
id: string;
|
|
1936
|
+
/** Display label for the item */
|
|
1937
|
+
label: string;
|
|
1938
|
+
/** Current status */
|
|
1939
|
+
status: CountBadgeItemStatus;
|
|
1940
|
+
}
|
|
1941
|
+
/** Action menu item for the 3-dot overflow */
|
|
1942
|
+
interface CountBadgeAction {
|
|
1943
|
+
/** Unique key for the action */
|
|
1944
|
+
key: string;
|
|
1945
|
+
/** Display label */
|
|
1946
|
+
label: string;
|
|
1947
|
+
/** Optional icon */
|
|
1948
|
+
icon?: React$1.ReactNode;
|
|
1949
|
+
/** Visual variant */
|
|
1950
|
+
variant?: 'default' | 'danger';
|
|
1951
|
+
/** Callback when the action is clicked, receives the item */
|
|
1952
|
+
onClick: (item: CountBadgeItem) => void;
|
|
1953
|
+
}
|
|
1929
1954
|
interface CountBadgeProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, 'children'>, VariantProps<typeof countBadgeVariants> {
|
|
1930
1955
|
/** The label text displayed in the badge */
|
|
1931
1956
|
label: string;
|
|
@@ -1933,6 +1958,18 @@ interface CountBadgeProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonEl
|
|
|
1933
1958
|
count: number;
|
|
1934
1959
|
/** Optional icon before the label */
|
|
1935
1960
|
icon?: React$1.ReactNode;
|
|
1961
|
+
/** Items to display in the click menu table. When provided, clicking the badge shows a popover table. */
|
|
1962
|
+
items?: CountBadgeItem[];
|
|
1963
|
+
/** Actions available in each row's 3-dot overflow menu. Defaults to View / Edit / Delete. */
|
|
1964
|
+
actions?: CountBadgeAction[];
|
|
1965
|
+
/** Callback for the default "View" action (used when `actions` is not provided) */
|
|
1966
|
+
onView?: (item: CountBadgeItem) => void;
|
|
1967
|
+
/** Callback for the default "Edit" action (used when `actions` is not provided). Called with form data when the user saves. */
|
|
1968
|
+
onEdit?: (item: CountBadgeItem, formData?: Record<string, string>) => void;
|
|
1969
|
+
/** Callback for the default "Delete" action (used when `actions` is not provided). Called after the user confirms deletion in the modal. */
|
|
1970
|
+
onDelete?: (item: CountBadgeItem) => void;
|
|
1971
|
+
/** Label used in the delete confirmation dialog (e.g. "task", "encounter"). Defaults to "item". */
|
|
1972
|
+
deleteLabel?: string;
|
|
1936
1973
|
}
|
|
1937
1974
|
/**
|
|
1938
1975
|
* A pill-shaped badge with a label and count chip, ideal for navigation
|
|
@@ -1941,12 +1978,29 @@ interface CountBadgeProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonEl
|
|
|
1941
1978
|
* Supports six semantic variants: `default`, `info`, `informative`,
|
|
1942
1979
|
* `success`, `warning`, and `alert`.
|
|
1943
1980
|
*
|
|
1981
|
+
* When `items` are provided, clicking the badge reveals a small popover
|
|
1982
|
+
* table with one row per item, each with a 3-dot overflow menu.
|
|
1983
|
+
*
|
|
1944
1984
|
* @example
|
|
1945
1985
|
* ```tsx
|
|
1946
1986
|
* <CountBadge label="Tasks" count={3} />
|
|
1947
1987
|
* <CountBadge label="Open Enc" count={5} variant="info" />
|
|
1948
1988
|
* <CountBadge label="Due List" count={4} variant="warning" />
|
|
1949
1989
|
* <CountBadge label="eSign" count={7} variant="alert" />
|
|
1990
|
+
*
|
|
1991
|
+
* // With hover menu
|
|
1992
|
+
* <CountBadge
|
|
1993
|
+
* label="Tasks"
|
|
1994
|
+
* count={3}
|
|
1995
|
+
* items={[
|
|
1996
|
+
* { id: '1', label: 'Review labs', status: 'active' },
|
|
1997
|
+
* { id: '2', label: 'Sign order', status: 'pending' },
|
|
1998
|
+
* { id: '3', label: 'Update meds', status: 'overdue' },
|
|
1999
|
+
* ]}
|
|
2000
|
+
* onView={(item) => console.log('View', item)}
|
|
2001
|
+
* onEdit={(item) => console.log('Edit', item)}
|
|
2002
|
+
* onDelete={(item) => console.log('Delete', item)}
|
|
2003
|
+
* />
|
|
1950
2004
|
* ```
|
|
1951
2005
|
*/
|
|
1952
2006
|
declare const CountBadge: React$1.ForwardRefExoticComponent<CountBadgeProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -2131,6 +2185,190 @@ interface CSVFileUploadProps {
|
|
|
2131
2185
|
}
|
|
2132
2186
|
declare function CSVFileUpload({ onFileSelect, processing, accept, className, labels, }: CSVFileUploadProps): react_jsx_runtime.JSX.Element;
|
|
2133
2187
|
|
|
2188
|
+
declare const widgetVariants: (props?: ({
|
|
2189
|
+
size?: "sm" | "md" | "lg" | "full" | null | undefined;
|
|
2190
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2191
|
+
interface DashboardWidgetProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof widgetVariants> {
|
|
2192
|
+
/** Widget title displayed in the header */
|
|
2193
|
+
title: string;
|
|
2194
|
+
/** Optional icon rendered before the title */
|
|
2195
|
+
icon?: React$1.ReactNode;
|
|
2196
|
+
/** Count badge next to the title (e.g. number of items) */
|
|
2197
|
+
count?: number;
|
|
2198
|
+
/** Callback when the "+" add button is clicked — omit to hide the button */
|
|
2199
|
+
onAdd?: () => void;
|
|
2200
|
+
/** Label for the add button (accessible) */
|
|
2201
|
+
addLabel?: string;
|
|
2202
|
+
/** Optional header-right element (replaces the default "+" button) */
|
|
2203
|
+
headerAction?: React$1.ReactNode;
|
|
2204
|
+
/** Show a loading skeleton state */
|
|
2205
|
+
loading?: boolean;
|
|
2206
|
+
/** Card accent color bar */
|
|
2207
|
+
accent?: 'primary' | 'success' | 'warning' | 'destructive' | 'info';
|
|
2208
|
+
/** Optional footer content beneath the widget body */
|
|
2209
|
+
footer?: React$1.ReactNode;
|
|
2210
|
+
}
|
|
2211
|
+
/**
|
|
2212
|
+
* A composable dashboard widget container.
|
|
2213
|
+
*
|
|
2214
|
+
* Provides a consistent card wrapper with a title bar, optional count badge,
|
|
2215
|
+
* and an add/action button. Pair with the variant sub-components
|
|
2216
|
+
* (`DashboardWidgetInfo`, `DashboardWidgetTable`, `DashboardWidgetActions`,
|
|
2217
|
+
* `DashboardWidgetDataCards`) to build dashboard layouts.
|
|
2218
|
+
*
|
|
2219
|
+
* @example
|
|
2220
|
+
* ```tsx
|
|
2221
|
+
* <DashboardWidget title="Demographics" icon={<UserIcon className="h-4 w-4" />}>
|
|
2222
|
+
* <DashboardWidgetInfo items={[{ label: 'Name', value: 'Hart, William' }]} />
|
|
2223
|
+
* </DashboardWidget>
|
|
2224
|
+
* ```
|
|
2225
|
+
*/
|
|
2226
|
+
declare const DashboardWidget: React$1.ForwardRefExoticComponent<DashboardWidgetProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2227
|
+
interface InfoItem {
|
|
2228
|
+
/** Field label (e.g. "NAME", "DOB") */
|
|
2229
|
+
label: string;
|
|
2230
|
+
/** Field value — string or ReactNode for rich content */
|
|
2231
|
+
value: React$1.ReactNode;
|
|
2232
|
+
/** Span full width of the grid row */
|
|
2233
|
+
fullWidth?: boolean;
|
|
2234
|
+
/** Custom className for this item */
|
|
2235
|
+
className?: string;
|
|
2236
|
+
}
|
|
2237
|
+
interface DashboardWidgetInfoProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2238
|
+
/** Array of label/value items to display */
|
|
2239
|
+
items: InfoItem[];
|
|
2240
|
+
/** Number of columns in the grid */
|
|
2241
|
+
columns?: 1 | 2 | 3 | 4;
|
|
2242
|
+
/** Whether labels should be rendered above values (stacked) or inline */
|
|
2243
|
+
layout?: 'stacked' | 'inline';
|
|
2244
|
+
}
|
|
2245
|
+
/**
|
|
2246
|
+
* A label/value grid for displaying static information fields.
|
|
2247
|
+
*
|
|
2248
|
+
* @example
|
|
2249
|
+
* ```tsx
|
|
2250
|
+
* <DashboardWidgetInfo
|
|
2251
|
+
* columns={2}
|
|
2252
|
+
* items={[
|
|
2253
|
+
* { label: 'Name', value: 'Hart, William' },
|
|
2254
|
+
* { label: 'DOB', value: '1948-04-03 (77 y/o)' },
|
|
2255
|
+
* { label: 'Address', value: '123 Main St\nFort Wayne, IN 46802', fullWidth: true },
|
|
2256
|
+
* ]}
|
|
2257
|
+
* />
|
|
2258
|
+
* ```
|
|
2259
|
+
*/
|
|
2260
|
+
declare const DashboardWidgetInfo: React$1.ForwardRefExoticComponent<DashboardWidgetInfoProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2261
|
+
interface WidgetTableColumn<T = Record<string, unknown>> {
|
|
2262
|
+
/** Unique column key */
|
|
2263
|
+
key: string;
|
|
2264
|
+
/** Header label — omit for a headerless table */
|
|
2265
|
+
header?: string;
|
|
2266
|
+
/** Custom cell renderer */
|
|
2267
|
+
render?: (row: T, index: number) => React$1.ReactNode;
|
|
2268
|
+
/** Alignment */
|
|
2269
|
+
align?: 'left' | 'center' | 'right';
|
|
2270
|
+
/** Header & cell className */
|
|
2271
|
+
className?: string;
|
|
2272
|
+
}
|
|
2273
|
+
interface WidgetTableAction<T = Record<string, unknown>> {
|
|
2274
|
+
/** Accessible label */
|
|
2275
|
+
label: string;
|
|
2276
|
+
/** Icon to render */
|
|
2277
|
+
icon: React$1.ReactNode;
|
|
2278
|
+
/** Click handler */
|
|
2279
|
+
onClick: (row: T, index: number) => void;
|
|
2280
|
+
/** Conditionally hide per row */
|
|
2281
|
+
hidden?: (row: T, index: number) => boolean;
|
|
2282
|
+
}
|
|
2283
|
+
interface DashboardWidgetTableProps<T = Record<string, unknown>> extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
2284
|
+
/** Column definitions */
|
|
2285
|
+
columns: WidgetTableColumn<T>[];
|
|
2286
|
+
/** Row data */
|
|
2287
|
+
data: T[];
|
|
2288
|
+
/** Row-level actions (edit, delete, etc.) rendered at the end of each row */
|
|
2289
|
+
actions?: WidgetTableAction<T>[];
|
|
2290
|
+
/** Show column headers */
|
|
2291
|
+
showHeader?: boolean;
|
|
2292
|
+
/** Callback when a row is clicked */
|
|
2293
|
+
onRowClick?: (row: T, index: number) => void;
|
|
2294
|
+
/** Message when data is empty */
|
|
2295
|
+
emptyMessage?: string;
|
|
2296
|
+
/** Key extractor for stable row keys */
|
|
2297
|
+
rowKey?: (row: T, index: number) => string;
|
|
2298
|
+
}
|
|
2299
|
+
declare const DashboardWidgetTable: <T extends Record<string, unknown>>(props: DashboardWidgetTableProps<T> & {
|
|
2300
|
+
ref?: React$1.ForwardedRef<HTMLDivElement>;
|
|
2301
|
+
}) => React$1.ReactElement | null;
|
|
2302
|
+
interface WidgetAction {
|
|
2303
|
+
/** Action label */
|
|
2304
|
+
label: string;
|
|
2305
|
+
/** Icon rendered before the label */
|
|
2306
|
+
icon?: React$1.ReactNode;
|
|
2307
|
+
/** Click handler */
|
|
2308
|
+
onClick?: () => void;
|
|
2309
|
+
/** Render as a link instead of a button */
|
|
2310
|
+
href?: string;
|
|
2311
|
+
/** Color accent for the icon */
|
|
2312
|
+
color?: 'primary' | 'green' | 'red' | 'orange' | 'blue' | 'purple' | 'amber' | 'neutral';
|
|
2313
|
+
/** Disabled state */
|
|
2314
|
+
disabled?: boolean;
|
|
2315
|
+
}
|
|
2316
|
+
interface DashboardWidgetActionsProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2317
|
+
/** Array of actions to render */
|
|
2318
|
+
actions: WidgetAction[];
|
|
2319
|
+
/** Grid columns */
|
|
2320
|
+
columns?: 1 | 2 | 3;
|
|
2321
|
+
}
|
|
2322
|
+
/**
|
|
2323
|
+
* A grid of action buttons for quick navigation / shortcuts.
|
|
2324
|
+
*
|
|
2325
|
+
* @example
|
|
2326
|
+
* ```tsx
|
|
2327
|
+
* <DashboardWidgetActions
|
|
2328
|
+
* columns={2}
|
|
2329
|
+
* actions={[
|
|
2330
|
+
* { label: 'Add Encounter', icon: <CalendarIcon />, color: 'primary', onClick: handleAdd },
|
|
2331
|
+
* { label: 'Record Vitals', icon: <HeartIcon />, color: 'red', onClick: handleVitals },
|
|
2332
|
+
* ]}
|
|
2333
|
+
* />
|
|
2334
|
+
* ```
|
|
2335
|
+
*/
|
|
2336
|
+
declare const DashboardWidgetActions: React$1.ForwardRefExoticComponent<DashboardWidgetActionsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2337
|
+
interface DataCardItem {
|
|
2338
|
+
/** Short label (e.g. "BP", "PULSE") */
|
|
2339
|
+
label: string;
|
|
2340
|
+
/** Display value */
|
|
2341
|
+
value: React$1.ReactNode;
|
|
2342
|
+
/** Optional unit suffix (e.g. "lbs", "°F") */
|
|
2343
|
+
unit?: string;
|
|
2344
|
+
/** Custom className for this card */
|
|
2345
|
+
className?: string;
|
|
2346
|
+
}
|
|
2347
|
+
interface DashboardWidgetDataCardsProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2348
|
+
/** Array of data card items */
|
|
2349
|
+
items: DataCardItem[];
|
|
2350
|
+
/** Grid columns */
|
|
2351
|
+
columns?: 2 | 3 | 4;
|
|
2352
|
+
/** Optional footer content below the grid (e.g. a date + delete button) */
|
|
2353
|
+
footer?: React$1.ReactNode;
|
|
2354
|
+
}
|
|
2355
|
+
/**
|
|
2356
|
+
* A grid of key/value stat blocks for displaying metrics at a glance.
|
|
2357
|
+
*
|
|
2358
|
+
* @example
|
|
2359
|
+
* ```tsx
|
|
2360
|
+
* <DashboardWidgetDataCards
|
|
2361
|
+
* columns={2}
|
|
2362
|
+
* items={[
|
|
2363
|
+
* { label: 'BP', value: '128/82' },
|
|
2364
|
+
* { label: 'Pulse', value: '72' },
|
|
2365
|
+
* { label: 'Temp', value: '98.6', unit: '°F' },
|
|
2366
|
+
* ]}
|
|
2367
|
+
* />
|
|
2368
|
+
* ```
|
|
2369
|
+
*/
|
|
2370
|
+
declare const DashboardWidgetDataCards: React$1.ForwardRefExoticComponent<DashboardWidgetDataCardsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2371
|
+
|
|
2134
2372
|
type DateRangePresetKey = 'today' | 'this-week' | 'this-month' | 'last-month' | 'last-24-hours' | 'last-7-days' | 'last-30-days';
|
|
2135
2373
|
interface DateRangePreset {
|
|
2136
2374
|
key: DateRangePresetKey | string;
|
|
@@ -5267,6 +5505,7 @@ interface PatientData {
|
|
|
5267
5505
|
/** Family/PCP provider name */
|
|
5268
5506
|
familyProvider?: string;
|
|
5269
5507
|
}
|
|
5508
|
+
type PatientOverflowAction = 'edit-patient' | 'add-task' | 'add-encounter' | 'add-due-list' | 'add-order' | 'add-esign' | 'add-allergy' | 'add-medication' | 'add-alert' | 'add-condition' | 'add-vitals' | 'send-message' | 'schedule-appointment' | 'print-summary' | 'export-record';
|
|
5270
5509
|
interface PatientHeaderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'className'> {
|
|
5271
5510
|
/** Patient data object */
|
|
5272
5511
|
patient: PatientData;
|
|
@@ -5296,6 +5535,14 @@ interface PatientHeaderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>
|
|
|
5296
5535
|
detailsExpanded?: boolean;
|
|
5297
5536
|
/** Maximum medications to display before "+N more" (default: 4) */
|
|
5298
5537
|
maxVisibleMeds?: number;
|
|
5538
|
+
/** Show the patient-level overflow menu to the right of count badges (default: false) */
|
|
5539
|
+
showOverflowMenu?: boolean;
|
|
5540
|
+
/** Called when a patient overflow menu action is selected */
|
|
5541
|
+
onOverflowAction?: (action: PatientOverflowAction) => void;
|
|
5542
|
+
/** Called when an 'Add' modal is submitted from the overflow menu */
|
|
5543
|
+
onAddItem?: (entityType: PatientOverflowAction, formData: Record<string, string>) => void;
|
|
5544
|
+
/** Called when the Edit Patient modal is saved */
|
|
5545
|
+
onEditPatient?: (formData: Record<string, string>) => void;
|
|
5299
5546
|
/** Additional CSS classes */
|
|
5300
5547
|
className?: string;
|
|
5301
5548
|
/** Test ID for testing */
|
|
@@ -8165,4 +8412,4 @@ declare namespace WebsiteInputGroup {
|
|
|
8165
8412
|
var displayName: string;
|
|
8166
8413
|
}
|
|
8167
8414
|
|
|
8168
|
-
export { AIChat, type AIChatCallbacks, AIChatModal, type AIChatModalProps, type AIChatProps, type AIChatSession, AIChatTrigger, type AIChatTriggerProps, AILogoIcon, type AILogoIconProps, type AIMessage, type AIMessageContent, AIMessageDisplay, type AIMessageDisplayProps, type AIMessageRole, type AIMessageStatus, type AISuggestedAction, AITypingIndicator, AccessDeniedPage, type AccessDeniedPageProps, ActionButton, type ActionButtonProps, ActionButtonsBar, type ActionButtonsBarProps, ActiveFilters, type ActiveFiltersProps, AddContactModal, type AddContactModalProps, AddServiceCard, type AddServiceCardProps, AdditionalFields, type AdditionalFieldsProps, Address, AddressCard, type AddressCardProps, AddressCompact, type AddressCompactProps, type AddressData, AddressDisplay, type AddressDisplayProps, AddressForm, type AddressFormData, type AddressFormProps, AddressInline, type AddressInlineProps, type AddressProps, type AllergyItem, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderDivider, type AppHeaderDividerProps, AppHeaderIconButton, type AppHeaderIconButtonProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderSection, type AppHeaderSectionProps, AppHeaderTitle, type AppHeaderTitleProps, AppHeaderUserMenu, type AppHeaderUserMenuProps, AttachmentPicker, type AttachmentPickerProps, AttachmentPreview, AttachmentPreviewItem, type AttachmentPreviewItemProps, type AttachmentPreviewProps, type AttachmentState, type AttachmentType, AuthButtons, type AuthButtonsProps, AuthDialog, type AuthDialogProps, type AuthMode, type BackgroundCheckCandidate, type BackgroundCheckReport, type BankAccountData, BookAppointmentButton, type BookAppointmentButtonProps, BookingDialog, type BookingDialogProps, type BookingFormData, type BookingProvider, type BookingService, BusinessHours, BusinessHoursEditor, type BusinessHoursEditorProps, type BusinessHoursProps, type BusinessHoursSchedule, type CSVColumn, CSVColumnMapper, type CSVColumnMapperProps, CSVFileUpload, type CSVFileUploadProps, type CalendarAppointment, CameraButton, type CameraButtonProps, type CameraPermission, CardSkeleton, type CardSkeletonProps, CharacterCounter, type CharacterCounterProps, type ChartDataPoint, CheckrIntegration, type CheckrIntegrationProps, ChevronIcon, type ChevronIconProps, type ClaimFormData, ClaimListingButton, type ClaimListingButtonProps, ClaimProviderForm, type ClaimProviderFormProps, CloseIcon, type CloseIconProps, CommandPalette, type CommandPaletteCategory, type CommandPaletteContextValue, type CommandPaletteItem, type CommandPaletteProps, CommandPaletteProvider, type CommandPaletteProviderProps, CommandPaletteTrigger, type CommandPaletteTriggerProps, CompactCookieBanner, type CompactCookieBannerProps, CompactFilterBar, type CompactFilterBarProps, CompactHeader, type CompactHeaderProps, CompactHours, type CompactHoursProps, CompactProviderHeader, type CompactProviderHeaderProps, type ConfirmationResult, type ConnectionInfo, type ConnectionState, ConnectionStatusBadge, type ConnectionStatusBadgeProps, ConnectionStatusBar, type ConnectionStatusBarProps, ConnectionStatusOverlay, type ConnectionStatusOverlayProps, ConsentSwitch, type ConsentSwitchProps, type Contact, type ContactAddress, type ContactFormData, type Conversation, ConversationHeader, type ConversationHeaderProps, ConversationListItem, type ConversationListItemProps, ConversationListSkeleton, type ConversationListSkeletonProps, type ConversationType, CookieConsentBanner, type CookieConsentBannerProps, type CookieConsentLink, CopyrightText, type CopyrightTextProps, CountBadge, type CountBadgeProps, type CreateInvoiceData, CreateInvoiceModal, type CreateInvoiceModalProps, CreateReferralModal, type CreateReferralModalProps, type CreditCardData, type CustomField, DEFAULT_ACCEPTED_FILE_TYPES, DEFAULT_ERROR_CONFIGS, DEFAULT_LANGUAGES, DEFAULT_MAX_FILE_SIZE_MB, DEFAULT_RADIUS_OPTIONS, DEFAULT_SOCIAL_PROVIDERS, DOTBadge, type DOTBadgeProps, type DateRange$1 as DateRange, DateRangeFilter, type DateRangeFilterProps, DateRangePicker, type DateRangePickerProps, type DateRangePreset, type DateRangePresetKey, DateSeparator, type DateSeparatorProps, type DayHours, type DaySchedule, type Department, type DetectionConfig, type DetectionMetrics, type DetectionState, DialogOverlay, type DialogOverlayProps, DisclaimerText, type DisclaimerTextProps, type DocumentBoundary, DocumentDetectionOverlay, DocumentScanner, type DocumentScannerProps, DragDropZone, type DragDropZoneProps, DropZone, type DropZoneProps, DropzoneOverlay, type DropzoneOverlayProps, EditUserRoleModal, type EditUserRoleModalProps, type Employee, type EmployeeAddress, type EmployeeData, EmployeeForm, type EmployeeFormData, type EmployeeFormProps, type EmployeePhone, EmployeeProfileCard, type EmployeeProfileCardProps, type Employer, type EmployerAccess, type EmployerAddress, type EmployerContact, EmployerContactCard, type EmployerContactCardProps, type EmployerDetails, type EmployerInvoice, EmployerList, type EmployerListProps, type EmployerOption, type EmployerOrder, EmployerPricingCard, type EmployerPricingCardProps, type EmployerServiceConfig, EmployerServiceModal, type EmployerServiceModalProps, EmployerView, type EmployerViewProps, EmptyState, type EmptyStateProps, ErrorPage, type ErrorPageConfig, type ErrorPageProps, type ErrorType, type FAQItem, type FieldOption, type FileItem, FileManager, type FileManagerProps, FilePreview, type FilePreviewProps, FloatingAIChat, type FloatingAIChatProps, FloatingInput, type FloatingInputProps, type FooterLink, type FooterLinkGroup, FooterLinkSection, type FooterLinkSectionProps, SocialMediaLinks as FooterSocialLinks, type SocialMediaLinksProps as FooterSocialLinksProps, type GeolocationStatus, type HRISProvider, HRISProviderSelector, type HRISProviderSelectorProps, HelpSupportPanel, type HelpSupportPanelProps, HeroSearchBar, type HeroSearchBarProps, HoursSummary, type HoursSummaryProps, InlineBookingForm, type InlineBookingFormProps, InputProps, type InventoryLogEntry, InventoryManager, type InventoryManagerProps, InviteUserModal, type InviteUserModalProps, type Invoice, type InvoiceLineItem$1 as InvoiceLineItem, InvoiceList, type InvoiceListProps, type InvoicePaymentDetails, InvoicePaymentPage, type InvoicePaymentPageProps, InvoiceView, type InvoiceViewProps, type KeyValueEntry, type Language, LanguageSelector, LanguageSelectorInline, type LanguageSelectorInlineProps, LanguageSelectorNative, type LanguageSelectorNativeProps, type LanguageSelectorProps, LegalLinks, type LegalLinksProps, LightboxModal, type LightboxModalProps, LoadMoreButton, type LoadMoreButtonProps, LoadingBar, type LoadingBarProps, LoadingDots, type LoadingDotsProps, LoadingOverlay, type LoadingOverlayProps, LoadingPage, type LoadingPageProps, LoadingSkeleton, type LoadingSkeletonProps, type MCPResource, type MCPResourceLink, type MCPToolCall, MCPToolCallDisplay, type MCPToolCallDisplayProps, type MCPToolInfo, type MCPToolParameter, type MCPToolResult, type MCPToolStatus, MaintenancePage, type MaintenancePageProps, type MedicationItem, type Message, type MessageAction, type MessageAttachment, MessageAvatar, MessageBubble, type MessageBubbleProps, MessageComposer, type MessageComposerProps, type MessageGroup, MessageList, type MessageListProps, type MessageParticipant, type MessageReaction, type MessageStatus, MessageStatusIcon, type MessageStatusIconProps, type MessageStatusIndicator, MessageThread, type MessageThreadProps, type MessageType, type MessagingEventHandlers, type MessagingLoadingState, MessagingSplitView, type MessagingSplitViewProps, type MetricData, MobileBackButton, type MobileBackButtonProps, MobileMenuButton, type MobileMenuButtonProps, MobileMenuPanel, type MobileMenuPanelProps, type NavLink, NavLinks, type NavLinksProps, type NewMessage, NewsletterForm, type NewsletterFormProps, NotFoundPage, type NotFoundPageProps, type Notification, NotificationCenter, type NotificationCenterProps, OfflinePage, type OfflinePageProps, OnboardingCompletion, type OnboardingCompletionProps, type OnboardingStep, OnboardingStepQuestion, type OnboardingStepQuestionProps, OnboardingWizard, type OnboardingWizardProps, OpenStatusBadge, OrderCard, type OrderCardProps, OrderConfirmation, type OrderConfirmationProps, OrderConfirmationWizard, type OrderConfirmationWizardProps, OrderDetailSidebar, type OrderDetailSidebarProps, type OrderDetails, type OrderEmployee, type OrderEmployer, OrderList, type OrderListProps, type OrderListTab, type OrderLookupData, OrderLookupForm, type OrderLookupFormProps, type OrderOption, type OrderService, OrderSidebar, type OrderSidebarProps, type OrderSidebarTab, OrderSidebarTabs, type OrderSidebarTabsProps, type OrderStatus$1 as OrderStatus, PageHeader, type PageHeaderProps, type PatientData, PatientHeader, type PatientHeaderProps, type PatientName, type Payment, type PaymentFormData, PaymentHistoryTable, type PaymentHistoryTableProps, type PaymentMethod, PaymentMethodBank, type PaymentMethodBankProps, PaymentMethodCard, type PaymentMethodCardProps, PaymentMethodList, type PaymentMethodListProps, type PendingClaim, PendingClaimsTable, type PendingClaimsTableProps, type Permission, type PermissionGroup, PermissionsEditor, type PermissionsEditorProps, type Point, type PostalCodeInfo, type PreviewFile, type PricingTier, ProductVersion, ProductVersionBadge, type ProductVersionBadgeProps, type ProductVersionProps, type Provider, type ProviderAddress$1 as ProviderAddress, Breadcrumb as ProviderBreadcrumb, type BreadcrumbItem as ProviderBreadcrumbItem, type BreadcrumbProps as ProviderBreadcrumbProps, ProviderCard, ProviderCardGrid, type ProviderCardGridProps, type ProviderCardProps, ProviderCardSkeleton, type ProviderCardSkeletonProps, type ProviderContact, type ProviderAddress as ProviderDetailAddress, type ProviderDetailData, ProviderDetailHeader, type ProviderDetailHeaderProps, ProviderDetailHeaderSkeleton, type ProviderDetailHeaderSkeletonProps, type ProviderFilters, ProviderLogo, type ProviderLogoProps, type ProviderOption, ProviderOverview, type ProviderOverviewProps, ProviderSearchBar, type ProviderSearchBarProps, ProviderSearchFilters, type ProviderSearchFiltersProps, ProviderSelector, type ProviderSelectorProps, type ProviderService, ProviderSettings, type ProviderSettingsData, type ProviderSettingsProps, SocialMediaLinks$1 as ProviderSocialLinks, type SocialMediaLinksProps$1 as ProviderSocialLinksProps, type ProviderStats, type ProviderUrls, type ProviderUser, ProviderUsersTable, type ProviderUsersTableProps, QuickBookCard, type QuickBookCardProps, type QuickLink, QuickLinksCard, type QuickLinksCardProps, type RadiusOption, type ReadReceipt, ReadReceiptIndicator, type ReadReceiptIndicatorProps, type RecentActivity, type RecurringService, RecurringServiceAddCard, type RecurringServiceAddCardProps, RecurringServiceCard, type RecurringServiceCardProps, type RecurringServiceCardState, type RecurringServiceFormData, RecurringServiceGrid, type RecurringServiceGridProps, RecurringServiceSetupModal, type RecurringServiceSetupModalProps, type ReferralData, RefreshIcon, type RefreshIconProps, RejectionModal, type RejectionModalProps, type RejectionReason, ReportDashboard, type ReportDashboardProps, ReportDatePicker, type ReportDatePickerProps, ReportLink, type ReportLinkProps, type ReportResult, ResourceLink, type ResourceLinkProps, type ResultStatus, ResultsEntryCard, type ResultsEntryData, ResultsEntryForm, type ResultsEntryFormProps, ResultsEntryModal, type ResultsEntryModalProps, type Role, type SSOConfigData, SSOConfigForm, type SSOConfigFormProps, type ScannerSource, type ScannerState, ScheduleCalendar, type ScheduleCalendarProps, type SearchResults, SearchResultsMessage, type SearchResultsMessageProps, type SelectableService, SelectedServicesBadges, type SelectedServicesBadgesProps, SendButton, type SendButtonProps, SendIcon, type SendIconProps, ServerErrorPage, type ServerErrorPageProps, ServiceAccordion, type ServiceAccordionProps, ServiceBadge, ServiceBadgeGroup, type ServiceBadgeGroupProps, type ServiceBadgeProps, ServiceCard, type ServiceCardProps, type ServiceCategory$1 as ServiceCategory, ServiceCategoryBadge, type ServiceCategoryBadgeProps, type ServiceFormData, ServiceGeneralSettings, type ServiceGeneralSettingsProps, ServiceGrid, type ServiceGridProps, type ServiceGroup, type ServiceItem, ServiceLink, ServiceList, type ServiceListProps, ServiceMultiSelect, type ServiceOption, ServicePicker, type ServicePickerProps, type ServicePrice, ServicePricingManager, type ServicePricingManagerProps, ServiceSelect, type ServiceSelectProps, ServiceShippingSettings, type ServiceShippingSettingsProps, type ServiceSubCategory, ServiceTagCloud, ServiceTagCloudBadges, type ServiceTagCloudProps as ServiceTagCloudBadgesProps, type ServiceTagCloudProps$1 as ServiceTagCloudProps, SetupServiceModal, type SetupServiceModalProps, type ShippingAddress, Sidebar, SidebarContent, type SidebarContentProps, type SidebarContextValue, SidebarFooter, type SidebarFooterProps, SidebarHeader, type SidebarHeaderProps, SidebarMobileToggle, type SidebarMobileToggleProps, SidebarNav, SidebarNavGroup, type SidebarNavGroupProps, SidebarNavItem, type SidebarNavItemProps, type SidebarNavProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarSearch, type SidebarSearchProps, SidebarToggle, type SidebarToggleProps, type SignupData, SimpleFooter, type SimpleFooterProps, SiteFooter, type SiteFooterProps, SiteHeader, type SiteHeaderProps, SiteLogo, type SiteLogoProps, SkeletonMessage, type SkeletonMessageProps, type SocialLink, type SocialProvider, SparklesIcon, type SparklesIconProps, SpinnerIcon, type SpinnerIconProps, SpinnerProps, type Step, StepIndicator, type StepIndicatorProps, StripeBadge, type StripeBadgeProps, StripeSecureBadge, type StripeSecureBadgeProps, SuggestedActions, type SuggestedActionsProps, type SupportContact, type SystemMessageType, type SystemReport, type TimeRange, type TimeSlot, type TimelineEvent, TimelineEventList, type TimelineEventListProps, TimelineProgress, type TimelineProgressProps, type TimelineSize, type TimelineStep, type TimelineStepState, Toast, ToastContainer, type ToastContainerProps, type ToastContextValue, type ToastData, type ToastOptions, type ToastPosition, type ToastProps, ToastProvider, type ToastProviderProps, type ToastVariant, ToolStatusIcon, type TopItem, TypingIndicator, type TypingIndicatorProps, type TypingState, UpdateAvailableOverlay, type UpdateAvailableOverlayProps, type UpdateInfo, type UseConnectionStatusOptions, type UseConnectionStatusReturn, type UseCookieConsentOptions, type UseCookieConsentReturn, type UseDropzoneOptions, type UseDropzoneReturn, type UseMessageScrollOptions, type UseMessageScrollReturn, type UseMessagesOptions, type UseMessagesReturn, type UseReadReceiptsOptions, type UseTypingIndicatorOptions, type UseTypingIndicatorReturn, UserMenu, type UserMenuProps, type UserProfile, type UserRole, type ValidationError, VerifiedBadge, type VerifiedBadgeProps, WEBSITE_TYPES, WebChartReportViewer, type WebChartReportViewerProps, WebcamModal, type WebcamModalProps, type WebsiteEntry, WebsiteInput, WebsiteInputGroup, type WebsiteInputGroupProps, type WebsiteInputProps, type WebsiteType, bubbleVariants, countBadgeVariants, countChipVariants, create24HourSchedule, createDefaultSchedule, createWeekdaySchedule, defaultOrderTabs, formatAddressLines, formatAddressSingleLine, formatCityState, formatCityStateZip, formatDateLabel, formatFileSize, formatLastSeen, generateAttachmentId, generateId, getConversationSubtitle, getConversationTitle, getFileType, getGoogleMapsSearchUrl, getGoogleMapsUrl, getToolIcon, groupMessagesByDate, headerVariants$2 as headerVariants, isSameSenderGroup, isValidUrl, sendButtonVariants, useCamera, useCommandPalette, useConnectionStatus, useCookieConsent, useDocumentDetection, useDropzone, useFileUpload, useMessageScroll, useMessages, useReadReceipts, useSidebar, useToast, useTypingIndicator, validateFile };
|
|
8415
|
+
export { AIChat, type AIChatCallbacks, AIChatModal, type AIChatModalProps, type AIChatProps, type AIChatSession, AIChatTrigger, type AIChatTriggerProps, AILogoIcon, type AILogoIconProps, type AIMessage, type AIMessageContent, AIMessageDisplay, type AIMessageDisplayProps, type AIMessageRole, type AIMessageStatus, type AISuggestedAction, AITypingIndicator, AccessDeniedPage, type AccessDeniedPageProps, ActionButton, type ActionButtonProps, ActionButtonsBar, type ActionButtonsBarProps, ActiveFilters, type ActiveFiltersProps, AddContactModal, type AddContactModalProps, AddServiceCard, type AddServiceCardProps, AdditionalFields, type AdditionalFieldsProps, Address, AddressCard, type AddressCardProps, AddressCompact, type AddressCompactProps, type AddressData, AddressDisplay, type AddressDisplayProps, AddressForm, type AddressFormData, type AddressFormProps, AddressInline, type AddressInlineProps, type AddressProps, type AllergyItem, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderDivider, type AppHeaderDividerProps, AppHeaderIconButton, type AppHeaderIconButtonProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderSection, type AppHeaderSectionProps, AppHeaderTitle, type AppHeaderTitleProps, AppHeaderUserMenu, type AppHeaderUserMenuProps, AttachmentPicker, type AttachmentPickerProps, AttachmentPreview, AttachmentPreviewItem, type AttachmentPreviewItemProps, type AttachmentPreviewProps, type AttachmentState, type AttachmentType, AuthButtons, type AuthButtonsProps, AuthDialog, type AuthDialogProps, type AuthMode, type BackgroundCheckCandidate, type BackgroundCheckReport, type BankAccountData, BookAppointmentButton, type BookAppointmentButtonProps, BookingDialog, type BookingDialogProps, type BookingFormData, type BookingProvider, type BookingService, BusinessHours, BusinessHoursEditor, type BusinessHoursEditorProps, type BusinessHoursProps, type BusinessHoursSchedule, type CSVColumn, CSVColumnMapper, type CSVColumnMapperProps, CSVFileUpload, type CSVFileUploadProps, type CalendarAppointment, CameraButton, type CameraButtonProps, type CameraPermission, CardSkeleton, type CardSkeletonProps, CharacterCounter, type CharacterCounterProps, type ChartDataPoint, CheckrIntegration, type CheckrIntegrationProps, ChevronIcon, type ChevronIconProps, type ClaimFormData, ClaimListingButton, type ClaimListingButtonProps, ClaimProviderForm, type ClaimProviderFormProps, CloseIcon, type CloseIconProps, CommandPalette, type CommandPaletteCategory, type CommandPaletteContextValue, type CommandPaletteItem, type CommandPaletteProps, CommandPaletteProvider, type CommandPaletteProviderProps, CommandPaletteTrigger, type CommandPaletteTriggerProps, CompactCookieBanner, type CompactCookieBannerProps, CompactFilterBar, type CompactFilterBarProps, CompactHeader, type CompactHeaderProps, CompactHours, type CompactHoursProps, CompactProviderHeader, type CompactProviderHeaderProps, type ConfirmationResult, type ConnectionInfo, type ConnectionState, ConnectionStatusBadge, type ConnectionStatusBadgeProps, ConnectionStatusBar, type ConnectionStatusBarProps, ConnectionStatusOverlay, type ConnectionStatusOverlayProps, ConsentSwitch, type ConsentSwitchProps, type Contact, type ContactAddress, type ContactFormData, type Conversation, ConversationHeader, type ConversationHeaderProps, ConversationListItem, type ConversationListItemProps, ConversationListSkeleton, type ConversationListSkeletonProps, type ConversationType, CookieConsentBanner, type CookieConsentBannerProps, type CookieConsentLink, CopyrightText, type CopyrightTextProps, CountBadge, type CountBadgeAction, type CountBadgeItem, type CountBadgeItemStatus, type CountBadgeProps, type CreateInvoiceData, CreateInvoiceModal, type CreateInvoiceModalProps, CreateReferralModal, type CreateReferralModalProps, type CreditCardData, type CustomField, DEFAULT_ACCEPTED_FILE_TYPES, DEFAULT_ERROR_CONFIGS, DEFAULT_LANGUAGES, DEFAULT_MAX_FILE_SIZE_MB, DEFAULT_RADIUS_OPTIONS, DEFAULT_SOCIAL_PROVIDERS, DOTBadge, type DOTBadgeProps, DashboardWidget, DashboardWidgetActions, type DashboardWidgetActionsProps, DashboardWidgetDataCards, type DashboardWidgetDataCardsProps, DashboardWidgetInfo, type DashboardWidgetInfoProps, type DashboardWidgetProps, DashboardWidgetTable, type DashboardWidgetTableProps, type DataCardItem, type DateRange$1 as DateRange, DateRangeFilter, type DateRangeFilterProps, DateRangePicker, type DateRangePickerProps, type DateRangePreset, type DateRangePresetKey, DateSeparator, type DateSeparatorProps, type DayHours, type DaySchedule, type Department, type DetectionConfig, type DetectionMetrics, type DetectionState, DialogOverlay, type DialogOverlayProps, DisclaimerText, type DisclaimerTextProps, type DocumentBoundary, DocumentDetectionOverlay, DocumentScanner, type DocumentScannerProps, DragDropZone, type DragDropZoneProps, DropZone, type DropZoneProps, DropzoneOverlay, type DropzoneOverlayProps, EditUserRoleModal, type EditUserRoleModalProps, type Employee, type EmployeeAddress, type EmployeeData, EmployeeForm, type EmployeeFormData, type EmployeeFormProps, type EmployeePhone, EmployeeProfileCard, type EmployeeProfileCardProps, type Employer, type EmployerAccess, type EmployerAddress, type EmployerContact, EmployerContactCard, type EmployerContactCardProps, type EmployerDetails, type EmployerInvoice, EmployerList, type EmployerListProps, type EmployerOption, type EmployerOrder, EmployerPricingCard, type EmployerPricingCardProps, type EmployerServiceConfig, EmployerServiceModal, type EmployerServiceModalProps, EmployerView, type EmployerViewProps, EmptyState, type EmptyStateProps, ErrorPage, type ErrorPageConfig, type ErrorPageProps, type ErrorType, type FAQItem, type FieldOption, type FileItem, FileManager, type FileManagerProps, FilePreview, type FilePreviewProps, FloatingAIChat, type FloatingAIChatProps, FloatingInput, type FloatingInputProps, type FooterLink, type FooterLinkGroup, FooterLinkSection, type FooterLinkSectionProps, SocialMediaLinks as FooterSocialLinks, type SocialMediaLinksProps as FooterSocialLinksProps, type GeolocationStatus, type HRISProvider, HRISProviderSelector, type HRISProviderSelectorProps, HelpSupportPanel, type HelpSupportPanelProps, HeroSearchBar, type HeroSearchBarProps, HoursSummary, type HoursSummaryProps, type InfoItem, InlineBookingForm, type InlineBookingFormProps, InputProps, type InventoryLogEntry, InventoryManager, type InventoryManagerProps, InviteUserModal, type InviteUserModalProps, type Invoice, type InvoiceLineItem$1 as InvoiceLineItem, InvoiceList, type InvoiceListProps, type InvoicePaymentDetails, InvoicePaymentPage, type InvoicePaymentPageProps, InvoiceView, type InvoiceViewProps, type KeyValueEntry, type Language, LanguageSelector, LanguageSelectorInline, type LanguageSelectorInlineProps, LanguageSelectorNative, type LanguageSelectorNativeProps, type LanguageSelectorProps, LegalLinks, type LegalLinksProps, LightboxModal, type LightboxModalProps, LoadMoreButton, type LoadMoreButtonProps, LoadingBar, type LoadingBarProps, LoadingDots, type LoadingDotsProps, LoadingOverlay, type LoadingOverlayProps, LoadingPage, type LoadingPageProps, LoadingSkeleton, type LoadingSkeletonProps, type MCPResource, type MCPResourceLink, type MCPToolCall, MCPToolCallDisplay, type MCPToolCallDisplayProps, type MCPToolInfo, type MCPToolParameter, type MCPToolResult, type MCPToolStatus, MaintenancePage, type MaintenancePageProps, type MedicationItem, type Message, type MessageAction, type MessageAttachment, MessageAvatar, MessageBubble, type MessageBubbleProps, MessageComposer, type MessageComposerProps, type MessageGroup, MessageList, type MessageListProps, type MessageParticipant, type MessageReaction, type MessageStatus, MessageStatusIcon, type MessageStatusIconProps, type MessageStatusIndicator, MessageThread, type MessageThreadProps, type MessageType, type MessagingEventHandlers, type MessagingLoadingState, MessagingSplitView, type MessagingSplitViewProps, type MetricData, MobileBackButton, type MobileBackButtonProps, MobileMenuButton, type MobileMenuButtonProps, MobileMenuPanel, type MobileMenuPanelProps, type NavLink, NavLinks, type NavLinksProps, type NewMessage, NewsletterForm, type NewsletterFormProps, NotFoundPage, type NotFoundPageProps, type Notification, NotificationCenter, type NotificationCenterProps, OfflinePage, type OfflinePageProps, OnboardingCompletion, type OnboardingCompletionProps, type OnboardingStep, OnboardingStepQuestion, type OnboardingStepQuestionProps, OnboardingWizard, type OnboardingWizardProps, OpenStatusBadge, OrderCard, type OrderCardProps, OrderConfirmation, type OrderConfirmationProps, OrderConfirmationWizard, type OrderConfirmationWizardProps, OrderDetailSidebar, type OrderDetailSidebarProps, type OrderDetails, type OrderEmployee, type OrderEmployer, OrderList, type OrderListProps, type OrderListTab, type OrderLookupData, OrderLookupForm, type OrderLookupFormProps, type OrderOption, type OrderService, OrderSidebar, type OrderSidebarProps, type OrderSidebarTab, OrderSidebarTabs, type OrderSidebarTabsProps, type OrderStatus$1 as OrderStatus, PageHeader, type PageHeaderProps, type PatientData, PatientHeader, type PatientHeaderProps, type PatientName, type PatientOverflowAction, type Payment, type PaymentFormData, PaymentHistoryTable, type PaymentHistoryTableProps, type PaymentMethod, PaymentMethodBank, type PaymentMethodBankProps, PaymentMethodCard, type PaymentMethodCardProps, PaymentMethodList, type PaymentMethodListProps, type PendingClaim, PendingClaimsTable, type PendingClaimsTableProps, type Permission, type PermissionGroup, PermissionsEditor, type PermissionsEditorProps, type Point, type PostalCodeInfo, type PreviewFile, type PricingTier, ProductVersion, ProductVersionBadge, type ProductVersionBadgeProps, type ProductVersionProps, type Provider, type ProviderAddress$1 as ProviderAddress, Breadcrumb as ProviderBreadcrumb, type BreadcrumbItem as ProviderBreadcrumbItem, type BreadcrumbProps as ProviderBreadcrumbProps, ProviderCard, ProviderCardGrid, type ProviderCardGridProps, type ProviderCardProps, ProviderCardSkeleton, type ProviderCardSkeletonProps, type ProviderContact, type ProviderAddress as ProviderDetailAddress, type ProviderDetailData, ProviderDetailHeader, type ProviderDetailHeaderProps, ProviderDetailHeaderSkeleton, type ProviderDetailHeaderSkeletonProps, type ProviderFilters, ProviderLogo, type ProviderLogoProps, type ProviderOption, ProviderOverview, type ProviderOverviewProps, ProviderSearchBar, type ProviderSearchBarProps, ProviderSearchFilters, type ProviderSearchFiltersProps, ProviderSelector, type ProviderSelectorProps, type ProviderService, ProviderSettings, type ProviderSettingsData, type ProviderSettingsProps, SocialMediaLinks$1 as ProviderSocialLinks, type SocialMediaLinksProps$1 as ProviderSocialLinksProps, type ProviderStats, type ProviderUrls, type ProviderUser, ProviderUsersTable, type ProviderUsersTableProps, QuickBookCard, type QuickBookCardProps, type QuickLink, QuickLinksCard, type QuickLinksCardProps, type RadiusOption, type ReadReceipt, ReadReceiptIndicator, type ReadReceiptIndicatorProps, type RecentActivity, type RecurringService, RecurringServiceAddCard, type RecurringServiceAddCardProps, RecurringServiceCard, type RecurringServiceCardProps, type RecurringServiceCardState, type RecurringServiceFormData, RecurringServiceGrid, type RecurringServiceGridProps, RecurringServiceSetupModal, type RecurringServiceSetupModalProps, type ReferralData, RefreshIcon, type RefreshIconProps, RejectionModal, type RejectionModalProps, type RejectionReason, ReportDashboard, type ReportDashboardProps, ReportDatePicker, type ReportDatePickerProps, ReportLink, type ReportLinkProps, type ReportResult, ResourceLink, type ResourceLinkProps, type ResultStatus, ResultsEntryCard, type ResultsEntryData, ResultsEntryForm, type ResultsEntryFormProps, ResultsEntryModal, type ResultsEntryModalProps, type Role, type SSOConfigData, SSOConfigForm, type SSOConfigFormProps, type ScannerSource, type ScannerState, ScheduleCalendar, type ScheduleCalendarProps, type SearchResults, SearchResultsMessage, type SearchResultsMessageProps, type SelectableService, SelectedServicesBadges, type SelectedServicesBadgesProps, SendButton, type SendButtonProps, SendIcon, type SendIconProps, ServerErrorPage, type ServerErrorPageProps, ServiceAccordion, type ServiceAccordionProps, ServiceBadge, ServiceBadgeGroup, type ServiceBadgeGroupProps, type ServiceBadgeProps, ServiceCard, type ServiceCardProps, type ServiceCategory$1 as ServiceCategory, ServiceCategoryBadge, type ServiceCategoryBadgeProps, type ServiceFormData, ServiceGeneralSettings, type ServiceGeneralSettingsProps, ServiceGrid, type ServiceGridProps, type ServiceGroup, type ServiceItem, ServiceLink, ServiceList, type ServiceListProps, ServiceMultiSelect, type ServiceOption, ServicePicker, type ServicePickerProps, type ServicePrice, ServicePricingManager, type ServicePricingManagerProps, ServiceSelect, type ServiceSelectProps, ServiceShippingSettings, type ServiceShippingSettingsProps, type ServiceSubCategory, ServiceTagCloud, ServiceTagCloudBadges, type ServiceTagCloudProps as ServiceTagCloudBadgesProps, type ServiceTagCloudProps$1 as ServiceTagCloudProps, SetupServiceModal, type SetupServiceModalProps, type ShippingAddress, Sidebar, SidebarContent, type SidebarContentProps, type SidebarContextValue, SidebarFooter, type SidebarFooterProps, SidebarHeader, type SidebarHeaderProps, SidebarMobileToggle, type SidebarMobileToggleProps, SidebarNav, SidebarNavGroup, type SidebarNavGroupProps, SidebarNavItem, type SidebarNavItemProps, type SidebarNavProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarSearch, type SidebarSearchProps, SidebarToggle, type SidebarToggleProps, type SignupData, SimpleFooter, type SimpleFooterProps, SiteFooter, type SiteFooterProps, SiteHeader, type SiteHeaderProps, SiteLogo, type SiteLogoProps, SkeletonMessage, type SkeletonMessageProps, type SocialLink, type SocialProvider, SparklesIcon, type SparklesIconProps, SpinnerIcon, type SpinnerIconProps, SpinnerProps, type Step, StepIndicator, type StepIndicatorProps, StripeBadge, type StripeBadgeProps, StripeSecureBadge, type StripeSecureBadgeProps, SuggestedActions, type SuggestedActionsProps, type SupportContact, type SystemMessageType, type SystemReport, type TimeRange, type TimeSlot, type TimelineEvent, TimelineEventList, type TimelineEventListProps, TimelineProgress, type TimelineProgressProps, type TimelineSize, type TimelineStep, type TimelineStepState, Toast, ToastContainer, type ToastContainerProps, type ToastContextValue, type ToastData, type ToastOptions, type ToastPosition, type ToastProps, ToastProvider, type ToastProviderProps, type ToastVariant, ToolStatusIcon, type TopItem, TypingIndicator, type TypingIndicatorProps, type TypingState, UpdateAvailableOverlay, type UpdateAvailableOverlayProps, type UpdateInfo, type UseConnectionStatusOptions, type UseConnectionStatusReturn, type UseCookieConsentOptions, type UseCookieConsentReturn, type UseDropzoneOptions, type UseDropzoneReturn, type UseMessageScrollOptions, type UseMessageScrollReturn, type UseMessagesOptions, type UseMessagesReturn, type UseReadReceiptsOptions, type UseTypingIndicatorOptions, type UseTypingIndicatorReturn, UserMenu, type UserMenuProps, type UserProfile, type UserRole, type ValidationError, VerifiedBadge, type VerifiedBadgeProps, WEBSITE_TYPES, WebChartReportViewer, type WebChartReportViewerProps, WebcamModal, type WebcamModalProps, type WebsiteEntry, WebsiteInput, WebsiteInputGroup, type WebsiteInputGroupProps, type WebsiteInputProps, type WebsiteType, type WidgetAction, type WidgetTableAction, type WidgetTableColumn, bubbleVariants, countBadgeVariants, countChipVariants, create24HourSchedule, createDefaultSchedule, createWeekdaySchedule, defaultOrderTabs, formatAddressLines, formatAddressSingleLine, formatCityState, formatCityStateZip, formatDateLabel, formatFileSize, formatLastSeen, generateAttachmentId, generateId, getConversationSubtitle, getConversationTitle, getFileType, getGoogleMapsSearchUrl, getGoogleMapsUrl, getToolIcon, groupMessagesByDate, headerVariants$2 as headerVariants, isSameSenderGroup, isValidUrl, sendButtonVariants, useCamera, useCommandPalette, useConnectionStatus, useCookieConsent, useDocumentDetection, useDropzone, useFileUpload, useMessageScroll, useMessages, useReadReceipts, useSidebar, useToast, useTypingIndicator, validateFile, widgetVariants };
|