book-index-ui 0.2.20 → 0.2.21
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/index.cjs +3 -3
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1835 -1798
- package/dist/storage.d.ts +3 -0
- package/package.json +1 -1
package/dist/storage.d.ts
CHANGED
|
@@ -934,6 +934,9 @@ declare interface LineageGraphNode {
|
|
|
934
934
|
/** 分组 id(来自 work.version_graph.node_groups 或 hypothetical.group) */
|
|
935
935
|
group?: string;
|
|
936
936
|
note?: string;
|
|
937
|
+
/** 桥接节点:本身不在核心集,但为了保持核心节点间派生链不断而引入。
|
|
938
|
+
* 视觉上应淡化(半透明、虚边框)。仅在 collection==='core' 模式下出现。 */
|
|
939
|
+
bridge?: boolean;
|
|
937
940
|
}
|
|
938
941
|
|
|
939
942
|
/** ref_type:派生来源是其他 Book 还是假想节点 */
|