@tldiagram/core-ui 2.0.2 → 2.0.4
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/components/FloatingEdge.d.ts +1 -1
- package/dist/demo/viewEditor.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8198 -7926
- package/dist/pages/ViewEditor/index.d.ts +6 -1
- package/package.json +1 -1
- package/src/components/CrossBranchControls.tsx +178 -61
- package/src/components/FloatingEdge.tsx +145 -39
- package/src/components/ViewFloatingMenu.tsx +158 -68
- package/src/demo/viewEditor.ts +2 -0
- package/src/index.ts +1 -1
- package/src/pages/InfiniteZoom.tsx +4 -4
- package/src/pages/ViewEditor/index.tsx +34 -10
|
@@ -4,6 +4,6 @@ export interface FloatingConnectorData {
|
|
|
4
4
|
/** true = portal/navigational link (dotted), false = hierarchy (solid) */
|
|
5
5
|
dashed?: boolean;
|
|
6
6
|
}
|
|
7
|
-
declare function FloatingConnector({ source, target, data, selected, }: EdgeProps<FloatingConnectorData>): import("react/jsx-runtime").JSX.Element | null;
|
|
7
|
+
declare function FloatingConnector({ id, source, target, data, selected, }: EdgeProps<FloatingConnectorData>): import("react/jsx-runtime").JSX.Element | null;
|
|
8
8
|
declare const _default: import("react").MemoExoticComponent<typeof FloatingConnector>;
|
|
9
9
|
export default _default;
|
|
@@ -7,6 +7,7 @@ export interface ViewEditorDemoOptions {
|
|
|
7
7
|
disableOnboarding?: boolean;
|
|
8
8
|
hideFocusView?: boolean;
|
|
9
9
|
hideExpandExtras?: boolean;
|
|
10
|
+
defaultHiddenLayerTags?: string[];
|
|
10
11
|
}
|
|
11
12
|
export declare const DEMO_VIEW_EDITOR_OPTIONS: Omit<ViewEditorDemoOptions, 'revealProgress'>;
|
|
12
13
|
interface UseDemoRevealViewportArgs {
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* so that host applications (SaaS, CLI viewer, VS Code extension) can
|
|
7
7
|
* compose them with their own routing, API clients, and pro features.
|
|
8
8
|
*/
|
|
9
|
-
export { default as ViewEditor } from './pages/ViewEditor';
|
|
9
|
+
export { default as ViewEditor, type ViewEditorPermissions } from './pages/ViewEditor';
|
|
10
10
|
export { default as ViewsPage } from './pages/Views';
|
|
11
11
|
export { default as ViewsGrid } from './pages/ViewsGrid';
|
|
12
12
|
export { default as Dependencies } from './pages/Dependencies';
|