@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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import * as React$2 from "react";
|
|
3
3
|
import React$1, { CSSProperties, ComponentType, Dispatch, ForwardRefExoticComponent, ReactNode, Ref, RefAttributes, SetStateAction } from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
5
5
|
import { BoxProps } from "@mui/material/Box";
|
|
6
6
|
import { FallbackRender } from "@sentry/react";
|
|
7
7
|
import { SplitProps } from "react-split";
|
|
@@ -15,7 +15,9 @@ import { IconType } from "react-icons";
|
|
|
15
15
|
import { ColDef, ColGroupDef, GridReadyEvent } from "ag-grid-community";
|
|
16
16
|
import { AgGridReactProps } from "ag-grid-react";
|
|
17
17
|
import { AnimationOptions } from "chart.js";
|
|
18
|
+
import "next/navigation";
|
|
18
19
|
import "simplebar/dist/simplebar.min.css";
|
|
20
|
+
import * as next_dist_shared_lib_app_router_context_shared_runtime0 from "next/dist/shared/lib/app-router-context.shared-runtime";
|
|
19
21
|
|
|
20
22
|
//#region recce-source/js/src/lib/api/axiosClient.d.ts
|
|
21
23
|
declare const axiosClient: axios0.AxiosInstance;
|
|
@@ -52,7 +54,7 @@ declare function MuiProvider({
|
|
|
52
54
|
children,
|
|
53
55
|
forcedTheme,
|
|
54
56
|
enableCssBaseline
|
|
55
|
-
}: MuiProviderProps):
|
|
57
|
+
}: MuiProviderProps): react_jsx_runtime0.JSX.Element;
|
|
56
58
|
//#endregion
|
|
57
59
|
//#region recce-source/js/src/components/ui/toaster.d.ts
|
|
58
60
|
/**
|
|
@@ -87,7 +89,7 @@ declare function ToasterProvider({
|
|
|
87
89
|
children
|
|
88
90
|
}: {
|
|
89
91
|
children: ReactNode;
|
|
90
|
-
}):
|
|
92
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
91
93
|
/**
|
|
92
94
|
* Hook to use the toaster
|
|
93
95
|
*/
|
|
@@ -95,7 +97,7 @@ declare function useToaster(): ToasterContextValue;
|
|
|
95
97
|
/**
|
|
96
98
|
* Toaster component that renders toasts from the standalone toaster
|
|
97
99
|
*/
|
|
98
|
-
declare function Toaster():
|
|
100
|
+
declare function Toaster(): react_jsx_runtime0.JSX.Element;
|
|
99
101
|
//#endregion
|
|
100
102
|
//#region recce-source/js/src/components/errorboundary/ErrorBoundary.d.ts
|
|
101
103
|
declare const ErrorBoundary$1: ({
|
|
@@ -104,11 +106,11 @@ declare const ErrorBoundary$1: ({
|
|
|
104
106
|
}: {
|
|
105
107
|
children: ReactNode;
|
|
106
108
|
fallback?: React$2.ReactElement | FallbackRender | undefined;
|
|
107
|
-
}) =>
|
|
109
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
108
110
|
//#endregion
|
|
109
111
|
//#region recce-source/js/src/components/split/Split.d.ts
|
|
110
|
-
declare const HSplit: (props: SplitProps) =>
|
|
111
|
-
declare const VSplit: (props: SplitProps) =>
|
|
112
|
+
declare const HSplit: (props: SplitProps) => react_jsx_runtime0.JSX.Element;
|
|
113
|
+
declare const VSplit: (props: SplitProps) => react_jsx_runtime0.JSX.Element;
|
|
112
114
|
//#endregion
|
|
113
115
|
//#region recce-source/js/src/components/screenshot/ScreenshotBox.d.ts
|
|
114
116
|
interface ScreenshotBoxProps extends BoxProps {
|
|
@@ -119,7 +121,7 @@ interface ScreenshotBoxProps extends BoxProps {
|
|
|
119
121
|
declare const ScreenshotBox: React$2.ForwardRefExoticComponent<Omit<ScreenshotBoxProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
120
122
|
//#endregion
|
|
121
123
|
//#region recce-source/js/src/components/lineage/LineagePage.d.ts
|
|
122
|
-
declare function LineagePage():
|
|
124
|
+
declare function LineagePage(): react_jsx_runtime0.JSX.Element;
|
|
123
125
|
//#endregion
|
|
124
126
|
//#region recce-source/js/src/lib/api/info.d.ts
|
|
125
127
|
/**
|
|
@@ -628,7 +630,7 @@ interface RunToolbarProps<VO> extends RunResultViewProps<VO> {
|
|
|
628
630
|
declare const RunToolbar: ({
|
|
629
631
|
warnings,
|
|
630
632
|
children
|
|
631
|
-
}: RunToolbarProps<DiffViewOptions>) =>
|
|
633
|
+
}: RunToolbarProps<DiffViewOptions>) => react_jsx_runtime0.JSX.Element;
|
|
632
634
|
//#endregion
|
|
633
635
|
//#region recce-source/js/src/components/data-grid/ScreenshotDataGrid.d.ts
|
|
634
636
|
/**
|
|
@@ -676,7 +678,7 @@ declare function ProfileDiffForm({
|
|
|
676
678
|
params,
|
|
677
679
|
onParamsChanged,
|
|
678
680
|
setIsReadyToExecute
|
|
679
|
-
}: ProfileDiffFormProp):
|
|
681
|
+
}: ProfileDiffFormProp): react_jsx_runtime0.JSX.Element;
|
|
680
682
|
//#endregion
|
|
681
683
|
//#region recce-source/js/src/components/valuediff/ValueDiffForm.d.ts
|
|
682
684
|
interface ValueDiffFormParams {
|
|
@@ -689,7 +691,7 @@ declare function ValueDiffForm({
|
|
|
689
691
|
params,
|
|
690
692
|
onParamsChanged,
|
|
691
693
|
setIsReadyToExecute
|
|
692
|
-
}: ValueDiffFormProp):
|
|
694
|
+
}: ValueDiffFormProp): react_jsx_runtime0.JSX.Element;
|
|
693
695
|
//#endregion
|
|
694
696
|
//#region recce-source/js/src/components/run/registry.d.ts
|
|
695
697
|
type ViewOptionTypes = LineageDiffViewOptions | DiffViewOptions | QueryViewOptions | QueryDiffViewOptions | ProfileDiffViewOptions | ValueDiffDetailViewOptions;
|
|
@@ -813,19 +815,19 @@ declare const LineageViewContext: React$1.Context<LineageViewContextType>;
|
|
|
813
815
|
declare const useLineageViewContext: () => LineageViewContextType | undefined;
|
|
814
816
|
//#endregion
|
|
815
817
|
//#region recce-source/js/src/components/lineage/LineageViewTopBar.d.ts
|
|
816
|
-
declare const LineageViewTopBar: () =>
|
|
818
|
+
declare const LineageViewTopBar: () => react_jsx_runtime0.JSX.Element;
|
|
817
819
|
//#endregion
|
|
818
820
|
//#region recce-source/js/src/components/lineage/GraphNode.d.ts
|
|
819
821
|
type GraphNodeProps = NodeProps<LineageGraphNode>;
|
|
820
|
-
declare function GraphNode(nodeProps: GraphNodeProps):
|
|
822
|
+
declare function GraphNode(nodeProps: GraphNodeProps): react_jsx_runtime0.JSX.Element;
|
|
821
823
|
//#endregion
|
|
822
824
|
//#region recce-source/js/src/components/lineage/GraphEdge.d.ts
|
|
823
825
|
type GraphEdgeProps = EdgeProps<LineageGraphEdge>;
|
|
824
|
-
declare function GraphEdge(props: GraphEdgeProps):
|
|
826
|
+
declare function GraphEdge(props: GraphEdgeProps): react_jsx_runtime0.JSX.Element;
|
|
825
827
|
//#endregion
|
|
826
828
|
//#region recce-source/js/src/components/lineage/GraphColumnNode.d.ts
|
|
827
829
|
type GrapeColumnNodeProps = NodeProps<LineageGraphColumnNode>;
|
|
828
|
-
declare function GraphColumnNode(nodeProps: GrapeColumnNodeProps):
|
|
830
|
+
declare function GraphColumnNode(nodeProps: GrapeColumnNodeProps): react_jsx_runtime0.JSX.Element;
|
|
829
831
|
//#endregion
|
|
830
832
|
//#region recce-source/js/src/components/lineage/NodeView.d.ts
|
|
831
833
|
interface NodeViewProps {
|
|
@@ -835,7 +837,7 @@ interface NodeViewProps {
|
|
|
835
837
|
declare function NodeView({
|
|
836
838
|
node,
|
|
837
839
|
onCloseNode
|
|
838
|
-
}: NodeViewProps):
|
|
840
|
+
}: NodeViewProps): react_jsx_runtime0.JSX.Element;
|
|
839
841
|
//#endregion
|
|
840
842
|
//#region recce-source/js/src/components/lineage/NodeSqlView.d.ts
|
|
841
843
|
interface NodeSqlViewProps {
|
|
@@ -843,20 +845,20 @@ interface NodeSqlViewProps {
|
|
|
843
845
|
}
|
|
844
846
|
declare const NodeSqlView: ({
|
|
845
847
|
node
|
|
846
|
-
}: NodeSqlViewProps) =>
|
|
848
|
+
}: NodeSqlViewProps) => react_jsx_runtime0.JSX.Element | "Not available";
|
|
847
849
|
//#endregion
|
|
848
850
|
//#region recce-source/js/src/components/lineage/NodeTag.d.ts
|
|
849
851
|
declare function ResourceTypeTag({
|
|
850
852
|
node
|
|
851
853
|
}: {
|
|
852
854
|
node: LineageGraphNode;
|
|
853
|
-
}):
|
|
855
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
854
856
|
interface ModelRowCountProps {
|
|
855
857
|
rowCount?: RowCountDiff;
|
|
856
858
|
}
|
|
857
859
|
declare function ModelRowCount({
|
|
858
860
|
rowCount
|
|
859
|
-
}: ModelRowCountProps):
|
|
861
|
+
}: ModelRowCountProps): react_jsx_runtime0.JSX.Element;
|
|
860
862
|
interface RowCountDiffTagProps {
|
|
861
863
|
node: LineageGraphNode;
|
|
862
864
|
rowCount?: RowCountDiff;
|
|
@@ -869,7 +871,7 @@ declare function RowCountDiffTag({
|
|
|
869
871
|
node,
|
|
870
872
|
onRefresh,
|
|
871
873
|
isFetching
|
|
872
|
-
}: RowCountDiffTagProps):
|
|
874
|
+
}: RowCountDiffTagProps): react_jsx_runtime0.JSX.Element;
|
|
873
875
|
interface RowCountTagProps {
|
|
874
876
|
node: LineageGraphNode;
|
|
875
877
|
rowCount?: RowCount;
|
|
@@ -879,10 +881,10 @@ interface RowCountTagProps {
|
|
|
879
881
|
}
|
|
880
882
|
//#endregion
|
|
881
883
|
//#region recce-source/js/src/components/lineage/SetupConnectionBanner.d.ts
|
|
882
|
-
declare function SetupConnectionBanner():
|
|
884
|
+
declare function SetupConnectionBanner(): react_jsx_runtime0.JSX.Element;
|
|
883
885
|
//#endregion
|
|
884
886
|
//#region recce-source/js/src/components/query/QueryPage.d.ts
|
|
885
|
-
declare const QueryPage: () =>
|
|
887
|
+
declare const QueryPage: () => react_jsx_runtime0.JSX.Element;
|
|
886
888
|
//#endregion
|
|
887
889
|
//#region recce-source/js/src/components/query/QueryForm.d.ts
|
|
888
890
|
interface QueryFormProps extends BoxProps {
|
|
@@ -893,7 +895,7 @@ declare const QueryForm: ({
|
|
|
893
895
|
defaultPrimaryKeys,
|
|
894
896
|
onPrimaryKeysChange,
|
|
895
897
|
...props
|
|
896
|
-
}: QueryFormProps) =>
|
|
898
|
+
}: QueryFormProps) => react_jsx_runtime0.JSX.Element;
|
|
897
899
|
//#endregion
|
|
898
900
|
//#region recce-source/js/src/components/query/SqlEditor.d.ts
|
|
899
901
|
interface SqlEditorProps {
|
|
@@ -929,7 +931,7 @@ declare function SqlEditor({
|
|
|
929
931
|
manifestData,
|
|
930
932
|
schemas,
|
|
931
933
|
...props
|
|
932
|
-
}: SqlEditorProps):
|
|
934
|
+
}: SqlEditorProps): react_jsx_runtime0.JSX.Element;
|
|
933
935
|
//#endregion
|
|
934
936
|
//#region recce-source/js/src/components/query/QueryResultView.d.ts
|
|
935
937
|
interface QueryResultViewProp extends RunResultViewProps<QueryViewOptions> {
|
|
@@ -959,10 +961,10 @@ declare const DiffText: ({
|
|
|
959
961
|
grayOut,
|
|
960
962
|
noCopy,
|
|
961
963
|
fontSize
|
|
962
|
-
}: DiffTextProps) =>
|
|
964
|
+
}: DiffTextProps) => react_jsx_runtime0.JSX.Element;
|
|
963
965
|
//#endregion
|
|
964
966
|
//#region recce-source/js/src/components/query/SetupConnectionGuide.d.ts
|
|
965
|
-
declare function SetupConnectionGuide():
|
|
967
|
+
declare function SetupConnectionGuide(): react_jsx_runtime0.JSX.Element;
|
|
966
968
|
//#endregion
|
|
967
969
|
//#region recce-source/js/src/components/editor/CodeEditor.d.ts
|
|
968
970
|
type CodeEditorLanguage = "sql" | "yaml";
|
|
@@ -997,7 +999,7 @@ declare function CodeEditor({
|
|
|
997
999
|
className,
|
|
998
1000
|
theme,
|
|
999
1001
|
keyBindings
|
|
1000
|
-
}: CodeEditorProps):
|
|
1002
|
+
}: CodeEditorProps): react_jsx_runtime0.JSX.Element;
|
|
1001
1003
|
//#endregion
|
|
1002
1004
|
//#region recce-source/js/src/components/editor/DiffEditor.d.ts
|
|
1003
1005
|
type DiffEditorLanguage = "sql" | "yaml";
|
|
@@ -1027,7 +1029,7 @@ declare function DiffEditor({
|
|
|
1027
1029
|
className,
|
|
1028
1030
|
theme,
|
|
1029
1031
|
onModifiedChange
|
|
1030
|
-
}: DiffEditorProps):
|
|
1032
|
+
}: DiffEditorProps): react_jsx_runtime0.JSX.Element;
|
|
1031
1033
|
//#endregion
|
|
1032
1034
|
//#region recce-source/js/src/components/schema/SchemaView.d.ts
|
|
1033
1035
|
interface SchemaViewProps {
|
|
@@ -1061,7 +1063,7 @@ declare function ColumnNameCell({
|
|
|
1061
1063
|
singleEnv?: boolean;
|
|
1062
1064
|
cllRunning?: boolean;
|
|
1063
1065
|
showMenu?: boolean;
|
|
1064
|
-
}):
|
|
1066
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1065
1067
|
//#endregion
|
|
1066
1068
|
//#region recce-source/js/src/components/check/CheckList.d.ts
|
|
1067
1069
|
declare const CheckList: ({
|
|
@@ -1074,7 +1076,7 @@ declare const CheckList: ({
|
|
|
1074
1076
|
selectedItem: string | null;
|
|
1075
1077
|
onCheckSelected: (checkId: string) => void;
|
|
1076
1078
|
onChecksReordered: (source: number, destination: number) => void;
|
|
1077
|
-
}) =>
|
|
1079
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1078
1080
|
//#endregion
|
|
1079
1081
|
//#region recce-source/js/src/components/check/CheckDetail.d.ts
|
|
1080
1082
|
interface CheckDetailProps {
|
|
@@ -1094,7 +1096,7 @@ interface CheckBreadcrumbProps {
|
|
|
1094
1096
|
declare function CheckBreadcrumb({
|
|
1095
1097
|
name,
|
|
1096
1098
|
setName
|
|
1097
|
-
}: CheckBreadcrumbProps):
|
|
1099
|
+
}: CheckBreadcrumbProps): react_jsx_runtime0.JSX.Element;
|
|
1098
1100
|
//#endregion
|
|
1099
1101
|
//#region recce-source/js/src/components/check/CheckDescription.d.ts
|
|
1100
1102
|
interface CheckDescriptionProps {
|
|
@@ -1104,10 +1106,10 @@ interface CheckDescriptionProps {
|
|
|
1104
1106
|
declare function CheckDescription({
|
|
1105
1107
|
value,
|
|
1106
1108
|
onChange
|
|
1107
|
-
}: CheckDescriptionProps):
|
|
1109
|
+
}: CheckDescriptionProps): react_jsx_runtime0.JSX.Element;
|
|
1108
1110
|
//#endregion
|
|
1109
1111
|
//#region recce-source/js/src/components/check/CheckEmptyState.d.ts
|
|
1110
|
-
declare const CheckEmptyState: () =>
|
|
1112
|
+
declare const CheckEmptyState: () => react_jsx_runtime0.JSX.Element;
|
|
1111
1113
|
//#endregion
|
|
1112
1114
|
//#region recce-source/js/src/components/check/LineageDiffView.d.ts
|
|
1113
1115
|
interface LineageDiffViewProps {
|
|
@@ -1127,10 +1129,10 @@ interface RunPageProps$1 {
|
|
|
1127
1129
|
}
|
|
1128
1130
|
declare const RunPage: ({
|
|
1129
1131
|
runId
|
|
1130
|
-
}: RunPageProps$1) =>
|
|
1132
|
+
}: RunPageProps$1) => react_jsx_runtime0.JSX.Element;
|
|
1131
1133
|
//#endregion
|
|
1132
1134
|
//#region recce-source/js/src/components/run/RunList.d.ts
|
|
1133
|
-
declare const RunList: () =>
|
|
1135
|
+
declare const RunList: () => react_jsx_runtime0.JSX.Element;
|
|
1134
1136
|
//#endregion
|
|
1135
1137
|
//#region recce-source/js/src/components/run/RunView.d.ts
|
|
1136
1138
|
interface RunViewProps<VO = ViewOptionTypes> {
|
|
@@ -1168,7 +1170,7 @@ declare const RunModal: ({
|
|
|
1168
1170
|
title,
|
|
1169
1171
|
params: defaultParams,
|
|
1170
1172
|
RunForm
|
|
1171
|
-
}: RunModalProps) =>
|
|
1173
|
+
}: RunModalProps) => react_jsx_runtime0.JSX.Element;
|
|
1172
1174
|
//#endregion
|
|
1173
1175
|
//#region recce-source/js/src/components/run/RunResultPane.d.ts
|
|
1174
1176
|
interface RunPageProps {
|
|
@@ -1179,14 +1181,14 @@ interface RunPageProps {
|
|
|
1179
1181
|
declare const RunResultPane: ({
|
|
1180
1182
|
onClose,
|
|
1181
1183
|
isSingleEnvironment
|
|
1182
|
-
}: RunPageProps) =>
|
|
1184
|
+
}: RunPageProps) => react_jsx_runtime0.JSX.Element;
|
|
1183
1185
|
//#endregion
|
|
1184
1186
|
//#region recce-source/js/src/components/run/RunStatusAndDate.d.ts
|
|
1185
1187
|
declare const RunStatusAndDate: ({
|
|
1186
1188
|
run
|
|
1187
1189
|
}: {
|
|
1188
1190
|
run: Run;
|
|
1189
|
-
}) =>
|
|
1191
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1190
1192
|
//#endregion
|
|
1191
1193
|
//#region recce-source/js/src/components/profile/ProfileDiffResultView.d.ts
|
|
1192
1194
|
type ProfileDiffResultViewProp = RunResultViewProps<ProfileDiffViewOptions>;
|
|
@@ -1208,7 +1210,7 @@ declare function HistogramDiffForm({
|
|
|
1208
1210
|
params,
|
|
1209
1211
|
onParamsChanged,
|
|
1210
1212
|
setIsReadyToExecute
|
|
1211
|
-
}: HistogramDiffEditProps):
|
|
1213
|
+
}: HistogramDiffEditProps): react_jsx_runtime0.JSX.Element;
|
|
1212
1214
|
//#endregion
|
|
1213
1215
|
//#region recce-source/js/src/components/histogram/HistogramDiffResultView.d.ts
|
|
1214
1216
|
type HistogramDiffResultViewProp = RunResultViewProps;
|
|
@@ -1220,7 +1222,7 @@ declare function TopKDiffForm({
|
|
|
1220
1222
|
params,
|
|
1221
1223
|
onParamsChanged,
|
|
1222
1224
|
setIsReadyToExecute
|
|
1223
|
-
}: TopKDiffFormProps):
|
|
1225
|
+
}: TopKDiffFormProps): react_jsx_runtime0.JSX.Element;
|
|
1224
1226
|
//#endregion
|
|
1225
1227
|
//#region recce-source/js/src/components/top-k/TopKDiffResultView.d.ts
|
|
1226
1228
|
type TopKDiffResultViewProp = RunResultViewProps;
|
|
@@ -1253,7 +1255,7 @@ declare function HistogramChart({
|
|
|
1253
1255
|
data,
|
|
1254
1256
|
hideAxis,
|
|
1255
1257
|
animation
|
|
1256
|
-
}: HistogramChartProps):
|
|
1258
|
+
}: HistogramChartProps): react_jsx_runtime0.JSX.Element;
|
|
1257
1259
|
//#endregion
|
|
1258
1260
|
//#region recce-source/js/src/components/charts/TopKSummaryList.d.ts
|
|
1259
1261
|
interface Props$2 {
|
|
@@ -1269,17 +1271,17 @@ declare function TopKSummaryList({
|
|
|
1269
1271
|
topk,
|
|
1270
1272
|
valids,
|
|
1271
1273
|
isDisplayTopTen
|
|
1272
|
-
}: Props$2):
|
|
1274
|
+
}: Props$2): react_jsx_runtime0.JSX.Element;
|
|
1273
1275
|
//#endregion
|
|
1274
1276
|
//#region recce-source/js/src/components/charts/SquareIcon.d.ts
|
|
1275
1277
|
declare function SquareIcon({
|
|
1276
1278
|
color
|
|
1277
1279
|
}: {
|
|
1278
1280
|
color: string;
|
|
1279
|
-
}):
|
|
1281
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1280
1282
|
//#endregion
|
|
1281
1283
|
//#region recce-source/js/src/components/summary/SummaryView.d.ts
|
|
1282
|
-
declare function SummaryView():
|
|
1284
|
+
declare function SummaryView(): react_jsx_runtime0.JSX.Element;
|
|
1283
1285
|
//#endregion
|
|
1284
1286
|
//#region recce-source/js/src/components/summary/ChangeSummary.d.ts
|
|
1285
1287
|
interface Props$1 {
|
|
@@ -1287,7 +1289,7 @@ interface Props$1 {
|
|
|
1287
1289
|
}
|
|
1288
1290
|
declare function ChangeSummary({
|
|
1289
1291
|
lineageGraph
|
|
1290
|
-
}: Props$1):
|
|
1292
|
+
}: Props$1): react_jsx_runtime0.JSX.Element;
|
|
1291
1293
|
//#endregion
|
|
1292
1294
|
//#region recce-source/js/src/components/summary/SchemaSummary.d.ts
|
|
1293
1295
|
interface Props {
|
|
@@ -1295,16 +1297,16 @@ interface Props {
|
|
|
1295
1297
|
}
|
|
1296
1298
|
declare function SchemaSummary({
|
|
1297
1299
|
lineageGraph
|
|
1298
|
-
}: Props):
|
|
1300
|
+
}: Props): react_jsx_runtime0.JSX.Element;
|
|
1299
1301
|
//#endregion
|
|
1300
1302
|
//#region recce-source/js/src/components/app/EnvInfo.d.ts
|
|
1301
|
-
declare function EnvInfo$1():
|
|
1303
|
+
declare function EnvInfo$1(): react_jsx_runtime0.JSX.Element;
|
|
1302
1304
|
//#endregion
|
|
1303
1305
|
//#region recce-source/js/app/(mainComponents)/TopBar.d.ts
|
|
1304
|
-
declare function TopBar():
|
|
1306
|
+
declare function TopBar(): react_jsx_runtime0.JSX.Element;
|
|
1305
1307
|
//#endregion
|
|
1306
1308
|
//#region recce-source/js/app/(mainComponents)/NavBar.d.ts
|
|
1307
|
-
declare function NavBar():
|
|
1309
|
+
declare function NavBar(): react_jsx_runtime0.JSX.Element;
|
|
1308
1310
|
//#endregion
|
|
1309
1311
|
//#region recce-source/js/app/(mainComponents)/DisplayModeToggle.d.ts
|
|
1310
1312
|
/**
|
|
@@ -1313,10 +1315,10 @@ declare function NavBar(): react_jsx_runtime16.JSX.Element;
|
|
|
1313
1315
|
* Uses next-themes to persist the user's preference.
|
|
1314
1316
|
* Default is light theme, with future support for system preference.
|
|
1315
1317
|
*/
|
|
1316
|
-
declare function DisplayModeToggle():
|
|
1318
|
+
declare function DisplayModeToggle(): react_jsx_runtime0.JSX.Element;
|
|
1317
1319
|
//#endregion
|
|
1318
1320
|
//#region recce-source/js/app/(mainComponents)/RecceVersionBadge.d.ts
|
|
1319
|
-
declare function RecceVersionBadge():
|
|
1321
|
+
declare function RecceVersionBadge(): react_jsx_runtime0.JSX.Element;
|
|
1320
1322
|
//#endregion
|
|
1321
1323
|
//#region recce-source/js/src/components/shared/HistoryToggle.d.ts
|
|
1322
1324
|
declare function HistoryToggle(): ReactNode;
|
|
@@ -1327,15 +1329,15 @@ declare function HistoryToggle(): ReactNode;
|
|
|
1327
1329
|
* Only shows when remaining time is below the warning threshold
|
|
1328
1330
|
* Styled as a warning indicator to draw user attention
|
|
1329
1331
|
*/
|
|
1330
|
-
declare function IdleTimeoutBadge():
|
|
1332
|
+
declare function IdleTimeoutBadge(): react_jsx_runtime0.JSX.Element;
|
|
1331
1333
|
//#endregion
|
|
1332
1334
|
//#region recce-source/js/src/components/icons/index.d.ts
|
|
1333
|
-
declare const IconSync: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1334
|
-
declare const IconExport: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1335
|
-
declare const IconImport: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1336
|
-
declare const IconSave: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1337
|
-
declare const IconEdit: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1338
|
-
declare const IconInfo: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1335
|
+
declare const IconSync: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1336
|
+
declare const IconExport: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1337
|
+
declare const IconImport: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1338
|
+
declare const IconSave: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1339
|
+
declare const IconEdit: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1340
|
+
declare const IconInfo: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1339
1341
|
//#endregion
|
|
1340
1342
|
//#region recce-source/js/src/lib/api/instanceInfo.d.ts
|
|
1341
1343
|
interface RecceInstanceInfo {
|
|
@@ -1368,7 +1370,7 @@ declare function useClipBoardToast(): {
|
|
|
1368
1370
|
//#region recce-source/js/src/components/lineage/useValueDiffAlertDialog.d.ts
|
|
1369
1371
|
declare function useValueDiffAlertDialog(): {
|
|
1370
1372
|
confirm: (nodeCount: number) => Promise<boolean>;
|
|
1371
|
-
AlertDialog:
|
|
1373
|
+
AlertDialog: react_jsx_runtime0.JSX.Element;
|
|
1372
1374
|
};
|
|
1373
1375
|
//#endregion
|
|
1374
1376
|
//#region recce-source/js/src/lib/hooks/RecceContextProvider.d.ts
|
|
@@ -1397,7 +1399,7 @@ interface RecceContextProps {
|
|
|
1397
1399
|
*/
|
|
1398
1400
|
declare function RecceContextProvider({
|
|
1399
1401
|
children
|
|
1400
|
-
}: RecceContextProps):
|
|
1402
|
+
}: RecceContextProps): react_jsx_runtime0.JSX.Element;
|
|
1401
1403
|
//#endregion
|
|
1402
1404
|
//#region recce-source/js/src/lib/hooks/RecceInstanceContext.d.ts
|
|
1403
1405
|
type RecceFeatureMode = "read only" | "metadata only" | null;
|
|
@@ -1424,7 +1426,7 @@ declare function RecceInstanceInfoProvider({
|
|
|
1424
1426
|
children
|
|
1425
1427
|
}: {
|
|
1426
1428
|
children: React.ReactNode;
|
|
1427
|
-
}):
|
|
1429
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1428
1430
|
declare const useRecceInstanceContext: () => InstanceInfoType;
|
|
1429
1431
|
//#endregion
|
|
1430
1432
|
//#region recce-source/js/src/lib/hooks/LineageGraphContext.d.ts
|
|
@@ -1461,7 +1463,7 @@ interface LineageGraphProps {
|
|
|
1461
1463
|
}
|
|
1462
1464
|
declare function LineageGraphContextProvider({
|
|
1463
1465
|
children
|
|
1464
|
-
}: LineageGraphProps):
|
|
1466
|
+
}: LineageGraphProps): react_jsx_runtime0.JSX.Element;
|
|
1465
1467
|
declare const useLineageGraphContext: () => LineageGraphContextType;
|
|
1466
1468
|
declare const useRunsAggregated: () => [RunsAggregated | undefined, () => void];
|
|
1467
1469
|
//#endregion
|
|
@@ -1476,7 +1478,7 @@ declare function RecceShareStateContextProvider({
|
|
|
1476
1478
|
children
|
|
1477
1479
|
}: {
|
|
1478
1480
|
children: React$1.ReactNode;
|
|
1479
|
-
}):
|
|
1481
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1480
1482
|
declare const useRecceShareStateContext: () => ShareStateProps;
|
|
1481
1483
|
//#endregion
|
|
1482
1484
|
//#region recce-source/js/src/lib/hooks/RecceQueryContext.d.ts
|
|
@@ -1495,7 +1497,7 @@ interface QueryContextProps {
|
|
|
1495
1497
|
}
|
|
1496
1498
|
declare function RecceQueryContextProvider({
|
|
1497
1499
|
children
|
|
1498
|
-
}: QueryContextProps):
|
|
1500
|
+
}: QueryContextProps): react_jsx_runtime0.JSX.Element;
|
|
1499
1501
|
declare const useRecceQueryContext: () => QueryContext;
|
|
1500
1502
|
interface RowCountStateContext {
|
|
1501
1503
|
isNodesFetching: string[];
|
|
@@ -1506,7 +1508,7 @@ interface RowCountStateContextProps {
|
|
|
1506
1508
|
}
|
|
1507
1509
|
declare function RowCountStateContextProvider({
|
|
1508
1510
|
children
|
|
1509
|
-
}: RowCountStateContextProps):
|
|
1511
|
+
}: RowCountStateContextProps): react_jsx_runtime0.JSX.Element;
|
|
1510
1512
|
declare const useRowCountStateContext: () => RowCountStateContext;
|
|
1511
1513
|
//#endregion
|
|
1512
1514
|
//#region recce-source/js/src/lib/hooks/RecceActionContext.d.ts
|
|
@@ -1533,7 +1535,7 @@ interface RecceActionContextProviderProps {
|
|
|
1533
1535
|
}
|
|
1534
1536
|
declare function RecceActionContextProvider({
|
|
1535
1537
|
children
|
|
1536
|
-
}: RecceActionContextProviderProps):
|
|
1538
|
+
}: RecceActionContextProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1537
1539
|
declare const useRecceActionContext: () => RecceActionContextType;
|
|
1538
1540
|
//#endregion
|
|
1539
1541
|
//#region recce-source/js/src/lib/hooks/RecceCheckContext.d.ts
|
|
@@ -1546,7 +1548,7 @@ interface CheckContextProps {
|
|
|
1546
1548
|
}
|
|
1547
1549
|
declare function RecceCheckContextProvider({
|
|
1548
1550
|
children
|
|
1549
|
-
}: CheckContextProps):
|
|
1551
|
+
}: CheckContextProps): react_jsx_runtime0.JSX.Element;
|
|
1550
1552
|
declare const useRecceCheckContext: () => CheckContext;
|
|
1551
1553
|
//#endregion
|
|
1552
1554
|
//#region recce-source/js/src/lib/hooks/IdleTimeoutContext.d.ts
|
|
@@ -1581,7 +1583,7 @@ declare function IdleTimeoutProvider({
|
|
|
1581
1583
|
children
|
|
1582
1584
|
}: {
|
|
1583
1585
|
children: ReactNode;
|
|
1584
|
-
}):
|
|
1586
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1585
1587
|
/**
|
|
1586
1588
|
* Hook to access idle timeout context
|
|
1587
1589
|
* @throws Error if used outside IdleTimeoutProvider
|
|
@@ -1636,7 +1638,7 @@ declare function ApiConfigProvider({
|
|
|
1636
1638
|
apiPrefix,
|
|
1637
1639
|
authToken,
|
|
1638
1640
|
baseUrl
|
|
1639
|
-
}: ApiConfigProviderProps):
|
|
1641
|
+
}: ApiConfigProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1640
1642
|
/**
|
|
1641
1643
|
* Hook to access the API configuration and configured axios client.
|
|
1642
1644
|
*
|
|
@@ -1659,6 +1661,161 @@ declare function useApiClient(): AxiosInstance;
|
|
|
1659
1661
|
*/
|
|
1660
1662
|
declare function useApiConfigSafe(): ApiConfigContextType | null;
|
|
1661
1663
|
//#endregion
|
|
1664
|
+
//#region src/lib/hooks/RouteConfigContext.d.ts
|
|
1665
|
+
/**
|
|
1666
|
+
* Route Configuration for path prefix customization.
|
|
1667
|
+
*
|
|
1668
|
+
* This context allows recce-cloud to configure a base path prefix
|
|
1669
|
+
* for all navigation within OSS components.
|
|
1670
|
+
*
|
|
1671
|
+
* Default behavior (OSS):
|
|
1672
|
+
* - basePath: "" (uses absolute paths like /query, /checks)
|
|
1673
|
+
*
|
|
1674
|
+
* Cloud usage example:
|
|
1675
|
+
* - basePath: "/oss/abc123" or "/preview/abc123"
|
|
1676
|
+
* - Navigation to "/query" becomes "/oss/abc123/query"
|
|
1677
|
+
*/
|
|
1678
|
+
interface RouteConfig {
|
|
1679
|
+
/**
|
|
1680
|
+
* Base path prefix for navigation.
|
|
1681
|
+
* For OSS: "" (empty string, uses absolute paths like /query)
|
|
1682
|
+
* For Cloud: "/oss/<sessionId>" or "/preview/<sessionId>"
|
|
1683
|
+
*/
|
|
1684
|
+
basePath: string;
|
|
1685
|
+
}
|
|
1686
|
+
interface RouteConfigContextType extends RouteConfig {
|
|
1687
|
+
/**
|
|
1688
|
+
* Resolves a path with the base path prefix.
|
|
1689
|
+
* @param path - The path to resolve (e.g., "/query")
|
|
1690
|
+
* @returns The resolved path (e.g., "/oss/abc123/query")
|
|
1691
|
+
*/
|
|
1692
|
+
resolvePath: (path: string) => string;
|
|
1693
|
+
}
|
|
1694
|
+
interface RouteConfigProviderProps extends Partial<RouteConfig> {
|
|
1695
|
+
children: React$1.ReactNode;
|
|
1696
|
+
}
|
|
1697
|
+
/**
|
|
1698
|
+
* Provider for route configuration.
|
|
1699
|
+
*
|
|
1700
|
+
* Wrap your application (or RecceContextProvider) with this provider
|
|
1701
|
+
* to configure path prefixes for navigation.
|
|
1702
|
+
*
|
|
1703
|
+
* @example
|
|
1704
|
+
* // In recce-cloud
|
|
1705
|
+
* <RouteConfigProvider basePath={`/oss/${sessionId}`}>
|
|
1706
|
+
* <RecceContextProvider>
|
|
1707
|
+
* {children}
|
|
1708
|
+
* </RecceContextProvider>
|
|
1709
|
+
* </RouteConfigProvider>
|
|
1710
|
+
*/
|
|
1711
|
+
declare function RouteConfigProvider({
|
|
1712
|
+
children,
|
|
1713
|
+
basePath
|
|
1714
|
+
}: RouteConfigProviderProps): React$1.FunctionComponentElement<React$1.ProviderProps<RouteConfigContextType>>;
|
|
1715
|
+
/**
|
|
1716
|
+
* Hook to access route configuration.
|
|
1717
|
+
*
|
|
1718
|
+
* When used outside RouteConfigProvider, returns default config
|
|
1719
|
+
* (for OSS backward compatibility).
|
|
1720
|
+
*
|
|
1721
|
+
* @returns RouteConfigContextType with basePath and resolvePath function
|
|
1722
|
+
*/
|
|
1723
|
+
declare function useRouteConfig(): RouteConfigContextType;
|
|
1724
|
+
/**
|
|
1725
|
+
* Safe hook that returns null if context not available.
|
|
1726
|
+
* Useful for components that need to detect if RouteConfigProvider is present.
|
|
1727
|
+
*/
|
|
1728
|
+
declare function useRouteConfigSafe(): RouteConfigContextType | null;
|
|
1729
|
+
//#endregion
|
|
1730
|
+
//#region src/lib/hooks/useAppRouter.d.ts
|
|
1731
|
+
interface NavigateOptions {
|
|
1732
|
+
replace?: boolean;
|
|
1733
|
+
scroll?: boolean;
|
|
1734
|
+
}
|
|
1735
|
+
/**
|
|
1736
|
+
* Hook that provides Wouter-compatible location API using Next.js App Router
|
|
1737
|
+
* with RouteConfigContext support for path prefixing.
|
|
1738
|
+
*
|
|
1739
|
+
* NOTE: This returns only the pathname (not search params) to avoid
|
|
1740
|
+
* triggering Suspense boundaries on every navigation.
|
|
1741
|
+
*
|
|
1742
|
+
* @returns [pathname, setLocation] tuple similar to Wouter's useLocation
|
|
1743
|
+
*
|
|
1744
|
+
* @example
|
|
1745
|
+
* const [location, setLocation] = useAppLocation();
|
|
1746
|
+
* setLocation("/checks?id=123"); // In cloud mode with basePath="/oss/abc123"
|
|
1747
|
+
* // navigates to "/oss/abc123/checks?id=123"
|
|
1748
|
+
*/
|
|
1749
|
+
declare function useAppLocation(): [string, (to: string, options?: NavigateOptions) => void];
|
|
1750
|
+
/**
|
|
1751
|
+
* Hook that includes search params in the location string.
|
|
1752
|
+
* Also supports RouteConfigContext path prefixing.
|
|
1753
|
+
*
|
|
1754
|
+
* WARNING: This hook uses useSearchParams() which triggers Suspense.
|
|
1755
|
+
* Only use this in components that are wrapped in a <Suspense> boundary,
|
|
1756
|
+
* or in leaf components where suspension is acceptable.
|
|
1757
|
+
*
|
|
1758
|
+
* @returns [fullLocation, setLocation] tuple with search params included
|
|
1759
|
+
*/
|
|
1760
|
+
declare function useAppLocationWithSearch(): [string, (to: string, options?: NavigateOptions) => void];
|
|
1761
|
+
/**
|
|
1762
|
+
* Hook to check if current path matches a pattern
|
|
1763
|
+
* Similar to Wouter's useRoute
|
|
1764
|
+
*
|
|
1765
|
+
* @param pattern - The route pattern to match (e.g., "/checks/:checkId")
|
|
1766
|
+
* @returns [isMatch, params] tuple
|
|
1767
|
+
*
|
|
1768
|
+
* @example
|
|
1769
|
+
* const [isMatch, params] = useAppRoute("/checks/:checkId");
|
|
1770
|
+
* if (isMatch) {
|
|
1771
|
+
* console.log(params.checkId); // "abc-123"
|
|
1772
|
+
* }
|
|
1773
|
+
*/
|
|
1774
|
+
declare function useAppRoute(pattern: string): [boolean, Record<string, string>];
|
|
1775
|
+
/**
|
|
1776
|
+
* Imperative navigation function for use outside React components
|
|
1777
|
+
* Use sparingly - prefer useAppLocation hook in components
|
|
1778
|
+
*
|
|
1779
|
+
* NOTE: This function does NOT support RouteConfigContext because
|
|
1780
|
+
* it's used outside of React component tree. If you need path prefixing,
|
|
1781
|
+
* use useAppLocation hook instead.
|
|
1782
|
+
*
|
|
1783
|
+
* @example
|
|
1784
|
+
* // In an event handler or utility function
|
|
1785
|
+
* import { navigateTo } from "@/lib/hooks/useAppRouter";
|
|
1786
|
+
* navigateTo("/checks?id=123");
|
|
1787
|
+
*/
|
|
1788
|
+
declare function navigateTo(path: string, replace?: boolean): void;
|
|
1789
|
+
/**
|
|
1790
|
+
* Hook for programmatic navigation with more options
|
|
1791
|
+
* Provides direct access to Next.js router methods with RouteConfigContext support
|
|
1792
|
+
*
|
|
1793
|
+
* NOTE: Does not include searchParams to avoid Suspense.
|
|
1794
|
+
* Use useSearchParams() directly in components that need it.
|
|
1795
|
+
*/
|
|
1796
|
+
declare function useAppNavigation(): {
|
|
1797
|
+
/** Current pathname */
|
|
1798
|
+
pathname: string;
|
|
1799
|
+
/** Current route params */
|
|
1800
|
+
params: Record<string, string>;
|
|
1801
|
+
/** Navigate to a new path (with RouteConfigContext support) */
|
|
1802
|
+
push: (href: string, options?: {
|
|
1803
|
+
scroll?: boolean;
|
|
1804
|
+
}) => void;
|
|
1805
|
+
/** Replace current history entry (with RouteConfigContext support) */
|
|
1806
|
+
replace: (href: string, options?: {
|
|
1807
|
+
scroll?: boolean;
|
|
1808
|
+
}) => void;
|
|
1809
|
+
/** Go back in history */
|
|
1810
|
+
back: () => void;
|
|
1811
|
+
/** Go forward in history */
|
|
1812
|
+
forward: () => void;
|
|
1813
|
+
/** Refresh the current route */
|
|
1814
|
+
refresh: () => void;
|
|
1815
|
+
/** Prefetch a route for faster navigation */
|
|
1816
|
+
prefetch: (href: string, options?: next_dist_shared_lib_app_router_context_shared_runtime0.PrefetchOptions) => void;
|
|
1817
|
+
};
|
|
1818
|
+
//#endregion
|
|
1662
1819
|
//#region recce-source/js/src/components/check/check.d.ts
|
|
1663
1820
|
declare function buildTitle(check: Check): string;
|
|
1664
1821
|
declare function buildDescription(check: Check): string;
|
|
@@ -1829,5 +1986,5 @@ declare const sessionStorageKeys: {
|
|
|
1829
1986
|
lineageNotificationDismissed: string;
|
|
1830
1987
|
};
|
|
1831
1988
|
//#endregion
|
|
1832
|
-
export {
|
|
1833
|
-
//# sourceMappingURL=index-
|
|
1989
|
+
export { navigateTo as $, ErrorBoundary$1 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 };
|
|
1990
|
+
//# sourceMappingURL=index-OJCzYajo.d.mts.map
|