@datarecce/ui 1.59.0 → 1.60.0-nightly.20260809
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/ScreenshotDataGrid-C0a0wbBT.d.ts.map +1 -1
- package/dist/advanced.d.ts +1 -1
- package/dist/advanced.js +1 -1
- package/dist/{chartTheme-CRNnzu80.d.ts → chartTheme-Bvfcz7RJ.d.ts} +24 -2
- package/dist/{chartTheme-CRNnzu80.d.ts.map → chartTheme-Bvfcz7RJ.d.ts.map} +1 -1
- package/dist/components-run.js +1 -1
- package/dist/components.d.ts +1 -1
- package/dist/components.js +1 -1
- package/dist/hooks-CHOQS8OF.js +7 -0
- package/dist/hooks-CHOQS8OF.js.map +1 -0
- package/dist/hooks.js +1 -1
- package/dist/{index-BGsgHfs5.d.ts → index-DFyyDTjx.d.ts} +11 -2
- package/dist/{index-BGsgHfs5.d.ts.map → index-DFyyDTjx.d.ts.map} +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/{lineage-BNYgYQBZ.d.ts → lineage-DYzdL90Y.d.ts} +4 -3
- package/dist/{lineage-BNYgYQBZ.d.ts.map → lineage-DYzdL90Y.d.ts.map} +1 -1
- package/dist/primitives.d.ts +1 -1
- package/dist/primitives.js +1 -1
- package/dist/result.js +1 -1
- package/dist/src-wC_8HFG2.js +12 -0
- package/dist/src-wC_8HFG2.js.map +1 -0
- package/dist/theme-BFY2LXHk.js +3 -0
- package/dist/theme-BFY2LXHk.js.map +1 -0
- package/dist/theme.d.ts +2 -2
- package/dist/theme.js +1 -1
- package/dist/utils-svMSMuTZ.js +6 -0
- package/dist/utils-svMSMuTZ.js.map +1 -0
- package/dist/utils.d.ts +2 -2
- package/dist/utils.js +1 -1
- package/package.json +8 -8
- package/dist/hooks-DxCl_1oG.js +0 -7
- package/dist/hooks-DxCl_1oG.js.map +0 -1
- package/dist/src-GMigm_06.js +0 -12
- package/dist/src-GMigm_06.js.map +0 -1
- package/dist/theme-u98ih3Tv.js +0 -3
- package/dist/theme-u98ih3Tv.js.map +0 -1
- package/dist/utils-DITU6vUm.js +0 -6
- package/dist/utils-DITU6vUm.js.map +0 -1
package/dist/hooks.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import{Bt as e,C as t,Hn as n,S as r,Vn as i,_ as a,a as o,b as s,c,d as l,f as u,g as d,h as f,i as p,l as m,m as h,n as g,o as _,p as v,qn as y,r as b,s as x,t as S,u as C,v as w,x as T,y as E,zt as D}from"./hooks-
|
|
2
|
+
import{Bt as e,C as t,Hn as n,S as r,Vn as i,_ as a,a as o,b as s,c,d as l,f as u,g as d,h as f,i as p,l as m,m as h,n as g,o as _,p as v,qn as y,r as b,s as x,t as S,u as C,v as w,x as T,y as E,zt as D}from"./hooks-CHOQS8OF.js";import{Bt as O,ft as k}from"./utils-svMSMuTZ.js";export{i as CheckContextAdapter,C as IGNORE_SCREENSHOT_CLASS,T as LineageGraphAdapter,y as MuiProvider,w as QueryContextAdapter,a as RecceActionAdapter,h as RecceContextProvider,f as RecceShareStateContextProvider,E as defaultSqlQuery,b as unionColumns,e as useApiConfig,D as useAvatar,x as useCSVExport,m as useCheckEvents,k as useClipBoardToast,l as useCopyToClipboard,u as useCopyToClipboardButton,c as useCountdownToast,_ as useFeedbackCollectionToast,o as useGuideToast,v as useImageDownloadModal,O as useIsDark,p as useModelColumns,t as useMultiNodesAction,n as useRecceCheckContext,s as useRecceQueryContext,d as useRecceShareStateContext,g as useRun,r as useServerInfo,S as useThemeColors};
|
|
@@ -1184,6 +1184,7 @@ interface RowCountRowData {
|
|
|
1184
1184
|
name: string;
|
|
1185
1185
|
current: number | null;
|
|
1186
1186
|
}
|
|
1187
|
+
type RowCountChangeDirection = "increase" | "decrease" | "unchanged" | "added" | "removed" | "unavailable";
|
|
1187
1188
|
/**
|
|
1188
1189
|
* Calculates the delta string for row count comparison
|
|
1189
1190
|
*/
|
|
@@ -1202,6 +1203,14 @@ declare function rowCountDiffResultToDataFrame(result: RowCountDiffResult): Data
|
|
|
1202
1203
|
* @returns DataFrame with name and current columns
|
|
1203
1204
|
*/
|
|
1204
1205
|
declare function rowCountResultToDataFrame(result: RowCountResult): DataFrame;
|
|
1206
|
+
/**
|
|
1207
|
+
* Describes how the current row count relates to the base row count.
|
|
1208
|
+
*
|
|
1209
|
+
* This is intentionally separate from diff status: "added" and "removed"
|
|
1210
|
+
* describe model presence, while "increase" and "decrease" describe a
|
|
1211
|
+
* quantitative change between two present models.
|
|
1212
|
+
*/
|
|
1213
|
+
declare function getRowCountChangeDirection(base: number | null, current: number | null): RowCountChangeDirection;
|
|
1205
1214
|
/**
|
|
1206
1215
|
* Determines the diff status for a row count entry
|
|
1207
1216
|
*
|
|
@@ -1603,5 +1612,5 @@ declare function getValueAtPath<T = RowDataTypes>(obj: Record<string, T | undefi
|
|
|
1603
1612
|
*/
|
|
1604
1613
|
declare function getSettingsUrl(instanceInfo: RecceInstanceInfo | undefined, fallbackUrl: string): string;
|
|
1605
1614
|
//#endregion
|
|
1606
|
-
export {
|
|
1607
|
-
//# sourceMappingURL=index-
|
|
1615
|
+
export { getHeaderCellClass as $, GridColumnsConfig as $t, validateToValueDiffGridInputs as A, QueryDataDiffGridOptions as At, BuildDiffRowsResult as B, createCellClassBase as Bt, DataGridValidationError as C, ToDataGridConfig as Ct, validatePrimaryKeyConfig as D, SimpleColumnDefinition as Dt, validateDataFrame as E, BuildSimpleColumnDefinitionsResult as Et, getRowCountChangeDirection as F, DiffColumnDefinition as Ft, RowStats as G, DataFrameColumnGroupHeaderProps as Gt, buildDiffRows as H, toDiffColumn as Ht, getRowCountDiffStatus as I, buildDiffColumnDefinitions as It, buildMergedColumnMap as J, SimpleColumnRenderComponents as Jt, buildColumnMap as K, DataFrameColumnHeaderProps as Kt, rowCountDiffResultToDataFrame as L, DiffColumnConfig as Lt, RowCountDiffRowData as M, toDataDiffGrid as Mt, RowCountRowData as N, BuildDiffColumnDefinitionsConfig as Nt, validateToDataDiffGridInputs as O, buildSimpleColumnDefinitions as Ot, calculateDelta as P, BuildDiffColumnDefinitionsResult as Pt, getCellClass as Q, ColumnOrderConfig as Qt, rowCountResultToDataFrame as R, DiffColumnResult as Rt, deltaPercentageString as S, isColumnImpacted as Sn, QueryDataGridOptions as St, validateColumns as T, BuildSimpleColumnDefinitionsConfig as Tt, ColumnMapEntry as U, CellRendererFunction as Ut, DiffColumnMapEntry as V, createCellClassCurrent as Vt, MergeColumnMapEntry as W, ColumnRenderComponents as Wt, determineRowStatus as X, columnPrecisionSelectOptions as Xt, columnRenderedValue as Y, ColumnPrecisionOption as Yt, formatSmartDecimal as Z, ColumnConfig as Zt, formatTimeOfDay as _, copyToClipboard as _n, toValueDiffGridConfigured as _t, hashStringToNumber as a, isPrimaryKeyColumn as an, RowCountDataGridResult as at, formatSelectColumns as b, downloadTSV as bn, toValueDiffGrid as bt, MergeStatus as c, generateTimestamp as cn, BuildSimpleColumnDefinitionsConfigConfigured as ct, formatAsAbbreviatedNumber as d, toTSV as dn, buildSimpleColumnDefinitionsConfigured as dt, buildColumnOrder as en, getPrimaryKeyValue as et, formatIntervalMinMax as f, CSVData as fn, defaultRenderComponents as ft, formatEpochSeconds as g, toExcelBlob as gn, toDiffColumnConfigured as gt, formatDuration as h, supportsCSVExport as hn, toDataGridConfigured as ht, getValueAtPath as i, isPinnedColumn as in, toRowCountDiffDataGrid as it, RowCountChangeDirection as j, ToDataDiffGridConfig as jt, validateToDataGridInputs as k, DataDiffGridResult as kt, mergeKeys as l, formatRowCount as ln, DiffColumnConfigConfigured as lt, TimeFormatStyle as m, extractCSVData as mn, toDataDiffGridConfigured as mt, dataFrameToRowObjects as n, getSimpleDisplayColumns as nn, validatePrimaryKeys as nt, keyToNumber as o, shouldIncludeColumn as on, toRowCountDataGrid as ot, formatNumber as p, CSVExportOptions as pn, defaultSimpleRenderComponents as pt, buildJoinedColumnMap as q, DiffColumnRenderComponents as qt, getCaseInsensitive as r, isExcludedColumn as rn, RowCountDiffDataGridResult as rt, isSchemaChanged as s, generateCSVFilename as sn, BuildDiffColumnDefinitionsConfigConfigured as st, getSettingsUrl as t, getDisplayColumns as tn, toRenderedValue as tt, mergeKeysWithStatus as u, toCSV as un, buildDiffColumnDefinitionsConfigured as ut, formatTimeToNow as v, downloadCSV as vn, ToValueDiffGridConfig as vt, validateColumnDataAlignment as w, toDataGrid as wt, extractSchemas as x, cllColumnId as xn, DataGridResult as xt, formatTimestamp as y, downloadExcel as yn, ValueDiffGridResult as yt, BuildDiffRowsConfig as z, RecceColumnContext as zt };
|
|
1616
|
+
//# sourceMappingURL=index-DFyyDTjx.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-
|
|
1
|
+
{"version":3,"file":"index-DFyyDTjx.d.ts","names":[],"sources":["../src/utils/cllColumnId.ts","../src/utils/csv/browser.ts","../src/utils/csv/excel.ts","../src/utils/csv/extractors.ts","../src/utils/csv/format.ts","../src/utils/csv/index.ts","../src/utils/dataGrid/columnBuilders.ts","../src/utils/dataGrid/columnPrecisionOptions.ts","../src/utils/dataGrid/renderTypes.ts","../src/utils/dataGrid/toDiffColumn.tsx","../src/utils/dataGrid/diffColumnBuilder.tsx","../src/utils/dataGrid/generators/toDataDiffGrid.ts","../src/utils/dataGrid/simpleColumnBuilder.tsx","../src/utils/dataGrid/generators/toDataGrid.ts","../src/utils/dataGrid/generators/toValueDiffGrid.ts","../src/utils/dataGrid/configured.ts","../src/utils/dataGrid/generators/toRowCountDataGrid.ts","../src/utils/dataGrid/generators/toRowCountDiffDataGrid.ts","../src/utils/dataGrid/gridUtils.ts","../src/utils/dataGrid/rowBuilders.ts","../src/utils/dataGrid/rowCountUtils.ts","../src/utils/dataGrid/validation.ts","../src/utils/delta.ts","../src/utils/envUtils.ts","../src/utils/formatSelect.ts","../src/utils/formatTime.ts","../src/utils/formatters.ts","../src/utils/mergeKeys.ts","../src/utils/schemaDiff.ts","../src/utils/transforms.ts","../src/utils/urls.ts"],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { Bt as aggregateRuns, Cn as ServerInfoResult, Dn as getServerInfo, En as
|
|
|
3
3
|
import { a as LineageGraphColumnNode, c as LineageGraphNode, d as NodeAction, f as SelectMode, i as LineageGraph, l as LineageGraphNodes, m as isLineageGraphNode, n as ActionState, o as LineageGraphContextType, p as isLineageGraphColumnNode, r as EnvInfo, s as LineageGraphEdge, t as ActionMode, u as LineageViewContextType } from "./types-C46Og_jt.js";
|
|
4
4
|
import { _ as union, a as LineageGraphProviderProps, c as COLUMN_HEIGHT, d as getNeighborSet, f as intersect, g as toReactFlowBasic, h as selectUpstream, i as LineageGraphProvider, l as NodeColumnSetMap, m as selectDownstream, o as useLineageGraphContext, p as layoutWithDagre, s as useRunsAggregated, u as buildLineageGraph } from "./index-C-OC9Ll8.js";
|
|
5
5
|
import { A as setKeepAliveCallback, D as getLastKeepAliveTime, J as cacheKeys, O as resetKeepAliveState, k as sendKeepAlive } from "./api-DKivoKnJ.js";
|
|
6
|
-
import { S as classifyType, _ as DataTypeIcon, a as ChecksView, b as buildColumnTooltip, g as SquareIconProps, h as SquareIcon, i as useRecceTheme, o as ChecksViewProps, r as VERSION, v as DataTypeIconProps, x as TypeCategory, y as ColumnTooltipInput } from "./lineage-
|
|
6
|
+
import { S as classifyType, _ as DataTypeIcon, a as ChecksView, b as buildColumnTooltip, g as SquareIconProps, h as SquareIcon, i as useRecceTheme, o as ChecksViewProps, r as VERSION, v as DataTypeIconProps, x as TypeCategory, y as ColumnTooltipInput } from "./lineage-DYzdL90Y.js";
|
|
7
7
|
import { A as DiffTextProps, G as SchemaDataGridOptions, J as SchemaRow, K as SchemaDataGridResult, Q as toSingleEnvDataGrid, X as mergeColumns, Y as SingleEnvSchemaDataGridResult, Z as toSchemaDataGrid, _n as LineageView, f as HSplit, k as DiffText, m as VSplit, p as SplitProps, q as SchemaDiffRow, vn as LineageViewProps, yn as LineageViewRef } from "./primitives-dcNT95-H.js";
|
|
8
8
|
import { _ as CheckProviderProps, a as RoutingConfig, b as LineageCanvasProps, c as useRouting, d as QueryProviderProps, f as QueryResult, g as CheckProvider, h as CheckContextType, i as NavigateOptions, l as QueryContextType, m as Check, n as RecceProvider, o as RoutingContextValue, p as useQueryContext, r as RecceProviderProps, s as useAppLocation, u as QueryProvider, v as useCheckContext, y as LineageCanvas } from "./index-BbEDCE3U.js";
|
|
9
9
|
import { a as ResultViewProps, c as ScreenshotWrapperType, i as ResultViewData, n as CreatedResultViewProps, o as ResultViewRef, r as ResultViewConfig, s as ResultViewTransformOptions, t as createResultView } from "./index-FgjGyUVN.js";
|
|
@@ -13,5 +13,5 @@ import { n as useThemeColors, t as ThemeColors } from "./useThemeColors-CVVTKyoy
|
|
|
13
13
|
import { r as theme, s as colors, t as Theme } from "./index-BJaWyLX1.js";
|
|
14
14
|
import { A as RecceShareStateContextProvider, B as CheckContextAdapter, D as useCopyToClipboard, E as IGNORE_SCREENSHOT_CLASS, F as OSSQueryContext, H as useRecceCheckContext, I as QueryContextAdapter, L as defaultSqlQuery, N as RecceActionAdapter, O as useCopyToClipboardButton, P as RecceActionOptions, R as useRecceQueryContext, V as OSSCheckContext, _ as useCSVExport, a as MultiNodesActionTrackProps, b as useCheckEvents, c as UseMultiNodesActionOptions, d as UseModelColumnsReturn, f as unionColumns, g as useFeedbackCollectionToast, i as MultiNodesActionCallbacks, j as useRecceShareStateContext, k as useImageDownloadModal, l as UseMultiNodesActionReturn, m as useIsDark, n as UseRunResult, o as MultiNodesActionTracking, p as useModelColumns, r as useRun, s as MultiNodesActionType, u as useMultiNodesAction, z as LineageGraphAdapter } from "./index-BkSmTDnJ.js";
|
|
15
15
|
import { n as DisableTooltipMessages, t as DisableTooltipMessageKey } from "./index-Cq6tdNkH.js";
|
|
16
|
-
import { S as deltaPercentageString, s as isSchemaChanged, v as formatTimeToNow, x as extractSchemas, y as formatTimestamp } from "./index-
|
|
16
|
+
import { S as deltaPercentageString, s as isSchemaChanged, v as formatTimeToNow, x as extractSchemas, y as formatTimestamp } from "./index-DFyyDTjx.js";
|
|
17
17
|
export { type ActionMode, type ActionState, type AxiosQueryParams, COLUMN_HEIGHT, type CatalogMetadata, type Check, CheckContextAdapter, type CheckContextType, CheckProvider, type CheckProviderProps, ChecksView, type ChecksViewProps, type ColumnTooltipInput, type CreatedResultViewProps, DataTypeIcon, type DataTypeIconProps, DiffText, type DiffTextProps, type DisableTooltipMessageKey, DisableTooltipMessages, type EnvInfo, type GitInfo, HSplit, IGNORE_SCREENSHOT_CLASS, type IdleTimeoutContextType, IdleTimeoutProvider, type InstanceInfoType, LineageCanvas, type LineageCanvasProps, type LineageData, type LineageDataFromMetadata, type LineageGraph, LineageGraphAdapter, type LineageGraphColumnNode, type LineageGraphContextType, type LineageGraphEdge, type LineageGraphNode, type LineageGraphNodes, LineageGraphProvider, type LineageGraphProviderProps, LineageView, type LineageViewContextType, type LineageViewProps, type LineageViewRef, type ManifestMetadata, type MergedEdgeData, type MergedLineageEnvMetadata, type MergedLineageResponse, type MergedNodeData, type ModelEnvDetail, type ModelInfoResult, type MultiNodesActionCallbacks, type MultiNodesActionTrackProps, type MultiNodesActionTracking, type MultiNodesActionType, type NavigateOptions, type NodeAction, type NodeColumnData, type NodeColumnSetMap, type NodeData, type OSSCheckContext, type OSSQueryContext, type RecceActionOptions as OSSRecceActionOptions, type PullRequestInfo, QueryContextAdapter, type QueryContextType, QueryProvider, type QueryProviderProps, type QueryResult, RecceActionAdapter, type RecceActionContextType, type RecceActionOptions$1 as RecceActionOptions, RecceActionProvider, type RecceActionProviderProps, type RecceFeatureMode, type RecceFeatureToggles, type RecceInstanceInfo, RecceInstanceInfoProvider, RecceProvider, type RecceProviderProps, type RecceServerFlags, RecceShareStateContextProvider, type ResultViewConfig, type ResultViewData, type ResultViewProps, type ResultViewRef, type ResultViewTransformOptions, type RoutingConfig, type RoutingContextValue, type RunsAggregated, type SQLMeshInfo, type SchemaDataGridOptions, type SchemaDataGridResult, type SchemaDiffRow, type SchemaRow, type ScreenshotWrapperType, type SelectMode, type ServerInfoResult, type ServerMode, type SingleEnvSchemaDataGridResult, type SplitProps, SquareIcon, type SquareIconProps, type StateMetadata, type SubmitRunTrackProps, type Theme, type ThemeColors, type TypeCategory, type UseModelColumnsReturn, type UseMultiNodesActionOptions, type UseMultiNodesActionReturn, type UseRunResult, VERSION, VSplit, aggregateRuns, buildColumnTooltip, buildLineageGraph, cacheKeys, classifyType, colors, createResultView, defaultFeatureToggles, defaultInstanceInfo, defaultSqlQuery, deltaPercentageString, extractSchemas, formatTimeToNow, formatTimestamp, getLastKeepAliveTime, getModelInfo, getNeighborSet, getRecceInstanceInfo, getServerFlag, getServerInfo, intersect, isLineageGraphColumnNode, isLineageGraphNode, isSchemaChanged, layoutWithDagre, markRelaunchHintCompleted, mergeColumns, reorderChecks, resetKeepAliveState, selectDownstream, selectUpstream, sendKeepAlive, setKeepAliveCallback, theme, toReactFlowBasic, toSchemaDataGrid, toSingleEnvDataGrid, union, unionColumns, useApiClient, useApiConfig, useApiConfigOptional, useAppLocation, useCSVExport, useCheckContext, useCheckEvents, useChecks, useCopyToClipboard, useCopyToClipboardButton, useFeedbackCollectionToast, useIdleDetection, useIdleTimeout, useIdleTimeoutSafe, useImageDownloadModal, useIsDark, useLineageGraphContext, useModelColumns, useMultiNodesAction, useQueryContext, useRecceActionContext, useRecceCheckContext, useRecceInstanceContext, useRecceInstanceInfo, useRecceQueryContext, useRecceServerFlag, useRecceShareStateContext, useRecceTheme, useRouting, useRun, useRunsAggregated, useThemeColors };
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import{C as e,I as t,P as n,X as r,w as i}from"./api-S5ho3Qs3.js";import{a,d as o,f as s,i as c,l,n as u,o as d,r as f,s as p,t as m,u as h}from"./keepAlive-bjIHulj-.js";import{A as g,C as _,D as v,E as y,O as b,S as x,T as S,a as C,b as w,c as T,f as E,i as D,j as O,k,l as A,m as j,n as M,o as N,p as P,r as F,s as I,t as L,v as R,w as z,x as B,y as V}from"./utils-D2GZ30yl.js";import{t as H}from"./theme-
|
|
2
|
+
import{C as e,I as t,P as n,X as r,w as i}from"./api-S5ho3Qs3.js";import{a,d as o,f as s,i as c,l,n as u,o as d,r as f,s as p,t as m,u as h}from"./keepAlive-bjIHulj-.js";import{A as g,C as _,D as v,E as y,O as b,S as x,T as S,a as C,b as w,c as T,f as E,i as D,j as O,k,l as A,m as j,n as M,o as N,p as P,r as F,s as I,t as L,v as R,w as z,x as B,y as V}from"./utils-D2GZ30yl.js";import{t as H}from"./theme-BFY2LXHk.js";import{n as U}from"./colors-4aGxuAVw.js";import{Bn as W,C as G,Gn as K,Hn as q,Kn as J,Rn as Y,Un as X,Vn as Z,Wn as Q,_ as $,b as ee,ct as te,d as ne,et as re,f as ie,g as ae,h as oe,i as se,l as ce,lt as le,n as ue,nt as de,o as fe,p as pe,r as me,s as he,st as ge,t as _e,tt as ve,u as ye,v as be,x as xe,y as Se,zn as Ce}from"./hooks-CHOQS8OF.js";import{B as we,F as Te,H as Ee,U as De,V as Oe,n as ke,t as Ae,y as je}from"./src-wC_8HFG2.js";import{Bt as Me,Ht as Ne,_ as Pe,_t as Fe,l as Ie,n as Le,o as Re,s as ze}from"./utils-svMSMuTZ.js";import{t as Be}from"./constants-Bgp90yan.js";export{L as COLUMN_HEIGHT,Z as CheckContextAdapter,K as CheckProvider,ke as ChecksView,Y as DataTypeIcon,Fe as DiffText,Be as DisableTooltipMessages,te as HSplit,ye as IGNORE_SCREENSHOT_CLASS,B as IdleTimeoutProvider,Te as LineageCanvas,xe as LineageGraphAdapter,R as LineageGraphProvider,je as LineageView,be as QueryContextAdapter,X as QueryProvider,$ as RecceActionAdapter,g as RecceActionProvider,S as RecceInstanceInfoProvider,Oe as RecceProvider,oe as RecceShareStateContextProvider,we as SquareIcon,Ae as VERSION,le as VSplit,r as aggregateRuns,Ce as buildColumnTooltip,M as buildLineageGraph,s as cacheKeys,W as classifyType,U as colors,ge as createResultView,b as defaultFeatureToggles,k as defaultInstanceInfo,Se as defaultSqlQuery,Pe as deltaPercentageString,Ie as extractSchemas,Re as formatTimeToNow,ze as formatTimestamp,m as getLastKeepAliveTime,e as getModelInfo,F as getNeighborSet,a as getRecceInstanceInfo,d as getServerFlag,i as getServerInfo,D as intersect,P as isLineageGraphColumnNode,j as isLineageGraphNode,Le as isSchemaChanged,C as layoutWithDagre,p as markRelaunchHintCompleted,re as mergeColumns,n as reorderChecks,u as resetKeepAliveState,N as selectDownstream,I as selectUpstream,f as sendKeepAlive,c as setKeepAliveCallback,H as theme,T as toReactFlowBasic,ve as toSchemaDataGrid,de as toSingleEnvDataGrid,A as union,me as unionColumns,l as useApiClient,h as useApiConfig,o as useApiConfigOptional,Ee as useAppLocation,he as useCSVExport,J as useCheckContext,ce as useCheckEvents,t as useChecks,ne as useCopyToClipboard,ie as useCopyToClipboardButton,fe as useFeedbackCollectionToast,_ as useIdleDetection,x as useIdleTimeout,z as useIdleTimeoutSafe,pe as useImageDownloadModal,Me as useIsDark,V as useLineageGraphContext,se as useModelColumns,G as useMultiNodesAction,Q as useQueryContext,O as useRecceActionContext,q as useRecceCheckContext,y as useRecceInstanceContext,v as useRecceInstanceInfo,ee as useRecceQueryContext,E as useRecceServerFlag,ae as useRecceShareStateContext,Ne as useRecceTheme,De as useRouting,ue as useRun,w as useRunsAggregated,_e as useThemeColors};
|
|
@@ -12,7 +12,7 @@ import "./index-B6HXOuoV.js";
|
|
|
12
12
|
import "./RouteConfigContext-Dai2DVNI.js";
|
|
13
13
|
import "./index-BJaWyLX1.js";
|
|
14
14
|
import "./index-BkSmTDnJ.js";
|
|
15
|
-
import "./index-
|
|
15
|
+
import "./index-DFyyDTjx.js";
|
|
16
16
|
import "@tanstack/react-query";
|
|
17
17
|
import * as React$2 from "react";
|
|
18
18
|
import React$1, { CSSProperties, ComponentType, Dispatch, ForwardRefExoticComponent, PropsWithChildren, ReactNode, Ref, RefAttributes, SVGProps, SetStateAction } from "react";
|
|
@@ -784,7 +784,8 @@ declare const RowCountResultView: ForwardRefExoticComponent<RowCountResultViewPr
|
|
|
784
784
|
* Result view for comparing row counts between base and current environments
|
|
785
785
|
*
|
|
786
786
|
* Displays a grid with model names, base counts, current counts, and delta.
|
|
787
|
-
*
|
|
787
|
+
* The Delta cell uses current blue for increases and base orange for decreases,
|
|
788
|
+
* with arrows and signed values as non-color cues.
|
|
788
789
|
*
|
|
789
790
|
* @example
|
|
790
791
|
* ```tsx
|
|
@@ -1294,4 +1295,4 @@ declare function toReactFlow(lineageGraph: LineageGraph, options?: {
|
|
|
1294
1295
|
declare const layout: (nodes: LineageGraphNodes[], edges: LineageGraphEdge[], direction?: string) => void;
|
|
1295
1296
|
//#endregion
|
|
1296
1297
|
export { QueryForm as $, getIconForChangeStatus as A, HistogramDiffResultView as At, RowCountDiffRun as B, CheckDetailOss as Bt, TopKDiffResultView as C, RunTypeIconMap as Ct, IdleTimeoutBadge as D, RowCountTag as Dt, TopKDiffForm as E, RowCountSummary as Et, ChangeSummaryResult as F, ErrorBoundary$1 as Ft, DualSqlEditorProps as G, LineageTabContentProps as Gt, RowCountResultViewProps as H, MainLayout as Ht, ColumnChangeResult as I, CheckPageLoadingOss as It, SetupConnectionGuide as J, SqlEditor as K, ColumnAnnotation as Kt, NODE_CHANGE_STATUS_MSGS as L, CheckPageContentOss as Lt, ChangeSummary as M, HistogramResultViewProps as Mt, ChangeStatus as N, HistogramDiffForm as Nt, calculateChangeSummary as O, LineagePageOss as Ot, ChangeSummaryProps as P, supportsHistogramDiff as Pt, QueryPageOss as Q, HistoryToggle as R, CheckListOss as Rt, classifyType as S, NodeViewProps as St, TopKDiffRun as T, RowCountDiffTag as Tt, RowCountRun as U, EnvInfo as Ut, RowCountResultView as V, Main as Vt, DualSqlEditor as W, LineageTabContent as Wt, QueryResultView as X, SetupConnectionGuideProps as Y, QueryResultViewProps as Z, DataTypeIcon as _, StalenessMessageVariant as _t, ChecksView as a, ProfileResultView as at, buildColumnTooltip as b, NodeViewActionCallbacks as bt, ValueDiffResultViewProps as c, ProfileDiffForm as ct, ValueDiffFormParams as d, RecceNotification as dt, QueryFormProps as et, ValueDiffDetailResultView as f, LineageViewNotification as ft, SquareIconProps as g, StalenessBannerVariant as gt, SquareIcon as h, StalenessBannerProps as ht, useRecceTheme as i, ProfileDiffRun as it, SchemaSummary as j, HistogramDiffRun as jt, calculateColumnChange as k, FirstTimePopover as kt, ValueDiffRun as l, ProfileDiffFormParams as lt, ValueDiffDetailRun as m, StalenessBanner as mt, toReactFlow as n, QueryDiffResultViewProps as nt, ChecksViewProps as o, ProfileResultViewProps as ot, ValueDiffDetailResultViewProps as p, NotificationProps as pt, SqlEditorProps as q, VERSION as r, ProfileDiffResultView as rt, ValueDiffResultView as s, ProfileRun as st, layout as t, QueryDiffResultView as tt, ValueDiffForm as u, LearnHowLink as ut, DataTypeIconProps as v, StalenessToastAdapter as vt, TopKDiffResultViewProps as w, SchemaViewProps as wt, TypeCategory as x, NodeViewNodeData as xt, ColumnTooltipInput as y, NodeView as yt, RowCountDiffResultView as z, CheckEmptyStateOss as zt };
|
|
1297
|
-
//# sourceMappingURL=lineage-
|
|
1298
|
+
//# sourceMappingURL=lineage-DYzdL90Y.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lineage-
|
|
1
|
+
{"version":3,"file":"lineage-DYzdL90Y.d.ts","names":[],"sources":["../src/components/lineage/computeColumnLineage.ts","../src/components/lineage/LineageTabContent.tsx","../src/components/app/EnvInfo.tsx","../src/components/app/MainLayout.tsx","../src/components/check/CheckDetailOss.tsx","../src/components/check/CheckEmptyStateOss.tsx","../src/components/check/CheckListOss.tsx","../src/components/check/CheckPageContentOss.tsx","../src/components/check/CheckPageLoadingOss.tsx","../src/components/errorboundary/ErrorBoundary.tsx","../src/components/histogram/HistogramDiffForm.tsx","../src/components/histogram/HistogramResultView.tsx","../src/components/lineage/FirstTimePopover.tsx","../src/components/lineage/LineagePageOss.tsx","../src/components/lineage/NodeTag.tsx","../src/components/lineage/NodeView.tsx","../src/components/lineage/StalenessBanner.tsx","../src/components/lineage/styles.tsx","../src/components/notifications/LineageViewNotification.tsx","../src/components/onboarding-guide/Notification.tsx","../src/components/profile/ProfileDiffForm.tsx","../src/components/profile/ProfileResultView.tsx","../src/components/query/QueryDiffResultView.tsx","../src/components/query/QueryForm.tsx","../src/components/query/QueryPageOss.tsx","../src/components/query/QueryResultView.tsx","../src/components/query/SetupConnectionGuide.tsx","../src/components/query/SqlEditor.tsx","../src/components/rowcount/RowCountResultView.tsx","../src/components/shared/HistoryToggle.tsx","../src/components/summary/types.ts","../src/components/summary/ChangeSummary.tsx","../src/components/summary/SchemaSummary.tsx","../src/components/summary/utils.ts","../src/components/timeout/IdleTimeoutBadge.tsx","../src/components/top-k/TopKDiffForm.tsx","../src/components/top-k/TopKDiffResultView.tsx","../src/components/ui/DataTypeIcon/classifyType.ts","../src/components/ui/DataTypeIcon/tooltipText.ts","../src/components/ui/DataTypeIcon/index.tsx","../src/components/ui/SquareIcon.tsx","../src/components/valuediff/ValueDiffDetailResultView.tsx","../src/components/valuediff/ValueDiffForm.tsx","../src/components/valuediff/ValueDiffResultView.tsx","../src/components/views/ChecksView.tsx","../src/providers/contexts/ThemeContext.tsx","../src/index.ts","../src/components/lineage/lineage.ts"],"mappings":"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"}
|
package/dist/primitives.d.ts
CHANGED
|
@@ -3,6 +3,6 @@ import { s as LineageDiffViewOptions } from "./instanceInfo-D-WDYlKA.js";
|
|
|
3
3
|
import { $t as CheckEmptyState, A as DiffTextProps, At as TimelineEventData, B as CodeEditor, Bt as TransformationLegendItem, C as EmptyStateProps, Cn as LineageEdgeProps, Ct as HistogramDataset, D as DiffTextWithToast, Dn as NodeChangeStatus, Dt as isDisabledByNoResult, E as DropdownValuesInputSize, En as LineageNodeProps, Et as formatSqlAsMarkdown, F as ChangedOnlyCheckboxProps, Ft as NodeTag, Gt as LineageColumnNodeData, H as CodeEditorProps, Ht as COLUMN_NODE_WIDTH, I as DiffEditor, It as NodeTagProps, Jt as PresetCheckTemplateView, Kt as LineageColumnNodeProps, L as DiffEditorLanguage, Lt as ChangeStatusLegendItem, M as DiffDisplayModeSwitch, Mt as TimelineEventType, N as DiffDisplayModeSwitchProps, Nt as CommentInput, O as DiffTextWithToastProps, Ot as TimelineActor, P as ChangedOnlyCheckbox, Pt as CommentInputProps, Qt as CheckListProps, R as DiffEditorProps, Rt as LineageLegend, S as EmptyState, Sn as LineageEdgeData, St as HistogramDataType, T as DropdownValuesInputProps, Tn as LineageNodeData, Tt as buildCheckTitle, U as CodeEditorTheme, Ut as ColumnTransformationType, V as CodeEditorLanguage, Vt as COLUMN_NODE_HEIGHT, W as SchemaDiffStatus, Wt as LineageColumnNode, Xt as generateCheckTemplate, Yt as PresetCheckTemplateViewProps, Zt as CheckList, _ as MarkdownContent, _t as PairedHistogramContinuousProps, a as Toaster, an as CheckDescriptionProps, at as TopKBarChartProps, b as ExternalLinkConfirmDialogProps, bn as EdgeChangeStatus, bt as HistogramChart, c as useToaster, cn as CheckCardProps, ct as ProfileDistributionUnsupportedBanner, d as SplitPaneProps, dn as CheckBreadcrumb, dt as PairedHistogramDiscreteCountsData, en as CheckEmptyStateProps, f as HSplit, fn as CheckBreadcrumbProps, ft as PairedHistogramDiscreteData, g as ScreenshotBoxProps, gn as CheckActionsProps, gt as PairedHistogramContinuousData, h as ScreenshotBox, hn as CheckActions, ht as PairedHistogramContinuous, i as ToastOptions, in as CheckDescription, it as TopKBarChart, j as DiffDisplayMode, jt as TimelineEventProps, k as DiffText, kt as TimelineEvent, l as SplitDirection, ln as CheckRunStatus, lt as ProfileDistributionUnsupportedBannerProps, m as VSplit, mn as CheckActionType, mt as PairedHistogramDiscreteRanksData, n as ToggleSwitch, nn as CheckDetailProps, o as ToasterProvider, on as CheckCard, ot as TopKDataset, p as SplitProps, pn as CheckAction, pt as PairedHistogramDiscreteProps, q as SchemaDiffRow, qt as GenerateCheckTemplateOptions, r as ToggleSwitchProps, rn as CheckDetailTab, s as toaster, sn as CheckCardData, st as TopKItem, t as PRIMITIVES_API_VERSION, tn as CheckDetail, u as SplitPane, un as CheckType, ut as PairedHistogramDiscrete, v as MarkdownContentProps, vt as InlineProfileDistributionCell, w as DropdownValuesInput, wn as LineageNode, wt as buildCheckDescription, x as truncateUrl, xn as LineageEdge, xt as HistogramChartProps, y as ExternalLinkConfirmDialog, yn as LineageViewRef, yt as InlineProfileDistributionCellProps, z as DiffEditorTheme, zt as LineageLegendProps } from "./primitives-dcNT95-H.js";
|
|
4
4
|
import { A as RunListProps, B as inferRunStatus, C as RunProgressOverlayProps, D as RunListItem, E as RunList, F as RunStatusBadgeProps, I as RunStatusWithDate, L as RunStatusWithDateProps, M as RunStatusAndDate, N as RunStatusAndDateProps, O as RunListItemData, P as RunStatusBadge, R as formatRunDate, S as RunProgressOverlay, T as RunProgressVariant, a as RunFormParamTypes, b as RunToolbarProps, d as ViewOptionTypes, i as RegistryEntry, j as RunStatus, k as RunListItemProps, o as RunFormProps, r as RefTypes, s as RunResultViewProps, v as DiffViewOptions, w as RunProgressProps, x as RunProgress, y as RunToolbar, z as formatRunDateTime } from "./types-DEnyll2_.js";
|
|
5
5
|
import { a as EmptyRowsRenderer, c as GridReadyEvent, i as DataGridRow, l as ScreenshotDataGrid, n as ColGroupDef, o as EmptyRowsRendererProps, r as DataGridHandle, s as GetRowIdParams, t as ColDef, u as ScreenshotDataGridProps } from "./ScreenshotDataGrid-C0a0wbBT.js";
|
|
6
|
-
import {
|
|
6
|
+
import { g as getChartThemeColors, h as getChartBarColors, l as ChartBarColors, u as ChartThemeColors } from "./chartTheme-Bvfcz7RJ.js";
|
|
7
7
|
import { a as ResultViewProps, c as ScreenshotWrapperType, i as ResultViewData, n as CreatedResultViewProps, o as ResultViewRef, r as ResultViewConfig, s as ResultViewTransformOptions, t as createResultView } from "./index-FgjGyUVN.js";
|
|
8
8
|
export { COLUMN_NODE_HEIGHT, COLUMN_NODE_WIDTH, type ChangeStatusLegendItem, ChangedOnlyCheckbox, type ChangedOnlyCheckboxProps, type ChartBarColors, type ChartThemeColors, type CheckAction, type CheckActionType, CheckActions, type CheckActionsProps, CheckBreadcrumb, type CheckBreadcrumbProps, CheckCard, type CheckCardData, type CheckCardProps, CheckDescription, type CheckDescriptionProps, CheckDetail, type CheckDetailProps, type CheckDetailTab, CheckEmptyState, type CheckEmptyStateProps, CheckList, type CheckListProps, type CheckRunStatus, type CheckType, CodeEditor, type CodeEditorLanguage, type CodeEditorProps, type CodeEditorTheme, type ColDef, type ColGroupDef, type ColumnTransformationType, CommentInput, type CommentInputProps, type CreatedResultViewProps, type DataGridHandle, type DataGridHandle as RecceDataGridHandle, type DataGridRow, type DiffDisplayMode, DiffDisplayModeSwitch, type DiffDisplayModeSwitchProps, DiffEditor, type DiffEditorLanguage, type DiffEditorProps, type DiffEditorTheme, DiffText, type DiffTextProps, DiffTextWithToast, type DiffTextWithToastProps, type DiffViewOptions, DropdownValuesInput, type DropdownValuesInputProps, type DropdownValuesInputSize, type EdgeChangeStatus, EmptyRowsRenderer, type EmptyRowsRendererProps, EmptyState, type EmptyStateProps, ExternalLinkConfirmDialog, type ExternalLinkConfirmDialogProps, type GenerateCheckTemplateOptions, type GetRowIdParams, type GridReadyEvent, HSplit, HistogramChart, type HistogramChartProps, type HistogramDataType, type HistogramDataset, InlineProfileDistributionCell, type InlineProfileDistributionCellProps, LineageColumnNode, type LineageColumnNodeData, type LineageColumnNodeProps, type LineageDiffViewOptions, LineageEdge, type LineageEdgeData, type LineageEdgeProps, LineageLegend, type LineageLegendProps, LineageNode, type LineageNodeData, type LineageNodeProps, type LineageViewRef, MarkdownContent, type MarkdownContentProps, type NodeChangeStatus, NodeTag, type NodeTagProps, PRIMITIVES_API_VERSION, PairedHistogramContinuous, type PairedHistogramContinuousData, type PairedHistogramContinuousProps, PairedHistogramDiscrete, type PairedHistogramDiscreteCountsData, type PairedHistogramDiscreteData, type PairedHistogramDiscreteProps, type PairedHistogramDiscreteRanksData, PresetCheckTemplateView, type PresetCheckTemplateViewProps, ProfileDistributionUnsupportedBanner, type ProfileDistributionUnsupportedBannerProps, type RefTypes, type RegistryEntry, type ResultViewConfig, type ResultViewData, type ResultViewProps, type ResultViewRef, type ResultViewTransformOptions, type RunFormParamTypes, type RunFormProps, RunList, RunListItem, type RunListItemData, type RunListItemProps, type RunListProps, RunProgress, RunProgressOverlay, type RunProgressOverlayProps, type RunProgressProps, type RunProgressVariant, type RunResultViewProps, type RunStatus, RunStatusAndDate, type RunStatusAndDateProps, RunStatusBadge, type RunStatusBadgeProps, RunStatusWithDate, type RunStatusWithDateProps, RunToolbar, type RunToolbarProps, type SchemaDiffRow, type SchemaDiffStatus, ScreenshotBox, type ScreenshotBoxProps, ScreenshotDataGrid, type ScreenshotDataGridProps, type ScreenshotWrapperType, type SplitDirection, SplitPane, type SplitPaneProps, type SplitProps, type TimelineActor, TimelineEvent, type TimelineEventData, type TimelineEventProps, type TimelineEventType, type ToastOptions, Toaster, ToasterProvider, ToggleSwitch, type ToggleSwitchProps, TopKBarChart, type TopKBarChartProps, type TopKDataset, type TopKItem, type TransformationLegendItem, VSplit, type ViewOptionTypes, buildCheckDescription, buildCheckTitle, createResultView, formatRunDate, formatRunDateTime, formatSqlAsMarkdown, generateCheckTemplate, getChartBarColors, getChartThemeColors, inferRunStatus, isDisabledByNoResult, toaster, truncateUrl, useToaster };
|
package/dist/primitives.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"use client";import{f as e,p as t}from"./theme-
|
|
2
|
+
"use client";import{f as e,p as t}from"./theme-BFY2LXHk.js";import{At as n,Ct as r,Dt as i,Et as a,Ft as o,Gt as s,Ht as c,It as l,Kt as u,Lt as d,Mt as f,Nt as p,Ot as m,Pt as h,Qt as g,Rt as _,St as v,Tt as y,Ut as b,Vt as x,Wt as S,Xt as C,Yt as w,Zt as T,_n as E,_t as D,bn as O,bt as k,ct as A,dn as j,dt as M,fn as N,ft as P,gn as F,gt as I,hn as L,ht as R,jt as z,kt as B,lt as V,mn as H,mt as U,nn as W,ot as G,pn as K,pt as q,qt as J,st as Y,tn as X,ut as Z,vn as Q,vt as $,wt as ee,xn as te,xt as ne,yn as re,yt as ie}from"./hooks-CHOQS8OF.js";import{_t as ae,dt as oe,gt as se,ht as ce,mt as le,pt as ue}from"./utils-svMSMuTZ.js";export{re as COLUMN_NODE_HEIGHT,O as COLUMN_NODE_WIDTH,E as ChangedOnlyCheckbox,T as CheckActions,C as CheckBreadcrumb,w as CheckCard,J as CheckDescription,u as CheckDetail,s as CheckEmptyState,S as CheckList,b as CodeEditor,_ as CommentInput,L as DiffDisplayModeSwitch,I as DiffEditor,ae as DiffText,oe as DiffTextWithToast,H as DropdownValuesInput,$ as EmptyRowsRenderer,R as EmptyState,q as ExternalLinkConfirmDialog,A as HSplit,ne as HistogramChart,j as InlineProfileDistributionCell,te as LineageColumnNode,Q as LineageEdge,W as LineageLegend,X as LineageNode,P as MarkdownContent,g as NodeTag,G as PRIMITIVES_API_VERSION,K as PairedHistogramContinuous,N as PairedHistogramDiscrete,x as PresetCheckTemplateView,k as ProfileDistributionUnsupportedBanner,y as RunList,a as RunListItem,r as RunProgress,ee as RunProgressOverlay,i as RunStatusAndDate,m as RunStatusBadge,B as RunStatusWithDate,v as RunToolbar,M as ScreenshotBox,ie as ScreenshotDataGrid,Z as SplitPane,d as TimelineEvent,ue as Toaster,le as ToasterProvider,F as ToggleSwitch,D as TopKBarChart,V as VSplit,p as buildCheckDescription,h as buildCheckTitle,Y as createResultView,n as formatRunDate,z as formatRunDateTime,o as formatSqlAsMarkdown,c as generateCheckTemplate,e as getChartBarColors,t as getChartThemeColors,f as inferRunStatus,l as isDisabledByNoResult,ce as toaster,U as truncateUrl,se as useToaster};
|
package/dist/result.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"use client";import{st as e}from"./hooks-
|
|
2
|
+
"use client";import{st as e}from"./hooks-CHOQS8OF.js";export{e as createResultView};
|