opus-react 0.3.7 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,6 +1,7 @@
1
1
  import * as react from 'react';
2
- import { ButtonHTMLAttributes, ReactNode, ChangeEventHandler, Ref, CSSProperties, ComponentPropsWithoutRef, RefObject, HTMLAttributes, MouseEvent, ElementType } from 'react';
2
+ import { ButtonHTMLAttributes, ReactNode, ChangeEventHandler, Ref, FormEvent, CSSProperties, ComponentPropsWithoutRef, RefObject, HTMLAttributes, MouseEvent, ComponentProps, ElementType } from 'react';
3
3
  import { StyleSpecification } from 'maplibre-gl';
4
+ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
4
5
 
5
6
  type Theme = "light" | "dark";
6
7
  type FieldMode = "stacked" | "flagged";
@@ -193,16 +194,21 @@ type FileFieldProps = {
193
194
  };
194
195
  declare function FileField({ error, fileName, footnote, help, id, label, labelPosition, mode, onChange, size, }: FileFieldProps): react.JSX.Element;
195
196
 
197
+ type ImageCropFit = "cover" | "contain";
198
+
196
199
  type ImageCropUploadResult = {
197
200
  file: File;
198
201
  previewUrl: string;
199
202
  };
203
+ type ImageCropShape = "circle" | "rect";
200
204
  type ImageCropUploadFieldProps = {
201
205
  accept?: string;
202
206
  changeButtonLabel?: string;
203
207
  cropButtonLabel?: string;
204
208
  embedded?: boolean;
205
209
  error?: string;
210
+ /** cover fills the frame; contain fits the full image (zoom out to see max width/height). */
211
+ fit?: ImageCropFit;
206
212
  help?: string;
207
213
  hideActions?: boolean;
208
214
  id: string;
@@ -219,15 +225,22 @@ type ImageCropUploadFieldProps = {
219
225
  canApply: boolean;
220
226
  isCropping: boolean;
221
227
  }) => void;
228
+ /** Square output size for circle crops. Ignored when outputWidth/Height are set. */
222
229
  outputSize?: number;
230
+ outputHeight?: number;
231
+ outputWidth?: number;
232
+ shape?: ImageCropShape;
223
233
  size?: InputControlSize;
224
234
  uploadLabel?: string;
225
235
  value?: string;
236
+ /** Square viewport size for circle crops. */
226
237
  viewportSize?: number;
238
+ viewportHeight?: number;
239
+ viewportWidth?: number;
227
240
  zoomLabel?: string;
228
241
  zoomStep?: number;
229
242
  };
230
- declare function ImageCropUploadField({ accept, changeButtonLabel, cropButtonLabel, embedded, error, help, hideActions, id, label, labelPosition, labelVisuallyHidden, maxZoom, minZoom, mode, onChange, onCrop, onCropAvailabilityChange, outputSize, size, uploadLabel, value, viewportSize, zoomLabel, zoomStep, }: ImageCropUploadFieldProps): react.JSX.Element;
243
+ declare function ImageCropUploadField({ accept, changeButtonLabel, cropButtonLabel, embedded, error, fit, help, hideActions, id, label, labelPosition, labelVisuallyHidden, maxZoom, minZoom, mode, onChange, onCrop, onCropAvailabilityChange, outputHeight, outputSize, outputWidth, shape, size, uploadLabel, value, viewportHeight, viewportSize, viewportWidth, zoomLabel, zoomStep, }: ImageCropUploadFieldProps): react.JSX.Element;
231
244
 
