@adaptabletools/adaptable 13.0.0-canary.2 → 13.0.0-canary.21
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/agGrid.d.ts +23 -1
- package/agGrid.js +23 -1
- package/base.css +1232 -733
- package/base.css.map +1 -0
- package/bundle.cjs.js +237 -220
- package/index.css +1250 -734
- package/index.css.map +1 -0
- package/package.json +5 -5
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +7 -3
- package/src/AdaptableOptions/AdaptableOptions.d.ts +0 -2
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +136 -27
- package/src/AdaptableOptions/ExportOptions.d.ts +2 -2
- package/src/AdaptableOptions/FinsemblePluginOptions.d.ts +32 -0
- package/src/{Api/ConditionalStyleApi.js → AdaptableOptions/FinsemblePluginOptions.js} +0 -0
- package/src/AdaptableOptions/LayoutOptions.d.ts +2 -1
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -2
- package/src/Api/AdaptableApi.d.ts +2 -5
- package/src/Api/ColumnApi.d.ts +8 -2
- package/src/Api/ConfigApi.d.ts +0 -6
- package/src/Api/ExportApi.d.ts +6 -6
- package/src/Api/FinsembleApi.d.ts +10 -0
- package/src/{Strategy/Interface/IConditionalStyleModule.js → Api/FinsembleApi.js} +0 -0
- package/src/Api/FormatColumnApi.d.ts +76 -59
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
- package/src/Api/Implementation/AdaptableApiImpl.js +2 -3
- package/src/Api/Implementation/ColumnApiImpl.d.ts +2 -1
- package/src/Api/Implementation/ColumnApiImpl.js +18 -14
- package/src/Api/Implementation/ConfigApiImpl.d.ts +0 -2
- package/src/Api/Implementation/ConfigApiImpl.js +0 -11
- package/src/Api/Implementation/ExportApiImpl.d.ts +4 -4
- package/src/Api/Implementation/ExportApiImpl.js +14 -14
- package/src/Api/Implementation/FlashingCellApiImpl.js +4 -1
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +36 -17
- package/src/Api/Implementation/FormatColumnApiImpl.js +101 -185
- package/src/Api/Implementation/InternalApiImpl.d.ts +1 -0
- package/src/Api/Implementation/InternalApiImpl.js +5 -0
- package/src/Api/Implementation/PluginsApiImpl.d.ts +2 -0
- package/src/Api/Implementation/PluginsApiImpl.js +6 -0
- package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +2 -3
- package/src/Api/Implementation/QueryLanguageApiImpl.js +9 -18
- package/src/Api/Implementation/ScopeApiImpl.d.ts +1 -1
- package/src/Api/Implementation/StyledColumnApiImpl.d.ts +25 -0
- package/src/Api/Implementation/StyledColumnApiImpl.js +193 -0
- package/src/Api/Implementation/SystemStatusApiImpl.js +1 -2
- package/src/Api/Implementation/ToolPanelApiImpl.d.ts +3 -1
- package/src/Api/Implementation/ToolPanelApiImpl.js +8 -0
- package/src/Api/InternalApi.d.ts +1 -0
- package/src/Api/PluginsApi.d.ts +5 -0
- package/src/Api/QueryLanguageApi.d.ts +3 -7
- package/src/Api/ScopeApi.d.ts +1 -1
- package/src/Api/StyledColumnApi.d.ts +106 -0
- package/src/Api/StyledColumnApi.js +2 -0
- package/src/Api/ToolPanelApi.d.ts +10 -1
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +37 -37
- package/src/PredefinedConfig/Common/Types.d.ts +3 -3
- package/src/PredefinedConfig/Common/Types.js +1 -0
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +10 -19
- package/src/PredefinedConfig/FormatColumnState.d.ts +21 -92
- package/src/PredefinedConfig/PredefinedConfig.d.ts +6 -0
- package/src/PredefinedConfig/StyledColumnState.d.ts +119 -0
- package/src/PredefinedConfig/StyledColumnState.js +2 -0
- package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +14 -0
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +43 -1
- package/src/Redux/ActionsReducers/PluginsRedux.d.ts +4 -4
- package/src/Redux/ActionsReducers/PluginsRedux.js +5 -5
- package/src/Redux/ActionsReducers/StyledColumnRedux.d.ts +49 -0
- package/src/Redux/ActionsReducers/StyledColumnRedux.js +92 -0
- package/src/Redux/DeadRedux.d.ts +6 -0
- package/src/Redux/DeadRedux.js +19 -1
- package/src/Redux/Store/AdaptableStore.js +11 -8
- package/src/Strategy/ConditionalStyleModule.d.ts +2 -25
- package/src/Strategy/ConditionalStyleModule.js +0 -213
- package/src/Strategy/DataChangeHistoryModule.d.ts +1 -0
- package/src/Strategy/DataChangeHistoryModule.js +12 -0
- package/src/Strategy/FormatColumnModule.d.ts +3 -10
- package/src/Strategy/FormatColumnModule.js +42 -183
- package/src/Strategy/Interface/IModule.d.ts +1 -0
- package/src/Strategy/LayoutModule.js +0 -4
- package/src/Strategy/StyledColumnModule.d.ts +24 -0
- package/src/Strategy/StyledColumnModule.js +165 -0
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.d.ts +1 -1
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +3 -4
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnStyleViewItems.js +1 -16
- package/src/Strategy/Utilities/getScopeViewItems.js +1 -1
- package/src/Utilities/Constants/ModuleConstants.d.ts +3 -0
- package/src/Utilities/Constants/ModuleConstants.js +4 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +6 -12
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -1
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -2
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +3 -1
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +1 -0
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +3 -1
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +1 -0
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +3 -1
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +2 -4
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -0
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +3 -1
- package/src/Utilities/Extensions/TypeExtensions.d.ts +1 -0
- package/src/Utilities/Extensions/TypeExtensions.js +5 -0
- package/src/Utilities/ObjectFactory.d.ts +5 -2
- package/src/Utilities/ObjectFactory.js +14 -7
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +14 -4
- package/src/Utilities/Services/{LicenseService.d.ts → LicenseService/index.d.ts} +3 -3
- package/src/Utilities/Services/LicenseService/index.js +1 -0
- package/src/Utilities/Services/LicenseService/shouldLogThankYouMessage.d.ts +1 -0
- package/src/Utilities/Services/LicenseService/shouldLogThankYouMessage.js +15 -0
- package/src/Utilities/Services/ModuleService.js +2 -2
- package/src/Utilities/Services/QueryLanguageService.d.ts +3 -3
- package/src/Utilities/Services/QueryLanguageService.js +89 -40
- package/src/Utilities/Services/ReportService.js +6 -6
- package/src/Utilities/license/LicenseDetails.d.ts +1 -1
- package/src/Utilities/license/decode.d.ts +1 -0
- package/src/Utilities/license/decode.js +1 -1
- package/src/View/AdaptablePopover/index.js +1 -1
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +11 -12
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +6 -5
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +3 -3
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +3 -3
- package/src/View/Alert/Wizard/isValidAlertRules.js +1 -1
- package/src/View/BulkUpdate/BulkUpdatePopup.js +1 -1
- package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -1
- package/src/View/Components/AdaptableObjectRow/index.js +1 -6
- package/src/View/Components/Buttons/ButtonInfo.d.ts +1 -3
- package/src/View/Components/Buttons/ButtonInfo.js +3 -5
- package/src/View/Components/EntityRulesEditor/index.d.ts +2 -1
- package/src/View/Components/EntityRulesEditor/index.js +36 -35
- package/src/View/Components/FilterForm/FilterForm.js +11 -16
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
- package/src/View/Components/FilterForm/QuickFilterForm.js +7 -13
- package/src/View/Components/NewScopeComponent.js +3 -3
- package/src/View/Components/Panels/PanelWithButton.js +1 -5
- package/src/View/Components/Panels/PanelWithImage.js +1 -5
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -2
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +1 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +3 -16
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +1 -0
- package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +1 -1
- package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +5 -5
- package/src/View/Components/RangesComponent.d.ts +8 -1
- package/src/View/Components/RangesComponent.js +60 -24
- package/src/View/Components/ScopeComponent.js +6 -6
- package/src/View/Components/Selectors/ColumnSelector.d.ts +1 -0
- package/src/View/Components/Selectors/ColumnSelector.js +2 -1
- package/src/View/Components/Selectors/ColumnValueSelector.js +2 -2
- package/src/View/Components/StyleComponent.js +14 -19
- package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +3 -9
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +25 -10
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +1 -1
- package/src/View/DataSet/DataSetSelector.js +1 -1
- package/src/View/DataSet/DataSetViewPanel.d.ts +1 -1
- package/src/View/Export/ExportViewPanel.d.ts +1 -1
- package/src/View/Export/ExportViewPanel.js +4 -4
- package/src/View/Export/ReportExportDropdown.js +1 -1
- package/src/View/Export/Wizard/ReportNameWizardSection.js +10 -11
- package/src/View/Filter/FilterSummary.d.ts +1 -1
- package/src/View/Filter/FilterViewPanel.d.ts +1 -1
- package/src/View/FlashingCell/FlashingCellStyle.js +3 -3
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +3 -3
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +6 -6
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +4 -4
- package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
- package/src/View/FormatColumn/MoveFormatColumn.d.ts +7 -0
- package/src/View/FormatColumn/MoveFormatColumn.js +27 -0
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +28 -28
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.d.ts +8 -0
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +28 -0
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +21 -3
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +2 -28
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.d.ts +3 -3
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +6 -300
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +15 -9
- package/src/View/FormatColumn/Wizard/constants.d.ts +1 -0
- package/src/View/FormatColumn/Wizard/constants.js +4 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +7 -7
- package/src/View/GridInfo/ColumnInfoComponent.js +0 -7
- package/src/View/Layout/LayoutRadioSelector.js +1 -1
- package/src/View/Layout/LayoutViewPanel.d.ts +1 -1
- package/src/View/Layout/Wizard/Components/ColumnLabels.js +1 -1
- package/src/View/Layout/Wizard/sections/AggregationsSection.js +1 -1
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +7 -6
- package/src/View/Layout/Wizard/sections/SettingsSection.js +2 -2
- package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +1 -1
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +3 -3
- package/src/View/Query/QueryViewPanel.d.ts +1 -1
- package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +1 -1
- package/src/View/QuickSearch/QuickSearchPopup.js +2 -2
- package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +1 -1
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +5 -5
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +5 -5
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +5 -5
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +2 -2
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +3 -3
- package/src/View/SmartEdit/SmartEditPopup.js +3 -3
- package/src/View/SpecialColumnSettingsWizardStep.js +10 -10
- package/src/View/StateManagement/StateManagementPopup.js +4 -4
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.d.ts +7 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +77 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.d.ts +9 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +65 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection.d.ts +9 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection.js +234 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.d.ts +7 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +59 -0
- package/src/View/SystemStatus/SystemStatusEntityRow.js +4 -6
- package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +1 -1
- package/src/View/TeamSharing/SharedEntityObjectView.js +1 -1
- package/src/View/TeamSharing/TeamSharingApplyButton.js +1 -1
- package/src/View/Theme/ThemePopup.js +1 -1
- package/src/View/Wizard/OnePageAdaptableWizard.d.ts +1 -1
- package/src/View/Wizard/OnePageAdaptableWizard.js +1 -2
- package/src/agGrid/ActionColumnRenderer.d.ts +3 -0
- package/src/agGrid/ActionColumnRenderer.js +96 -64
- package/src/agGrid/Adaptable.d.ts +13 -9
- package/src/agGrid/Adaptable.js +207 -221
- package/src/agGrid/CheckboxRenderer.js +1 -1
- package/src/agGrid/FilterWrapper.js +60 -16
- package/src/agGrid/FloatingFilterWrapper.d.ts +2 -2
- package/src/agGrid/FloatingFilterWrapper.js +71 -32
- package/src/agGrid/PercentBarRenderer.d.ts +6 -2
- package/src/agGrid/PercentBarRenderer.js +19 -17
- package/src/agGrid/agGridHelper.d.ts +6 -2
- package/src/agGrid/agGridHelper.js +17 -17
- package/src/agGrid/createAgStatusPanelComponent.d.ts +1 -1
- package/src/agGrid/createAgStatusPanelComponent.js +17 -0
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +5 -1
- package/src/agGrid/editors/AdaptableDateEditor/index.js +87 -20
- package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +1 -1
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +3 -3
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +81 -30
- package/src/agGrid/weightedAverage.js +19 -11
- package/src/components/CheckBox/index.js +7 -2
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/ExpressionEditor/BaseEditorInput.d.ts +1 -1
- package/src/components/ExpressionEditor/BaseEditorInput.js +13 -32
- package/src/components/ExpressionEditor/EditorInput.js +1 -1
- package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +1 -1
- package/src/components/ExpressionEditor/index.js +9 -17
- package/src/components/FormLayout/index.js +1 -1
- package/src/components/StylePreview.js +2 -1
- package/src/components/icons/brush.d.ts +3 -0
- package/src/components/icons/brush.js +7 -0
- package/src/components/icons/index.js +2 -0
- package/src/metamodel/adaptable.metamodel.d.ts +213 -121
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/types.d.ts +6 -3
- package/src/renderReactRoot.d.ts +2 -0
- package/src/renderReactRoot.js +11 -9
- package/src/types.d.ts +8 -6
- package/themes/dark.css +8 -4
- package/themes/dark.css.map +1 -0
- package/themes/light.css +4 -1
- package/themes/light.css.map +1 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableComponents.d.ts +0 -1
- package/src/AdaptableComponents.js +0 -5
- package/src/Api/ConditionalStyleApi.d.ts +0 -108
- package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +0 -29
- package/src/Api/Implementation/ConditionalStyleApiImpl.js +0 -98
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +0 -49
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +0 -95
- package/src/Strategy/Interface/IConditionalStyleModule.d.ts +0 -6
- package/src/Strategy/Utilities/getStyleViewItems.d.ts +0 -2
- package/src/Strategy/Utilities/getStyleViewItems.js +0 -16
- package/src/Utilities/Services/LicenseService.js +0 -1
- package/src/View/ConditionalStyle/ConditionalStyleSummary.d.ts +0 -25
- package/src/View/ConditionalStyle/ConditionalStyleSummary.js +0 -108
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.d.ts +0 -9
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +0 -42
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.d.ts +0 -8
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +0 -43
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.d.ts +0 -8
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +0 -29
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.d.ts +0 -8
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +0 -23
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.d.ts +0 -6
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +0 -114
- package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.d.ts +0 -1
- package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.js +0 -4
|
@@ -31,6 +31,7 @@ function ExpressionEditor(props) {
|
|
|
31
31
|
const [data, setData] = (0, react_1.useState)(props.initialData);
|
|
32
32
|
const [showColumnIds, setShowColumnIds] = (0, react_1.useState)(false);
|
|
33
33
|
const [showNamedQueries, setShowNamedQueries] = (0, react_1.useState)(false);
|
|
34
|
+
const baseClassName = `ab-ExpressionEditor`;
|
|
34
35
|
const [selectedFunction, setSelectedFunction] = (0, react_1.useState)(null);
|
|
35
36
|
const [expressionText, setExpressionText] = (0, react_1.useState)('');
|
|
36
37
|
const { namedQuery, setNamedQuery } = (0, NamedQueryContext_1.useNamedQueryContext)();
|
|
@@ -102,7 +103,7 @@ function ExpressionEditor(props) {
|
|
|
102
103
|
};
|
|
103
104
|
const [searchInputValue, setSearchInputValue] = React.useState('');
|
|
104
105
|
const dataTableEditor = (React.createElement(React.Fragment, null,
|
|
105
|
-
React.createElement(rebass_1.Flex, { flexDirection: "column", alignItems: "start", style: { marginTop: 2 } },
|
|
106
|
+
React.createElement(rebass_1.Flex, { className: `${baseClassName}__columns-list`, flexDirection: "column", alignItems: "start", style: { marginTop: 2 } },
|
|
106
107
|
React.createElement(CheckBox_1.CheckBox, { checked: showColumnIds, onChange: (checked) => setShowColumnIds(checked), style: {
|
|
107
108
|
float: 'right',
|
|
108
109
|
margin: 0,
|
|
@@ -157,28 +158,24 @@ function ExpressionEditor(props) {
|
|
|
157
158
|
setSelectedFunction,
|
|
158
159
|
textAreaRef,
|
|
159
160
|
} },
|
|
160
|
-
React.createElement(
|
|
161
|
+
React.createElement(rebass_1.Flex, { className: baseClassName, flex: 1, "data-name": "expression-editor-wrapper", pl: 2, style: props.style },
|
|
161
162
|
React.createElement(rebass_1.Flex, { flex: 1, style: { minHeight: 0 }, flexDirection: "column", onFocus: (event) => {
|
|
162
163
|
if (event.target.tagName === 'TEXTAREA') {
|
|
163
164
|
textAreaRef.current = event.target;
|
|
164
165
|
}
|
|
165
166
|
} },
|
|
166
|
-
React.createElement(rebass_1.Flex, { flex: 1, flexDirection: "row", "data-name": "expression-editor",
|
|
167
|
+
React.createElement(rebass_1.Flex, { flex: 1, flexDirection: "row", "data-name": "expression-editor", fontSize: 2, style: { minHeight: 0 } },
|
|
167
168
|
React.createElement(rebass_1.Flex, { flex: 1, paddingRight: 2, style: { overflow: 'auto' }, "data-name": "expression-builder", flexDirection: "column" },
|
|
168
169
|
editorInput,
|
|
169
170
|
StringExtensions_1.default.IsNotNullOrEmpty(expressionText === null || expressionText === void 0 ? void 0 : expressionText.trim()) && (React.createElement(ExpressionFunctionDocumentation_1.ExpressionFunctionDocumentation, { expressionFunction: selectedFunction })),
|
|
170
171
|
/* displayed for advanced queries (observable&Aggregation) to give the users a starting point */
|
|
171
172
|
StringExtensions_1.default.IsNullOrEmpty(expressionText === null || expressionText === void 0 ? void 0 : expressionText.trim()) && renderQueryHints(type),
|
|
172
|
-
showDocumentationLinks && (React.createElement(HelpBlock_1.default, { "data-name": "query-documentation", mt: 2, mb: 2,
|
|
173
|
-
React.createElement(ButtonInfo_1.ButtonInfo, { mr: 2,
|
|
174
|
-
color: 'var(--ab-color-text-on-add)',
|
|
175
|
-
fill: 'var(--ab-color-text-on-add)',
|
|
176
|
-
background: 'var(--ab-color-action-add)',
|
|
177
|
-
}, onClick: () => window.open(queryDocumentationLink, '_blank') }),
|
|
173
|
+
showDocumentationLinks && (React.createElement(HelpBlock_1.default, { "data-name": "query-documentation", mt: 2, mb: 2, fontSize: 3 },
|
|
174
|
+
React.createElement(ButtonInfo_1.ButtonInfo, { mr: 2, onClick: () => window.open(queryDocumentationLink, '_blank') }),
|
|
178
175
|
"See ",
|
|
179
176
|
StringExtensions_1.default.CapitaliseFirstLetter(type),
|
|
180
177
|
" Query documentation for more details and examples")),
|
|
181
|
-
React.createElement(
|
|
178
|
+
React.createElement(rebass_1.Box, { flex: 1 }),
|
|
182
179
|
allowSaveNamedQuery &&
|
|
183
180
|
props.api.internalApi
|
|
184
181
|
.getModuleService()
|
|
@@ -202,13 +199,8 @@ function ExpressionEditor(props) {
|
|
|
202
199
|
BooleanExpression: expressionText,
|
|
203
200
|
});
|
|
204
201
|
} })) : null))),
|
|
205
|
-
React.createElement(rebass_1.Box, { "data-name": "expression-column-picker", pb: 2, paddingLeft: 2,
|
|
206
|
-
|
|
207
|
-
minWidth: 220,
|
|
208
|
-
height: '100%',
|
|
209
|
-
paddingRight: 'var(--ab-space-2)',
|
|
210
|
-
} },
|
|
211
|
-
ArrayExtensions_1.default.IsNotNullOrEmpty(props.namedQueries) && (React.createElement(rebass_1.Flex, { flexDirection: "row", alignItems: "start", style: { padding: 3, marginTop: 5 }, backgroundColor: "primarylight" },
|
|
202
|
+
React.createElement(rebass_1.Box, { className: `${baseClassName}__column-picker`, "data-name": "expression-column-picker", pb: 2, paddingLeft: 2, pr: 2 },
|
|
203
|
+
ArrayExtensions_1.default.IsNotNullOrEmpty(props.namedQueries) && (React.createElement(rebass_1.Flex, { flexDirection: "row", alignItems: "start", p: 1, mt: 2, backgroundColor: "primarylight" },
|
|
212
204
|
React.createElement(Radio_1.default, { checked: !showNamedQueries, onChange: (checked) => setShowNamedQueries(!checked), style: { marginRight: 10 } }, "Columns"),
|
|
213
205
|
React.createElement(Radio_1.default, { checked: showNamedQueries, onChange: (checked) => setShowNamedQueries(checked), style: { marginLeft: 10, whiteSpace: 'nowrap' } }, "Named Queries"))),
|
|
214
206
|
showNamedQueries ? React.createElement("div", null, namedQueries) : React.createElement("div", null, dataTableEditor)))))));
|
|
@@ -73,7 +73,7 @@ const FormRow = (props) => {
|
|
|
73
73
|
}
|
|
74
74
|
if (props.as != null || column.component != null) {
|
|
75
75
|
const Cmp = column.component;
|
|
76
|
-
value = (React.createElement(Cmp, { style: Object.assign(Object.assign({}, column.style), { gridColumn: columnIndex + 1, gridRow: rowIndex + 1 }), className: column.className }, value));
|
|
76
|
+
value = (React.createElement(Cmp, { "data-name": props.dataName, style: Object.assign(Object.assign({}, column.style), { gridColumn: columnIndex + 1, gridRow: rowIndex + 1 }), className: column.className }, value));
|
|
77
77
|
}
|
|
78
78
|
return typeof value === 'string' ? value : React.cloneElement(value, { key: columnName });
|
|
79
79
|
});
|
|
@@ -5,8 +5,9 @@ const tslib_1 = require("tslib");
|
|
|
5
5
|
const React = tslib_1.__importStar(require("react"));
|
|
6
6
|
const rebass_1 = require("rebass");
|
|
7
7
|
const StyleHelper_1 = require("../Utilities/Helpers/StyleHelper");
|
|
8
|
+
const join_1 = tslib_1.__importDefault(require("./utils/join"));
|
|
8
9
|
const StylePreview = (props) => {
|
|
9
10
|
var _a, _b, _c;
|
|
10
|
-
return (React.createElement(rebass_1.Box, Object.assign({}, props, { padding: (_a = props.padding) !== null && _a !== void 0 ? _a : 2, mt: (_b = props.mt) !== null && _b !== void 0 ? _b : 2, style: Object.assign(Object.assign({}, (0, StyleHelper_1.toStyle)(props.styleObject)), props.style) }), (_c = props.children) !== null && _c !== void 0 ? _c : 'Preview result'));
|
|
11
|
+
return (React.createElement(rebass_1.Box, Object.assign({}, props, { className: (0, join_1.default)('ab-StylePreview', props.className), padding: (_a = props.padding) !== null && _a !== void 0 ? _a : 2, mt: (_b = props.mt) !== null && _b !== void 0 ? _b : 2, style: Object.assign(Object.assign({}, (0, StyleHelper_1.toStyle)(props.styleObject)), props.style) }), (_c = props.children) !== null && _c !== void 0 ? _c : 'Preview result'));
|
|
11
12
|
};
|
|
12
13
|
exports.StylePreview = StylePreview;
|
|
@@ -0,0 +1,7 @@
|
|
|
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: "M6 21q-1.125 0-2.225-.55T2 19q.65 0 1.325-.512Q4 17.975 4 17q0-1.25.875-2.125T7 14q1.25 0 2.125.875T10 17q0 1.65-1.175 2.825Q7.65 21 6 21Zm0-2q.825 0 1.412-.587Q8 17.825 8 17q0-.425-.287-.712Q7.425 16 7 16t-.713.288Q6 16.575 6 17q0 .575-.137 1.05-.138.475-.363.9.125.05.25.05H6Zm5.75-4L9 12.25l8.95-8.95q.275-.275.688-.288.412-.012.712.288l1.35 1.35q.3.3.3.7 0 .4-.3.7ZM7 17Z" })));
|
|
@@ -132,6 +132,7 @@ const track_changes_1 = tslib_1.__importDefault(require("./track-changes"));
|
|
|
132
132
|
const menu_1 = tslib_1.__importDefault(require("./menu"));
|
|
133
133
|
const statusbar_1 = tslib_1.__importDefault(require("./statusbar"));
|
|
134
134
|
const add_row_1 = tslib_1.__importDefault(require("./add-row"));
|
|
135
|
+
const brush_1 = tslib_1.__importDefault(require("./brush"));
|
|
135
136
|
const LoggingHelper_1 = require("../../Utilities/Helpers/LoggingHelper");
|
|
136
137
|
const quote_1 = tslib_1.__importDefault(require("./quote"));
|
|
137
138
|
const news_1 = tslib_1.__importDefault(require("./news"));
|
|
@@ -154,6 +155,7 @@ const allIcons = {
|
|
|
154
155
|
call: call_1.default,
|
|
155
156
|
instrument: instrument_1.default,
|
|
156
157
|
news: news_1.default,
|
|
158
|
+
brush: brush_1.default,
|
|
157
159
|
'data-set': data_set_1.default,
|
|
158
160
|
export: export_1.default,
|
|
159
161
|
campaign: campaign_1.default,
|
|
@@ -574,15 +574,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
574
574
|
gridInfo: string;
|
|
575
575
|
reference: string;
|
|
576
576
|
defaultValue?: undefined;
|
|
577
|
-
} | {
|
|
578
|
-
name: string;
|
|
579
|
-
kind: string;
|
|
580
|
-
description: string;
|
|
581
|
-
uiLabel: string;
|
|
582
|
-
isOptional: boolean;
|
|
583
|
-
defaultValue: string;
|
|
584
|
-
reference: string;
|
|
585
|
-
gridInfo?: undefined;
|
|
586
577
|
} | {
|
|
587
578
|
name: string;
|
|
588
579
|
kind: string;
|
|
@@ -888,12 +879,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
888
879
|
defaultValue: string;
|
|
889
880
|
})[];
|
|
890
881
|
};
|
|
891
|
-
|
|
882
|
+
AggregatedBooleanFunctionName: {
|
|
892
883
|
name: string;
|
|
893
884
|
kind: string;
|
|
894
885
|
description: string;
|
|
895
886
|
};
|
|
896
|
-
|
|
887
|
+
AggregatedScalarFunctionName: {
|
|
897
888
|
name: string;
|
|
898
889
|
kind: string;
|
|
899
890
|
description: string;
|
|
@@ -1607,26 +1598,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1607
1598
|
uiLabel: string;
|
|
1608
1599
|
}[];
|
|
1609
1600
|
};
|
|
1610
|
-
ColumnStyle: {
|
|
1611
|
-
name: string;
|
|
1612
|
-
kind: string;
|
|
1613
|
-
description: string;
|
|
1614
|
-
properties: ({
|
|
1615
|
-
name: string;
|
|
1616
|
-
kind: string;
|
|
1617
|
-
description: string;
|
|
1618
|
-
uiLabel: string;
|
|
1619
|
-
isOptional: boolean;
|
|
1620
|
-
reference?: undefined;
|
|
1621
|
-
} | {
|
|
1622
|
-
name: string;
|
|
1623
|
-
kind: string;
|
|
1624
|
-
description: string;
|
|
1625
|
-
uiLabel: string;
|
|
1626
|
-
isOptional: boolean;
|
|
1627
|
-
reference: string;
|
|
1628
|
-
})[];
|
|
1629
|
-
};
|
|
1630
1601
|
ColumnValuesComparer: {
|
|
1631
1602
|
name: string;
|
|
1632
1603
|
kind: string;
|
|
@@ -1639,56 +1610,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1639
1610
|
reference: string;
|
|
1640
1611
|
}[];
|
|
1641
1612
|
};
|
|
1642
|
-
ConditionalStyle: {
|
|
1643
|
-
name: string;
|
|
1644
|
-
kind: string;
|
|
1645
|
-
description: string;
|
|
1646
|
-
properties: ({
|
|
1647
|
-
name: string;
|
|
1648
|
-
kind: string;
|
|
1649
|
-
description: string;
|
|
1650
|
-
uiLabel: string;
|
|
1651
|
-
isOptional: boolean;
|
|
1652
|
-
defaultValue: string;
|
|
1653
|
-
reference?: undefined;
|
|
1654
|
-
} | {
|
|
1655
|
-
name: string;
|
|
1656
|
-
kind: string;
|
|
1657
|
-
description: string;
|
|
1658
|
-
uiLabel: string;
|
|
1659
|
-
reference: string;
|
|
1660
|
-
isOptional?: undefined;
|
|
1661
|
-
defaultValue?: undefined;
|
|
1662
|
-
})[];
|
|
1663
|
-
};
|
|
1664
|
-
ConditionalStyleApi: {
|
|
1665
|
-
name: string;
|
|
1666
|
-
kind: string;
|
|
1667
|
-
description: string;
|
|
1668
|
-
properties: {
|
|
1669
|
-
name: string;
|
|
1670
|
-
kind: string;
|
|
1671
|
-
description: string;
|
|
1672
|
-
uiLabel: string;
|
|
1673
|
-
}[];
|
|
1674
|
-
};
|
|
1675
|
-
ConditionalStyleRule: {
|
|
1676
|
-
name: string;
|
|
1677
|
-
kind: string;
|
|
1678
|
-
description: string;
|
|
1679
|
-
};
|
|
1680
|
-
ConditionalStyleState: {
|
|
1681
|
-
name: string;
|
|
1682
|
-
kind: string;
|
|
1683
|
-
description: string;
|
|
1684
|
-
properties: {
|
|
1685
|
-
name: string;
|
|
1686
|
-
kind: string;
|
|
1687
|
-
description: string;
|
|
1688
|
-
uiLabel: string;
|
|
1689
|
-
isOptional: boolean;
|
|
1690
|
-
}[];
|
|
1691
|
-
};
|
|
1692
1613
|
ConfigApi: {
|
|
1693
1614
|
name: string;
|
|
1694
1615
|
kind: string;
|
|
@@ -1927,6 +1848,28 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1927
1848
|
name: string;
|
|
1928
1849
|
kind: string;
|
|
1929
1850
|
description: string;
|
|
1851
|
+
properties: ({
|
|
1852
|
+
name: string;
|
|
1853
|
+
kind: string;
|
|
1854
|
+
description: string;
|
|
1855
|
+
uiLabel: string;
|
|
1856
|
+
isOptional?: undefined;
|
|
1857
|
+
reference?: undefined;
|
|
1858
|
+
} | {
|
|
1859
|
+
name: string;
|
|
1860
|
+
kind: string;
|
|
1861
|
+
description: string;
|
|
1862
|
+
uiLabel: string;
|
|
1863
|
+
isOptional: boolean;
|
|
1864
|
+
reference?: undefined;
|
|
1865
|
+
} | {
|
|
1866
|
+
name: string;
|
|
1867
|
+
kind: string;
|
|
1868
|
+
description: string;
|
|
1869
|
+
uiLabel: string;
|
|
1870
|
+
reference: string;
|
|
1871
|
+
isOptional?: undefined;
|
|
1872
|
+
})[];
|
|
1930
1873
|
};
|
|
1931
1874
|
CustomDisplayFormatterContext: {
|
|
1932
1875
|
name: string;
|
|
@@ -1984,17 +1927,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1984
1927
|
kind: string;
|
|
1985
1928
|
description: string;
|
|
1986
1929
|
};
|
|
1987
|
-
CustomReport: {
|
|
1988
|
-
name: string;
|
|
1989
|
-
kind: string;
|
|
1990
|
-
description: string;
|
|
1991
|
-
properties: {
|
|
1992
|
-
name: string;
|
|
1993
|
-
kind: string;
|
|
1994
|
-
description: string;
|
|
1995
|
-
uiLabel: string;
|
|
1996
|
-
}[];
|
|
1997
|
-
};
|
|
1998
1930
|
CustomSettingsPanel: {
|
|
1999
1931
|
name: string;
|
|
2000
1932
|
kind: string;
|
|
@@ -2559,6 +2491,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2559
2491
|
defaultValue?: undefined;
|
|
2560
2492
|
})[];
|
|
2561
2493
|
};
|
|
2494
|
+
EvaluateExpressionExternallyContext: {
|
|
2495
|
+
name: string;
|
|
2496
|
+
kind: string;
|
|
2497
|
+
description: string;
|
|
2498
|
+
properties: ({
|
|
2499
|
+
name: string;
|
|
2500
|
+
kind: string;
|
|
2501
|
+
description: string;
|
|
2502
|
+
uiLabel: string;
|
|
2503
|
+
isOptional: boolean;
|
|
2504
|
+
reference?: undefined;
|
|
2505
|
+
} | {
|
|
2506
|
+
name: string;
|
|
2507
|
+
kind: string;
|
|
2508
|
+
description: string;
|
|
2509
|
+
uiLabel: string;
|
|
2510
|
+
reference: string;
|
|
2511
|
+
isOptional?: undefined;
|
|
2512
|
+
})[];
|
|
2513
|
+
};
|
|
2562
2514
|
EventApi: {
|
|
2563
2515
|
name: string;
|
|
2564
2516
|
kind: string;
|
|
@@ -2657,28 +2609,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2657
2609
|
description: string;
|
|
2658
2610
|
uiLabel: string;
|
|
2659
2611
|
isOptional?: undefined;
|
|
2660
|
-
reference?: undefined;
|
|
2661
2612
|
} | {
|
|
2662
2613
|
name: string;
|
|
2663
2614
|
kind: string;
|
|
2664
2615
|
description: string;
|
|
2665
2616
|
uiLabel: string;
|
|
2666
2617
|
isOptional: boolean;
|
|
2667
|
-
reference?: undefined;
|
|
2668
|
-
} | {
|
|
2669
|
-
name: string;
|
|
2670
|
-
kind: string;
|
|
2671
|
-
description: string;
|
|
2672
|
-
uiLabel: string;
|
|
2673
|
-
reference: string;
|
|
2674
|
-
isOptional?: undefined;
|
|
2675
|
-
} | {
|
|
2676
|
-
name: string;
|
|
2677
|
-
kind: string;
|
|
2678
|
-
description: string;
|
|
2679
|
-
uiLabel: string;
|
|
2680
|
-
isOptional: boolean;
|
|
2681
|
-
reference: string;
|
|
2682
2618
|
})[];
|
|
2683
2619
|
};
|
|
2684
2620
|
ExpressionFunction: {
|
|
@@ -2711,20 +2647,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2711
2647
|
kind: string;
|
|
2712
2648
|
description: string;
|
|
2713
2649
|
};
|
|
2650
|
+
ExpressionFunctionMap: {
|
|
2651
|
+
name: string;
|
|
2652
|
+
kind: string;
|
|
2653
|
+
description: string;
|
|
2654
|
+
};
|
|
2714
2655
|
ExpressionOptions: {
|
|
2715
2656
|
name: string;
|
|
2716
2657
|
kind: string;
|
|
2717
2658
|
description: string;
|
|
2718
2659
|
properties: ({
|
|
2719
|
-
name: string;
|
|
2720
|
-
kind: string;
|
|
2721
|
-
description: string;
|
|
2722
|
-
uiLabel: string;
|
|
2723
|
-
isOptional: boolean;
|
|
2724
|
-
gridInfo?: undefined;
|
|
2725
|
-
defaultValue?: undefined;
|
|
2726
|
-
reference?: undefined;
|
|
2727
|
-
} | {
|
|
2728
2660
|
name: string;
|
|
2729
2661
|
kind: string;
|
|
2730
2662
|
description: string;
|
|
@@ -2732,16 +2664,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2732
2664
|
isOptional: boolean;
|
|
2733
2665
|
gridInfo: string;
|
|
2734
2666
|
defaultValue: string;
|
|
2735
|
-
reference: string;
|
|
2736
2667
|
} | {
|
|
2737
2668
|
name: string;
|
|
2738
2669
|
kind: string;
|
|
2739
2670
|
description: string;
|
|
2740
2671
|
uiLabel: string;
|
|
2741
2672
|
isOptional: boolean;
|
|
2742
|
-
gridInfo
|
|
2743
|
-
defaultValue
|
|
2744
|
-
reference?: undefined;
|
|
2673
|
+
gridInfo?: undefined;
|
|
2674
|
+
defaultValue?: undefined;
|
|
2745
2675
|
})[];
|
|
2746
2676
|
};
|
|
2747
2677
|
FDC3Column: {
|
|
@@ -2928,6 +2858,47 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2928
2858
|
isOptional: boolean;
|
|
2929
2859
|
}[];
|
|
2930
2860
|
};
|
|
2861
|
+
FinsembleApi: {
|
|
2862
|
+
name: string;
|
|
2863
|
+
kind: string;
|
|
2864
|
+
description: string;
|
|
2865
|
+
properties: {
|
|
2866
|
+
name: string;
|
|
2867
|
+
kind: string;
|
|
2868
|
+
description: string;
|
|
2869
|
+
uiLabel: string;
|
|
2870
|
+
}[];
|
|
2871
|
+
};
|
|
2872
|
+
FinsemblePluginOptions: {
|
|
2873
|
+
name: string;
|
|
2874
|
+
kind: string;
|
|
2875
|
+
description: string;
|
|
2876
|
+
properties: ({
|
|
2877
|
+
name: string;
|
|
2878
|
+
kind: string;
|
|
2879
|
+
description: string;
|
|
2880
|
+
uiLabel: string;
|
|
2881
|
+
isOptional: boolean;
|
|
2882
|
+
defaultValue?: undefined;
|
|
2883
|
+
reference?: undefined;
|
|
2884
|
+
} | {
|
|
2885
|
+
name: string;
|
|
2886
|
+
kind: string;
|
|
2887
|
+
description: string;
|
|
2888
|
+
uiLabel: string;
|
|
2889
|
+
isOptional: boolean;
|
|
2890
|
+
defaultValue: string;
|
|
2891
|
+
reference?: undefined;
|
|
2892
|
+
} | {
|
|
2893
|
+
name: string;
|
|
2894
|
+
kind: string;
|
|
2895
|
+
description: string;
|
|
2896
|
+
uiLabel: string;
|
|
2897
|
+
isOptional: boolean;
|
|
2898
|
+
reference: string;
|
|
2899
|
+
defaultValue?: undefined;
|
|
2900
|
+
})[];
|
|
2901
|
+
};
|
|
2931
2902
|
FlashingCellApi: {
|
|
2932
2903
|
name: string;
|
|
2933
2904
|
kind: string;
|
|
@@ -3064,6 +3035,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3064
3035
|
uiLabel: string;
|
|
3065
3036
|
}[];
|
|
3066
3037
|
};
|
|
3038
|
+
FormatColumnRule: {
|
|
3039
|
+
name: string;
|
|
3040
|
+
kind: string;
|
|
3041
|
+
description: string;
|
|
3042
|
+
};
|
|
3067
3043
|
FormatColumnState: {
|
|
3068
3044
|
name: string;
|
|
3069
3045
|
kind: string;
|
|
@@ -3203,6 +3179,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3203
3179
|
defaultValue: string;
|
|
3204
3180
|
})[];
|
|
3205
3181
|
};
|
|
3182
|
+
GlobalExpressionFunctionsContext: {
|
|
3183
|
+
name: string;
|
|
3184
|
+
kind: string;
|
|
3185
|
+
description: string;
|
|
3186
|
+
properties: {
|
|
3187
|
+
name: string;
|
|
3188
|
+
kind: string;
|
|
3189
|
+
description: string;
|
|
3190
|
+
uiLabel: string;
|
|
3191
|
+
}[];
|
|
3192
|
+
};
|
|
3206
3193
|
Glue42Api: {
|
|
3207
3194
|
name: string;
|
|
3208
3195
|
kind: string;
|
|
@@ -3757,6 +3744,38 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3757
3744
|
name: string;
|
|
3758
3745
|
kind: string;
|
|
3759
3746
|
description: string;
|
|
3747
|
+
properties: {
|
|
3748
|
+
name: string;
|
|
3749
|
+
kind: string;
|
|
3750
|
+
description: string;
|
|
3751
|
+
uiLabel: string;
|
|
3752
|
+
isOptional: boolean;
|
|
3753
|
+
gridInfo: string;
|
|
3754
|
+
defaultValue: string;
|
|
3755
|
+
}[];
|
|
3756
|
+
};
|
|
3757
|
+
ModuleExpressionFunctionsContext: {
|
|
3758
|
+
name: string;
|
|
3759
|
+
kind: string;
|
|
3760
|
+
description: string;
|
|
3761
|
+
properties: ({
|
|
3762
|
+
name: string;
|
|
3763
|
+
kind: string;
|
|
3764
|
+
description: string;
|
|
3765
|
+
uiLabel: string;
|
|
3766
|
+
reference?: undefined;
|
|
3767
|
+
} | {
|
|
3768
|
+
name: string;
|
|
3769
|
+
kind: string;
|
|
3770
|
+
description: string;
|
|
3771
|
+
uiLabel: string;
|
|
3772
|
+
reference: string;
|
|
3773
|
+
})[];
|
|
3774
|
+
};
|
|
3775
|
+
ModuleExpressionFunctionsMap: {
|
|
3776
|
+
name: string;
|
|
3777
|
+
kind: string;
|
|
3778
|
+
description: string;
|
|
3760
3779
|
};
|
|
3761
3780
|
NamedQuery: {
|
|
3762
3781
|
name: string;
|
|
@@ -4159,6 +4178,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4159
4178
|
reference?: undefined;
|
|
4160
4179
|
})[];
|
|
4161
4180
|
};
|
|
4181
|
+
QueryableColumnContext: {
|
|
4182
|
+
name: string;
|
|
4183
|
+
kind: string;
|
|
4184
|
+
description: string;
|
|
4185
|
+
properties: {
|
|
4186
|
+
name: string;
|
|
4187
|
+
kind: string;
|
|
4188
|
+
description: string;
|
|
4189
|
+
uiLabel: string;
|
|
4190
|
+
reference: string;
|
|
4191
|
+
}[];
|
|
4192
|
+
};
|
|
4162
4193
|
QueryApi: {
|
|
4163
4194
|
name: string;
|
|
4164
4195
|
kind: string;
|
|
@@ -4470,6 +4501,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4470
4501
|
reference: string;
|
|
4471
4502
|
}[];
|
|
4472
4503
|
};
|
|
4504
|
+
ServerReport: {
|
|
4505
|
+
name: string;
|
|
4506
|
+
kind: string;
|
|
4507
|
+
description: string;
|
|
4508
|
+
properties: {
|
|
4509
|
+
name: string;
|
|
4510
|
+
kind: string;
|
|
4511
|
+
description: string;
|
|
4512
|
+
uiLabel: string;
|
|
4513
|
+
}[];
|
|
4514
|
+
};
|
|
4473
4515
|
SettingsPanelApi: {
|
|
4474
4516
|
name: string;
|
|
4475
4517
|
kind: string;
|
|
@@ -4676,6 +4718,56 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4676
4718
|
isOptional: boolean;
|
|
4677
4719
|
}[];
|
|
4678
4720
|
};
|
|
4721
|
+
StyledColumn: {
|
|
4722
|
+
name: string;
|
|
4723
|
+
kind: string;
|
|
4724
|
+
description: string;
|
|
4725
|
+
properties: ({
|
|
4726
|
+
name: string;
|
|
4727
|
+
kind: string;
|
|
4728
|
+
description: string;
|
|
4729
|
+
uiLabel: string;
|
|
4730
|
+
isOptional: boolean;
|
|
4731
|
+
reference?: undefined;
|
|
4732
|
+
} | {
|
|
4733
|
+
name: string;
|
|
4734
|
+
kind: string;
|
|
4735
|
+
description: string;
|
|
4736
|
+
uiLabel: string;
|
|
4737
|
+
isOptional?: undefined;
|
|
4738
|
+
reference?: undefined;
|
|
4739
|
+
} | {
|
|
4740
|
+
name: string;
|
|
4741
|
+
kind: string;
|
|
4742
|
+
description: string;
|
|
4743
|
+
uiLabel: string;
|
|
4744
|
+
isOptional: boolean;
|
|
4745
|
+
reference: string;
|
|
4746
|
+
})[];
|
|
4747
|
+
};
|
|
4748
|
+
StyledColumnApi: {
|
|
4749
|
+
name: string;
|
|
4750
|
+
kind: string;
|
|
4751
|
+
description: string;
|
|
4752
|
+
properties: {
|
|
4753
|
+
name: string;
|
|
4754
|
+
kind: string;
|
|
4755
|
+
description: string;
|
|
4756
|
+
uiLabel: string;
|
|
4757
|
+
}[];
|
|
4758
|
+
};
|
|
4759
|
+
StyledColumnState: {
|
|
4760
|
+
name: string;
|
|
4761
|
+
kind: string;
|
|
4762
|
+
description: string;
|
|
4763
|
+
properties: {
|
|
4764
|
+
name: string;
|
|
4765
|
+
kind: string;
|
|
4766
|
+
description: string;
|
|
4767
|
+
uiLabel: string;
|
|
4768
|
+
isOptional: boolean;
|
|
4769
|
+
}[];
|
|
4770
|
+
};
|
|
4679
4771
|
SuspendableObject: {
|
|
4680
4772
|
name: string;
|
|
4681
4773
|
kind: string;
|