@inf-monkeys-tech/monkeys-design 1.0.38 → 1.0.39

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.
Files changed (58) hide show
  1. package/dist/components/agent-workbench/index.js +9 -0
  2. package/dist/components/agent-workbench/index.js.map +1 -1
  3. package/dist/components/agent-workbench/index.mjs +9 -0
  4. package/dist/components/agent-workbench/index.mjs.map +1 -1
  5. package/dist/components/base/index.js +9 -0
  6. package/dist/components/base/index.js.map +1 -1
  7. package/dist/components/base/index.mjs +9 -0
  8. package/dist/components/base/index.mjs.map +1 -1
  9. package/dist/components/data-explorer/index.js +9 -0
  10. package/dist/components/data-explorer/index.js.map +1 -1
  11. package/dist/components/data-explorer/index.mjs +9 -0
  12. package/dist/components/data-explorer/index.mjs.map +1 -1
  13. package/dist/components/layout/index.js +9 -0
  14. package/dist/components/layout/index.js.map +1 -1
  15. package/dist/components/layout/index.mjs +9 -0
  16. package/dist/components/layout/index.mjs.map +1 -1
  17. package/dist/components/runtime/index.js +9 -0
  18. package/dist/components/runtime/index.js.map +1 -1
  19. package/dist/components/runtime/index.mjs +9 -0
  20. package/dist/components/runtime/index.mjs.map +1 -1
  21. package/dist/components/toast/index.d.mts +1 -1
  22. package/dist/components/toast/index.d.ts +1 -1
  23. package/dist/components/toast/index.js +9 -0
  24. package/dist/components/toast/index.js.map +1 -1
  25. package/dist/components/toast/index.mjs +9 -0
  26. package/dist/components/toast/index.mjs.map +1 -1
  27. package/dist/components/toolbar/index.js +9 -0
  28. package/dist/components/toolbar/index.js.map +1 -1
  29. package/dist/components/toolbar/index.mjs +9 -0
  30. package/dist/components/toolbar/index.mjs.map +1 -1
  31. package/dist/components/workbench/index.d.mts +218 -6
  32. package/dist/components/workbench/index.d.ts +218 -6
  33. package/dist/components/workbench/index.js +1088 -97
  34. package/dist/components/workbench/index.js.map +1 -1
  35. package/dist/components/workbench/index.mjs +1089 -99
  36. package/dist/components/workbench/index.mjs.map +1 -1
  37. package/dist/index.d.mts +2 -2
  38. package/dist/index.d.ts +2 -2
  39. package/dist/index.js +838 -100
  40. package/dist/index.js.map +1 -1
  41. package/dist/index.mjs +838 -101
  42. package/dist/index.mjs.map +1 -1
  43. package/dist/locale/index.d.mts +20 -2
  44. package/dist/locale/index.d.ts +20 -2
  45. package/dist/locale/index.js +22 -0
  46. package/dist/locale/index.js.map +1 -1
  47. package/dist/locale/index.mjs +22 -0
  48. package/dist/locale/index.mjs.map +1 -1
  49. package/dist/provider/index.d.mts +2 -2
  50. package/dist/provider/index.d.ts +2 -2
  51. package/dist/provider/index.js +22 -0
  52. package/dist/provider/index.js.map +1 -1
  53. package/dist/provider/index.mjs +22 -0
  54. package/dist/provider/index.mjs.map +1 -1
  55. package/dist/styles.css +1 -1
  56. package/dist/{types-b8d18b1454c2.d.mts → types-453d18eab188.d.mts} +10 -0
  57. package/dist/{types-b8d18b1454c2.d.ts → types-453d18eab188.d.ts} +10 -0
  58. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- import { ReactNode, MouseEvent, ElementType, CSSProperties, ComponentPropsWithoutRef, ComponentType } from 'react';
2
+ import { ReactNode, MouseEvent, ElementType, CSSProperties, ComponentPropsWithoutRef, ComponentType, HTMLAttributes, KeyboardEvent, DragEvent } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import { bZ as BaseTableSortDirection, c as BaseAppearance, bH as BaseTableColumnSizes, bF as BaseTableColumnOrderChangeDetail, bG as BaseTableColumnSizeChangeDetail } from '../../types-3c51850d34c1.js';
5
5
  import '@radix-ui/react-context-menu';
