@i2analyze/notebook-sdk 1.8.0-dev.13 → 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.
- package/lib/gen/notebook-sdk-public.d.ts +21 -21
- package/package.json +1 -1
|
@@ -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.
|
|
@@ -2582,12 +2582,6 @@ export declare namespace commands {
|
|
|
2582
2582
|
* @i2since 1.4
|
|
2583
2583
|
*/
|
|
2584
2584
|
readonly copy: CommandId;
|
|
2585
|
-
/**
|
|
2586
|
-
* Gets the identifier of the system command that collapses selected groups in the chart.
|
|
2587
|
-
*
|
|
2588
|
-
* @i2since 1.8
|
|
2589
|
-
*/
|
|
2590
|
-
readonly collapseGroups: CommandId;
|
|
2591
2585
|
/**
|
|
2592
2586
|
* Gets the identifier of the system command that cuts the selected elements and copies them to the clipboard.
|
|
2593
2587
|
* @i2since 1.4
|
|
@@ -2618,12 +2612,6 @@ export declare namespace commands {
|
|
|
2618
2612
|
* @i2since 1.1
|
|
2619
2613
|
*/
|
|
2620
2614
|
readonly expand: CommandId;
|
|
2621
|
-
/**
|
|
2622
|
-
* Gets the identifier of the system command that expands selected groups in the chart.
|
|
2623
|
-
*
|
|
2624
|
-
* @i2since 1.8
|
|
2625
|
-
*/
|
|
2626
|
-
readonly expandGroups: CommandId;
|
|
2627
2615
|
/**
|
|
2628
2616
|
* Gets the identifier of the "Export to PDF" system command.
|
|
2629
2617
|
* @i2since 1.3
|
|
@@ -2654,6 +2642,18 @@ export declare namespace commands {
|
|
|
2654
2642
|
* @i2since 1.0
|
|
2655
2643
|
*/
|
|
2656
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;
|
|
2657
2657
|
/**
|
|
2658
2658
|
* Gets the identifier of the system command that opens the i2 Notebook importer.
|
|
2659
2659
|
* @i2since 1.5
|
|
@@ -5820,14 +5820,14 @@ export declare namespace visual {
|
|
|
5820
5820
|
*/
|
|
5821
5821
|
readonly style: INodeGroupStyle;
|
|
5822
5822
|
/**
|
|
5823
|
-
* Indicates the
|
|
5823
|
+
* Indicates the minimized state of the node group.
|
|
5824
5824
|
* @remarks
|
|
5825
|
-
* A
|
|
5826
|
-
* image of the group, and can be
|
|
5827
|
-
* @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.
|
|
5828
5828
|
* @i2since 1.8
|
|
5829
5829
|
*/
|
|
5830
|
-
readonly
|
|
5830
|
+
readonly isMinimized: boolean;
|
|
5831
5831
|
/**
|
|
5832
5832
|
* Gets the nodes in the node group.
|
|
5833
5833
|
* @i2since 1.8
|