@i2analyze/notebook-sdk 1.8.0-dev.10 → 1.8.0-dev.12
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.
|
@@ -757,6 +757,14 @@ export declare namespace app {
|
|
|
757
757
|
* @i2since 1.8
|
|
758
758
|
*/
|
|
759
759
|
setImage(href: string | undefined, description?: string): this;
|
|
760
|
+
/**
|
|
761
|
+
* Sets whether the node group is collapsed or expanded.
|
|
762
|
+
*
|
|
763
|
+
* @param isCollapsed - `true` to collapse the group, `false` to expand it.
|
|
764
|
+
* @returns The node group, with its collapsed state set to the specified value.
|
|
765
|
+
* @i2since 1.8
|
|
766
|
+
*/
|
|
767
|
+
setIsCollapsed(isCollapsed: boolean): this;
|
|
760
768
|
/**
|
|
761
769
|
* Adds nodes to the group.
|
|
762
770
|
* @param nodes - The nodes to add to the group.
|
|
@@ -2589,6 +2597,16 @@ export declare namespace commands {
|
|
|
2589
2597
|
* @i2since 1.6
|
|
2590
2598
|
*/
|
|
2591
2599
|
readonly downloadRecords: CommandId;
|
|
2600
|
+
/**
|
|
2601
|
+
* Gets the identifier of the system command that enables inline editing for the selected element's label.
|
|
2602
|
+
* @i2since 1.8
|
|
2603
|
+
*/
|
|
2604
|
+
readonly editElementLabel: CommandId;
|
|
2605
|
+
/**
|
|
2606
|
+
* Gets the identifier of the system command that enables inline editing for the selected group's label.
|
|
2607
|
+
* @i2since 1.8
|
|
2608
|
+
*/
|
|
2609
|
+
readonly editGroupLabel: CommandId;
|
|
2592
2610
|
/**
|
|
2593
2611
|
* Gets the identifier of the system command that performs a one-level expand operation on the current selection.
|
|
2594
2612
|
* @i2since 1.1
|
|
@@ -2644,6 +2662,16 @@ export declare namespace commands {
|
|
|
2644
2662
|
* @i2since 1.0
|
|
2645
2663
|
*/
|
|
2646
2664
|
readonly redo: CommandId;
|
|
2665
|
+
/**
|
|
2666
|
+
* Gets the identifier of the system command that resets the selected elements' labels to their default values.
|
|
2667
|
+
* @i2since 1.8
|
|
2668
|
+
*/
|
|
2669
|
+
readonly resetElementLabel: CommandId;
|
|
2670
|
+
/**
|
|
2671
|
+
* Gets the identifier of the system command that resets the selected groups' labels to their default values.
|
|
2672
|
+
* @i2since 1.8
|
|
2673
|
+
*/
|
|
2674
|
+
readonly resetGroupLabel: CommandId;
|
|
2647
2675
|
/**
|
|
2648
2676
|
* Gets the identifier of the system command that saves the current chart.
|
|
2649
2677
|
* @i2since 1.1
|
|
@@ -2786,6 +2814,11 @@ export declare namespace commands {
|
|
|
2786
2814
|
* @i2since 1.0
|
|
2787
2815
|
*/
|
|
2788
2816
|
readonly discover: GroupId;
|
|
2817
|
+
/**
|
|
2818
|
+
* Gets the identifier of the system action group related to element label operations.
|
|
2819
|
+
* @i2since 1.8
|
|
2820
|
+
*/
|
|
2821
|
+
readonly label: GroupId;
|
|
2789
2822
|
/**
|
|
2790
2823
|
* Gets the identifier of the system action group related to link direction.
|
|
2791
2824
|
* @i2since 1.5
|
|
@@ -5774,6 +5807,15 @@ export declare namespace visual {
|
|
|
5774
5807
|
* @i2since 1.8
|
|
5775
5808
|
*/
|
|
5776
5809
|
readonly style: INodeGroupStyle;
|
|
5810
|
+
/**
|
|
5811
|
+
* Indicates the collapsed state of the node group.
|
|
5812
|
+
* @remarks
|
|
5813
|
+
* A collapsed node group is represented by a single node that contains the label and
|
|
5814
|
+
* image of the group, and can be expanded to show the individual nodes in the group.
|
|
5815
|
+
* @returns `true` if the node group is collapsed; `false` if it is expanded.
|
|
5816
|
+
* @i2since 1.8
|
|
5817
|
+
*/
|
|
5818
|
+
readonly isCollapsed: boolean;
|
|
5777
5819
|
/**
|
|
5778
5820
|
* Gets the nodes in the node group.
|
|
5779
5821
|
* @i2since 1.8
|