@@ -658,23 +658,26 @@ interface WorkbenchMasonryLayoutContext {
658
658
  containerWidth: number;
659
659
  gap: number;
660
660
  itemWidth?: number;
661
- placementStrategy: 'dense' | 'shelf';
661
+ placementStrategy: 'dense' | 'shelf' | 'shortest';
662
662
  rowSpan?: number;
663
663
  rowHeight: number;
664
664
  size?: WorkbenchMasonryItemSize;
665
665
  }
666
666
  interface WorkbenchMasonryLayoutProps<Item = any> {
667
- items?: Item[];
667
+ items?: readonly Item[];
668
668
  renderItem: (item: Item, context: WorkbenchMasonryLayoutContext) => ReactNode;
669
669
  getItemKey?: (item: Item, index: number) => number | string;
670
670
  getItemSize?: (item: Item, context: WorkbenchMasonryLayoutContext) => undefined | WorkbenchMasonryItemSize;
671
671
  columnWidth?: number | string;
672
+ columnCount?: number;
672
673
  gap?: number;
673
674
  rowHeight?: number;
674
- placementStrategy?: 'dense' | 'shelf';
675
+ placementStrategy?: 'dense' | 'shelf' | 'shortest';
676
+ containerProps?: Omit<HTMLAttributes<HTMLDivElement>, 'children'>;
677
+ getItemProps?: (item: Item, context: WorkbenchMasonryLayoutContext) => Omit<HTMLAttributes<HTMLDivElement>, 'children'>;
675
678
  className?: string;
676
679
  }
677
- declare function WorkbenchMasonryLayout<Item = any>({ items, renderItem, getItemKey, getItemSize, columnWidth, gap, rowHeight, placementStrategy, className, }: WorkbenchMasonryLayoutProps<Item>): react_jsx_runtime.JSX.Element;
680
+ declare function WorkbenchMasonryLayout<Item = any>({ items, renderItem, getItemKey, getItemSize, columnWidth, columnCount: requestedColumnCount, gap, rowHeight, placementStrategy, containerProps, getItemProps, className, }: WorkbenchMasonryLayoutProps<Item>): react_jsx_runtime.JSX.Element;
678
681
  interface WorkbenchGalleryViewProps<Row = any> extends Omit<WorkbenchGalleryCardProps<Row>, 'columns' | 'isMasonry' | 'isSelected' | 'onClick' | 'row'> {
679
682
  rows?: Row[];
680
683
  columns?: WorkbenchGalleryColumn[];
@@ -700,6 +703,215 @@ interface WorkbenchGalleryViewProps<Row = any> extends Omit<WorkbenchGalleryCard
700
703
  }) => undefined | WorkbenchMasonryItemSize;
701
704
  }
702
705
  declare function WorkbenchGalleryView<Row = any>({ rows, columns, onRowClick, selectedLinkKey, selectedRowKey, className, isMasonry, galleryLayoutMode, galleryRailCardWidth, galleryGridColumns, galleryGridCardWidth, galleryMasonryColumnWidth, masonryPlacementStrategy, galleryFieldKey, galleryDensity, galleryBentoColumns, galleryDetailVisibility, galleryDetailLimit, shouldEnhanceMultimodal, getFieldValue, isMediaColumn, isTitleCandidate, isSummaryCandidate, getDisplayText, renderFieldValue, getImagePreviewSrc, isImageField, isAudioField, AudioPlayerComponent, cardVariant, renderPreview, renderMeta, renderLeadingVisual, resolveRecordVisual, hiddenDetailFieldKeys, labels, formatLabel, getMasonryItemSize, }: WorkbenchGalleryViewProps<Row>): react_jsx_runtime.JSX.Element;
