@adaptabletools/adaptable-cjs 22.0.0-canary.10 → 22.0.0-canary.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable-cjs",
3
- "version": "22.0.0-canary.10",
3
+ "version": "22.0.0-canary.11",
4
4
  "description": "Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements",
5
5
  "keywords": [
6
6
  "web-components",
@@ -596,6 +596,10 @@ export interface GridApi {
596
596
  * Opens a window with a transposed view of Grid
597
597
  */
598
598
  showTransposedView(transposeConfig?: TransposeConfig): void;
599
+ /**
600
+ * Closes the transposed view of the Grid (if open)
601
+ */
602
+ closeTransposedView(): void;
599
603
  /**
600
604
  * Return all AG Grid columns
601
605
  */
@@ -152,6 +152,7 @@ export declare class GridApiImpl extends ApiBase implements GridApi {
152
152
  openGridInfoSettingsPanel(): void;
153
153
  getAgGridRowModelType(): RowModelType;
154
154
  showTransposedView(transposeConfig?: TransposeConfig): void;
155
+ closeTransposedView(): void;
155
156
  getAllAgGridColumns(): Column<any>[];
156
157
  updateAgGridColumnState(columnState: ColumnState): void;
157
158
  updateAgGridColumnStates(columnStates: ColumnState[]): void;
@@ -628,6 +628,9 @@ class GridApiImpl extends ApiBase_1.ApiBase {
628
628
  },
629
629
  });
630
630
  }
631
+ closeTransposedView() {
632
+ this.getUserInterfaceApi().closeCustomWindowPopup('WINDOW_SHOW_TRANSPOSED_VIEW');
633
+ }
631
634
  getAllAgGridColumns() {
632
635
  return this._adaptable.getAllGridColumns();
633
636
  }
package/src/env.js CHANGED
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.default = {
4
4
  NEXT_PUBLIC_INFINITE_TABLE_LICENSE_KEY: "StartDate=2021-06-29|EndDate=2030-01-01|Owner=Adaptable|Type=distribution|TS=1624971462479|C=137829811,1004007071,2756196225,1839832928,3994409405,636616862" || '',
5
- PUBLISH_TIMESTAMP: 1770972713843 || Date.now(),
6
- VERSION: "22.0.0-canary.10" || '--current-version--',
5
+ PUBLISH_TIMESTAMP: 1770996913801 || Date.now(),
6
+ VERSION: "22.0.0-canary.11" || '--current-version--',
7
7
  };