@adaptabletools/adaptable 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",
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;
@@ -624,6 +624,9 @@ export class GridApiImpl extends ApiBase {
624
624
  },
625
625
  });
626
626
  }
627
+ closeTransposedView() {
628
+ this.getUserInterfaceApi().closeCustomWindowPopup('WINDOW_SHOW_TRANSPOSED_VIEW');
629
+ }
627
630
  getAllAgGridColumns() {
628
631
  return this._adaptable.getAllGridColumns();
629
632
  }
package/src/env.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export default {
2
2
  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" || '',
3
- PUBLISH_TIMESTAMP: 1770972678776 || Date.now(),
4
- VERSION: "22.0.0-canary.10" || '--current-version--',
3
+ PUBLISH_TIMESTAMP: 1770996876134 || Date.now(),
4
+ VERSION: "22.0.0-canary.11" || '--current-version--',
5
5
  };