@inf-monkeys-tech/monkeys-design 1.0.56 → 1.0.60

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.
@@ -1219,14 +1219,51 @@ declare function WorkbenchRadarInspectorSection({ title, icon, description, chil
1219
1219
  children?: ReactNode;
1220
1220
  className?: string;
1221
1221
  }): react_jsx_runtime.JSX.Element;
1222
- declare function WorkbenchRadarFilterChip({ label, value, icon, selected, onSelect, className, }: {
1222
+ interface WorkbenchRadarFilterRowDisclosureBase {
1223
+ expanded: boolean;
1224
+ controls: string;
1225
+ expandLabel: string;
1226
+ collapseLabel: string;
1227
+ onToggle: () => void;
1228
+ }
1229
+ interface WorkbenchRadarFilterRowIntegratedDisclosure extends WorkbenchRadarFilterRowDisclosureBase {
1230
+ mode: "integrated";
1231
+ }
1232
+ interface WorkbenchRadarFilterRowSeparateDisclosure extends WorkbenchRadarFilterRowDisclosureBase {
1233
+ mode: "separate";
1234
+ }
1235
+ interface WorkbenchRadarFilterRowBaseProps {
1223
1236
  label: ReactNode;
1224
1237
  value?: ReactNode;
1225
1238
  icon?: ReactNode;
1239
+ disabled?: boolean;
1240
+ tone?: WorkbenchVisualizationTone;
1241
+ className?: string;
1242
+ }
1243
+ type WorkbenchRadarFilterRowProps = WorkbenchRadarFilterRowBaseProps & ({
1244
+ onSelect: () => void;
1245
+ selected?: boolean;
1246
+ disclosure: WorkbenchRadarFilterRowSeparateDisclosure;
1247
+ } | {
1248
+ onSelect: () => void;
1226
1249
  selected?: boolean;
1250
+ disclosure?: never;
1251
+ } | {
1252
+ onSelect?: never;
1253
+ selected?: never;
1254
+ disclosure: WorkbenchRadarFilterRowIntegratedDisclosure;
1255
+ });
1256
+ interface WorkbenchRadarFilterChipProps {
1257
+ label: ReactNode;
1258
+ value?: ReactNode;
1259
+ icon?: ReactNode;
1260
+ selected?: boolean;
1261
+ disabled?: boolean;
1227
1262
  onSelect?: () => void;
1228
1263
  className?: string;
1229
- }): react_jsx_runtime.JSX.Element;
1264
+ }
1265
+ declare function WorkbenchRadarFilterRow(props: WorkbenchRadarFilterRowProps): react_jsx_runtime.JSX.Element;
1266
+ declare function WorkbenchRadarFilterChip({ label, value, icon, selected, disabled, onSelect, className, }: WorkbenchRadarFilterChipProps): react_jsx_runtime.JSX.Element;
1230
1267
  interface WorkbenchRadarQuadrant {
1231
1268
  id: "high-high" | "high-low" | "low-high" | "low-low";
1232
1269
  title: ReactNode;
@@ -1254,4 +1291,4 @@ interface WorkbenchRadarMatrixProps {
1254
1291
  className?: string;
1255
1292
  }
1256
1293
  declare function WorkbenchRadarMatrix({ points, xAxis, yAxis, thresholds, quadrants, legend, selectedPointId, onPointSelect, width, height, labelLimit, emptyState, ariaLabel, className, }: WorkbenchRadarMatrixProps): null | react_jsx_runtime.JSX.Element;
1257
- export { type WorkbenchCollectionTitleVisibility as $, type WorkbenchCollectionItemConfig as A, type WorkbenchCollectionItemContext as B, type WorkbenchCollectionItemSize as C, type WorkbenchCollectionItemSlotName as D, type WorkbenchCollectionItemSlots as E, type WorkbenchCollectionItemStatus as F, type WorkbenchCollectionItemTitleConfig as G, type WorkbenchCollectionKey as H, InteractiveTable as I, type WorkbenchCollectionLabels as J, type WorkbenchCollectionLayoutConfig as K, type WorkbenchCollectionLayoutContext as L, type WorkbenchCollectionLayoutMode as M, type WorkbenchCollectionLayoutSnapshot as N, type WorkbenchCollectionLoadingConfig as O, type WorkbenchCollectionLoadingVariant as P, type WorkbenchCollectionProps as Q, type WorkbenchCollectionResponsive as R, type WorkbenchCollectionSelectionBehavior as S, type WorkbenchCollectionSelectionConfig as T, type WorkbenchCollectionSelectionMode as U, type WorkbenchCollectionSkeletonConfig as V, WorkbenchAssetGallery as W, type WorkbenchCollectionSlotContext as X, type WorkbenchCollectionSlots as Y, type WorkbenchCollectionStateConfig as Z, type WorkbenchCollectionTitlePlacement as _, type InteractiveTableClassNames as a, type WorkbenchRadarNavigationChild as a$, type WorkbenchCollectionVirtualizationAdapter as a0, type WorkbenchCollectionVirtualizationConfig as a1, type WorkbenchCollectionVirtualizationRenderOptions as a2, WorkbenchContentPane as a3, type WorkbenchContentPaneBodyProps as a4, type WorkbenchContentPaneClassNames as a5, type WorkbenchContentPaneProps as a6, WorkbenchContentToolbar as a7, type WorkbenchContentToolbarClassNames as a8, type WorkbenchContentToolbarProps as a9, type WorkbenchGallerySettingsValue as aA, WorkbenchGalleryView as aB, type WorkbenchGalleryViewProps as aC, type WorkbenchJourneyItem as aD, type WorkbenchJourneyItemState as aE, WorkbenchJourneyNavigation as aF, type WorkbenchJourneyNavigationProps as aG, type WorkbenchLaneClassNames as aH, type WorkbenchLaneColumn as aI, type WorkbenchLaneRenderCardContext as aJ, WorkbenchLaneView as aK, type WorkbenchLaneViewProps as aL, type WorkbenchMasonryItemSize as aM, WorkbenchMasonryLayout as aN, type WorkbenchMasonryLayoutContext as aO, type WorkbenchMasonryLayoutProps as aP, WorkbenchMetricGrid as aQ, type WorkbenchMetricGridDensity as aR, type WorkbenchMetricGridProps as aS, type WorkbenchMetricGridVariant as aT, type WorkbenchMetricItem as aU, WorkbenchRadarFilterChip as aV, WorkbenchRadarInspectorSection as aW, type WorkbenchRadarLegendItem as aX, WorkbenchRadarMatrix as aY, type WorkbenchRadarMatrixProps as aZ, WorkbenchRadarNavigation as a_, type WorkbenchContentToolbarViewModeOption as aa, WorkbenchDetailSidebar as ab, type WorkbenchDetailSidebarBodyProps as ac, type WorkbenchDetailSidebarClassNames as ad, type WorkbenchDetailSidebarField as ae, type WorkbenchDetailSidebarProps as af, type WorkbenchDetailSidebarRenderContext as ag, type WorkbenchDetailSidebarSection as ah, type WorkbenchEvidenceItem as ai, WorkbenchEvidenceList as aj, type WorkbenchEvidenceListProps as ak, WorkbenchGalleryCard as al, type WorkbenchGalleryCardMetaContext as am, type WorkbenchGalleryCardProps as an, type WorkbenchGalleryCardRenderContext as ao, type WorkbenchGalleryColumn as ap, type WorkbenchGalleryLabels as aq, type WorkbenchGalleryRecordVisual as ar, WorkbenchGallerySettingsButton as as, type WorkbenchGallerySettingsButtonClassNames as at, type WorkbenchGallerySettingsButtonProps as au, type WorkbenchGallerySettingsLabels as av, type WorkbenchGallerySettingsOption as aw, WorkbenchGallerySettingsPanel as ax, type WorkbenchGallerySettingsPanelClassNames as ay, type WorkbenchGallerySettingsPanelProps as az, type InteractiveTableColumn as b, type WorkbenchRadarNavigationItem as b0, type WorkbenchRadarNavigationProps as b1, type WorkbenchRadarQuadrant as b2, WorkbenchRadarWorkspace as b3, type WorkbenchRadarWorkspaceProps as b4, WorkbenchRankedList as b5, type WorkbenchRankedListItem as b6, type WorkbenchRankedListMetric as b7, type WorkbenchRankedListProps as b8, type WorkbenchRelationshipEdge as b9, type WorkbenchCollectionItemAlign as bA, WorkbenchRelationshipGraph as ba, type WorkbenchRelationshipGraphProps as bb, type WorkbenchRelationshipNode as bc, WorkbenchResizableSidebar as bd, type WorkbenchResizableSidebarClassNames as be, type WorkbenchResizableSidebarItem as bf, type WorkbenchResizableSidebarProps as bg, type WorkbenchResizableSidebarSection as bh, type WorkbenchScatterAxis as bi, WorkbenchScatterPlot as bj, type WorkbenchScatterPlotProps as bk, type WorkbenchScatterPoint as bl, type WorkbenchScatterThresholds as bm, WorkbenchSelectionTray as bn, type WorkbenchSelectionTrayItem as bo, type WorkbenchSelectionTrayProps as bp, WorkbenchTableView as bq, type WorkbenchTableViewClassNames as br, type WorkbenchTableViewColumn as bs, type WorkbenchTableViewHeaderContext as bt, type WorkbenchTableViewProps as bu, type WorkbenchTableViewRenderContext as bv, type WorkbenchVisualizationTone as bw, type WorkbenchCollectionActionsPlacement as bx, type WorkbenchCollectionActionsVisibility as by, type WorkbenchCollectionItemActionsConfig as bz, type InteractiveTableColumnMenuLabels as c, InteractiveTableEditableTextCell as d, type InteractiveTableEditableTextCellProps as e, type InteractiveTableHeaderContext as f, type InteractiveTableHeaderProps as g, type InteractiveTableProps as h, InteractiveTableReadonlyCell as i, type InteractiveTableReadonlyCellProps as j, type InteractiveTableRenderContext as k, type InteractiveTableRowState as l, InteractiveTableSelectCell as m, type InteractiveTableSelectCellProps as n, type InteractiveTableSelectOption as o, type WorkbenchAssetGalleryItem as p, type WorkbenchAssetGalleryProps as q, WorkbenchCollection as r, type WorkbenchCollectionActivationEvent as s, type WorkbenchCollectionAppearanceConfig as t, type WorkbenchCollectionCallbacks as u, type WorkbenchCollectionClassNames as v, type WorkbenchCollectionConfig as w, type WorkbenchCollectionGroupContext as x, type WorkbenchCollectionGroupingConfig as y, type WorkbenchCollectionHoverEffect as z };
1294
+ export { type WorkbenchCollectionTitleVisibility as $, type WorkbenchCollectionItemConfig as A, type WorkbenchCollectionItemContext as B, type WorkbenchCollectionItemSize as C, type WorkbenchCollectionItemSlotName as D, type WorkbenchCollectionItemSlots as E, type WorkbenchCollectionItemStatus as F, type WorkbenchCollectionItemTitleConfig as G, type WorkbenchCollectionKey as H, InteractiveTable as I, type WorkbenchCollectionLabels as J, type WorkbenchCollectionLayoutConfig as K, type WorkbenchCollectionLayoutContext as L, type WorkbenchCollectionLayoutMode as M, type WorkbenchCollectionLayoutSnapshot as N, type WorkbenchCollectionLoadingConfig as O, type WorkbenchCollectionLoadingVariant as P, type WorkbenchCollectionProps as Q, type WorkbenchCollectionResponsive as R, type WorkbenchCollectionSelectionBehavior as S, type WorkbenchCollectionSelectionConfig as T, type WorkbenchCollectionSelectionMode as U, type WorkbenchCollectionSkeletonConfig as V, WorkbenchAssetGallery as W, type WorkbenchCollectionSlotContext as X, type WorkbenchCollectionSlots as Y, type WorkbenchCollectionStateConfig as Z, type WorkbenchCollectionTitlePlacement as _, type InteractiveTableClassNames as a, type WorkbenchRadarFilterRowSeparateDisclosure as a$, type WorkbenchCollectionVirtualizationAdapter as a0, type WorkbenchCollectionVirtualizationConfig as a1, type WorkbenchCollectionVirtualizationRenderOptions as a2, WorkbenchContentPane as a3, type WorkbenchContentPaneBodyProps as a4, type WorkbenchContentPaneClassNames as a5, type WorkbenchContentPaneProps as a6, WorkbenchContentToolbar as a7, type WorkbenchContentToolbarClassNames as a8, type WorkbenchContentToolbarProps as a9, type WorkbenchGallerySettingsValue as aA, WorkbenchGalleryView as aB, type WorkbenchGalleryViewProps as aC, type WorkbenchJourneyItem as aD, type WorkbenchJourneyItemState as aE, WorkbenchJourneyNavigation as aF, type WorkbenchJourneyNavigationProps as aG, type WorkbenchLaneClassNames as aH, type WorkbenchLaneColumn as aI, type WorkbenchLaneRenderCardContext as aJ, WorkbenchLaneView as aK, type WorkbenchLaneViewProps as aL, type WorkbenchMasonryItemSize as aM, WorkbenchMasonryLayout as aN, type WorkbenchMasonryLayoutContext as aO, type WorkbenchMasonryLayoutProps as aP, WorkbenchMetricGrid as aQ, type WorkbenchMetricGridDensity as aR, type WorkbenchMetricGridProps as aS, type WorkbenchMetricGridVariant as aT, type WorkbenchMetricItem as aU, WorkbenchRadarFilterChip as aV, type WorkbenchRadarFilterChipProps as aW, WorkbenchRadarFilterRow as aX, type WorkbenchRadarFilterRowDisclosureBase as aY, type WorkbenchRadarFilterRowIntegratedDisclosure as aZ, type WorkbenchRadarFilterRowProps as a_, type WorkbenchContentToolbarViewModeOption as aa, WorkbenchDetailSidebar as ab, type WorkbenchDetailSidebarBodyProps as ac, type WorkbenchDetailSidebarClassNames as ad, type WorkbenchDetailSidebarField as ae, type WorkbenchDetailSidebarProps as af, type WorkbenchDetailSidebarRenderContext as ag, type WorkbenchDetailSidebarSection as ah, type WorkbenchEvidenceItem as ai, WorkbenchEvidenceList as aj, type WorkbenchEvidenceListProps as ak, WorkbenchGalleryCard as al, type WorkbenchGalleryCardMetaContext as am, type WorkbenchGalleryCardProps as an, type WorkbenchGalleryCardRenderContext as ao, type WorkbenchGalleryColumn as ap, type WorkbenchGalleryLabels as aq, type WorkbenchGalleryRecordVisual as ar, WorkbenchGallerySettingsButton as as, type WorkbenchGallerySettingsButtonClassNames as at, type WorkbenchGallerySettingsButtonProps as au, type WorkbenchGallerySettingsLabels as av, type WorkbenchGallerySettingsOption as aw, WorkbenchGallerySettingsPanel as ax, type WorkbenchGallerySettingsPanelClassNames as ay, type WorkbenchGallerySettingsPanelProps as az, type InteractiveTableColumn as b, WorkbenchRadarInspectorSection as b0, type WorkbenchRadarLegendItem as b1, WorkbenchRadarMatrix as b2, type WorkbenchRadarMatrixProps as b3, WorkbenchRadarNavigation as b4, type WorkbenchRadarNavigationChild as b5, type WorkbenchRadarNavigationItem as b6, type WorkbenchRadarNavigationProps as b7, type WorkbenchRadarQuadrant as b8, WorkbenchRadarWorkspace as b9, type WorkbenchTableViewProps as bA, type WorkbenchTableViewRenderContext as bB, type WorkbenchVisualizationTone as bC, type WorkbenchCollectionActionsPlacement as bD, type WorkbenchCollectionActionsVisibility as bE, type WorkbenchCollectionItemActionsConfig as bF, type WorkbenchCollectionItemAlign as bG, type WorkbenchRadarWorkspaceProps as ba, WorkbenchRankedList as bb, type WorkbenchRankedListItem as bc, type WorkbenchRankedListMetric as bd, type WorkbenchRankedListProps as be, type WorkbenchRelationshipEdge as bf, WorkbenchRelationshipGraph as bg, type WorkbenchRelationshipGraphProps as bh, type WorkbenchRelationshipNode as bi, WorkbenchResizableSidebar as bj, type WorkbenchResizableSidebarClassNames as bk, type WorkbenchResizableSidebarItem as bl, type WorkbenchResizableSidebarProps as bm, type WorkbenchResizableSidebarSection as bn, type WorkbenchScatterAxis as bo, WorkbenchScatterPlot as bp, type WorkbenchScatterPlotProps as bq, type WorkbenchScatterPoint as br, type WorkbenchScatterThresholds as bs, WorkbenchSelectionTray as bt, type WorkbenchSelectionTrayItem as bu, type WorkbenchSelectionTrayProps as bv, WorkbenchTableView as bw, type WorkbenchTableViewClassNames as bx, type WorkbenchTableViewColumn as by, type WorkbenchTableViewHeaderContext as bz, type InteractiveTableColumnMenuLabels as c, InteractiveTableEditableTextCell as d, type InteractiveTableEditableTextCellProps as e, type InteractiveTableHeaderContext as f, type InteractiveTableHeaderProps as g, type InteractiveTableProps as h, InteractiveTableReadonlyCell as i, type InteractiveTableReadonlyCellProps as j, type InteractiveTableRenderContext as k, type InteractiveTableRowState as l, InteractiveTableSelectCell as m, type InteractiveTableSelectCellProps as n, type InteractiveTableSelectOption as o, type WorkbenchAssetGalleryItem as p, type WorkbenchAssetGalleryProps as q, WorkbenchCollection as r, type WorkbenchCollectionActivationEvent as s, type WorkbenchCollectionAppearanceConfig as t, type WorkbenchCollectionCallbacks as u, type WorkbenchCollectionClassNames as v, type WorkbenchCollectionConfig as w, type WorkbenchCollectionGroupContext as x, type WorkbenchCollectionGroupingConfig as y, type WorkbenchCollectionHoverEffect as z };
@@ -1219,14 +1219,51 @@ declare function WorkbenchRadarInspectorSection({ title, icon, description, chil
1219
1219
  children?: ReactNode;
1220
1220
  className?: string;
1221
1221
  }): react_jsx_runtime.JSX.Element;
1222
- declare function WorkbenchRadarFilterChip({ label, value, icon, selected, onSelect, className, }: {
1222
+ interface WorkbenchRadarFilterRowDisclosureBase {
1223
+ expanded: boolean;
1224
+ controls: string;
1225
+ expandLabel: string;
1226
+ collapseLabel: string;
1227
+ onToggle: () => void;
1228
+ }
1229
+ interface WorkbenchRadarFilterRowIntegratedDisclosure extends WorkbenchRadarFilterRowDisclosureBase {
1230
+ mode: "integrated";
1231
+ }
1232
+ interface WorkbenchRadarFilterRowSeparateDisclosure extends WorkbenchRadarFilterRowDisclosureBase {
1233
+ mode: "separate";
1234
+ }
1235
+ interface WorkbenchRadarFilterRowBaseProps {
1223
1236
  label: ReactNode;
1224
1237
  value?: ReactNode;
1225
1238
  icon?: ReactNode;
1239
+ disabled?: boolean;
1240
+ tone?: WorkbenchVisualizationTone;
1241
+ className?: string;
1242
+ }
1243
+ type WorkbenchRadarFilterRowProps = WorkbenchRadarFilterRowBaseProps & ({
1244
+ onSelect: () => void;
1245
+ selected?: boolean;
1246
+ disclosure: WorkbenchRadarFilterRowSeparateDisclosure;
1247
+ } | {
1248
+ onSelect: () => void;
1226
1249
  selected?: boolean;
1250
+ disclosure?: never;
1251
+ } | {
1252
+ onSelect?: never;
1253
+ selected?: never;
1254
+ disclosure: WorkbenchRadarFilterRowIntegratedDisclosure;
1255
+ });
1256
+ interface WorkbenchRadarFilterChipProps {
1257
+ label: ReactNode;
1258
+ value?: ReactNode;
1259
+ icon?: ReactNode;
1260
+ selected?: boolean;
1261
+ disabled?: boolean;
1227
1262
  onSelect?: () => void;
1228
1263
  className?: string;
1229
- }): react_jsx_runtime.JSX.Element;
1264
+ }
1265
+ declare function WorkbenchRadarFilterRow(props: WorkbenchRadarFilterRowProps): react_jsx_runtime.JSX.Element;
1266
+ declare function WorkbenchRadarFilterChip({ label, value, icon, selected, disabled, onSelect, className, }: WorkbenchRadarFilterChipProps): react_jsx_runtime.JSX.Element;
1230
1267
  interface WorkbenchRadarQuadrant {
1231
1268
  id: "high-high" | "high-low" | "low-high" | "low-low";
1232
1269
  title: ReactNode;
@@ -1254,4 +1291,4 @@ interface WorkbenchRadarMatrixProps {
1254
1291
  className?: string;
1255
1292
  }
1256
1293
  declare function WorkbenchRadarMatrix({ points, xAxis, yAxis, thresholds, quadrants, legend, selectedPointId, onPointSelect, width, height, labelLimit, emptyState, ariaLabel, className, }: WorkbenchRadarMatrixProps): null | react_jsx_runtime.JSX.Element;
1257
- export { type WorkbenchCollectionTitleVisibility as $, type WorkbenchCollectionItemConfig as A, type WorkbenchCollectionItemContext as B, type WorkbenchCollectionItemSize as C, type WorkbenchCollectionItemSlotName as D, type WorkbenchCollectionItemSlots as E, type WorkbenchCollectionItemStatus as F, type WorkbenchCollectionItemTitleConfig as G, type WorkbenchCollectionKey as H, InteractiveTable as I, type WorkbenchCollectionLabels as J, type WorkbenchCollectionLayoutConfig as K, type WorkbenchCollectionLayoutContext as L, type WorkbenchCollectionLayoutMode as M, type WorkbenchCollectionLayoutSnapshot as N, type WorkbenchCollectionLoadingConfig as O, type WorkbenchCollectionLoadingVariant as P, type WorkbenchCollectionProps as Q, type WorkbenchCollectionResponsive as R, type WorkbenchCollectionSelectionBehavior as S, type WorkbenchCollectionSelectionConfig as T, type WorkbenchCollectionSelectionMode as U, type WorkbenchCollectionSkeletonConfig as V, WorkbenchAssetGallery as W, type WorkbenchCollectionSlotContext as X, type WorkbenchCollectionSlots as Y, type WorkbenchCollectionStateConfig as Z, type WorkbenchCollectionTitlePlacement as _, type InteractiveTableClassNames as a, type WorkbenchRadarNavigationChild as a$, type WorkbenchCollectionVirtualizationAdapter as a0, type WorkbenchCollectionVirtualizationConfig as a1, type WorkbenchCollectionVirtualizationRenderOptions as a2, WorkbenchContentPane as a3, type WorkbenchContentPaneBodyProps as a4, type WorkbenchContentPaneClassNames as a5, type WorkbenchContentPaneProps as a6, WorkbenchContentToolbar as a7, type WorkbenchContentToolbarClassNames as a8, type WorkbenchContentToolbarProps as a9, type WorkbenchGallerySettingsValue as aA, WorkbenchGalleryView as aB, type WorkbenchGalleryViewProps as aC, type WorkbenchJourneyItem as aD, type WorkbenchJourneyItemState as aE, WorkbenchJourneyNavigation as aF, type WorkbenchJourneyNavigationProps as aG, type WorkbenchLaneClassNames as aH, type WorkbenchLaneColumn as aI, type WorkbenchLaneRenderCardContext as aJ, WorkbenchLaneView as aK, type WorkbenchLaneViewProps as aL, type WorkbenchMasonryItemSize as aM, WorkbenchMasonryLayout as aN, type WorkbenchMasonryLayoutContext as aO, type WorkbenchMasonryLayoutProps as aP, WorkbenchMetricGrid as aQ, type WorkbenchMetricGridDensity as aR, type WorkbenchMetricGridProps as aS, type WorkbenchMetricGridVariant as aT, type WorkbenchMetricItem as aU, WorkbenchRadarFilterChip as aV, WorkbenchRadarInspectorSection as aW, type WorkbenchRadarLegendItem as aX, WorkbenchRadarMatrix as aY, type WorkbenchRadarMatrixProps as aZ, WorkbenchRadarNavigation as a_, type WorkbenchContentToolbarViewModeOption as aa, WorkbenchDetailSidebar as ab, type WorkbenchDetailSidebarBodyProps as ac, type WorkbenchDetailSidebarClassNames as ad, type WorkbenchDetailSidebarField as ae, type WorkbenchDetailSidebarProps as af, type WorkbenchDetailSidebarRenderContext as ag, type WorkbenchDetailSidebarSection as ah, type WorkbenchEvidenceItem as ai, WorkbenchEvidenceList as aj, type WorkbenchEvidenceListProps as ak, WorkbenchGalleryCard as al, type WorkbenchGalleryCardMetaContext as am, type WorkbenchGalleryCardProps as an, type WorkbenchGalleryCardRenderContext as ao, type WorkbenchGalleryColumn as ap, type WorkbenchGalleryLabels as aq, type WorkbenchGalleryRecordVisual as ar, WorkbenchGallerySettingsButton as as, type WorkbenchGallerySettingsButtonClassNames as at, type WorkbenchGallerySettingsButtonProps as au, type WorkbenchGallerySettingsLabels as av, type WorkbenchGallerySettingsOption as aw, WorkbenchGallerySettingsPanel as ax, type WorkbenchGallerySettingsPanelClassNames as ay, type WorkbenchGallerySettingsPanelProps as az, type InteractiveTableColumn as b, type WorkbenchRadarNavigationItem as b0, type WorkbenchRadarNavigationProps as b1, type WorkbenchRadarQuadrant as b2, WorkbenchRadarWorkspace as b3, type WorkbenchRadarWorkspaceProps as b4, WorkbenchRankedList as b5, type WorkbenchRankedListItem as b6, type WorkbenchRankedListMetric as b7, type WorkbenchRankedListProps as b8, type WorkbenchRelationshipEdge as b9, type WorkbenchCollectionItemAlign as bA, WorkbenchRelationshipGraph as ba, type WorkbenchRelationshipGraphProps as bb, type WorkbenchRelationshipNode as bc, WorkbenchResizableSidebar as bd, type WorkbenchResizableSidebarClassNames as be, type WorkbenchResizableSidebarItem as bf, type WorkbenchResizableSidebarProps as bg, type WorkbenchResizableSidebarSection as bh, type WorkbenchScatterAxis as bi, WorkbenchScatterPlot as bj, type WorkbenchScatterPlotProps as bk, type WorkbenchScatterPoint as bl, type WorkbenchScatterThresholds as bm, WorkbenchSelectionTray as bn, type WorkbenchSelectionTrayItem as bo, type WorkbenchSelectionTrayProps as bp, WorkbenchTableView as bq, type WorkbenchTableViewClassNames as br, type WorkbenchTableViewColumn as bs, type WorkbenchTableViewHeaderContext as bt, type WorkbenchTableViewProps as bu, type WorkbenchTableViewRenderContext as bv, type WorkbenchVisualizationTone as bw, type WorkbenchCollectionActionsPlacement as bx, type WorkbenchCollectionActionsVisibility as by, type WorkbenchCollectionItemActionsConfig as bz, type InteractiveTableColumnMenuLabels as c, InteractiveTableEditableTextCell as d, type InteractiveTableEditableTextCellProps as e, type InteractiveTableHeaderContext as f, type InteractiveTableHeaderProps as g, type InteractiveTableProps as h, InteractiveTableReadonlyCell as i, type InteractiveTableReadonlyCellProps as j, type InteractiveTableRenderContext as k, type InteractiveTableRowState as l, InteractiveTableSelectCell as m, type InteractiveTableSelectCellProps as n, type InteractiveTableSelectOption as o, type WorkbenchAssetGalleryItem as p, type WorkbenchAssetGalleryProps as q, WorkbenchCollection as r, type WorkbenchCollectionActivationEvent as s, type WorkbenchCollectionAppearanceConfig as t, type WorkbenchCollectionCallbacks as u, type WorkbenchCollectionClassNames as v, type WorkbenchCollectionConfig as w, type WorkbenchCollectionGroupContext as x, type WorkbenchCollectionGroupingConfig as y, type WorkbenchCollectionHoverEffect as z };
1294
+ export { type WorkbenchCollectionTitleVisibility as $, type WorkbenchCollectionItemConfig as A, type WorkbenchCollectionItemContext as B, type WorkbenchCollectionItemSize as C, type WorkbenchCollectionItemSlotName as D, type WorkbenchCollectionItemSlots as E, type WorkbenchCollectionItemStatus as F, type WorkbenchCollectionItemTitleConfig as G, type WorkbenchCollectionKey as H, InteractiveTable as I, type WorkbenchCollectionLabels as J, type WorkbenchCollectionLayoutConfig as K, type WorkbenchCollectionLayoutContext as L, type WorkbenchCollectionLayoutMode as M, type WorkbenchCollectionLayoutSnapshot as N, type WorkbenchCollectionLoadingConfig as O, type WorkbenchCollectionLoadingVariant as P, type WorkbenchCollectionProps as Q, type WorkbenchCollectionResponsive as R, type WorkbenchCollectionSelectionBehavior as S, type WorkbenchCollectionSelectionConfig as T, type WorkbenchCollectionSelectionMode as U, type WorkbenchCollectionSkeletonConfig as V, WorkbenchAssetGallery as W, type WorkbenchCollectionSlotContext as X, type WorkbenchCollectionSlots as Y, type WorkbenchCollectionStateConfig as Z, type WorkbenchCollectionTitlePlacement as _, type InteractiveTableClassNames as a, type WorkbenchRadarFilterRowSeparateDisclosure as a$, type WorkbenchCollectionVirtualizationAdapter as a0, type WorkbenchCollectionVirtualizationConfig as a1, type WorkbenchCollectionVirtualizationRenderOptions as a2, WorkbenchContentPane as a3, type WorkbenchContentPaneBodyProps as a4, type WorkbenchContentPaneClassNames as a5, type WorkbenchContentPaneProps as a6, WorkbenchContentToolbar as a7, type WorkbenchContentToolbarClassNames as a8, type WorkbenchContentToolbarProps as a9, type WorkbenchGallerySettingsValue as aA, WorkbenchGalleryView as aB, type WorkbenchGalleryViewProps as aC, type WorkbenchJourneyItem as aD, type WorkbenchJourneyItemState as aE, WorkbenchJourneyNavigation as aF, type WorkbenchJourneyNavigationProps as aG, type WorkbenchLaneClassNames as aH, type WorkbenchLaneColumn as aI, type WorkbenchLaneRenderCardContext as aJ, WorkbenchLaneView as aK, type WorkbenchLaneViewProps as aL, type WorkbenchMasonryItemSize as aM, WorkbenchMasonryLayout as aN, type WorkbenchMasonryLayoutContext as aO, type WorkbenchMasonryLayoutProps as aP, WorkbenchMetricGrid as aQ, type WorkbenchMetricGridDensity as aR, type WorkbenchMetricGridProps as aS, type WorkbenchMetricGridVariant as aT, type WorkbenchMetricItem as aU, WorkbenchRadarFilterChip as aV, type WorkbenchRadarFilterChipProps as aW, WorkbenchRadarFilterRow as aX, type WorkbenchRadarFilterRowDisclosureBase as aY, type WorkbenchRadarFilterRowIntegratedDisclosure as aZ, type WorkbenchRadarFilterRowProps as a_, type WorkbenchContentToolbarViewModeOption as aa, WorkbenchDetailSidebar as ab, type WorkbenchDetailSidebarBodyProps as ac, type WorkbenchDetailSidebarClassNames as ad, type WorkbenchDetailSidebarField as ae, type WorkbenchDetailSidebarProps as af, type WorkbenchDetailSidebarRenderContext as ag, type WorkbenchDetailSidebarSection as ah, type WorkbenchEvidenceItem as ai, WorkbenchEvidenceList as aj, type WorkbenchEvidenceListProps as ak, WorkbenchGalleryCard as al, type WorkbenchGalleryCardMetaContext as am, type WorkbenchGalleryCardProps as an, type WorkbenchGalleryCardRenderContext as ao, type WorkbenchGalleryColumn as ap, type WorkbenchGalleryLabels as aq, type WorkbenchGalleryRecordVisual as ar, WorkbenchGallerySettingsButton as as, type WorkbenchGallerySettingsButtonClassNames as at, type WorkbenchGallerySettingsButtonProps as au, type WorkbenchGallerySettingsLabels as av, type WorkbenchGallerySettingsOption as aw, WorkbenchGallerySettingsPanel as ax, type WorkbenchGallerySettingsPanelClassNames as ay, type WorkbenchGallerySettingsPanelProps as az, type InteractiveTableColumn as b, WorkbenchRadarInspectorSection as b0, type WorkbenchRadarLegendItem as b1, WorkbenchRadarMatrix as b2, type WorkbenchRadarMatrixProps as b3, WorkbenchRadarNavigation as b4, type WorkbenchRadarNavigationChild as b5, type WorkbenchRadarNavigationItem as b6, type WorkbenchRadarNavigationProps as b7, type WorkbenchRadarQuadrant as b8, WorkbenchRadarWorkspace as b9, type WorkbenchTableViewProps as bA, type WorkbenchTableViewRenderContext as bB, type WorkbenchVisualizationTone as bC, type WorkbenchCollectionActionsPlacement as bD, type WorkbenchCollectionActionsVisibility as bE, type WorkbenchCollectionItemActionsConfig as bF, type WorkbenchCollectionItemAlign as bG, type WorkbenchRadarWorkspaceProps as ba, WorkbenchRankedList as bb, type WorkbenchRankedListItem as bc, type WorkbenchRankedListMetric as bd, type WorkbenchRankedListProps as be, type WorkbenchRelationshipEdge as bf, WorkbenchRelationshipGraph as bg, type WorkbenchRelationshipGraphProps as bh, type WorkbenchRelationshipNode as bi, WorkbenchResizableSidebar as bj, type WorkbenchResizableSidebarClassNames as bk, type WorkbenchResizableSidebarItem as bl, type WorkbenchResizableSidebarProps as bm, type WorkbenchResizableSidebarSection as bn, type WorkbenchScatterAxis as bo, WorkbenchScatterPlot as bp, type WorkbenchScatterPlotProps as bq, type WorkbenchScatterPoint as br, type WorkbenchScatterThresholds as bs, WorkbenchSelectionTray as bt, type WorkbenchSelectionTrayItem as bu, type WorkbenchSelectionTrayProps as bv, WorkbenchTableView as bw, type WorkbenchTableViewClassNames as bx, type WorkbenchTableViewColumn as by, type WorkbenchTableViewHeaderContext as bz, type InteractiveTableColumnMenuLabels as c, InteractiveTableEditableTextCell as d, type InteractiveTableEditableTextCellProps as e, type InteractiveTableHeaderContext as f, type InteractiveTableHeaderProps as g, type InteractiveTableProps as h, InteractiveTableReadonlyCell as i, type InteractiveTableReadonlyCellProps as j, type InteractiveTableRenderContext as k, type InteractiveTableRowState as l, InteractiveTableSelectCell as m, type InteractiveTableSelectCellProps as n, type InteractiveTableSelectOption as o, type WorkbenchAssetGalleryItem as p, type WorkbenchAssetGalleryProps as q, WorkbenchCollection as r, type WorkbenchCollectionActivationEvent as s, type WorkbenchCollectionAppearanceConfig as t, type WorkbenchCollectionCallbacks as u, type WorkbenchCollectionClassNames as v, type WorkbenchCollectionConfig as w, type WorkbenchCollectionGroupContext as x, type WorkbenchCollectionGroupingConfig as y, type WorkbenchCollectionHoverEffect as z };
@@ -0,0 +1,89 @@
1
+ import * as React from 'react';
2
+ import { HTMLAttributes, ReactNode, CSSProperties } from 'react';
3
+ import { c as BaseAppearance } from '../../types-c6ec8b90925b.mjs';
4
+ import '@radix-ui/react-context-menu';
5
+ type UnifiedDropdownMode = 'action' | 'checkbox' | 'multi' | 'radio' | 'searchable' | 'single' | 'tree';
6
+ type UnifiedDropdownValue = string | string[];
7
+ interface UnifiedDropdownOption {
8
+ value: string;
9
+ label: ReactNode;
10
+ textValue?: string;
11
+ description?: ReactNode;
12
+ icon?: ReactNode;
13
+ disabled?: boolean;
14
+ danger?: boolean;
15
+ group?: string;
16
+ children?: readonly UnifiedDropdownOption[];
17
+ }
18
+ interface UnifiedDropdownGroup {
19
+ value?: string;
20
+ label?: ReactNode;
21
+ options: readonly UnifiedDropdownOption[];
22
+ }
23
+ interface UnifiedDropdownSlotContext {
24
+ option?: UnifiedDropdownOption;
25
+ selected?: boolean;
26
+ highlighted?: boolean;
27
+ }
28
+ interface UnifiedDropdownSlots {
29
+ option?: (context: UnifiedDropdownSlotContext) => ReactNode;
30
+ empty?: () => ReactNode;
31
+ loading?: () => ReactNode;
32
+ error?: () => ReactNode;
33
+ footer?: () => ReactNode;
34
+ }
35
+ type UnifiedDropdownPlacement = 'bottom-end' | 'bottom-start' | 'top-end' | 'top-start';
36
+ interface UnifiedDropdownClassNames {
37
+ root?: string;
38
+ trigger?: string;
39
+ content?: string;
40
+ search?: string;
41
+ group?: string;
42
+ groupLabel?: string;
43
+ item?: string;
44
+ itemLabel?: string;
45
+ itemDescription?: string;
46
+ empty?: string;
47
+ }
48
+ interface UnifiedDropdownProps extends Omit<HTMLAttributes<HTMLDivElement>, 'children' | 'className' | 'defaultValue' | 'onChange' | 'onSelect' | 'style'> {
49
+ mode: UnifiedDropdownMode;
50
+ options?: readonly UnifiedDropdownOption[];
51
+ groups?: readonly UnifiedDropdownGroup[];
52
+ value?: UnifiedDropdownValue;
53
+ defaultValue?: UnifiedDropdownValue;
54
+ placeholder?: ReactNode;
55
+ trigger?: ReactNode;
56
+ triggerLabel?: ReactNode;
57
+ searchPlaceholder?: string;
58
+ emptyLabel?: ReactNode;
59
+ loadingLabel?: ReactNode;
60
+ clearLabel?: ReactNode;
61
+ retryLabel?: ReactNode;
62
+ loading?: boolean;
63
+ error?: ReactNode;
64
+ searchable?: boolean;
65
+ clearable?: boolean;
66
+ maxSelections?: number;
67
+ disabled?: boolean;
68
+ invalid?: boolean;
69
+ open?: boolean;
70
+ defaultOpen?: boolean;
71
+ placement?: UnifiedDropdownPlacement;
72
+ closeOnSelect?: boolean;
73
+ portal?: boolean;
74
+ size?: 'default' | 'sm';
75
+ width?: 'content' | 'responsive' | 'trigger';
76
+ appearance?: BaseAppearance;
77
+ slots?: UnifiedDropdownSlots;
78
+ className?: string;
79
+ classNames?: UnifiedDropdownClassNames;
80
+ style?: CSSProperties;
81
+ onOpenChange?: (open: boolean) => void;
82
+ onValueChange?: (value: UnifiedDropdownValue) => void;
83
+ onSelect?: (option: UnifiedDropdownOption) => void;
84
+ onAction?: (option: UnifiedDropdownOption) => void;
85
+ onClear?: () => void;
86
+ onRetry?: () => void;
87
+ }
88
+ declare const UnifiedDropdown: React.ForwardRefExoticComponent<UnifiedDropdownProps & React.RefAttributes<HTMLDivElement>>;
89
+ export { UnifiedDropdown, type UnifiedDropdownClassNames, type UnifiedDropdownGroup, type UnifiedDropdownMode, type UnifiedDropdownOption, type UnifiedDropdownPlacement, type UnifiedDropdownProps, type UnifiedDropdownSlotContext, type UnifiedDropdownSlots, type UnifiedDropdownValue };
@@ -0,0 +1,89 @@
1
+ import * as React from 'react';
2
+ import { HTMLAttributes, ReactNode, CSSProperties } from 'react';
3
+ import { c as BaseAppearance } from '../../types-c6ec8b90925b.js';
4
+ import '@radix-ui/react-context-menu';
5
+ type UnifiedDropdownMode = 'action' | 'checkbox' | 'multi' | 'radio' | 'searchable' | 'single' | 'tree';
6
+ type UnifiedDropdownValue = string | string[];
7
+ interface UnifiedDropdownOption {
8
+ value: string;
9
+ label: ReactNode;
10
+ textValue?: string;
11
+ description?: ReactNode;
12
+ icon?: ReactNode;
13
+ disabled?: boolean;
14
+ danger?: boolean;
15
+ group?: string;
16
+ children?: readonly UnifiedDropdownOption[];
17
+ }
18
+ interface UnifiedDropdownGroup {
19
+ value?: string;
20
+ label?: ReactNode;
21
+ options: readonly UnifiedDropdownOption[];
22
+ }
23
+ interface UnifiedDropdownSlotContext {
24
+ option?: UnifiedDropdownOption;
25
+ selected?: boolean;
26
+ highlighted?: boolean;
27
+ }
28
+ interface UnifiedDropdownSlots {
29
+ option?: (context: UnifiedDropdownSlotContext) => ReactNode;
30
+ empty?: () => ReactNode;
31
+ loading?: () => ReactNode;
32
+ error?: () => ReactNode;
33
+ footer?: () => ReactNode;
34
+ }
35
+ type UnifiedDropdownPlacement = 'bottom-end' | 'bottom-start' | 'top-end' | 'top-start';
36
+ interface UnifiedDropdownClassNames {
37
+ root?: string;
38
+ trigger?: string;
39
+ content?: string;
40
+ search?: string;
41
+ group?: string;
42
+ groupLabel?: string;
43
+ item?: string;
44
+ itemLabel?: string;
45
+ itemDescription?: string;
46
+ empty?: string;
47
+ }
48
+ interface UnifiedDropdownProps extends Omit<HTMLAttributes<HTMLDivElement>, 'children' | 'className' | 'defaultValue' | 'onChange' | 'onSelect' | 'style'> {
49
+ mode: UnifiedDropdownMode;
50
+ options?: readonly UnifiedDropdownOption[];
51
+ groups?: readonly UnifiedDropdownGroup[];
52
+ value?: UnifiedDropdownValue;
53
+ defaultValue?: UnifiedDropdownValue;
54
+ placeholder?: ReactNode;
55
+ trigger?: ReactNode;
56
+ triggerLabel?: ReactNode;
57
+ searchPlaceholder?: string;
58
+ emptyLabel?: ReactNode;
59
+ loadingLabel?: ReactNode;
60
+ clearLabel?: ReactNode;
61
+ retryLabel?: ReactNode;
62
+ loading?: boolean;
63
+ error?: ReactNode;
64
+ searchable?: boolean;
65
+ clearable?: boolean;
66
+ maxSelections?: number;
67
+ disabled?: boolean;
68
+ invalid?: boolean;
69
+ open?: boolean;
70
+ defaultOpen?: boolean;
71
+ placement?: UnifiedDropdownPlacement;
72
+ closeOnSelect?: boolean;
73
+ portal?: boolean;
74
+ size?: 'default' | 'sm';
75
+ width?: 'content' | 'responsive' | 'trigger';
76
+ appearance?: BaseAppearance;
77
+ slots?: UnifiedDropdownSlots;
78
+ className?: string;
79
+ classNames?: UnifiedDropdownClassNames;
80
+ style?: CSSProperties;
81
+ onOpenChange?: (open: boolean) => void;
82
+ onValueChange?: (value: UnifiedDropdownValue) => void;
83
+ onSelect?: (option: UnifiedDropdownOption) => void;
84
+ onAction?: (option: UnifiedDropdownOption) => void;
85
+ onClear?: () => void;
86
+ onRetry?: () => void;
87
+ }
88
+ declare const UnifiedDropdown: React.ForwardRefExoticComponent<UnifiedDropdownProps & React.RefAttributes<HTMLDivElement>>;
89
+ export { UnifiedDropdown, type UnifiedDropdownClassNames, type UnifiedDropdownGroup, type UnifiedDropdownMode, type UnifiedDropdownOption, type UnifiedDropdownPlacement, type UnifiedDropdownProps, type UnifiedDropdownSlotContext, type UnifiedDropdownSlots, type UnifiedDropdownValue };