@inf-monkeys-tech/monkeys-design 1.0.107 → 1.0.108
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/components/agent-workbench/index.d.mts +4 -23
- package/dist/components/agent-workbench/index.d.ts +4 -23
- package/dist/{details-model-2709d7a575c3.d.mts → details-model-c55c1c493c48.d.mts} +21 -2
- package/dist/{details-model-2709d7a575c3.d.ts → details-model-c55c1c493c48.d.ts} +21 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +170 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +171 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import * as React4 from 'react';
|
|
|
4
4
|
import React4__default, { forwardRef, useMemo, useId, useRef, useState, useEffect, createElement, createContext, useCallback, useContext, Children, isValidElement, Fragment as Fragment$1, useLayoutEffect } from 'react';
|
|
5
5
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
6
6
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
7
|
-
import { ChevronDown, Search, Circle, Check, ChevronRight, ChevronUp, Plus, Pin, Blocks, Settings, TerminalSquare, FileOutput, Download, X, PanelLeft, PanelRight, Loader2, UploadCloud, RefreshCw, Bot, SquarePen, MessageSquare, Clock3, CheckCircle2, XCircle, CircleStop, AlertCircle, GitFork, PencilLine, Copy, RotateCcw, FileCode2, Files, TestTube2, Image, Video, Music2,
|
|
7
|
+
import { ChevronDown, Search, Circle, Check, ChevronRight, ChevronUp, ShoppingBag, Code2, FileText, Palette, Sparkles, ArrowLeft, Upload, ArrowUpRight, Plus, Pin, Blocks, Settings, TerminalSquare, FileOutput, Download, X, PanelLeft, PanelRight, Loader2, UploadCloud, RefreshCw, Bot, SquarePen, MessageSquare, Clock3, CheckCircle2, XCircle, CircleStop, AlertCircle, GitFork, PencilLine, Copy, RotateCcw, FileCode2, Files, TestTube2, Image, Video, Music2, Ellipsis, Trash2, Pencil } from 'lucide-react';
|
|
8
8
|
import { twMerge } from 'tailwind-merge';
|
|
9
9
|
import * as DropdownMenu2 from '@radix-ui/react-dropdown-menu';
|
|
10
10
|
import * as ContextMenu from '@radix-ui/react-context-menu';
|
|
@@ -18471,6 +18471,175 @@ var SheetTitle = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE_
|
|
|
18471
18471
|
SheetTitle.displayName = "SheetTitle";
|
|
18472
18472
|
var SheetDescription = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(Dialog.Description, { ref, className: cn("text-sm text-muted-foreground", className), ...props }));
|
|
18473
18473
|
SheetDescription.displayName = "SheetDescription";
|
|
18474
|
+
var ICONS = {
|
|
18475
|
+
sparkles: Sparkles,
|
|
18476
|
+
palette: Palette,
|
|
18477
|
+
search: Search,
|
|
18478
|
+
"file-text": FileText,
|
|
18479
|
+
code: Code2,
|
|
18480
|
+
"shopping-bag": ShoppingBag
|
|
18481
|
+
};
|
|
18482
|
+
function TemplateVisual({ template }) {
|
|
18483
|
+
const Icon2 = ICONS[template.icon || "sparkles"];
|
|
18484
|
+
if (template.coverImageUrl) {
|
|
18485
|
+
return /* @__PURE__ */ jsx("img", { src: template.coverImageUrl, alt: "", className: "size-full bg-muted object-contain" });
|
|
18486
|
+
}
|
|
18487
|
+
return /* @__PURE__ */ jsx("span", { className: "flex size-full items-center justify-center bg-gradient-to-br from-primary/5 via-muted/50 to-primary/15", children: /* @__PURE__ */ jsx("span", { className: "flex size-14 items-center justify-center rounded-2xl border border-primary/10 bg-background/85 text-primary shadow-sm", children: /* @__PURE__ */ jsx(Icon2, { className: "size-7", "aria-hidden": "true" }) }) });
|
|
18488
|
+
}
|
|
18489
|
+
function AgentWorkbenchQuickStart({ viewModel, className, onIntent }) {
|
|
18490
|
+
const messages = useMonkeysLocaleMessages().agentWorkbench.quickStart;
|
|
18491
|
+
const fileInputRef = useRef(null);
|
|
18492
|
+
const [activeCategoryId, setActiveCategoryId] = useState();
|
|
18493
|
+
const [activeSectionId, setActiveSectionId] = useState();
|
|
18494
|
+
const [pendingTemplate, setPendingTemplate] = useState();
|
|
18495
|
+
const categories = useMemo(
|
|
18496
|
+
() => viewModel.categories.map((category) => ({
|
|
18497
|
+
...category,
|
|
18498
|
+
sections: category.sections.map((section) => ({
|
|
18499
|
+
...section,
|
|
18500
|
+
templates: section.templates.filter((template) => !template.modes || template.modes.includes(viewModel.mode))
|
|
18501
|
+
})).filter((section) => section.templates.length > 0)
|
|
18502
|
+
})).filter((category) => category.sections.length > 0),
|
|
18503
|
+
[viewModel.categories, viewModel.mode]
|
|
18504
|
+
);
|
|
18505
|
+
const activeCategory = categories.find((category) => category.id === activeCategoryId);
|
|
18506
|
+
const activeSection = activeCategory?.sections.find((section) => section.id === activeSectionId) || activeCategory?.sections[0];
|
|
18507
|
+
const usesCompactList = activeSection?.templates.length ? activeSection.templates.every((template) => !template.coverImageUrl) : false;
|
|
18508
|
+
useEffect(() => {
|
|
18509
|
+
if (activeCategoryId && !categories.some((category) => category.id === activeCategoryId)) {
|
|
18510
|
+
setActiveCategoryId(void 0);
|
|
18511
|
+
setActiveSectionId(void 0);
|
|
18512
|
+
}
|
|
18513
|
+
}, [activeCategoryId, categories]);
|
|
18514
|
+
if (categories.length === 0) return null;
|
|
18515
|
+
const selectCategory = (category) => {
|
|
18516
|
+
setActiveCategoryId(category.id);
|
|
18517
|
+
setActiveSectionId(category.sections[0]?.id);
|
|
18518
|
+
onIntent?.({ type: "change-category", categoryId: category.id });
|
|
18519
|
+
};
|
|
18520
|
+
const selectSection = (sectionId) => {
|
|
18521
|
+
if (!activeCategory) return;
|
|
18522
|
+
setActiveSectionId(sectionId);
|
|
18523
|
+
onIntent?.({
|
|
18524
|
+
type: "change-section",
|
|
18525
|
+
categoryId: activeCategory.id,
|
|
18526
|
+
sectionId
|
|
18527
|
+
});
|
|
18528
|
+
};
|
|
18529
|
+
const selectTemplate = (template) => {
|
|
18530
|
+
if (viewModel.disabled) return;
|
|
18531
|
+
if (template.action !== "upload") {
|
|
18532
|
+
onIntent?.({
|
|
18533
|
+
type: "select-template",
|
|
18534
|
+
templateId: template.id,
|
|
18535
|
+
prompt: template.prompt
|
|
18536
|
+
});
|
|
18537
|
+
return;
|
|
18538
|
+
}
|
|
18539
|
+
const input = fileInputRef.current;
|
|
18540
|
+
if (!input) return;
|
|
18541
|
+
input.accept = template.accept || "*/*";
|
|
18542
|
+
input.multiple = template.multiple === true;
|
|
18543
|
+
setPendingTemplate(template);
|
|
18544
|
+
input.click();
|
|
18545
|
+
};
|
|
18546
|
+
return /* @__PURE__ */ jsxs("section", { className: cn2("agent-workbench-quick-start min-w-0 max-w-full", className), "aria-label": messages.label, children: [
|
|
18547
|
+
/* @__PURE__ */ jsx(
|
|
18548
|
+
"input",
|
|
18549
|
+
{
|
|
18550
|
+
ref: fileInputRef,
|
|
18551
|
+
type: "file",
|
|
18552
|
+
className: "hidden",
|
|
18553
|
+
onChange: (event) => {
|
|
18554
|
+
const files = Array.from(event.target.files || []);
|
|
18555
|
+
if (pendingTemplate && files.length > 0) {
|
|
18556
|
+
onIntent?.({
|
|
18557
|
+
type: "select-template",
|
|
18558
|
+
templateId: pendingTemplate.id,
|
|
18559
|
+
prompt: pendingTemplate.prompt,
|
|
18560
|
+
files: pendingTemplate.multiple ? files : files.slice(0, 1)
|
|
18561
|
+
});
|
|
18562
|
+
}
|
|
18563
|
+
setPendingTemplate(void 0);
|
|
18564
|
+
event.target.value = "";
|
|
18565
|
+
}
|
|
18566
|
+
}
|
|
18567
|
+
),
|
|
18568
|
+
!activeCategory ? /* @__PURE__ */ jsx("div", { className: "flex max-w-full items-center justify-center gap-2 overflow-x-auto px-1 pb-1", children: categories.map((category) => {
|
|
18569
|
+
const Icon2 = ICONS[category.icon || "sparkles"];
|
|
18570
|
+
return /* @__PURE__ */ jsxs("button", { type: "button", className: "inline-flex h-10 shrink-0 items-center gap-2 rounded-full border border-border bg-background px-4 text-sm font-medium text-foreground transition-colors hover:bg-muted focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring", onClick: () => selectCategory(category), children: [
|
|
18571
|
+
/* @__PURE__ */ jsx(Icon2, { className: "size-4 text-muted-foreground", "aria-hidden": "true" }),
|
|
18572
|
+
category.label
|
|
18573
|
+
] }, category.id);
|
|
18574
|
+
}) }) : /* @__PURE__ */ jsxs("div", { className: "space-y-3", children: [
|
|
18575
|
+
/* @__PURE__ */ jsxs("div", { className: "flex min-w-0 max-w-full items-center gap-1 overflow-x-auto pb-1", children: [
|
|
18576
|
+
/* @__PURE__ */ jsxs(
|
|
18577
|
+
"button",
|
|
18578
|
+
{
|
|
18579
|
+
type: "button",
|
|
18580
|
+
className: "inline-flex h-9 shrink-0 items-center gap-1.5 rounded-full px-3 text-sm font-medium text-muted-foreground transition-colors hover:bg-muted hover:text-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring",
|
|
18581
|
+
onClick: () => {
|
|
18582
|
+
setActiveCategoryId(void 0);
|
|
18583
|
+
setActiveSectionId(void 0);
|
|
18584
|
+
onIntent?.({ type: "change-category" });
|
|
18585
|
+
},
|
|
18586
|
+
children: [
|
|
18587
|
+
/* @__PURE__ */ jsx(ArrowLeft, { className: "size-4", "aria-hidden": "true" }),
|
|
18588
|
+
messages.back
|
|
18589
|
+
]
|
|
18590
|
+
}
|
|
18591
|
+
),
|
|
18592
|
+
activeCategory.sections.map((section) => /* @__PURE__ */ jsx("button", { type: "button", "aria-pressed": activeSection?.id === section.id, className: cn2("h-9 shrink-0 rounded-full px-4 text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring", activeSection?.id === section.id ? "bg-muted text-foreground" : "text-muted-foreground hover:bg-muted/70 hover:text-foreground"), onClick: () => selectSection(section.id), children: section.label }, section.id))
|
|
18593
|
+
] }),
|
|
18594
|
+
/* @__PURE__ */ jsx(
|
|
18595
|
+
"div",
|
|
18596
|
+
{
|
|
18597
|
+
"data-quick-start-layout": usesCompactList ? "list" : "cards",
|
|
18598
|
+
className: cn2(
|
|
18599
|
+
"grid",
|
|
18600
|
+
usesCompactList ? "grid-cols-1 gap-0" : "grid-cols-[repeat(auto-fit,minmax(min(100%,14rem),1fr))] gap-3"
|
|
18601
|
+
),
|
|
18602
|
+
children: activeSection?.templates.map((template) => /* @__PURE__ */ jsxs(
|
|
18603
|
+
"button",
|
|
18604
|
+
{
|
|
18605
|
+
type: "button",
|
|
18606
|
+
disabled: viewModel.disabled,
|
|
18607
|
+
"data-quick-start-template-id": template.id,
|
|
18608
|
+
className: cn2(
|
|
18609
|
+
"group min-w-0 overflow-hidden text-left transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50",
|
|
18610
|
+
usesCompactList ? "flex min-h-14 items-center rounded-none border-x-0 border-t-0 bg-transparent shadow-none hover:border-border hover:bg-muted/40 last:border-b-0" : "rounded-xl border border-border bg-background hover:border-primary/30 hover:bg-muted/20"
|
|
18611
|
+
),
|
|
18612
|
+
onClick: () => selectTemplate(template),
|
|
18613
|
+
children: [
|
|
18614
|
+
/* @__PURE__ */ jsxs("span", { className: cn2(usesCompactList ? "min-w-0 flex-1 px-2 py-2.5" : "block px-4 pb-3 pt-4"), children: [
|
|
18615
|
+
/* @__PURE__ */ jsxs("span", { className: cn2("flex items-center gap-2 text-sm text-foreground", usesCompactList ? "font-medium" : "font-semibold"), children: [
|
|
18616
|
+
template.title,
|
|
18617
|
+
template.action === "upload" ? /* @__PURE__ */ jsxs("span", { className: "ml-auto inline-flex items-center gap-1 text-[11px] font-medium text-muted-foreground", children: [
|
|
18618
|
+
/* @__PURE__ */ jsx(Upload, { className: "size-3", "aria-hidden": "true" }),
|
|
18619
|
+
messages.addFile
|
|
18620
|
+
] }) : null
|
|
18621
|
+
] }),
|
|
18622
|
+
template.description ? /* @__PURE__ */ jsx(
|
|
18623
|
+
"span",
|
|
18624
|
+
{
|
|
18625
|
+
className: cn2(
|
|
18626
|
+
"line-clamp-2 block text-xs leading-4 text-muted-foreground",
|
|
18627
|
+
usesCompactList ? "mt-0.5 min-h-0 text-muted-foreground/75" : "mt-1 min-h-8"
|
|
18628
|
+
),
|
|
18629
|
+
children: template.description
|
|
18630
|
+
}
|
|
18631
|
+
) : null
|
|
18632
|
+
] }),
|
|
18633
|
+
usesCompactList ? /* @__PURE__ */ jsx(ArrowUpRight, { className: "mr-2 size-4 shrink-0 text-muted-foreground/45", "aria-hidden": "true" }) : /* @__PURE__ */ jsx("span", { className: cn2("block overflow-hidden", template.coverImageUrl ? "aspect-[5/2]" : "h-28"), children: /* @__PURE__ */ jsx(TemplateVisual, { template }) })
|
|
18634
|
+
]
|
|
18635
|
+
},
|
|
18636
|
+
template.id
|
|
18637
|
+
))
|
|
18638
|
+
}
|
|
18639
|
+
)
|
|
18640
|
+
] })
|
|
18641
|
+
] });
|
|
18642
|
+
}
|
|
18474
18643
|
var AgentWorkbenchSidebarContainer = forwardRef(function AgentWorkbenchSidebarContainer2({
|
|
18475
18644
|
children,
|
|
18476
18645
|
header,
|
|
@@ -34508,6 +34677,6 @@ function useDarkMode() {
|
|
|
34508
34677
|
return { mode, setMode, resolvedMode };
|
|
34509
34678
|
}
|
|
34510
34679
|
|
|
34511
|
-
export { AGENT_WORKBENCH_SHELL_BREAKPOINTS, AgentWorkbenchActivity, AgentWorkbenchExploreSidebar, AgentWorkbenchShell, AgentWorkbenchSidebar, AgentWorkbenchSidebarContainer, AgentWorkbenchTaskDetails, AgentWorkbenchTool, AppHeader, AppLayout, AppShellSidebar, AppSidebar, ApplicationHandoffLink, BaseAccordion, BaseAspectRatio, BaseAvatar, BaseBadge, BaseBreadcrumb, BaseButton, BaseCheckbox, BaseCode, BaseContainer, BaseContextMenu, BaseContextMenuCheckboxItem, BaseContextMenuContent, BaseContextMenuItem, BaseContextMenuLabel, BaseContextMenuRadioGroup, BaseContextMenuRadioItem, BaseContextMenuSeparator, BaseContextMenuSub, BaseContextMenuSubContent, BaseContextMenuSubTrigger, BaseContextMenuTrigger, BaseDescriptionList, BaseDialog, BaseDivider, BaseDropdownMenu, BaseEmptyState, BaseField, BaseFieldset, BaseGrid, BaseHeading, BaseInline, BaseInput, BaseInputGroup, BaseKbd, BaseLayout, BaseLayoutPane, BaseLayoutResizeHandle, BaseLayoutSplit, BaseLink, BaseList, BaseListFooter, BaseListItem, BaseLoadingState, BaseMultiSelect, BaseNotice, BaseNumberInput, BasePagination, BasePanel, BasePasswordInput, BasePortal, BaseProgress, BaseRadioGroup, BaseScrollArea, BaseSectionHeader, BaseSegmentedControl, BaseSelect, BaseSkeleton, BaseSpinner, BaseStack, BaseSteps, BaseSwitch, BaseSystemState, BaseTable, BaseTableBody, BaseTableCaption, BaseTableCell, BaseTableContainer, BaseTableEmpty, BaseTableFooter, BaseTableFooterBar, BaseTableHead, BaseTableHeader, BaseTableLoading, BaseTableRow, BaseTabs, BaseText, BaseTextarea, BaseToolbar, BaseTooltip, BaseVisuallyHidden, DarkModeSelector, DarkModeSubMenu, DataExplorerActionBar, DataExplorerButton, DataExplorerCheckbox, DataExplorerCollectionFooter, DataExplorerDetailField, DataExplorerDetailSection, DataExplorerDetailShell, DataExplorerDisplayActionMenu, DataExplorerDisplayCard, DataExplorerDisplayCollectionView, DataExplorerDisplayListItem, DataExplorerDisplayMedia, DataExplorerFilterBar, DataExplorerImagePreview, DataExplorerMediaPreview, DataExplorerPage, DataExplorerRecordCard, DataExplorerRecordPicker, DataExplorerSelect, DataExplorerToolbarActions, DataExplorerToolbarShell, DataExplorerTree, DataExplorerTreeShell, DataExplorerUploadSurface, DataExplorerView, DataExplorerViewCollection, DataExplorerViewItem, DataExplorerViewItemShell, DataExplorerViewShell, DataExplorerViewTree, I18nSelector, InteractiveTable, InteractiveTableEditableTextCell, InteractiveTableReadonlyCell, InteractiveTableSelectCell, LoginPage, MonkeysProvider, MonkeysToastProvider, MonkeysToaster, NavButton, NavigationLayout, NavigationSidebar, OverlayNodeHost, RenderNodeHost, MonkeysToastProvider as ToastProvider, MonkeysToaster as Toaster, UnifiedDropdown, UserAccountMenu, WorkbenchAssetGallery, WorkbenchCollection, WorkbenchContentPane, WorkbenchContentToolbar, WorkbenchDetailSidebar, WorkbenchEvidenceList, WorkbenchGalleryCard, WorkbenchGallerySettingsButton, WorkbenchGallerySettingsPanel, WorkbenchGalleryView, WorkbenchJourneyNavigation, WorkbenchLaneView, WorkbenchMasonryLayout, WorkbenchMetricGrid, WorkbenchRadarFilterChip, WorkbenchRadarFilterRow, WorkbenchRadarInspectorSection, WorkbenchRadarMatrix, WorkbenchRadarNavigation, WorkbenchRadarWorkspace, WorkbenchRankedList, WorkbenchRelationshipGraph, WorkbenchResizableSidebar, WorkbenchScatterPlot, WorkbenchSelectionTray, WorkbenchTableView, applyThemeTokens, browserOverlayHistoryAdapter, buildOverlayUrl, calculateHue, calculateLightness, calculateSaturation, cn2 as cn, compileThemeTokens, createAgentWorkbenchActivityModel, createAgentWorkbenchDetailsModel, createSolidColorScale, defaultMonkeysLocale, enUS, extractToastMessage, genTailwindTheme, getBaseBadgeToneClassName, getBaseButtonToneClassName, getBaseMenuItemToneClassName, getBaseNoticeToneClassName, getDataExplorerActionToneClassName, getDataExplorerMenuItemToneClassName, getOverlayPresentationClassNames, getOverlayZIndex, getRenderNodeDataAttributes, getThemeTokenCssValue, isOverlayUrlActive, markDarkColor, mergeMonkeysLocaleMessages, resolveAgentWorkbenchShellLayout, resolveBaseAppearance, resolveDataExplorerAppearance, resolveMonkeysLocale, resolveRenderNodePolicyState, resolveToastVariantForMessage, sessionRenderNodeScrollRestoration, setTailwindTheme, toast, useDarkMode, useMonkeysBaseAppearance, useMonkeysComponentAttributes, useMonkeysDataExplorerAppearance, useMonkeysDirection, useMonkeysEnvironment, useMonkeysListFooter, useMonkeysLocale, useMonkeysLocaleMessages, useMonkeysPortalOptions, useMonkeysResolvedTheme, useMonkeysStatusStates, useToastFeed, useToastOnValue, zhCN };
|
|
34680
|
+
export { AGENT_WORKBENCH_SHELL_BREAKPOINTS, AgentWorkbenchActivity, AgentWorkbenchExploreSidebar, AgentWorkbenchQuickStart, AgentWorkbenchShell, AgentWorkbenchSidebar, AgentWorkbenchSidebarContainer, AgentWorkbenchTaskDetails, AgentWorkbenchTool, AppHeader, AppLayout, AppShellSidebar, AppSidebar, ApplicationHandoffLink, BaseAccordion, BaseAspectRatio, BaseAvatar, BaseBadge, BaseBreadcrumb, BaseButton, BaseCheckbox, BaseCode, BaseContainer, BaseContextMenu, BaseContextMenuCheckboxItem, BaseContextMenuContent, BaseContextMenuItem, BaseContextMenuLabel, BaseContextMenuRadioGroup, BaseContextMenuRadioItem, BaseContextMenuSeparator, BaseContextMenuSub, BaseContextMenuSubContent, BaseContextMenuSubTrigger, BaseContextMenuTrigger, BaseDescriptionList, BaseDialog, BaseDivider, BaseDropdownMenu, BaseEmptyState, BaseField, BaseFieldset, BaseGrid, BaseHeading, BaseInline, BaseInput, BaseInputGroup, BaseKbd, BaseLayout, BaseLayoutPane, BaseLayoutResizeHandle, BaseLayoutSplit, BaseLink, BaseList, BaseListFooter, BaseListItem, BaseLoadingState, BaseMultiSelect, BaseNotice, BaseNumberInput, BasePagination, BasePanel, BasePasswordInput, BasePortal, BaseProgress, BaseRadioGroup, BaseScrollArea, BaseSectionHeader, BaseSegmentedControl, BaseSelect, BaseSkeleton, BaseSpinner, BaseStack, BaseSteps, BaseSwitch, BaseSystemState, BaseTable, BaseTableBody, BaseTableCaption, BaseTableCell, BaseTableContainer, BaseTableEmpty, BaseTableFooter, BaseTableFooterBar, BaseTableHead, BaseTableHeader, BaseTableLoading, BaseTableRow, BaseTabs, BaseText, BaseTextarea, BaseToolbar, BaseTooltip, BaseVisuallyHidden, DarkModeSelector, DarkModeSubMenu, DataExplorerActionBar, DataExplorerButton, DataExplorerCheckbox, DataExplorerCollectionFooter, DataExplorerDetailField, DataExplorerDetailSection, DataExplorerDetailShell, DataExplorerDisplayActionMenu, DataExplorerDisplayCard, DataExplorerDisplayCollectionView, DataExplorerDisplayListItem, DataExplorerDisplayMedia, DataExplorerFilterBar, DataExplorerImagePreview, DataExplorerMediaPreview, DataExplorerPage, DataExplorerRecordCard, DataExplorerRecordPicker, DataExplorerSelect, DataExplorerToolbarActions, DataExplorerToolbarShell, DataExplorerTree, DataExplorerTreeShell, DataExplorerUploadSurface, DataExplorerView, DataExplorerViewCollection, DataExplorerViewItem, DataExplorerViewItemShell, DataExplorerViewShell, DataExplorerViewTree, I18nSelector, InteractiveTable, InteractiveTableEditableTextCell, InteractiveTableReadonlyCell, InteractiveTableSelectCell, LoginPage, MonkeysProvider, MonkeysToastProvider, MonkeysToaster, NavButton, NavigationLayout, NavigationSidebar, OverlayNodeHost, RenderNodeHost, MonkeysToastProvider as ToastProvider, MonkeysToaster as Toaster, UnifiedDropdown, UserAccountMenu, WorkbenchAssetGallery, WorkbenchCollection, WorkbenchContentPane, WorkbenchContentToolbar, WorkbenchDetailSidebar, WorkbenchEvidenceList, WorkbenchGalleryCard, WorkbenchGallerySettingsButton, WorkbenchGallerySettingsPanel, WorkbenchGalleryView, WorkbenchJourneyNavigation, WorkbenchLaneView, WorkbenchMasonryLayout, WorkbenchMetricGrid, WorkbenchRadarFilterChip, WorkbenchRadarFilterRow, WorkbenchRadarInspectorSection, WorkbenchRadarMatrix, WorkbenchRadarNavigation, WorkbenchRadarWorkspace, WorkbenchRankedList, WorkbenchRelationshipGraph, WorkbenchResizableSidebar, WorkbenchScatterPlot, WorkbenchSelectionTray, WorkbenchTableView, applyThemeTokens, browserOverlayHistoryAdapter, buildOverlayUrl, calculateHue, calculateLightness, calculateSaturation, cn2 as cn, compileThemeTokens, createAgentWorkbenchActivityModel, createAgentWorkbenchDetailsModel, createSolidColorScale, defaultMonkeysLocale, enUS, extractToastMessage, genTailwindTheme, getBaseBadgeToneClassName, getBaseButtonToneClassName, getBaseMenuItemToneClassName, getBaseNoticeToneClassName, getDataExplorerActionToneClassName, getDataExplorerMenuItemToneClassName, getOverlayPresentationClassNames, getOverlayZIndex, getRenderNodeDataAttributes, getThemeTokenCssValue, isOverlayUrlActive, markDarkColor, mergeMonkeysLocaleMessages, resolveAgentWorkbenchShellLayout, resolveBaseAppearance, resolveDataExplorerAppearance, resolveMonkeysLocale, resolveRenderNodePolicyState, resolveToastVariantForMessage, sessionRenderNodeScrollRestoration, setTailwindTheme, toast, useDarkMode, useMonkeysBaseAppearance, useMonkeysComponentAttributes, useMonkeysDataExplorerAppearance, useMonkeysDirection, useMonkeysEnvironment, useMonkeysListFooter, useMonkeysLocale, useMonkeysLocaleMessages, useMonkeysPortalOptions, useMonkeysResolvedTheme, useMonkeysStatusStates, useToastFeed, useToastOnValue, zhCN };
|
|
34512
34681
|
//# sourceMappingURL=index.mjs.map
|
|
34513
34682
|
//# sourceMappingURL=index.mjs.map
|