@inf-monkeys-tech/monkeys-design 1.0.99 → 1.0.100
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/data-explorer/index.d.mts +3 -3
- package/dist/components/data-explorer/index.d.ts +3 -3
- package/dist/components/data-explorer/index.js +296 -70
- package/dist/components/data-explorer/index.js.map +1 -1
- package/dist/components/data-explorer/index.mjs +226 -2
- package/dist/components/data-explorer/index.mjs.map +1 -1
- package/dist/components/navigation-sidebar/index.d.mts +1 -1
- package/dist/components/navigation-sidebar/index.d.ts +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +225 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +225 -2
- package/dist/index.mjs.map +1 -1
- package/dist/provider/index.d.mts +1 -1
- package/dist/provider/index.d.ts +1 -1
- package/dist/styles.css +1 -1
- package/dist/{theme-0fef4f282e64.d.mts → theme-ba08de180df9.d.ts} +4 -2
- package/dist/{theme-169054c0dfb4.d.ts → theme-bfef5a689024.d.mts} +4 -2
- package/dist/{types-e36d6f4b3ca8.d.mts → types-cc1ff9de4c79.d.mts} +47 -1
- package/dist/{types-e36d6f4b3ca8.d.ts → types-cc1ff9de4c79.d.ts} +47 -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, RefreshCw, Bot, SquarePen, MessageSquare, Clock3, CheckCircle2, XCircle, CircleStop, AlertCircle, GitFork, PencilLine, Copy, RotateCcw, FileCode2, Files, TestTube2, Ellipsis, Trash2, Pencil
|
|
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, FileText, 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';
|
|
@@ -18409,6 +18409,35 @@ var SelectSeparator = React4.forwardRef(
|
|
|
18409
18409
|
({ className, ...props }, ref) => /* @__PURE__ */ jsx(SelectPrimitive.Separator, { ref, className: cn("-mx-1 my-1 h-px bg-muted", className), ...props })
|
|
18410
18410
|
);
|
|
18411
18411
|
SelectSeparator.displayName = "SelectSeparator";
|
|
18412
|
+
var mediaPreviewFrameClassName = ({
|
|
18413
|
+
aspectRatio = "square",
|
|
18414
|
+
maxSquareHeight = true,
|
|
18415
|
+
className
|
|
18416
|
+
} = {}) => cn(
|
|
18417
|
+
"w-full overflow-hidden bg-muted",
|
|
18418
|
+
(aspectRatio === "square" || aspectRatio === "1:1") && "aspect-square",
|
|
18419
|
+
(aspectRatio === "square" || aspectRatio === "1:1") && maxSquareHeight && "max-h-[300px]",
|
|
18420
|
+
aspectRatio === "4:3" && "aspect-[4/3]",
|
|
18421
|
+
aspectRatio === "3:4" && "aspect-[3/4]",
|
|
18422
|
+
(aspectRatio === "video" || aspectRatio === "16:9") && "aspect-video",
|
|
18423
|
+
aspectRatio === "9:16" && "aspect-[9/16]",
|
|
18424
|
+
className
|
|
18425
|
+
);
|
|
18426
|
+
var MediaPreviewFrame = React4.forwardRef(
|
|
18427
|
+
({ aspectRatio = "square", maxSquareHeight = true, className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: mediaPreviewFrameClassName({ aspectRatio, maxSquareHeight, className }), ...props })
|
|
18428
|
+
);
|
|
18429
|
+
MediaPreviewFrame.displayName = "MediaPreviewFrame";
|
|
18430
|
+
var MediaPreviewImage = React4.forwardRef(
|
|
18431
|
+
({ fit = "contain", className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
18432
|
+
"img",
|
|
18433
|
+
{
|
|
18434
|
+
ref,
|
|
18435
|
+
className: cn("block size-full", fit === "contain" ? "object-contain" : "object-cover", className),
|
|
18436
|
+
...props
|
|
18437
|
+
}
|
|
18438
|
+
)
|
|
18439
|
+
);
|
|
18440
|
+
MediaPreviewImage.displayName = "MediaPreviewImage";
|
|
18412
18441
|
var Sheet = Dialog.Root;
|
|
18413
18442
|
var SheetPortal = Dialog.Portal;
|
|
18414
18443
|
var SheetOverlay = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
@@ -24771,6 +24800,116 @@ function DataExplorerImagePreview({
|
|
|
24771
24800
|
}
|
|
24772
24801
|
);
|
|
24773
24802
|
}
|
|
24803
|
+
function PreviewIcon({ kind }) {
|
|
24804
|
+
const Icon2 = kind === "image" ? Image : kind === "video" ? Video : kind === "audio" ? Music2 : FileText;
|
|
24805
|
+
return /* @__PURE__ */ jsx(Icon2, { className: "h-6 w-6", "aria-hidden": "true" });
|
|
24806
|
+
}
|
|
24807
|
+
function DataExplorerMediaPreview({
|
|
24808
|
+
src,
|
|
24809
|
+
kind = "image",
|
|
24810
|
+
alt = "Preview",
|
|
24811
|
+
title,
|
|
24812
|
+
aspectRatio = "auto",
|
|
24813
|
+
fit = "contain",
|
|
24814
|
+
controls = true,
|
|
24815
|
+
loading = false,
|
|
24816
|
+
empty = "No preview available",
|
|
24817
|
+
error = "Preview is unavailable right now.",
|
|
24818
|
+
className,
|
|
24819
|
+
classNames,
|
|
24820
|
+
onLoad,
|
|
24821
|
+
onError
|
|
24822
|
+
}) {
|
|
24823
|
+
const [hasError, setHasError] = useState(false);
|
|
24824
|
+
const resolvedSrc = typeof src === "string" ? src.trim() : "";
|
|
24825
|
+
useEffect(() => {
|
|
24826
|
+
setHasError(false);
|
|
24827
|
+
}, [resolvedSrc, kind]);
|
|
24828
|
+
const renderPlaceholder = (content, placeholderClassName) => /* @__PURE__ */ jsx(
|
|
24829
|
+
"div",
|
|
24830
|
+
{
|
|
24831
|
+
className: cn3(
|
|
24832
|
+
"flex min-h-24 flex-col items-center justify-center gap-2 bg-muted/30 p-4 text-center text-sm text-muted-foreground",
|
|
24833
|
+
classNames?.placeholder,
|
|
24834
|
+
placeholderClassName
|
|
24835
|
+
),
|
|
24836
|
+
role: loading ? "status" : "img",
|
|
24837
|
+
"aria-label": typeof content === "string" ? content : void 0,
|
|
24838
|
+
children: content
|
|
24839
|
+
}
|
|
24840
|
+
);
|
|
24841
|
+
if (loading) {
|
|
24842
|
+
return /* @__PURE__ */ jsx("div", { className: cn3("min-w-0 overflow-hidden", classNames?.root, className), "aria-busy": "true", children: /* @__PURE__ */ jsxs(
|
|
24843
|
+
"div",
|
|
24844
|
+
{
|
|
24845
|
+
className: cn3(
|
|
24846
|
+
"flex min-h-24 flex-col items-center justify-center gap-2 bg-muted/30 p-4 text-sm text-muted-foreground",
|
|
24847
|
+
classNames?.loading
|
|
24848
|
+
),
|
|
24849
|
+
children: [
|
|
24850
|
+
/* @__PURE__ */ jsx(Loader2, { className: "h-5 w-5 animate-spin", "aria-hidden": "true" }),
|
|
24851
|
+
title || "Loading preview..."
|
|
24852
|
+
]
|
|
24853
|
+
}
|
|
24854
|
+
) });
|
|
24855
|
+
}
|
|
24856
|
+
if (!resolvedSrc || hasError) {
|
|
24857
|
+
return /* @__PURE__ */ jsx("div", { className: cn3("min-w-0 overflow-hidden", classNames?.root, className), children: renderPlaceholder(
|
|
24858
|
+
/* @__PURE__ */ jsxs(Fragment, { children: [
|
|
24859
|
+
/* @__PURE__ */ jsx(PreviewIcon, { kind }),
|
|
24860
|
+
/* @__PURE__ */ jsx("span", { className: cn3("max-w-full truncate", hasError ? classNames?.error : void 0), children: hasError ? error : empty }),
|
|
24861
|
+
title ? /* @__PURE__ */ jsx("span", { className: "max-w-full truncate text-xs", children: title }) : null
|
|
24862
|
+
] })
|
|
24863
|
+
) });
|
|
24864
|
+
}
|
|
24865
|
+
const handleError = () => {
|
|
24866
|
+
setHasError(true);
|
|
24867
|
+
onError?.();
|
|
24868
|
+
};
|
|
24869
|
+
const media = kind === "image" ? /* @__PURE__ */ jsx(
|
|
24870
|
+
MediaPreviewImage,
|
|
24871
|
+
{
|
|
24872
|
+
src: resolvedSrc,
|
|
24873
|
+
alt,
|
|
24874
|
+
fit,
|
|
24875
|
+
className: classNames?.media,
|
|
24876
|
+
loading: "lazy",
|
|
24877
|
+
decoding: "async",
|
|
24878
|
+
draggable: false,
|
|
24879
|
+
onLoad,
|
|
24880
|
+
onError: handleError
|
|
24881
|
+
}
|
|
24882
|
+
) : kind === "video" ? /* @__PURE__ */ jsx(
|
|
24883
|
+
"video",
|
|
24884
|
+
{
|
|
24885
|
+
src: resolvedSrc,
|
|
24886
|
+
className: cn3("block h-auto w-full", fit === "cover" ? "object-cover" : "object-contain", classNames?.media),
|
|
24887
|
+
controls,
|
|
24888
|
+
preload: "metadata",
|
|
24889
|
+
onLoadedData: onLoad,
|
|
24890
|
+
onError: handleError
|
|
24891
|
+
}
|
|
24892
|
+
) : kind === "audio" ? /* @__PURE__ */ jsx(
|
|
24893
|
+
"audio",
|
|
24894
|
+
{
|
|
24895
|
+
src: resolvedSrc,
|
|
24896
|
+
className: cn3("w-full", classNames?.media),
|
|
24897
|
+
controls,
|
|
24898
|
+
preload: "metadata",
|
|
24899
|
+
onCanPlay: onLoad,
|
|
24900
|
+
onError: handleError
|
|
24901
|
+
}
|
|
24902
|
+
) : renderPlaceholder(
|
|
24903
|
+
/* @__PURE__ */ jsxs(Fragment, { children: [
|
|
24904
|
+
/* @__PURE__ */ jsx(PreviewIcon, { kind: "file" }),
|
|
24905
|
+
/* @__PURE__ */ jsx("span", { className: "max-w-full truncate", children: title || resolvedSrc })
|
|
24906
|
+
] })
|
|
24907
|
+
);
|
|
24908
|
+
if (kind === "image") {
|
|
24909
|
+
return /* @__PURE__ */ jsx(MediaPreviewFrame, { aspectRatio, className: cn3(classNames?.root, className), children: media });
|
|
24910
|
+
}
|
|
24911
|
+
return /* @__PURE__ */ jsx("div", { className: cn3("min-w-0 overflow-hidden", classNames?.root, className), children: media });
|
|
24912
|
+
}
|
|
24774
24913
|
function DataExplorerPage({
|
|
24775
24914
|
sidebar,
|
|
24776
24915
|
tree,
|
|
@@ -25262,6 +25401,90 @@ function DataExplorerRecordPicker({
|
|
|
25262
25401
|
] }, option.value)) }) : null
|
|
25263
25402
|
] });
|
|
25264
25403
|
}
|
|
25404
|
+
function DataExplorerUploadSurface({
|
|
25405
|
+
accept,
|
|
25406
|
+
multiple = false,
|
|
25407
|
+
disabled = false,
|
|
25408
|
+
busy = false,
|
|
25409
|
+
title = "Upload files",
|
|
25410
|
+
description,
|
|
25411
|
+
hint,
|
|
25412
|
+
busyLabel = "Uploading...",
|
|
25413
|
+
icon,
|
|
25414
|
+
className,
|
|
25415
|
+
classNames,
|
|
25416
|
+
onFilesSelected
|
|
25417
|
+
}) {
|
|
25418
|
+
const inputRef = useRef(null);
|
|
25419
|
+
const [isDragging, setIsDragging] = useState(false);
|
|
25420
|
+
const emitFiles = (files) => {
|
|
25421
|
+
if (disabled || busy) return;
|
|
25422
|
+
const selected = Array.from(files);
|
|
25423
|
+
if (selected.length > 0) onFilesSelected?.(selected);
|
|
25424
|
+
};
|
|
25425
|
+
const handleDrop = (event) => {
|
|
25426
|
+
event.preventDefault();
|
|
25427
|
+
setIsDragging(false);
|
|
25428
|
+
emitFiles(event.dataTransfer.files);
|
|
25429
|
+
};
|
|
25430
|
+
const renderText = (value, fallbackClassName, slot) => value ? /* @__PURE__ */ jsx("span", { "data-slot": slot, className: cn3(fallbackClassName), children: value }) : null;
|
|
25431
|
+
return /* @__PURE__ */ jsxs(
|
|
25432
|
+
"div",
|
|
25433
|
+
{
|
|
25434
|
+
"data-monkeys-component": "data-explorer-upload-surface",
|
|
25435
|
+
"data-state": busy ? "busy" : isDragging ? "dragging" : "idle",
|
|
25436
|
+
className: cn3(
|
|
25437
|
+
"rounded-[var(--radius)] border border-dashed border-border bg-muted/20 p-6 text-center transition-colors",
|
|
25438
|
+
isDragging && "border-primary/60 bg-primary/5",
|
|
25439
|
+
(disabled || busy) && "pointer-events-none opacity-60",
|
|
25440
|
+
classNames?.root,
|
|
25441
|
+
className
|
|
25442
|
+
),
|
|
25443
|
+
onDragEnter: (event) => {
|
|
25444
|
+
event.preventDefault();
|
|
25445
|
+
if (!disabled && !busy) setIsDragging(true);
|
|
25446
|
+
},
|
|
25447
|
+
onDragOver: (event) => event.preventDefault(),
|
|
25448
|
+
onDragLeave: (event) => {
|
|
25449
|
+
event.preventDefault();
|
|
25450
|
+
if (event.currentTarget === event.target) setIsDragging(false);
|
|
25451
|
+
},
|
|
25452
|
+
onDrop: handleDrop,
|
|
25453
|
+
children: [
|
|
25454
|
+
/* @__PURE__ */ jsx(
|
|
25455
|
+
"input",
|
|
25456
|
+
{
|
|
25457
|
+
ref: inputRef,
|
|
25458
|
+
className: "sr-only",
|
|
25459
|
+
type: "file",
|
|
25460
|
+
accept,
|
|
25461
|
+
multiple,
|
|
25462
|
+
disabled: disabled || busy,
|
|
25463
|
+
onChange: (event) => {
|
|
25464
|
+
emitFiles(event.target.files ?? []);
|
|
25465
|
+
event.target.value = "";
|
|
25466
|
+
}
|
|
25467
|
+
}
|
|
25468
|
+
),
|
|
25469
|
+
/* @__PURE__ */ jsxs(
|
|
25470
|
+
"button",
|
|
25471
|
+
{
|
|
25472
|
+
type: "button",
|
|
25473
|
+
className: cn3("mx-auto flex min-w-0 flex-col items-center gap-2 text-center", classNames?.button),
|
|
25474
|
+
disabled: disabled || busy,
|
|
25475
|
+
onClick: () => inputRef.current?.click(),
|
|
25476
|
+
children: [
|
|
25477
|
+
/* @__PURE__ */ jsx("span", { className: cn3("text-muted-foreground", classNames?.icon), children: busy ? /* @__PURE__ */ jsx("span", { className: "inline-block h-7 w-7 animate-spin rounded-full border-2 border-primary/25 border-t-primary", "aria-hidden": "true" }) : icon ?? /* @__PURE__ */ jsx(UploadCloud, { className: "h-7 w-7", "aria-hidden": "true" }) }),
|
|
25478
|
+
renderText(busy ? busyLabel : title, "text-sm font-semibold text-foreground", "title"),
|
|
25479
|
+
renderText(description, "max-w-xl text-xs leading-5 text-muted-foreground", "description"),
|
|
25480
|
+
renderText(hint, "max-w-xl text-xs leading-5 text-muted-foreground", "hint")
|
|
25481
|
+
]
|
|
25482
|
+
}
|
|
25483
|
+
)
|
|
25484
|
+
]
|
|
25485
|
+
}
|
|
25486
|
+
);
|
|
25487
|
+
}
|
|
25265
25488
|
function DefaultSearchIcon() {
|
|
25266
25489
|
return /* @__PURE__ */ jsxs(
|
|
25267
25490
|
"svg",
|
|
@@ -34239,6 +34462,6 @@ function useDarkMode() {
|
|
|
34239
34462
|
return { mode, setMode, resolvedMode };
|
|
34240
34463
|
}
|
|
34241
34464
|
|
|
34242
|
-
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, DataExplorerPage, DataExplorerRecordCard, DataExplorerRecordPicker, DataExplorerSelect, DataExplorerToolbarActions, DataExplorerToolbarShell, DataExplorerTree, DataExplorerTreeShell, 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 };
|
|
34465
|
+
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 };
|
|
34243
34466
|
//# sourceMappingURL=index.mjs.map
|
|
34244
34467
|
//# sourceMappingURL=index.mjs.map
|