@reopt-ai/opt-ui 1.12.1 → 1.12.3
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 +32 -30
- package/README.md +6 -1
- package/dist/core/index.cjs +2 -2
- package/dist/core/index.js +2 -2
- package/dist/docs/02-components/01-core.md +7 -7
- package/dist/docs/02-components/02-visuals.md +1 -1
- package/dist/docs/02-components/03-shells.md +26 -24
- package/dist/docs/02-components/04-surfaces.md +1 -1
- package/dist/docs/02-components/index.md +1 -1
- package/dist/{field-sidebar-uXmoyvd7.d.cts → field-sidebar-BdP0-TMs.d.cts} +26 -1
- package/dist/{field-sidebar-CrYlRZew.d.ts → field-sidebar-CHs8eEzs.d.ts} +26 -1
- package/dist/{field-sidebar-oa6zOmcd.cjs → field-sidebar-CQSlweP0.cjs} +42 -31
- package/dist/{field-sidebar-zkkqC7__.js → field-sidebar-DJKWQQeu.js} +42 -31
- package/dist/index.cjs +47 -18
- package/dist/index.d.cts +21 -6
- package/dist/index.d.ts +21 -6
- package/dist/index.js +47 -18
- package/dist/{key-pad-menu-SItoHPLu.cjs → key-pad-menu-1YN221Oi.cjs} +1 -1
- package/dist/{key-pad-menu-Di2aRGbM.js → key-pad-menu-CUiQ-vKw.js} +1 -1
- package/dist/meta.cjs +28 -14
- package/dist/meta.js +28 -14
- package/dist/query.cjs +19 -6
- package/dist/query.js +19 -6
- 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/dist/{text-truncate-DSuZECy0.js → text-truncate-BFWd2cE_.js} +116 -116
- package/dist/{text-truncate-I1XLWmRa.cjs → text-truncate-DsG5UAOY.cjs} +115 -115
- package/package.json +1 -1
package/dist/meta.cjs
CHANGED
|
@@ -5067,11 +5067,11 @@ const MyDashboard = createBlock<MyDashboardProps>(
|
|
|
5067
5067
|
{
|
|
5068
5068
|
name: "hint",
|
|
5069
5069
|
type: "string",
|
|
5070
|
-
description: "판정
|
|
5070
|
+
description: "판정 기준. 호버·키보드 포커스로 열리는 툴팁이며, 지정하면 이 항목이 탭 정지점이 됩니다"
|
|
5071
5071
|
}
|
|
5072
5072
|
] },
|
|
5073
5073
|
usage: {
|
|
5074
|
-
bestPractices: ["표의 상태 컬럼처럼 행마다 반복되는 자리에 씁니다. 점은 장식이고 의미는 텍스트가 담습니다."],
|
|
5074
|
+
bestPractices: ["표의 상태 컬럼처럼 행마다 반복되는 자리에 씁니다. 점은 장식이고 의미는 텍스트가 담습니다.", "hint는 행마다 탭 정지점을 하나 늘립니다. 알아야 행동할 수 있는 규칙이면 툴팁이 아니라 상태 옆 텍스트에 씁니다."],
|
|
5075
5075
|
avoid: ["사람이 붙인 라벨(태그, 카테고리)에는 Badge를 씁니다. StatusDot은 관측된 상태용입니다."]
|
|
5076
5076
|
},
|
|
5077
5077
|
testDescribe: "StatusDot"
|
|
@@ -5868,18 +5868,32 @@ const fields = [
|
|
|
5868
5868
|
type: "string",
|
|
5869
5869
|
default: "\"No data available\"",
|
|
5870
5870
|
description: "데이터 없을 때 표시할 메시지"
|
|
5871
|
+
},
|
|
5872
|
+
{
|
|
5873
|
+
name: "labels",
|
|
5874
|
+
type: "DataTableLabels",
|
|
5875
|
+
description: "선택·리사이즈·펼치기처럼 스크린리더만 듣는 문구. 보이는 문구는 columns와 emptyMessage가 이미 호출자의 것입니다"
|
|
5871
5876
|
}
|
|
5872
5877
|
],
|
|
5873
|
-
ColumnDef: [
|
|
5874
|
-
|
|
5875
|
-
|
|
5876
|
-
|
|
5877
|
-
|
|
5878
|
-
|
|
5879
|
-
|
|
5880
|
-
|
|
5881
|
-
|
|
5882
|
-
|
|
5878
|
+
ColumnDef: [
|
|
5879
|
+
{
|
|
5880
|
+
name: "headerHidden",
|
|
5881
|
+
type: "boolean",
|
|
5882
|
+
default: "false",
|
|
5883
|
+
description: "이름은 두되 그리지 않음. 행 액션처럼 제목이 필요 없는 컬럼용 — 빈 header는 컬럼을 익명으로 만듭니다"
|
|
5884
|
+
},
|
|
5885
|
+
{
|
|
5886
|
+
name: "bar",
|
|
5887
|
+
type: "(row: T) => number",
|
|
5888
|
+
description: "인라인 프로그레스 바 비율(0-1) 계산 함수. 범위 밖/NaN은 보정"
|
|
5889
|
+
},
|
|
5890
|
+
{
|
|
5891
|
+
name: "barColor",
|
|
5892
|
+
type: "string",
|
|
5893
|
+
default: "\"bg-accent\"",
|
|
5894
|
+
description: "인라인 바 색상 클래스"
|
|
5895
|
+
}
|
|
5896
|
+
]
|
|
5883
5897
|
},
|
|
5884
5898
|
testDescribe: "DataTable",
|
|
5885
5899
|
examples: [{
|
|
@@ -7110,7 +7124,7 @@ const filters = [
|
|
|
7110
7124
|
{
|
|
7111
7125
|
name: "labels",
|
|
7112
7126
|
type: "EventMetaEditorLabels",
|
|
7113
|
-
description: "필드 레이블과 placeholder
|
|
7127
|
+
description: "필드 레이블과 placeholder 문구. iconPlaceholder는 내부 IconPicker로 전달됩니다"
|
|
7114
7128
|
}
|
|
7115
7129
|
],
|
|
7116
7130
|
EventMetaEditorSection: [
|
|
@@ -9787,7 +9801,7 @@ const messages = [
|
|
|
9787
9801
|
{
|
|
9788
9802
|
name: "labels",
|
|
9789
9803
|
type: "CatalogFrameLabels",
|
|
9790
|
-
description: "빈/필터된 빈/에러
|
|
9804
|
+
description: "빈/필터된 빈/에러 문구와 인스펙터 닫기 버튼(closeInspector)"
|
|
9791
9805
|
},
|
|
9792
9806
|
{
|
|
9793
9807
|
name: "className",
|
package/dist/meta.js
CHANGED
|
@@ -5066,11 +5066,11 @@ const MyDashboard = createBlock<MyDashboardProps>(
|
|
|
5066
5066
|
{
|
|
5067
5067
|
name: "hint",
|
|
5068
5068
|
type: "string",
|
|
5069
|
-
description: "판정
|
|
5069
|
+
description: "판정 기준. 호버·키보드 포커스로 열리는 툴팁이며, 지정하면 이 항목이 탭 정지점이 됩니다"
|
|
5070
5070
|
}
|
|
5071
5071
|
] },
|
|
5072
5072
|
usage: {
|
|
5073
|
-
bestPractices: ["표의 상태 컬럼처럼 행마다 반복되는 자리에 씁니다. 점은 장식이고 의미는 텍스트가 담습니다."],
|
|
5073
|
+
bestPractices: ["표의 상태 컬럼처럼 행마다 반복되는 자리에 씁니다. 점은 장식이고 의미는 텍스트가 담습니다.", "hint는 행마다 탭 정지점을 하나 늘립니다. 알아야 행동할 수 있는 규칙이면 툴팁이 아니라 상태 옆 텍스트에 씁니다."],
|
|
5074
5074
|
avoid: ["사람이 붙인 라벨(태그, 카테고리)에는 Badge를 씁니다. StatusDot은 관측된 상태용입니다."]
|
|
5075
5075
|
},
|
|
5076
5076
|
testDescribe: "StatusDot"
|
|
@@ -5867,18 +5867,32 @@ const fields = [
|
|
|
5867
5867
|
type: "string",
|
|
5868
5868
|
default: "\"No data available\"",
|
|
5869
5869
|
description: "데이터 없을 때 표시할 메시지"
|
|
5870
|
+
},
|
|
5871
|
+
{
|
|
5872
|
+
name: "labels",
|
|
5873
|
+
type: "DataTableLabels",
|
|
5874
|
+
description: "선택·리사이즈·펼치기처럼 스크린리더만 듣는 문구. 보이는 문구는 columns와 emptyMessage가 이미 호출자의 것입니다"
|
|
5870
5875
|
}
|
|
5871
5876
|
],
|
|
5872
|
-
ColumnDef: [
|
|
5873
|
-
|
|
5874
|
-
|
|
5875
|
-
|
|
5876
|
-
|
|
5877
|
-
|
|
5878
|
-
|
|
5879
|
-
|
|
5880
|
-
|
|
5881
|
-
|
|
5877
|
+
ColumnDef: [
|
|
5878
|
+
{
|
|
5879
|
+
name: "headerHidden",
|
|
5880
|
+
type: "boolean",
|
|
5881
|
+
default: "false",
|
|
5882
|
+
description: "이름은 두되 그리지 않음. 행 액션처럼 제목이 필요 없는 컬럼용 — 빈 header는 컬럼을 익명으로 만듭니다"
|
|
5883
|
+
},
|
|
5884
|
+
{
|
|
5885
|
+
name: "bar",
|
|
5886
|
+
type: "(row: T) => number",
|
|
5887
|
+
description: "인라인 프로그레스 바 비율(0-1) 계산 함수. 범위 밖/NaN은 보정"
|
|
5888
|
+
},
|
|
5889
|
+
{
|
|
5890
|
+
name: "barColor",
|
|
5891
|
+
type: "string",
|
|
5892
|
+
default: "\"bg-accent\"",
|
|
5893
|
+
description: "인라인 바 색상 클래스"
|
|
5894
|
+
}
|
|
5895
|
+
]
|
|
5882
5896
|
},
|
|
5883
5897
|
testDescribe: "DataTable",
|
|
5884
5898
|
examples: [{
|
|
@@ -7109,7 +7123,7 @@ const filters = [
|
|
|
7109
7123
|
{
|
|
7110
7124
|
name: "labels",
|
|
7111
7125
|
type: "EventMetaEditorLabels",
|
|
7112
|
-
description: "필드 레이블과 placeholder
|
|
7126
|
+
description: "필드 레이블과 placeholder 문구. iconPlaceholder는 내부 IconPicker로 전달됩니다"
|
|
7113
7127
|
}
|
|
7114
7128
|
],
|
|
7115
7129
|
EventMetaEditorSection: [
|
|
@@ -9786,7 +9800,7 @@ const messages = [
|
|
|
9786
9800
|
{
|
|
9787
9801
|
name: "labels",
|
|
9788
9802
|
type: "CatalogFrameLabels",
|
|
9789
|
-
description: "빈/필터된 빈/에러
|
|
9803
|
+
description: "빈/필터된 빈/에러 문구와 인스펙터 닫기 버튼(closeInspector)"
|
|
9790
9804
|
},
|
|
9791
9805
|
{
|
|
9792
9806
|
name: "className",
|
package/dist/query.cjs
CHANGED
|
@@ -115,7 +115,7 @@ function tokenize(input) {
|
|
|
115
115
|
return tokens;
|
|
116
116
|
}
|
|
117
117
|
/** `(a or b)` → `["a", "b"]`; anything else is a single value. */
|
|
118
|
-
function readValues(raw) {
|
|
118
|
+
function readValues$1(raw) {
|
|
119
119
|
const trimmed = raw.trim();
|
|
120
120
|
if (!trimmed.startsWith("(")) return [stripQuotes(trimmed)];
|
|
121
121
|
return trimmed.replace(/^\(/, "").replace(/\)$/, "").split(/\s+or\s+/i).map((part) => stripQuotes(part.trim())).filter((part) => part.length > 0);
|
|
@@ -219,7 +219,7 @@ function parseQueryWithDiagnostics(input) {
|
|
|
219
219
|
});
|
|
220
220
|
continue;
|
|
221
221
|
}
|
|
222
|
-
const values = readValues(rawValue);
|
|
222
|
+
const values = readValues$1(rawValue);
|
|
223
223
|
if (values.length === 0) {
|
|
224
224
|
diagnostics.push({
|
|
225
225
|
at: token.at,
|
|
@@ -313,6 +313,19 @@ function toText(value) {
|
|
|
313
313
|
if (typeof value === "number" || typeof value === "boolean") return String(value);
|
|
314
314
|
return JSON.stringify(value);
|
|
315
315
|
}
|
|
316
|
+
/**
|
|
317
|
+
* The values one field holds, as a list.
|
|
318
|
+
*
|
|
319
|
+
* A clause names a single value, so an array field has to be read element by
|
|
320
|
+
* element: `tag:pay` asks whether *any* tag is `pay`, not whether the whole
|
|
321
|
+
* list stringifies to it — and `toText` on an array produces `["pay","cart"]`,
|
|
322
|
+
* which no user ever types. Scalars read as a list of one so both shapes take
|
|
323
|
+
* the same path, and negation stays where it already is: `matchesQuery` flips
|
|
324
|
+
* the result, so `-tag:pay` correctly means "no element matches".
|
|
325
|
+
*/
|
|
326
|
+
function readValues(value) {
|
|
327
|
+
return Array.isArray(value) ? value : [value];
|
|
328
|
+
}
|
|
316
329
|
function compare(left, right) {
|
|
317
330
|
const leftNumber = typeof left === "number" ? left : Number(toText(left));
|
|
318
331
|
const rightNumber = Number(right);
|
|
@@ -323,9 +336,9 @@ function matchesClause(clause, read, searchable) {
|
|
|
323
336
|
if (clause.type === "term") return searchable().toLowerCase().includes(clause.value.toLowerCase());
|
|
324
337
|
const value = read(clause.field);
|
|
325
338
|
switch (clause.operator) {
|
|
326
|
-
case "exists": return value !== void 0 &&
|
|
327
|
-
case "eq": return clause.values.some((candidate) =>
|
|
328
|
-
case "contains": return clause.values.some((candidate) =>
|
|
339
|
+
case "exists": return readValues(value).some((item) => item !== void 0 && item !== null && item !== "");
|
|
340
|
+
case "eq": return clause.values.some((candidate) => readValues(value).some((item) => toText(item).toLowerCase() === candidate.toLowerCase()));
|
|
341
|
+
case "contains": return clause.values.some((candidate) => readValues(value).some((item) => toText(item).toLowerCase().includes(candidate.toLowerCase())));
|
|
329
342
|
case "gt":
|
|
330
343
|
var _clause$values$;
|
|
331
344
|
return compare(value, (_clause$values$ = clause.values[0]) !== null && _clause$values$ !== void 0 ? _clause$values$ : "") > 0;
|
|
@@ -361,7 +374,7 @@ function matchesQueryObject(query, row, options = {}) {
|
|
|
361
374
|
let cached = null;
|
|
362
375
|
const searchable = () => {
|
|
363
376
|
var _cached;
|
|
364
|
-
(_cached = cached) !== null && _cached !== void 0 || (cached = [...Object.values(row).
|
|
377
|
+
(_cached = cached) !== null && _cached !== void 0 || (cached = [...Object.values(row).flatMap((value) => Array.isArray(value) ? value.filter((item) => typeof item !== "object") : typeof value === "object" ? [] : [value]), ...Object.values(nested !== null && nested !== void 0 ? nested : {})].map(toText).join(" "));
|
|
365
378
|
return cached;
|
|
366
379
|
};
|
|
367
380
|
return matchesQuery(query, read, searchable);
|
package/dist/query.js
CHANGED
|
@@ -114,7 +114,7 @@ function tokenize(input) {
|
|
|
114
114
|
return tokens;
|
|
115
115
|
}
|
|
116
116
|
/** `(a or b)` → `["a", "b"]`; anything else is a single value. */
|
|
117
|
-
function readValues(raw) {
|
|
117
|
+
function readValues$1(raw) {
|
|
118
118
|
const trimmed = raw.trim();
|
|
119
119
|
if (!trimmed.startsWith("(")) return [stripQuotes(trimmed)];
|
|
120
120
|
return trimmed.replace(/^\(/, "").replace(/\)$/, "").split(/\s+or\s+/i).map((part) => stripQuotes(part.trim())).filter((part) => part.length > 0);
|
|
@@ -218,7 +218,7 @@ function parseQueryWithDiagnostics(input) {
|
|
|
218
218
|
});
|
|
219
219
|
continue;
|
|
220
220
|
}
|
|
221
|
-
const values = readValues(rawValue);
|
|
221
|
+
const values = readValues$1(rawValue);
|
|
222
222
|
if (values.length === 0) {
|
|
223
223
|
diagnostics.push({
|
|
224
224
|
at: token.at,
|
|
@@ -312,6 +312,19 @@ function toText(value) {
|
|
|
312
312
|
if (typeof value === "number" || typeof value === "boolean") return String(value);
|
|
313
313
|
return JSON.stringify(value);
|
|
314
314
|
}
|
|
315
|
+
/**
|
|
316
|
+
* The values one field holds, as a list.
|
|
317
|
+
*
|
|
318
|
+
* A clause names a single value, so an array field has to be read element by
|
|
319
|
+
* element: `tag:pay` asks whether *any* tag is `pay`, not whether the whole
|
|
320
|
+
* list stringifies to it — and `toText` on an array produces `["pay","cart"]`,
|
|
321
|
+
* which no user ever types. Scalars read as a list of one so both shapes take
|
|
322
|
+
* the same path, and negation stays where it already is: `matchesQuery` flips
|
|
323
|
+
* the result, so `-tag:pay` correctly means "no element matches".
|
|
324
|
+
*/
|
|
325
|
+
function readValues(value) {
|
|
326
|
+
return Array.isArray(value) ? value : [value];
|
|
327
|
+
}
|
|
315
328
|
function compare(left, right) {
|
|
316
329
|
const leftNumber = typeof left === "number" ? left : Number(toText(left));
|
|
317
330
|
const rightNumber = Number(right);
|
|
@@ -322,9 +335,9 @@ function matchesClause(clause, read, searchable) {
|
|
|
322
335
|
if (clause.type === "term") return searchable().toLowerCase().includes(clause.value.toLowerCase());
|
|
323
336
|
const value = read(clause.field);
|
|
324
337
|
switch (clause.operator) {
|
|
325
|
-
case "exists": return value !== void 0 &&
|
|
326
|
-
case "eq": return clause.values.some((candidate) =>
|
|
327
|
-
case "contains": return clause.values.some((candidate) =>
|
|
338
|
+
case "exists": return readValues(value).some((item) => item !== void 0 && item !== null && item !== "");
|
|
339
|
+
case "eq": return clause.values.some((candidate) => readValues(value).some((item) => toText(item).toLowerCase() === candidate.toLowerCase()));
|
|
340
|
+
case "contains": return clause.values.some((candidate) => readValues(value).some((item) => toText(item).toLowerCase().includes(candidate.toLowerCase())));
|
|
328
341
|
case "gt":
|
|
329
342
|
var _clause$values$;
|
|
330
343
|
return compare(value, (_clause$values$ = clause.values[0]) !== null && _clause$values$ !== void 0 ? _clause$values$ : "") > 0;
|
|
@@ -360,7 +373,7 @@ function matchesQueryObject(query, row, options = {}) {
|
|
|
360
373
|
let cached = null;
|
|
361
374
|
const searchable = () => {
|
|
362
375
|
var _cached;
|
|
363
|
-
(_cached = cached) !== null && _cached !== void 0 || (cached = [...Object.values(row).
|
|
376
|
+
(_cached = cached) !== null && _cached !== void 0 || (cached = [...Object.values(row).flatMap((value) => Array.isArray(value) ? value.filter((item) => typeof item !== "object") : typeof value === "object" ? [] : [value]), ...Object.values(nested !== null && nested !== void 0 ? nested : {})].map(toText).join(" "));
|
|
364
377
|
return cached;
|
|
365
378
|
};
|
|
366
379
|
return matchesQuery(query, read, searchable);
|
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-CQSlweP0.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 EventTimelineItem, $t as DashboardGridProps, At as EnvPanel, Bt as ContentTabs, C as TimeRangePreset, Ct as ColumnDef, D as QueryField, Dt as DomainTableProps, E as QueryBarProps, Et as DomainTable, Ft as DeploymentTimelineProps, G as FlyoutProps, Gt as SidebarNavProps, Ht as EditorToolbar, It as SettingsForm, J as ScoreBreakdown, Jt as StatusSelect, K as ScoreAxis, Kt as AppMenubar, Lt as SettingsFormProps, Mt as ProjectSwitcher, Nt as ProjectSwitcherProps, Ot as BranchSelect, Pt as DeploymentTimeline, Q as EventTimelineGroup, Qt as DashboardGrid, Rt as FaqAccordion, S as TimeRangeControlProps, St as useToast, T as QueryBarLabels, Tt as DataTableProps, U as Flyout, Ut as EditorToolbarProps, Vt as ContentTabsProps, W as FlyoutLabels, Wt as SidebarNav, X as ScoreBreakdownProps, Xt as SearchCombobox, Y as ScoreBreakdownLabels, Yt as StatusSelectProps, Z as EventTimeline, Zt as SearchComboboxProps, _ as TimeSeriesPanelProps, _t as ToastMessage, a as FieldValueCount, at as WorkflowCanvasProps, b as TimeRangeControl, c as LogColumnPriority, ct as KeyValueEditorLabels, d as LogTable, dt as FailureList, en as CommandPaletteTrigger, et as EventTimelineLabels, f as LogTableHandle, ft as FailureListLabels, g as TimeSeriesPanelLabels, gt as ToastContextValue, h as TimeSeriesPanel, i as FieldSummary, it as WorkflowCanvasConnection, jt as EnvPanelProps, kt as BranchSelectProps, l as LogDensity, lt as KeyValueEditorProps, m as LogTableProps, mt as NotificationToast, n as FieldSidebarLabels, nn as CommandPalette, nt as EventTimelineTone, o as LogCellAction, ot as WorkflowCanvasStep, p as LogTableLabels, pt as FailureListProps, q as ScoreBand, qt as AppMenubarProps, r as FieldSidebarProps, rn as CommandPaletteProps, rt as WorkflowCanvas, s as LogColumn, st as KeyValueEditor, t as FieldSidebar, tn as CommandPaletteTriggerProps, tt as EventTimelineProps, u as LogSort, ut as KeyValueEntry, v as DEFAULT_TIME_PRESETS, vt as ToastProvider, w as QueryBar, wt as DataTable, x as TimeRangeControlLabels, y as RefreshSetting, yt as ToastProviderProps, zt as FaqAccordionProps } from "../field-sidebar-
|
|
2
|
+
import { $ as EventTimelineItem, $t as DashboardGridProps, At as EnvPanel, Bt as ContentTabs, C as TimeRangePreset, Ct as ColumnDef, D as QueryField, Dt as DomainTableProps, E as QueryBarProps, Et as DomainTable, Ft as DeploymentTimelineProps, G as FlyoutProps, Gt as SidebarNavProps, Ht as EditorToolbar, It as SettingsForm, J as ScoreBreakdown, Jt as StatusSelect, K as ScoreAxis, Kt as AppMenubar, Lt as SettingsFormProps, Mt as ProjectSwitcher, Nt as ProjectSwitcherProps, Ot as BranchSelect, Pt as DeploymentTimeline, Q as EventTimelineGroup, Qt as DashboardGrid, Rt as FaqAccordion, S as TimeRangeControlProps, St as useToast, T as QueryBarLabels, Tt as DataTableProps, U as Flyout, Ut as EditorToolbarProps, Vt as ContentTabsProps, W as FlyoutLabels, Wt as SidebarNav, X as ScoreBreakdownProps, Xt as SearchCombobox, Y as ScoreBreakdownLabels, Yt as StatusSelectProps, Z as EventTimeline, Zt as SearchComboboxProps, _ as TimeSeriesPanelProps, _t as ToastMessage, a as FieldValueCount, at as WorkflowCanvasProps, b as TimeRangeControl, c as LogColumnPriority, ct as KeyValueEditorLabels, d as LogTable, dt as FailureList, en as CommandPaletteTrigger, et as EventTimelineLabels, f as LogTableHandle, ft as FailureListLabels, g as TimeSeriesPanelLabels, gt as ToastContextValue, h as TimeSeriesPanel, i as FieldSummary, it as WorkflowCanvasConnection, jt as EnvPanelProps, kt as BranchSelectProps, l as LogDensity, lt as KeyValueEditorProps, m as LogTableProps, mt as NotificationToast, n as FieldSidebarLabels, nn as CommandPalette, nt as EventTimelineTone, o as LogCellAction, ot as WorkflowCanvasStep, p as LogTableLabels, pt as FailureListProps, q as ScoreBand, qt as AppMenubarProps, r as FieldSidebarProps, rn as CommandPaletteProps, rt as WorkflowCanvas, s as LogColumn, st as KeyValueEditor, t as FieldSidebar, tn as CommandPaletteTriggerProps, tt as EventTimelineProps, u as LogSort, ut as KeyValueEntry, v as DEFAULT_TIME_PRESETS, vt as ToastProvider, w as QueryBar, wt as DataTable, x as TimeRangeControlLabels, y as RefreshSetting, yt as ToastProviderProps, zt as FaqAccordionProps } from "../field-sidebar-BdP0-TMs.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, EventTimeline, type EventTimelineGroup, type EventTimelineItem, type EventTimelineLabels, type EventTimelineProps, type EventTimelineTone, FailureList, type FailureListLabels, type FailureListProps, FaqAccordion, type FaqAccordionProps, FieldSidebar, type FieldSidebarLabels, type FieldSidebarProps, type FieldSummary, type FieldValueCount, Flyout, type FlyoutLabels, type FlyoutProps, 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, type ScoreAxis, type ScoreBand, ScoreBreakdown, type ScoreBreakdownLabels, type ScoreBreakdownProps, 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 EventTimelineItem, $t as DashboardGridProps, At as EnvPanel, Bt as ContentTabs, C as TimeRangePreset, Ct as ColumnDef, D as QueryField, Dt as DomainTableProps, E as QueryBarProps, Et as DomainTable, Ft as DeploymentTimelineProps, G as FlyoutProps, Gt as SidebarNavProps, Ht as EditorToolbar, It as SettingsForm, J as ScoreBreakdown, Jt as StatusSelect, K as ScoreAxis, Kt as AppMenubar, Lt as SettingsFormProps, Mt as ProjectSwitcher, Nt as ProjectSwitcherProps, Ot as BranchSelect, Pt as DeploymentTimeline, Q as EventTimelineGroup, Qt as DashboardGrid, Rt as FaqAccordion, S as TimeRangeControlProps, St as useToast, T as QueryBarLabels, Tt as DataTableProps, U as Flyout, Ut as EditorToolbarProps, Vt as ContentTabsProps, W as FlyoutLabels, Wt as SidebarNav, X as ScoreBreakdownProps, Xt as SearchCombobox, Y as ScoreBreakdownLabels, Yt as StatusSelectProps, Z as EventTimeline, Zt as SearchComboboxProps, _ as TimeSeriesPanelProps, _t as ToastMessage, a as FieldValueCount, at as WorkflowCanvasProps, b as TimeRangeControl, c as LogColumnPriority, ct as KeyValueEditorLabels, d as LogTable, dt as FailureList, en as CommandPaletteTrigger, et as EventTimelineLabels, f as LogTableHandle, ft as FailureListLabels, g as TimeSeriesPanelLabels, gt as ToastContextValue, h as TimeSeriesPanel, i as FieldSummary, it as WorkflowCanvasConnection, jt as EnvPanelProps, kt as BranchSelectProps, l as LogDensity, lt as KeyValueEditorProps, m as LogTableProps, mt as NotificationToast, n as FieldSidebarLabels, nn as CommandPalette, nt as EventTimelineTone, o as LogCellAction, ot as WorkflowCanvasStep, p as LogTableLabels, pt as FailureListProps, q as ScoreBand, qt as AppMenubarProps, r as FieldSidebarProps, rn as CommandPaletteProps, rt as WorkflowCanvas, s as LogColumn, st as KeyValueEditor, t as FieldSidebar, tn as CommandPaletteTriggerProps, tt as EventTimelineProps, u as LogSort, ut as KeyValueEntry, v as DEFAULT_TIME_PRESETS, vt as ToastProvider, w as QueryBar, wt as DataTable, x as TimeRangeControlLabels, y as RefreshSetting, yt as ToastProviderProps, zt as FaqAccordionProps } from "../field-sidebar-
|
|
2
|
+
import { $ as EventTimelineItem, $t as DashboardGridProps, At as EnvPanel, Bt as ContentTabs, C as TimeRangePreset, Ct as ColumnDef, D as QueryField, Dt as DomainTableProps, E as QueryBarProps, Et as DomainTable, Ft as DeploymentTimelineProps, G as FlyoutProps, Gt as SidebarNavProps, Ht as EditorToolbar, It as SettingsForm, J as ScoreBreakdown, Jt as StatusSelect, K as ScoreAxis, Kt as AppMenubar, Lt as SettingsFormProps, Mt as ProjectSwitcher, Nt as ProjectSwitcherProps, Ot as BranchSelect, Pt as DeploymentTimeline, Q as EventTimelineGroup, Qt as DashboardGrid, Rt as FaqAccordion, S as TimeRangeControlProps, St as useToast, T as QueryBarLabels, Tt as DataTableProps, U as Flyout, Ut as EditorToolbarProps, Vt as ContentTabsProps, W as FlyoutLabels, Wt as SidebarNav, X as ScoreBreakdownProps, Xt as SearchCombobox, Y as ScoreBreakdownLabels, Yt as StatusSelectProps, Z as EventTimeline, Zt as SearchComboboxProps, _ as TimeSeriesPanelProps, _t as ToastMessage, a as FieldValueCount, at as WorkflowCanvasProps, b as TimeRangeControl, c as LogColumnPriority, ct as KeyValueEditorLabels, d as LogTable, dt as FailureList, en as CommandPaletteTrigger, et as EventTimelineLabels, f as LogTableHandle, ft as FailureListLabels, g as TimeSeriesPanelLabels, gt as ToastContextValue, h as TimeSeriesPanel, i as FieldSummary, it as WorkflowCanvasConnection, jt as EnvPanelProps, kt as BranchSelectProps, l as LogDensity, lt as KeyValueEditorProps, m as LogTableProps, mt as NotificationToast, n as FieldSidebarLabels, nn as CommandPalette, nt as EventTimelineTone, o as LogCellAction, ot as WorkflowCanvasStep, p as LogTableLabels, pt as FailureListProps, q as ScoreBand, qt as AppMenubarProps, r as FieldSidebarProps, rn as CommandPaletteProps, rt as WorkflowCanvas, s as LogColumn, st as KeyValueEditor, t as FieldSidebar, tn as CommandPaletteTriggerProps, tt as EventTimelineProps, u as LogSort, ut as KeyValueEntry, v as DEFAULT_TIME_PRESETS, vt as ToastProvider, w as QueryBar, wt as DataTable, x as TimeRangeControlLabels, y as RefreshSetting, yt as ToastProviderProps, zt as FaqAccordionProps } from "../field-sidebar-CHs8eEzs.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, EventTimeline, type EventTimelineGroup, type EventTimelineItem, type EventTimelineLabels, type EventTimelineProps, type EventTimelineTone, FailureList, type FailureListLabels, type FailureListProps, FaqAccordion, type FaqAccordionProps, FieldSidebar, type FieldSidebarLabels, type FieldSidebarProps, type FieldSummary, type FieldValueCount, Flyout, type FlyoutLabels, type FlyoutProps, 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, type ScoreAxis, type ScoreBand, ScoreBreakdown, type ScoreBreakdownLabels, type ScoreBreakdownProps, 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 ToastProvider, B as FaqAccordion, C as Flyout, D as KeyValueEditor, E as WorkflowCanvas, F as BranchSelect, G as StatusSelect, H as EditorToolbar, I as EnvPanel, J as CommandPaletteTrigger, K as SearchCombobox, L as ProjectSwitcher, M as useToast, N as DataTable, O as FailureList, P as DomainTable, R as DeploymentTimeline, T as EventTimeline, U as SidebarNav, V as ContentTabs, W as AppMenubar, Y as CommandPalette, a as TimeRangeControl, i as DEFAULT_TIME_PRESETS, k as NotificationToast, n as LogTable, q as DashboardGrid, r as TimeSeriesPanel, s as QueryBar, t as FieldSidebar, w as ScoreBreakdown, z as SettingsForm } from "../field-sidebar-
|
|
3
|
+
import { A as ToastProvider, B as FaqAccordion, C as Flyout, D as KeyValueEditor, E as WorkflowCanvas, F as BranchSelect, G as StatusSelect, H as EditorToolbar, I as EnvPanel, J as CommandPaletteTrigger, K as SearchCombobox, L as ProjectSwitcher, M as useToast, N as DataTable, O as FailureList, P as DomainTable, R as DeploymentTimeline, T as EventTimeline, U as SidebarNav, V as ContentTabs, W as AppMenubar, Y as CommandPalette, a as TimeRangeControl, i as DEFAULT_TIME_PRESETS, k as NotificationToast, n as LogTable, q as DashboardGrid, r as TimeSeriesPanel, s as QueryBar, t as FieldSidebar, w as ScoreBreakdown, z as SettingsForm } from "../field-sidebar-DJKWQQeu.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, EventTimeline, FailureList, FaqAccordion, FieldSidebar, Flyout, KeyValueEditor, LogTable, MetricsCard, NotificationToast, ProjectSwitcher, QueryBar, ReportWidget, ScoreBreakdown, SearchCombobox, SettingsForm, SidebarNav, StatusSelect, TimeRangeControl, TimeSeriesPanel, ToastProvider, TrendChart, WorkflowCanvas, useToast };
|