@i2analyze/notebook-sdk 1.8.0-dev.19 → 1.8.0-dev.20

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.
@@ -2491,6 +2491,24 @@ export declare namespace commands {
2491
2491
  */
2492
2492
  export interface IHomeTabActionArea extends IActionArea<IHomeTabSystemGroups> {
2493
2493
  }
2494
+ /**
2495
+ * An area that represents the **Collect** tab in the application ribbon, which contains system groups.
2496
+ * @i2since 1.8
2497
+ */
2498
+ export interface ICollectTabActionArea extends IActionArea<ICollectTabSystemGroups> {
2499
+ }
2500
+ /**
2501
+ * An area that represents the **Analyze** tab in the application ribbon, which contains system groups.
2502
+ * @i2since 1.8
2503
+ */
2504
+ export interface IAnalyzeTabActionArea extends IActionArea<IAnalyzeTabSystemGroups> {
2505
+ }
2506
+ /**
2507
+ * An area that represents the **Disseminate** tab in the application ribbon, which contains system groups.
2508
+ * @i2since 1.8
2509
+ */
2510
+ export interface IDisseminateTabActionArea extends IActionArea<IDisseminateTabSystemGroups> {
2511
+ }
2494
2512
  /**
2495
2513
  * An area that represents a custom tab in the application ribbon.
2496
2514
  * @i2since 1.6
@@ -2507,6 +2525,21 @@ export declare namespace commands {
2507
2525
  * @i2since 1.0
2508
2526
  */
2509
2527
  readonly homeTab: IHomeTabActionArea;
2528
+ /**
2529
+ * Gets the area that represents the **Collect** tab in the application ribbon.
2530
+ * @i2since 1.8
2531
+ */
2532
+ readonly collectTab: ICollectTabActionArea;
2533
+ /**
2534
+ * Gets the area that represents the **Analyze** tab in the application ribbon.
2535
+ * @i2since 1.8
2536
+ */
2537
+ readonly analyzeTab: IAnalyzeTabActionArea;
2538
+ /**
2539
+ * Gets the area that represents the **Disseminate** tab in the application ribbon.
2540
+ * @i2since 1.8
2541
+ */
2542
+ readonly disseminateTab: IDisseminateTabActionArea;
2510
2543
  /**
2511
2544
  * Adds a new tab to the application ribbon.
2512
2545
  * @param config - The information necessary for creating the tab.
@@ -2648,10 +2681,10 @@ export declare namespace commands {
2648
2681
  */
2649
2682
  readonly layoutCircular: CommandId;
2650
2683
  /**
2651
- * Gets the identifier of the system command that performs an organizational layout.
2684
+ * Gets the identifier of the system command that performs an organization layout.
2652
2685
  * @i2since 1.8
2653
2686
  */
2654
- readonly layoutOrganizational: CommandId;
2687
+ readonly layoutOrganization: CommandId;
2655
2688
  /**
2656
2689
  * Gets the identifier of the system command that performs a minimize crossed links layout.
2657
2690
  * @i2since 1.8
@@ -2815,8 +2848,14 @@ export declare namespace commands {
2815
2848
  /**
2816
2849
  * Gets the identifier of the system action group named "Arrange".
2817
2850
  * @i2since 1.0
2851
+ * @deprecated The "arrange" property has been renamed to "layouts". Use {@link commands.IHomeTabSystemGroups.layouts} instead.
2818
2852
  */
2819
2853
  readonly arrange: GroupId;
2854
+ /**
2855
+ * Gets the identifier of the system action group named "Layouts".
2856
+ * @i2since 1.8
2857
+ */
2858
+ readonly layouts: GroupId;
2820
2859
  /**
2821
2860
  * Gets the identifier of the system action group named "Manage".
2822
2861
  * @i2since 1.1
@@ -2832,9 +2871,15 @@ export declare namespace commands {
2832
2871
  * @i2since 1.0
2833
2872
  */
2834
2873
  readonly history: GroupId;
2874
+ /**
2875
+ * Gets the identifier of the system action group named "Groups".
2876
+ * @i2since 1.8
2877
+ */
2878
+ readonly groups: GroupId;
2835
2879
  /**
2836
2880
  * Gets the identifier of the system action group named "Search Information Store".
2837
2881
  * @i2since 1.0
2882
+ * @deprecated The Search Information Store group has moved to the Collect tab {@link commands.ICollectTabSystemGroups.searchInfoStore}.
2838
2883
  */
2839
2884
  readonly searchInfoStore: GroupId;
2840
2885
  /**
@@ -2843,6 +2888,64 @@ export declare namespace commands {
2843
2888
  */
2844
2889
  readonly select: GroupId;
2845
2890
  }
2891
+ /**
2892
+ * A lookup table for the identifiers of the system action groups in the Collect tab.
2893
+ * @i2since 1.8
2894
+ */
2895
+ export interface ICollectTabSystemGroups {
2896
+ /**
2897
+ * Gets the identifier of the system action group named "Search Information Store".
2898
+ * @i2since 1.8
2899
+ */
2900
+ readonly searchInfoStore: GroupId;
2901
+ /**
2902
+ * Gets the identifier of the system action group named "Groups".
2903
+ * @i2since 1.8
2904
+ */
2905
+ readonly groups: GroupId;
2906
+ /**
2907
+ * Gets the identifier of the system action group named "Select".
2908
+ * @i2since 1.8
2909
+ */
2910
+ readonly select: GroupId;
2911
+ }
2912
+ /**
2913
+ * A lookup table for the identifiers of the system action groups in the Analyze tab.
2914
+ * @i2since 1.8
2915
+ */
2916
+ export interface IAnalyzeTabSystemGroups {
2917
+ /**
2918
+ * Gets the identifier of the system action group named "Discover".
2919
+ * @i2since 1.8
2920
+ */
2921
+ readonly discover: GroupId;
2922
+ /**
2923
+ * Gets the identifier of the system action group named "Layouts".
2924
+ * @i2since 1.8
2925
+ */
2926
+ readonly layouts: GroupId;
2927
+ /**
2928
+ * Gets the identifier of the system action group named "Groups".
2929
+ * @i2since 1.8
2930
+ */
2931
+ readonly groups: GroupId;
2932
+ /**
2933
+ * Gets the identifier of the system action group named "Select".
2934
+ * @i2since 1.8
2935
+ */
2936
+ readonly select: GroupId;
2937
+ }
2938
+ /**
2939
+ * A lookup table for the identifiers of the system action groups in the Disseminate tab.
2940
+ * @i2since 1.8
2941
+ */
2942
+ export interface IDisseminateTabSystemGroups {
2943
+ /**
2944
+ * Gets the identifier of the system action group named "Export".
2945
+ * @i2since 1.8
2946
+ */
2947
+ readonly export: GroupId;
2948
+ }
2846
2949
  /**
2847
2950
  * A lookup table for the identifiers of the system action groups in the chart item pop-up menu.
2848
2951
  * @i2since 1.4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@i2analyze/notebook-sdk",
3
- "version": "1.8.0-dev.19",
3
+ "version": "1.8.0-dev.20",
4
4
  "description": "i2 Notebook SDK",
5
5
  "license": "MIT",
6
6
  "publishConfig": {