opus-react 0.3.4 → 0.3.7
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 +4190 -2044
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +4030 -1835
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +217 -4
- package/dist/index.d.ts +217 -4
- package/dist/index.js +4158 -1998
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { ButtonHTMLAttributes, ReactNode, ChangeEventHandler, Ref, CSSProperties, ComponentPropsWithoutRef, RefObject, HTMLAttributes, MouseEvent, ElementType } from 'react';
|
|
3
|
+
import { StyleSpecification } from 'maplibre-gl';
|
|
3
4
|
|
|
4
5
|
type Theme = "light" | "dark";
|
|
5
6
|
type FieldMode = "stacked" | "flagged";
|
|
@@ -45,7 +46,8 @@ type DrawerSide = "left" | "right" | "top" | "bottom";
|
|
|
45
46
|
type PopoverPlacement = "top" | "right" | "bottom" | "left";
|
|
46
47
|
type DropdownMenuPlacement = "bottom-start" | "bottom-end" | "top-start" | "top-end";
|
|
47
48
|
type TabsOrientation = "horizontal" | "vertical";
|
|
48
|
-
type TabsVariant = "line" | "contained";
|
|
49
|
+
type TabsVariant = "line" | "contained" | "card";
|
|
50
|
+
type TabsPanelMode = "active" | "crossfade";
|
|
49
51
|
type SurfaceTone = "default" | "accent" | "success" | "warning" | "danger" | "info";
|
|
50
52
|
type SurfaceDensity = "comfortable" | "compact";
|
|
51
53
|
type TableDensity = "comfortable" | "compact";
|
|
@@ -909,15 +911,24 @@ type TabItem = {
|
|
|
909
911
|
};
|
|
910
912
|
type TabsProps = {
|
|
911
913
|
"aria-label"?: string;
|
|
914
|
+
className?: string;
|
|
915
|
+
/** Card variant only: inset padding on the panel body (active mode). Prefer wrapping panel content instead. */
|
|
916
|
+
cardPanelPadding?: boolean;
|
|
912
917
|
defaultValue?: string;
|
|
913
918
|
fitted?: boolean;
|
|
914
919
|
items: TabItem[];
|
|
915
920
|
onValueChange?: (value: string) => void;
|
|
916
921
|
orientation?: TabsOrientation;
|
|
922
|
+
panelClassName?: string;
|
|
923
|
+
panelContentClassName?: string;
|
|
924
|
+
/** How tab panels are rendered. Card variant defaults to crossfade. */
|
|
925
|
+
panelMode?: TabsPanelMode;
|
|
926
|
+
/** Content aligned to the end of the tab row (e.g. context actions). */
|
|
927
|
+
trailing?: ReactNode;
|
|
917
928
|
value?: string;
|
|
918
929
|
variant?: TabsVariant;
|
|
919
930
|
};
|
|
920
|
-
declare function Tabs({ "aria-label": ariaLabel, defaultValue, fitted, items, onValueChange, orientation, value, variant, }: TabsProps): react.JSX.Element;
|
|
931
|
+
declare function Tabs({ "aria-label": ariaLabel, cardPanelPadding, className, defaultValue, fitted, items, onValueChange, orientation, panelClassName, panelContentClassName, panelMode, trailing, value, variant, }: TabsProps): react.JSX.Element;
|
|
921
932
|
|
|
922
933
|
type CardProps = {
|
|
923
934
|
actions?: ReactNode;
|
|
@@ -1005,6 +1016,48 @@ type MetricTileProps = {
|
|
|
1005
1016
|
};
|
|
1006
1017
|
declare function MetricTile({ density, icon, label, sparkline, value }: MetricTileProps): react.JSX.Element;
|
|
1007
1018
|
|
|
1019
|
+
type MapCoordinate = [longitude: number, latitude: number];
|
|
1020
|
+
type MapMarker = {
|
|
1021
|
+
id: string;
|
|
1022
|
+
label: string;
|
|
1023
|
+
coordinates: MapCoordinate;
|
|
1024
|
+
description?: string;
|
|
1025
|
+
tone?: "accent" | "blue" | "green" | "warning";
|
|
1026
|
+
};
|
|
1027
|
+
type MapReverseGeocoder = (coordinates: MapCoordinate, signal: AbortSignal) => Promise<string | null>;
|
|
1028
|
+
type MapSearchResult = {
|
|
1029
|
+
id: string;
|
|
1030
|
+
label: string;
|
|
1031
|
+
coordinates: MapCoordinate;
|
|
1032
|
+
};
|
|
1033
|
+
type MapSearchProvider = (query: string, signal: AbortSignal) => Promise<MapSearchResult[]>;
|
|
1034
|
+
type MapProps = {
|
|
1035
|
+
ariaLabel?: string;
|
|
1036
|
+
center?: MapCoordinate;
|
|
1037
|
+
className?: string;
|
|
1038
|
+
darkStyleUrl?: string | StyleSpecification;
|
|
1039
|
+
height?: number | string;
|
|
1040
|
+
interactive?: boolean;
|
|
1041
|
+
markers?: MapMarker[];
|
|
1042
|
+
lightStyleUrl?: string | StyleSpecification;
|
|
1043
|
+
showAttribution?: boolean;
|
|
1044
|
+
showAddress?: boolean;
|
|
1045
|
+
showCoordinates?: boolean;
|
|
1046
|
+
showGeolocate?: boolean;
|
|
1047
|
+
showHotspots?: boolean;
|
|
1048
|
+
showNavigation?: boolean;
|
|
1049
|
+
showSearch?: boolean;
|
|
1050
|
+
styleUrl?: string | StyleSpecification;
|
|
1051
|
+
theme?: "auto" | "dark" | "light";
|
|
1052
|
+
zoom?: number;
|
|
1053
|
+
onMarkerClick?: (marker: MapMarker) => void;
|
|
1054
|
+
onMoveEnd?: (center: MapCoordinate, zoom: number) => void;
|
|
1055
|
+
onUserLocation?: (coordinates: MapCoordinate) => void;
|
|
1056
|
+
reverseGeocode?: MapReverseGeocoder | false;
|
|
1057
|
+
searchPlaces?: MapSearchProvider | false;
|
|
1058
|
+
};
|
|
1059
|
+
declare function Map({ ariaLabel, center, className, darkStyleUrl, height, interactive, markers, lightStyleUrl, showAttribution, showAddress, showCoordinates, showGeolocate, showHotspots, showNavigation, showSearch, styleUrl, theme, zoom, onMarkerClick, onMoveEnd, onUserLocation, reverseGeocode, searchPlaces, }: MapProps): react.JSX.Element;
|
|
1060
|
+
|
|
1008
1061
|
type StatusIndicatorState = "error" | "neutral" | "success" | "warning";
|
|
1009
1062
|
type StatusIndicatorProps = {
|
|
1010
1063
|
label: string;
|
|
@@ -1228,6 +1281,41 @@ type CarouselProps = {
|
|
|
1228
1281
|
};
|
|
1229
1282
|
declare function Carousel({ ariaLabel, images, initialIndex, loop, showCaptions, showPips, }: CarouselProps): react.JSX.Element;
|
|
1230
1283
|
|
|
1284
|
+
type VideoPlayerProps = {
|
|
1285
|
+
autoPlay?: boolean;
|
|
1286
|
+
className?: string;
|
|
1287
|
+
loop?: boolean;
|
|
1288
|
+
muted?: boolean;
|
|
1289
|
+
poster?: string;
|
|
1290
|
+
showTitle?: boolean;
|
|
1291
|
+
src: string;
|
|
1292
|
+
title?: string;
|
|
1293
|
+
};
|
|
1294
|
+
declare function VideoPlayer({ autoPlay, className, loop, muted, poster, showTitle, src, title, }: VideoPlayerProps): react.JSX.Element;
|
|
1295
|
+
|
|
1296
|
+
type AudioTrack = {
|
|
1297
|
+
artist?: string;
|
|
1298
|
+
artworkSrc?: string;
|
|
1299
|
+
id?: string;
|
|
1300
|
+
src: string;
|
|
1301
|
+
title?: string;
|
|
1302
|
+
};
|
|
1303
|
+
type AudioPlayerProps = {
|
|
1304
|
+
artist?: string;
|
|
1305
|
+
artworkSrc?: string;
|
|
1306
|
+
autoPlay?: boolean;
|
|
1307
|
+
className?: string;
|
|
1308
|
+
initialIndex?: number;
|
|
1309
|
+
loop?: boolean;
|
|
1310
|
+
loopPlaylist?: boolean;
|
|
1311
|
+
showArtwork?: boolean;
|
|
1312
|
+
/** Preferred multi-track API. Falls back to `src` / `title` / `artist` / `artworkSrc`. */
|
|
1313
|
+
tracks?: AudioTrack[];
|
|
1314
|
+
src?: string;
|
|
1315
|
+
title?: string;
|
|
1316
|
+
};
|
|
1317
|
+
declare function AudioPlayer({ artist, artworkSrc, autoPlay, className, initialIndex, loop, loopPlaylist, showArtwork, src, title, tracks, }: AudioPlayerProps): react.JSX.Element | null;
|
|
1318
|
+
|
|
1231
1319
|
type LightboxProps = {
|
|
1232
1320
|
dismissOnBackdrop?: boolean;
|
|
1233
1321
|
dismissOnEscape?: boolean;
|
|
@@ -1884,11 +1972,14 @@ type NotesActivityComment = {
|
|
|
1884
1972
|
type NotesActivityTab = "activity" | "notes";
|
|
1885
1973
|
type NotesActivityProps = {
|
|
1886
1974
|
activeTab?: NotesActivityTab;
|
|
1975
|
+
addActivityButtonLabel?: string;
|
|
1887
1976
|
addNoteButtonLabel?: string;
|
|
1888
1977
|
addNoteModalDescription?: string;
|
|
1889
1978
|
addNoteModalTitle?: string;
|
|
1890
1979
|
className?: string;
|
|
1980
|
+
composerOpen?: boolean;
|
|
1891
1981
|
composerPlaceholder?: string;
|
|
1982
|
+
defaultComposerOpen?: boolean;
|
|
1892
1983
|
defaultTab?: NotesActivityTab;
|
|
1893
1984
|
density?: SurfaceDensity;
|
|
1894
1985
|
activityFooterHref?: string;
|
|
@@ -1900,6 +1991,7 @@ type NotesActivityProps = {
|
|
|
1900
1991
|
noteAuthorName?: string;
|
|
1901
1992
|
noteTagOptions?: NotesActivityTag[];
|
|
1902
1993
|
onActivityFooterClick?: () => void;
|
|
1994
|
+
onComposerOpenChange?: (open: boolean) => void;
|
|
1903
1995
|
onItemClick?: (item: NotesActivityItem) => void;
|
|
1904
1996
|
onNoteAttachClick?: () => void;
|
|
1905
1997
|
onNoteEmojiSelect?: (emoji: string) => void;
|
|
@@ -1910,11 +2002,15 @@ type NotesActivityProps = {
|
|
|
1910
2002
|
onTabChange?: (tab: NotesActivityTab) => void;
|
|
1911
2003
|
saveButtonLabel?: string;
|
|
1912
2004
|
showAttach?: boolean;
|
|
2005
|
+
/** When false, the built-in Add Note/Activity trigger is hidden (use an external control). */
|
|
2006
|
+
showComposerTrigger?: boolean;
|
|
1913
2007
|
showEmoji?: boolean;
|
|
2008
|
+
showFooter?: boolean;
|
|
1914
2009
|
showMention?: boolean;
|
|
2010
|
+
showTabs?: boolean;
|
|
1915
2011
|
showTags?: boolean;
|
|
1916
2012
|
};
|
|
1917
|
-
declare function NotesActivity({ activeTab: controlledActiveTab, className, composerPlaceholder, defaultTab, density, activityFooterHref, activityFooterLabel, items, notesFooterHref, notesFooterLabel, noteAuthorAvatarSrc, noteAuthorName, noteTagOptions, onActivityFooterClick, onItemClick, onNoteAttachClick, onNoteEmojiSelect, onNoteMentionClick, onNotesFooterClick, onNoteSave, onOpenTask, onTabChange,
|
|
2013
|
+
declare function NotesActivity({ activeTab: controlledActiveTab, addActivityButtonLabel, addNoteButtonLabel, className, composerOpen: controlledComposerOpen, composerPlaceholder, defaultComposerOpen, defaultTab, density, activityFooterHref, activityFooterLabel, items, notesFooterHref, notesFooterLabel, noteAuthorAvatarSrc, noteAuthorName, noteTagOptions, onActivityFooterClick, onComposerOpenChange, onItemClick, onNoteAttachClick, onNoteEmojiSelect, onNoteMentionClick, onNotesFooterClick, onNoteSave, onOpenTask, onTabChange, showAttach, showComposerTrigger, showEmoji, showFooter, showMention, showTabs, showTags, }: NotesActivityProps): react.JSX.Element;
|
|
1918
2014
|
|
|
1919
2015
|
type TopPerformingUserItem = {
|
|
1920
2016
|
displayValue: string;
|
|
@@ -2209,6 +2305,123 @@ type ContentTimelineProps = {
|
|
|
2209
2305
|
};
|
|
2210
2306
|
declare function ContentTimeline({ groups, items, onItemClick, onItemDoubleClick, variant }: ContentTimelineProps): react.JSX.Element;
|
|
2211
2307
|
|
|
2308
|
+
type ContactDetailsAction = "add-note" | "add-task" | "call" | "change-avatar" | "edit" | "email" | "export-contact" | "log-activity" | "reset-password" | "schedule-meeting";
|
|
2309
|
+
type ContactCompany = {
|
|
2310
|
+
department?: string;
|
|
2311
|
+
employees?: string;
|
|
2312
|
+
industry?: string;
|
|
2313
|
+
jobTitle?: string;
|
|
2314
|
+
name: string;
|
|
2315
|
+
primary?: boolean;
|
|
2316
|
+
website?: string;
|
|
2317
|
+
};
|
|
2318
|
+
type ContactDetailsContact = {
|
|
2319
|
+
avatarSrc?: string;
|
|
2320
|
+
companies: ContactCompany[];
|
|
2321
|
+
dateCreated: string;
|
|
2322
|
+
dateLastEdited: string;
|
|
2323
|
+
email: string;
|
|
2324
|
+
lastContact: string;
|
|
2325
|
+
leadStatus: string;
|
|
2326
|
+
mobile: string;
|
|
2327
|
+
name: string;
|
|
2328
|
+
owner: string;
|
|
2329
|
+
password?: string;
|
|
2330
|
+
phone: string;
|
|
2331
|
+
role: string;
|
|
2332
|
+
source: string;
|
|
2333
|
+
status: string;
|
|
2334
|
+
tags: string[];
|
|
2335
|
+
};
|
|
2336
|
+
type ContactDetailsProps = {
|
|
2337
|
+
contact?: Partial<ContactDetailsContact>;
|
|
2338
|
+
isStaffRecord?: boolean;
|
|
2339
|
+
onAction?: (action: ContactDetailsAction) => void;
|
|
2340
|
+
onAvatarChange?: (previewUrl: string) => void;
|
|
2341
|
+
onPasswordReset?: () => void;
|
|
2342
|
+
showActions?: boolean;
|
|
2343
|
+
showStatus?: boolean;
|
|
2344
|
+
tabsVariant?: TabsVariant;
|
|
2345
|
+
};
|
|
2346
|
+
declare function getPrimaryCompany(companies?: ContactCompany[]): ContactCompany | undefined;
|
|
2347
|
+
declare function resolveContactDetailsContact(contact: Partial<ContactDetailsContact> | undefined, defaults: ContactDetailsContact): ContactDetailsContact;
|
|
2348
|
+
|
|
2349
|
+
type MoreActionsMenuItem = {
|
|
2350
|
+
callback?: () => void;
|
|
2351
|
+
destructive?: boolean;
|
|
2352
|
+
disabled?: boolean;
|
|
2353
|
+
iconName?: string;
|
|
2354
|
+
id: string;
|
|
2355
|
+
label: string;
|
|
2356
|
+
shortcut?: string;
|
|
2357
|
+
};
|
|
2358
|
+
type MoreActionsMenuProps = {
|
|
2359
|
+
items: MoreActionsMenuItem[];
|
|
2360
|
+
label?: string;
|
|
2361
|
+
onSelect?: (item: MoreActionsMenuItem) => void;
|
|
2362
|
+
};
|
|
2363
|
+
declare function MoreActionsMenu({ items, label, onSelect, }: MoreActionsMenuProps): react.JSX.Element;
|
|
2364
|
+
|
|
2365
|
+
type ContactCardProps = {
|
|
2366
|
+
className?: string;
|
|
2367
|
+
contact: ContactDetailsContact;
|
|
2368
|
+
isStaffRecord?: boolean;
|
|
2369
|
+
moreActions?: MoreActionsMenuItem[];
|
|
2370
|
+
onAction?: (action: ContactDetailsAction) => void;
|
|
2371
|
+
onAvatarChange?: (previewUrl: string) => void;
|
|
2372
|
+
onPasswordReset?: () => void;
|
|
2373
|
+
ownerAvatarSrc?: string;
|
|
2374
|
+
showActions?: boolean;
|
|
2375
|
+
showStatus?: boolean;
|
|
2376
|
+
tabsVariant?: TabsVariant;
|
|
2377
|
+
};
|
|
2378
|
+
declare function ContactCard({ className, contact, isStaffRecord, moreActions, onAction, onAvatarChange, onPasswordReset, ownerAvatarSrc, showActions, showStatus, tabsVariant, }: ContactCardProps): react.JSX.Element;
|
|
2379
|
+
|
|
2380
|
+
declare function ContactDetails({ contact, isStaffRecord, onAction, onAvatarChange, onPasswordReset, showActions, showStatus, tabsVariant, }: ContactDetailsProps): react.JSX.Element;
|
|
2381
|
+
|
|
2382
|
+
type ContactIdentityCardProps = {
|
|
2383
|
+
avatarSrc?: string;
|
|
2384
|
+
className?: string;
|
|
2385
|
+
companies: ContactCompany[];
|
|
2386
|
+
isStaffRecord?: boolean;
|
|
2387
|
+
name: string;
|
|
2388
|
+
onAvatarChange?: (previewUrl: string) => void;
|
|
2389
|
+
photoUploadTitle?: string;
|
|
2390
|
+
showStatus?: boolean;
|
|
2391
|
+
status?: string;
|
|
2392
|
+
};
|
|
2393
|
+
declare function ContactIdentityCard({ avatarSrc, className, companies, isStaffRecord, name, onAvatarChange, photoUploadTitle, showStatus, status, }: ContactIdentityCardProps): react.JSX.Element;
|
|
2394
|
+
|
|
2395
|
+
type ContactNotesWorkspaceTab = "notes" | "activities" | "documents" | "additional";
|
|
2396
|
+
type ContactNotesActivityProps = {
|
|
2397
|
+
activeTab?: ContactNotesWorkspaceTab;
|
|
2398
|
+
className?: string;
|
|
2399
|
+
defaultTab?: ContactNotesWorkspaceTab;
|
|
2400
|
+
items?: NotesActivityItem[];
|
|
2401
|
+
onAction?: (action: ContactDetailsAction) => void;
|
|
2402
|
+
onAddNote?: (note: string) => void;
|
|
2403
|
+
onTabChange?: (tab: ContactNotesWorkspaceTab) => void;
|
|
2404
|
+
tabsVariant?: TabsVariant;
|
|
2405
|
+
};
|
|
2406
|
+
declare function ContactNotesActivity({ activeTab: controlledActiveTab, className, defaultTab, items, onAction, onAddNote, onTabChange, tabsVariant, }: ContactNotesActivityProps): react.JSX.Element;
|
|
2407
|
+
|
|
2408
|
+
type ContactSummaryTab = "basic" | "other" | "security";
|
|
2409
|
+
type ContactSummaryCardProps = {
|
|
2410
|
+
className?: string;
|
|
2411
|
+
contact: ContactDetailsContact;
|
|
2412
|
+
defaultTab?: ContactSummaryTab;
|
|
2413
|
+
isStaffRecord?: boolean;
|
|
2414
|
+
moreActions?: MoreActionsMenuItem[];
|
|
2415
|
+
onPasswordReset?: () => void;
|
|
2416
|
+
ownerAvatarSrc?: string;
|
|
2417
|
+
showActions?: boolean;
|
|
2418
|
+
tabsVariant?: TabsVariant;
|
|
2419
|
+
};
|
|
2420
|
+
declare function ContactSummaryCard({ className, contact, defaultTab, isStaffRecord, moreActions, onPasswordReset, ownerAvatarSrc, showActions, tabsVariant, }: ContactSummaryCardProps): react.JSX.Element;
|
|
2421
|
+
|
|
2422
|
+
declare const defaultContact: ContactDetailsContact;
|
|
2423
|
+
declare const defaultContactNotes: NotesActivityItem[];
|
|
2424
|
+
|
|
2212
2425
|
type TreeViewNode = {
|
|
2213
2426
|
children?: TreeViewNode[];
|
|
2214
2427
|
id: string;
|
|
@@ -2748,4 +2961,4 @@ type SankeyLinkDef = {
|
|
|
2748
2961
|
};
|
|
2749
2962
|
declare const demoSankeyLinks: SankeyLinkDef[];
|
|
2750
2963
|
|
|
2751
|
-
export { type AccentColor, AccentColorPicker, Accordion, AccordionGroup, type AccordionGroupType, Alert, type AlertStatus, ApplicationFooter, type ApplicationFooterAction, type ApplicationFooterProps, ApplicationHeader, type ApplicationHeaderAction, type ApplicationHeaderProfile, type ApplicationHeaderProps, AspectRatio, type AspectRatioProps, Avatar, AvatarGroup, type AvatarGroupItem, type AvatarShape, type AvatarSize, Badge, type BadgeSize, type BadgeTone, type BadgeVariant, BottomNavigation, type BottomNavigationItem, type BottomNavigationProps, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonVariant, Calendar, type CalendarEvent, type CalendarProps, Card, Carousel, CascaderField, type CascaderOption, CatalogIcon, Chart, type ChartDatum, type ChartPalette, type ChartSeries, type ChartVariant, CheckboxField, ChipInput, ChipInputField, type ChipInputPreset, type ChipInputVariant, ChoiceChips, ChoiceChipsField, type ChoiceChipsSelectionMode, type ChoiceChipsVariant, type ChoiceControlSize, type ChoiceOption, type ChoiceShape, Clipboard, ClipboardProvider, Clock, type ClockSize, ColorField, Columns, type ColumnsDirection, type ColumnsProps, CommandPalette, type CommandPaletteItem, Container, type ContainerProps, type ContainerSize, ContentTimeline, type ContentTimelineGroup, type ContentTimelineItem, type ContentTimelineStatus, type ContentTimelineTag, ContextMenuProvider, ContextMenuTarget, CopyButton, CountryPickerField, CustomScrollbar, type CustomScrollbarOrientation, type CustomScrollbarProps, type CustomScrollbarShape, DEFAULT_FONT_FAMILY, DEFAULT_NOTE_TAG_OPTIONS, DEFAULT_TOAST_DURATION_MS, DashboardContentContainer, type DashboardContentContainerProps, type DashboardContentContainerWidth, DataGrid, type DataGridColumn, type DataGridLayout, type DataGridPivotConfig, type DataGridRow, type DataGridRowHeaderColumn, DateField, type DateInputType, DealsOverTime, type DealsOverTimePoint, type DealsOverTimeProps, DescriptionList, type DescriptionListItem, type DescriptionListLayout, Dialog, type DialogActionSet, type DialogResult, Divider, type DividerOrientation, type DividerTone, DockLayout, type DockLayoutProps, Drawer, DrawerDefaultActions, type DrawerSide, DropdownMenu, DropdownMenuItem, type DropdownMenuItemData, type DropdownMenuPlacement, DualListBuilder, type DualListBuilderProps, type DualListItem, type ElementSize, EmojiPicker, type EmojiPickerPlacement, type EmojiPickerProps, EmptyState, type EmptyStateIcon, FONT_STORAGE_KEY, type FieldMode, FieldShell, FileField, FilterBuilder, type FilterBuilderProps, type FilterCondition, type FilterOperator, FilterSelectField, type FilterSelectGroup, FloatingActionButton, type FloatingActionButtonPosition, type FloatingActionButtonProps, type FloatingActionButtonSize, FocusTrap, FontPicker, type GalleryImage, Gauge, type GaugeFooterItem, type GaugeTrend, type GaugeVariant, type GoogleFontFamily, Grid, type GridProps, HiddenField, type HotkeyCombo, HotkeyManager, Icon, IconBadge, type IconBadgeProps, type IconBadgeUrgency, IconPicker, type IconSize, type IconTone, ImageCropUploadField, type ImageCropUploadFieldProps, type ImageCropUploadResult, ImageCropUploadWidget, type ImageCropUploadWidgetProps, ImageGallery, ImageThumbnail, type ImageThumbnailSize, type InputControlSize, IntersectionObserver, JsonViewer, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, KeyboardShortcut, type KeyboardShortcutSize, type LabelPosition, Lightbox, List, type ListItem, MasonryGrid, type MasonryGridItem, MegaMenu, type MegaMenuConfig, type MegaMenuFeatured, type MegaMenuItem, type MegaMenuSection, MetricTile, Modal, ModalDefaultActions, type ModalSize, type ModelAsset, ModelGallery, ModelLightbox, ModelThumbnail, type ModelThumbnailSize, ModelViewer, MultiSelectField, NavigationRail, type NavigationRailItem, type NavigationRailProps, NoteComposer, type NoteComposerProps, NoteTag, NoteTagList, type NoteTagOption, NoteTagPicker, type NoteTagTone, NotesActivity, type NotesActivityItem, type NotesActivityProps, type NotesActivityTag, type NotesActivityTagTone, NumberField, OpusThemeProvider, PageHeader, type PageHeaderProps, Pagination, type PaginationProps, Panel, type PasswordRequirement, PasswordStrengthField, type PermissionLevel, PermissionsMatrix, type PermissionsMatrixProps, type PhoneCountry, PhoneNumberField, PipelineOverview, type PipelineOverviewProps, type PipelineStage, Popover, type PopoverPlacement, Portal, PortalHost, ProfilePhotoUploadModal, ProgressBar, ProgressRing, PropertyGrid, type PropertyGridItem, PropertyInspector, type PropertyInspectorItem, type PropertyInspectorValue, QueryBuilder, type QueryBuilderProps, type QueryCombinator, type QueryGroup, type QueryOperator, type QueryRule, Radio, RadioGroup, RangeField, RatingField, type RatingVariant, RecentActivity, type RecentActivityItem, type RecentActivityProps, ResizablePanel, type ResizablePanelProps, ResizeHandle, type ResizeHandleBackground, type ResizeHandleHeight, type ResizeHandleOrientation, type ResizeHandleProps, ResizeObserver, ResourcePlanner, type ResourcePlannerItem, type ResourcePlannerProps, type ResourcePlannerResource, RichTextField, RuleBuilder, type RuleBuilderProps, type RuleDefinition, type RuleEffect, Scheduler, type SchedulerEvent, type SchedulerProps, ScrollArea, type ScrollAreaProps, Section, type SectionAlign, type SectionColumns, type SectionGap, type SectionJustify, type SectionLayoutPreset, type SectionSidebar, type SectionSidebarRatio, type SectionSpan, type SectionStackBelow, type SectionTemplate, type SectionWidth, SegmentedControlField, SelectField, ShowMore, type ShowToastOptions, Sidebar, SidebarGroup, SidebarHeader, SidebarLayout, SidebarLink, type SidebarMenuGroupItem, type SidebarMenuItem, type SidebarMenuLinkItem, SidebarNav, type SidebarProps, type SidebarSide, Skeleton, type SkeletonAnimation, type SkeletonVariant, SliderRangeField, Spacer, type SpacerProps, Sparkline, Speedometer, Spinner, type SpinnerSize, type SpinnerTone, SplitButton, type SplitButtonAction, type SplitButtonProps, Splitter, type SplitterOrientation, type SplitterProps, Stack, type StackAlign, type StackDirection, type StackJustify, type StackProps, StatCard, type StatCardTrend, StatTile, type StatTileItem, type StatTileProps, type StatTileTone, type StatTileTrend, type StatTileTrendTone, StatTiles, type StatTilesProps, Statistic, type StatisticTrend, StatusIndicator, type StatusIndicatorState, type SurfaceDensity, type SurfaceTone, SwitchField, type TabItem, Table, type TableColumn, type TableDensity, type TableRow, Tabs, type TabsOrientation, type TabsVariant, TextAreaField, TextField, type Theme, OpusThemeProvider as ThemeProvider, ThemeSwitcher, ThemeToggleField, ThreePaneLayout, type ThreePaneLayoutProps, type ThreePaneLayoutSize, Tile, type TileItem, type TileProps, type TileTone, Tiles, type TilesLayout, type TilesProps, Toast, type ToastHorizontalPosition, ToastProvider, type ToastVerticalPosition, type ToastViewportPosition, Toolbar, type ToolbarProps, Tooltip, TopNavigation, type TopNavigationBarMenu, type TopNavigationDropdownMenu, type TopNavigationMegaMenu, TopNavigationMenu, type TopNavigationMenuConfig, type TopNavigationSelectItem, type TopPerformingUserItem, TopPerformingUsers, type TopPerformingUsersProps, TransferListField, TreeSelectField, type TreeSelectNode, TreeView, type TreeViewNode, TrendBadge, type TrendBadgeDirection, type UpcomingTaskItem, UpcomingTasks, type UpcomingTasksProps, type UserProfileMenuItem, type UserProfilePhotoUploadOptions, UserProfileWidget, type UserProfileWidgetProps, VisuallyHidden, type WelcomeGreeting, WelcomeMessage, type WelcomeMessageProps, accentColors, cartesianSpecializedVariants, countryCodeToFlag, createAccentStyle, defaultMegaMenuFeatured, defaultMegaMenuMenus, defaultMegaMenuSections, defaultTopNavigationBarMenus, defaultTopNavigationMegaMenus, defaultTopNavigationMenus, demoSankeyLinks, fieldInputAriaProps, getWelcomeGreeting, googleFonts, countries as phoneCountries, useAccentPreference, useClipboard, useContextMenu, useFieldShellAria, useFontPreference, useHotkey, useHotkeyManager, useIntersectionObserver, useOpusTheme, usePortalHost, useResizeObserver, useToast, useTopNavigation, worldMapRegionIds };
|
|
2964
|
+
export { type AccentColor, AccentColorPicker, Accordion, AccordionGroup, type AccordionGroupType, Alert, type AlertStatus, ApplicationFooter, type ApplicationFooterAction, type ApplicationFooterProps, ApplicationHeader, type ApplicationHeaderAction, type ApplicationHeaderProfile, type ApplicationHeaderProps, AspectRatio, type AspectRatioProps, AudioPlayer, type AudioPlayerProps, type AudioTrack, Avatar, AvatarGroup, type AvatarGroupItem, type AvatarShape, type AvatarSize, Badge, type BadgeSize, type BadgeTone, type BadgeVariant, BottomNavigation, type BottomNavigationItem, type BottomNavigationProps, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonVariant, Calendar, type CalendarEvent, type CalendarProps, Card, Carousel, CascaderField, type CascaderOption, CatalogIcon, Chart, type ChartDatum, type ChartPalette, type ChartSeries, type ChartVariant, CheckboxField, ChipInput, ChipInputField, type ChipInputPreset, type ChipInputVariant, ChoiceChips, ChoiceChipsField, type ChoiceChipsSelectionMode, type ChoiceChipsVariant, type ChoiceControlSize, type ChoiceOption, type ChoiceShape, Clipboard, ClipboardProvider, Clock, type ClockSize, ColorField, Columns, type ColumnsDirection, type ColumnsProps, CommandPalette, type CommandPaletteItem, ContactCard, type ContactCardProps, type ContactCompany, ContactDetails, type ContactDetailsAction, type ContactDetailsContact, type ContactDetailsProps, ContactIdentityCard, type ContactIdentityCardProps, ContactNotesActivity, type ContactNotesActivityProps, ContactSummaryCard, type ContactSummaryCardProps, type ContactSummaryTab, Container, type ContainerProps, type ContainerSize, ContentTimeline, type ContentTimelineGroup, type ContentTimelineItem, type ContentTimelineStatus, type ContentTimelineTag, ContextMenuProvider, ContextMenuTarget, CopyButton, CountryPickerField, CustomScrollbar, type CustomScrollbarOrientation, type CustomScrollbarProps, type CustomScrollbarShape, DEFAULT_FONT_FAMILY, DEFAULT_NOTE_TAG_OPTIONS, DEFAULT_TOAST_DURATION_MS, DashboardContentContainer, type DashboardContentContainerProps, type DashboardContentContainerWidth, DataGrid, type DataGridColumn, type DataGridLayout, type DataGridPivotConfig, type DataGridRow, type DataGridRowHeaderColumn, DateField, type DateInputType, DealsOverTime, type DealsOverTimePoint, type DealsOverTimeProps, DescriptionList, type DescriptionListItem, type DescriptionListLayout, Dialog, type DialogActionSet, type DialogResult, Divider, type DividerOrientation, type DividerTone, DockLayout, type DockLayoutProps, Drawer, DrawerDefaultActions, type DrawerSide, DropdownMenu, DropdownMenuItem, type DropdownMenuItemData, type DropdownMenuPlacement, DualListBuilder, type DualListBuilderProps, type DualListItem, type ElementSize, EmojiPicker, type EmojiPickerPlacement, type EmojiPickerProps, EmptyState, type EmptyStateIcon, FONT_STORAGE_KEY, type FieldMode, FieldShell, FileField, FilterBuilder, type FilterBuilderProps, type FilterCondition, type FilterOperator, FilterSelectField, type FilterSelectGroup, FloatingActionButton, type FloatingActionButtonPosition, type FloatingActionButtonProps, type FloatingActionButtonSize, FocusTrap, FontPicker, type GalleryImage, Gauge, type GaugeFooterItem, type GaugeTrend, type GaugeVariant, type GoogleFontFamily, Grid, type GridProps, HiddenField, type HotkeyCombo, HotkeyManager, Icon, IconBadge, type IconBadgeProps, type IconBadgeUrgency, IconPicker, type IconSize, type IconTone, ImageCropUploadField, type ImageCropUploadFieldProps, type ImageCropUploadResult, ImageCropUploadWidget, type ImageCropUploadWidgetProps, ImageGallery, ImageThumbnail, type ImageThumbnailSize, type InputControlSize, IntersectionObserver, JsonViewer, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, KeyboardShortcut, type KeyboardShortcutSize, type LabelPosition, Lightbox, List, type ListItem, Map, type MapCoordinate, type MapMarker, type MapProps, MasonryGrid, type MasonryGridItem, MegaMenu, type MegaMenuConfig, type MegaMenuFeatured, type MegaMenuItem, type MegaMenuSection, MetricTile, Modal, ModalDefaultActions, type ModalSize, type ModelAsset, ModelGallery, ModelLightbox, ModelThumbnail, type ModelThumbnailSize, ModelViewer, MoreActionsMenu, type MoreActionsMenuItem, type MoreActionsMenuProps, MultiSelectField, NavigationRail, type NavigationRailItem, type NavigationRailProps, NoteComposer, type NoteComposerProps, NoteTag, NoteTagList, type NoteTagOption, NoteTagPicker, type NoteTagTone, NotesActivity, type NotesActivityItem, type NotesActivityProps, type NotesActivityTag, type NotesActivityTagTone, NumberField, OpusThemeProvider, PageHeader, type PageHeaderProps, Pagination, type PaginationProps, Panel, type PasswordRequirement, PasswordStrengthField, type PermissionLevel, PermissionsMatrix, type PermissionsMatrixProps, type PhoneCountry, PhoneNumberField, PipelineOverview, type PipelineOverviewProps, type PipelineStage, Popover, type PopoverPlacement, Portal, PortalHost, ProfilePhotoUploadModal, ProgressBar, ProgressRing, PropertyGrid, type PropertyGridItem, PropertyInspector, type PropertyInspectorItem, type PropertyInspectorValue, QueryBuilder, type QueryBuilderProps, type QueryCombinator, type QueryGroup, type QueryOperator, type QueryRule, Radio, RadioGroup, RangeField, RatingField, type RatingVariant, RecentActivity, type RecentActivityItem, type RecentActivityProps, ResizablePanel, type ResizablePanelProps, ResizeHandle, type ResizeHandleBackground, type ResizeHandleHeight, type ResizeHandleOrientation, type ResizeHandleProps, ResizeObserver, ResourcePlanner, type ResourcePlannerItem, type ResourcePlannerProps, type ResourcePlannerResource, RichTextField, RuleBuilder, type RuleBuilderProps, type RuleDefinition, type RuleEffect, Scheduler, type SchedulerEvent, type SchedulerProps, ScrollArea, type ScrollAreaProps, Section, type SectionAlign, type SectionColumns, type SectionGap, type SectionJustify, type SectionLayoutPreset, type SectionSidebar, type SectionSidebarRatio, type SectionSpan, type SectionStackBelow, type SectionTemplate, type SectionWidth, SegmentedControlField, SelectField, ShowMore, type ShowToastOptions, Sidebar, SidebarGroup, SidebarHeader, SidebarLayout, SidebarLink, type SidebarMenuGroupItem, type SidebarMenuItem, type SidebarMenuLinkItem, SidebarNav, type SidebarProps, type SidebarSide, Skeleton, type SkeletonAnimation, type SkeletonVariant, SliderRangeField, Spacer, type SpacerProps, Sparkline, Speedometer, Spinner, type SpinnerSize, type SpinnerTone, SplitButton, type SplitButtonAction, type SplitButtonProps, Splitter, type SplitterOrientation, type SplitterProps, Stack, type StackAlign, type StackDirection, type StackJustify, type StackProps, StatCard, type StatCardTrend, StatTile, type StatTileItem, type StatTileProps, type StatTileTone, type StatTileTrend, type StatTileTrendTone, StatTiles, type StatTilesProps, Statistic, type StatisticTrend, StatusIndicator, type StatusIndicatorState, type SurfaceDensity, type SurfaceTone, SwitchField, type TabItem, Table, type TableColumn, type TableDensity, type TableRow, Tabs, type TabsOrientation, type TabsPanelMode, type TabsVariant, TextAreaField, TextField, type Theme, OpusThemeProvider as ThemeProvider, ThemeSwitcher, ThemeToggleField, ThreePaneLayout, type ThreePaneLayoutProps, type ThreePaneLayoutSize, Tile, type TileItem, type TileProps, type TileTone, Tiles, type TilesLayout, type TilesProps, Toast, type ToastHorizontalPosition, ToastProvider, type ToastVerticalPosition, type ToastViewportPosition, Toolbar, type ToolbarProps, Tooltip, TopNavigation, type TopNavigationBarMenu, type TopNavigationDropdownMenu, type TopNavigationMegaMenu, TopNavigationMenu, type TopNavigationMenuConfig, type TopNavigationSelectItem, type TopPerformingUserItem, TopPerformingUsers, type TopPerformingUsersProps, TransferListField, TreeSelectField, type TreeSelectNode, TreeView, type TreeViewNode, TrendBadge, type TrendBadgeDirection, type UpcomingTaskItem, UpcomingTasks, type UpcomingTasksProps, type UserProfileMenuItem, type UserProfilePhotoUploadOptions, UserProfileWidget, type UserProfileWidgetProps, VideoPlayer, type VideoPlayerProps, VisuallyHidden, type WelcomeGreeting, WelcomeMessage, type WelcomeMessageProps, accentColors, cartesianSpecializedVariants, countryCodeToFlag, createAccentStyle, defaultContact, defaultContactNotes, defaultMegaMenuFeatured, defaultMegaMenuMenus, defaultMegaMenuSections, defaultTopNavigationBarMenus, defaultTopNavigationMegaMenus, defaultTopNavigationMenus, demoSankeyLinks, fieldInputAriaProps, getPrimaryCompany, getWelcomeGreeting, googleFonts, countries as phoneCountries, resolveContactDetailsContact, useAccentPreference, useClipboard, useContextMenu, useFieldShellAria, useFontPreference, useHotkey, useHotkeyManager, useIntersectionObserver, useOpusTheme, usePortalHost, useResizeObserver, useToast, useTopNavigation, worldMapRegionIds };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { ButtonHTMLAttributes, ReactNode, ChangeEventHandler, Ref, CSSProperties, ComponentPropsWithoutRef, RefObject, HTMLAttributes, MouseEvent, ElementType } from 'react';
|
|
3
|
+
import { StyleSpecification } from 'maplibre-gl';
|
|
3
4
|
|
|
4
5
|
type Theme = "light" | "dark";
|
|
5
6
|
type FieldMode = "stacked" | "flagged";
|
|
@@ -45,7 +46,8 @@ type DrawerSide = "left" | "right" | "top" | "bottom";
|
|
|
45
46
|
type PopoverPlacement = "top" | "right" | "bottom" | "left";
|
|
46
47
|
type DropdownMenuPlacement = "bottom-start" | "bottom-end" | "top-start" | "top-end";
|
|
47
48
|
type TabsOrientation = "horizontal" | "vertical";
|
|
48
|
-
type TabsVariant = "line" | "contained";
|
|
49
|
+
type TabsVariant = "line" | "contained" | "card";
|
|
50
|
+
type TabsPanelMode = "active" | "crossfade";
|
|
49
51
|
type SurfaceTone = "default" | "accent" | "success" | "warning" | "danger" | "info";
|
|
50
52
|
type SurfaceDensity = "comfortable" | "compact";
|
|
51
53
|
type TableDensity = "comfortable" | "compact";
|
|
@@ -909,15 +911,24 @@ type TabItem = {
|
|
|
909
911
|
};
|
|
910
912
|
type TabsProps = {
|
|
911
913
|
"aria-label"?: string;
|
|
914
|
+
className?: string;
|
|
915
|
+
/** Card variant only: inset padding on the panel body (active mode). Prefer wrapping panel content instead. */
|
|
916
|
+
cardPanelPadding?: boolean;
|
|
912
917
|
defaultValue?: string;
|
|
913
918
|
fitted?: boolean;
|
|
914
919
|
items: TabItem[];
|
|
915
920
|
onValueChange?: (value: string) => void;
|
|
916
921
|
orientation?: TabsOrientation;
|
|
922
|
+
panelClassName?: string;
|
|
923
|
+
panelContentClassName?: string;
|
|
924
|
+
/** How tab panels are rendered. Card variant defaults to crossfade. */
|
|
925
|
+
panelMode?: TabsPanelMode;
|
|
926
|
+
/** Content aligned to the end of the tab row (e.g. context actions). */
|
|
927
|
+
trailing?: ReactNode;
|
|
917
928
|
value?: string;
|
|
918
929
|
variant?: TabsVariant;
|
|
919
930
|
};
|
|
920
|
-
declare function Tabs({ "aria-label": ariaLabel, defaultValue, fitted, items, onValueChange, orientation, value, variant, }: TabsProps): react.JSX.Element;
|
|
931
|
+
declare function Tabs({ "aria-label": ariaLabel, cardPanelPadding, className, defaultValue, fitted, items, onValueChange, orientation, panelClassName, panelContentClassName, panelMode, trailing, value, variant, }: TabsProps): react.JSX.Element;
|
|
921
932
|
|
|
922
933
|
type CardProps = {
|
|
923
934
|
actions?: ReactNode;
|
|
@@ -1005,6 +1016,48 @@ type MetricTileProps = {
|
|
|
1005
1016
|
};
|
|
1006
1017
|
declare function MetricTile({ density, icon, label, sparkline, value }: MetricTileProps): react.JSX.Element;
|
|
1007
1018
|
|
|
1019
|
+
type MapCoordinate = [longitude: number, latitude: number];
|
|
1020
|
+
type MapMarker = {
|
|
1021
|
+
id: string;
|
|
1022
|
+
label: string;
|
|
1023
|
+
coordinates: MapCoordinate;
|
|
1024
|
+
description?: string;
|
|
1025
|
+
tone?: "accent" | "blue" | "green" | "warning";
|
|
1026
|
+
};
|
|
1027
|
+
type MapReverseGeocoder = (coordinates: MapCoordinate, signal: AbortSignal) => Promise<string | null>;
|
|
1028
|
+
type MapSearchResult = {
|
|
1029
|
+
id: string;
|
|
1030
|
+
label: string;
|
|
1031
|
+
coordinates: MapCoordinate;
|
|
1032
|
+
};
|
|
1033
|
+
type MapSearchProvider = (query: string, signal: AbortSignal) => Promise<MapSearchResult[]>;
|
|
1034
|
+
type MapProps = {
|
|
1035
|
+
ariaLabel?: string;
|
|
1036
|
+
center?: MapCoordinate;
|
|
1037
|
+
className?: string;
|
|
1038
|
+
darkStyleUrl?: string | StyleSpecification;
|
|
1039
|
+
height?: number | string;
|
|
1040
|
+
interactive?: boolean;
|
|
1041
|
+
markers?: MapMarker[];
|
|
1042
|
+
lightStyleUrl?: string | StyleSpecification;
|
|
1043
|
+
showAttribution?: boolean;
|
|
1044
|
+
showAddress?: boolean;
|
|
1045
|
+
showCoordinates?: boolean;
|
|
1046
|
+
showGeolocate?: boolean;
|
|
1047
|
+
showHotspots?: boolean;
|
|
1048
|
+
showNavigation?: boolean;
|
|
1049
|
+
showSearch?: boolean;
|
|
1050
|
+
styleUrl?: string | StyleSpecification;
|
|
1051
|
+
theme?: "auto" | "dark" | "light";
|
|
1052
|
+
zoom?: number;
|
|
1053
|
+
onMarkerClick?: (marker: MapMarker) => void;
|
|
1054
|
+
onMoveEnd?: (center: MapCoordinate, zoom: number) => void;
|
|
1055
|
+
onUserLocation?: (coordinates: MapCoordinate) => void;
|
|
1056
|
+
reverseGeocode?: MapReverseGeocoder | false;
|
|
1057
|
+
searchPlaces?: MapSearchProvider | false;
|
|
1058
|
+
};
|
|
1059
|
+
declare function Map({ ariaLabel, center, className, darkStyleUrl, height, interactive, markers, lightStyleUrl, showAttribution, showAddress, showCoordinates, showGeolocate, showHotspots, showNavigation, showSearch, styleUrl, theme, zoom, onMarkerClick, onMoveEnd, onUserLocation, reverseGeocode, searchPlaces, }: MapProps): react.JSX.Element;
|
|
1060
|
+
|
|
1008
1061
|
type StatusIndicatorState = "error" | "neutral" | "success" | "warning";
|
|
1009
1062
|
type StatusIndicatorProps = {
|
|
1010
1063
|
label: string;
|
|
@@ -1228,6 +1281,41 @@ type CarouselProps = {
|
|
|
1228
1281
|
};
|
|
1229
1282
|
declare function Carousel({ ariaLabel, images, initialIndex, loop, showCaptions, showPips, }: CarouselProps): react.JSX.Element;
|
|
1230
1283
|
|
|
1284
|
+
type VideoPlayerProps = {
|
|
1285
|
+
autoPlay?: boolean;
|
|
1286
|
+
className?: string;
|
|
1287
|
+
loop?: boolean;
|
|
1288
|
+
muted?: boolean;
|
|
1289
|
+
poster?: string;
|
|
1290
|
+
showTitle?: boolean;
|
|
1291
|
+
src: string;
|
|
1292
|
+
title?: string;
|
|
1293
|
+
};
|
|
1294
|
+
declare function VideoPlayer({ autoPlay, className, loop, muted, poster, showTitle, src, title, }: VideoPlayerProps): react.JSX.Element;
|
|
1295
|
+
|
|
1296
|
+
type AudioTrack = {
|
|
1297
|
+
artist?: string;
|
|
1298
|
+
artworkSrc?: string;
|
|
1299
|
+
id?: string;
|
|
1300
|
+
src: string;
|
|
1301
|
+
title?: string;
|
|
1302
|
+
};
|
|
1303
|
+
type AudioPlayerProps = {
|
|
1304
|
+
artist?: string;
|
|
1305
|
+
artworkSrc?: string;
|
|
1306
|
+
autoPlay?: boolean;
|
|
1307
|
+
className?: string;
|
|
1308
|
+
initialIndex?: number;
|
|
1309
|
+
loop?: boolean;
|
|
1310
|
+
loopPlaylist?: boolean;
|
|
1311
|
+
showArtwork?: boolean;
|
|
1312
|
+
/** Preferred multi-track API. Falls back to `src` / `title` / `artist` / `artworkSrc`. */
|
|
1313
|
+
tracks?: AudioTrack[];
|
|
1314
|
+
src?: string;
|
|
1315
|
+
title?: string;
|
|
1316
|
+
};
|
|
1317
|
+
declare function AudioPlayer({ artist, artworkSrc, autoPlay, className, initialIndex, loop, loopPlaylist, showArtwork, src, title, tracks, }: AudioPlayerProps): react.JSX.Element | null;
|
|
1318
|
+
|
|
1231
1319
|
type LightboxProps = {
|
|
1232
1320
|
dismissOnBackdrop?: boolean;
|
|
1233
1321
|
dismissOnEscape?: boolean;
|
|
@@ -1884,11 +1972,14 @@ type NotesActivityComment = {
|
|
|
1884
1972
|
type NotesActivityTab = "activity" | "notes";
|
|
1885
1973
|
type NotesActivityProps = {
|
|
1886
1974
|
activeTab?: NotesActivityTab;
|
|
1975
|
+
addActivityButtonLabel?: string;
|
|
1887
1976
|
addNoteButtonLabel?: string;
|
|
1888
1977
|
addNoteModalDescription?: string;
|
|
1889
1978
|
addNoteModalTitle?: string;
|
|
1890
1979
|
className?: string;
|
|
1980
|
+
composerOpen?: boolean;
|
|
1891
1981
|
composerPlaceholder?: string;
|
|
1982
|
+
defaultComposerOpen?: boolean;
|
|
1892
1983
|
defaultTab?: NotesActivityTab;
|
|
1893
1984
|
density?: SurfaceDensity;
|
|
1894
1985
|
activityFooterHref?: string;
|
|
@@ -1900,6 +1991,7 @@ type NotesActivityProps = {
|
|
|
1900
1991
|
noteAuthorName?: string;
|
|
1901
1992
|
noteTagOptions?: NotesActivityTag[];
|
|
1902
1993
|
onActivityFooterClick?: () => void;
|
|
1994
|
+
onComposerOpenChange?: (open: boolean) => void;
|
|
1903
1995
|
onItemClick?: (item: NotesActivityItem) => void;
|
|
1904
1996
|
onNoteAttachClick?: () => void;
|
|
1905
1997
|
onNoteEmojiSelect?: (emoji: string) => void;
|
|
@@ -1910,11 +2002,15 @@ type NotesActivityProps = {
|
|
|
1910
2002
|
onTabChange?: (tab: NotesActivityTab) => void;
|
|
1911
2003
|
saveButtonLabel?: string;
|
|
1912
2004
|
showAttach?: boolean;
|
|
2005
|
+
/** When false, the built-in Add Note/Activity trigger is hidden (use an external control). */
|
|
2006
|
+
showComposerTrigger?: boolean;
|
|
1913
2007
|
showEmoji?: boolean;
|
|
2008
|
+
showFooter?: boolean;
|
|
1914
2009
|
showMention?: boolean;
|
|
2010
|
+
showTabs?: boolean;
|
|
1915
2011
|
showTags?: boolean;
|
|
1916
2012
|
};
|
|
1917
|
-
declare function NotesActivity({ activeTab: controlledActiveTab, className, composerPlaceholder, defaultTab, density, activityFooterHref, activityFooterLabel, items, notesFooterHref, notesFooterLabel, noteAuthorAvatarSrc, noteAuthorName, noteTagOptions, onActivityFooterClick, onItemClick, onNoteAttachClick, onNoteEmojiSelect, onNoteMentionClick, onNotesFooterClick, onNoteSave, onOpenTask, onTabChange,
|
|
2013
|
+
declare function NotesActivity({ activeTab: controlledActiveTab, addActivityButtonLabel, addNoteButtonLabel, className, composerOpen: controlledComposerOpen, composerPlaceholder, defaultComposerOpen, defaultTab, density, activityFooterHref, activityFooterLabel, items, notesFooterHref, notesFooterLabel, noteAuthorAvatarSrc, noteAuthorName, noteTagOptions, onActivityFooterClick, onComposerOpenChange, onItemClick, onNoteAttachClick, onNoteEmojiSelect, onNoteMentionClick, onNotesFooterClick, onNoteSave, onOpenTask, onTabChange, showAttach, showComposerTrigger, showEmoji, showFooter, showMention, showTabs, showTags, }: NotesActivityProps): react.JSX.Element;
|
|
1918
2014
|
|
|
1919
2015
|
type TopPerformingUserItem = {
|
|
1920
2016
|
displayValue: string;
|
|
@@ -2209,6 +2305,123 @@ type ContentTimelineProps = {
|
|
|
2209
2305
|
};
|
|
2210
2306
|
declare function ContentTimeline({ groups, items, onItemClick, onItemDoubleClick, variant }: ContentTimelineProps): react.JSX.Element;
|
|
2211
2307
|
|
|
2308
|
+
type ContactDetailsAction = "add-note" | "add-task" | "call" | "change-avatar" | "edit" | "email" | "export-contact" | "log-activity" | "reset-password" | "schedule-meeting";
|
|
2309
|
+
type ContactCompany = {
|
|
2310
|
+
department?: string;
|
|
2311
|
+
employees?: string;
|
|
2312
|
+
industry?: string;
|
|
2313
|
+
jobTitle?: string;
|
|
2314
|
+
name: string;
|
|
2315
|
+
primary?: boolean;
|
|
2316
|
+
website?: string;
|
|
2317
|
+
};
|
|
2318
|
+
type ContactDetailsContact = {
|
|
2319
|
+
avatarSrc?: string;
|
|
2320
|
+
companies: ContactCompany[];
|
|
2321
|
+
dateCreated: string;
|
|
2322
|
+
dateLastEdited: string;
|
|
2323
|
+
email: string;
|
|
2324
|
+
lastContact: string;
|
|
2325
|
+
leadStatus: string;
|
|
2326
|
+
mobile: string;
|
|
2327
|
+
name: string;
|
|
2328
|
+
owner: string;
|
|
2329
|
+
password?: string;
|
|
2330
|
+
phone: string;
|
|
2331
|
+
role: string;
|
|
2332
|
+
source: string;
|
|
2333
|
+
status: string;
|
|
2334
|
+
tags: string[];
|
|
2335
|
+
};
|
|
2336
|
+
type ContactDetailsProps = {
|
|
2337
|
+
contact?: Partial<ContactDetailsContact>;
|
|
2338
|
+
isStaffRecord?: boolean;
|
|
2339
|
+
onAction?: (action: ContactDetailsAction) => void;
|
|
2340
|
+
onAvatarChange?: (previewUrl: string) => void;
|
|
2341
|
+
onPasswordReset?: () => void;
|
|
2342
|
+
showActions?: boolean;
|
|
2343
|
+
showStatus?: boolean;
|
|
2344
|
+
tabsVariant?: TabsVariant;
|
|
2345
|
+
};
|
|
2346
|
+
declare function getPrimaryCompany(companies?: ContactCompany[]): ContactCompany | undefined;
|
|
2347
|
+
declare function resolveContactDetailsContact(contact: Partial<ContactDetailsContact> | undefined, defaults: ContactDetailsContact): ContactDetailsContact;
|
|
2348
|
+
|
|
2349
|
+
type MoreActionsMenuItem = {
|
|
2350
|
+
callback?: () => void;
|
|
2351
|
+
destructive?: boolean;
|
|
2352
|
+
disabled?: boolean;
|
|
2353
|
+
iconName?: string;
|
|
2354
|
+
id: string;
|
|
2355
|
+
label: string;
|
|
2356
|
+
shortcut?: string;
|
|
2357
|
+
};
|
|
2358
|
+
type MoreActionsMenuProps = {
|
|
2359
|
+
items: MoreActionsMenuItem[];
|
|
2360
|
+
label?: string;
|
|
2361
|
+
onSelect?: (item: MoreActionsMenuItem) => void;
|
|
2362
|
+
};
|
|
2363
|
+
declare function MoreActionsMenu({ items, label, onSelect, }: MoreActionsMenuProps): react.JSX.Element;
|
|
2364
|
+
|
|
2365
|
+
type ContactCardProps = {
|
|
2366
|
+
className?: string;
|
|
2367
|
+
contact: ContactDetailsContact;
|
|
2368
|
+
isStaffRecord?: boolean;
|
|
2369
|
+
moreActions?: MoreActionsMenuItem[];
|
|
2370
|
+
onAction?: (action: ContactDetailsAction) => void;
|
|
2371
|
+
onAvatarChange?: (previewUrl: string) => void;
|
|
2372
|
+
onPasswordReset?: () => void;
|
|
2373
|
+
ownerAvatarSrc?: string;
|
|
2374
|
+
showActions?: boolean;
|
|
2375
|
+
showStatus?: boolean;
|
|
2376
|
+
tabsVariant?: TabsVariant;
|
|
2377
|
+
};
|
|
2378
|
+
declare function ContactCard({ className, contact, isStaffRecord, moreActions, onAction, onAvatarChange, onPasswordReset, ownerAvatarSrc, showActions, showStatus, tabsVariant, }: ContactCardProps): react.JSX.Element;
|
|
2379
|
+
|
|
2380
|
+
declare function ContactDetails({ contact, isStaffRecord, onAction, onAvatarChange, onPasswordReset, showActions, showStatus, tabsVariant, }: ContactDetailsProps): react.JSX.Element;
|
|
2381
|
+
|
|
2382
|
+
type ContactIdentityCardProps = {
|
|
2383
|
+
avatarSrc?: string;
|
|
2384
|
+
className?: string;
|
|
2385
|
+
companies: ContactCompany[];
|
|
2386
|
+
isStaffRecord?: boolean;
|
|
2387
|
+
name: string;
|
|
2388
|
+
onAvatarChange?: (previewUrl: string) => void;
|
|
2389
|
+
photoUploadTitle?: string;
|
|
2390
|
+
showStatus?: boolean;
|
|
2391
|
+
status?: string;
|
|
2392
|
+
};
|
|
2393
|
+
declare function ContactIdentityCard({ avatarSrc, className, companies, isStaffRecord, name, onAvatarChange, photoUploadTitle, showStatus, status, }: ContactIdentityCardProps): react.JSX.Element;
|
|
2394
|
+
|
|
2395
|
+
type ContactNotesWorkspaceTab = "notes" | "activities" | "documents" | "additional";
|
|
2396
|
+
type ContactNotesActivityProps = {
|
|
2397
|
+
activeTab?: ContactNotesWorkspaceTab;
|
|
2398
|
+
className?: string;
|
|
2399
|
+
defaultTab?: ContactNotesWorkspaceTab;
|
|
2400
|
+
items?: NotesActivityItem[];
|
|
2401
|
+
onAction?: (action: ContactDetailsAction) => void;
|
|
2402
|
+
onAddNote?: (note: string) => void;
|
|
2403
|
+
onTabChange?: (tab: ContactNotesWorkspaceTab) => void;
|
|
2404
|
+
tabsVariant?: TabsVariant;
|
|
2405
|
+
};
|
|
2406
|
+
declare function ContactNotesActivity({ activeTab: controlledActiveTab, className, defaultTab, items, onAction, onAddNote, onTabChange, tabsVariant, }: ContactNotesActivityProps): react.JSX.Element;
|
|
2407
|
+
|
|
2408
|
+
type ContactSummaryTab = "basic" | "other" | "security";
|
|
2409
|
+
type ContactSummaryCardProps = {
|
|
2410
|
+
className?: string;
|
|
2411
|
+
contact: ContactDetailsContact;
|
|
2412
|
+
defaultTab?: ContactSummaryTab;
|
|
2413
|
+
isStaffRecord?: boolean;
|
|
2414
|
+
moreActions?: MoreActionsMenuItem[];
|
|
2415
|
+
onPasswordReset?: () => void;
|
|
2416
|
+
ownerAvatarSrc?: string;
|
|
2417
|
+
showActions?: boolean;
|
|
2418
|
+
tabsVariant?: TabsVariant;
|
|
2419
|
+
};
|
|
2420
|
+
declare function ContactSummaryCard({ className, contact, defaultTab, isStaffRecord, moreActions, onPasswordReset, ownerAvatarSrc, showActions, tabsVariant, }: ContactSummaryCardProps): react.JSX.Element;
|
|
2421
|
+
|
|
2422
|
+
declare const defaultContact: ContactDetailsContact;
|
|
2423
|
+
declare const defaultContactNotes: NotesActivityItem[];
|
|
2424
|
+
|
|
2212
2425
|
type TreeViewNode = {
|
|
2213
2426
|
children?: TreeViewNode[];
|
|
2214
2427
|
id: string;
|
|
@@ -2748,4 +2961,4 @@ type SankeyLinkDef = {
|
|
|
2748
2961
|
};
|
|
2749
2962
|
declare const demoSankeyLinks: SankeyLinkDef[];
|
|
2750
2963
|
|
|
2751
|
-
export { type AccentColor, AccentColorPicker, Accordion, AccordionGroup, type AccordionGroupType, Alert, type AlertStatus, ApplicationFooter, type ApplicationFooterAction, type ApplicationFooterProps, ApplicationHeader, type ApplicationHeaderAction, type ApplicationHeaderProfile, type ApplicationHeaderProps, AspectRatio, type AspectRatioProps, Avatar, AvatarGroup, type AvatarGroupItem, type AvatarShape, type AvatarSize, Badge, type BadgeSize, type BadgeTone, type BadgeVariant, BottomNavigation, type BottomNavigationItem, type BottomNavigationProps, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonVariant, Calendar, type CalendarEvent, type CalendarProps, Card, Carousel, CascaderField, type CascaderOption, CatalogIcon, Chart, type ChartDatum, type ChartPalette, type ChartSeries, type ChartVariant, CheckboxField, ChipInput, ChipInputField, type ChipInputPreset, type ChipInputVariant, ChoiceChips, ChoiceChipsField, type ChoiceChipsSelectionMode, type ChoiceChipsVariant, type ChoiceControlSize, type ChoiceOption, type ChoiceShape, Clipboard, ClipboardProvider, Clock, type ClockSize, ColorField, Columns, type ColumnsDirection, type ColumnsProps, CommandPalette, type CommandPaletteItem, Container, type ContainerProps, type ContainerSize, ContentTimeline, type ContentTimelineGroup, type ContentTimelineItem, type ContentTimelineStatus, type ContentTimelineTag, ContextMenuProvider, ContextMenuTarget, CopyButton, CountryPickerField, CustomScrollbar, type CustomScrollbarOrientation, type CustomScrollbarProps, type CustomScrollbarShape, DEFAULT_FONT_FAMILY, DEFAULT_NOTE_TAG_OPTIONS, DEFAULT_TOAST_DURATION_MS, DashboardContentContainer, type DashboardContentContainerProps, type DashboardContentContainerWidth, DataGrid, type DataGridColumn, type DataGridLayout, type DataGridPivotConfig, type DataGridRow, type DataGridRowHeaderColumn, DateField, type DateInputType, DealsOverTime, type DealsOverTimePoint, type DealsOverTimeProps, DescriptionList, type DescriptionListItem, type DescriptionListLayout, Dialog, type DialogActionSet, type DialogResult, Divider, type DividerOrientation, type DividerTone, DockLayout, type DockLayoutProps, Drawer, DrawerDefaultActions, type DrawerSide, DropdownMenu, DropdownMenuItem, type DropdownMenuItemData, type DropdownMenuPlacement, DualListBuilder, type DualListBuilderProps, type DualListItem, type ElementSize, EmojiPicker, type EmojiPickerPlacement, type EmojiPickerProps, EmptyState, type EmptyStateIcon, FONT_STORAGE_KEY, type FieldMode, FieldShell, FileField, FilterBuilder, type FilterBuilderProps, type FilterCondition, type FilterOperator, FilterSelectField, type FilterSelectGroup, FloatingActionButton, type FloatingActionButtonPosition, type FloatingActionButtonProps, type FloatingActionButtonSize, FocusTrap, FontPicker, type GalleryImage, Gauge, type GaugeFooterItem, type GaugeTrend, type GaugeVariant, type GoogleFontFamily, Grid, type GridProps, HiddenField, type HotkeyCombo, HotkeyManager, Icon, IconBadge, type IconBadgeProps, type IconBadgeUrgency, IconPicker, type IconSize, type IconTone, ImageCropUploadField, type ImageCropUploadFieldProps, type ImageCropUploadResult, ImageCropUploadWidget, type ImageCropUploadWidgetProps, ImageGallery, ImageThumbnail, type ImageThumbnailSize, type InputControlSize, IntersectionObserver, JsonViewer, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, KeyboardShortcut, type KeyboardShortcutSize, type LabelPosition, Lightbox, List, type ListItem, MasonryGrid, type MasonryGridItem, MegaMenu, type MegaMenuConfig, type MegaMenuFeatured, type MegaMenuItem, type MegaMenuSection, MetricTile, Modal, ModalDefaultActions, type ModalSize, type ModelAsset, ModelGallery, ModelLightbox, ModelThumbnail, type ModelThumbnailSize, ModelViewer, MultiSelectField, NavigationRail, type NavigationRailItem, type NavigationRailProps, NoteComposer, type NoteComposerProps, NoteTag, NoteTagList, type NoteTagOption, NoteTagPicker, type NoteTagTone, NotesActivity, type NotesActivityItem, type NotesActivityProps, type NotesActivityTag, type NotesActivityTagTone, NumberField, OpusThemeProvider, PageHeader, type PageHeaderProps, Pagination, type PaginationProps, Panel, type PasswordRequirement, PasswordStrengthField, type PermissionLevel, PermissionsMatrix, type PermissionsMatrixProps, type PhoneCountry, PhoneNumberField, PipelineOverview, type PipelineOverviewProps, type PipelineStage, Popover, type PopoverPlacement, Portal, PortalHost, ProfilePhotoUploadModal, ProgressBar, ProgressRing, PropertyGrid, type PropertyGridItem, PropertyInspector, type PropertyInspectorItem, type PropertyInspectorValue, QueryBuilder, type QueryBuilderProps, type QueryCombinator, type QueryGroup, type QueryOperator, type QueryRule, Radio, RadioGroup, RangeField, RatingField, type RatingVariant, RecentActivity, type RecentActivityItem, type RecentActivityProps, ResizablePanel, type ResizablePanelProps, ResizeHandle, type ResizeHandleBackground, type ResizeHandleHeight, type ResizeHandleOrientation, type ResizeHandleProps, ResizeObserver, ResourcePlanner, type ResourcePlannerItem, type ResourcePlannerProps, type ResourcePlannerResource, RichTextField, RuleBuilder, type RuleBuilderProps, type RuleDefinition, type RuleEffect, Scheduler, type SchedulerEvent, type SchedulerProps, ScrollArea, type ScrollAreaProps, Section, type SectionAlign, type SectionColumns, type SectionGap, type SectionJustify, type SectionLayoutPreset, type SectionSidebar, type SectionSidebarRatio, type SectionSpan, type SectionStackBelow, type SectionTemplate, type SectionWidth, SegmentedControlField, SelectField, ShowMore, type ShowToastOptions, Sidebar, SidebarGroup, SidebarHeader, SidebarLayout, SidebarLink, type SidebarMenuGroupItem, type SidebarMenuItem, type SidebarMenuLinkItem, SidebarNav, type SidebarProps, type SidebarSide, Skeleton, type SkeletonAnimation, type SkeletonVariant, SliderRangeField, Spacer, type SpacerProps, Sparkline, Speedometer, Spinner, type SpinnerSize, type SpinnerTone, SplitButton, type SplitButtonAction, type SplitButtonProps, Splitter, type SplitterOrientation, type SplitterProps, Stack, type StackAlign, type StackDirection, type StackJustify, type StackProps, StatCard, type StatCardTrend, StatTile, type StatTileItem, type StatTileProps, type StatTileTone, type StatTileTrend, type StatTileTrendTone, StatTiles, type StatTilesProps, Statistic, type StatisticTrend, StatusIndicator, type StatusIndicatorState, type SurfaceDensity, type SurfaceTone, SwitchField, type TabItem, Table, type TableColumn, type TableDensity, type TableRow, Tabs, type TabsOrientation, type TabsVariant, TextAreaField, TextField, type Theme, OpusThemeProvider as ThemeProvider, ThemeSwitcher, ThemeToggleField, ThreePaneLayout, type ThreePaneLayoutProps, type ThreePaneLayoutSize, Tile, type TileItem, type TileProps, type TileTone, Tiles, type TilesLayout, type TilesProps, Toast, type ToastHorizontalPosition, ToastProvider, type ToastVerticalPosition, type ToastViewportPosition, Toolbar, type ToolbarProps, Tooltip, TopNavigation, type TopNavigationBarMenu, type TopNavigationDropdownMenu, type TopNavigationMegaMenu, TopNavigationMenu, type TopNavigationMenuConfig, type TopNavigationSelectItem, type TopPerformingUserItem, TopPerformingUsers, type TopPerformingUsersProps, TransferListField, TreeSelectField, type TreeSelectNode, TreeView, type TreeViewNode, TrendBadge, type TrendBadgeDirection, type UpcomingTaskItem, UpcomingTasks, type UpcomingTasksProps, type UserProfileMenuItem, type UserProfilePhotoUploadOptions, UserProfileWidget, type UserProfileWidgetProps, VisuallyHidden, type WelcomeGreeting, WelcomeMessage, type WelcomeMessageProps, accentColors, cartesianSpecializedVariants, countryCodeToFlag, createAccentStyle, defaultMegaMenuFeatured, defaultMegaMenuMenus, defaultMegaMenuSections, defaultTopNavigationBarMenus, defaultTopNavigationMegaMenus, defaultTopNavigationMenus, demoSankeyLinks, fieldInputAriaProps, getWelcomeGreeting, googleFonts, countries as phoneCountries, useAccentPreference, useClipboard, useContextMenu, useFieldShellAria, useFontPreference, useHotkey, useHotkeyManager, useIntersectionObserver, useOpusTheme, usePortalHost, useResizeObserver, useToast, useTopNavigation, worldMapRegionIds };
|
|
2964
|
+
export { type AccentColor, AccentColorPicker, Accordion, AccordionGroup, type AccordionGroupType, Alert, type AlertStatus, ApplicationFooter, type ApplicationFooterAction, type ApplicationFooterProps, ApplicationHeader, type ApplicationHeaderAction, type ApplicationHeaderProfile, type ApplicationHeaderProps, AspectRatio, type AspectRatioProps, AudioPlayer, type AudioPlayerProps, type AudioTrack, Avatar, AvatarGroup, type AvatarGroupItem, type AvatarShape, type AvatarSize, Badge, type BadgeSize, type BadgeTone, type BadgeVariant, BottomNavigation, type BottomNavigationItem, type BottomNavigationProps, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonVariant, Calendar, type CalendarEvent, type CalendarProps, Card, Carousel, CascaderField, type CascaderOption, CatalogIcon, Chart, type ChartDatum, type ChartPalette, type ChartSeries, type ChartVariant, CheckboxField, ChipInput, ChipInputField, type ChipInputPreset, type ChipInputVariant, ChoiceChips, ChoiceChipsField, type ChoiceChipsSelectionMode, type ChoiceChipsVariant, type ChoiceControlSize, type ChoiceOption, type ChoiceShape, Clipboard, ClipboardProvider, Clock, type ClockSize, ColorField, Columns, type ColumnsDirection, type ColumnsProps, CommandPalette, type CommandPaletteItem, ContactCard, type ContactCardProps, type ContactCompany, ContactDetails, type ContactDetailsAction, type ContactDetailsContact, type ContactDetailsProps, ContactIdentityCard, type ContactIdentityCardProps, ContactNotesActivity, type ContactNotesActivityProps, ContactSummaryCard, type ContactSummaryCardProps, type ContactSummaryTab, Container, type ContainerProps, type ContainerSize, ContentTimeline, type ContentTimelineGroup, type ContentTimelineItem, type ContentTimelineStatus, type ContentTimelineTag, ContextMenuProvider, ContextMenuTarget, CopyButton, CountryPickerField, CustomScrollbar, type CustomScrollbarOrientation, type CustomScrollbarProps, type CustomScrollbarShape, DEFAULT_FONT_FAMILY, DEFAULT_NOTE_TAG_OPTIONS, DEFAULT_TOAST_DURATION_MS, DashboardContentContainer, type DashboardContentContainerProps, type DashboardContentContainerWidth, DataGrid, type DataGridColumn, type DataGridLayout, type DataGridPivotConfig, type DataGridRow, type DataGridRowHeaderColumn, DateField, type DateInputType, DealsOverTime, type DealsOverTimePoint, type DealsOverTimeProps, DescriptionList, type DescriptionListItem, type DescriptionListLayout, Dialog, type DialogActionSet, type DialogResult, Divider, type DividerOrientation, type DividerTone, DockLayout, type DockLayoutProps, Drawer, DrawerDefaultActions, type DrawerSide, DropdownMenu, DropdownMenuItem, type DropdownMenuItemData, type DropdownMenuPlacement, DualListBuilder, type DualListBuilderProps, type DualListItem, type ElementSize, EmojiPicker, type EmojiPickerPlacement, type EmojiPickerProps, EmptyState, type EmptyStateIcon, FONT_STORAGE_KEY, type FieldMode, FieldShell, FileField, FilterBuilder, type FilterBuilderProps, type FilterCondition, type FilterOperator, FilterSelectField, type FilterSelectGroup, FloatingActionButton, type FloatingActionButtonPosition, type FloatingActionButtonProps, type FloatingActionButtonSize, FocusTrap, FontPicker, type GalleryImage, Gauge, type GaugeFooterItem, type GaugeTrend, type GaugeVariant, type GoogleFontFamily, Grid, type GridProps, HiddenField, type HotkeyCombo, HotkeyManager, Icon, IconBadge, type IconBadgeProps, type IconBadgeUrgency, IconPicker, type IconSize, type IconTone, ImageCropUploadField, type ImageCropUploadFieldProps, type ImageCropUploadResult, ImageCropUploadWidget, type ImageCropUploadWidgetProps, ImageGallery, ImageThumbnail, type ImageThumbnailSize, type InputControlSize, IntersectionObserver, JsonViewer, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, KeyboardShortcut, type KeyboardShortcutSize, type LabelPosition, Lightbox, List, type ListItem, Map, type MapCoordinate, type MapMarker, type MapProps, MasonryGrid, type MasonryGridItem, MegaMenu, type MegaMenuConfig, type MegaMenuFeatured, type MegaMenuItem, type MegaMenuSection, MetricTile, Modal, ModalDefaultActions, type ModalSize, type ModelAsset, ModelGallery, ModelLightbox, ModelThumbnail, type ModelThumbnailSize, ModelViewer, MoreActionsMenu, type MoreActionsMenuItem, type MoreActionsMenuProps, MultiSelectField, NavigationRail, type NavigationRailItem, type NavigationRailProps, NoteComposer, type NoteComposerProps, NoteTag, NoteTagList, type NoteTagOption, NoteTagPicker, type NoteTagTone, NotesActivity, type NotesActivityItem, type NotesActivityProps, type NotesActivityTag, type NotesActivityTagTone, NumberField, OpusThemeProvider, PageHeader, type PageHeaderProps, Pagination, type PaginationProps, Panel, type PasswordRequirement, PasswordStrengthField, type PermissionLevel, PermissionsMatrix, type PermissionsMatrixProps, type PhoneCountry, PhoneNumberField, PipelineOverview, type PipelineOverviewProps, type PipelineStage, Popover, type PopoverPlacement, Portal, PortalHost, ProfilePhotoUploadModal, ProgressBar, ProgressRing, PropertyGrid, type PropertyGridItem, PropertyInspector, type PropertyInspectorItem, type PropertyInspectorValue, QueryBuilder, type QueryBuilderProps, type QueryCombinator, type QueryGroup, type QueryOperator, type QueryRule, Radio, RadioGroup, RangeField, RatingField, type RatingVariant, RecentActivity, type RecentActivityItem, type RecentActivityProps, ResizablePanel, type ResizablePanelProps, ResizeHandle, type ResizeHandleBackground, type ResizeHandleHeight, type ResizeHandleOrientation, type ResizeHandleProps, ResizeObserver, ResourcePlanner, type ResourcePlannerItem, type ResourcePlannerProps, type ResourcePlannerResource, RichTextField, RuleBuilder, type RuleBuilderProps, type RuleDefinition, type RuleEffect, Scheduler, type SchedulerEvent, type SchedulerProps, ScrollArea, type ScrollAreaProps, Section, type SectionAlign, type SectionColumns, type SectionGap, type SectionJustify, type SectionLayoutPreset, type SectionSidebar, type SectionSidebarRatio, type SectionSpan, type SectionStackBelow, type SectionTemplate, type SectionWidth, SegmentedControlField, SelectField, ShowMore, type ShowToastOptions, Sidebar, SidebarGroup, SidebarHeader, SidebarLayout, SidebarLink, type SidebarMenuGroupItem, type SidebarMenuItem, type SidebarMenuLinkItem, SidebarNav, type SidebarProps, type SidebarSide, Skeleton, type SkeletonAnimation, type SkeletonVariant, SliderRangeField, Spacer, type SpacerProps, Sparkline, Speedometer, Spinner, type SpinnerSize, type SpinnerTone, SplitButton, type SplitButtonAction, type SplitButtonProps, Splitter, type SplitterOrientation, type SplitterProps, Stack, type StackAlign, type StackDirection, type StackJustify, type StackProps, StatCard, type StatCardTrend, StatTile, type StatTileItem, type StatTileProps, type StatTileTone, type StatTileTrend, type StatTileTrendTone, StatTiles, type StatTilesProps, Statistic, type StatisticTrend, StatusIndicator, type StatusIndicatorState, type SurfaceDensity, type SurfaceTone, SwitchField, type TabItem, Table, type TableColumn, type TableDensity, type TableRow, Tabs, type TabsOrientation, type TabsPanelMode, type TabsVariant, TextAreaField, TextField, type Theme, OpusThemeProvider as ThemeProvider, ThemeSwitcher, ThemeToggleField, ThreePaneLayout, type ThreePaneLayoutProps, type ThreePaneLayoutSize, Tile, type TileItem, type TileProps, type TileTone, Tiles, type TilesLayout, type TilesProps, Toast, type ToastHorizontalPosition, ToastProvider, type ToastVerticalPosition, type ToastViewportPosition, Toolbar, type ToolbarProps, Tooltip, TopNavigation, type TopNavigationBarMenu, type TopNavigationDropdownMenu, type TopNavigationMegaMenu, TopNavigationMenu, type TopNavigationMenuConfig, type TopNavigationSelectItem, type TopPerformingUserItem, TopPerformingUsers, type TopPerformingUsersProps, TransferListField, TreeSelectField, type TreeSelectNode, TreeView, type TreeViewNode, TrendBadge, type TrendBadgeDirection, type UpcomingTaskItem, UpcomingTasks, type UpcomingTasksProps, type UserProfileMenuItem, type UserProfilePhotoUploadOptions, UserProfileWidget, type UserProfileWidgetProps, VideoPlayer, type VideoPlayerProps, VisuallyHidden, type WelcomeGreeting, WelcomeMessage, type WelcomeMessageProps, accentColors, cartesianSpecializedVariants, countryCodeToFlag, createAccentStyle, defaultContact, defaultContactNotes, defaultMegaMenuFeatured, defaultMegaMenuMenus, defaultMegaMenuSections, defaultTopNavigationBarMenus, defaultTopNavigationMegaMenus, defaultTopNavigationMenus, demoSankeyLinks, fieldInputAriaProps, getPrimaryCompany, getWelcomeGreeting, googleFonts, countries as phoneCountries, resolveContactDetailsContact, useAccentPreference, useClipboard, useContextMenu, useFieldShellAria, useFontPreference, useHotkey, useHotkeyManager, useIntersectionObserver, useOpusTheme, usePortalHost, useResizeObserver, useToast, useTopNavigation, worldMapRegionIds };
|