@datarecce/ui 0.1.12 → 0.1.13
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/{LineageViewContext-BPpYWJ2B.d.mts → LineageViewContext-DEa54ZNF.d.mts} +1 -1
- package/dist/{LineageViewContext-DqJPwm_c.d.ts → LineageViewContext-DPVC8ak8.d.ts} +1 -1
- package/dist/{agGridStyles-L5J6VVIU.css → agGridStyles-VYALGSJU.css} +4 -3
- package/dist/api.d.mts +6 -5
- package/dist/api.d.ts +6 -5
- package/dist/api.js +13 -12
- package/dist/api.js.map +1 -1
- package/dist/api.mjs +13 -12
- package/dist/api.mjs.map +1 -1
- package/dist/components.d.mts +4 -4
- package/dist/components.d.ts +4 -4
- package/dist/components.js +1217 -879
- package/dist/components.js.map +1 -1
- package/dist/components.mjs +962 -623
- package/dist/components.mjs.map +1 -1
- package/dist/hooks.d.mts +23 -3
- package/dist/hooks.d.ts +23 -3
- package/dist/hooks.js +742 -538
- package/dist/hooks.js.map +1 -1
- package/dist/hooks.mjs +587 -383
- package/dist/hooks.mjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1311 -962
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +998 -648
- package/dist/index.mjs.map +1 -1
- package/dist/{lineagecheck-BIlm5vq1.d.ts → lineagecheck-BQaKAQzn.d.mts} +3 -3
- package/dist/{lineagecheck-BIlm5vq1.d.mts → lineagecheck-BQaKAQzn.d.ts} +3 -3
- package/dist/{style-LYNBK7ND.css → style-466WWZLM.css} +36 -8
- package/dist/styles-JV3V5MVO.css +42 -0
- package/dist/{styles-PJUYW64Y.css → styles-QUPOR3LM.css} +7 -2
- package/dist/types.d.mts +2 -2
- package/dist/types.d.ts +2 -2
- package/package.json +5 -5
- package/dist/styles-VXS6KNFS.css +0 -9
package/dist/hooks.d.mts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
2
|
-
import { d as LineageGraph } from './LineageViewContext-
|
|
3
|
-
export { u as useLineageViewContext } from './LineageViewContext-
|
|
2
|
+
import { d as LineageGraph } from './LineageViewContext-DEa54ZNF.mjs';
|
|
3
|
+
export { u as useLineageViewContext } from './LineageViewContext-DEa54ZNF.mjs';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import React__default, { Dispatch, SetStateAction, ReactNode } from 'react';
|
|
6
|
-
import { J as stateMetadata, K as gitInfo, O as pullRequestInfo, M as ManifestMetadata, z as SQLMeshInfo, as as RunsAggregated, b4 as RunType, aB as AxiosQueryParams, aj as SubmitRunTrackProps } from './lineagecheck-
|
|
6
|
+
import { J as stateMetadata, K as gitInfo, O as pullRequestInfo, M as ManifestMetadata, z as SQLMeshInfo, as as RunsAggregated, b4 as RunType, aB as AxiosQueryParams, aj as SubmitRunTrackProps } from './lineagecheck-BQaKAQzn.mjs';
|
|
7
7
|
import '@xyflow/react';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'react-icons';
|
|
@@ -42,6 +42,26 @@ declare function useValueDiffAlertDialog(): {
|
|
|
42
42
|
interface RecceContextProps {
|
|
43
43
|
children: React__default.ReactNode;
|
|
44
44
|
}
|
|
45
|
+
/**
|
|
46
|
+
* Main context provider for Recce application.
|
|
47
|
+
*
|
|
48
|
+
* For custom API configuration (e.g., recce-cloud), wrap this provider
|
|
49
|
+
* with ApiConfigProvider:
|
|
50
|
+
*
|
|
51
|
+
* ```tsx
|
|
52
|
+
* <ApiConfigProvider
|
|
53
|
+
* apiPrefix="/api/v2/sessions/abc123"
|
|
54
|
+
* authToken="eyJ..."
|
|
55
|
+
* >
|
|
56
|
+
* <RecceContextProvider>
|
|
57
|
+
* {children}
|
|
58
|
+
* </RecceContextProvider>
|
|
59
|
+
* </ApiConfigProvider>
|
|
60
|
+
* ```
|
|
61
|
+
*
|
|
62
|
+
* When used without ApiConfigProvider (OSS mode), hooks will use
|
|
63
|
+
* the default axios client with standard /api/* endpoints.
|
|
64
|
+
*/
|
|
45
65
|
declare function RecceContextProvider({ children }: RecceContextProps): react_jsx_runtime.JSX.Element;
|
|
46
66
|
|
|
47
67
|
type RecceFeatureMode = "read only" | "metadata only" | null;
|
package/dist/hooks.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
2
|
-
import { d as LineageGraph } from './LineageViewContext-
|
|
3
|
-
export { u as useLineageViewContext } from './LineageViewContext-
|
|
2
|
+
import { d as LineageGraph } from './LineageViewContext-DPVC8ak8.js';
|
|
3
|
+
export { u as useLineageViewContext } from './LineageViewContext-DPVC8ak8.js';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import React__default, { Dispatch, SetStateAction, ReactNode } from 'react';
|
|
6
|
-
import { J as stateMetadata, K as gitInfo, O as pullRequestInfo, M as ManifestMetadata, z as SQLMeshInfo, as as RunsAggregated, b4 as RunType, aB as AxiosQueryParams, aj as SubmitRunTrackProps } from './lineagecheck-
|
|
6
|
+
import { J as stateMetadata, K as gitInfo, O as pullRequestInfo, M as ManifestMetadata, z as SQLMeshInfo, as as RunsAggregated, b4 as RunType, aB as AxiosQueryParams, aj as SubmitRunTrackProps } from './lineagecheck-BQaKAQzn.js';
|
|
7
7
|
import '@xyflow/react';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'react-icons';
|
|
@@ -42,6 +42,26 @@ declare function useValueDiffAlertDialog(): {
|
|
|
42
42
|
interface RecceContextProps {
|
|
43
43
|
children: React__default.ReactNode;
|
|
44
44
|
}
|
|
45
|
+
/**
|
|
46
|
+
* Main context provider for Recce application.
|
|
47
|
+
*
|
|
48
|
+
* For custom API configuration (e.g., recce-cloud), wrap this provider
|
|
49
|
+
* with ApiConfigProvider:
|
|
50
|
+
*
|
|
51
|
+
* ```tsx
|
|
52
|
+
* <ApiConfigProvider
|
|
53
|
+
* apiPrefix="/api/v2/sessions/abc123"
|
|
54
|
+
* authToken="eyJ..."
|
|
55
|
+
* >
|
|
56
|
+
* <RecceContextProvider>
|
|
57
|
+
* {children}
|
|
58
|
+
* </RecceContextProvider>
|
|
59
|
+
* </ApiConfigProvider>
|
|
60
|
+
* ```
|
|
61
|
+
*
|
|
62
|
+
* When used without ApiConfigProvider (OSS mode), hooks will use
|
|
63
|
+
* the default axios client with standard /api/* endpoints.
|
|
64
|
+
*/
|
|
45
65
|
declare function RecceContextProvider({ children }: RecceContextProps): react_jsx_runtime.JSX.Element;
|
|
46
66
|
|
|
47
67
|
type RecceFeatureMode = "read only" | "metadata only" | null;
|