@reopt-ai/opt-ui 1.7.0 → 1.8.0
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/COMPONENT_CATALOG.md +1 -1
- package/dist/docs/02-components/01-core.md +1 -1
- package/dist/docs/02-components/02-visuals.md +1 -1
- package/dist/docs/02-components/03-shells.md +1 -1
- package/dist/docs/02-components/04-surfaces.md +1 -1
- package/dist/docs/02-components/index.md +1 -1
- package/dist/{field-sidebar-CB8vjvUM.d.ts → field-sidebar-5KYVlpSs.d.ts} +12 -2
- package/dist/{field-sidebar-CB8vjvUM.d.ts.map → field-sidebar-5KYVlpSs.d.ts.map} +1 -1
- package/dist/{field-sidebar-BTZCBviA.d.cts → field-sidebar-BP0iWkoV.d.cts} +12 -2
- package/dist/{field-sidebar-BTZCBviA.d.cts.map → field-sidebar-BP0iWkoV.d.cts.map} +1 -1
- package/dist/{field-sidebar-Cs-J-5VE.js → field-sidebar-BYD_UIjG.js} +38 -11
- package/dist/{field-sidebar-Cs-J-5VE.js.map → field-sidebar-BYD_UIjG.js.map} +1 -1
- package/dist/{field-sidebar-CzIQX70-.cjs → field-sidebar-Bqfp6dgg.cjs} +37 -10
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/shells/index.cjs +1 -1
- package/dist/shells/index.d.cts +1 -1
- package/dist/shells/index.d.ts +1 -1
- package/dist/shells/index.js +1 -1
- package/package.json +2 -2
|
@@ -3058,7 +3058,9 @@ const defaultLabels$2 = {
|
|
|
3058
3058
|
filterFor: (value) => `Filter for ${value}`,
|
|
3059
3059
|
filterOut: (value) => `Filter out ${value}`,
|
|
3060
3060
|
sortAscending: "Sort ascending",
|
|
3061
|
-
sortDescending: "Sort descending"
|
|
3061
|
+
sortDescending: "Sort descending",
|
|
3062
|
+
moveLeft: (column) => `Move ${column} left`,
|
|
3063
|
+
moveRight: (column) => `Move ${column} right`
|
|
3062
3064
|
};
|
|
3063
3065
|
/** Rows rendered beyond the viewport on each side, so a fast scroll stays filled. */
|
|
3064
3066
|
const OVERSCAN = 10;
|
|
@@ -3117,7 +3119,7 @@ function columnStyle(column) {
|
|
|
3117
3119
|
* />
|
|
3118
3120
|
* ```
|
|
3119
3121
|
*/
|
|
3120
|
-
function LogTableInner({ rows, columns, getRowId, selectedId = null, onSelect, onLoadMore, hasMore = false, loadingMore = false, prepending = false, onFollowChange, isNew, sort = null, onSortChange, onCellAction, density = "normal", showHeader = true, emptyState, labels: customLabels, className }, ref) {
|
|
3122
|
+
function LogTableInner({ rows, columns, getRowId, selectedId = null, onSelect, onLoadMore, hasMore = false, loadingMore = false, prepending = false, onFollowChange, isNew, sort = null, onSortChange, onCellAction, onColumnMove, density = "normal", showHeader = true, emptyState, labels: customLabels, className }, ref) {
|
|
3121
3123
|
const labels = require_pagination._objectSpread2(require_pagination._objectSpread2({}, defaultLabels$2), customLabels);
|
|
3122
3124
|
const rowHeight = ROW_HEIGHT[density];
|
|
3123
3125
|
const scrollRef = (0, react.useRef)(null);
|
|
@@ -3249,6 +3251,7 @@ function LogTableInner({ rows, columns, getRowId, selectedId = null, onSelect, o
|
|
|
3249
3251
|
columns,
|
|
3250
3252
|
sort,
|
|
3251
3253
|
onSortChange,
|
|
3254
|
+
onColumnMove,
|
|
3252
3255
|
density,
|
|
3253
3256
|
labels
|
|
3254
3257
|
}), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
@@ -3303,15 +3306,16 @@ function LogTableInner({ rows, columns, getRowId, selectedId = null, onSelect, o
|
|
|
3303
3306
|
* widens it to its constraint and takes the column callbacks' types with it.
|
|
3304
3307
|
*/
|
|
3305
3308
|
const LogTable = (0, react.forwardRef)(LogTableInner);
|
|
3306
|
-
function LogTableHeader({ columns, sort, onSortChange, density, labels }) {
|
|
3309
|
+
function LogTableHeader({ columns, sort, onSortChange, onColumnMove, density, labels }) {
|
|
3307
3310
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("div", {
|
|
3308
3311
|
role: "row",
|
|
3309
3312
|
className: require_pagination.cn("border-border-subtle text-text-tertiary flex shrink-0 items-center gap-3 border-b px-3", DENSITY_TEXT[density]),
|
|
3310
3313
|
style: { height: ROW_HEIGHT[density] },
|
|
3311
|
-
children: columns.map((column) => {
|
|
3314
|
+
children: columns.map((column, index) => {
|
|
3312
3315
|
var _column$priority;
|
|
3313
3316
|
const active = (sort === null || sort === void 0 ? void 0 : sort.columnId) === column.id;
|
|
3314
3317
|
const sortable = column.sortable && onSortChange;
|
|
3318
|
+
const columnLabel = typeof column.header === "string" ? column.header : column.id;
|
|
3315
3319
|
const content = /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(react_jsx_runtime.Fragment, { children: [
|
|
3316
3320
|
column.marker && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
|
|
3317
3321
|
"aria-hidden": true,
|
|
@@ -3329,12 +3333,12 @@ function LogTableHeader({ columns, sort, onSortChange, density, labels }) {
|
|
|
3329
3333
|
"aria-hidden": true
|
|
3330
3334
|
}))
|
|
3331
3335
|
] });
|
|
3332
|
-
return /* @__PURE__ */ (0, react_jsx_runtime.
|
|
3336
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
3333
3337
|
role: "columnheader",
|
|
3334
3338
|
"aria-sort": active ? sort.direction === "asc" ? "ascending" : "descending" : void 0,
|
|
3335
|
-
className: require_pagination.cn("flex items-center gap-1.5", column.align === "right" && "justify-end", HIDE_BELOW[(_column$priority = column.priority) !== null && _column$priority !== void 0 ? _column$priority : "always"]),
|
|
3339
|
+
className: require_pagination.cn("group/header flex items-center gap-1.5", column.align === "right" && "justify-end", HIDE_BELOW[(_column$priority = column.priority) !== null && _column$priority !== void 0 ? _column$priority : "always"]),
|
|
3336
3340
|
style: columnStyle(column),
|
|
3337
|
-
children: sortable ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
|
|
3341
|
+
children: [sortable ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
|
|
3338
3342
|
type: "button",
|
|
3339
3343
|
className: "hover:text-text-primary flex cursor-pointer items-center gap-1.5 truncate",
|
|
3340
3344
|
title: active && sort.direction === "desc" ? labels.sortAscending : labels.sortDescending,
|
|
@@ -3343,7 +3347,30 @@ function LogTableHeader({ columns, sort, onSortChange, density, labels }) {
|
|
|
3343
3347
|
direction: active && sort.direction === "desc" ? "asc" : "desc"
|
|
3344
3348
|
}),
|
|
3345
3349
|
children: content
|
|
3346
|
-
}) : content
|
|
3350
|
+
}) : content, onColumnMove && /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("span", {
|
|
3351
|
+
className: require_pagination.cn("ml-auto flex shrink-0 items-center gap-0.5", "opacity-0 transition-opacity", "group-hover/header:opacity-100 focus-within:opacity-100"),
|
|
3352
|
+
children: [index > 0 && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
|
|
3353
|
+
type: "button",
|
|
3354
|
+
className: "hover:text-text-primary cursor-pointer",
|
|
3355
|
+
"aria-label": labels.moveLeft(columnLabel),
|
|
3356
|
+
title: labels.moveLeft(columnLabel),
|
|
3357
|
+
onClick: () => onColumnMove(column.id, "left"),
|
|
3358
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(lucide_react.ChevronLeft, {
|
|
3359
|
+
className: "size-3",
|
|
3360
|
+
"aria-hidden": true
|
|
3361
|
+
})
|
|
3362
|
+
}), index < columns.length - 1 && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
|
|
3363
|
+
type: "button",
|
|
3364
|
+
className: "hover:text-text-primary cursor-pointer",
|
|
3365
|
+
"aria-label": labels.moveRight(columnLabel),
|
|
3366
|
+
title: labels.moveRight(columnLabel),
|
|
3367
|
+
onClick: () => onColumnMove(column.id, "right"),
|
|
3368
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(lucide_react.ChevronRight, {
|
|
3369
|
+
className: "size-3",
|
|
3370
|
+
"aria-hidden": true
|
|
3371
|
+
})
|
|
3372
|
+
})]
|
|
3373
|
+
})]
|
|
3347
3374
|
}, column.id);
|
|
3348
3375
|
})
|
|
3349
3376
|
});
|
|
@@ -3411,7 +3438,7 @@ const LogTableRow = (0, react.memo)(LogTableRowImpl);
|
|
|
3411
3438
|
function CellActions({ field, value, onAction, labels }) {
|
|
3412
3439
|
const button = "cursor-pointer rounded-sm p-0.5 text-text-tertiary hover:bg-bg-muted hover:text-text-primary";
|
|
3413
3440
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("span", {
|
|
3414
|
-
className: require_pagination.cn("bg-surface/90 ml-auto
|
|
3441
|
+
className: require_pagination.cn("bg-surface/90 ml-auto flex shrink-0 items-center gap-0.5 rounded pl-1", "opacity-0 transition-opacity", "group-hover/cell:opacity-100 focus-within:opacity-100"),
|
|
3415
3442
|
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
|
|
3416
3443
|
type: "button",
|
|
3417
3444
|
className: button,
|
|
@@ -4193,7 +4220,7 @@ function FieldValues({ values, loading, total, sampledRows, onFilter, labels })
|
|
|
4193
4220
|
children: [Math.round(share * 100), "%"]
|
|
4194
4221
|
}),
|
|
4195
4222
|
onFilter && /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("span", {
|
|
4196
|
-
className: "
|
|
4223
|
+
className: require_pagination.cn("flex shrink-0 items-center gap-0.5", "opacity-0 transition-opacity", "group-hover/value:opacity-100 focus-within:opacity-100"),
|
|
4197
4224
|
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
|
|
4198
4225
|
type: "button",
|
|
4199
4226
|
className: "text-text-tertiary hover:text-text-primary cursor-pointer",
|
package/dist/index.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const require_pagination = require("./pagination-DjfxBcjX.cjs");
|
|
4
4
|
const require_shader_surface = require("./shader-surface-Fav5K9UC.cjs");
|
|
5
|
-
const require_field_sidebar = require("./field-sidebar-
|
|
5
|
+
const require_field_sidebar = require("./field-sidebar-Bqfp6dgg.cjs");
|
|
6
6
|
let react_jsx_runtime = require("react/jsx-runtime");
|
|
7
7
|
let react = require("react");
|
|
8
8
|
react = require_pagination.__toESM(react, 1);
|
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { $ as RadioProps, $i as HeadingProps, $n as ComboboxPopover, $r as SkeletonCard, $t as FormStarRating, A as PanelImperativeHandle, Ai as Breadcrumb, An as NumberInputProps, Ar as TabsVariant, At as FormError, B as Container, Bi as PrimAccordionContentProps, Bn as MenuItemCheckbox, Br as MeterProps, Bt as FormProvider, C as DrawerRoot, Ci as CardHeaderProps, Cn as ColorPicker, Cr as TabListProps, Ct as FormCheckbox, D as LogoProps, Di as EmptyState, Dn as Slider, Dr as TabStatus, Dt as FormDateRangePicker, E as Logo, Ei as CardTitleProps, En as StarRatingProps, Er as TabProps, Et as FormControl, F as ResizablePanelGroup, Fi as AccordionContent, Fn as Tooltip, Fr as CompositeItem, Ft as FormIconPickerProps, G as PageHeaderProps, Gi as ToggleGroupProps, Gn as MenuTrigger, Gr as Avatar, Gt as FormReset, H as ScrollArea, Hi as PrimAccordionTriggerProps, Hn as MenuPopover, Hr as CircularProgressProps, Ht as FormRadio, I as ResizablePanelGroupProps, Ii as AccordionItem, In as TooltipAnchor, Ir as CompositeProvider, It as FormInput, J as BlockLayout, Ji as OtpFieldProps, Jn as ComboboxEmpty, Jr as AvatarProps, Jt as FormSelectItem, K as BlockBaseProps, Ki as ToggleProps, Kn as MenubarContainer, Kr as AvatarGroup, Kt as FormRoot, L as ResizablePanelProps, Li as AccordionRoot, Ln as TooltipProvider, Lr as CompositeRow, Lt as FormLabel, M as ResizableHandle, Mi as BreadcrumbProps, Mn as ToolbarContainer, Mr as DisclosureRoot, Mt as FormGroup, N as ResizableHandleProps, Ni as StatCard, Nn as ToolbarRoot, Nr as DisclosureTrigger, Nt as FormGroupLabel, O as GroupImperativeHandle, Oi as EmptyStateAction, On as SliderProps, Or as TabsRoot, Ot as FormDateRangePickerProps, P as ResizablePanel, Pi as StatCardProps, Pn as ToolbarSeparator, Pr as Composite, Pt as FormIconPicker, Q as RadioGroupProps, Qi as HeadingLevel, Qn as ComboboxItem, Qr as SkeletonAvatar, Qt as FormSliderProps, R as Section, Ri as AccordionRootProps, Rn as MenuButtonArrow, Rr as CompositeZone, Rt as FormNumberInput, S as DrawerPanelProps, Si as CardHeader, Sn as IconPickerProps, Sr as TabList, St as StepDef, T as DrawerSize, Ti as CardTitle, Tn as StarRating, Tr as TabPanelProps, Tt as FormColorPickerProps, U as ScrollAreaProps, Ui as Toggle, Un as MenuRoot, Ur as Progress, Ut as FormRadioGroup, V as ContainerProps, Vi as PrimAccordionItemProps, Vn as MenuItemRadio, Vr as CircularProgress, Vt as FormPush, W as PageHeader, Wi as ToggleGroup, Wn as MenuSeparator, Wr as ProgressProps, Wt as FormRemove, X as Radio, Xi as SeparatorProps, Xn as ComboboxGroupLabel, Xr as TextareaProps, Xt as FormSelectProps, Y as BlockLayoutProps, Yi as Separator, Yn as ComboboxGroup, Yr as Textarea, Yt as FormSelectPopover, Z as RadioGroup, Zi as Heading, Zn as ComboboxInput, Zr as Skeleton, Zt as FormSlider, _ as VirtualListProps, _i as CardContentProps, _n as DateRangePreset, _r as SelectLabel, _t as ConditionGroup, a as SHADER_PARAM_FALLBACK, aa as TextTone, ai as Input, an as FormTagInputProps, ar as DialogDescription, at as DropdownItem, b as DrawerClose, bi as CardFooter, bn as IconDef, br as SelectTrigger, bt as StepBuilder, c as SHADER_PRESET_IDS, ci as AlertProps, cn as useFieldValue, cr as DialogFooter, ct as DropdownTrigger, d as ShaderPreset, di as Badge, dn as ComparisonMode, dr as DialogHeaderProps, dt as PopoverContentProps, ea as HeadingRole, ei as SkeletonProps, en as FormStarRatingProps, er as ComboboxRoot, et as Checkbox, f as ShaderPresetCategory, fi as BadgeProps, fn as DEFAULT_PRESETS, fr as DialogHeading, ft as PopoverRoot, g as VirtualList, gi as CardContent, gn as DateRangePickerProps, gr as SelectItem, gt as ConditionDef, h as getShaderPreset, hi as Card, hn as DateRangePicker, hr as DialogSize, ht as ConditionBuilderProps, i as SHADER_OVERLAY_PARAM_KEYS, ia as TextRole, ii as SwitchProps, in as FormTagInput, ir as DialogBodyProps, it as DropdownContent, j as PanelSize, ji as BreadcrumbItem, jn as ToolbarButton, jr as DisclosureContent, jt as FormField, k as Layout, ki as EmptyStateProps, kn as NumberInput, kr as TabsRootProps, kt as FormDescription, l as ShaderParamKey, li as Spinner, ln as useFormContext, lr as DialogFooterProps, lt as PopoverClose, m as getShaderFragment, mi as ButtonProps, mn as DateRange, mr as DialogRoot, mt as ConditionBuilder, n as ShaderSurfaceHandle, na as TextElement, ni as SkeletonText, nn as FormSwitch, nr as AlertDialogPanelProps, nt as CheckboxGroupProps, o as SHADER_PARAM_KEYS, oa as Kbd, oi as InputProps, on as FormTextarea, or as DialogDisclosure, ot as DropdownMenu, p as ShaderPresetId, pi as Button, pn as DateGranularity, pr as DialogPanel, pt as PopoverTrigger, q as createBlock, qi as OtpField, qn as MenubarRoot, qr as AvatarGroupProps, qt as FormSelect, r as ShaderSurfaceProps, ra as TextProps, ri as Switch, rn as FormSwitchProps, rr as DialogBody, rt as CheckboxProps, s as SHADER_PRESETS, sa as KbdProps, si as Alert, sn as FormTextareaProps, sr as DialogDismiss, st as DropdownSeparator, t as ShaderSurface, ta as Text, ti as SkeletonTable, tn as FormSubmit, tr as AlertDialogPanel, tt as CheckboxGroup, u as ShaderParamSpec, ui as SpinnerProps, un as useFormStore, ur as DialogHeader, ut as PopoverContent, v as Pagination, vi as CardDescription, vn as TagInput, vr as SelectPopover, vt as ConditionOperator, w as DrawerSide, wi as CardProps, wn as ColorPickerProps, wr as TabPanel, wt as FormColorPicker, x as DrawerPanel, xi as CardFooterProps, xn as IconPicker, xr as Tab, xt as StepBuilderProps, y as PaginationProps, yi as CardDescriptionProps, yn as TagInputProps, yr as SelectRoot, yt as ConditionTypeRenderer, z as SectionProps, zi as AccordionTrigger, zn as MenuItem, zr as Meter, zt as FormNumberInputProps } from "./shader-surface-DRrcLrWf.cjs";
|
|
3
3
|
import { A as StatCard$1, C as MenuDef, D as ProjectDef, E as NavItemDef, F as TimePreset, I as ToastOptions, L as ToolbarButtonDef, M as TableColumn, N as TaskDef, O as QuickActionDef, P as TeamMemberDef, S as FormFieldDef, T as NavItem, _ as ExportFormat, a as ChartMargin, b as FilterGroupDef, c as ChatMessageDef, d as CommandDef, f as DeploymentStep, g as ExportColumn, h as EnvVarDef, i as ChartDataPoint, j as TabDef, k as SelectOption, l as ChatModelDef, m as EnvGroupDef, n as BranchDef, o as ChartSeriesDef, p as DomainDef, r as ChartConfig, s as ChatConversationDef, t as ActivityDef, u as ChatStylePresetDef, v as FailureItem, w as MenuItemDef, x as FilterOption, y as FaqItem } from "./types-D0FlcYnM.cjs";
|
|
4
|
-
import { $ as FailureListProps, A as LogTable, At as SidebarNav, B as TimeRangeControlLabels, Bt as CommandPaletteTrigger, C as withFieldValue, Ct as SettingsFormProps, D as LogColumnPriority, Dt as ContentTabsProps, E as LogColumn, Et as ContentTabs, F as TimeSeriesPanelLabels, Ft as StatusSelectProps, G as WorkflowCanvasProps, H as TimeRangePreset, Ht as CommandPalette, I as TimeSeriesPanelProps, It as SearchCombobox, J as KeyValueEditorLabels, K as WorkflowCanvasStep, L as DEFAULT_TIME_PRESETS, Lt as SearchComboboxProps, M as LogTableLabels, Mt as AppMenubar, N as LogTableProps, Nt as AppMenubarProps, O as LogDensity, Ot as EditorToolbar, P as TimeSeriesPanel, Pt as StatusSelect, Q as FailureListLabels, R as RefreshSetting, Rt as DashboardGrid, S as removeClause, St as SettingsForm, T as LogCellAction, Tt as FaqAccordionProps, U as WorkflowCanvas, Ut as CommandPaletteProps, V as TimeRangeControlProps, Vt as CommandPaletteTriggerProps, W as WorkflowCanvasConnection, X as KeyValueEntry, Y as KeyValueEditorProps, Z as FailureList, _ as addClause, _t as EnvPanelProps, a as FieldValueCount, at as ToastProviderProps, b as isEmptyQuery, bt as DeploymentTimeline, c as QueryBarProps, ct as useToast, d as Query, dt as DataTableProps, et as NotificationToast, f as QueryCellAction, ft as DomainTable, g as QueryTermClause, gt as EnvPanel, h as QueryOperator, ht as BranchSelectProps, i as FieldSummary, it as ToastProvider, j as LogTableHandle, jt as SidebarNavProps, k as LogSort, kt as EditorToolbarProps, l as QueryField, lt as ColumnDef, m as QueryFieldClause, mt as BranchSelect, n as FieldSidebarLabels, nt as ToastContextValue, o as QueryBar, ot as ToastVariant, p as QueryClause, pt as DomainTableProps, q as KeyValueEditor, r as FieldSidebarProps, rt as ToastMessage, s as QueryBarLabels, st as toast, t as FieldSidebar, tt as ToastAction, u as EMPTY_QUERY, ut as DataTable, v as applyCellAction, vt as ProjectSwitcher, w as withoutField, wt as FaqAccordion, x as queryFields, xt as DeploymentTimelineProps, y as fieldValues, yt as ProjectSwitcherProps, z as TimeRangeControl, zt as DashboardGridProps } from "./field-sidebar-
|
|
4
|
+
import { $ as FailureListProps, A as LogTable, At as SidebarNav, B as TimeRangeControlLabels, Bt as CommandPaletteTrigger, C as withFieldValue, Ct as SettingsFormProps, D as LogColumnPriority, Dt as ContentTabsProps, E as LogColumn, Et as ContentTabs, F as TimeSeriesPanelLabels, Ft as StatusSelectProps, G as WorkflowCanvasProps, H as TimeRangePreset, Ht as CommandPalette, I as TimeSeriesPanelProps, It as SearchCombobox, J as KeyValueEditorLabels, K as WorkflowCanvasStep, L as DEFAULT_TIME_PRESETS, Lt as SearchComboboxProps, M as LogTableLabels, Mt as AppMenubar, N as LogTableProps, Nt as AppMenubarProps, O as LogDensity, Ot as EditorToolbar, P as TimeSeriesPanel, Pt as StatusSelect, Q as FailureListLabels, R as RefreshSetting, Rt as DashboardGrid, S as removeClause, St as SettingsForm, T as LogCellAction, Tt as FaqAccordionProps, U as WorkflowCanvas, Ut as CommandPaletteProps, V as TimeRangeControlProps, Vt as CommandPaletteTriggerProps, W as WorkflowCanvasConnection, X as KeyValueEntry, Y as KeyValueEditorProps, Z as FailureList, _ as addClause, _t as EnvPanelProps, a as FieldValueCount, at as ToastProviderProps, b as isEmptyQuery, bt as DeploymentTimeline, c as QueryBarProps, ct as useToast, d as Query, dt as DataTableProps, et as NotificationToast, f as QueryCellAction, ft as DomainTable, g as QueryTermClause, gt as EnvPanel, h as QueryOperator, ht as BranchSelectProps, i as FieldSummary, it as ToastProvider, j as LogTableHandle, jt as SidebarNavProps, k as LogSort, kt as EditorToolbarProps, l as QueryField, lt as ColumnDef, m as QueryFieldClause, mt as BranchSelect, n as FieldSidebarLabels, nt as ToastContextValue, o as QueryBar, ot as ToastVariant, p as QueryClause, pt as DomainTableProps, q as KeyValueEditor, r as FieldSidebarProps, rt as ToastMessage, s as QueryBarLabels, st as toast, t as FieldSidebar, tt as ToastAction, u as EMPTY_QUERY, ut as DataTable, v as applyCellAction, vt as ProjectSwitcher, w as withoutField, wt as FaqAccordion, x as queryFields, xt as DeploymentTimelineProps, y as fieldValues, yt as ProjectSwitcherProps, z as TimeRangeControl, zt as DashboardGridProps } from "./field-sidebar-BP0iWkoV.cjs";
|
|
5
5
|
import * as React$1 from "react";
|
|
6
6
|
import { Component, ComponentPropsWithoutRef, ErrorInfo, ReactNode } from "react";
|
|
7
7
|
import { CommandEmptyProps, CommandGroupProps, CommandInputProps as CommandInputProps$1, CommandItemProps, CommandListProps, CommandRootProps, CommandSeparatorProps, FormErrors, FormErrors as FormErrors$1, FormStoreInstance, FormStoreOptions, ValidateOn } from "@reopt-ai/opt-ui-primitives";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { $ as RadioProps, $i as HeadingProps, $n as ComboboxPopover, $r as SkeletonCard, $t as FormStarRating, A as PanelImperativeHandle, Ai as Breadcrumb, An as NumberInputProps, Ar as TabsVariant, At as FormError, B as Container, Bi as PrimAccordionContentProps, Bn as MenuItemCheckbox, Br as MeterProps, Bt as FormProvider, C as DrawerRoot, Ci as CardHeaderProps, Cn as ColorPicker, Cr as TabListProps, Ct as FormCheckbox, D as LogoProps, Di as EmptyState, Dn as Slider, Dr as TabStatus, Dt as FormDateRangePicker, E as Logo, Ei as CardTitleProps, En as StarRatingProps, Er as TabProps, Et as FormControl, F as ResizablePanelGroup, Fi as AccordionContent, Fn as Tooltip, Fr as CompositeItem, Ft as FormIconPickerProps, G as PageHeaderProps, Gi as ToggleGroupProps, Gn as MenuTrigger, Gr as Avatar, Gt as FormReset, H as ScrollArea, Hi as PrimAccordionTriggerProps, Hn as MenuPopover, Hr as CircularProgressProps, Ht as FormRadio, I as ResizablePanelGroupProps, Ii as AccordionItem, In as TooltipAnchor, Ir as CompositeProvider, It as FormInput, J as BlockLayout, Ji as OtpFieldProps, Jn as ComboboxEmpty, Jr as AvatarProps, Jt as FormSelectItem, K as BlockBaseProps, Ki as ToggleProps, Kn as MenubarContainer, Kr as AvatarGroup, Kt as FormRoot, L as ResizablePanelProps, Li as AccordionRoot, Ln as TooltipProvider, Lr as CompositeRow, Lt as FormLabel, M as ResizableHandle, Mi as BreadcrumbProps, Mn as ToolbarContainer, Mr as DisclosureRoot, Mt as FormGroup, N as ResizableHandleProps, Ni as StatCard, Nn as ToolbarRoot, Nr as DisclosureTrigger, Nt as FormGroupLabel, O as GroupImperativeHandle, Oi as EmptyStateAction, On as SliderProps, Or as TabsRoot, Ot as FormDateRangePickerProps, P as ResizablePanel, Pi as StatCardProps, Pn as ToolbarSeparator, Pr as Composite, Pt as FormIconPicker, Q as RadioGroupProps, Qi as HeadingLevel, Qn as ComboboxItem, Qr as SkeletonAvatar, Qt as FormSliderProps, R as Section, Ri as AccordionRootProps, Rn as MenuButtonArrow, Rr as CompositeZone, Rt as FormNumberInput, S as DrawerPanelProps, Si as CardHeader, Sn as IconPickerProps, Sr as TabList, St as StepDef, T as DrawerSize, Ti as CardTitle, Tn as StarRating, Tr as TabPanelProps, Tt as FormColorPickerProps, U as ScrollAreaProps, Ui as Toggle, Un as MenuRoot, Ur as Progress, Ut as FormRadioGroup, V as ContainerProps, Vi as PrimAccordionItemProps, Vn as MenuItemRadio, Vr as CircularProgress, Vt as FormPush, W as PageHeader, Wi as ToggleGroup, Wn as MenuSeparator, Wr as ProgressProps, Wt as FormRemove, X as Radio, Xi as SeparatorProps, Xn as ComboboxGroupLabel, Xr as TextareaProps, Xt as FormSelectProps, Y as BlockLayoutProps, Yi as Separator, Yn as ComboboxGroup, Yr as Textarea, Yt as FormSelectPopover, Z as RadioGroup, Zi as Heading, Zn as ComboboxInput, Zr as Skeleton, Zt as FormSlider, _ as VirtualListProps, _i as CardContentProps, _n as DateRangePreset, _r as SelectLabel, _t as ConditionGroup, a as SHADER_PARAM_FALLBACK, aa as TextTone, ai as Input, an as FormTagInputProps, ar as DialogDescription, at as DropdownItem, b as DrawerClose, bi as CardFooter, bn as IconDef, br as SelectTrigger, bt as StepBuilder, c as SHADER_PRESET_IDS, ci as AlertProps, cn as useFieldValue, cr as DialogFooter, ct as DropdownTrigger, d as ShaderPreset, di as Badge, dn as ComparisonMode, dr as DialogHeaderProps, dt as PopoverContentProps, ea as HeadingRole, ei as SkeletonProps, en as FormStarRatingProps, er as ComboboxRoot, et as Checkbox, f as ShaderPresetCategory, fi as BadgeProps, fn as DEFAULT_PRESETS, fr as DialogHeading, ft as PopoverRoot, g as VirtualList, gi as CardContent, gn as DateRangePickerProps, gr as SelectItem, gt as ConditionDef, h as getShaderPreset, hi as Card, hn as DateRangePicker, hr as DialogSize, ht as ConditionBuilderProps, i as SHADER_OVERLAY_PARAM_KEYS, ia as TextRole, ii as SwitchProps, in as FormTagInput, ir as DialogBodyProps, it as DropdownContent, j as PanelSize, ji as BreadcrumbItem, jn as ToolbarButton, jr as DisclosureContent, jt as FormField, k as Layout, ki as EmptyStateProps, kn as NumberInput, kr as TabsRootProps, kt as FormDescription, l as ShaderParamKey, li as Spinner, ln as useFormContext, lr as DialogFooterProps, lt as PopoverClose, m as getShaderFragment, mi as ButtonProps, mn as DateRange, mr as DialogRoot, mt as ConditionBuilder, n as ShaderSurfaceHandle, na as TextElement, ni as SkeletonText, nn as FormSwitch, nr as AlertDialogPanelProps, nt as CheckboxGroupProps, o as SHADER_PARAM_KEYS, oa as Kbd, oi as InputProps, on as FormTextarea, or as DialogDisclosure, ot as DropdownMenu, p as ShaderPresetId, pi as Button, pn as DateGranularity, pr as DialogPanel, pt as PopoverTrigger, q as createBlock, qi as OtpField, qn as MenubarRoot, qr as AvatarGroupProps, qt as FormSelect, r as ShaderSurfaceProps, ra as TextProps, ri as Switch, rn as FormSwitchProps, rr as DialogBody, rt as CheckboxProps, s as SHADER_PRESETS, sa as KbdProps, si as Alert, sn as FormTextareaProps, sr as DialogDismiss, st as DropdownSeparator, t as ShaderSurface, ta as Text, ti as SkeletonTable, tn as FormSubmit, tr as AlertDialogPanel, tt as CheckboxGroup, u as ShaderParamSpec, ui as SpinnerProps, un as useFormStore, ur as DialogHeader, ut as PopoverContent, v as Pagination, vi as CardDescription, vn as TagInput, vr as SelectPopover, vt as ConditionOperator, w as DrawerSide, wi as CardProps, wn as ColorPickerProps, wr as TabPanel, wt as FormColorPicker, x as DrawerPanel, xi as CardFooterProps, xn as IconPicker, xr as Tab, xt as StepBuilderProps, y as PaginationProps, yi as CardDescriptionProps, yn as TagInputProps, yr as SelectRoot, yt as ConditionTypeRenderer, z as SectionProps, zi as AccordionTrigger, zn as MenuItem, zr as Meter, zt as FormNumberInputProps } from "./shader-surface-BfTP9c1Q.js";
|
|
3
3
|
import { A as StatCard$1, C as MenuDef, D as ProjectDef, E as NavItemDef, F as TimePreset, I as ToastOptions, L as ToolbarButtonDef, M as TableColumn, N as TaskDef, O as QuickActionDef, P as TeamMemberDef, S as FormFieldDef, T as NavItem, _ as ExportFormat, a as ChartMargin, b as FilterGroupDef, c as ChatMessageDef, d as CommandDef, f as DeploymentStep, g as ExportColumn, h as EnvVarDef, i as ChartDataPoint, j as TabDef, k as SelectOption, l as ChatModelDef, m as EnvGroupDef, n as BranchDef, o as ChartSeriesDef, p as DomainDef, r as ChartConfig, s as ChatConversationDef, t as ActivityDef, u as ChatStylePresetDef, v as FailureItem, w as MenuItemDef, x as FilterOption, y as FaqItem } from "./types-D0FlcYnM.js";
|
|
4
|
-
import { $ as FailureListProps, A as LogTable, At as SidebarNav, B as TimeRangeControlLabels, Bt as CommandPaletteTrigger, C as withFieldValue, Ct as SettingsFormProps, D as LogColumnPriority, Dt as ContentTabsProps, E as LogColumn, Et as ContentTabs, F as TimeSeriesPanelLabels, Ft as StatusSelectProps, G as WorkflowCanvasProps, H as TimeRangePreset, Ht as CommandPalette, I as TimeSeriesPanelProps, It as SearchCombobox, J as KeyValueEditorLabels, K as WorkflowCanvasStep, L as DEFAULT_TIME_PRESETS, Lt as SearchComboboxProps, M as LogTableLabels, Mt as AppMenubar, N as LogTableProps, Nt as AppMenubarProps, O as LogDensity, Ot as EditorToolbar, P as TimeSeriesPanel, Pt as StatusSelect, Q as FailureListLabels, R as RefreshSetting, Rt as DashboardGrid, S as removeClause, St as SettingsForm, T as LogCellAction, Tt as FaqAccordionProps, U as WorkflowCanvas, Ut as CommandPaletteProps, V as TimeRangeControlProps, Vt as CommandPaletteTriggerProps, W as WorkflowCanvasConnection, X as KeyValueEntry, Y as KeyValueEditorProps, Z as FailureList, _ as addClause, _t as EnvPanelProps, a as FieldValueCount, at as ToastProviderProps, b as isEmptyQuery, bt as DeploymentTimeline, c as QueryBarProps, ct as useToast, d as Query, dt as DataTableProps, et as NotificationToast, f as QueryCellAction, ft as DomainTable, g as QueryTermClause, gt as EnvPanel, h as QueryOperator, ht as BranchSelectProps, i as FieldSummary, it as ToastProvider, j as LogTableHandle, jt as SidebarNavProps, k as LogSort, kt as EditorToolbarProps, l as QueryField, lt as ColumnDef, m as QueryFieldClause, mt as BranchSelect, n as FieldSidebarLabels, nt as ToastContextValue, o as QueryBar, ot as ToastVariant, p as QueryClause, pt as DomainTableProps, q as KeyValueEditor, r as FieldSidebarProps, rt as ToastMessage, s as QueryBarLabels, st as toast, t as FieldSidebar, tt as ToastAction, u as EMPTY_QUERY, ut as DataTable, v as applyCellAction, vt as ProjectSwitcher, w as withoutField, wt as FaqAccordion, x as queryFields, xt as DeploymentTimelineProps, y as fieldValues, yt as ProjectSwitcherProps, z as TimeRangeControl, zt as DashboardGridProps } from "./field-sidebar-
|
|
4
|
+
import { $ as FailureListProps, A as LogTable, At as SidebarNav, B as TimeRangeControlLabels, Bt as CommandPaletteTrigger, C as withFieldValue, Ct as SettingsFormProps, D as LogColumnPriority, Dt as ContentTabsProps, E as LogColumn, Et as ContentTabs, F as TimeSeriesPanelLabels, Ft as StatusSelectProps, G as WorkflowCanvasProps, H as TimeRangePreset, Ht as CommandPalette, I as TimeSeriesPanelProps, It as SearchCombobox, J as KeyValueEditorLabels, K as WorkflowCanvasStep, L as DEFAULT_TIME_PRESETS, Lt as SearchComboboxProps, M as LogTableLabels, Mt as AppMenubar, N as LogTableProps, Nt as AppMenubarProps, O as LogDensity, Ot as EditorToolbar, P as TimeSeriesPanel, Pt as StatusSelect, Q as FailureListLabels, R as RefreshSetting, Rt as DashboardGrid, S as removeClause, St as SettingsForm, T as LogCellAction, Tt as FaqAccordionProps, U as WorkflowCanvas, Ut as CommandPaletteProps, V as TimeRangeControlProps, Vt as CommandPaletteTriggerProps, W as WorkflowCanvasConnection, X as KeyValueEntry, Y as KeyValueEditorProps, Z as FailureList, _ as addClause, _t as EnvPanelProps, a as FieldValueCount, at as ToastProviderProps, b as isEmptyQuery, bt as DeploymentTimeline, c as QueryBarProps, ct as useToast, d as Query, dt as DataTableProps, et as NotificationToast, f as QueryCellAction, ft as DomainTable, g as QueryTermClause, gt as EnvPanel, h as QueryOperator, ht as BranchSelectProps, i as FieldSummary, it as ToastProvider, j as LogTableHandle, jt as SidebarNavProps, k as LogSort, kt as EditorToolbarProps, l as QueryField, lt as ColumnDef, m as QueryFieldClause, mt as BranchSelect, n as FieldSidebarLabels, nt as ToastContextValue, o as QueryBar, ot as ToastVariant, p as QueryClause, pt as DomainTableProps, q as KeyValueEditor, r as FieldSidebarProps, rt as ToastMessage, s as QueryBarLabels, st as toast, t as FieldSidebar, tt as ToastAction, u as EMPTY_QUERY, ut as DataTable, v as applyCellAction, vt as ProjectSwitcher, w as withoutField, wt as FaqAccordion, x as queryFields, xt as DeploymentTimelineProps, y as fieldValues, yt as ProjectSwitcherProps, z as TimeRangeControl, zt as DashboardGridProps } from "./field-sidebar-5KYVlpSs.js";
|
|
5
5
|
import { ClassValue } from "clsx";
|
|
6
6
|
import * as React$1 from "react";
|
|
7
7
|
import { Component, ComponentPropsWithoutRef, ErrorInfo, ReactNode } from "react";
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { $ as TooltipAnchor, $t as koBreadcrumbLabels, A as FormSwitch, At as SelectPopover, B as getIconRegistryEntry, Bn as _objectSpread2, Bt as Composite, C as FormRoot, Cn as OPT_FOCUS, Ct as DialogFooter, D as FormSlider, Dt as DialogRoot, E as FormSelectPopover, En as OPT_INPUT, Et as DialogPanel, F as useFormStore, Ft as TabPanel, G as PopoverTrigger, Gt as StarRating, H as PopoverClose, Hn as Kbd, Ht as CompositeProvider, I as DEFAULT_PRESETS, In as OPT_TEXT_PRIMARY, It as TabsRoot, J as ToolbarButton, Jt as Alert, K as Slider, Kt as Input, L as DateRangePicker, Ln as OPT_TEXT_SECONDARY, Lt as DisclosureContent, M as FormTextarea, Mn as OPT_TD, Mt as SelectTrigger, N as useFieldValue, Nt as Tab, O as FormStarRating, Ot as SelectItem, P as useFormContext, Pt as TabList, Q as Tooltip, Qt as Button, R as TagInput, Rn as OPT_TEXT_TERTIARY, Rt as DisclosureRoot, S as FormReset, Sn as OPT_DOT_YELLOW, St as DialogDismiss, T as FormSelectItem, Tn as OPT_HOVER_ITEM, Tt as DialogHeading, U as PopoverContent, Un as cn, Ut as CompositeRow, V as ColorPicker, Vt as CompositeItem, W as PopoverRoot, Wt as CompositeZone, X as ToolbarRoot, Xt as Badge, Y as ToolbarContainer, Yt as Spinner, Z as ToolbarSeparator, Zt as EmptyState, _ as FormProvider, _t as ComboboxRoot, a as FormColorPicker, at as MenuPopover, b as FormRadioGroup, bn as OPT_DOT_GREEN, bt as DialogDescription, c as FormDescription, ct as MenuTrigger, d as FormGroup, dn as OPT_BADGE_GREEN, dt as ComboboxEmpty, en as koComboboxLabels, et as TooltipProvider, f as FormGroupLabel, fn as OPT_BADGE_NEUTRAL, ft as ComboboxGroup, g as FormNumberInput, gt as ComboboxPopover, h as FormLabel, hn as OPT_BORDER, ht as ComboboxItem, i as FormCheckbox, it as MenuItemRadio, j as FormTagInput, jt as SelectRoot, k as FormSubmit, kt as SelectLabel, l as FormError, lt as MenubarContainer, m as FormInput, mn as OPT_BADGE_YELLOW, mt as ComboboxInput, n as Checkbox, nn as StatCard, nt as MenuItem, o as FormControl, ot as MenuRoot, p as FormIconPicker, pn as OPT_BADGE_RED, pt as ComboboxGroupLabel, q as NumberInput, qt as useInputId, r as CheckboxGroup, rn as useControlledState, rt as MenuItemCheckbox, s as FormDateRangePicker, st as MenuSeparator, t as Pagination, tn as koStarRatingLabels, tt as MenuButtonArrow, u as FormField, un as OPT_BADGE_BLUE, ut as MenubarRoot, v as FormPush, vt as AlertDialogPanel, w as FormSelect, wn as OPT_FOCUS_VISIBLE, wt as DialogHeader, x as FormRemove, xn as OPT_DOT_RED, xt as DialogDisclosure, y as FormRadio, yn as OPT_DOT_GRAY, yt as DialogBody, z as IconPicker, zn as OPT_TH, zt as DisclosureTrigger } from "./pagination-DWbvACuN.js";
|
|
3
3
|
import { $ as CardHeader, A as DropdownTrigger, B as Avatar, C as LoadingOverlay, D as DropdownItem, E as DropdownContent, F as formatOptTime, G as SkeletonCard, H as Textarea, I as StepBuilder, J as Switch, K as SkeletonTable, L as Meter, M as formatOptDateTime, N as formatOptNumber, O as DropdownMenu, P as formatOptShortDate, Q as CardFooter, R as CircularProgress, S as BlockLayout, T as RadioGroup, U as Skeleton, V as AvatarGroup, W as SkeletonAvatar, X as CardContent, Y as Card, Z as CardDescription, _ as Section, a as SHADER_PRESETS, at as AccordionTrigger, b as PageHeader, c as getShaderPreset, ct as OtpField, d as DrawerPanel, dt as Text, et as CardTitle, f as DrawerRoot, g as ResizablePanelGroup, h as ResizablePanel, i as SHADER_PARAM_KEYS, it as AccordionRoot, j as ConditionBuilder, k as DropdownSeparator, l as VirtualList, lt as Separator, m as ResizableHandle, n as SHADER_OVERLAY_PARAM_KEYS, nt as AccordionContent, o as SHADER_PRESET_IDS, ot as Toggle, p as Logo, q as SkeletonText, r as SHADER_PARAM_FALLBACK, rt as AccordionItem, s as getShaderFragment, st as ToggleGroup, t as ShaderSurface, tt as Breadcrumb, u as DrawerClose, ut as Heading, v as Container, w as Radio, x as createBlock, y as ScrollArea, z as Progress } from "./shader-surface-BUPZ0P-n.js";
|
|
4
|
-
import { $ as CommandList, A as DataTable, B as SidebarNav, C as WorkflowCanvas, D as ToastProvider, E as NotificationToast, F as DeploymentTimeline, G as CommandPaletteTrigger, H as StatusSelect, I as SettingsForm, J as CommandDialog, K as CommandPalette, L as FaqAccordion, M as BranchSelect, N as EnvPanel, O as toast, P as ProjectSwitcher, Q as CommandItem, R as ContentTabs, S as useAutoRefresh, T as FailureList, U as SearchCombobox, V as AppMenubar, W as DashboardGrid, X as CommandGroup, Y as CommandEmpty, Z as CommandInput, _ as withoutField, a as formatQuery, b as DEFAULT_TIME_PRESETS, c as parseQueryWithDiagnostics, d as applyCellAction, et as CommandSeparator, f as fieldValues, g as withFieldValue, h as removeClause, i as formatClause, j as DomainTable, k as useToast, l as EMPTY_QUERY, m as queryFields, n as QueryBar, o as quoteValue, p as isEmptyQuery, q as Command, r as describeClause, s as parseQuery, t as FieldSidebar, tt as CommandShortcut, u as addClause, v as LogTable, w as KeyValueEditor, x as TimeRangeControl, y as TimeSeriesPanel, z as EditorToolbar } from "./field-sidebar-
|
|
4
|
+
import { $ as CommandList, A as DataTable, B as SidebarNav, C as WorkflowCanvas, D as ToastProvider, E as NotificationToast, F as DeploymentTimeline, G as CommandPaletteTrigger, H as StatusSelect, I as SettingsForm, J as CommandDialog, K as CommandPalette, L as FaqAccordion, M as BranchSelect, N as EnvPanel, O as toast, P as ProjectSwitcher, Q as CommandItem, R as ContentTabs, S as useAutoRefresh, T as FailureList, U as SearchCombobox, V as AppMenubar, W as DashboardGrid, X as CommandGroup, Y as CommandEmpty, Z as CommandInput, _ as withoutField, a as formatQuery, b as DEFAULT_TIME_PRESETS, c as parseQueryWithDiagnostics, d as applyCellAction, et as CommandSeparator, f as fieldValues, g as withFieldValue, h as removeClause, i as formatClause, j as DomainTable, k as useToast, l as EMPTY_QUERY, m as queryFields, n as QueryBar, o as quoteValue, p as isEmptyQuery, q as Command, r as describeClause, s as parseQuery, t as FieldSidebar, tt as CommandShortcut, u as addClause, v as LogTable, w as KeyValueEditor, x as TimeRangeControl, y as TimeSeriesPanel, z as EditorToolbar } from "./field-sidebar-BYD_UIjG.js";
|
|
5
5
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
6
6
|
import * as React from "react";
|
|
7
7
|
import { Component, createContext, useCallback, useContext, useEffect, useId, useLayoutEffect, useMemo, useRef, useState, useSyncExternalStore } from "react";
|
package/dist/shells/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
"use client";
|
|
3
3
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
4
|
-
const require_field_sidebar = require("../field-sidebar-
|
|
4
|
+
const require_field_sidebar = require("../field-sidebar-Bqfp6dgg.cjs");
|
|
5
5
|
let _reopt_ai_opt_charts = require("@reopt-ai/opt-charts");
|
|
6
6
|
exports.AppMenubar = require_field_sidebar.AppMenubar;
|
|
7
7
|
exports.BranchSelect = require_field_sidebar.BranchSelect;
|
package/dist/shells/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
import { $ as FailureListProps, A as LogTable, At as SidebarNav, B as TimeRangeControlLabels, Bt as CommandPaletteTrigger, Ct as SettingsFormProps, D as LogColumnPriority, Dt as ContentTabsProps, E as LogColumn, Et as ContentTabs, F as TimeSeriesPanelLabels, Ft as StatusSelectProps, G as WorkflowCanvasProps, H as TimeRangePreset, Ht as CommandPalette, I as TimeSeriesPanelProps, It as SearchCombobox, J as KeyValueEditorLabels, K as WorkflowCanvasStep, L as DEFAULT_TIME_PRESETS, Lt as SearchComboboxProps, M as LogTableLabels, Mt as AppMenubar, N as LogTableProps, Nt as AppMenubarProps, O as LogDensity, Ot as EditorToolbar, P as TimeSeriesPanel, Pt as StatusSelect, Q as FailureListLabels, R as RefreshSetting, Rt as DashboardGrid, St as SettingsForm, T as LogCellAction, Tt as FaqAccordionProps, U as WorkflowCanvas, Ut as CommandPaletteProps, V as TimeRangeControlProps, Vt as CommandPaletteTriggerProps, W as WorkflowCanvasConnection, X as KeyValueEntry, Y as KeyValueEditorProps, Z as FailureList, _t as EnvPanelProps, a as FieldValueCount, at as ToastProviderProps, bt as DeploymentTimeline, c as QueryBarProps, ct as useToast, dt as DataTableProps, et as NotificationToast, ft as DomainTable, gt as EnvPanel, ht as BranchSelectProps, i as FieldSummary, it as ToastProvider, j as LogTableHandle, jt as SidebarNavProps, k as LogSort, kt as EditorToolbarProps, l as QueryField, lt as ColumnDef, mt as BranchSelect, n as FieldSidebarLabels, nt as ToastContextValue, o as QueryBar, pt as DomainTableProps, q as KeyValueEditor, r as FieldSidebarProps, rt as ToastMessage, s as QueryBarLabels, t as FieldSidebar, ut as DataTable, vt as ProjectSwitcher, wt as FaqAccordion, xt as DeploymentTimelineProps, yt as ProjectSwitcherProps, z as TimeRangeControl, zt as DashboardGridProps } from "../field-sidebar-
|
|
2
|
+
import { $ as FailureListProps, A as LogTable, At as SidebarNav, B as TimeRangeControlLabels, Bt as CommandPaletteTrigger, Ct as SettingsFormProps, D as LogColumnPriority, Dt as ContentTabsProps, E as LogColumn, Et as ContentTabs, F as TimeSeriesPanelLabels, Ft as StatusSelectProps, G as WorkflowCanvasProps, H as TimeRangePreset, Ht as CommandPalette, I as TimeSeriesPanelProps, It as SearchCombobox, J as KeyValueEditorLabels, K as WorkflowCanvasStep, L as DEFAULT_TIME_PRESETS, Lt as SearchComboboxProps, M as LogTableLabels, Mt as AppMenubar, N as LogTableProps, Nt as AppMenubarProps, O as LogDensity, Ot as EditorToolbar, P as TimeSeriesPanel, Pt as StatusSelect, Q as FailureListLabels, R as RefreshSetting, Rt as DashboardGrid, St as SettingsForm, T as LogCellAction, Tt as FaqAccordionProps, U as WorkflowCanvas, Ut as CommandPaletteProps, V as TimeRangeControlProps, Vt as CommandPaletteTriggerProps, W as WorkflowCanvasConnection, X as KeyValueEntry, Y as KeyValueEditorProps, Z as FailureList, _t as EnvPanelProps, a as FieldValueCount, at as ToastProviderProps, bt as DeploymentTimeline, c as QueryBarProps, ct as useToast, dt as DataTableProps, et as NotificationToast, ft as DomainTable, gt as EnvPanel, ht as BranchSelectProps, i as FieldSummary, it as ToastProvider, j as LogTableHandle, jt as SidebarNavProps, k as LogSort, kt as EditorToolbarProps, l as QueryField, lt as ColumnDef, mt as BranchSelect, n as FieldSidebarLabels, nt as ToastContextValue, o as QueryBar, pt as DomainTableProps, q as KeyValueEditor, r as FieldSidebarProps, rt as ToastMessage, s as QueryBarLabels, t as FieldSidebar, ut as DataTable, vt as ProjectSwitcher, wt as FaqAccordion, xt as DeploymentTimelineProps, yt as ProjectSwitcherProps, z as TimeRangeControl, zt as DashboardGridProps } from "../field-sidebar-BP0iWkoV.cjs";
|
|
3
3
|
import { EventSparkline, EventSparklineLabels, EventSparklineProps, MetricsCard, MetricsCardProps, ReportWidget, ReportWidgetConfig, ReportWidgetLabels, ReportWidgetProps, ReportWidgetType, TrendChart, TrendChartProps } from "@reopt-ai/opt-charts";
|
|
4
4
|
export { AppMenubar, type AppMenubarProps, BranchSelect, type BranchSelectProps, type ColumnDef, CommandPalette, type CommandPaletteProps, CommandPaletteTrigger, type CommandPaletteTriggerProps, ContentTabs, type ContentTabsProps, DEFAULT_TIME_PRESETS, DashboardGrid, type DashboardGridProps, DataTable, type DataTableProps, DeploymentTimeline, type DeploymentTimelineProps, DomainTable, type DomainTableProps, EditorToolbar, type EditorToolbarProps, EnvPanel, type EnvPanelProps, EventSparkline, type EventSparklineLabels, type EventSparklineProps, FailureList, type FailureListLabels, type FailureListProps, FaqAccordion, type FaqAccordionProps, FieldSidebar, type FieldSidebarLabels, type FieldSidebarProps, type FieldSummary, type FieldValueCount, KeyValueEditor, type KeyValueEditorLabels, type KeyValueEditorProps, type KeyValueEntry, type LogCellAction, type LogColumn, type LogColumnPriority, type LogDensity, type LogSort, LogTable, type LogTableHandle, type LogTableLabels, type LogTableProps, MetricsCard, type MetricsCardProps, NotificationToast, ProjectSwitcher, type ProjectSwitcherProps, QueryBar, type QueryBarLabels, type QueryBarProps, type QueryField, type RefreshSetting, ReportWidget, type ReportWidgetConfig, type ReportWidgetLabels, type ReportWidgetProps, type ReportWidgetType, SearchCombobox, type SearchComboboxProps, SettingsForm, type SettingsFormProps, SidebarNav, type SidebarNavProps, StatusSelect, type StatusSelectProps, TimeRangeControl, type TimeRangeControlLabels, type TimeRangeControlProps, type TimeRangePreset, TimeSeriesPanel, type TimeSeriesPanelLabels, type TimeSeriesPanelProps, type ToastContextValue, type ToastMessage, ToastProvider, type ToastProviderProps, TrendChart, type TrendChartProps, WorkflowCanvas, type WorkflowCanvasConnection, type WorkflowCanvasProps, type WorkflowCanvasStep, useToast };
|
package/dist/shells/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
import { $ as FailureListProps, A as LogTable, At as SidebarNav, B as TimeRangeControlLabels, Bt as CommandPaletteTrigger, Ct as SettingsFormProps, D as LogColumnPriority, Dt as ContentTabsProps, E as LogColumn, Et as ContentTabs, F as TimeSeriesPanelLabels, Ft as StatusSelectProps, G as WorkflowCanvasProps, H as TimeRangePreset, Ht as CommandPalette, I as TimeSeriesPanelProps, It as SearchCombobox, J as KeyValueEditorLabels, K as WorkflowCanvasStep, L as DEFAULT_TIME_PRESETS, Lt as SearchComboboxProps, M as LogTableLabels, Mt as AppMenubar, N as LogTableProps, Nt as AppMenubarProps, O as LogDensity, Ot as EditorToolbar, P as TimeSeriesPanel, Pt as StatusSelect, Q as FailureListLabels, R as RefreshSetting, Rt as DashboardGrid, St as SettingsForm, T as LogCellAction, Tt as FaqAccordionProps, U as WorkflowCanvas, Ut as CommandPaletteProps, V as TimeRangeControlProps, Vt as CommandPaletteTriggerProps, W as WorkflowCanvasConnection, X as KeyValueEntry, Y as KeyValueEditorProps, Z as FailureList, _t as EnvPanelProps, a as FieldValueCount, at as ToastProviderProps, bt as DeploymentTimeline, c as QueryBarProps, ct as useToast, dt as DataTableProps, et as NotificationToast, ft as DomainTable, gt as EnvPanel, ht as BranchSelectProps, i as FieldSummary, it as ToastProvider, j as LogTableHandle, jt as SidebarNavProps, k as LogSort, kt as EditorToolbarProps, l as QueryField, lt as ColumnDef, mt as BranchSelect, n as FieldSidebarLabels, nt as ToastContextValue, o as QueryBar, pt as DomainTableProps, q as KeyValueEditor, r as FieldSidebarProps, rt as ToastMessage, s as QueryBarLabels, t as FieldSidebar, ut as DataTable, vt as ProjectSwitcher, wt as FaqAccordion, xt as DeploymentTimelineProps, yt as ProjectSwitcherProps, z as TimeRangeControl, zt as DashboardGridProps } from "../field-sidebar-
|
|
2
|
+
import { $ as FailureListProps, A as LogTable, At as SidebarNav, B as TimeRangeControlLabels, Bt as CommandPaletteTrigger, Ct as SettingsFormProps, D as LogColumnPriority, Dt as ContentTabsProps, E as LogColumn, Et as ContentTabs, F as TimeSeriesPanelLabels, Ft as StatusSelectProps, G as WorkflowCanvasProps, H as TimeRangePreset, Ht as CommandPalette, I as TimeSeriesPanelProps, It as SearchCombobox, J as KeyValueEditorLabels, K as WorkflowCanvasStep, L as DEFAULT_TIME_PRESETS, Lt as SearchComboboxProps, M as LogTableLabels, Mt as AppMenubar, N as LogTableProps, Nt as AppMenubarProps, O as LogDensity, Ot as EditorToolbar, P as TimeSeriesPanel, Pt as StatusSelect, Q as FailureListLabels, R as RefreshSetting, Rt as DashboardGrid, St as SettingsForm, T as LogCellAction, Tt as FaqAccordionProps, U as WorkflowCanvas, Ut as CommandPaletteProps, V as TimeRangeControlProps, Vt as CommandPaletteTriggerProps, W as WorkflowCanvasConnection, X as KeyValueEntry, Y as KeyValueEditorProps, Z as FailureList, _t as EnvPanelProps, a as FieldValueCount, at as ToastProviderProps, bt as DeploymentTimeline, c as QueryBarProps, ct as useToast, dt as DataTableProps, et as NotificationToast, ft as DomainTable, gt as EnvPanel, ht as BranchSelectProps, i as FieldSummary, it as ToastProvider, j as LogTableHandle, jt as SidebarNavProps, k as LogSort, kt as EditorToolbarProps, l as QueryField, lt as ColumnDef, mt as BranchSelect, n as FieldSidebarLabels, nt as ToastContextValue, o as QueryBar, pt as DomainTableProps, q as KeyValueEditor, r as FieldSidebarProps, rt as ToastMessage, s as QueryBarLabels, t as FieldSidebar, ut as DataTable, vt as ProjectSwitcher, wt as FaqAccordion, xt as DeploymentTimelineProps, yt as ProjectSwitcherProps, z as TimeRangeControl, zt as DashboardGridProps } from "../field-sidebar-5KYVlpSs.js";
|
|
3
3
|
import { EventSparkline, EventSparklineLabels, EventSparklineProps, MetricsCard, MetricsCardProps, ReportWidget, ReportWidgetConfig, ReportWidgetLabels, ReportWidgetProps, ReportWidgetType, TrendChart, TrendChartProps } from "@reopt-ai/opt-charts";
|
|
4
4
|
export { AppMenubar, type AppMenubarProps, BranchSelect, type BranchSelectProps, type ColumnDef, CommandPalette, type CommandPaletteProps, CommandPaletteTrigger, type CommandPaletteTriggerProps, ContentTabs, type ContentTabsProps, DEFAULT_TIME_PRESETS, DashboardGrid, type DashboardGridProps, DataTable, type DataTableProps, DeploymentTimeline, type DeploymentTimelineProps, DomainTable, type DomainTableProps, EditorToolbar, type EditorToolbarProps, EnvPanel, type EnvPanelProps, EventSparkline, type EventSparklineLabels, type EventSparklineProps, FailureList, type FailureListLabels, type FailureListProps, FaqAccordion, type FaqAccordionProps, FieldSidebar, type FieldSidebarLabels, type FieldSidebarProps, type FieldSummary, type FieldValueCount, KeyValueEditor, type KeyValueEditorLabels, type KeyValueEditorProps, type KeyValueEntry, type LogCellAction, type LogColumn, type LogColumnPriority, type LogDensity, type LogSort, LogTable, type LogTableHandle, type LogTableLabels, type LogTableProps, MetricsCard, type MetricsCardProps, NotificationToast, ProjectSwitcher, type ProjectSwitcherProps, QueryBar, type QueryBarLabels, type QueryBarProps, type QueryField, type RefreshSetting, ReportWidget, type ReportWidgetConfig, type ReportWidgetLabels, type ReportWidgetProps, type ReportWidgetType, SearchCombobox, type SearchComboboxProps, SettingsForm, type SettingsFormProps, SidebarNav, type SidebarNavProps, StatusSelect, type StatusSelectProps, TimeRangeControl, type TimeRangeControlLabels, type TimeRangeControlProps, type TimeRangePreset, TimeSeriesPanel, type TimeSeriesPanelLabels, type TimeSeriesPanelProps, type ToastContextValue, type ToastMessage, ToastProvider, type ToastProviderProps, TrendChart, type TrendChartProps, WorkflowCanvas, type WorkflowCanvasConnection, type WorkflowCanvasProps, type WorkflowCanvasStep, useToast };
|
package/dist/shells/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
"use client";
|
|
3
|
-
import { A as DataTable, B as SidebarNav, C as WorkflowCanvas, D as ToastProvider, E as NotificationToast, F as DeploymentTimeline, G as CommandPaletteTrigger, H as StatusSelect, I as SettingsForm, K as CommandPalette, L as FaqAccordion, M as BranchSelect, N as EnvPanel, P as ProjectSwitcher, R as ContentTabs, T as FailureList, U as SearchCombobox, V as AppMenubar, W as DashboardGrid, b as DEFAULT_TIME_PRESETS, j as DomainTable, k as useToast, n as QueryBar, t as FieldSidebar, v as LogTable, w as KeyValueEditor, x as TimeRangeControl, y as TimeSeriesPanel, z as EditorToolbar } from "../field-sidebar-
|
|
3
|
+
import { A as DataTable, B as SidebarNav, C as WorkflowCanvas, D as ToastProvider, E as NotificationToast, F as DeploymentTimeline, G as CommandPaletteTrigger, H as StatusSelect, I as SettingsForm, K as CommandPalette, L as FaqAccordion, M as BranchSelect, N as EnvPanel, P as ProjectSwitcher, R as ContentTabs, T as FailureList, U as SearchCombobox, V as AppMenubar, W as DashboardGrid, b as DEFAULT_TIME_PRESETS, j as DomainTable, k as useToast, n as QueryBar, t as FieldSidebar, v as LogTable, w as KeyValueEditor, x as TimeRangeControl, y as TimeSeriesPanel, z as EditorToolbar } from "../field-sidebar-BYD_UIjG.js";
|
|
4
4
|
import { EventSparkline, MetricsCard, ReportWidget, TrendChart } from "@reopt-ai/opt-charts";
|
|
5
5
|
export { AppMenubar, BranchSelect, CommandPalette, CommandPaletteTrigger, ContentTabs, DEFAULT_TIME_PRESETS, DashboardGrid, DataTable, DeploymentTimeline, DomainTable, EditorToolbar, EnvPanel, EventSparkline, FailureList, FaqAccordion, FieldSidebar, KeyValueEditor, LogTable, MetricsCard, NotificationToast, ProjectSwitcher, QueryBar, ReportWidget, SearchCombobox, SettingsForm, SidebarNav, StatusSelect, TimeRangeControl, TimeSeriesPanel, ToastProvider, TrendChart, WorkflowCanvas, useToast };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reopt-ai/opt-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "접근성 우선 UI 컴포넌트 라이브러리. opt-ui-primitives Core, 비즈니스 Shells, 페이지 Surfaces.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"registry": "https://registry.npmjs.org"
|
|
149
149
|
},
|
|
150
150
|
"dependencies": {
|
|
151
|
-
"@reopt-ai/opt-charts": "^1.2.
|
|
151
|
+
"@reopt-ai/opt-charts": "^1.2.1",
|
|
152
152
|
"@reopt-ai/opt-palette": "^1.0.0",
|
|
153
153
|
"@reopt-ai/opt-ui-primitives": "^1.5.0",
|
|
154
154
|
"clsx": "^2.1.1",
|