@adaptabletools/adaptable 13.0.10 → 13.1.0-canary.1
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 +92 -0
- package/base.css.map +1 -1
- package/bundle.cjs.js +179 -177
- package/index.css +107 -0
- package/index.css.map +1 -1
- package/package.json +2 -2
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +5 -2
- package/src/AdaptableOptions/ActionOptions.d.ts +52 -34
- package/src/AdaptableOptions/AdaptableOptions.d.ts +5 -0
- package/src/AdaptableOptions/ChartingOptions.d.ts +27 -0
- package/src/AdaptableOptions/ChartingOptions.js +2 -0
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +2 -2
- package/src/AdaptableOptions/LayoutOptions.d.ts +1 -2
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +1 -1
- package/src/Api/ChartingApi.d.ts +38 -1
- package/src/Api/ColumnApi.d.ts +1 -2
- package/src/Api/Implementation/AlertApiImpl.js +4 -0
- package/src/Api/Implementation/ChartingApiImpl.d.ts +9 -1
- package/src/Api/Implementation/ChartingApiImpl.js +35 -6
- package/src/Api/Implementation/GridApiImpl.js +3 -2
- package/src/PredefinedConfig/AlertState.d.ts +7 -3
- package/src/PredefinedConfig/ChartingState.d.ts +13 -4
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +6 -6
- package/src/PredefinedConfig/Common/Types.d.ts +4 -4
- package/src/PredefinedConfig/Common/Types.js +3 -0
- package/src/PredefinedConfig/PredefinedConfig.d.ts +1 -2
- package/src/PredefinedConfig/SystemState.d.ts +9 -0
- package/src/Redux/ActionsReducers/ChartingRedux.d.ts +28 -5
- package/src/Redux/ActionsReducers/ChartingRedux.js +45 -5
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +7 -0
- package/src/Redux/ActionsReducers/SystemRedux.js +22 -4
- package/src/Strategy/ChartingModule.d.ts +7 -1
- package/src/Strategy/ChartingModule.js +97 -0
- package/src/Strategy/FlashingCellModule.js +6 -2
- package/src/Strategy/Interface/IModule.d.ts +1 -0
- package/src/Strategy/LayoutModule.js +1 -1
- package/src/Strategy/StyledColumnModule.js +0 -3
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +15 -10
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -0
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +1 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +4 -1
- package/src/Utilities/ObjectFactory.d.ts +5 -4
- package/src/Utilities/ObjectFactory.js +9 -14
- package/src/Utilities/Services/ChartingService.d.ts +10 -0
- package/src/Utilities/Services/ChartingService.js +100 -0
- package/src/Utilities/Services/Interface/IChartingService.d.ts +5 -0
- package/src/Utilities/Services/Interface/IChartingService.js +2 -0
- package/src/Utilities/Services/Interface/IRowEditService.d.ts +3 -3
- package/src/Utilities/Services/ModuleService.js +2 -0
- package/src/Utilities/Services/RowEditService.d.ts +3 -3
- package/src/Utilities/Services/RowEditService.js +4 -4
- package/src/View/AdaptableViewFactory.js +2 -0
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +5 -5
- package/src/View/Components/Charting/ChartingStatusBarPopover.d.ts +2 -0
- package/src/View/Components/Charting/ChartingStatusBarPopover.js +23 -0
- package/src/View/Components/Charting/ChartingViewPanel.d.ts +3 -0
- package/src/View/Components/Charting/ChartingViewPanel.js +79 -0
- package/src/View/Components/Charting/ChartingWizard/ChartingWizard.d.ts +6 -0
- package/src/View/Components/Charting/ChartingWizard/ChartingWizard.js +37 -0
- package/src/View/Components/Charting/ChartingWizard/PreviewChartSection.d.ts +6 -0
- package/src/View/Components/Charting/ChartingWizard/PreviewChartSection.js +34 -0
- package/src/View/Components/Charting/ChartingWizard/SettingsSection.d.ts +8 -0
- package/src/View/Components/Charting/ChartingWizard/SettingsSection.js +53 -0
- package/src/View/Components/Charting/ShowChartButton.d.ts +5 -0
- package/src/View/Components/Charting/ShowChartButton.js +38 -0
- package/src/View/Components/Charting/useChartState.d.ts +9 -0
- package/src/View/Components/Charting/useChartState.js +71 -0
- package/src/View/Components/ExpressionWizard.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +8 -7
- package/src/View/Components/Popups/AdaptableToaster.js +2 -0
- package/src/View/Components/RangesComponent.js +1 -1
- package/src/View/Components/StyleComponent.d.ts +1 -0
- package/src/View/Components/StyleComponent.js +6 -6
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +0 -1
- package/src/View/Layout/Wizard/LayoutWizard.js +1 -2
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection.js +1 -1
- package/src/agGrid/Adaptable.d.ts +8 -4
- package/src/agGrid/Adaptable.js +47 -12
- package/src/agGrid/agGridHelper.js +0 -1
- package/src/{View → components/ColorPicker}/ColorPicker.d.ts +3 -2
- package/src/{View → components/ColorPicker}/ColorPicker.js +19 -6
- package/src/components/ColorPicker/index.d.ts +1 -0
- package/src/components/ColorPicker/index.js +4 -0
- package/src/components/ExpressionEditor/BaseEditorInput.js +1 -1
- package/src/components/icons/index.js +0 -2
- package/src/metamodel/adaptable.metamodel.d.ts +70 -16
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +3 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/Strategy/ConditionalStyleModule.d.ts +0 -6
- package/src/Strategy/ConditionalStyleModule.js +0 -12
- package/src/components/icons/conditional-style.d.ts +0 -3
- package/src/components/icons/conditional-style.js +0 -7
package/src/types.d.ts
CHANGED
|
@@ -13,12 +13,13 @@ export type { TOAST_POSITIONS, NotificationsOptions, } from './AdaptableOptions/
|
|
|
13
13
|
export type { AlertOptions, ActionHandler, AlertForm, AlertFormContext, AlertMessageContext, } from './AdaptableOptions/AlertOptions';
|
|
14
14
|
export type { DashboardOptions, CustomToolbar, DashboardButtonContext, CustomToolbarButtonContext, } from './AdaptableOptions/DashboardOptions';
|
|
15
15
|
export type { EditOptions, ValidationResult, SmartEditCustomOperation, SmartEditOperation, SmartEditOperationContext, } from './AdaptableOptions/EditOptions';
|
|
16
|
-
export type { ActionRowFormOptions, ActionRowParamContext,
|
|
16
|
+
export type { ActionRowButtonOptions, ActionRowFormOptions, ActionRowParamContext, ActionRowParamFieldContext, CreateActionRowFormContext, EditActionRowFormContext, ActionColumnContext, ActionColumn, ActionColumnSettings, ActionOptions, ActionRowFormContext, ActionRowButtonType, ActionRowButtonConfigurationContext, } from './AdaptableOptions/ActionOptions';
|
|
17
17
|
export type { ExportOptions, SystemExportDestination, SystemExportDestinations, CustomDestination, ServerReport, DataFormatType, ExportFormContext, ReportContext, } from './AdaptableOptions/ExportOptions';
|
|
18
18
|
export type { GeneralOptions, ColumnValuesComparer, DataSet, DataSetFormContext, UnbalancedGroupsKeyContext, Holidays, HolidayContext, } from './AdaptableOptions/GeneralOptions';
|
|
19
19
|
export type { Glue42PluginOptions } from './AdaptableOptions/Glue42PluginOptions';
|
|
20
20
|
export type { IPushPullPluginOptions } from './AdaptableOptions/IPushPullPluginOptions';
|
|
21
21
|
export type { LayoutOptions, LayoutViewOptions, LayoutTagOptions, LayoutAvailableContext, AutoGenerateTagsForLayoutsContext, LayoutAssociatedObject, PivotPreviewColumnsContext, } from './AdaptableOptions/LayoutOptions';
|
|
22
|
+
export type { ChartingOptions, ChartContainer } from './AdaptableOptions/ChartingOptions';
|
|
22
23
|
export type { OpenFinPluginOptions } from './AdaptableOptions/OpenFinPluginOptions';
|
|
23
24
|
export type { MasterDetailPluginOptions } from './AdaptableOptions/MasterDetailPluginOptions';
|
|
24
25
|
export type { FinsemblePluginOptions, FinsemblePluginStateOptions, } from './AdaptableOptions/FinsemblePluginOptions';
|
|
@@ -151,7 +152,7 @@ export type { FormContext } from './PredefinedConfig/Common/FormContext';
|
|
|
151
152
|
export type { Schedule } from './PredefinedConfig/Common/Schedule';
|
|
152
153
|
export type { ButtonStyle } from './PredefinedConfig/Common/ButtonStyle';
|
|
153
154
|
export type { AdaptableModule, AdaptableToolPanel, AdaptableQLModule, AdaptableSettingsPanel, AdaptableDashboardToolbar, AdaptableStatusBarPanel, AdaptableColumnType, } from './PredefinedConfig/Common/Types';
|
|
154
|
-
export type { ChartDefinition, ChartingState } from './PredefinedConfig/ChartingState';
|
|
155
|
+
export type { ChartDefinition, ChartingState, ChartingAggFunc, } from './PredefinedConfig/ChartingState';
|
|
155
156
|
export type { CustomSort, CustomSortState } from './PredefinedConfig/CustomSortState';
|
|
156
157
|
export type { DashboardState, DashboardTab, AdaptableCoordinate, } from './PredefinedConfig/DashboardState';
|
|
157
158
|
export type { ExportState, Report, ReportData, ReportSchedule, SystemReportName, SystemReportNames, ReportRowScope, ReportColumnScope, } from './PredefinedConfig/ExportState';
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "13.0.
|
|
1
|
+
declare const _default: "13.1.0-canary.1";
|
|
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 = '13.0.
|
|
3
|
+
exports.default = '13.1.0-canary.1'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { AdaptableApi } from '../Api/AdaptableApi';
|
|
2
|
-
import { AdaptableModuleBase } from './AdaptableModuleBase';
|
|
3
|
-
import { IModule } from './Interface/IModule';
|
|
4
|
-
export declare class ConditionalStyleModule extends AdaptableModuleBase implements IModule {
|
|
5
|
-
constructor(api: AdaptableApi);
|
|
6
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ConditionalStyleModule = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
|
-
const ModuleConstants = tslib_1.__importStar(require("../Utilities/Constants/ModuleConstants"));
|
|
6
|
-
const AdaptableModuleBase_1 = require("./AdaptableModuleBase");
|
|
7
|
-
class ConditionalStyleModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
8
|
-
constructor(api) {
|
|
9
|
-
super(ModuleConstants.ConditionalStyleModuleId, ModuleConstants.ConditionalStyleFriendlyName, 'conditional-style', 'ConditionalStylePopup', 'Style columns and rows dynamically based on rules and cell values', api);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.ConditionalStyleModule = ConditionalStyleModule;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
const React = tslib_1.__importStar(require("react"));
|
|
5
|
-
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
-
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
|
|
7
|
-
React.createElement("path", { d: "M17.66 7.93L12 2.27 6.34 7.93c-3.12 3.12-3.12 8.19 0 11.31C7.9 20.8 9.95 21.58 12 21.58c2.05 0 4.1-.78 5.66-2.34 3.12-3.12 3.12-8.19 0-11.31zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59s.62-3.11 1.76-4.24L12 5.1v14.49z" })));
|