@adaptabletools/adaptable-plugin-openfin 23.0.0-canary.1 → 23.0.0-canary.10
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
|
import { AdaptableModuleBase } from '@adaptabletools/adaptable/src/Strategy/AdaptableModuleBase';
|
|
2
2
|
import * as ModuleConstants from '@adaptabletools/adaptable/src/Utilities/Constants/ModuleConstants';
|
|
3
|
-
import throttle from '@adaptabletools/adaptable/src/Utilities/
|
|
3
|
+
import { throttle } from '@adaptabletools/adaptable/src/Utilities/Helpers/TimingHelper';
|
|
4
4
|
import { DEFAULT_LIVE_REPORT_THROTTLE_TIME, ALL_DATA_REPORT, SELECTED_DATA_REPORT, } from '@adaptabletools/adaptable/src/Utilities/Constants/GeneralConstants';
|
|
5
5
|
export const EXCEL_VALIDATION_FAILED = 'excelValidationFailed';
|
|
6
6
|
export class OpenFinModule extends AdaptableModuleBase {
|
package/src/OpenFinApiImpl.js
CHANGED
|
@@ -4,7 +4,7 @@ import * as OpenFinRedux from './Redux/ActionReducers/OpenFinRedux';
|
|
|
4
4
|
import { addEventListener, create } from 'openfin-notifications';
|
|
5
5
|
import { isRunningInOpenfin } from './Utilities/isRunningInOpenfin';
|
|
6
6
|
import { isAdaptableCustomIcon } from '@adaptabletools/adaptable/src/components/Icon';
|
|
7
|
-
import { resolveAlertFormForDefinition } from '@adaptabletools/adaptable/src/Utilities/Helpers/
|
|
7
|
+
import { resolveAlertFormForDefinition } from '@adaptabletools/adaptable/src/Utilities/Helpers/AlertHelper';
|
|
8
8
|
// needed because otherwise openfin-notifications is not initialized properly
|
|
9
9
|
// as it assumes it's running before DOMContentLoaded, but nextjs and other bundlers
|
|
10
10
|
// might inject it after DOMContentLoaded is fired - so we fire it programatically
|