@i2analyze/notebook-sdk 1.8.0-dev.12 → 1.8.0-dev.14
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.
|
@@ -758,13 +758,13 @@ export declare namespace app {
|
|
|
758
758
|
*/
|
|
759
759
|
setImage(href: string | undefined, description?: string): this;
|
|
760
760
|
/**
|
|
761
|
-
* Sets whether the node group is
|
|
761
|
+
* Sets whether the node group is minimized, so nodes within the group are hidden, or maximized where they are shown.
|
|
762
762
|
*
|
|
763
|
-
* @param
|
|
764
|
-
* @returns The node group, with its
|
|
763
|
+
* @param isMinimized - `true` to minimize the group, `false` to maximize it.
|
|
764
|
+
* @returns The node group, with its minimized state set to the specified value.
|
|
765
765
|
* @i2since 1.8
|
|
766
766
|
*/
|
|
767
|
-
|
|
767
|
+
setIsMinimized(isMinimized: boolean): this;
|
|
768
768
|
/**
|
|
769
769
|
* Adds nodes to the group.
|
|
770
770
|
* @param nodes - The nodes to add to the group.
|
|
@@ -2642,6 +2642,18 @@ export declare namespace commands {
|
|
|
2642
2642
|
* @i2since 1.0
|
|
2643
2643
|
*/
|
|
2644
2644
|
readonly layoutPeacock: CommandId;
|
|
2645
|
+
/**
|
|
2646
|
+
* Gets the identifier of the system command that maximizes selected groups in the chart.
|
|
2647
|
+
*
|
|
2648
|
+
* @i2since 1.8
|
|
2649
|
+
*/
|
|
2650
|
+
readonly maximizeGroups: CommandId;
|
|
2651
|
+
/**
|
|
2652
|
+
* Gets the identifier of the system command that minimizes selected groups in the chart.
|
|
2653
|
+
*
|
|
2654
|
+
* @i2since 1.8
|
|
2655
|
+
*/
|
|
2656
|
+
readonly minimizeGroups: CommandId;
|
|
2645
2657
|
/**
|
|
2646
2658
|
* Gets the identifier of the system command that opens the i2 Notebook importer.
|
|
2647
2659
|
* @i2since 1.5
|
|
@@ -5808,14 +5820,14 @@ export declare namespace visual {
|
|
|
5808
5820
|
*/
|
|
5809
5821
|
readonly style: INodeGroupStyle;
|
|
5810
5822
|
/**
|
|
5811
|
-
* Indicates the
|
|
5823
|
+
* Indicates the minimized state of the node group.
|
|
5812
5824
|
* @remarks
|
|
5813
|
-
* A
|
|
5814
|
-
* image of the group, and can be
|
|
5815
|
-
* @returns `true` if the node group is
|
|
5825
|
+
* A minimized node group is represented by a single node that contains the label and
|
|
5826
|
+
* image of the group, and can be maximized to show the individual nodes in the group.
|
|
5827
|
+
* @returns `true` if the node group is minimized; `false` if it is maximized.
|
|
5816
5828
|
* @i2since 1.8
|
|
5817
5829
|
*/
|
|
5818
|
-
readonly
|
|
5830
|
+
readonly isMinimized: boolean;
|
|
5819
5831
|
/**
|
|
5820
5832
|
* Gets the nodes in the node group.
|
|
5821
5833
|
* @i2since 1.8
|