232
245
  type NumberFieldProps = {
233
246
  error?: string;
@@ -1072,6 +1085,115 @@ type TrendBadgeProps = {
1072
1085
  };
1073
1086
  declare function TrendBadge({ direction, value }: TrendBadgeProps): react.JSX.Element;
1074
1087
 
1088
+ type CrmWorkspaceLabVariant = "appointment-diary" | "company-directory" | "contact-directory" | "document-manager" | "notification-centre" | "product-catalogue" | "quotation-builder" | "sales-invoice" | "sales-order" | "sales-pipeline" | "stock-control" | "system-configuration" | "task-workspace";
1089
+ type CrmWorkspaceLabProps = {
1090
+ variant: CrmWorkspaceLabVariant;
1091
+ onAction?: (action: string) => void;
1092
+ };
1093
+ declare function CrmWorkspaceLab({ variant, onAction }: CrmWorkspaceLabProps): react.JSX.Element;
1094
+
1095
+ type OtpFieldProps = {
1096
+ error?: string;
1097
+ help?: string;
1098
+ id: string;
1099
+ label: string;
1100
+ labelPosition?: LabelPosition;
1101
+ length?: number;
1102
+ mode?: FieldMode;
1103
+ required?: boolean;
1104
+ value: string;
1105
+ onChange: (value: string) => void;
1106
+ onComplete?: (value: string) => void;
1107
+ };
1108
+ declare function OtpField({ error, help, id, label, labelPosition, length, mode, required, value, onChange, onComplete }: OtpFieldProps): react.JSX.Element;
1109
+
1110
+ type ShellProps = {
1111
+ error?: string;
1112
+ help?: string;
1113
+ id: string;
1114
+ label: string;
1115
+ labelPosition?: LabelPosition;
1116
+ mode?: FieldMode;
1117
+ required?: boolean;
1118
+ };
1119
+ type DateRangeValue = {
1120
+ from: string;
1121
+ to: string;
1122
+ };
1123
+ type DateRangeFieldProps = ShellProps & {
1124
+ value: DateRangeValue;
1125
+ min?: string;
1126
+ max?: string;
1127
+ onChange: (value: DateRangeValue) => void;
1128
+ };
1129
+ declare function DateRangeField({ error, help, id, label, labelPosition, max, min, mode, required, value, onChange }: DateRangeFieldProps): react.JSX.Element;
1130
+ type ComboboxOption = {
1131
+ label: string;
1132
+ value: string;
1133
+ };
1134
+ type ComboboxFieldProps = ShellProps & {
1135
+ options: ComboboxOption[];
1136
+ placeholder?: string;
1137
+ value: string;
1138
+ onChange: (value: string) => void;
1139
+ };
1140
+ declare function ComboboxField({ error, help, id, label, labelPosition, mode, options, placeholder, required, value, onChange }: ComboboxFieldProps): react.JSX.Element;
1141
+ type CurrencyFieldProps = ShellProps & {
1142
+ currency?: string;
1143
+ locale?: string;
1144
+ value: number | null;
1145
+ onChange: (value: number | null) => void;
1146
+ };
1147
+ declare function CurrencyField({ currency, error, help, id, label, labelPosition, locale, mode, required, value, onChange }: CurrencyFieldProps): react.JSX.Element;
1148
+ type MaskedFieldProps = ShellProps & {
1149
+ mask: string;
1150
+ placeholder?: string;
1151
+ value: string;
1152
+ onChange: (value: string) => void;
1153
+ };
1154
+ declare function MaskedField({ error, help, id, label, labelPosition, mask, mode, placeholder, required, value, onChange }: MaskedFieldProps): react.JSX.Element;
1155
+ type MultiFileItem = File | {
1156
+ name: string;
1157
+ size: number;
1158
+ };
1159
+ type MultiFileFieldProps = ShellProps & {
1160
+ accept?: string;
1161
+ files: MultiFileItem[];
1162
+ maxFiles?: number;
1163
+ onChange: (files: MultiFileItem[]) => void;
1164
+ };
1165
+ declare function MultiFileField({ accept, error, files, help, id, label, labelPosition, maxFiles, mode, required, onChange }: MultiFileFieldProps): react.JSX.Element;
1166
+ type CheckboxGroupOption = {
1167
+ disabled?: boolean;
1168
+ label: string;
1169
+ value: string;
1170
+ };
1171
+ type CheckboxGroupFieldProps = ShellProps & {
1172
+ options: CheckboxGroupOption[];
1173
+ value: string[];
1174
+ onChange: (value: string[]) => void;
1175
+ };
1176
+ declare function CheckboxGroupField({ error, help, id, label, labelPosition, mode, options, required, value, onChange }: CheckboxGroupFieldProps): react.JSX.Element;
1177
+ type FormValidationSummaryProps = {
1178
+ errors: Array<{
1179
+ fieldId?: string;
1180
+ message: string;
1181
+ }>;
1182
+ title?: string;
1183
+ };
1184
+ declare function FormValidationSummary({ errors, title }: FormValidationSummaryProps): react.JSX.Element | null;
1185
+ declare function Form({ children, onSubmit }: {
1186
+ children: ReactNode;
1187
+ onSubmit?: (event: FormEvent<HTMLFormElement>) => void;
1188
+ }): react.JSX.Element;
1189
+ declare function FormSection({ children, title }: {
1190
+ children: ReactNode;
1191
+ title?: string;
1192
+ }): react.JSX.Element;
1193
+ declare function FormActions({ children }: {
1194
+ children: ReactNode;
1195
+ }): react.JSX.Element;
1196
+
1075
1197
  type PanelProps = {
1076
1198
  actions?: ReactNode;
1077
1199
  bordered?: boolean;
@@ -1276,22 +1398,39 @@ type CarouselProps = {
1276
1398
  images: GalleryImage[];
1277
1399
  initialIndex?: number;
1278
1400
  loop?: boolean;
1401
+ onAction?: (action: string) => void;
1279
1402
  showCaptions?: boolean;
1280
1403
  showPips?: boolean;
1281
1404
  };
1282
- declare function Carousel({ ariaLabel, images, initialIndex, loop, showCaptions, showPips, }: CarouselProps): react.JSX.Element;
1405
+ declare function Carousel({ ariaLabel, images, initialIndex, loop, onAction, showCaptions, showPips, }: CarouselProps): react.JSX.Element;
1283
1406
 
1407
+ type VideoTrack = {
1408
+ id?: string;
1409
+ /** Seconds to park on for the idle preview frame (before play). */
1410
+ previewTime?: number;
1411
+ src: string;
1412
+ title?: string;
1413
+ };
1284
1414
  type VideoPlayerProps = {
1285
1415
  autoPlay?: boolean;
1286
1416
  className?: string;
1417
+ /** Removes the component frame so the player can fill a window or media surface edge-to-edge. */
1418
+ edgeToEdge?: boolean;
1419
+ initialIndex?: number;
1287
1420
  loop?: boolean;
1421
+ loopPlaylist?: boolean;
1288
1422
  muted?: boolean;
1289
- poster?: string;
1423
+ /** Reports every user-facing player action. */
1424
+ onAction?: (action: string) => void;
1425
+ shareUrl?: string;
1426
+ showShare?: boolean;
1290
1427
  showTitle?: boolean;
1291
- src: string;
1428
+ /** Preferred multi-track API. Falls back to `src` / `title`. */
1429
+ tracks?: VideoTrack[];
1430
+ src?: string;
1292
1431
  title?: string;
1293
1432
  };
1294
- declare function VideoPlayer({ autoPlay, className, loop, muted, poster, showTitle, src, title, }: VideoPlayerProps): react.JSX.Element;
1433
+ declare function VideoPlayer({ autoPlay, className, edgeToEdge, initialIndex, loop, loopPlaylist, muted, onAction, shareUrl, showShare, showTitle, src, title, tracks, }: VideoPlayerProps): react.JSX.Element | null;
1295
1434
 
1296
1435
  type AudioTrack = {
1297
1436
  artist?: string;
@@ -1308,13 +1447,17 @@ type AudioPlayerProps = {
1308
1447
  initialIndex?: number;
1309
1448
  loop?: boolean;
1310
1449
  loopPlaylist?: boolean;
1450
+ /** Reports every user-facing player action. */
1451
+ onAction?: (action: string) => void;
1452
+ shareUrl?: string;
1311
1453
  showArtwork?: boolean;
1454
+ showShare?: boolean;
1312
1455
  /** Preferred multi-track API. Falls back to `src` / `title` / `artist` / `artworkSrc`. */
1313
1456
  tracks?: AudioTrack[];
1314
1457
  src?: string;
1315
1458
  title?: string;
1316
1459
  };
1317
- declare function AudioPlayer({ artist, artworkSrc, autoPlay, className, initialIndex, loop, loopPlaylist, showArtwork, src, title, tracks, }: AudioPlayerProps): react.JSX.Element | null;
1460
+ declare function AudioPlayer({ artist, artworkSrc, autoPlay, className, initialIndex, loop, loopPlaylist, onAction, shareUrl, showArtwork, showShare, src, title, tracks, }: AudioPlayerProps): react.JSX.Element | null;
1318
1461
 
1319
1462
  type LightboxProps = {
1320
1463
  dismissOnBackdrop?: boolean;
@@ -1440,6 +1583,7 @@ declare function Statistic({ label, prefix, suffix, trend, trendLabel, value, }:
1440
1583
 
1441
1584
  type ListItem = {
1442
1585
  description?: string;
1586
+ id?: string;
1443
1587
  icon?: string;
1444
1588
  meta?: string;
1445
1589
  title: string;
@@ -1448,8 +1592,9 @@ type ListProps = {
1448
1592
  density?: SurfaceDensity;
1449
1593
  items: ListItem[];
1450
1594
  ordered?: boolean;
1595
+ onItemClick?: (item: ListItem, index: number) => void;
1451
1596
  };
1452
- declare function List({ density, items, ordered }: ListProps): react.JSX.Element;
1597
+ declare function List({ density, items, ordered, onItemClick }: ListProps): react.JSX.Element;
1453
1598
 
1454
1599
  type DescriptionListItem = {
1455
1600
  details: string;
@@ -1469,8 +1614,9 @@ type PropertyGridItem = {
1469
1614
  type PropertyGridProps = {
1470
1615
  bordered?: boolean;
1471
1616
  items: PropertyGridItem[];
1617
+ onCopy?: (item: PropertyGridItem, index: number) => void;
1472
1618
  };
1473
- declare function PropertyGrid({ bordered, items }: PropertyGridProps): react.JSX.Element;
1619
+ declare function PropertyGrid({ bordered, items, onCopy }: PropertyGridProps): react.JSX.Element;
1474
1620
 
1475
1621
  type StackAlign = "start" | "center" | "end" | "stretch";
1476
1622
  type StackJustify = "start" | "center" | "end" | "between" | "around";
@@ -1762,6 +1908,24 @@ type TileProps = {
1762
1908
  };
1763
1909
  declare function Tile({ className, href, icon, label, onClick, role, tone, withGradients, }: TileProps): react.JSX.Element;
1764
1910
 
1911
+ type AccentPreferenceState = {
1912
+ accent: string;
1913
+ accentPairId: string;
1914
+ accentSecondary: string;
1915
+ };
1916
+ type TileAccentPreferenceState = {
1917
+ tileAccent: string;
1918
+ tileAccentSecondary: string;
1919
+ };
1920
+ declare global {
1921
+ interface Window {
1922
+ __OPUS_ACCENT__?: AccentPreferenceState;
1923
+ __OPUS_TILE_ACCENT__?: TileAccentPreferenceState;
1924
+ }
1925
+ }
1926
+ declare function createAccentStyle(accent: string, secondary?: string): CSSProperties;
1927
+ declare function createTileAccentStyle(tileAccent: string, tileAccentSecondary?: string): CSSProperties;
1928
+
1765
1929
  type TilesLayout = "fill" | "fixed";
1766
1930
  type TileItem = {
1767
1931
  href?: string;
@@ -2229,8 +2393,9 @@ type KanbanBoardProps = {
2229
2393
  cards: Record<string, KanbanCard>;
2230
2394
  columns: KanbanColumn[];
2231
2395
  onChange?: (columns: KanbanColumn[]) => void;
2396
+ onCardClick?: (card: KanbanCard) => void;
2232
2397
  };
2233
- declare function KanbanBoard({ cards, columns, onChange }: KanbanBoardProps): react.JSX.Element;
2398
+ declare function KanbanBoard({ cards, columns, onCardClick, onChange }: KanbanBoardProps): react.JSX.Element;
2234
2399
 
2235
2400
  type CalendarEvent = {
2236
2401
  date: string;
@@ -2270,8 +2435,9 @@ type ResourcePlannerProps = {
2270
2435
  items: ResourcePlannerItem[];
2271
2436
  resources: ResourcePlannerResource[];
2272
2437
  startHour?: number;
2438
+ onItemClick?: (item: ResourcePlannerItem) => void;
2273
2439
  };
2274
- declare function ResourcePlanner({ endHour, items, resources, startHour, }: ResourcePlannerProps): react.JSX.Element;
2440
+ declare function ResourcePlanner({ endHour, items, onItemClick, resources, startHour, }: ResourcePlannerProps): react.JSX.Element;
2275
2441
 
2276
2442
  type ContentTimelineTagTone = NoteTagTone;
2277
2443
  type ContentTimelineTag = {
@@ -2305,7 +2471,7 @@ type ContentTimelineProps = {
2305
2471
  };
2306
2472
  declare function ContentTimeline({ groups, items, onItemClick, onItemDoubleClick, variant }: ContentTimelineProps): react.JSX.Element;
2307
2473
 
2308
- type ContactDetailsAction = "add-note" | "add-task" | "call" | "change-avatar" | "edit" | "email" | "export-contact" | "log-activity" | "reset-password" | "schedule-meeting";
2474
+ type ContactDetailsAction = "add-note" | "add-task" | "call" | "change-avatar" | "edit" | "email" | "export-contact" | "log-activity" | "open-document" | "open-document-folder" | "reset-password" | "schedule-meeting";
2309
2475
  type ContactCompany = {
2310
2476
  department?: string;
2311
2477
  employees?: string;
@@ -2392,6 +2558,28 @@ type ContactIdentityCardProps = {
2392
2558
  };
2393
2559
  declare function ContactIdentityCard({ avatarSrc, className, companies, isStaffRecord, name, onAvatarChange, photoUploadTitle, showStatus, status, }: ContactIdentityCardProps): react.JSX.Element;
2394
2560
 
2561
+ type CompactDocumentView = "list" | "grid" | "columns";
2562
+ type CompactDocumentNode = {
2563
+ children?: CompactDocumentNode[];
2564
+ id: string;
2565
+ kind: "folder" | "file";
2566
+ meta?: string;
2567
+ name: string;
2568
+ status?: string;
2569
+ };
2570
+ type CompactDocumentsProps = {
2571
+ ariaLabel?: string;
2572
+ className?: string;
2573
+ defaultView?: CompactDocumentView;
2574
+ documents: CompactDocumentNode[];
2575
+ onFileOpen?: (document: CompactDocumentNode) => void;
2576
+ onFolderOpen?: (folder: CompactDocumentNode) => void;
2577
+ onViewChange?: (view: CompactDocumentView) => void;
2578
+ showSearch?: boolean;
2579
+ showViewOptions?: boolean;
2580
+ };
2581
+ declare function CompactDocuments({ ariaLabel, className, defaultView, documents, onFileOpen, onFolderOpen, onViewChange, showSearch, showViewOptions, }: CompactDocumentsProps): react.JSX.Element;
2582
+
2395
2583
  type ContactNotesWorkspaceTab = "notes" | "activities" | "documents" | "additional";
2396
2584
  type ContactNotesActivityProps = {
2397
2585
  activeTab?: ContactNotesWorkspaceTab;
@@ -2400,10 +2588,13 @@ type ContactNotesActivityProps = {
2400
2588
  items?: NotesActivityItem[];
2401
2589
  onAction?: (action: ContactDetailsAction) => void;
2402
2590
  onAddNote?: (note: string) => void;
2591
+ onDocumentOpen?: (document: CompactDocumentNode) => void;
2592
+ onDocumentFolderOpen?: (folder: CompactDocumentNode) => void;
2593
+ onDocumentViewChange?: (view: CompactDocumentView) => void;
2403
2594
  onTabChange?: (tab: ContactNotesWorkspaceTab) => void;
2404
2595
  tabsVariant?: TabsVariant;
2405
2596
  };
2406
- declare function ContactNotesActivity({ activeTab: controlledActiveTab, className, defaultTab, items, onAction, onAddNote, onTabChange, tabsVariant, }: ContactNotesActivityProps): react.JSX.Element;
2597
+ declare function ContactNotesActivity({ activeTab: controlledActiveTab, className, defaultTab, items, onAction, onAddNote, onDocumentOpen, onDocumentFolderOpen, onDocumentViewChange, onTabChange, tabsVariant, }: ContactNotesActivityProps): react.JSX.Element;
2407
2598
 
2408
2599
  type ContactSummaryTab = "basic" | "other" | "security";
2409
2600
  type ContactSummaryCardProps = {
@@ -2422,6 +2613,129 @@ declare function ContactSummaryCard({ className, contact, defaultTab, isStaffRec
2422
2613
  declare const defaultContact: ContactDetailsContact;
2423
2614
  declare const defaultContactNotes: NotesActivityItem[];
2424
2615
 
2616
+ type CompanyDetailsAction = "add-contact" | "add-note" | "add-task" | "call" | "edit" | "email" | "export-company" | "log-activity" | "open-document" | "open-document-folder" | "schedule-meeting" | "visit-website";
2617
+ type CompanyContactPerson = {
2618
+ avatarSrc?: string;
2619
+ email?: string;
2620
+ id: string;
2621
+ jobTitle?: string;
2622
+ name: string;
2623
+ phone?: string;
2624
+ primary?: boolean;
2625
+ role?: string;
2626
+ };
2627
+ type CompanyBranch = {
2628
+ addressLine1: string;
2629
+ addressLine2?: string;
2630
+ city: string;
2631
+ country: string;
2632
+ id: string;
2633
+ label: string;
2634
+ phone?: string;
2635
+ postcode: string;
2636
+ primary?: boolean;
2637
+ type?: string;
2638
+ };
2639
+ type CompanyDetailsCompany = {
2640
+ annualRevenue?: string;
2641
+ branches: CompanyBranch[];
2642
+ dateCreated: string;
2643
+ dateLastEdited: string;
2644
+ email: string;
2645
+ employees: string;
2646
+ industry: string;
2647
+ logoSrc?: string;
2648
+ name: string;
2649
+ owner: string;
2650
+ phone: string;
2651
+ source: string;
2652
+ status: string;
2653
+ tags: string[];
2654
+ type: string;
2655
+ website: string;
2656
+ };
2657
+ type CompanyDetailsProps = {
2658
+ company?: Partial<CompanyDetailsCompany>;
2659
+ contacts?: CompanyContactPerson[];
2660
+ onAction?: (action: CompanyDetailsAction) => void;
2661
+ showActions?: boolean;
2662
+ showStatus?: boolean;
2663
+ tabsVariant?: TabsVariant;
2664
+ };
2665
+ declare function getPrimaryBranch(branches: CompanyBranch[]): CompanyBranch | undefined;
2666
+ declare function resolveCompanyDetailsCompany(company: Partial<CompanyDetailsCompany> | undefined, defaults: CompanyDetailsCompany): CompanyDetailsCompany;
2667
+
2668
+ type CompanyCardProps = {
2669
+ className?: string;
2670
+ company: CompanyDetailsCompany;
2671
+ moreActions?: MoreActionsMenuItem[];
2672
+ onAction?: (action: CompanyDetailsAction) => void;
2673
+ onLogoChange?: (previewUrl: string) => void;
2674
+ ownerAvatarSrc?: string;
2675
+ showActions?: boolean;
2676
+ showStatus?: boolean;
2677
+ tabsVariant?: TabsVariant;
2678
+ };
2679
+ declare function CompanyCard({ className, company, moreActions, onAction, onLogoChange, ownerAvatarSrc, showActions, showStatus, tabsVariant, }: CompanyCardProps): react.JSX.Element;
2680
+
2681
+ declare function CompanyDetails({ company, onAction, showActions, showStatus, tabsVariant, }: CompanyDetailsProps): react.JSX.Element;
2682
+
2683
+ type CompanyIdentityCardProps = {
2684
+ className?: string;
2685
+ employees?: string;
2686
+ industry?: string;
2687
+ logoSrc?: string;
2688
+ name: string;
2689
+ onLogoChange?: (previewUrl: string) => void;
2690
+ showStatus?: boolean;
2691
+ status?: string;
2692
+ type?: string;
2693
+ };
2694
+ declare function CompanyIdentityCard({ className, employees, industry, logoSrc, name, onLogoChange, showStatus, status, type, }: CompanyIdentityCardProps): react.JSX.Element;
2695
+
2696
+ type CompanyLogoUploadModalProps = {
2697
+ fieldId?: string;
2698
+ onClose: () => void;
2699
+ onLogoChange?: (previewUrl: string) => void;
2700
+ open: boolean;
2701
+ title?: string;
2702
+ value?: string;
2703
+ };
2704
+ declare function CompanyLogoUploadModal({ fieldId, onClose, onLogoChange, open, title, value, }: CompanyLogoUploadModalProps): react.JSX.Element;
2705
+
2706
+ type CompanyNotesWorkspaceTab = "notes" | "activities" | "contacts" | "documents";
2707
+ type CompanyNotesActivityProps = {
2708
+ activeTab?: CompanyNotesWorkspaceTab;
2709
+ className?: string;
2710
+ contacts?: CompanyContactPerson[];
2711
+ defaultTab?: CompanyNotesWorkspaceTab;
2712
+ items?: NotesActivityItem[];
2713
+ onAction?: (action: CompanyDetailsAction) => void;
2714
+ onAddNote?: (note: string) => void;
2715
+ onDocumentOpen?: (document: CompactDocumentNode) => void;
2716
+ onDocumentFolderOpen?: (folder: CompactDocumentNode) => void;
2717
+ onDocumentViewChange?: (view: CompactDocumentView) => void;
2718
+ onTabChange?: (tab: CompanyNotesWorkspaceTab) => void;
2719
+ tabsVariant?: TabsVariant;
2720
+ };
2721
+ declare function CompanyNotesActivity({ activeTab: controlledActiveTab, className, contacts, defaultTab, items, onAction, onAddNote, onDocumentOpen, onDocumentFolderOpen, onDocumentViewChange, onTabChange, tabsVariant, }: CompanyNotesActivityProps): react.JSX.Element;
2722
+
2723
+ type CompanySummaryTab = string;
2724
+ type CompanySummaryCardProps = {
2725
+ className?: string;
2726
+ company: CompanyDetailsCompany;
2727
+ defaultTab?: CompanySummaryTab;
2728
+ moreActions?: MoreActionsMenuItem[];
2729
+ ownerAvatarSrc?: string;
2730
+ showActions?: boolean;
2731
+ tabsVariant?: TabsVariant;
2732
+ };
2733
+ declare function CompanySummaryCard({ className, company, defaultTab, moreActions, ownerAvatarSrc, showActions, tabsVariant, }: CompanySummaryCardProps): react.JSX.Element;
2734
+
2735
+ declare const defaultCompany: CompanyDetailsCompany;
2736
+ declare const defaultCompanyContacts: CompanyContactPerson[];
2737
+ declare const defaultCompanyNotes: NotesActivityItem[];
2738
+
2425
2739
  type TreeViewNode = {
2426
2740
  children?: TreeViewNode[];
2427
2741
  id: string;
@@ -2436,20 +2750,23 @@ declare function TreeView({ defaultExpandedIds, nodes }: TreeViewProps): react.J
2436
2750
  type MasonryGridItem = {
2437
2751
  body?: string;
2438
2752
  height?: number;
2753
+ id?: string;
2439
2754
  title: string;
2440
2755
  };
2441
2756
  type MasonryGridProps = {
2442
2757
  columns?: number;
2443
2758
  gap?: number;
2444
2759
  items: MasonryGridItem[];
2760
+ onItemClick?: (item: MasonryGridItem, index: number) => void;
2445
2761
  };
2446
- declare function MasonryGrid({ columns, gap, items }: MasonryGridProps): react.JSX.Element;
2762
+ declare function MasonryGrid({ columns, gap, items, onItemClick }: MasonryGridProps): react.JSX.Element;
2447
2763
 
2448
2764
  type JsonViewerProps = {
2449
2765
  collapsedDepth?: number;
2766
+ onToggle?: (path: string, open: boolean) => void;
2450
2767
  value: unknown;
2451
2768
  };
2452
- declare function JsonViewer({ collapsedDepth, value }: JsonViewerProps): react.JSX.Element;
2769
+ declare function JsonViewer({ collapsedDepth, onToggle, value }: JsonViewerProps): react.JSX.Element;
2453
2770
 
2454
2771
  type IconSize = "sm" | "md" | "lg";
2455
2772
  type IconTone = "default" | "muted" | "accent" | "success" | "warning" | "danger";
@@ -2693,6 +3010,7 @@ type MegaMenuFeatured = {
2693
3010
  actionLabel?: string;
2694
3011
  description: string;
2695
3012
  eyebrow?: string;
3013
+ onAction?: () => void;
2696
3014
  title: string;
2697
3015
  };
2698
3016
  type MegaMenuConfig = {
@@ -2711,6 +3029,7 @@ type MegaMenuProps = {
2711
3029
  menus?: MegaMenuConfig[];
2712
3030
  navigationId?: string;
2713
3031
  onActiveMenuChange?: (menuId: string) => void;
3032
+ onFeaturedAction?: (featured: MegaMenuFeatured, menu: MegaMenuConfig) => void;
2714
3033
  onOpenChange?: (open: boolean) => void;
2715
3034
  onSelect?: (item: MegaMenuItem) => void;
2716
3035
  open?: boolean;
@@ -2722,7 +3041,7 @@ declare const defaultMegaMenuFeatured: MegaMenuFeatured;
2722
3041
  declare const defaultMegaMenuMenus: MegaMenuConfig[];
2723
3042
  declare const defaultMegaMenuSections: MegaMenuSection[];
2724
3043
  declare const defaultTopNavigationMegaMenus: MegaMenuConfig[];
2725
- declare function MegaMenu({ activeMenu, closeOnEscape, closeOnOutside, density, featured, label, menus, navigationId, onActiveMenuChange, onOpenChange, onSelect, open, sections, staticPanel, triggerLabel, }: MegaMenuProps): react.JSX.Element;
3044
+ declare function MegaMenu({ activeMenu, closeOnEscape, closeOnOutside, density, featured, label, menus, navigationId, onActiveMenuChange, onFeaturedAction, onOpenChange, onSelect, open, sections, staticPanel, triggerLabel, }: MegaMenuProps): react.JSX.Element;
2726
3045
 
2727
3046
  type TopNavigationSelectItem = {
2728
3047
  description?: string;
@@ -2792,12 +3111,39 @@ type AccentColor = {
2792
3111
  label: string;
2793
3112
  value: string;
2794
3113
  };
3114
+ type AccentPair = {
3115
+ id: string;
3116
+ label: string;
3117
+ primary: string;
3118
+ secondary: string;
3119
+ };
3120
+ /** Curated primary → secondary transitions used across Opus chrome. */
3121
+ declare const accentPairs: AccentPair[];
3122
+ /** Shared swatch palette for accent and second-accent menus. */
3123
+ declare const accentPalette: AccentColor[];
3124
+ /** @deprecated Prefer `accentQuickColors` / `accentPalette`. */
2795
3125
  declare const accentColors: AccentColor[];
2796
- declare function createAccentStyle(accent: string): CSSProperties;
3126
+ /** @deprecated Prefer `accentPalette`. */
3127
+ declare const accentPrimaryColors: AccentColor[];
3128
+ /** @deprecated Prefer `accentPalette`. */
3129
+ declare const accentSecondaryColors: AccentColor[];
2797
3130
  declare function useAccentPreference(): {
2798
3131
  accent: string;
2799
- accentStyle: CSSProperties;
3132
+ accentPairId: string;
3133
+ accentSecondary: string;
3134
+ accentStyle: CSSProperties | undefined;
3135
+ resetAccent: () => void;
2800
3136
  setAccent: (next: string) => void;
3137
+ setAccentPair: (pairId: string) => void;
3138
+ setAccentSecondary: (next: string) => void;
3139
+ };
3140
+ declare function useTileAccentPreference(): {
3141
+ resetTileAccent: () => void;
3142
+ setTileAccent: (next: string) => void;
3143
+ setTileAccentSecondary: (next: string) => void;
3144
+ tileAccent: string;
3145
+ tileAccentSecondary: string;
3146
+ tileAccentStyle: CSSProperties | undefined;
2801
3147
  };
2802
3148
  type AccentColorPickerProps = {
2803
3149
  help?: string;
@@ -2805,15 +3151,37 @@ type AccentColorPickerProps = {
2805
3151
  label?: string;
2806
3152
  labelPosition?: LabelPosition;
2807
3153
  mode?: FieldMode;
3154
+ /** Primary accent hex. */
2808
3155
  value: string;
3156
+ /** Secondary accent hex. Defaults to the curated companion for `value`. */
3157
+ secondaryValue?: string;
3158
+ /** Label for the primary swatch grid inside the menu. */
3159
+ primarySectionLabel?: string;
3160
+ /** Label for the secondary swatch grid inside the menu. */
3161
+ secondarySectionLabel?: string;
3162
+ /** Default primary used by reset. */
3163
+ defaultValue?: string;
3164
+ /** Default secondary used by reset. */
3165
+ defaultSecondaryValue?: string;
3166
+ /** When true, also show the compact quick-swatch row. */
3167
+ showQuickSwatches?: boolean;
3168
+ /**
3169
+ * `compact` — top-bar blob + dropdown.
3170
+ * `panel` — always-visible Accent / Second accent grids (modal).
3171
+ */
3172
+ variant?: "compact" | "panel";
2809
3173
  onChange: (value: string) => void;
3174
+ onSecondaryChange?: (value: string) => void;
3175
+ onReset?: () => void;
2810
3176
  };
2811
- declare function AccentColorPicker({ help, id, label, labelPosition, mode, onChange, value, }: AccentColorPickerProps): react.JSX.Element;
3177
+ declare function AccentColorPicker({ help, id, label, labelPosition, mode, onChange, onSecondaryChange, onReset, primarySectionLabel, secondarySectionLabel, defaultValue, defaultSecondaryValue, secondaryValue, showQuickSwatches, variant, value, }: AccentColorPickerProps): react.JSX.Element;
2812
3178
 
2813
3179
  type CatalogIconProps = {
3180
+ className?: string;
2814
3181
  iconName: string;
3182
+ style?: ComponentProps<typeof FontAwesomeIcon>["style"];
2815
3183
  };
2816
- declare function CatalogIcon({ iconName }: CatalogIconProps): react.JSX.Element;
3184
+ declare function CatalogIcon({ className, iconName, style }: CatalogIconProps): react.JSX.Element;
2817
3185
 
2818
3186
  type IconPickerProps = {
2819
3187
  help?: string;
@@ -2934,6 +3302,139 @@ type WelcomeMessageProps = {
2934
3302
  declare function getWelcomeGreeting(hour: number): WelcomeGreeting;
2935
3303
  declare function WelcomeMessage({ as: Heading, className, date, greeting, name, showWave, subtitle, timeZone, updateInterval, }: WelcomeMessageProps): react.JSX.Element;
2936
3304
 
3305
+ type DesktopIconTone = "purple" | "blue";
3306
+ type DesktopIconProps = {
3307
+ active?: boolean;
3308
+ className?: string;
3309
+ icon: string;
3310
+ label: string;
3311
+ onOpen?: () => void;
3312
+ onSelect?: () => void;
3313
+ openOnSingleClick?: boolean;
3314
+ selected?: boolean;
3315
+ tone?: DesktopIconTone;
3316
+ };
3317
+ declare function DesktopIcon({ active, className, icon, label, onOpen, onSelect, openOnSingleClick, selected, tone, }: DesktopIconProps): react.JSX.Element;
3318
+
3319
+ type DesktopDockItem = {
3320
+ active?: boolean;
3321
+ icon: string;
3322
+ id: string;
3323
+ label: string;
3324
+ minimized?: boolean;
3325
+ tone?: DesktopIconTone;
3326
+ };
3327
+ type DesktopDockProps = {
3328
+ autoHide?: boolean;
3329
+ className?: string;
3330
+ items: DesktopDockItem[];
3331
+ maxSize?: number;
3332
+ minSize?: number;
3333
+ onItemClick?: (item: DesktopDockItem) => void;
3334
+ onSizeChange?: (size: number) => void;
3335
+ position?: "bottom" | "left" | "right";
3336
+ resizable?: boolean;
3337
+ size?: number;
3338
+ };
3339
+ declare function DesktopDock({ autoHide, className, items, maxSize, minSize, onItemClick, onSizeChange, position, resizable, size: controlledSize, }: DesktopDockProps): react.JSX.Element;
3340
+
3341
+ type DesktopWindowRect = {
3342
+ height: number;
3343
+ width: number;
3344
+ x: number;
3345
+ y: number;
3346
+ };
3347
+ type DesktopWindowProps = {
3348
+ active?: boolean;
3349
+ children?: ReactNode;
3350
+ className?: string;
3351
+ defaultRect?: DesktopWindowRect;
3352
+ icon?: string;
3353
+ maximized?: boolean;
3354
+ minHeight?: number;
3355
+ minWidth?: number;
3356
+ minimizeTarget?: "bottom" | "left" | "right";
3357
+ minimized?: boolean;
3358
+ open?: boolean;
3359
+ onActivate?: () => void;
3360
+ onClose?: () => void;
3361
+ onMaximize?: (maximized: boolean) => void;
3362
+ onMinimize?: () => void;
3363
+ onRectChange?: (rect: DesktopWindowRect) => void;
3364
+ rect?: DesktopWindowRect;
3365
+ title: string;
3366
+ tone?: "purple" | "blue";
3367
+ zIndex?: number;
3368
+ };
3369
+ declare function DesktopWindow({ active, children, className, defaultRect, maximized, minHeight, minWidth, minimizeTarget, minimized, open, onActivate, onClose, onMaximize, onMinimize, onRectChange, rect: controlledRect, title, tone, zIndex, }: DesktopWindowProps): react.JSX.Element | null;
3370
+
3371
+ type DesktopShortcut = {
3372
+ icon: string;
3373
+ id: string;
3374
+ label: string;
3375
+ tone?: DesktopIconTone;
3376
+ x?: number;
3377
+ y?: number;
3378
+ };
3379
+ type DesktopWindowItem = {
3380
+ content: ReactNode;
3381
+ icon?: string;
3382
+ id: string;
3383
+ maximized?: boolean;
3384
+ minimized?: boolean;
3385
+ open?: boolean;
3386
+ rect: DesktopWindowRect;
3387
+ title: string;
3388
+ tone?: DesktopIconTone;
3389
+ zIndex?: number;
3390
+ };
3391
+ type DesktopProps = {
3392
+ className?: string;
3393
+ dockItems?: DesktopDockItem[];
3394
+ dockAutoHide?: boolean;
3395
+ dockPosition?: "bottom" | "left" | "right";
3396
+ dockSize?: number;
3397
+ /** Removes the outer frame so the desktop fills its host surface edge-to-edge. */
3398
+ edgeToEdge?: boolean;
3399
+ onDockSizeChange?: (size: number) => void;
3400
+ onAction?: (action: string, id: string) => void;
3401
+ shortcuts?: DesktopShortcut[];
3402
+ wallpaper?: "aurora" | "gradient" | "plain";
3403
+ windows?: DesktopWindowItem[];
3404
+ };
3405
+ declare function Desktop({ className, dockItems, dockAutoHide, dockPosition, dockSize, edgeToEdge, onDockSizeChange, onAction, shortcuts, wallpaper, windows, }: DesktopProps): react.JSX.Element;
3406
+
3407
+ type DesktopLabProps = {
3408
+ dockAutoHide?: boolean;
3409
+ dockSize?: number;
3410
+ onDockSizeChange?: (size: number) => void;
3411
+ onAction?: (action: string) => void;
3412
+ };
3413
+ declare function DesktopLab({ dockAutoHide, dockSize, onDockSizeChange, onAction, }: DesktopLabProps): react.JSX.Element;
3414
+
3415
+ type TreeMenuNode = {
3416
+ children?: TreeMenuNode[];
3417
+ disabled?: boolean;
3418
+ icon?: string;
3419
+ id: string;
3420
+ label: string;
3421
+ meta?: string | number;
3422
+ };
3423
+ type TreeMenuProps = {
3424
+ ariaLabel?: string;
3425
+ className?: string;
3426
+ defaultExpandedIds?: string[];
3427
+ defaultSelectedId?: string;
3428
+ expandedIds?: string[];
3429
+ indent?: number;
3430
+ nodes: TreeMenuNode[];
3431
+ onExpandedChange?: (expandedIds: string[], node: TreeMenuNode, expanded: boolean) => void;
3432
+ onSelect?: (node: TreeMenuNode) => void;
3433
+ selectedId?: string;
3434
+ showMeta?: boolean;
3435
+ };
3436
+ declare function TreeMenu({ ariaLabel, className, defaultExpandedIds, defaultSelectedId, expandedIds, indent, nodes, onExpandedChange, onSelect, selectedId, showMeta, }: TreeMenuProps): react.JSX.Element;
3437
+
2937
3438
  declare const googleFonts: readonly ["Abril Fatface", "Alegreya", "Alegreya Sans", "Alfa Slab One", "Amatic SC", "Anton", "Archivo", "Archivo Black", "Arimo", "Arvo", "Assistant", "Barlow", "Barlow Condensed", "Bebas Neue", "Bitter", "Cabin", "Cairo", "Catamaran", "Caveat", "Chivo", "Comfortaa", "Crimson Text", "Dancing Script", "DM Sans", "DM Serif Display", "Domine", "Dosis", "EB Garamond", "Exo 2", "Fira Code", "Fira Sans", "Fjalla One", "Francois One", "Fredoka", "Gloria Hallelujah", "Hind", "IBM Plex Mono", "IBM Plex Sans", "Inconsolata", "Indie Flower", "Inter", "Josefin Sans", "Jost", "Karla", "Lato", "Lexend", "Libre Baskerville", "Libre Franklin", "Lobster", "Lora", "Manrope", "Merriweather", "Merriweather Sans", "Montserrat", "Mukta", "Mulish", "Nanum Gothic", "Noto Sans", "Noto Sans Mono", "Noto Serif", "Nunito", "Nunito Sans", "Open Sans", "Orbitron", "Oswald", "Overpass", "Oxygen", "Pacifico", "Permanent Marker", "Playfair Display", "Poppins", "PT Sans", "PT Serif", "Quicksand", "Rajdhani", "Raleway", "Red Hat Display", "Righteous", "Roboto", "Roboto Condensed", "Roboto Mono", "Roboto Slab", "Rubik", "Russo One", "Sacramento", "Satisfy", "Shadows Into Light", "Signika", "Slabo 27px", "Source Code Pro", "Source Sans 3", "Source Serif 4", "Space Grotesk", "Space Mono", "Spectral", "Staatliches", "Teko", "Titillium Web", "Ubuntu", "Ubuntu Mono", "Unbounded", "Vollkorn", "Work Sans", "Yanone Kaffeesatz", "Zilla Slab"];
2938
3439
  type GoogleFontFamily = (typeof googleFonts)[number];
2939
3440
 
@@ -2944,11 +3445,81 @@ declare function useFontPreference(): {
2944
3445
  setFontFamily: (next: string) => void;
2945
3446
  };
2946
3447
  type FontPickerProps = {
3448
+ compact?: boolean;
2947
3449
  id: string;
2948
3450
  value: GoogleFontFamily;
2949
3451
  onChange: (value: GoogleFontFamily) => void;
2950
3452
  };
2951
- declare function FontPicker({ id, onChange, value }: FontPickerProps): react.JSX.Element;
3453
+ declare function FontPicker({ compact, id, onChange, value }: FontPickerProps): react.JSX.Element;
3454
+
3455
+ /** Maximum coloured orbs this control can show. */
3456
+ declare const COLOUR_CLOUDS_MAX = 5;
3457
+ /** One colourable orb. Optional `secondary` makes a split dual-tone cloud. */
3458
+ type ColourCloud = {
3459
+ id?: string;
3460
+ label?: string;
3461
+ color: string;
3462
+ secondary?: string;
3463
+ };
3464
+ /** JSON designation for the ColourClouds control. */
3465
+ type ColourCloudsDesignation = {
3466
+ clouds: ColourCloud[];
3467
+ };
3468
+ type ColourCloudsValue = ColourCloud[] | ColourCloudsDesignation | string;
3469
+ type ColourCloudsProps = {
3470
+ /** Accessible name for the main control. */
3471
+ "aria-label"?: string;
3472
+ "aria-expanded"?: boolean;
3473
+ "aria-haspopup"?: ButtonHTMLAttributes<HTMLButtonElement>["aria-haspopup"];
3474
+ /** Dropdown panel body. When set, the pill opens a portaled menu. */
3475
+ children?: ReactNode;
3476
+ className?: string;
3477
+ compact?: boolean;
3478
+ /**
3479
+ * Up to five colourable elements.
3480
+ * Prefer this over `value` when passing a typed array.
3481
+ */
3482
+ items?: ColourCloud[];
3483
+ /** Visible text label after the colour orbs. */
3484
+ label?: string;
3485
+ /** Menu heading when `children` is provided. */
3486
+ menuTitle?: string;
3487
+ /** Controlled open state for the dropdown menu. */
3488
+ open?: boolean;
3489
+ onOpenChange?: (open: boolean) => void;
3490
+ placement?: EmojiPickerPlacement;
3491
+ /** Disable the optional reset control. */
3492
+ resetDisabled?: boolean;
3493
+ /** Show a colours-only reset icon beside the clouds. */
3494
+ showReset?: boolean;
3495
+ /**
3496
+ * Opens / activates the control when no `children` menu is provided
3497
+ * (e.g. open an external colour settings window).
3498
+ */
3499
+ onClick?: ButtonHTMLAttributes<HTMLButtonElement>["onClick"];
3500
+ /** Colours-only reset. Never touches fonts or other theme chrome. */
3501
+ onReset?: () => void;
3502
+ title?: string;
3503
+ /**
3504
+ * Colour designation: array, `{ clouds: [...] }`, or a JSON string of either.
3505
+ * At most five clouds are rendered. Ignored when `items` is provided.
3506
+ */
3507
+ value?: ColourCloudsValue;
3508
+ };
3509
+ /** Parse a JSON designation (string or object) into up to five colour clouds. */
3510
+ declare function parseColourClouds(value: ColourCloudsValue | undefined | null): ColourCloud[];
3511
+ /** Build a designation object from up to five colourable elements. */
3512
+ declare function createColourCloudsDesignation(items: ColourCloud[]): ColourCloudsDesignation;
3513
+ declare function serializeColourClouds(clouds: ColourCloud[]): string;
3514
+ /** Default dropdown body listing each colourable orb. */
3515
+ declare function ColourCloudsMenu({ clouds }: {
3516
+ clouds: ColourCloud[];
3517
+ }): react.JSX.Element;
3518
+ /**
3519
+ * Global colours control: up to five colourable orbs from a JSON designation or `items` array.
3520
+ * Pass `children` (or use `ColourCloudsMenu`) to open a portaled dropdown; otherwise `onClick` for an external panel.
3521
+ */
3522
+ declare function ColourClouds({ "aria-label": ariaLabel, "aria-expanded": ariaExpanded, "aria-haspopup": ariaHasPopup, children, className, compact, items, label, menuTitle, onClick, onOpenChange, onReset, open, placement, resetDisabled, showReset, title, value, }: ColourCloudsProps): react.JSX.Element | null;
2952
3523
 
2953
3524
  declare const cartesianSpecializedVariants: ChartVariant[];
2954
3525
 
@@ -2961,4 +3532,4 @@ type SankeyLinkDef = {
2961
3532
  };
2962
3533
  declare const demoSankeyLinks: SankeyLinkDef[];
2963
3534
 
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 };
3535
+ export { type AccentColor, AccentColorPicker, type AccentPair, 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, COLOUR_CLOUDS_MAX, Calendar, type CalendarEvent, type CalendarProps, Card, Carousel, type CarouselProps, CascaderField, type CascaderOption, CatalogIcon, Chart, type ChartDatum, type ChartPalette, type ChartSeries, type ChartVariant, CheckboxField, CheckboxGroupField, type CheckboxGroupFieldProps, type CheckboxGroupOption, ChipInput, ChipInputField, type ChipInputPreset, type ChipInputVariant, ChoiceChips, ChoiceChipsField, type ChoiceChipsSelectionMode, type ChoiceChipsVariant, type ChoiceControlSize, type ChoiceOption, type ChoiceShape, Clipboard, ClipboardProvider, Clock, type ClockSize, ColorField, type ColourCloud, ColourClouds, type ColourCloudsDesignation, ColourCloudsMenu, type ColourCloudsProps, type ColourCloudsValue, Columns, type ColumnsDirection, type ColumnsProps, ComboboxField, type ComboboxFieldProps, type ComboboxOption, CommandPalette, type CommandPaletteItem, type CompactDocumentNode, type CompactDocumentView, CompactDocuments, type CompactDocumentsProps, type CompanyBranch, CompanyCard, type CompanyCardProps, type CompanyContactPerson, CompanyDetails, type CompanyDetailsAction, type CompanyDetailsCompany, type CompanyDetailsProps, CompanyIdentityCard, type CompanyIdentityCardProps, CompanyLogoUploadModal, type CompanyLogoUploadModalProps, CompanyNotesActivity, type CompanyNotesActivityProps, type CompanyNotesWorkspaceTab, CompanySummaryCard, type CompanySummaryCardProps, type CompanySummaryTab, ContactCard, type ContactCardProps, type ContactCompany, ContactDetails, type ContactDetailsAction, type ContactDetailsContact, type ContactDetailsProps, ContactIdentityCard, type ContactIdentityCardProps, ContactNotesActivity, type ContactNotesActivityProps, type ContactNotesWorkspaceTab, ContactSummaryCard, type ContactSummaryCardProps, type ContactSummaryTab, Container, type ContainerProps, type ContainerSize, ContentTimeline, type ContentTimelineGroup, type ContentTimelineItem, type ContentTimelineStatus, type ContentTimelineTag, ContextMenuProvider, ContextMenuTarget, CopyButton, CountryPickerField, CrmWorkspaceLab, type CrmWorkspaceLabProps, type CrmWorkspaceLabVariant, CurrencyField, type CurrencyFieldProps, 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, DateRangeField, type DateRangeFieldProps, type DateRangeValue, DealsOverTime, type DealsOverTimePoint, type DealsOverTimeProps, DescriptionList, type DescriptionListItem, type DescriptionListLayout, Desktop, DesktopDock, type DesktopDockItem, type DesktopDockProps, DesktopIcon, type DesktopIconProps, type DesktopIconTone, DesktopLab, type DesktopLabProps, type DesktopProps, type DesktopShortcut, DesktopWindow, type DesktopWindowItem, type DesktopWindowProps, type DesktopWindowRect, 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, Form, FormActions, FormSection, FormValidationSummary, type FormValidationSummaryProps, 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, MaskedField, type MaskedFieldProps, MasonryGrid, type MasonryGridItem, MegaMenu, type MegaMenuConfig, type MegaMenuFeatured, type MegaMenuItem, type MegaMenuProps, type MegaMenuSection, MetricTile, Modal, ModalDefaultActions, type ModalSize, type ModelAsset, ModelGallery, ModelLightbox, ModelThumbnail, type ModelThumbnailSize, ModelViewer, MoreActionsMenu, type MoreActionsMenuItem, type MoreActionsMenuProps, MultiFileField, type MultiFileFieldProps, type MultiFileItem, 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, OtpField, type OtpFieldProps, 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, type PropertyGridProps, 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, TreeMenu, type TreeMenuNode, type TreeMenuProps, TreeSelectField, type TreeSelectNode, TreeView, type TreeViewNode, TrendBadge, type TrendBadgeDirection, type UpcomingTaskItem, UpcomingTasks, type UpcomingTasksProps, type UserProfileMenuItem, type UserProfilePhotoUploadOptions, UserProfileWidget, type UserProfileWidgetProps, VideoPlayer, type VideoPlayerProps, type VideoTrack, VisuallyHidden, type WelcomeGreeting, WelcomeMessage, type WelcomeMessageProps, accentColors, accentPairs, accentPalette, accentPrimaryColors, accentSecondaryColors, cartesianSpecializedVariants, countryCodeToFlag, createAccentStyle, createColourCloudsDesignation, createTileAccentStyle, defaultCompany, defaultCompanyContacts, defaultCompanyNotes, defaultContact, defaultContactNotes, defaultMegaMenuFeatured, defaultMegaMenuMenus, defaultMegaMenuSections, defaultTopNavigationBarMenus, defaultTopNavigationMegaMenus, defaultTopNavigationMenus, demoSankeyLinks, fieldInputAriaProps, getPrimaryBranch, getPrimaryCompany, getWelcomeGreeting, googleFonts, parseColourClouds, countries as phoneCountries, resolveCompanyDetailsCompany, resolveContactDetailsContact, serializeColourClouds, useAccentPreference, useClipboard, useContextMenu, useFieldShellAria, useFontPreference, useHotkey, useHotkeyManager, useIntersectionObserver, useOpusTheme, usePortalHost, useResizeObserver, useTileAccentPreference, useToast, useTopNavigation, worldMapRegionIds };