@adaptabletools/adaptable 16.2.0-canary.0 → 16.2.0-canary.2
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/base.css +1 -1
- package/base.css.map +1 -1
- package/bundle.cjs.js +100 -100
- package/index.css +1 -1
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/DataImportOptions.d.ts +17 -5
- package/src/AdaptableOptions/GroupingOptions.d.ts +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +1 -1
- package/src/Api/ColumnApi.d.ts +3 -3
- package/src/Api/EventApi.d.ts +13 -2
- package/src/Api/Events/DataImported.d.ts +19 -0
- package/src/Api/Events/DataImported.js +2 -0
- package/src/Api/Internal/DataImportInternalApi.d.ts +6 -0
- package/src/Api/Internal/DataImportInternalApi.js +28 -11
- package/src/Api/Internal/FilterInternalApi.d.ts +1 -1
- package/src/Api/Internal/FilterInternalApi.js +1 -1
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +3 -3
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +1 -1
- package/src/PredefinedConfig/Common/Menu.d.ts +2 -2
- package/src/PredefinedConfig/DashboardState.d.ts +1 -1
- package/src/Strategy/Fdc3Module.js +1 -0
- package/src/Utilities/Services/ModuleService.js +2 -0
- package/src/View/DataImport/DataImportPopup.js +1 -1
- package/src/View/DataImport/DataImportWizard/DataImportWizard.js +4 -2
- package/src/View/DataImport/DataImportWizard/sections/ColumnsSection.js +1 -1
- package/src/agGrid/Adaptable.js +7 -0
- package/src/components/ExpressionEditor/editorButtonsObservable.js +5 -0
- package/src/metamodel/adaptable.metamodel.d.ts +20 -0
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +2 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/src/types.d.ts
CHANGED
|
@@ -69,6 +69,7 @@ export type { NotesApi } from './Api/NotesAPi';
|
|
|
69
69
|
export type { ConfigApi } from './Api/ConfigApi';
|
|
70
70
|
export type { CustomSortApi } from './Api/CustomSortApi';
|
|
71
71
|
export type { DashboardApi } from './Api/DashboardApi';
|
|
72
|
+
export type { DataImportApi } from './Api/DataImportApi';
|
|
72
73
|
export type { DataSetApi } from './Api/DataSetApi';
|
|
73
74
|
export type { DataChangeHistoryApi } from './Api/DataChangeHistoryApi';
|
|
74
75
|
export type { EntitlementApi } from './Api/EntitlementApi';
|
|
@@ -108,6 +109,7 @@ export type { EventApi } from './Api/EventApi';
|
|
|
108
109
|
export type { BaseEventInfo } from './Api/Events/BaseEventInfo';
|
|
109
110
|
export type { AdaptableReadyInfo } from './Api/Events/AdaptableReady';
|
|
110
111
|
export type { AlertFiredInfo } from './Api/Events/AlertFired';
|
|
112
|
+
export type { DataImportedInfo } from './Api/Events/DataImported';
|
|
111
113
|
export type { FlashingCellDisplayedInfo } from './Api/Events/FlashingCellDisplayed';
|
|
112
114
|
export type { SystemStatusMessageDisplayedInfo } from './Api/Events/SystemStatusMessageDisplayed';
|
|
113
115
|
export type { CellChangedInfo } from './Api/Events/CellChanged';
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "16.2.0-canary.
|
|
1
|
+
declare const _default: "16.2.0-canary.2";
|
|
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 = '16.2.0-canary.
|
|
3
|
+
exports.default = '16.2.0-canary.2'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|