@i2analyze/notebook-sdk 1.8.0-dev.1 → 1.8.0-dev.3
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.
|
@@ -1035,6 +1035,14 @@ export declare namespace app {
|
|
|
1035
1035
|
* @i2since 1.8
|
|
1036
1036
|
*/
|
|
1037
1037
|
removeNodeGroups(nodeGroups: NodeGroupSpecifier | Iterable<NodeGroupSpecifier>): boolean;
|
|
1038
|
+
/**
|
|
1039
|
+
* Removes nodes from their node group. If the group is empty after the mutation is committed, the group itself is removed.
|
|
1040
|
+
*
|
|
1041
|
+
* @param nodes - The node or nodes to be removed.
|
|
1042
|
+
* @returns `true` if one or more nodes were successfully removed from the group; `false` if none of the nodes existed.
|
|
1043
|
+
* @i2since 1.8
|
|
1044
|
+
*/
|
|
1045
|
+
removeFromNodeGroup(nodes: NodeSpecifier | Iterable<NodeSpecifier>): boolean;
|
|
1038
1046
|
/**
|
|
1039
1047
|
* Removes the currently selected records from the chart.
|
|
1040
1048
|
* @i2since 1.1
|
|
@@ -2494,7 +2502,7 @@ export declare namespace commands {
|
|
|
2494
2502
|
*/
|
|
2495
2503
|
readonly addToMap: CommandId;
|
|
2496
2504
|
/**
|
|
2497
|
-
* Gets the identifier of the system command opens the chart settings dialog.
|
|
2505
|
+
* Gets the identifier of the system command that opens the chart settings dialog.
|
|
2498
2506
|
* @i2since 1.5
|
|
2499
2507
|
*/
|
|
2500
2508
|
readonly chartSettings: CommandId;
|
|
@@ -2513,6 +2521,11 @@ export declare namespace commands {
|
|
|
2513
2521
|
* @i2since 1.0
|
|
2514
2522
|
*/
|
|
2515
2523
|
readonly deleteSelected: CommandId;
|
|
2524
|
+
/**
|
|
2525
|
+
* Gets the identifier of the system command that allows users to download records in Excel format.
|
|
2526
|
+
* @i2since 1.6
|
|
2527
|
+
*/
|
|
2528
|
+
readonly downloadRecords: CommandId;
|
|
2516
2529
|
/**
|
|
2517
2530
|
* Gets the identifier of the system command that performs a one-level expand operation on the current selection.
|
|
2518
2531
|
* @i2since 1.1
|
|
@@ -2528,6 +2541,11 @@ export declare namespace commands {
|
|
|
2528
2541
|
* @i2since 1.0
|
|
2529
2542
|
*/
|
|
2530
2543
|
readonly getPaths: CommandId;
|
|
2544
|
+
/**
|
|
2545
|
+
* Gets the identifier of the system command that adds selected nodes to a group.
|
|
2546
|
+
* @i2since 1.8
|
|
2547
|
+
*/
|
|
2548
|
+
readonly groupNodes: CommandId;
|
|
2531
2549
|
/**
|
|
2532
2550
|
* Gets the identifier of the system command that performs a grouped layout.
|
|
2533
2551
|
* @i2since 1.0
|
|
@@ -2649,10 +2667,10 @@ export declare namespace commands {
|
|
|
2649
2667
|
*/
|
|
2650
2668
|
readonly undo: CommandId;
|
|
2651
2669
|
/**
|
|
2652
|
-
* Gets the identifier of the system command that
|
|
2653
|
-
* @i2since 1.
|
|
2670
|
+
* Gets the identifier of the system command that removes selected nodes from their group.
|
|
2671
|
+
* @i2since 1.8
|
|
2654
2672
|
*/
|
|
2655
|
-
readonly
|
|
2673
|
+
readonly ungroupNodes: CommandId;
|
|
2656
2674
|
}
|
|
2657
2675
|
/**
|
|
2658
2676
|
* A lookup table for the identifiers of the system action groups in the Home tab.
|