@flowgram.ai/renderer 0.1.25 → 0.1.27
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/esm/index.js +131 -65
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +192 -126
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -582,9 +582,9 @@ interface FlowRendererContribution {
|
|
|
582
582
|
|
|
583
583
|
declare const FlowRendererContainerModule: ContainerModule;
|
|
584
584
|
|
|
585
|
-
declare const MARK_ARROW_ID = "
|
|
585
|
+
declare const MARK_ARROW_ID = "$marker_arrow$";
|
|
586
586
|
|
|
587
|
-
declare const MARK_ACTIVATED_ARROW_ID = "
|
|
587
|
+
declare const MARK_ACTIVATED_ARROW_ID = "$marker_arrow_activated$";
|
|
588
588
|
|
|
589
589
|
declare function useBaseColor(): {
|
|
590
590
|
baseColor: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -582,9 +582,9 @@ interface FlowRendererContribution {
|
|
|
582
582
|
|
|
583
583
|
declare const FlowRendererContainerModule: ContainerModule;
|
|
584
584
|
|
|
585
|
-
declare const MARK_ARROW_ID = "
|
|
585
|
+
declare const MARK_ARROW_ID = "$marker_arrow$";
|
|
586
586
|
|
|
587
|
-
declare const MARK_ACTIVATED_ARROW_ID = "
|
|
587
|
+
declare const MARK_ACTIVATED_ARROW_ID = "$marker_arrow_activated$";
|
|
588
588
|
|
|
589
589
|
declare function useBaseColor(): {
|
|
590
590
|
baseColor: string;
|