@datarecce/ui 1.44.0-nightly.20260413 → 1.44.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/dist/AuthModal-CGfEiCOR.js +7 -0
- package/dist/AuthModal-CGfEiCOR.js.map +1 -0
- package/dist/{SplitPane-DBg4tXuc.d.ts → SplitPane-CQLNwWiO.d.ts} +22 -3
- package/dist/{SplitPane-DBg4tXuc.d.ts.map → SplitPane-CQLNwWiO.d.ts.map} +1 -1
- package/dist/advanced.d.ts +3 -3
- package/dist/advanced.js +1 -1
- package/dist/components-run.js +1 -1
- package/dist/components.d.ts +4 -4
- package/dist/components.js +1 -1
- package/dist/hooks.js +1 -1
- package/dist/{index-BPwq5bDS.d.ts → index-C-Za_LJK.d.ts} +2 -2
- package/dist/{index-BPwq5bDS.d.ts.map → index-C-Za_LJK.d.ts.map} +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1 -1
- package/dist/{lineage-BVy6uQ02.d.ts → lineage-BUnDs7o7.d.ts} +7 -4
- package/dist/{lineage-BVy6uQ02.d.ts.map → lineage-BUnDs7o7.d.ts.map} +1 -1
- package/dist/{primitives-CeiwiPV-.d.ts → primitives-Gzjy4pd3.d.ts} +2 -2
- package/dist/{primitives-CeiwiPV-.d.ts.map → primitives-Gzjy4pd3.d.ts.map} +1 -1
- package/dist/primitives.d.ts +2 -2
- package/dist/primitives.js +1 -1
- package/dist/result.js +1 -1
- package/dist/src-0UNempLN.js +12 -0
- package/dist/src-0UNempLN.js.map +1 -0
- package/dist/style.css +32 -0
- package/dist/types.d.ts +2 -2
- package/dist/utils-Crcz1Rb5.js.map +1 -1
- package/package.json +1 -1
- package/dist/AuthModal-CPEPKSbq.js +0 -7
- package/dist/AuthModal-CPEPKSbq.js.map +0 -1
- package/dist/src-BPeVRx-t.js +0 -12
- package/dist/src-BPeVRx-t.js.map +0 -1
package/dist/style.css
CHANGED
|
@@ -54,6 +54,32 @@
|
|
|
54
54
|
--schema-color-impacted-active: #5a4e26;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
+
.cll-experience {
|
|
58
|
+
--schema-color-changed: #ffedaf;
|
|
59
|
+
--schema-color-changed-hover: #ffe591;
|
|
60
|
+
--schema-color-changed-active: #ffdc73;
|
|
61
|
+
--schema-color-changed-accent: #d4850b;
|
|
62
|
+
--schema-color-impacted: #fef9e3;
|
|
63
|
+
--schema-color-impacted-hover: #fef3c7;
|
|
64
|
+
--schema-color-impacted-active: #fdedaf;
|
|
65
|
+
--schema-color-impacted-accent: #fcd34d;
|
|
66
|
+
--schema-badge-impacted-bg: #fcd34d59;
|
|
67
|
+
--schema-badge-impacted-fg: #92400e;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.dark .cll-experience, .cll-experience.dark {
|
|
71
|
+
--schema-color-changed: #4b4121;
|
|
72
|
+
--schema-color-changed-hover: #5a4e26;
|
|
73
|
+
--schema-color-changed-active: #695b2b;
|
|
74
|
+
--schema-color-changed-accent: #d4850b;
|
|
75
|
+
--schema-color-impacted: #322c18;
|
|
76
|
+
--schema-color-impacted-hover: #3c341c;
|
|
77
|
+
--schema-color-impacted-active: #463d20;
|
|
78
|
+
--schema-color-impacted-accent: #b45309;
|
|
79
|
+
--schema-badge-impacted-bg: #b4530940;
|
|
80
|
+
--schema-badge-impacted-fg: #fcd34d;
|
|
81
|
+
}
|
|
82
|
+
|
|
57
83
|
.row-added {
|
|
58
84
|
background-color: var(--schema-color-added);
|
|
59
85
|
box-shadow: inset 3px 0 0 var(--schema-color-added-accent);
|
|
@@ -107,6 +133,7 @@
|
|
|
107
133
|
|
|
108
134
|
.row-impacted {
|
|
109
135
|
background-color: var(--schema-color-impacted);
|
|
136
|
+
box-shadow: inset 3px 0 0 var(--schema-color-impacted-accent);
|
|
110
137
|
}
|
|
111
138
|
|
|
112
139
|
.row-impacted:hover, .row-impacted[aria-selected="true"], .row-impacted.ag-row-selected {
|
|
@@ -171,6 +198,11 @@
|
|
|
171
198
|
color: var(--schema-badge-removed-fg);
|
|
172
199
|
}
|
|
173
200
|
|
|
201
|
+
.schema-change-badge-impacted {
|
|
202
|
+
background-color: var(--schema-badge-impacted-bg);
|
|
203
|
+
color: var(--schema-badge-impacted-fg);
|
|
204
|
+
}
|
|
205
|
+
|
|
174
206
|
.schema-index-old {
|
|
175
207
|
opacity: .6;
|
|
176
208
|
margin-right: 2px;
|
package/dist/types.d.ts
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
import { $t as LineageData, Ot as RunsAggregated, Qt as GitInfo, Zt as CatalogMetadata, an as NodeColumnData, cn as SQLMeshInfo, en as LineageDataFromMetadata, i as RecceServerFlags, ln as ServerInfoResult, n as ServerMode, on as NodeData, rn as ManifestMetadata, sn as PullRequestInfo, t as RecceInstanceInfo, tn as LineageDiffData, un as StateMetadata } from "./instanceInfo-py6tIhW6.js";
|
|
3
3
|
import { a as LineageGraphColumnNode, c as LineageGraphNode, i as LineageGraph, l as LineageGraphNodes, o as LineageGraphContextType, r as EnvInfo, s as LineageGraphEdge } from "./types-MJ4kKF5U.js";
|
|
4
4
|
import { o as LineageGraphProviderProps, u as NodeColumnSetMap } from "./index-CsQ6F_RH.js";
|
|
5
|
-
import { B as LineageColumnNodeProps, C as ChartBarColors, D as HistogramDataType, E as HistogramChartProps, G as CheckListProps, H as LineageViewProps, L as ColumnTransformationType, N as LineageLegendProps, O as HistogramDataset, P as TransformationLegendItem, Q as CheckDescriptionProps, S as TopKItem, U as LineageViewRef, X as CheckDetailTab, Y as CheckDetailProps, a as EmptyStateProps, at as CheckActionType, b as TopKBarChartProps, c as DiffEditorProps, ct as EdgeChangeStatus, dt as LineageEdgeProps, et as CheckCardData, ht as NodeChangeStatus, it as CheckAction, j as ChangeStatusLegendItem, l as DiffEditorTheme, mt as LineageNodeProps, nt as CheckRunStatus, p as SchemaDiffRow, pt as LineageNodeData, q as CheckEmptyStateProps, r as SplitPaneProps, rt as CheckType, s as DiffEditorLanguage, st as CheckActionsProps, t as SplitDirection, tt as CheckCardProps, u as SchemaDiffStatus, ut as LineageEdgeData, w as ChartThemeColors, x as TopKDataset, z as LineageColumnNodeData } from "./SplitPane-
|
|
6
|
-
import { _ as CheckProviderProps, a as RoutingConfig, b as LineageCanvasProps, d as QueryProviderProps, f as QueryResult, h as CheckContextType, i as NavigateOptions, l as QueryContextType, m as Check, o as RoutingContextValue, r as RecceProviderProps, t as TYPES_API_VERSION } from "./index-
|
|
5
|
+
import { B as LineageColumnNodeProps, C as ChartBarColors, D as HistogramDataType, E as HistogramChartProps, G as CheckListProps, H as LineageViewProps, L as ColumnTransformationType, N as LineageLegendProps, O as HistogramDataset, P as TransformationLegendItem, Q as CheckDescriptionProps, S as TopKItem, U as LineageViewRef, X as CheckDetailTab, Y as CheckDetailProps, a as EmptyStateProps, at as CheckActionType, b as TopKBarChartProps, c as DiffEditorProps, ct as EdgeChangeStatus, dt as LineageEdgeProps, et as CheckCardData, ht as NodeChangeStatus, it as CheckAction, j as ChangeStatusLegendItem, l as DiffEditorTheme, mt as LineageNodeProps, nt as CheckRunStatus, p as SchemaDiffRow, pt as LineageNodeData, q as CheckEmptyStateProps, r as SplitPaneProps, rt as CheckType, s as DiffEditorLanguage, st as CheckActionsProps, t as SplitDirection, tt as CheckCardProps, u as SchemaDiffStatus, ut as LineageEdgeData, w as ChartThemeColors, x as TopKDataset, z as LineageColumnNodeData } from "./SplitPane-CQLNwWiO.js";
|
|
6
|
+
import { _ as CheckProviderProps, a as RoutingConfig, b as LineageCanvasProps, d as QueryProviderProps, f as QueryResult, h as CheckContextType, i as NavigateOptions, l as QueryContextType, m as Check, o as RoutingContextValue, r as RecceProviderProps, t as TYPES_API_VERSION } from "./index-C-Za_LJK.js";
|
|
7
7
|
import { _ as RunStatusWithDateProps, a as RunProgressVariant, c as RunListItemData, d as RunStatus, h as RunStatusBadgeProps, i as RunProgressProps, l as RunListItemProps, r as RunProgressOverlayProps, u as RunListProps } from "./RunProgress-x8azUu6w.js";
|
|
8
8
|
import { _ as RecceFeatureMode, d as RecceActionOptions, f as SubmitRunTrackProps, g as InstanceInfoType, i as IdleTimeoutContextType, l as AxiosQueryParams, s as RecceActionProviderProps, u as RecceActionContextType, v as RecceFeatureToggles } from "./index-BU4oA57l.js";
|
|
9
9
|
import { t as ThemeColors } from "./useThemeColors-OwCMwSrx.js";
|