@adaptabletools/adaptable 12.0.0-canary.7 → 12.0.0-canary.8

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/src/types.d.ts CHANGED
@@ -95,7 +95,7 @@ export type { CustomToolbarConfiguredInfo } from './Api/Events/CustomToolbarConf
95
95
  export type { LiveDataChangedInfo, LiveReport } from './Api/Events/LiveDataChanged';
96
96
  export type { ActionRowSubmittedInfo, ActionRowType, CreatedActionRowInfo, EditedActionRowInfo, DeletedActionRowInfo, } from './Api/Events/ActionRowSubmitted';
97
97
  export type { AdaptableSearchState, AdaptableSortState, SearchChangedInfo, } from './Api/Events/SearchChanged';
98
- export type { DataSetChangedInfo } from './Api/Events/DataSetChanged';
98
+ export type { DataSetSelectedInfo } from './Api/Events/DataSetSelected';
99
99
  export type { SelectionChangedInfo } from './Api/Events/SelectionChanged';
100
100
  export type { ThemeChangedInfo } from './Api/Events/ThemeChanged';
101
101
  export type { DashboardChangedInfo } from './Api/Events/DashboardChanged';
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "12.0.0-canary.7";
1
+ declare const _default: "12.0.0-canary.8";
2
2
  export default _default;
package/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '12.0.0-canary.7'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '12.0.0-canary.8'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
@@ -1,5 +0,0 @@
1
- import { DataSet } from '../../types';
2
- import { BaseEventInfo } from './BaseEventInfo';
3
- export interface DataSetChangedInfo extends BaseEventInfo {
4
- dataSet: DataSet;
5
- }