@i2analyze/notebook-sdk 1.9.0-dev.0 → 1.9.0-dev.1
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.
|
@@ -526,8 +526,37 @@ export declare namespace app {
|
|
|
526
526
|
* @i2since 1.1
|
|
527
527
|
*/
|
|
528
528
|
export interface IUntrackedMutations extends IMutationsBase {
|
|
529
|
+
/**
|
|
530
|
+
* Gets an object with methods for editing the appearance of a node.
|
|
531
|
+
*
|
|
532
|
+
* @remarks
|
|
533
|
+
* Untracked edits apply only locally and are not persisted to the server.
|
|
534
|
+
* Any changes are lost on page or chart reload.
|
|
535
|
+
*
|
|
536
|
+
* @param node - The node to be edited.
|
|
537
|
+
* @returns The node-editing object.
|
|
538
|
+
* @i2since 1.9
|
|
539
|
+
*/
|
|
540
|
+
editNode(node: NodeSpecifier): INodeEditor;
|
|
541
|
+
/**
|
|
542
|
+
* Gets an object with methods for editing the appearance of an edge.
|
|
543
|
+
*
|
|
544
|
+
* @remarks
|
|
545
|
+
* Untracked edits apply only locally and are not persisted to the server.
|
|
546
|
+
* Any changes are lost on page or chart reload.
|
|
547
|
+
*
|
|
548
|
+
* @param edge - The edge to be edited.
|
|
549
|
+
* @returns The edge-editing object.
|
|
550
|
+
* @i2since 1.9
|
|
551
|
+
*/
|
|
552
|
+
editEdge(edge: EdgeSpecifier): IEdgeEditor;
|
|
529
553
|
/**
|
|
530
554
|
* Gets an object with methods for editing the appearance of an edge summary.
|
|
555
|
+
*
|
|
556
|
+
* @remarks
|
|
557
|
+
* Untracked edits apply only locally and are not persisted to the server.
|
|
558
|
+
* Any changes to edge summaries are persisted to the browser only.
|
|
559
|
+
*
|
|
531
560
|
* @param edge - The edge summary to edit.
|
|
532
561
|
* @returns The edge-summary-editing object.
|
|
533
562
|
* @i2since 1.6
|