opus-react 0.2.31 → 0.2.33
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 +2855 -2332
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +617 -141
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +55 -10
- package/dist/index.d.ts +55 -10
- package/dist/index.js +2697 -2173
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { ButtonHTMLAttributes, ReactNode, ChangeEventHandler, CSSProperties, RefObject } from 'react';
|
|
2
|
+
import { ButtonHTMLAttributes, ReactNode, ChangeEventHandler, CSSProperties, RefObject, HTMLAttributes } from 'react';
|
|
3
3
|
|
|
4
4
|
type Theme = "light" | "dark";
|
|
5
5
|
type FieldMode = "stacked" | "flagged";
|
|
@@ -10,10 +10,13 @@ type InputControlSize = "lg" | "md" | "sm";
|
|
|
10
10
|
type ChipInputVariant = "filled" | "outlined" | "soft" | "glass" | "gradient";
|
|
11
11
|
type ChipInputPreset = "chip-input" | "tag-input" | "token-input";
|
|
12
12
|
type ChoiceOption = {
|
|
13
|
+
disabled?: boolean;
|
|
13
14
|
error?: string;
|
|
14
15
|
label: string;
|
|
15
16
|
value: string;
|
|
16
17
|
};
|
|
18
|
+
type ChoiceChipsSelectionMode = "multiple" | "single";
|
|
19
|
+
type ChoiceChipsVariant = "filled" | "outlined" | "soft" | "glass";
|
|
17
20
|
type GalleryImage = {
|
|
18
21
|
alt: string;
|
|
19
22
|
caption?: string;
|
|
@@ -284,6 +287,25 @@ type ChipInputProps = {
|
|
|
284
287
|
declare function ChipInput({ disabled, error, help, id, label, labelPosition, mode, onChange, placeholder, readOnly, required, size, value, variant, }: ChipInputProps): react.JSX.Element;
|
|
285
288
|
declare const ChipInputField: typeof ChipInput;
|
|
286
289
|
|
|
290
|
+
type ChoiceChipsProps = {
|
|
291
|
+
disabled?: boolean;
|
|
292
|
+
error?: string;
|
|
293
|
+
help?: string;
|
|
294
|
+
id: string;
|
|
295
|
+
label: string;
|
|
296
|
+
labelPosition?: LabelPosition;
|
|
297
|
+
mode?: FieldMode;
|
|
298
|
+
options: ChoiceOption[];
|
|
299
|
+
required?: boolean;
|
|
300
|
+
selectionMode?: ChoiceChipsSelectionMode;
|
|
301
|
+
size?: InputControlSize;
|
|
302
|
+
value: string | string[];
|
|
303
|
+
variant?: ChoiceChipsVariant;
|
|
304
|
+
onChange: (value: string | string[]) => void;
|
|
305
|
+
};
|
|
306
|
+
declare function ChoiceChips({ disabled, error, help, id, label, labelPosition, mode, options, required, selectionMode, size, value, variant, onChange, }: ChoiceChipsProps): react.JSX.Element;
|
|
307
|
+
declare const ChoiceChipsField: typeof ChoiceChips;
|
|
308
|
+
|
|
287
309
|
type RangeFieldProps = {
|
|
288
310
|
error?: string;
|
|
289
311
|
help?: string;
|
|
@@ -995,6 +1017,7 @@ declare function TrendBadge({ direction, value }: TrendBadgeProps): react.JSX.El
|
|
|
995
1017
|
|
|
996
1018
|
type PanelProps = {
|
|
997
1019
|
actions?: ReactNode;
|
|
1020
|
+
bordered?: boolean;
|
|
998
1021
|
children: ReactNode;
|
|
999
1022
|
density?: SurfaceDensity;
|
|
1000
1023
|
description?: string;
|
|
@@ -1003,7 +1026,7 @@ type PanelProps = {
|
|
|
1003
1026
|
title: string;
|
|
1004
1027
|
tone?: SurfaceTone;
|
|
1005
1028
|
};
|
|
1006
|
-
declare function Panel({ actions, children, density, description, divided, footer, title, tone, }: PanelProps): react.JSX.Element;
|
|
1029
|
+
declare function Panel({ actions, bordered, children, density, description, divided, footer, title, tone, }: PanelProps): react.JSX.Element;
|
|
1007
1030
|
|
|
1008
1031
|
type SectionBreakpoint = "mobile" | "tablet" | "desktop";
|
|
1009
1032
|
/** @deprecated Use sidebar + columns instead. Kept for Section.Row shorthand. */
|
|
@@ -1352,9 +1375,10 @@ type PropertyGridItem = {
|
|
|
1352
1375
|
value: string;
|
|
1353
1376
|
};
|
|
1354
1377
|
type PropertyGridProps = {
|
|
1378
|
+
bordered?: boolean;
|
|
1355
1379
|
items: PropertyGridItem[];
|
|
1356
1380
|
};
|
|
1357
|
-
declare function PropertyGrid({ items }: PropertyGridProps): react.JSX.Element;
|
|
1381
|
+
declare function PropertyGrid({ bordered, items }: PropertyGridProps): react.JSX.Element;
|
|
1358
1382
|
|
|
1359
1383
|
type StackAlign = "start" | "center" | "end" | "stretch";
|
|
1360
1384
|
type StackJustify = "start" | "center" | "end" | "between" | "around";
|
|
@@ -1733,6 +1757,7 @@ type NotesActivityItem = {
|
|
|
1733
1757
|
dateGroup: string;
|
|
1734
1758
|
id: string;
|
|
1735
1759
|
kind: "activity" | "note";
|
|
1760
|
+
status?: ContentTimelineStatus;
|
|
1736
1761
|
tags?: NotesActivityTag[];
|
|
1737
1762
|
time: string;
|
|
1738
1763
|
};
|
|
@@ -1968,18 +1993,24 @@ declare function KanbanBoard({ cards, columns, onChange }: KanbanBoardProps): re
|
|
|
1968
1993
|
|
|
1969
1994
|
type CalendarEvent = {
|
|
1970
1995
|
date: string;
|
|
1996
|
+
endTime?: string;
|
|
1971
1997
|
id: string;
|
|
1998
|
+
startTime?: string;
|
|
1972
1999
|
title: string;
|
|
1973
2000
|
tone?: "accent" | "success" | "warning" | "danger";
|
|
1974
2001
|
};
|
|
1975
2002
|
type CalendarProps = {
|
|
1976
2003
|
events?: CalendarEvent[];
|
|
2004
|
+
maxDayEvents?: number;
|
|
1977
2005
|
month?: number;
|
|
2006
|
+
onBookEvent?: (event: CalendarEvent) => void;
|
|
1978
2007
|
onSelectDate?: (date: string) => void;
|
|
2008
|
+
openDayOnSelect?: boolean;
|
|
1979
2009
|
selectedDate?: string;
|
|
2010
|
+
showMonthYearPicker?: boolean;
|
|
1980
2011
|
year?: number;
|
|
1981
2012
|
};
|
|
1982
|
-
declare function Calendar({ events, month: controlledMonth, onSelectDate, selectedDate, year: controlledYear, }: CalendarProps): react.JSX.Element;
|
|
2013
|
+
declare function Calendar({ events, maxDayEvents, month: controlledMonth, onBookEvent, onSelectDate, openDayOnSelect, selectedDate, showMonthYearPicker, year: controlledYear, }: CalendarProps): react.JSX.Element;
|
|
1983
2014
|
|
|
1984
2015
|
type ResourcePlannerItem = {
|
|
1985
2016
|
end: number;
|
|
@@ -2016,12 +2047,18 @@ type ContentTimelineItem = {
|
|
|
2016
2047
|
time?: string;
|
|
2017
2048
|
title: string;
|
|
2018
2049
|
};
|
|
2019
|
-
type
|
|
2050
|
+
type ContentTimelineGroup = {
|
|
2020
2051
|
items: ContentTimelineItem[];
|
|
2052
|
+
label?: string;
|
|
2053
|
+
};
|
|
2054
|
+
type ContentTimelineProps = {
|
|
2055
|
+
groups?: ContentTimelineGroup[];
|
|
2056
|
+
items?: ContentTimelineItem[];
|
|
2021
2057
|
onItemClick?: (item: ContentTimelineItem, index: number) => void;
|
|
2058
|
+
/** @deprecated Prefer per-item `avatarName` to choose avatar vs status markers. */
|
|
2022
2059
|
variant?: "avatar" | "default";
|
|
2023
2060
|
};
|
|
2024
|
-
declare function ContentTimeline({ items, onItemClick, variant }: ContentTimelineProps): react.JSX.Element;
|
|
2061
|
+
declare function ContentTimeline({ groups, items, onItemClick, variant }: ContentTimelineProps): react.JSX.Element;
|
|
2025
2062
|
|
|
2026
2063
|
type TreeViewNode = {
|
|
2027
2064
|
children?: TreeViewNode[];
|
|
@@ -2071,6 +2108,15 @@ type SpinnerProps = {
|
|
|
2071
2108
|
};
|
|
2072
2109
|
declare function Spinner({ label, size, tone }: SpinnerProps): react.JSX.Element;
|
|
2073
2110
|
|
|
2111
|
+
type ClockSize = "sm" | "md" | "lg";
|
|
2112
|
+
type ClockProps = {
|
|
2113
|
+
showAnalog?: boolean;
|
|
2114
|
+
showDate?: boolean;
|
|
2115
|
+
showDigital?: boolean;
|
|
2116
|
+
size?: ClockSize;
|
|
2117
|
+
};
|
|
2118
|
+
declare function Clock({ showAnalog, showDate, showDigital, size, }: ClockProps): react.JSX.Element;
|
|
2119
|
+
|
|
2074
2120
|
type PortalHostContextValue = {
|
|
2075
2121
|
container: HTMLElement | null;
|
|
2076
2122
|
};
|
|
@@ -2168,12 +2214,11 @@ type ElementSize = {
|
|
|
2168
2214
|
height: number;
|
|
2169
2215
|
width: number;
|
|
2170
2216
|
};
|
|
2171
|
-
type ResizeObserverProps = {
|
|
2217
|
+
type ResizeObserverProps = Omit<HTMLAttributes<HTMLDivElement>, "children"> & {
|
|
2172
2218
|
children: (size: ElementSize) => ReactNode;
|
|
2173
|
-
className?: string;
|
|
2174
2219
|
onResize?: (size: ElementSize) => void;
|
|
2175
2220
|
};
|
|
2176
|
-
declare function ResizeObserver({ children, className, onResize }: ResizeObserverProps): react.JSX.Element;
|
|
2221
|
+
declare function ResizeObserver({ children, className, onResize, style, ...rest }: ResizeObserverProps): react.JSX.Element;
|
|
2177
2222
|
declare function useResizeObserver(targetRef: RefObject<HTMLElement | null>): ElementSize;
|
|
2178
2223
|
|
|
2179
2224
|
type IntersectionObserverProps = {
|
|
@@ -2425,4 +2470,4 @@ type SankeyLinkDef = {
|
|
|
2425
2470
|
};
|
|
2426
2471
|
declare const demoSankeyLinks: SankeyLinkDef[];
|
|
2427
2472
|
|
|
2428
|
-
export { type AccentColor, AccentColorPicker, Accordion, AccordionGroup, type AccordionGroupType, Alert, type AlertStatus, 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, type ChoiceControlSize, type ChoiceOption, type ChoiceShape, Clipboard, ClipboardProvider, ColorField, Columns, type ColumnsDirection, type ColumnsProps, CommandPalette, type CommandPaletteItem, Container, type ContainerProps, type ContainerSize, ContentTimeline, type ContentTimelineItem, type ContentTimelineStatus, type ContentTimelineTag, ContextMenuProvider, ContextMenuTarget, CopyButton, CountryPickerField, 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, type FieldMode, FieldShell, FileField, FilterBuilder, type FilterBuilderProps, type FilterCondition, type FilterOperator, FilterSelectField, type FilterSelectGroup, FloatingActionButton, type FloatingActionButtonPosition, type FloatingActionButtonProps, type FloatingActionButtonSize, FocusTrap, type GalleryImage, Gauge, type GaugeFooterItem, type GaugeTrend, type GaugeVariant, 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, NotesActivity, type NotesActivityItem, type NotesActivityProps, 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, 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, SidebarNav, 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, 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, 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, accentColors, cartesianSpecializedVariants, countryCodeToFlag, createAccentStyle, defaultMegaMenuFeatured, defaultMegaMenuMenus, defaultMegaMenuSections, defaultTopNavigationBarMenus, defaultTopNavigationMegaMenus, defaultTopNavigationMenus, demoSankeyLinks, fieldInputAriaProps, countries as phoneCountries, useAccentPreference, useClipboard, useContextMenu, useFieldShellAria, useHotkey, useHotkeyManager, useIntersectionObserver, useOpusTheme, usePortalHost, useResizeObserver, useToast, useTopNavigation, worldMapRegionIds };
|
|
2473
|
+
export { type AccentColor, AccentColorPicker, Accordion, AccordionGroup, type AccordionGroupType, Alert, type AlertStatus, 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, 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, type FieldMode, FieldShell, FileField, FilterBuilder, type FilterBuilderProps, type FilterCondition, type FilterOperator, FilterSelectField, type FilterSelectGroup, FloatingActionButton, type FloatingActionButtonPosition, type FloatingActionButtonProps, type FloatingActionButtonSize, FocusTrap, type GalleryImage, Gauge, type GaugeFooterItem, type GaugeTrend, type GaugeVariant, 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, NotesActivity, type NotesActivityItem, type NotesActivityProps, 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, 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, SidebarNav, 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, 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, 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, accentColors, cartesianSpecializedVariants, countryCodeToFlag, createAccentStyle, defaultMegaMenuFeatured, defaultMegaMenuMenus, defaultMegaMenuSections, defaultTopNavigationBarMenus, defaultTopNavigationMegaMenus, defaultTopNavigationMenus, demoSankeyLinks, fieldInputAriaProps, countries as phoneCountries, useAccentPreference, useClipboard, useContextMenu, useFieldShellAria, useHotkey, useHotkeyManager, useIntersectionObserver, useOpusTheme, usePortalHost, useResizeObserver, useToast, useTopNavigation, worldMapRegionIds };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { ButtonHTMLAttributes, ReactNode, ChangeEventHandler, CSSProperties, RefObject } from 'react';
|
|
2
|
+
import { ButtonHTMLAttributes, ReactNode, ChangeEventHandler, CSSProperties, RefObject, HTMLAttributes } from 'react';
|
|
3
3
|
|
|
4
4
|
type Theme = "light" | "dark";
|
|
5
5
|
type FieldMode = "stacked" | "flagged";
|
|
@@ -10,10 +10,13 @@ type InputControlSize = "lg" | "md" | "sm";
|
|
|
10
10
|
type ChipInputVariant = "filled" | "outlined" | "soft" | "glass" | "gradient";
|
|
11
11
|
type ChipInputPreset = "chip-input" | "tag-input" | "token-input";
|
|
12
12
|
type ChoiceOption = {
|
|
13
|
+
disabled?: boolean;
|
|
13
14
|
error?: string;
|
|
14
15
|
label: string;
|
|
15
16
|
value: string;
|
|
16
17
|
};
|
|
18
|
+
type ChoiceChipsSelectionMode = "multiple" | "single";
|
|
19
|
+
type ChoiceChipsVariant = "filled" | "outlined" | "soft" | "glass";
|
|
17
20
|
type GalleryImage = {
|
|
18
21
|
alt: string;
|
|
19
22
|
caption?: string;
|
|
@@ -284,6 +287,25 @@ type ChipInputProps = {
|
|
|
284
287
|
declare function ChipInput({ disabled, error, help, id, label, labelPosition, mode, onChange, placeholder, readOnly, required, size, value, variant, }: ChipInputProps): react.JSX.Element;
|
|
285
288
|
declare const ChipInputField: typeof ChipInput;
|
|
286
289
|
|
|
290
|
+
type ChoiceChipsProps = {
|
|
291
|
+
disabled?: boolean;
|
|
292
|
+
error?: string;
|
|
293
|
+
help?: string;
|
|
294
|
+
id: string;
|
|
295
|
+
label: string;
|
|
296
|
+
labelPosition?: LabelPosition;
|
|
297
|
+
mode?: FieldMode;
|
|
298
|
+
options: ChoiceOption[];
|
|
299
|
+
required?: boolean;
|
|
300
|
+
selectionMode?: ChoiceChipsSelectionMode;
|
|
301
|
+
size?: InputControlSize;
|
|
302
|
+
value: string | string[];
|
|
303
|
+
variant?: ChoiceChipsVariant;
|
|
304
|
+
onChange: (value: string | string[]) => void;
|
|
305
|
+
};
|
|
306
|
+
declare function ChoiceChips({ disabled, error, help, id, label, labelPosition, mode, options, required, selectionMode, size, value, variant, onChange, }: ChoiceChipsProps): react.JSX.Element;
|
|
307
|
+
declare const ChoiceChipsField: typeof ChoiceChips;
|
|
308
|
+
|
|
287
309
|
type RangeFieldProps = {
|
|
288
310
|
error?: string;
|
|
289
311
|
help?: string;
|
|
@@ -995,6 +1017,7 @@ declare function TrendBadge({ direction, value }: TrendBadgeProps): react.JSX.El
|
|
|
995
1017
|
|
|
996
1018
|
type PanelProps = {
|
|
997
1019
|
actions?: ReactNode;
|
|
1020
|
+
bordered?: boolean;
|
|
998
1021
|
children: ReactNode;
|
|
999
1022
|
density?: SurfaceDensity;
|
|
1000
1023
|
description?: string;
|
|
@@ -1003,7 +1026,7 @@ type PanelProps = {
|
|
|
1003
1026
|
title: string;
|
|
1004
1027
|
tone?: SurfaceTone;
|
|
1005
1028
|
};
|
|
1006
|
-
declare function Panel({ actions, children, density, description, divided, footer, title, tone, }: PanelProps): react.JSX.Element;
|
|
1029
|
+
declare function Panel({ actions, bordered, children, density, description, divided, footer, title, tone, }: PanelProps): react.JSX.Element;
|
|
1007
1030
|
|
|
1008
1031
|
type SectionBreakpoint = "mobile" | "tablet" | "desktop";
|
|
1009
1032
|
/** @deprecated Use sidebar + columns instead. Kept for Section.Row shorthand. */
|
|
@@ -1352,9 +1375,10 @@ type PropertyGridItem = {
|
|
|
1352
1375
|
value: string;
|
|
1353
1376
|
};
|
|
1354
1377
|
type PropertyGridProps = {
|
|
1378
|
+
bordered?: boolean;
|
|
1355
1379
|
items: PropertyGridItem[];
|
|
1356
1380
|
};
|
|
1357
|
-
declare function PropertyGrid({ items }: PropertyGridProps): react.JSX.Element;
|
|
1381
|
+
declare function PropertyGrid({ bordered, items }: PropertyGridProps): react.JSX.Element;
|
|
1358
1382
|
|
|
1359
1383
|
type StackAlign = "start" | "center" | "end" | "stretch";
|
|
1360
1384
|
type StackJustify = "start" | "center" | "end" | "between" | "around";
|
|
@@ -1733,6 +1757,7 @@ type NotesActivityItem = {
|
|
|
1733
1757
|
dateGroup: string;
|
|
1734
1758
|
id: string;
|
|
1735
1759
|
kind: "activity" | "note";
|
|
1760
|
+
status?: ContentTimelineStatus;
|
|
1736
1761
|
tags?: NotesActivityTag[];
|
|
1737
1762
|
time: string;
|
|
1738
1763
|
};
|
|
@@ -1968,18 +1993,24 @@ declare function KanbanBoard({ cards, columns, onChange }: KanbanBoardProps): re
|
|
|
1968
1993
|
|
|
1969
1994
|
type CalendarEvent = {
|
|
1970
1995
|
date: string;
|
|
1996
|
+
endTime?: string;
|
|
1971
1997
|
id: string;
|
|
1998
|
+
startTime?: string;
|
|
1972
1999
|
title: string;
|
|
1973
2000
|
tone?: "accent" | "success" | "warning" | "danger";
|
|
1974
2001
|
};
|
|
1975
2002
|
type CalendarProps = {
|
|
1976
2003
|
events?: CalendarEvent[];
|
|
2004
|
+
maxDayEvents?: number;
|
|
1977
2005
|
month?: number;
|
|
2006
|
+
onBookEvent?: (event: CalendarEvent) => void;
|
|
1978
2007
|
onSelectDate?: (date: string) => void;
|
|
2008
|
+
openDayOnSelect?: boolean;
|
|
1979
2009
|
selectedDate?: string;
|
|
2010
|
+
showMonthYearPicker?: boolean;
|
|
1980
2011
|
year?: number;
|
|
1981
2012
|
};
|
|
1982
|
-
declare function Calendar({ events, month: controlledMonth, onSelectDate, selectedDate, year: controlledYear, }: CalendarProps): react.JSX.Element;
|
|
2013
|
+
declare function Calendar({ events, maxDayEvents, month: controlledMonth, onBookEvent, onSelectDate, openDayOnSelect, selectedDate, showMonthYearPicker, year: controlledYear, }: CalendarProps): react.JSX.Element;
|
|
1983
2014
|
|
|
1984
2015
|
type ResourcePlannerItem = {
|
|
1985
2016
|
end: number;
|
|
@@ -2016,12 +2047,18 @@ type ContentTimelineItem = {
|
|
|
2016
2047
|
time?: string;
|
|
2017
2048
|
title: string;
|
|
2018
2049
|
};
|
|
2019
|
-
type
|
|
2050
|
+
type ContentTimelineGroup = {
|
|
2020
2051
|
items: ContentTimelineItem[];
|
|
2052
|
+
label?: string;
|
|
2053
|
+
};
|
|
2054
|
+
type ContentTimelineProps = {
|
|
2055
|
+
groups?: ContentTimelineGroup[];
|
|
2056
|
+
items?: ContentTimelineItem[];
|
|
2021
2057
|
onItemClick?: (item: ContentTimelineItem, index: number) => void;
|
|
2058
|
+
/** @deprecated Prefer per-item `avatarName` to choose avatar vs status markers. */
|
|
2022
2059
|
variant?: "avatar" | "default";
|
|
2023
2060
|
};
|
|
2024
|
-
declare function ContentTimeline({ items, onItemClick, variant }: ContentTimelineProps): react.JSX.Element;
|
|
2061
|
+
declare function ContentTimeline({ groups, items, onItemClick, variant }: ContentTimelineProps): react.JSX.Element;
|
|
2025
2062
|
|
|
2026
2063
|
type TreeViewNode = {
|
|
2027
2064
|
children?: TreeViewNode[];
|
|
@@ -2071,6 +2108,15 @@ type SpinnerProps = {
|
|
|
2071
2108
|
};
|
|
2072
2109
|
declare function Spinner({ label, size, tone }: SpinnerProps): react.JSX.Element;
|
|
2073
2110
|
|
|
2111
|
+
type ClockSize = "sm" | "md" | "lg";
|
|
2112
|
+
type ClockProps = {
|
|
2113
|
+
showAnalog?: boolean;
|
|
2114
|
+
showDate?: boolean;
|
|
2115
|
+
showDigital?: boolean;
|
|
2116
|
+
size?: ClockSize;
|
|
2117
|
+
};
|
|
2118
|
+
declare function Clock({ showAnalog, showDate, showDigital, size, }: ClockProps): react.JSX.Element;
|
|
2119
|
+
|
|
2074
2120
|
type PortalHostContextValue = {
|
|
2075
2121
|
container: HTMLElement | null;
|
|
2076
2122
|
};
|
|
@@ -2168,12 +2214,11 @@ type ElementSize = {
|
|
|
2168
2214
|
height: number;
|
|
2169
2215
|
width: number;
|
|
2170
2216
|
};
|
|
2171
|
-
type ResizeObserverProps = {
|
|
2217
|
+
type ResizeObserverProps = Omit<HTMLAttributes<HTMLDivElement>, "children"> & {
|
|
2172
2218
|
children: (size: ElementSize) => ReactNode;
|
|
2173
|
-
className?: string;
|
|
2174
2219
|
onResize?: (size: ElementSize) => void;
|
|
2175
2220
|
};
|
|
2176
|
-
declare function ResizeObserver({ children, className, onResize }: ResizeObserverProps): react.JSX.Element;
|
|
2221
|
+
declare function ResizeObserver({ children, className, onResize, style, ...rest }: ResizeObserverProps): react.JSX.Element;
|
|
2177
2222
|
declare function useResizeObserver(targetRef: RefObject<HTMLElement | null>): ElementSize;
|
|
2178
2223
|
|
|
2179
2224
|
type IntersectionObserverProps = {
|
|
@@ -2425,4 +2470,4 @@ type SankeyLinkDef = {
|
|
|
2425
2470
|
};
|
|
2426
2471
|
declare const demoSankeyLinks: SankeyLinkDef[];
|
|
2427
2472
|
|
|
2428
|
-
export { type AccentColor, AccentColorPicker, Accordion, AccordionGroup, type AccordionGroupType, Alert, type AlertStatus, 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, type ChoiceControlSize, type ChoiceOption, type ChoiceShape, Clipboard, ClipboardProvider, ColorField, Columns, type ColumnsDirection, type ColumnsProps, CommandPalette, type CommandPaletteItem, Container, type ContainerProps, type ContainerSize, ContentTimeline, type ContentTimelineItem, type ContentTimelineStatus, type ContentTimelineTag, ContextMenuProvider, ContextMenuTarget, CopyButton, CountryPickerField, 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, type FieldMode, FieldShell, FileField, FilterBuilder, type FilterBuilderProps, type FilterCondition, type FilterOperator, FilterSelectField, type FilterSelectGroup, FloatingActionButton, type FloatingActionButtonPosition, type FloatingActionButtonProps, type FloatingActionButtonSize, FocusTrap, type GalleryImage, Gauge, type GaugeFooterItem, type GaugeTrend, type GaugeVariant, 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, NotesActivity, type NotesActivityItem, type NotesActivityProps, 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, 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, SidebarNav, 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, 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, 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, accentColors, cartesianSpecializedVariants, countryCodeToFlag, createAccentStyle, defaultMegaMenuFeatured, defaultMegaMenuMenus, defaultMegaMenuSections, defaultTopNavigationBarMenus, defaultTopNavigationMegaMenus, defaultTopNavigationMenus, demoSankeyLinks, fieldInputAriaProps, countries as phoneCountries, useAccentPreference, useClipboard, useContextMenu, useFieldShellAria, useHotkey, useHotkeyManager, useIntersectionObserver, useOpusTheme, usePortalHost, useResizeObserver, useToast, useTopNavigation, worldMapRegionIds };
|
|
2473
|
+
export { type AccentColor, AccentColorPicker, Accordion, AccordionGroup, type AccordionGroupType, Alert, type AlertStatus, 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, 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, type FieldMode, FieldShell, FileField, FilterBuilder, type FilterBuilderProps, type FilterCondition, type FilterOperator, FilterSelectField, type FilterSelectGroup, FloatingActionButton, type FloatingActionButtonPosition, type FloatingActionButtonProps, type FloatingActionButtonSize, FocusTrap, type GalleryImage, Gauge, type GaugeFooterItem, type GaugeTrend, type GaugeVariant, 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, NotesActivity, type NotesActivityItem, type NotesActivityProps, 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, 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, SidebarNav, 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, 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, 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, accentColors, cartesianSpecializedVariants, countryCodeToFlag, createAccentStyle, defaultMegaMenuFeatured, defaultMegaMenuMenus, defaultMegaMenuSections, defaultTopNavigationBarMenus, defaultTopNavigationMegaMenus, defaultTopNavigationMenus, demoSankeyLinks, fieldInputAriaProps, countries as phoneCountries, useAccentPreference, useClipboard, useContextMenu, useFieldShellAria, useHotkey, useHotkeyManager, useIntersectionObserver, useOpusTheme, usePortalHost, useResizeObserver, useToast, useTopNavigation, worldMapRegionIds };
|