@datarecce/ui 0.1.26 → 0.1.28
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/api.d.mts +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/{components-DoLZeY_e.mjs → components-Bt0G4cpr.mjs} +274 -239
- package/dist/components-Bt0G4cpr.mjs.map +1 -0
- package/dist/{components-Chaffojm.js → components-Cvfq_6t4.js} +274 -239
- package/dist/components-Cvfq_6t4.js.map +1 -0
- package/dist/components.d.mts +1 -1
- package/dist/components.d.ts +1 -1
- package/dist/components.js +1 -1
- package/dist/components.mjs +1 -1
- package/dist/hooks-BxV6qN9q.mjs +233 -0
- package/dist/hooks-BxV6qN9q.mjs.map +1 -0
- package/dist/hooks-CriUVJO1.js +287 -0
- package/dist/hooks-CriUVJO1.js.map +1 -0
- package/dist/hooks.d.mts +2 -2
- package/dist/hooks.d.ts +2 -2
- package/dist/hooks.js +9 -1
- package/dist/hooks.mjs +2 -2
- package/dist/{index-B-rZ52VO.d.ts → index-CUtFlKOo.d.ts} +228 -71
- package/dist/index-CUtFlKOo.d.ts.map +1 -0
- package/dist/{index-04n48ic2.d.mts → index-OJCzYajo.d.mts} +228 -71
- package/dist/index-OJCzYajo.d.mts.map +1 -0
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +10 -2
- package/dist/index.mjs +3 -3
- package/dist/types.d.mts +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
- package/dist/components-Chaffojm.js.map +0 -1
- package/dist/components-DoLZeY_e.mjs.map +0 -1
- package/dist/hooks-VXI-W5Aq.js +0 -40
- package/dist/hooks-VXI-W5Aq.js.map +0 -1
- package/dist/hooks-XsKEyc3k.mjs +0 -34
- package/dist/hooks-XsKEyc3k.mjs.map +0 -1
- package/dist/index-04n48ic2.d.mts.map +0 -1
- package/dist/index-B-rZ52VO.d.ts.map +0 -1
|
@@ -3,7 +3,7 @@ import * as axios0 from "axios";
|
|
|
3
3
|
import { AxiosInstance, AxiosResponse } from "axios";
|
|
4
4
|
import * as _tanstack_react_query0 from "@tanstack/react-query";
|
|
5
5
|
import { QueryClient } from "@tanstack/react-query";
|
|
6
|
-
import * as
|
|
6
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
7
7
|
import * as React$2 from "react";
|
|
8
8
|
import React$1, { CSSProperties, ComponentType, Dispatch, ForwardRefExoticComponent, ReactNode, Ref, RefAttributes, SetStateAction } from "react";
|
|
9
9
|
import { FallbackRender } from "@sentry/react";
|
|
@@ -14,6 +14,8 @@ import { IconType } from "react-icons";
|
|
|
14
14
|
import { ColDef, ColGroupDef, GridReadyEvent } from "ag-grid-community";
|
|
15
15
|
import { AgGridReactProps } from "ag-grid-react";
|
|
16
16
|
import { AnimationOptions } from "chart.js";
|
|
17
|
+
import * as next_dist_shared_lib_app_router_context_shared_runtime0 from "next/dist/shared/lib/app-router-context.shared-runtime";
|
|
18
|
+
import "next/navigation";
|
|
17
19
|
|
|
18
20
|
//#region recce-source/js/src/lib/api/axiosClient.d.ts
|
|
19
21
|
declare const axiosClient: axios0.AxiosInstance;
|
|
@@ -50,7 +52,7 @@ declare function MuiProvider({
|
|
|
50
52
|
children,
|
|
51
53
|
forcedTheme,
|
|
52
54
|
enableCssBaseline
|
|
53
|
-
}: MuiProviderProps):
|
|
55
|
+
}: MuiProviderProps): react_jsx_runtime1.JSX.Element;
|
|
54
56
|
//#endregion
|
|
55
57
|
//#region recce-source/js/src/components/ui/toaster.d.ts
|
|
56
58
|
/**
|
|
@@ -85,7 +87,7 @@ declare function ToasterProvider({
|
|
|
85
87
|
children
|
|
86
88
|
}: {
|
|
87
89
|
children: ReactNode;
|
|
88
|
-
}):
|
|
90
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
89
91
|
/**
|
|
90
92
|
* Hook to use the toaster
|
|
91
93
|
*/
|
|
@@ -93,7 +95,7 @@ declare function useToaster(): ToasterContextValue;
|
|
|
93
95
|
/**
|
|
94
96
|
* Toaster component that renders toasts from the standalone toaster
|
|
95
97
|
*/
|
|
96
|
-
declare function Toaster():
|
|
98
|
+
declare function Toaster(): react_jsx_runtime1.JSX.Element;
|
|
97
99
|
//#endregion
|
|
98
100
|
//#region recce-source/js/src/components/errorboundary/ErrorBoundary.d.ts
|
|
99
101
|
declare const ErrorBoundary: ({
|
|
@@ -102,11 +104,11 @@ declare const ErrorBoundary: ({
|
|
|
102
104
|
}: {
|
|
103
105
|
children: ReactNode;
|
|
104
106
|
fallback?: React$2.ReactElement | FallbackRender | undefined;
|
|
105
|
-
}) =>
|
|
107
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
106
108
|
//#endregion
|
|
107
109
|
//#region recce-source/js/src/components/split/Split.d.ts
|
|
108
|
-
declare const HSplit: (props: SplitProps) =>
|
|
109
|
-
declare const VSplit: (props: SplitProps) =>
|
|
110
|
+
declare const HSplit: (props: SplitProps) => react_jsx_runtime1.JSX.Element;
|
|
111
|
+
declare const VSplit: (props: SplitProps) => react_jsx_runtime1.JSX.Element;
|
|
110
112
|
//#endregion
|
|
111
113
|
//#region recce-source/js/src/components/screenshot/ScreenshotBox.d.ts
|
|
112
114
|
interface ScreenshotBoxProps extends BoxProps {
|
|
@@ -117,7 +119,7 @@ interface ScreenshotBoxProps extends BoxProps {
|
|
|
117
119
|
declare const ScreenshotBox: React$2.ForwardRefExoticComponent<Omit<ScreenshotBoxProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
118
120
|
//#endregion
|
|
119
121
|
//#region recce-source/js/src/components/lineage/LineagePage.d.ts
|
|
120
|
-
declare function LineagePage():
|
|
122
|
+
declare function LineagePage(): react_jsx_runtime1.JSX.Element;
|
|
121
123
|
//#endregion
|
|
122
124
|
//#region recce-source/js/src/lib/api/info.d.ts
|
|
123
125
|
/**
|
|
@@ -626,7 +628,7 @@ interface RunToolbarProps<VO> extends RunResultViewProps<VO> {
|
|
|
626
628
|
declare const RunToolbar: ({
|
|
627
629
|
warnings,
|
|
628
630
|
children
|
|
629
|
-
}: RunToolbarProps<DiffViewOptions>) =>
|
|
631
|
+
}: RunToolbarProps<DiffViewOptions>) => react_jsx_runtime1.JSX.Element;
|
|
630
632
|
//#endregion
|
|
631
633
|
//#region recce-source/js/src/components/data-grid/ScreenshotDataGrid.d.ts
|
|
632
634
|
/**
|
|
@@ -674,7 +676,7 @@ declare function ProfileDiffForm({
|
|
|
674
676
|
params,
|
|
675
677
|
onParamsChanged,
|
|
676
678
|
setIsReadyToExecute
|
|
677
|
-
}: ProfileDiffFormProp):
|
|
679
|
+
}: ProfileDiffFormProp): react_jsx_runtime1.JSX.Element;
|
|
678
680
|
//#endregion
|
|
679
681
|
//#region recce-source/js/src/components/valuediff/ValueDiffForm.d.ts
|
|
680
682
|
interface ValueDiffFormParams {
|
|
@@ -687,7 +689,7 @@ declare function ValueDiffForm({
|
|
|
687
689
|
params,
|
|
688
690
|
onParamsChanged,
|
|
689
691
|
setIsReadyToExecute
|
|
690
|
-
}: ValueDiffFormProp):
|
|
692
|
+
}: ValueDiffFormProp): react_jsx_runtime1.JSX.Element;
|
|
691
693
|
//#endregion
|
|
692
694
|
//#region recce-source/js/src/components/run/registry.d.ts
|
|
693
695
|
type ViewOptionTypes = LineageDiffViewOptions | DiffViewOptions | QueryViewOptions | QueryDiffViewOptions | ProfileDiffViewOptions | ValueDiffDetailViewOptions;
|
|
@@ -811,19 +813,19 @@ declare const LineageViewContext: React$1.Context<LineageViewContextType>;
|
|
|
811
813
|
declare const useLineageViewContext: () => LineageViewContextType | undefined;
|
|
812
814
|
//#endregion
|
|
813
815
|
//#region recce-source/js/src/components/lineage/LineageViewTopBar.d.ts
|
|
814
|
-
declare const LineageViewTopBar: () =>
|
|
816
|
+
declare const LineageViewTopBar: () => react_jsx_runtime1.JSX.Element;
|
|
815
817
|
//#endregion
|
|
816
818
|
//#region recce-source/js/src/components/lineage/GraphNode.d.ts
|
|
817
819
|
type GraphNodeProps = NodeProps<LineageGraphNode>;
|
|
818
|
-
declare function GraphNode(nodeProps: GraphNodeProps):
|
|
820
|
+
declare function GraphNode(nodeProps: GraphNodeProps): react_jsx_runtime1.JSX.Element;
|
|
819
821
|
//#endregion
|
|
820
822
|
//#region recce-source/js/src/components/lineage/GraphEdge.d.ts
|
|
821
823
|
type GraphEdgeProps = EdgeProps<LineageGraphEdge>;
|
|
822
|
-
declare function GraphEdge(props: GraphEdgeProps):
|
|
824
|
+
declare function GraphEdge(props: GraphEdgeProps): react_jsx_runtime1.JSX.Element;
|
|
823
825
|
//#endregion
|
|
824
826
|
//#region recce-source/js/src/components/lineage/GraphColumnNode.d.ts
|
|
825
827
|
type GrapeColumnNodeProps = NodeProps<LineageGraphColumnNode>;
|
|
826
|
-
declare function GraphColumnNode(nodeProps: GrapeColumnNodeProps):
|
|
828
|
+
declare function GraphColumnNode(nodeProps: GrapeColumnNodeProps): react_jsx_runtime1.JSX.Element;
|
|
827
829
|
//#endregion
|
|
828
830
|
//#region recce-source/js/src/components/lineage/NodeView.d.ts
|
|
829
831
|
interface NodeViewProps {
|
|
@@ -833,7 +835,7 @@ interface NodeViewProps {
|
|
|
833
835
|
declare function NodeView({
|
|
834
836
|
node,
|
|
835
837
|
onCloseNode
|
|
836
|
-
}: NodeViewProps):
|
|
838
|
+
}: NodeViewProps): react_jsx_runtime1.JSX.Element;
|
|
837
839
|
//#endregion
|
|
838
840
|
//#region recce-source/js/src/components/lineage/NodeSqlView.d.ts
|
|
839
841
|
interface NodeSqlViewProps {
|
|
@@ -841,20 +843,20 @@ interface NodeSqlViewProps {
|
|
|
841
843
|
}
|
|
842
844
|
declare const NodeSqlView: ({
|
|
843
845
|
node
|
|
844
|
-
}: NodeSqlViewProps) =>
|
|
846
|
+
}: NodeSqlViewProps) => react_jsx_runtime1.JSX.Element | "Not available";
|
|
845
847
|
//#endregion
|
|
846
848
|
//#region recce-source/js/src/components/lineage/NodeTag.d.ts
|
|
847
849
|
declare function ResourceTypeTag({
|
|
848
850
|
node
|
|
849
851
|
}: {
|
|
850
852
|
node: LineageGraphNode;
|
|
851
|
-
}):
|
|
853
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
852
854
|
interface ModelRowCountProps {
|
|
853
855
|
rowCount?: RowCountDiff;
|
|
854
856
|
}
|
|
855
857
|
declare function ModelRowCount({
|
|
856
858
|
rowCount
|
|
857
|
-
}: ModelRowCountProps):
|
|
859
|
+
}: ModelRowCountProps): react_jsx_runtime1.JSX.Element;
|
|
858
860
|
interface RowCountDiffTagProps {
|
|
859
861
|
node: LineageGraphNode;
|
|
860
862
|
rowCount?: RowCountDiff;
|
|
@@ -867,7 +869,7 @@ declare function RowCountDiffTag({
|
|
|
867
869
|
node,
|
|
868
870
|
onRefresh,
|
|
869
871
|
isFetching
|
|
870
|
-
}: RowCountDiffTagProps):
|
|
872
|
+
}: RowCountDiffTagProps): react_jsx_runtime1.JSX.Element;
|
|
871
873
|
interface RowCountTagProps {
|
|
872
874
|
node: LineageGraphNode;
|
|
873
875
|
rowCount?: RowCount;
|
|
@@ -877,10 +879,10 @@ interface RowCountTagProps {
|
|
|
877
879
|
}
|
|
878
880
|
//#endregion
|
|
879
881
|
//#region recce-source/js/src/components/lineage/SetupConnectionBanner.d.ts
|
|
880
|
-
declare function SetupConnectionBanner():
|
|
882
|
+
declare function SetupConnectionBanner(): react_jsx_runtime1.JSX.Element;
|
|
881
883
|
//#endregion
|
|
882
884
|
//#region recce-source/js/src/components/query/QueryPage.d.ts
|
|
883
|
-
declare const QueryPage: () =>
|
|
885
|
+
declare const QueryPage: () => react_jsx_runtime1.JSX.Element;
|
|
884
886
|
//#endregion
|
|
885
887
|
//#region recce-source/js/src/components/query/QueryForm.d.ts
|
|
886
888
|
interface QueryFormProps extends BoxProps {
|
|
@@ -891,7 +893,7 @@ declare const QueryForm: ({
|
|
|
891
893
|
defaultPrimaryKeys,
|
|
892
894
|
onPrimaryKeysChange,
|
|
893
895
|
...props
|
|
894
|
-
}: QueryFormProps) =>
|
|
896
|
+
}: QueryFormProps) => react_jsx_runtime1.JSX.Element;
|
|
895
897
|
//#endregion
|
|
896
898
|
//#region recce-source/js/src/components/query/SqlEditor.d.ts
|
|
897
899
|
interface SqlEditorProps {
|
|
@@ -927,7 +929,7 @@ declare function SqlEditor({
|
|
|
927
929
|
manifestData,
|
|
928
930
|
schemas,
|
|
929
931
|
...props
|
|
930
|
-
}: SqlEditorProps):
|
|
932
|
+
}: SqlEditorProps): react_jsx_runtime1.JSX.Element;
|
|
931
933
|
//#endregion
|
|
932
934
|
//#region recce-source/js/src/components/query/QueryResultView.d.ts
|
|
933
935
|
interface QueryResultViewProp extends RunResultViewProps<QueryViewOptions> {
|
|
@@ -957,10 +959,10 @@ declare const DiffText: ({
|
|
|
957
959
|
grayOut,
|
|
958
960
|
noCopy,
|
|
959
961
|
fontSize
|
|
960
|
-
}: DiffTextProps) =>
|
|
962
|
+
}: DiffTextProps) => react_jsx_runtime1.JSX.Element;
|
|
961
963
|
//#endregion
|
|
962
964
|
//#region recce-source/js/src/components/query/SetupConnectionGuide.d.ts
|
|
963
|
-
declare function SetupConnectionGuide():
|
|
965
|
+
declare function SetupConnectionGuide(): react_jsx_runtime1.JSX.Element;
|
|
964
966
|
//#endregion
|
|
965
967
|
//#region recce-source/js/src/components/editor/CodeEditor.d.ts
|
|
966
968
|
type CodeEditorLanguage = "sql" | "yaml";
|
|
@@ -995,7 +997,7 @@ declare function CodeEditor({
|
|
|
995
997
|
className,
|
|
996
998
|
theme,
|
|
997
999
|
keyBindings
|
|
998
|
-
}: CodeEditorProps):
|
|
1000
|
+
}: CodeEditorProps): react_jsx_runtime1.JSX.Element;
|
|
999
1001
|
//#endregion
|
|
1000
1002
|
//#region recce-source/js/src/components/editor/DiffEditor.d.ts
|
|
1001
1003
|
type DiffEditorLanguage = "sql" | "yaml";
|
|
@@ -1025,7 +1027,7 @@ declare function DiffEditor({
|
|
|
1025
1027
|
className,
|
|
1026
1028
|
theme,
|
|
1027
1029
|
onModifiedChange
|
|
1028
|
-
}: DiffEditorProps):
|
|
1030
|
+
}: DiffEditorProps): react_jsx_runtime1.JSX.Element;
|
|
1029
1031
|
//#endregion
|
|
1030
1032
|
//#region recce-source/js/src/components/schema/SchemaView.d.ts
|
|
1031
1033
|
interface SchemaViewProps {
|
|
@@ -1059,7 +1061,7 @@ declare function ColumnNameCell({
|
|
|
1059
1061
|
singleEnv?: boolean;
|
|
1060
1062
|
cllRunning?: boolean;
|
|
1061
1063
|
showMenu?: boolean;
|
|
1062
|
-
}):
|
|
1064
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
1063
1065
|
//#endregion
|
|
1064
1066
|
//#region recce-source/js/src/components/check/CheckList.d.ts
|
|
1065
1067
|
declare const CheckList: ({
|
|
@@ -1072,7 +1074,7 @@ declare const CheckList: ({
|
|
|
1072
1074
|
selectedItem: string | null;
|
|
1073
1075
|
onCheckSelected: (checkId: string) => void;
|
|
1074
1076
|
onChecksReordered: (source: number, destination: number) => void;
|
|
1075
|
-
}) =>
|
|
1077
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1076
1078
|
//#endregion
|
|
1077
1079
|
//#region recce-source/js/src/components/check/CheckDetail.d.ts
|
|
1078
1080
|
interface CheckDetailProps {
|
|
@@ -1092,7 +1094,7 @@ interface CheckBreadcrumbProps {
|
|
|
1092
1094
|
declare function CheckBreadcrumb({
|
|
1093
1095
|
name,
|
|
1094
1096
|
setName
|
|
1095
|
-
}: CheckBreadcrumbProps):
|
|
1097
|
+
}: CheckBreadcrumbProps): react_jsx_runtime1.JSX.Element;
|
|
1096
1098
|
//#endregion
|
|
1097
1099
|
//#region recce-source/js/src/components/check/CheckDescription.d.ts
|
|
1098
1100
|
interface CheckDescriptionProps {
|
|
@@ -1102,10 +1104,10 @@ interface CheckDescriptionProps {
|
|
|
1102
1104
|
declare function CheckDescription({
|
|
1103
1105
|
value,
|
|
1104
1106
|
onChange
|
|
1105
|
-
}: CheckDescriptionProps):
|
|
1107
|
+
}: CheckDescriptionProps): react_jsx_runtime1.JSX.Element;
|
|
1106
1108
|
//#endregion
|
|
1107
1109
|
//#region recce-source/js/src/components/check/CheckEmptyState.d.ts
|
|
1108
|
-
declare const CheckEmptyState: () =>
|
|
1110
|
+
declare const CheckEmptyState: () => react_jsx_runtime1.JSX.Element;
|
|
1109
1111
|
//#endregion
|
|
1110
1112
|
//#region recce-source/js/src/components/check/LineageDiffView.d.ts
|
|
1111
1113
|
interface LineageDiffViewProps {
|
|
@@ -1125,10 +1127,10 @@ interface RunPageProps$1 {
|
|
|
1125
1127
|
}
|
|
1126
1128
|
declare const RunPage: ({
|
|
1127
1129
|
runId
|
|
1128
|
-
}: RunPageProps$1) =>
|
|
1130
|
+
}: RunPageProps$1) => react_jsx_runtime1.JSX.Element;
|
|
1129
1131
|
//#endregion
|
|
1130
1132
|
//#region recce-source/js/src/components/run/RunList.d.ts
|
|
1131
|
-
declare const RunList: () =>
|
|
1133
|
+
declare const RunList: () => react_jsx_runtime1.JSX.Element;
|
|
1132
1134
|
//#endregion
|
|
1133
1135
|
//#region recce-source/js/src/components/run/RunView.d.ts
|
|
1134
1136
|
interface RunViewProps<VO = ViewOptionTypes> {
|
|
@@ -1166,7 +1168,7 @@ declare const RunModal: ({
|
|
|
1166
1168
|
title,
|
|
1167
1169
|
params: defaultParams,
|
|
1168
1170
|
RunForm
|
|
1169
|
-
}: RunModalProps) =>
|
|
1171
|
+
}: RunModalProps) => react_jsx_runtime1.JSX.Element;
|
|
1170
1172
|
//#endregion
|
|
1171
1173
|
//#region recce-source/js/src/components/run/RunResultPane.d.ts
|
|
1172
1174
|
interface RunPageProps {
|
|
@@ -1177,14 +1179,14 @@ interface RunPageProps {
|
|
|
1177
1179
|
declare const RunResultPane: ({
|
|
1178
1180
|
onClose,
|
|
1179
1181
|
isSingleEnvironment
|
|
1180
|
-
}: RunPageProps) =>
|
|
1182
|
+
}: RunPageProps) => react_jsx_runtime1.JSX.Element;
|
|
1181
1183
|
//#endregion
|
|
1182
1184
|
//#region recce-source/js/src/components/run/RunStatusAndDate.d.ts
|
|
1183
1185
|
declare const RunStatusAndDate: ({
|
|
1184
1186
|
run
|
|
1185
1187
|
}: {
|
|
1186
1188
|
run: Run;
|
|
1187
|
-
}) =>
|
|
1189
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1188
1190
|
//#endregion
|
|
1189
1191
|
//#region recce-source/js/src/components/profile/ProfileDiffResultView.d.ts
|
|
1190
1192
|
type ProfileDiffResultViewProp = RunResultViewProps<ProfileDiffViewOptions>;
|
|
@@ -1206,7 +1208,7 @@ declare function HistogramDiffForm({
|
|
|
1206
1208
|
params,
|
|
1207
1209
|
onParamsChanged,
|
|
1208
1210
|
setIsReadyToExecute
|
|
1209
|
-
}: HistogramDiffEditProps):
|
|
1211
|
+
}: HistogramDiffEditProps): react_jsx_runtime1.JSX.Element;
|
|
1210
1212
|
//#endregion
|
|
1211
1213
|
//#region recce-source/js/src/components/histogram/HistogramDiffResultView.d.ts
|
|
1212
1214
|
type HistogramDiffResultViewProp = RunResultViewProps;
|
|
@@ -1218,7 +1220,7 @@ declare function TopKDiffForm({
|
|
|
1218
1220
|
params,
|
|
1219
1221
|
onParamsChanged,
|
|
1220
1222
|
setIsReadyToExecute
|
|
1221
|
-
}: TopKDiffFormProps):
|
|
1223
|
+
}: TopKDiffFormProps): react_jsx_runtime1.JSX.Element;
|
|
1222
1224
|
//#endregion
|
|
1223
1225
|
//#region recce-source/js/src/components/top-k/TopKDiffResultView.d.ts
|
|
1224
1226
|
type TopKDiffResultViewProp = RunResultViewProps;
|
|
@@ -1251,7 +1253,7 @@ declare function HistogramChart({
|
|
|
1251
1253
|
data,
|
|
1252
1254
|
hideAxis,
|
|
1253
1255
|
animation
|
|
1254
|
-
}: HistogramChartProps):
|
|
1256
|
+
}: HistogramChartProps): react_jsx_runtime1.JSX.Element;
|
|
1255
1257
|
//#endregion
|
|
1256
1258
|
//#region recce-source/js/src/components/charts/TopKSummaryList.d.ts
|
|
1257
1259
|
interface Props$2 {
|
|
@@ -1267,17 +1269,17 @@ declare function TopKSummaryList({
|
|
|
1267
1269
|
topk,
|
|
1268
1270
|
valids,
|
|
1269
1271
|
isDisplayTopTen
|
|
1270
|
-
}: Props$2):
|
|
1272
|
+
}: Props$2): react_jsx_runtime1.JSX.Element;
|
|
1271
1273
|
//#endregion
|
|
1272
1274
|
//#region recce-source/js/src/components/charts/SquareIcon.d.ts
|
|
1273
1275
|
declare function SquareIcon({
|
|
1274
1276
|
color
|
|
1275
1277
|
}: {
|
|
1276
1278
|
color: string;
|
|
1277
|
-
}):
|
|
1279
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
1278
1280
|
//#endregion
|
|
1279
1281
|
//#region recce-source/js/src/components/summary/SummaryView.d.ts
|
|
1280
|
-
declare function SummaryView():
|
|
1282
|
+
declare function SummaryView(): react_jsx_runtime1.JSX.Element;
|
|
1281
1283
|
//#endregion
|
|
1282
1284
|
//#region recce-source/js/src/components/summary/ChangeSummary.d.ts
|
|
1283
1285
|
interface Props$1 {
|
|
@@ -1285,7 +1287,7 @@ interface Props$1 {
|
|
|
1285
1287
|
}
|
|
1286
1288
|
declare function ChangeSummary({
|
|
1287
1289
|
lineageGraph
|
|
1288
|
-
}: Props$1):
|
|
1290
|
+
}: Props$1): react_jsx_runtime1.JSX.Element;
|
|
1289
1291
|
//#endregion
|
|
1290
1292
|
//#region recce-source/js/src/components/summary/SchemaSummary.d.ts
|
|
1291
1293
|
interface Props {
|
|
@@ -1293,16 +1295,16 @@ interface Props {
|
|
|
1293
1295
|
}
|
|
1294
1296
|
declare function SchemaSummary({
|
|
1295
1297
|
lineageGraph
|
|
1296
|
-
}: Props):
|
|
1298
|
+
}: Props): react_jsx_runtime1.JSX.Element;
|
|
1297
1299
|
//#endregion
|
|
1298
1300
|
//#region recce-source/js/src/components/app/EnvInfo.d.ts
|
|
1299
|
-
declare function EnvInfo$1():
|
|
1301
|
+
declare function EnvInfo$1(): react_jsx_runtime1.JSX.Element;
|
|
1300
1302
|
//#endregion
|
|
1301
1303
|
//#region recce-source/js/app/(mainComponents)/TopBar.d.ts
|
|
1302
|
-
declare function TopBar():
|
|
1304
|
+
declare function TopBar(): react_jsx_runtime1.JSX.Element;
|
|
1303
1305
|
//#endregion
|
|
1304
1306
|
//#region recce-source/js/app/(mainComponents)/NavBar.d.ts
|
|
1305
|
-
declare function NavBar():
|
|
1307
|
+
declare function NavBar(): react_jsx_runtime1.JSX.Element;
|
|
1306
1308
|
//#endregion
|
|
1307
1309
|
//#region recce-source/js/app/(mainComponents)/DisplayModeToggle.d.ts
|
|
1308
1310
|
/**
|
|
@@ -1311,10 +1313,10 @@ declare function NavBar(): react_jsx_runtime10.JSX.Element;
|
|
|
1311
1313
|
* Uses next-themes to persist the user's preference.
|
|
1312
1314
|
* Default is light theme, with future support for system preference.
|
|
1313
1315
|
*/
|
|
1314
|
-
declare function DisplayModeToggle():
|
|
1316
|
+
declare function DisplayModeToggle(): react_jsx_runtime1.JSX.Element;
|
|
1315
1317
|
//#endregion
|
|
1316
1318
|
//#region recce-source/js/app/(mainComponents)/RecceVersionBadge.d.ts
|
|
1317
|
-
declare function RecceVersionBadge():
|
|
1319
|
+
declare function RecceVersionBadge(): react_jsx_runtime1.JSX.Element;
|
|
1318
1320
|
//#endregion
|
|
1319
1321
|
//#region recce-source/js/src/components/shared/HistoryToggle.d.ts
|
|
1320
1322
|
declare function HistoryToggle(): ReactNode;
|
|
@@ -1325,15 +1327,15 @@ declare function HistoryToggle(): ReactNode;
|
|
|
1325
1327
|
* Only shows when remaining time is below the warning threshold
|
|
1326
1328
|
* Styled as a warning indicator to draw user attention
|
|
1327
1329
|
*/
|
|
1328
|
-
declare function IdleTimeoutBadge():
|
|
1330
|
+
declare function IdleTimeoutBadge(): react_jsx_runtime1.JSX.Element;
|
|
1329
1331
|
//#endregion
|
|
1330
1332
|
//#region recce-source/js/src/components/icons/index.d.ts
|
|
1331
|
-
declare const IconSync: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1332
|
-
declare const IconExport: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1333
|
-
declare const IconImport: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1334
|
-
declare const IconSave: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1335
|
-
declare const IconEdit: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1336
|
-
declare const IconInfo: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1333
|
+
declare const IconSync: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime1.JSX.Element;
|
|
1334
|
+
declare const IconExport: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime1.JSX.Element;
|
|
1335
|
+
declare const IconImport: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime1.JSX.Element;
|
|
1336
|
+
declare const IconSave: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime1.JSX.Element;
|
|
1337
|
+
declare const IconEdit: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime1.JSX.Element;
|
|
1338
|
+
declare const IconInfo: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime1.JSX.Element;
|
|
1337
1339
|
//#endregion
|
|
1338
1340
|
//#region recce-source/js/src/lib/api/instanceInfo.d.ts
|
|
1339
1341
|
interface RecceInstanceInfo {
|
|
@@ -1366,7 +1368,7 @@ declare function useClipBoardToast(): {
|
|
|
1366
1368
|
//#region recce-source/js/src/components/lineage/useValueDiffAlertDialog.d.ts
|
|
1367
1369
|
declare function useValueDiffAlertDialog(): {
|
|
1368
1370
|
confirm: (nodeCount: number) => Promise<boolean>;
|
|
1369
|
-
AlertDialog:
|
|
1371
|
+
AlertDialog: react_jsx_runtime1.JSX.Element;
|
|
1370
1372
|
};
|
|
1371
1373
|
//#endregion
|
|
1372
1374
|
//#region recce-source/js/src/lib/hooks/RecceContextProvider.d.ts
|
|
@@ -1395,7 +1397,7 @@ interface RecceContextProps {
|
|
|
1395
1397
|
*/
|
|
1396
1398
|
declare function RecceContextProvider({
|
|
1397
1399
|
children
|
|
1398
|
-
}: RecceContextProps):
|
|
1400
|
+
}: RecceContextProps): react_jsx_runtime1.JSX.Element;
|
|
1399
1401
|
//#endregion
|
|
1400
1402
|
//#region recce-source/js/src/lib/hooks/RecceInstanceContext.d.ts
|
|
1401
1403
|
type RecceFeatureMode = "read only" | "metadata only" | null;
|
|
@@ -1422,7 +1424,7 @@ declare function RecceInstanceInfoProvider({
|
|
|
1422
1424
|
children
|
|
1423
1425
|
}: {
|
|
1424
1426
|
children: React.ReactNode;
|
|
1425
|
-
}):
|
|
1427
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
1426
1428
|
declare const useRecceInstanceContext: () => InstanceInfoType;
|
|
1427
1429
|
//#endregion
|
|
1428
1430
|
//#region recce-source/js/src/lib/hooks/LineageGraphContext.d.ts
|
|
@@ -1459,7 +1461,7 @@ interface LineageGraphProps {
|
|
|
1459
1461
|
}
|
|
1460
1462
|
declare function LineageGraphContextProvider({
|
|
1461
1463
|
children
|
|
1462
|
-
}: LineageGraphProps):
|
|
1464
|
+
}: LineageGraphProps): react_jsx_runtime1.JSX.Element;
|
|
1463
1465
|
declare const useLineageGraphContext: () => LineageGraphContextType;
|
|
1464
1466
|
declare const useRunsAggregated: () => [RunsAggregated | undefined, () => void];
|
|
1465
1467
|
//#endregion
|
|
@@ -1474,7 +1476,7 @@ declare function RecceShareStateContextProvider({
|
|
|
1474
1476
|
children
|
|
1475
1477
|
}: {
|
|
1476
1478
|
children: React$1.ReactNode;
|
|
1477
|
-
}):
|
|
1479
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
1478
1480
|
declare const useRecceShareStateContext: () => ShareStateProps;
|
|
1479
1481
|
//#endregion
|
|
1480
1482
|
//#region recce-source/js/src/lib/hooks/RecceQueryContext.d.ts
|
|
@@ -1493,7 +1495,7 @@ interface QueryContextProps {
|
|
|
1493
1495
|
}
|
|
1494
1496
|
declare function RecceQueryContextProvider({
|
|
1495
1497
|
children
|
|
1496
|
-
}: QueryContextProps):
|
|
1498
|
+
}: QueryContextProps): react_jsx_runtime1.JSX.Element;
|
|
1497
1499
|
declare const useRecceQueryContext: () => QueryContext;
|
|
1498
1500
|
interface RowCountStateContext {
|
|
1499
1501
|
isNodesFetching: string[];
|
|
@@ -1504,7 +1506,7 @@ interface RowCountStateContextProps {
|
|
|
1504
1506
|
}
|
|
1505
1507
|
declare function RowCountStateContextProvider({
|
|
1506
1508
|
children
|
|
1507
|
-
}: RowCountStateContextProps):
|
|
1509
|
+
}: RowCountStateContextProps): react_jsx_runtime1.JSX.Element;
|
|
1508
1510
|
declare const useRowCountStateContext: () => RowCountStateContext;
|
|
1509
1511
|
//#endregion
|
|
1510
1512
|
//#region recce-source/js/src/lib/hooks/RecceActionContext.d.ts
|
|
@@ -1531,7 +1533,7 @@ interface RecceActionContextProviderProps {
|
|
|
1531
1533
|
}
|
|
1532
1534
|
declare function RecceActionContextProvider({
|
|
1533
1535
|
children
|
|
1534
|
-
}: RecceActionContextProviderProps):
|
|
1536
|
+
}: RecceActionContextProviderProps): react_jsx_runtime1.JSX.Element;
|
|
1535
1537
|
declare const useRecceActionContext: () => RecceActionContextType;
|
|
1536
1538
|
//#endregion
|
|
1537
1539
|
//#region recce-source/js/src/lib/hooks/RecceCheckContext.d.ts
|
|
@@ -1544,7 +1546,7 @@ interface CheckContextProps {
|
|
|
1544
1546
|
}
|
|
1545
1547
|
declare function RecceCheckContextProvider({
|
|
1546
1548
|
children
|
|
1547
|
-
}: CheckContextProps):
|
|
1549
|
+
}: CheckContextProps): react_jsx_runtime1.JSX.Element;
|
|
1548
1550
|
declare const useRecceCheckContext: () => CheckContext;
|
|
1549
1551
|
//#endregion
|
|
1550
1552
|
//#region recce-source/js/src/lib/hooks/IdleTimeoutContext.d.ts
|
|
@@ -1579,7 +1581,7 @@ declare function IdleTimeoutProvider({
|
|
|
1579
1581
|
children
|
|
1580
1582
|
}: {
|
|
1581
1583
|
children: ReactNode;
|
|
1582
|
-
}):
|
|
1584
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
1583
1585
|
/**
|
|
1584
1586
|
* Hook to access idle timeout context
|
|
1585
1587
|
* @throws Error if used outside IdleTimeoutProvider
|
|
@@ -1634,7 +1636,7 @@ declare function ApiConfigProvider({
|
|
|
1634
1636
|
apiPrefix,
|
|
1635
1637
|
authToken,
|
|
1636
1638
|
baseUrl
|
|
1637
|
-
}: ApiConfigProviderProps):
|
|
1639
|
+
}: ApiConfigProviderProps): react_jsx_runtime1.JSX.Element;
|
|
1638
1640
|
/**
|
|
1639
1641
|
* Hook to access the API configuration and configured axios client.
|
|
1640
1642
|
*
|
|
@@ -1657,6 +1659,161 @@ declare function useApiClient(): AxiosInstance;
|
|
|
1657
1659
|
*/
|
|
1658
1660
|
declare function useApiConfigSafe(): ApiConfigContextType | null;
|
|
1659
1661
|
//#endregion
|
|
1662
|
+
//#region src/lib/hooks/RouteConfigContext.d.ts
|
|
1663
|
+
/**
|
|
1664
|
+
* Route Configuration for path prefix customization.
|
|
1665
|
+
*
|
|
1666
|
+
* This context allows recce-cloud to configure a base path prefix
|
|
1667
|
+
* for all navigation within OSS components.
|
|
1668
|
+
*
|
|
1669
|
+
* Default behavior (OSS):
|
|
1670
|
+
* - basePath: "" (uses absolute paths like /query, /checks)
|
|
1671
|
+
*
|
|
1672
|
+
* Cloud usage example:
|
|
1673
|
+
* - basePath: "/oss/abc123" or "/preview/abc123"
|
|
1674
|
+
* - Navigation to "/query" becomes "/oss/abc123/query"
|
|
1675
|
+
*/
|
|
1676
|
+
interface RouteConfig {
|
|
1677
|
+
/**
|
|
1678
|
+
* Base path prefix for navigation.
|
|
1679
|
+
* For OSS: "" (empty string, uses absolute paths like /query)
|
|
1680
|
+
* For Cloud: "/oss/<sessionId>" or "/preview/<sessionId>"
|
|
1681
|
+
*/
|
|
1682
|
+
basePath: string;
|
|
1683
|
+
}
|
|
1684
|
+
interface RouteConfigContextType extends RouteConfig {
|
|
1685
|
+
/**
|
|
1686
|
+
* Resolves a path with the base path prefix.
|
|
1687
|
+
* @param path - The path to resolve (e.g., "/query")
|
|
1688
|
+
* @returns The resolved path (e.g., "/oss/abc123/query")
|
|
1689
|
+
*/
|
|
1690
|
+
resolvePath: (path: string) => string;
|
|
1691
|
+
}
|
|
1692
|
+
interface RouteConfigProviderProps extends Partial<RouteConfig> {
|
|
1693
|
+
children: React$1.ReactNode;
|
|
1694
|
+
}
|
|
1695
|
+
/**
|
|
1696
|
+
* Provider for route configuration.
|
|
1697
|
+
*
|
|
1698
|
+
* Wrap your application (or RecceContextProvider) with this provider
|
|
1699
|
+
* to configure path prefixes for navigation.
|
|
1700
|
+
*
|
|
1701
|
+
* @example
|
|
1702
|
+
* // In recce-cloud
|
|
1703
|
+
* <RouteConfigProvider basePath={`/oss/${sessionId}`}>
|
|
1704
|
+
* <RecceContextProvider>
|
|
1705
|
+
* {children}
|
|
1706
|
+
* </RecceContextProvider>
|
|
1707
|
+
* </RouteConfigProvider>
|
|
1708
|
+
*/
|
|
1709
|
+
declare function RouteConfigProvider({
|
|
1710
|
+
children,
|
|
1711
|
+
basePath
|
|
1712
|
+
}: RouteConfigProviderProps): React$1.FunctionComponentElement<React$1.ProviderProps<RouteConfigContextType>>;
|
|
1713
|
+
/**
|
|
1714
|
+
* Hook to access route configuration.
|
|
1715
|
+
*
|
|
1716
|
+
* When used outside RouteConfigProvider, returns default config
|
|
1717
|
+
* (for OSS backward compatibility).
|
|
1718
|
+
*
|
|
1719
|
+
* @returns RouteConfigContextType with basePath and resolvePath function
|
|
1720
|
+
*/
|
|
1721
|
+
declare function useRouteConfig(): RouteConfigContextType;
|
|
1722
|
+
/**
|
|
1723
|
+
* Safe hook that returns null if context not available.
|
|
1724
|
+
* Useful for components that need to detect if RouteConfigProvider is present.
|
|
1725
|
+
*/
|
|
1726
|
+
declare function useRouteConfigSafe(): RouteConfigContextType | null;
|
|
1727
|
+
//#endregion
|
|
1728
|
+
//#region src/lib/hooks/useAppRouter.d.ts
|
|
1729
|
+
interface NavigateOptions {
|
|
1730
|
+
replace?: boolean;
|
|
1731
|
+
scroll?: boolean;
|
|
1732
|
+
}
|
|
1733
|
+
/**
|
|
1734
|
+
* Hook that provides Wouter-compatible location API using Next.js App Router
|
|
1735
|
+
* with RouteConfigContext support for path prefixing.
|
|
1736
|
+
*
|
|
1737
|
+
* NOTE: This returns only the pathname (not search params) to avoid
|
|
1738
|
+
* triggering Suspense boundaries on every navigation.
|
|
1739
|
+
*
|
|
1740
|
+
* @returns [pathname, setLocation] tuple similar to Wouter's useLocation
|
|
1741
|
+
*
|
|
1742
|
+
* @example
|
|
1743
|
+
* const [location, setLocation] = useAppLocation();
|
|
1744
|
+
* setLocation("/checks?id=123"); // In cloud mode with basePath="/oss/abc123"
|
|
1745
|
+
* // navigates to "/oss/abc123/checks?id=123"
|
|
1746
|
+
*/
|
|
1747
|
+
declare function useAppLocation(): [string, (to: string, options?: NavigateOptions) => void];
|
|
1748
|
+
/**
|
|
1749
|
+
* Hook that includes search params in the location string.
|
|
1750
|
+
* Also supports RouteConfigContext path prefixing.
|
|
1751
|
+
*
|
|
1752
|
+
* WARNING: This hook uses useSearchParams() which triggers Suspense.
|
|
1753
|
+
* Only use this in components that are wrapped in a <Suspense> boundary,
|
|
1754
|
+
* or in leaf components where suspension is acceptable.
|
|
1755
|
+
*
|
|
1756
|
+
* @returns [fullLocation, setLocation] tuple with search params included
|
|
1757
|
+
*/
|
|
1758
|
+
declare function useAppLocationWithSearch(): [string, (to: string, options?: NavigateOptions) => void];
|
|
1759
|
+
/**
|
|
1760
|
+
* Hook to check if current path matches a pattern
|
|
1761
|
+
* Similar to Wouter's useRoute
|
|
1762
|
+
*
|
|
1763
|
+
* @param pattern - The route pattern to match (e.g., "/checks/:checkId")
|
|
1764
|
+
* @returns [isMatch, params] tuple
|
|
1765
|
+
*
|
|
1766
|
+
* @example
|
|
1767
|
+
* const [isMatch, params] = useAppRoute("/checks/:checkId");
|
|
1768
|
+
* if (isMatch) {
|
|
1769
|
+
* console.log(params.checkId); // "abc-123"
|
|
1770
|
+
* }
|
|
1771
|
+
*/
|
|
1772
|
+
declare function useAppRoute(pattern: string): [boolean, Record<string, string>];
|
|
1773
|
+
/**
|
|
1774
|
+
* Imperative navigation function for use outside React components
|
|
1775
|
+
* Use sparingly - prefer useAppLocation hook in components
|
|
1776
|
+
*
|
|
1777
|
+
* NOTE: This function does NOT support RouteConfigContext because
|
|
1778
|
+
* it's used outside of React component tree. If you need path prefixing,
|
|
1779
|
+
* use useAppLocation hook instead.
|
|
1780
|
+
*
|
|
1781
|
+
* @example
|
|
1782
|
+
* // In an event handler or utility function
|
|
1783
|
+
* import { navigateTo } from "@/lib/hooks/useAppRouter";
|
|
1784
|
+
* navigateTo("/checks?id=123");
|
|
1785
|
+
*/
|
|
1786
|
+
declare function navigateTo(path: string, replace?: boolean): void;
|
|
1787
|
+
/**
|
|
1788
|
+
* Hook for programmatic navigation with more options
|
|
1789
|
+
* Provides direct access to Next.js router methods with RouteConfigContext support
|
|
1790
|
+
*
|
|
1791
|
+
* NOTE: Does not include searchParams to avoid Suspense.
|
|
1792
|
+
* Use useSearchParams() directly in components that need it.
|
|
1793
|
+
*/
|
|
1794
|
+
declare function useAppNavigation(): {
|
|
1795
|
+
/** Current pathname */
|
|
1796
|
+
pathname: string;
|
|
1797
|
+
/** Current route params */
|
|
1798
|
+
params: Record<string, string>;
|
|
1799
|
+
/** Navigate to a new path (with RouteConfigContext support) */
|
|
1800
|
+
push: (href: string, options?: {
|
|
1801
|
+
scroll?: boolean;
|
|
1802
|
+
}) => void;
|
|
1803
|
+
/** Replace current history entry (with RouteConfigContext support) */
|
|
1804
|
+
replace: (href: string, options?: {
|
|
1805
|
+
scroll?: boolean;
|
|
1806
|
+
}) => void;
|
|
1807
|
+
/** Go back in history */
|
|
1808
|
+
back: () => void;
|
|
1809
|
+
/** Go forward in history */
|
|
1810
|
+
forward: () => void;
|
|
1811
|
+
/** Refresh the current route */
|
|
1812
|
+
refresh: () => void;
|
|
1813
|
+
/** Prefetch a route for faster navigation */
|
|
1814
|
+
prefetch: (href: string, options?: next_dist_shared_lib_app_router_context_shared_runtime0.PrefetchOptions) => void;
|
|
1815
|
+
};
|
|
1816
|
+
//#endregion
|
|
1660
1817
|
//#region recce-source/js/src/components/check/check.d.ts
|
|
1661
1818
|
declare function buildTitle(check: Check): string;
|
|
1662
1819
|
declare function buildDescription(check: Check): string;
|
|
@@ -1827,5 +1984,5 @@ declare const sessionStorageKeys: {
|
|
|
1827
1984
|
lineageNotificationDismissed: string;
|
|
1828
1985
|
};
|
|
1829
1986
|
//#endregion
|
|
1830
|
-
export {
|
|
1831
|
-
//# sourceMappingURL=index-
|
|
1987
|
+
export { navigateTo as $, ErrorBoundary as $i, CreateCheckBody as $n, RowCount as $r, SummaryView as $t, connectToCloud as A, CatalogMetadata as Ai, QueryDiffResultView as An, isQueryBaseRun as Ar, useRunsAggregated as At, submitQueryBase as B, ServerInfoResult as Bi, RowCountTagProps as Bn, ValueDiffDetailParams as Br, IconImport as Bt, SchemaDiffViewParams as C, submitRunFromCheck as Ci, CheckList as Cn, Run as Cr, RowCountStateContextProvider as Ct, markOnboardingCompleted as D, ColumnLineageData as Di, CodeEditor as Dn, isLineageDiffRun as Dr, useRecceShareStateContext as Dt, getServerFlag as E, CllNodeData as Ei, DiffEditor as En, isHistogramDiffRun as Er, RecceShareStateContextProvider as Et, QueryPreviewChangeParams as F, ManifestMetadata as Fi, SetupConnectionBanner as Fn, isSchemaDiffRun as Fr, useClipBoardToast as Ft, DisableTooltipMessages as G, getServerInfo as Gi, GraphNode as Gn, submitValueDiff as Gr, HistoryToggle as Gt, VERSION as H, getLineageDiff as Hi, NodeView as Hn, ValueDiffDetailViewOptions as Hr, IconSave as Ht, QueryResult as I, ModelInfoResult as Ii, ModelRowCount as In, isSimpleRun as Ir, useCheckToast as It, columnPrecisionSelectOptions as J, stateMetadata as Ji, useLineageViewContext as Jn, RowCountDiffResult as Jr, NavBar as Jt, RECCE_SUPPORT_CALENDAR_URL as K, gitInfo as Ki, LineageViewTopBar as Kn, submitValueDiffDetail as Kr, RecceVersionBadge as Kt, QueryRunParams as L, NodeColumnData as Li, ResourceTypeTag as Ln, isTopKDiffRun as Lr, useRecceInstanceInfo as Lt, QueryDiffResult as M, LineageDataFromMetadata as Mi, SqlEditor as Mn, isQueryRun as Mr, useRecceInstanceContext as Mt, QueryDiffViewOptions as N, LineageDiffData as Ni, QueryForm as Nn, isRowCountDiffRun as Nr, RecceContextProvider as Nt, markRelaunchHintCompleted as O, ImpactRadiusParams as Oi, SetupConnectionGuide as On, isProfileDiffRun as Or, LineageGraphContextProvider as Ot, QueryParams as P, LineageDiffResult as Pi, QueryPage as Pn, isRowCountRun as Pr, useValueDiffAlertDialog as Pt, buildTitle as Q, VSplit as Qi, Check as Qn, QueryRowCountResult as Qr, ChangeSummary as Qt, QueryViewOptions as R, NodeData as Ri, RowCountDiffTag as Rn, isValueDiffDetailRun as Rr, IconEdit as Rt, select as S, submitRun as Si, CheckDetail as Sn, RowObjectType as Sr, RecceQueryContextProvider as St, RecceServerFlags as T, CllInput as Ti, SchemaView as Tn, SchemaDiffParams as Tr, useRowCountStateContext as Tt, PUBLIC_API_URL as U, getLineageWithError as Ui, GraphColumnNode as Un, ValueDiffParams as Ur, IconSync as Ut, submitQueryDiff as V, getLineage as Vi, NodeSqlView as Vn, ValueDiffDetailResult as Vr, IconInfo as Vt, PUBLIC_CLOUD_WEB_URL as W, getModelInfo as Wi, GraphEdge as Wn, ValueDiffResult as Wr, IdleTimeoutBadge as Wt, buildDescription as X, ScreenshotBox as Xi, LineageDiffViewOptions as Xn, RowCountResult as Xr, EnvInfo$1 as Xt, isSchemaChanged as Y, LineagePage as Yi, LineageView as Yn, RowCountParams as Yr, TopBar as Yt, buildQuery as Z, HSplit as Zi, createLineageDiffCheck as Zn, submitRowCountDiff as Zr, SchemaSummary as Zt, saveAs as _, aggregateRuns as _i, SchemaDiffView as _n, ColumnType as _r, useRecceCheckContext as _t, User as a, reactQueryClient as aa, HistogramDiffResult as ai, TopKDiffForm as an, markAsPresetCheck as ar, RouteConfigContextType as at, SelectInput as b, listRuns as bi, CheckDescription as bn, RowData as br, RecceActionContextType as bt, ImportedState as c, ProfileDiffResult as ci, ValueDiffDetailResultView as cn, useChecks as cr, useRouteConfigSafe as ct, SyncStateInput as d, TopKDiffResult as di, RunStatusAndDate as dn, ScreenshotDataGrid as dr, useApiClient as dt, Toaster as ea, RowCountDiff as ei, SquareIcon as en, createCheckByRun as er, useAppLocation as et, SyncStateResponse as f, TopKResult as fi, RunResultPane as fn, RunToolbar as fr, useApiConfig as ft, rename as g, SubmitRunTrackProps as gi, RunPage as gn, ColumnRenderMode as gr, RecceCheckContextProvider as gt, isStateSyncing as h, SubmitOptions as hi, RunList as hn, AxiosQueryParams as hr, useIdleTimeout as ht, useVersionNumber as i, axiosClient as ia, HistogramDiffParams as ii, TopKDiffResultView as in, listChecks as ir, RouteConfig as it, QueryDiffParams as j, LineageData as ji, QueryResultView as jn, isQueryDiffRun as jr, RecceInstanceInfoProvider as jt, ConnectToCloud as k, getCll as ki, DiffText as kn, isProfileRun as kr, useLineageGraphContext as kt, SaveAsInput as l, ProfileDiffViewOptions as li, ValueDiffResultView as ln, ValueDiffForm as lr, ApiConfig as lt, importState as m, RunsAggregated as mi, RunView as mn, RunResultViewProps as mr, IdleTimeoutProvider as mt, localStorageKeys as n, useToaster as na, queryModelRowCount as ni, HistogramChart as nn, deleteCheck as nr, useAppNavigation as nt, fetchGitHubAvatar as o, HistogramResult as oi, HistogramDiffResultView as on, reorderChecks as or, RouteConfigProvider as ot, exportState as p, submitProfileDiff as pi, RunModal as pn, RunFormProps as pr, useApiConfigSafe as pt, deltaPercentageString as q, pullRequestInfo as qi, LineageViewContext as qn, RowCountDiffParams as qr, DisplayModeToggle as qt, getVersion as r, MuiProvider as ra, queryRowCount as ri, RowCountDiffResultView as rn, getCheck as rr, useAppRoute as rt, fetchUser as s, ProfileDiffParams as si, HistogramDiffForm as sn, updateCheck as sr, useRouteConfig as st, sessionStorageKeys as t, ToasterProvider as ta, fetchModelRowCount as ti, TopKSummaryList as tn, createSimpleCheck as tr, useAppLocationWithSearch as tt, ShareStateResponse as u, TopKDiffParams as ui, ProfileDiffResultView as un, ProfileDiffForm as ur, ApiConfigProvider as ut, shareState as v, cancelRun as vi, LineageDiffView as vn, DataFrame as vr, RecceActionContext as vt, createSchemaDiffCheck as w, waitRun as wi, ColumnNameCell as wn, RunParamTypes as wr, useRecceQueryContext as wt, SelectOutput as x, searchRuns as xi, CheckBreadcrumb as xn, RowDataTypes as xr, useRecceActionContext as xt, syncState as y, getRun as yi, CheckEmptyState as yn, LineageDiffParams as yr, RecceActionContextProvider as yt, submitQuery as z, SQLMeshInfo as zi, RowCountDiffTagProps as zn, isValueDiffRun as zr, IconExport as zt };
|
|
1988
|
+
//# sourceMappingURL=index-CUtFlKOo.d.ts.map
|