706
+ type WorkbenchCollectionKey = number | string;
707
+ type WorkbenchCollectionLayoutMode = 'dense' | 'grid' | 'masonry' | 'rail';
708
+ type WorkbenchCollectionSelectionMode = 'multiple' | 'none' | 'single';
709
+ type WorkbenchCollectionSelectionBehavior = 'range' | 'replace' | 'toggle';
710
+ type WorkbenchCollectionActivationEvent = KeyboardEvent<HTMLElement> | MouseEvent<HTMLElement>;
711
+ type WorkbenchCollectionItemStatus = 'failed' | 'idle' | 'loading' | 'pending' | string;
712
+ type WorkbenchCollectionItemSlotName = 'actions' | 'badges' | 'body' | 'detail' | 'detailTrigger' | 'fallback' | 'footer' | 'header' | 'media' | 'meta' | 'selectionControl' | 'statusOverlay' | 'top';
713
+ type WorkbenchCollectionResponsive<Value> = {
714
+ mobile?: Value;
715
+ tablet?: Value;
716
+ desktop?: Value;
717
+ } | Value;
718
+ type WorkbenchCollectionItemSize = WorkbenchMasonryItemSize;
719
+ interface WorkbenchCollectionLayoutContext {
720
+ mode: WorkbenchCollectionLayoutMode;
721
+ columnCount: number;
722
+ columnSpan?: number;
723
+ columnWidth: number;
724
+ containerWidth: number;
725
+ gap: number;
726
+ itemWidth?: number;
727
+ placementStrategy: 'dense' | 'shelf' | 'shortest';
728
+ rowSpan?: number;
729
+ rowHeight: number;
730
+ size?: WorkbenchCollectionItemSize;
731
+ }
732
+ interface WorkbenchCollectionLayoutSnapshot {
733
+ mode: WorkbenchCollectionLayoutMode;
734
+ columnCount: number;
735
+ columnWidth: number;
736
+ containerWidth: number;
737
+ gap: number;
738
+ itemCount: number;
739
+ }
740
+ interface WorkbenchCollectionItemContext<Item> {
741
+ item: Item;
742
+ index: number;
743
+ key: WorkbenchCollectionKey;
744
+ status: WorkbenchCollectionItemStatus;
745
+ disabled: boolean;
746
+ selected: boolean;
747
+ selectionMode: WorkbenchCollectionSelectionMode;
748
+ layout: WorkbenchCollectionLayoutContext;
749
+ select: (behavior?: WorkbenchCollectionSelectionBehavior) => void;
750
+ preview: () => void;
751
+ detail: () => void;
752
+ renderSlot: (name: WorkbenchCollectionItemSlotName) => ReactNode;
753
+ notifyMediaLoad: () => void;
754
+ notifyMediaError: (error?: unknown) => void;
755
+ }
756
+ interface WorkbenchCollectionStateConfig {
757
+ loading?: boolean;
758
+ loadingMore?: boolean;
759
+ error?: unknown;
760
+ empty?: boolean;
761
+ hasMore?: boolean;
762
+ }
763
+ interface WorkbenchCollectionSelectionConfig<Item> {
764
+ mode?: WorkbenchCollectionSelectionMode;
765
+ selectedKeys?: Iterable<WorkbenchCollectionKey>;
766
+ defaultSelectedKeys?: Iterable<WorkbenchCollectionKey>;
767
+ behavior?: WorkbenchCollectionSelectionBehavior;
768
+ isItemDisabled?: (item: Item, index: number) => boolean;
769
+ }
770
+ interface WorkbenchCollectionGroupingConfig<Item> {
771
+ getGroupKey: (item: Item, index: number) => WorkbenchCollectionKey;
772
+ getGroupLabel?: (groupKey: WorkbenchCollectionKey, firstItem: Item) => ReactNode;
773
+ }
774
+ interface WorkbenchCollectionLoadingConfig {
775
+ rootMargin?: string;
776
+ threshold?: number;
777
+ }
778
+ interface WorkbenchCollectionAppearanceConfig {
779
+ density?: 'comfortable' | 'compact' | 'detailed' | string;
780
+ radius?: 'lg' | 'md' | 'none' | 'sm' | 'xl' | string;
781
+ mediaFit?: 'contain' | 'cover' | 'natural';
782
+ hover?: 'highlight' | 'lift' | 'none';
783
+ selection?: 'none' | 'outline' | 'ring';
784
+ }
785
+ interface WorkbenchCollectionLabels {
786
+ collection: string;
787
+ loading: string;
788
+ empty: string;
789
+ loadError: string;
790
+ refreshError: string;
791
+ retry: string;
792
+ loadingMore: string;
793
+ }
794
+ interface WorkbenchCollectionVirtualizationRenderOptions<Item> {
795
+ items: readonly Item[];
796
+ keys: readonly WorkbenchCollectionKey[];
797
+ layout: WorkbenchCollectionLayoutConfig<Item>;
798
+ scrollOwner: HTMLElement | null;
799
+ renderItem: (item: Item, index: number, layout: WorkbenchCollectionLayoutContext) => ReactNode;
800
+ }
801
+ interface WorkbenchCollectionVirtualizationAdapter<Item> {
802
+ supports?: (mode: WorkbenchCollectionLayoutMode) => boolean;
803
+ render: (options: WorkbenchCollectionVirtualizationRenderOptions<Item>) => ReactNode;
804
+ }
805
+ interface WorkbenchCollectionVirtualizationConfig<Item> {
806
+ enabled?: boolean;
807
+ adapter?: WorkbenchCollectionVirtualizationAdapter<Item>;
808
+ fallback?: 'error' | 'render-all';
809
+ }
810
+ interface WorkbenchCollectionLayoutConfig<Item> {
811
+ mode: WorkbenchCollectionLayoutMode;
812
+ columns?: 'auto' | WorkbenchCollectionResponsive<number>;
813
+ minCardWidth?: number | string;
814
+ idealCardWidth?: number | string;
815
+ maxCardWidth?: number | string;
816
+ cardWidth?: number | string;
817
+ columnWidth?: number | string;
818
+ gap?: number;
819
+ rowHeight?: number;
820
+ placementStrategy?: 'dense' | 'shelf' | 'shortest';
821
+ padding?: number | string;
822
+ fillHeight?: boolean;
823
+ maxHeight?: number | string;
824
+ scrollOwner?: 'parent' | 'self' | HTMLElement | null;
825
+ getItemSize?: (item: Item, context: WorkbenchCollectionLayoutContext) => undefined | WorkbenchCollectionItemSize;
826
+ getItemAspectRatio?: (item: Item, index: number) => number | undefined;
827
+ }
828
+ interface WorkbenchCollectionConfig<Item> {
829
+ getItemKey?: (item: Item, index: number) => WorkbenchCollectionKey;
830
+ getItemStatus?: (item: Item, index: number) => WorkbenchCollectionItemStatus;
831
+ layout: WorkbenchCollectionLayoutConfig<Item>;
832
+ state?: WorkbenchCollectionStateConfig;
833
+ selection?: WorkbenchCollectionSelectionConfig<Item>;
834
+ grouping?: WorkbenchCollectionGroupingConfig<Item>;
835
+ loading?: WorkbenchCollectionLoadingConfig;
836
+ virtualization?: WorkbenchCollectionVirtualizationConfig<Item>;
837
+ appearance?: WorkbenchCollectionAppearanceConfig;
838
+ labels?: Partial<WorkbenchCollectionLabels>;
839
+ scrollRestorationKey?: string;
840
+ }
841
+ interface WorkbenchCollectionSlotContext<Item> {
842
+ items: readonly Item[];
843
+ error?: unknown;
844
+ loading: boolean;
845
+ loadingMore: boolean;
846
+ selectedKeys: ReadonlySet<WorkbenchCollectionKey>;
847
+ retry: () => void;
848
+ }
849
+ interface WorkbenchCollectionGroupContext<Item> {
850
+ key: WorkbenchCollectionKey;
851
+ label?: ReactNode;
852
+ items: readonly Item[];
853
+ groupIndex: number;
854
+ }
855
+ type WorkbenchCollectionItemSlots<Item> = Partial<Record<WorkbenchCollectionItemSlotName, (item: Item, context: WorkbenchCollectionItemContext<Item>) => ReactNode>>;
856
+ interface WorkbenchCollectionSlots<Item> {
857
+ header?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
858
+ toolbar?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
859
+ beforeItems?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
860
+ groupHeading?: (group: WorkbenchCollectionGroupContext<Item>, context: WorkbenchCollectionSlotContext<Item>) => ReactNode;
861
+ selectionToolbar?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
862
+ loading?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
863
+ empty?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
864
+ error?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
865
+ loadMore?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
866
+ footer?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
867
+ item?: WorkbenchCollectionItemSlots<Item>;
868
+ }
869
+ interface WorkbenchCollectionCallbacks<Item> {
870
+ onItemClick?: (item: Item, context: WorkbenchCollectionItemContext<Item>, event: WorkbenchCollectionActivationEvent) => void;
871
+ onItemDoubleClick?: (item: Item, context: WorkbenchCollectionItemContext<Item>, event: MouseEvent<HTMLElement>) => void;
872
+ onItemPreview?: (item: Item, context: WorkbenchCollectionItemContext<Item>) => void;
873
+ onItemDetail?: (item: Item, context: WorkbenchCollectionItemContext<Item>) => void;
874
+ onItemDragStart?: (item: Item, context: WorkbenchCollectionItemContext<Item>, event: DragEvent<HTMLElement>) => void;
875
+ onItemDrop?: (item: Item, context: WorkbenchCollectionItemContext<Item>, event: DragEvent<HTMLElement>) => void;
876
+ onSelectionChange?: (selectedKeys: ReadonlySet<WorkbenchCollectionKey>, details: {
877
+ item: Item;
878
+ key: WorkbenchCollectionKey;
879
+ behavior: WorkbenchCollectionSelectionBehavior;
880
+ }) => void;
881
+ onLoadMore?: () => Promise<void> | void;
882
+ onRetry?: () => void;
883
+ onLayoutChange?: (snapshot: WorkbenchCollectionLayoutSnapshot) => void;
884
+ onLayoutReady?: (snapshot: WorkbenchCollectionLayoutSnapshot) => void;
885
+ onMediaLoad?: (item: Item, context: WorkbenchCollectionItemContext<Item>) => void;
886
+ onMediaError?: (item: Item, context: WorkbenchCollectionItemContext<Item>, error?: unknown) => void;
887
+ }
888
+ interface WorkbenchCollectionClassNames {
889
+ root?: string;
890
+ header?: string;
891
+ toolbar?: string;
892
+ selectionToolbar?: string;
893
+ beforeItems?: string;
894
+ items?: string;
895
+ layout?: string;
896
+ group?: string;
897
+ groupHeading?: string;
898
+ item?: string;
899
+ status?: string;
900
+ loadMore?: string;
901
+ footer?: string;
902
+ }
903
+ interface WorkbenchCollectionProps<Item> {
904
+ items: readonly Item[];
905
+ config: WorkbenchCollectionConfig<Item>;
906
+ renderItem: (item: Item, context: WorkbenchCollectionItemContext<Item>) => ReactNode;
907
+ slots?: WorkbenchCollectionSlots<Item>;
908
+ callbacks?: WorkbenchCollectionCallbacks<Item>;
909
+ className?: string;
910
+ classNames?: WorkbenchCollectionClassNames;
911
+ style?: CSSProperties;
912
+ ariaLabel?: string;
913
+ }
914
+ declare function WorkbenchCollection<Item>({ items, config, renderItem, slots, callbacks, className, classNames, style, ariaLabel, }: WorkbenchCollectionProps<Item>): react_jsx_runtime.JSX.Element;
703
915
  interface WorkbenchLaneColumn<ColumnId extends string = string> {
704
916
  id: ColumnId;
705
917
  label?: ReactNode;
@@ -991,4 +1203,4 @@ interface WorkbenchRadarMatrixProps {
991
1203
  className?: string;
992
1204
  }
993
1205
  declare function WorkbenchRadarMatrix({ points, xAxis, yAxis, thresholds, quadrants, legend, selectedPointId, onPointSelect, width, height, labelLimit, emptyState, ariaLabel, className, }: WorkbenchRadarMatrixProps): null | react_jsx_runtime.JSX.Element;
994
- export { InteractiveTable, type InteractiveTableClassNames, type InteractiveTableColumn, type InteractiveTableColumnMenuLabels, InteractiveTableEditableTextCell, type InteractiveTableEditableTextCellProps, type InteractiveTableHeaderContext, type InteractiveTableHeaderProps, type InteractiveTableProps, InteractiveTableReadonlyCell, type InteractiveTableReadonlyCellProps, type InteractiveTableRenderContext, type InteractiveTableRowState, InteractiveTableSelectCell, type InteractiveTableSelectCellProps, type InteractiveTableSelectOption, WorkbenchAssetGallery, type WorkbenchAssetGalleryItem, type WorkbenchAssetGalleryProps, WorkbenchContentPane, type WorkbenchContentPaneBodyProps, type WorkbenchContentPaneClassNames, type WorkbenchContentPaneProps, WorkbenchContentToolbar, type WorkbenchContentToolbarClassNames, type WorkbenchContentToolbarProps, type WorkbenchContentToolbarViewModeOption, WorkbenchDetailSidebar, type WorkbenchDetailSidebarBodyProps, type WorkbenchDetailSidebarClassNames, type WorkbenchDetailSidebarField, type WorkbenchDetailSidebarProps, type WorkbenchDetailSidebarRenderContext, type WorkbenchDetailSidebarSection, type WorkbenchEvidenceItem, WorkbenchEvidenceList, type WorkbenchEvidenceListProps, WorkbenchGalleryCard, type WorkbenchGalleryCardMetaContext, type WorkbenchGalleryCardProps, type WorkbenchGalleryCardRenderContext, type WorkbenchGalleryColumn, type WorkbenchGalleryLabels, type WorkbenchGalleryRecordVisual, WorkbenchGallerySettingsButton, type WorkbenchGallerySettingsButtonClassNames, type WorkbenchGallerySettingsButtonProps, type WorkbenchGallerySettingsLabels, type WorkbenchGallerySettingsOption, WorkbenchGallerySettingsPanel, type WorkbenchGallerySettingsPanelClassNames, type WorkbenchGallerySettingsPanelProps, type WorkbenchGallerySettingsValue, WorkbenchGalleryView, type WorkbenchGalleryViewProps, type WorkbenchJourneyItem, type WorkbenchJourneyItemState, WorkbenchJourneyNavigation, type WorkbenchJourneyNavigationProps, type WorkbenchLaneClassNames, type WorkbenchLaneColumn, type WorkbenchLaneRenderCardContext, WorkbenchLaneView, type WorkbenchLaneViewProps, type WorkbenchMasonryItemSize, WorkbenchMasonryLayout, type WorkbenchMasonryLayoutContext, type WorkbenchMasonryLayoutProps, WorkbenchMetricGrid, type WorkbenchMetricGridDensity, type WorkbenchMetricGridProps, type WorkbenchMetricGridVariant, type WorkbenchMetricItem, WorkbenchRadarFilterChip, WorkbenchRadarInspectorSection, type WorkbenchRadarLegendItem, WorkbenchRadarMatrix, type WorkbenchRadarMatrixProps, WorkbenchRadarNavigation, type WorkbenchRadarNavigationChild, type WorkbenchRadarNavigationItem, type WorkbenchRadarNavigationProps, type WorkbenchRadarQuadrant, WorkbenchRadarWorkspace, type WorkbenchRadarWorkspaceProps, WorkbenchRankedList, type WorkbenchRankedListItem, type WorkbenchRankedListMetric, type WorkbenchRankedListProps, type WorkbenchRelationshipEdge, WorkbenchRelationshipGraph, type WorkbenchRelationshipGraphProps, type WorkbenchRelationshipNode, WorkbenchResizableSidebar, type WorkbenchResizableSidebarClassNames, type WorkbenchResizableSidebarItem, type WorkbenchResizableSidebarProps, type WorkbenchResizableSidebarSection, type WorkbenchScatterAxis, WorkbenchScatterPlot, type WorkbenchScatterPlotProps, type WorkbenchScatterPoint, type WorkbenchScatterThresholds, WorkbenchSelectionTray, type WorkbenchSelectionTrayItem, type WorkbenchSelectionTrayProps, WorkbenchTableView, type WorkbenchTableViewClassNames, type WorkbenchTableViewColumn, type WorkbenchTableViewHeaderContext, type WorkbenchTableViewProps, type WorkbenchTableViewRenderContext, type WorkbenchVisualizationTone };
1206
+ export { InteractiveTable, type InteractiveTableClassNames, type InteractiveTableColumn, type InteractiveTableColumnMenuLabels, InteractiveTableEditableTextCell, type InteractiveTableEditableTextCellProps, type InteractiveTableHeaderContext, type InteractiveTableHeaderProps, type InteractiveTableProps, InteractiveTableReadonlyCell, type InteractiveTableReadonlyCellProps, type InteractiveTableRenderContext, type InteractiveTableRowState, InteractiveTableSelectCell, type InteractiveTableSelectCellProps, type InteractiveTableSelectOption, WorkbenchAssetGallery, type WorkbenchAssetGalleryItem, type WorkbenchAssetGalleryProps, WorkbenchCollection, type WorkbenchCollectionActivationEvent, type WorkbenchCollectionAppearanceConfig, type WorkbenchCollectionCallbacks, type WorkbenchCollectionClassNames, type WorkbenchCollectionConfig, type WorkbenchCollectionGroupContext, type WorkbenchCollectionGroupingConfig, type WorkbenchCollectionItemContext, type WorkbenchCollectionItemSize, type WorkbenchCollectionItemSlotName, type WorkbenchCollectionItemSlots, type WorkbenchCollectionItemStatus, type WorkbenchCollectionKey, type WorkbenchCollectionLabels, type WorkbenchCollectionLayoutConfig, type WorkbenchCollectionLayoutContext, type WorkbenchCollectionLayoutMode, type WorkbenchCollectionLayoutSnapshot, type WorkbenchCollectionLoadingConfig, type WorkbenchCollectionProps, type WorkbenchCollectionResponsive, type WorkbenchCollectionSelectionBehavior, type WorkbenchCollectionSelectionConfig, type WorkbenchCollectionSelectionMode, type WorkbenchCollectionSlotContext, type WorkbenchCollectionSlots, type WorkbenchCollectionStateConfig, type WorkbenchCollectionVirtualizationAdapter, type WorkbenchCollectionVirtualizationConfig, type WorkbenchCollectionVirtualizationRenderOptions, WorkbenchContentPane, type WorkbenchContentPaneBodyProps, type WorkbenchContentPaneClassNames, type WorkbenchContentPaneProps, WorkbenchContentToolbar, type WorkbenchContentToolbarClassNames, type WorkbenchContentToolbarProps, type WorkbenchContentToolbarViewModeOption, WorkbenchDetailSidebar, type WorkbenchDetailSidebarBodyProps, type WorkbenchDetailSidebarClassNames, type WorkbenchDetailSidebarField, type WorkbenchDetailSidebarProps, type WorkbenchDetailSidebarRenderContext, type WorkbenchDetailSidebarSection, type WorkbenchEvidenceItem, WorkbenchEvidenceList, type WorkbenchEvidenceListProps, WorkbenchGalleryCard, type WorkbenchGalleryCardMetaContext, type WorkbenchGalleryCardProps, type WorkbenchGalleryCardRenderContext, type WorkbenchGalleryColumn, type WorkbenchGalleryLabels, type WorkbenchGalleryRecordVisual, WorkbenchGallerySettingsButton, type WorkbenchGallerySettingsButtonClassNames, type WorkbenchGallerySettingsButtonProps, type WorkbenchGallerySettingsLabels, type WorkbenchGallerySettingsOption, WorkbenchGallerySettingsPanel, type WorkbenchGallerySettingsPanelClassNames, type WorkbenchGallerySettingsPanelProps, type WorkbenchGallerySettingsValue, WorkbenchGalleryView, type WorkbenchGalleryViewProps, type WorkbenchJourneyItem, type WorkbenchJourneyItemState, WorkbenchJourneyNavigation, type WorkbenchJourneyNavigationProps, type WorkbenchLaneClassNames, type WorkbenchLaneColumn, type WorkbenchLaneRenderCardContext, WorkbenchLaneView, type WorkbenchLaneViewProps, type WorkbenchMasonryItemSize, WorkbenchMasonryLayout, type WorkbenchMasonryLayoutContext, type WorkbenchMasonryLayoutProps, WorkbenchMetricGrid, type WorkbenchMetricGridDensity, type WorkbenchMetricGridProps, type WorkbenchMetricGridVariant, type WorkbenchMetricItem, WorkbenchRadarFilterChip, WorkbenchRadarInspectorSection, type WorkbenchRadarLegendItem, WorkbenchRadarMatrix, type WorkbenchRadarMatrixProps, WorkbenchRadarNavigation, type WorkbenchRadarNavigationChild, type WorkbenchRadarNavigationItem, type WorkbenchRadarNavigationProps, type WorkbenchRadarQuadrant, WorkbenchRadarWorkspace, type WorkbenchRadarWorkspaceProps, WorkbenchRankedList, type WorkbenchRankedListItem, type WorkbenchRankedListMetric, type WorkbenchRankedListProps, type WorkbenchRelationshipEdge, WorkbenchRelationshipGraph, type WorkbenchRelationshipGraphProps, type WorkbenchRelationshipNode, WorkbenchResizableSidebar, type WorkbenchResizableSidebarClassNames, type WorkbenchResizableSidebarItem, type WorkbenchResizableSidebarProps, type WorkbenchResizableSidebarSection, type WorkbenchScatterAxis, WorkbenchScatterPlot, type WorkbenchScatterPlotProps, type WorkbenchScatterPoint, type WorkbenchScatterThresholds, WorkbenchSelectionTray, type WorkbenchSelectionTrayItem, type WorkbenchSelectionTrayProps, WorkbenchTableView, type WorkbenchTableViewClassNames, type WorkbenchTableViewColumn, type WorkbenchTableViewHeaderContext, type WorkbenchTableViewProps, type WorkbenchTableViewRenderContext, type WorkbenchVisualizationTone };