@adaptabletools/adaptable 10.0.4-canary.5 → 11.0.0-canary.3
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 +19 -15
- package/bundle.cjs.js +121 -115
- package/index.css +20 -17
- package/package.json +32 -32
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +9 -4
- package/src/AdaptableOptions/AdaptableOptions.d.ts +13 -2
- package/src/AdaptableOptions/ContainerOptions.d.ts +0 -7
- package/src/AdaptableOptions/DashboardOptions.d.ts +7 -9
- package/src/AdaptableOptions/EntitlementOptions.d.ts +1 -1
- package/src/AdaptableOptions/FlashingCellOptions.d.ts +31 -0
- package/src/AdaptableOptions/{ChartPluginOptions.js → FlashingCellOptions.js} +0 -0
- package/src/AdaptableOptions/GeneralOptions.d.ts +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +2 -2
- package/src/AdaptableOptions/NotificationsOptions.d.ts +0 -7
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +14 -2
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +1 -1
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -15
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +5 -0
- package/src/Api/AdaptableApi.d.ts +6 -6
- package/src/Api/ChartingApi.d.ts +9 -0
- package/src/Api/{ChartApi.js → ChartingApi.js} +0 -0
- package/src/Api/ColumnApi.d.ts +11 -1
- package/src/Api/ConfigApi.d.ts +0 -12
- package/src/Api/EventApi.d.ts +3 -3
- package/src/Api/Events/AdaptableReady.d.ts +1 -1
- package/src/Api/Events/FlashingCellDisplayed.d.ts +2 -2
- package/src/Api/Events/SearchChanged.d.ts +1 -1
- package/src/Api/FlashingCellApi.d.ts +35 -24
- package/src/Api/GridApi.d.ts +3 -3
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
- package/src/Api/Implementation/AdaptableApiImpl.js +2 -2
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +1 -1
- package/src/Api/Implementation/ChartingApiImpl.d.ts +5 -0
- package/src/Api/Implementation/ChartingApiImpl.js +10 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +3 -1
- package/src/Api/Implementation/ColumnApiImpl.js +9 -3
- package/src/Api/Implementation/ConfigApiImpl.d.ts +0 -4
- package/src/Api/Implementation/ConfigApiImpl.js +0 -16
- package/src/Api/Implementation/DashboardApiImpl.js +1 -1
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +8 -4
- package/src/Api/Implementation/FlashingCellApiImpl.js +42 -29
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +1 -1
- package/src/Api/Implementation/GridApiImpl.d.ts +3 -3
- package/src/Api/Implementation/GridApiImpl.js +5 -1
- package/src/Api/Implementation/InternalApiImpl.d.ts +0 -5
- package/src/Api/Implementation/InternalApiImpl.js +1 -15
- package/src/Api/Implementation/LayoutApiImpl.js +1 -1
- package/src/Api/Implementation/PluginsApiImpl.d.ts +0 -2
- package/src/Api/Implementation/PluginsApiImpl.js +0 -6
- package/src/Api/Implementation/PlusMinusApiImpl.js +1 -1
- package/src/Api/Implementation/QueryApiImpl.js +1 -1
- package/src/Api/Implementation/ToolPanelApiImpl.js +2 -2
- package/src/Api/InternalApi.d.ts +0 -5
- package/src/Api/PluginsApi.d.ts +0 -2
- package/src/PredefinedConfig/AdaptableState.d.ts +0 -4
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +4 -4
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +38 -38
- package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +1 -1
- package/src/PredefinedConfig/Common/Enums.js +1 -0
- package/src/PredefinedConfig/Common/Menu.d.ts +15 -19
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +4 -0
- package/src/PredefinedConfig/Common/Types.d.ts +5 -5
- package/src/PredefinedConfig/Common/Types.js +0 -2
- package/src/PredefinedConfig/DashboardState.d.ts +4 -4
- package/src/PredefinedConfig/FlashingCellState.d.ts +16 -20
- package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -10
- package/src/PredefinedConfig/SystemState.d.ts +0 -4
- package/src/PredefinedConfig/ThemeState.d.ts +2 -1
- package/src/Redux/ActionsReducers/DashboardRedux.d.ts +0 -7
- package/src/Redux/ActionsReducers/DashboardRedux.js +2 -12
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +0 -2
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +0 -12
- package/src/Redux/ActionsReducers/SystemRedux.js +1 -21
- package/src/Redux/ActionsReducers/ToolPanelRedux.js +1 -2
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +1 -1
- package/src/Redux/Store/AdaptableReduxMerger.js +5 -5
- package/src/Redux/Store/AdaptableStore.js +21 -21
- package/src/Strategy/AdaptableModuleBase.d.ts +1 -1
- package/src/Strategy/AdaptableModuleBase.js +0 -3
- package/src/Strategy/AlertModule.js +2 -2
- package/src/Strategy/CalculatedColumnModule.js +17 -12
- package/src/Strategy/ChartingModule.d.ts +7 -0
- package/src/Strategy/ChartingModule.js +15 -0
- package/src/Strategy/ConditionalStyleModule.js +1 -1
- package/src/Strategy/DataChangeHistoryModule.js +1 -1
- package/src/Strategy/FilterModule.js +3 -2
- package/src/Strategy/FlashingCellModule.d.ts +1 -1
- package/src/Strategy/FlashingCellModule.js +35 -19
- package/src/Strategy/FormatColumnModule.js +2 -2
- package/src/Strategy/Interface/IModule.d.ts +0 -1
- package/src/Strategy/LayoutModule.js +15 -3
- package/src/Strategy/QueryModule.d.ts +1 -1
- package/src/Strategy/QueryModule.js +1 -3
- package/src/Strategy/SetingsPanelModule.d.ts +1 -0
- package/src/Strategy/SetingsPanelModule.js +7 -1
- package/src/Strategy/TeamSharingModule.js +1 -1
- package/src/Strategy/Utilities/getFlashingTargetViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getFlashingTargetViewItems.js +11 -0
- package/src/Strategy/Utilities/getFormatColumnStyleViewItems.d.ts +3 -0
- package/src/Strategy/Utilities/getFormatColumnStyleViewItems.js +10 -0
- package/src/Utilities/Constants/ConfigConstants.d.ts +0 -1
- package/src/Utilities/Constants/ConfigConstants.js +1 -2
- package/src/Utilities/Constants/GeneralConstants.d.ts +0 -9
- package/src/Utilities/Constants/GeneralConstants.js +1 -12
- package/src/Utilities/Constants/ModuleConstants.d.ts +1 -2
- package/src/Utilities/Constants/ModuleConstants.js +2 -3
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +19 -18
- package/src/Utilities/Defaults/DefaultSettingsPanel.d.ts +2 -1
- package/src/Utilities/ExpressionFunctions/aggregationExpressionFunctions.js +1 -1
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +1 -1
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +1 -1
- package/src/Utilities/Extensions/StringExtensions.js +1 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +4 -4
- package/src/Utilities/Interface/MessagePopups.d.ts +0 -3
- package/src/Utilities/ObjectFactory.d.ts +0 -10
- package/src/Utilities/ObjectFactory.js +6 -67
- package/src/Utilities/Services/EntitlementService.js +1 -1
- package/src/Utilities/Services/LicenseService.js +1 -1
- package/src/Utilities/Services/ModuleService.js +7 -11
- package/src/Utilities/Services/ReportService.js +1 -1
- package/src/View/AdaptableView.js +2 -8
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +4 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +2 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +9 -9
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +3 -3
- package/src/View/AdaptableWizardView/index.js +1 -1
- package/src/View/Alert/AlertEmptyView.js +1 -1
- package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +1 -0
- package/src/View/Alert/Wizard/AlertWizard.js +3 -3
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +2 -2
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +2 -1
- package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.js +0 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.d.ts +1 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +11 -24
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +16 -4
- package/src/View/Components/FilterForm/QuickFilterForm.js +2 -2
- package/src/View/Components/ModuleValueSelector/index.d.ts +3 -1
- package/src/View/Components/ModuleValueSelector/index.js +1 -1
- package/src/View/Components/NewScopeComponent.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +9 -7
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +3 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +19 -6
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +1 -1
- package/src/View/Components/SharedProps/ModuleViewPopupProps.d.ts +1 -1
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +46 -81
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +11 -4
- package/src/View/Components/ValueSelector/index.d.ts +2 -0
- package/src/View/Components/ValueSelector/index.js +5 -5
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +10 -5
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +16 -4
- package/src/View/Dashboard/Dashboard.js +14 -36
- package/src/View/Dashboard/DashboardPopup.js +24 -16
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +3 -2
- package/src/View/Export/Wizard/NewReportWizard.js +13 -3
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +17 -26
- package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +19 -2
- package/src/View/FlashingCell/Wizard/{FlashingCellDurationWizardSection.d.ts → FlashingCellSettingsWizardSection.d.ts} +3 -3
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +81 -0
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +6 -8
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +10 -5
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +8 -3
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +13 -5
- package/src/View/GridInfo/GridInfoPopup.js +3 -2
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +8 -2
- package/src/View/Query/QueryViewPanel.js +12 -9
- package/src/View/Query/Wizard/NamedQueryWizard.js +13 -8
- package/src/View/QuickSearch/QuickSearchPopup.js +1 -1
- package/src/View/QuickSearch/useQuickSearchDebounced.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleWizard.js +14 -14
- package/src/View/Shortcut/shortcutKeys.js +0 -1
- package/src/View/SpecialColumnSettingsWizardStep.d.ts +9 -0
- package/src/View/SpecialColumnSettingsWizardStep.js +63 -0
- package/src/View/UIHelper.d.ts +0 -4
- package/src/View/UIHelper.js +1 -34
- package/src/View/Wizard/AdaptableWizard.js +1 -1
- package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +2 -0
- package/src/View/Wizard/OnePageAdaptableWizard.js +1 -1
- package/src/agGrid/Adaptable.d.ts +10 -7
- package/src/agGrid/Adaptable.js +80 -57
- package/src/agGrid/agGridHelper.d.ts +1 -2
- package/src/agGrid/agGridHelper.js +8 -5
- package/src/agGrid/agGridMenuHelper.js +12 -8
- package/src/components/ApplicationIcon.d.ts +1 -1
- package/src/components/Dashboard/Dashboard.js +1 -1
- package/src/components/Dashboard/DashboardManager.d.ts +5 -3
- package/src/components/Dashboard/DashboardManager.js +33 -27
- package/src/components/DropdownButton/renderItem.js +1 -1
- package/src/components/FormLayout/index.js +1 -1
- package/src/components/OverlayTrigger/Overlay.js +1 -1
- package/src/components/WindowModal/WindowModal.js +17 -2
- package/src/components/icons/column-add.d.ts +3 -0
- package/src/components/icons/column-add.js +10 -0
- package/src/components/icons/index.js +2 -0
- package/src/components/utils/useDraggable.js +2 -1
- package/src/metamodel/adaptable.metamodel.d.ts +58 -91
- package/src/metamodel/adaptable.metamodel.js +248 -297
- package/src/types.d.ts +4 -7
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableOptions/ChartPluginOptions.d.ts +0 -20
- package/src/Api/ChartApi.d.ts +0 -20
- package/src/Api/Implementation/SparklineColumnApiImpl.d.ts +0 -9
- package/src/Api/Implementation/SparklineColumnApiImpl.js +0 -24
- package/src/Api/SparklineColumnApi.d.ts +0 -23
- package/src/Api/SparklineColumnApi.js +0 -2
- package/src/PredefinedConfig/ChartState.d.ts +0 -144
- package/src/PredefinedConfig/ChartState.js +0 -2
- package/src/PredefinedConfig/Common/ChartEnums.d.ts +0 -123
- package/src/PredefinedConfig/Common/ChartEnums.js +0 -152
- package/src/PredefinedConfig/SparklineColumnState.d.ts +0 -40
- package/src/PredefinedConfig/SparklineColumnState.js +0 -2
- package/src/Redux/ActionsReducers/SparklineColumnRedux.d.ts +0 -35
- package/src/Redux/ActionsReducers/SparklineColumnRedux.js +0 -70
- package/src/Utilities/Defaults/DefaultCategoryChartProperties.d.ts +0 -2
- package/src/Utilities/Defaults/DefaultCategoryChartProperties.js +0 -56
- package/src/Utilities/Defaults/DefaultPieChartProperties.d.ts +0 -2
- package/src/Utilities/Defaults/DefaultPieChartProperties.js +0 -13
- package/src/Utilities/Defaults/DefaultSparklinesChartProperties.d.ts +0 -2
- package/src/Utilities/Defaults/DefaultSparklinesChartProperties.js +0 -25
- package/src/View/Components/Panels/PanelWithIImageThreeButtons.d.ts +0 -11
- package/src/View/Components/Panels/PanelWithIImageThreeButtons.js +0 -28
- package/src/View/Components/Popups/AdaptableChart.d.ts +0 -18
- package/src/View/Components/Popups/AdaptableChart.js +0 -40
- package/src/View/Components/SharedProps/ChartDisplayPopupPropsBase.d.ts +0 -7
- package/src/View/Components/SharedProps/ChartDisplayPopupPropsBase.js +0 -2
- package/src/View/FlashingCell/Wizard/FlashingCellDurationWizardSection.js +0 -60
- package/src/components/ChartContainer/index.d.ts +0 -15
- package/src/components/ChartContainer/index.js +0 -22
|
@@ -14,22 +14,22 @@ const getToolbarTitle = (availableToolbars, toolbarId) => {
|
|
|
14
14
|
const found = availableToolbars.find((t) => t.Id === toolbarId);
|
|
15
15
|
return found ? found.Title : toolbarId;
|
|
16
16
|
};
|
|
17
|
-
function TabList({ tabs, onRemoveTab, onRemoveToolbar, onChangeTabName, }) {
|
|
17
|
+
function TabList({ tabs, onRemoveTab, onRemoveToolbar, onChangeTabName, disabled, }) {
|
|
18
18
|
return (React.createElement(react_beautiful_dnd_1.Droppable, { droppableId: "MAIN", type: "TAB", direction: "horizontal" }, (provided) => (React.createElement("div", Object.assign({ ref: provided.innerRef }, provided.droppableProps, { style: { display: 'flex' }, "data-name": "dashboard-tabs" }),
|
|
19
|
-
tabs.map((tab, tabIndex) => (React.createElement(TabItem, { key: tabIndex, tabIndex: tabIndex, tab: tab, onRemove: () => onRemoveTab(tabIndex), onRemoveToolbar: (toolbarIndex) => onRemoveToolbar(tabIndex, toolbarIndex), onChangeTabName: (tabName) => onChangeTabName(tabIndex, tabName) }))),
|
|
19
|
+
tabs.map((tab, tabIndex) => (React.createElement(TabItem, { disabled: disabled, key: tabIndex, tabIndex: tabIndex, tab: tab, onRemove: () => onRemoveTab(tabIndex), onRemoveToolbar: (toolbarIndex) => onRemoveToolbar(tabIndex, toolbarIndex), onChangeTabName: (tabName) => onChangeTabName(tabIndex, tabName) }))),
|
|
20
20
|
provided.placeholder))));
|
|
21
21
|
}
|
|
22
|
-
function TabItem({ tab, tabIndex, onRemove, onRemoveToolbar, onChangeTabName, }) {
|
|
23
|
-
return (React.createElement(react_beautiful_dnd_1.Draggable, { draggableId: String(tabIndex), index: tabIndex }, (provided) => (React.createElement("div", Object.assign({ "data-name": "dashboard-tab", ref: provided.innerRef }, provided.draggableProps, { style: Object.assign(Object.assign({}, provided.draggableProps.style), { boxSizing: 'border-box', border: '1px solid var(--ab-color-primarydark)', borderRadius: 'var(--ab__border-radius)', marginRight: 'var(--ab-space-2)', width: 160, display: 'flex', flexDirection: 'column' }) }),
|
|
22
|
+
function TabItem({ tab, tabIndex, onRemove, onRemoveToolbar, onChangeTabName, disabled, }) {
|
|
23
|
+
return (React.createElement(react_beautiful_dnd_1.Draggable, { isDragDisabled: disabled, draggableId: String(tabIndex), index: tabIndex }, (provided) => (React.createElement("div", Object.assign({ "data-name": "dashboard-tab", ref: provided.innerRef }, provided.draggableProps, { style: Object.assign(Object.assign({}, (disabled ? {} : provided.draggableProps.style)), { boxSizing: 'border-box', border: '1px solid var(--ab-color-primarydark)', borderRadius: 'var(--ab__border-radius)', marginRight: 'var(--ab-space-2)', width: 160, display: 'flex', flexDirection: 'column' }) }),
|
|
24
24
|
React.createElement("div", { style: {
|
|
25
25
|
display: 'flex',
|
|
26
26
|
alignItems: 'center',
|
|
27
27
|
padding: 'var(--ab-space-1)',
|
|
28
28
|
borderBottom: '1px solid var(--ab-color-primarydark)',
|
|
29
29
|
} },
|
|
30
|
-
React.createElement("div", Object.assign({}, provided.dragHandleProps, { style: {} }),
|
|
30
|
+
React.createElement("div", Object.assign({}, (disabled ? {} : provided.dragHandleProps), { style: {} }),
|
|
31
31
|
React.createElement(icons_1.Icon, { name: "drag" })),
|
|
32
|
-
React.createElement("input", { type: "text", value: tab.Name, style: {
|
|
32
|
+
React.createElement("input", { type: "text", disabled: disabled, value: tab.Name, style: {
|
|
33
33
|
flex: 1,
|
|
34
34
|
width: '100%',
|
|
35
35
|
border: 'none',
|
|
@@ -41,11 +41,11 @@ function TabItem({ tab, tabIndex, onRemove, onRemoveToolbar, onChangeTabName, })
|
|
|
41
41
|
}, onChange: (event) => {
|
|
42
42
|
onChangeTabName(event.target.value);
|
|
43
43
|
} }),
|
|
44
|
-
React.createElement(SimpleButton_1.default, { icon: "delete", variant: "text", onClick: onRemove })),
|
|
45
|
-
React.createElement(ToolbarList, { toolbars: tab.Toolbars, droppableId: String(tabIndex), onRemove: onRemoveToolbar })))));
|
|
44
|
+
React.createElement(SimpleButton_1.default, { disabled: disabled, icon: "delete", variant: "text", onClick: onRemove })),
|
|
45
|
+
React.createElement(ToolbarList, { disabled: disabled, toolbars: tab.Toolbars, droppableId: String(tabIndex), onRemove: onRemoveToolbar })))));
|
|
46
46
|
}
|
|
47
|
-
function ToolbarList({ toolbars, droppableId, onRemove, }) {
|
|
48
|
-
return (React.createElement(react_beautiful_dnd_1.Droppable, { droppableId: droppableId, type: "TOOLBAR" }, (provided, snapshot) => (React.createElement("div", Object.assign({ ref: provided.innerRef }, provided.droppableProps, { "data-name": "dashboard-toolbar-drop-target", style: {
|
|
47
|
+
function ToolbarList({ toolbars, droppableId, onRemove, disabled, }) {
|
|
48
|
+
return (React.createElement(react_beautiful_dnd_1.Droppable, { droppableId: droppableId, type: "TOOLBAR" }, (provided, snapshot) => (React.createElement("div", Object.assign({ ref: provided.innerRef }, (disabled ? {} : provided.droppableProps), { "data-name": "dashboard-toolbar-drop-target", style: {
|
|
49
49
|
flex: 1,
|
|
50
50
|
padding: 4,
|
|
51
51
|
paddingBottom: 0,
|
|
@@ -54,18 +54,18 @@ function ToolbarList({ toolbars, droppableId, onRemove, }) {
|
|
|
54
54
|
: '',
|
|
55
55
|
minHeight: 200,
|
|
56
56
|
} }),
|
|
57
|
-
toolbars.map((toolbar, toolbarIndex) => (React.createElement(ToolbarItem, { key: toolbar, toolbar: toolbar, toolbarIndex: toolbarIndex, onRemove: () => onRemove(toolbarIndex) }))),
|
|
57
|
+
toolbars.map((toolbar, toolbarIndex) => (React.createElement(ToolbarItem, { disabled: disabled, key: toolbar, toolbar: toolbar, toolbarIndex: toolbarIndex, onRemove: () => onRemove(toolbarIndex) }))),
|
|
58
58
|
provided.placeholder))));
|
|
59
59
|
}
|
|
60
|
-
function ToolbarItem({ toolbar, toolbarIndex, onRemove, }) {
|
|
60
|
+
function ToolbarItem({ toolbar, toolbarIndex, onRemove, disabled, }) {
|
|
61
61
|
const { availableToolbars } = react_1.useContext(DashboardManagerContext);
|
|
62
|
-
return (React.createElement(react_beautiful_dnd_1.Draggable, { draggableId: toolbar, index: toolbarIndex }, (provided, snapshot) => (React.createElement("div", Object.assign({ ref: provided.innerRef }, provided.draggableProps, provided.dragHandleProps, { style: Object.assign(Object.assign({}, provided.draggableProps.style), { display: 'flex', alignItems: 'center', border: '1px solid var(--ab-color-primary)', backgroundColor: snapshot.isDragging
|
|
62
|
+
return (React.createElement(react_beautiful_dnd_1.Draggable, { isDragDisabled: disabled, draggableId: toolbar, index: toolbarIndex }, (provided, snapshot) => (React.createElement("div", Object.assign({ ref: provided.innerRef }, provided.draggableProps, provided.dragHandleProps, { style: Object.assign(Object.assign({}, provided.draggableProps.style), { display: 'flex', alignItems: 'center', border: '1px solid var(--ab-color-primary)', backgroundColor: snapshot.isDragging
|
|
63
63
|
? 'var(--ab-dashboard-toolbar-drag__background)'
|
|
64
64
|
: 'var(--ab-color-primarylight)', paddingLeft: 'var(--ab-space-1)', marginBottom: 'var(--ab-space-1)' }) }),
|
|
65
65
|
React.createElement("div", { style: { flex: 1 } }, getToolbarTitle(availableToolbars, toolbar)),
|
|
66
|
-
React.createElement(SimpleButton_1.default, { icon: "clear", variant: "text", padding: 1, onClick: onRemove })))));
|
|
66
|
+
React.createElement(SimpleButton_1.default, { disabled: disabled, icon: "clear", variant: "text", padding: 1, onClick: onRemove })))));
|
|
67
67
|
}
|
|
68
|
-
function UnusedPanel({ toolbars }) {
|
|
68
|
+
function UnusedPanel({ toolbars, disabled }) {
|
|
69
69
|
return (React.createElement("div", { "data-name": "dashboard-toolbars", style: {
|
|
70
70
|
border: '1px solid var(--ab-color-primarydark)',
|
|
71
71
|
borderRadius: 'var(--ab__border-radius)',
|
|
@@ -76,9 +76,9 @@ function UnusedPanel({ toolbars }) {
|
|
|
76
76
|
React.createElement("div", { style: { padding: 'var(--ab-space-2)' } },
|
|
77
77
|
React.createElement("b", null, "Available Toolbars"),
|
|
78
78
|
" (drag into a Tab below)"),
|
|
79
|
-
React.createElement(UnusedToolbarList, { toolbars: toolbars })));
|
|
79
|
+
React.createElement(UnusedToolbarList, { disabled: disabled, toolbars: toolbars })));
|
|
80
80
|
}
|
|
81
|
-
function UnusedToolbarList({ toolbars }) {
|
|
81
|
+
function UnusedToolbarList({ toolbars, disabled }) {
|
|
82
82
|
return (React.createElement(react_beautiful_dnd_1.Droppable, { droppableId: "UNUSED", type: "TOOLBAR", isDropDisabled: true, direction: "horizontal" }, (provided) => (React.createElement("div", Object.assign({ ref: provided.innerRef, "data-name": "dashboard-toolbars-list" }, provided.droppableProps, { style: {
|
|
83
83
|
display: 'flex',
|
|
84
84
|
flexDirection: 'row',
|
|
@@ -86,16 +86,22 @@ function UnusedToolbarList({ toolbars }) {
|
|
|
86
86
|
paddingLeft: 'var(--ab-space-2)',
|
|
87
87
|
paddingRight: 'var(--ab-space-2)',
|
|
88
88
|
} }),
|
|
89
|
-
toolbars.map((toolbar, toolbarIndex) => (React.createElement(UnusedToolbarItem, { key: toolbar, toolbar: toolbar, toolbarIndex: toolbarIndex }))),
|
|
89
|
+
toolbars.map((toolbar, toolbarIndex) => (React.createElement(UnusedToolbarItem, { disabled: disabled, key: toolbar, toolbar: toolbar, toolbarIndex: toolbarIndex }))),
|
|
90
90
|
provided.placeholder))));
|
|
91
91
|
}
|
|
92
|
-
function UnusedToolbarItem({ toolbar, toolbarIndex }) {
|
|
92
|
+
function UnusedToolbarItem({ toolbar, toolbarIndex, disabled, }) {
|
|
93
93
|
const { availableToolbars } = react_1.useContext(DashboardManagerContext);
|
|
94
|
-
return (React.createElement(react_beautiful_dnd_1.Draggable, { draggableId: toolbar, index: toolbarIndex }, (provided, snapshot) =>
|
|
95
|
-
|
|
96
|
-
|
|
94
|
+
return (React.createElement(react_beautiful_dnd_1.Draggable, { isDragDisabled: disabled, draggableId: toolbar, index: toolbarIndex }, (provided, snapshot) => {
|
|
95
|
+
const eventHandlers = disabled
|
|
96
|
+
? {}
|
|
97
|
+
: Object.assign(Object.assign({}, provided.draggableProps), provided.dragHandleProps);
|
|
98
|
+
const dragStyle = disabled ? {} : provided.draggableProps.style;
|
|
99
|
+
return (React.createElement("div", Object.assign({ "data-name": "dashboard-toolbar", ref: provided.innerRef }, eventHandlers, { style: Object.assign(Object.assign({}, dragStyle), { border: '1px solid var(--ab-color-primary)', backgroundColor: snapshot.isDragging
|
|
100
|
+
? 'var(--ab-dashboard-toolbar-drag__background)'
|
|
101
|
+
: 'var(--ab-color-primarylight)', padding: 'var(--ab-space-1) var(--ab-space-2)', marginRight: 'var(--ab-space-1)', marginBottom: 'var(--ab-space-1)' }) }), getToolbarTitle(availableToolbars, toolbar)));
|
|
102
|
+
}));
|
|
97
103
|
}
|
|
98
|
-
|
|
104
|
+
const DashboardManager = ({ tabs, onTabsChange, availableToolbars, api, disabled, }) => {
|
|
99
105
|
const moduleService = api.internalApi.getModuleService();
|
|
100
106
|
const moduleInfo = moduleService.getModuleInfoByModule('Dashboard');
|
|
101
107
|
const contextValue = react_1.useMemo(() => ({
|
|
@@ -157,9 +163,9 @@ function DashboardManager({ tabs, onTabsChange, availableToolbars, api, }) {
|
|
|
157
163
|
} },
|
|
158
164
|
React.createElement(DashboardManagerContext.Provider, { value: contextValue },
|
|
159
165
|
React.createElement("div", { style: { display: 'flex', flexDirection: 'column' } },
|
|
160
|
-
React.createElement(UnusedPanel, { toolbars: unusedToolbars }),
|
|
161
|
-
React.createElement(PanelWithButton_1.PanelWithButton, { headerText: moduleInfo.FriendlyName + ' Tabs', button: React.createElement(SimpleButton_1.default, { onClick: handleTabAdd }, "Add Tab") },
|
|
166
|
+
React.createElement(UnusedPanel, { disabled: disabled, toolbars: unusedToolbars }),
|
|
167
|
+
React.createElement(PanelWithButton_1.PanelWithButton, { headerText: moduleInfo.FriendlyName + ' Tabs', button: React.createElement(SimpleButton_1.default, { disabled: disabled, onClick: handleTabAdd }, "Add Tab") },
|
|
162
168
|
React.createElement("div", { style: { display: 'flex', flex: 1 } },
|
|
163
|
-
React.createElement(TabList, { tabs: tabs, onRemoveTab: handleRemoveTab, onRemoveToolbar: handleRemoveToolbar, onChangeTabName: handleChangeTabName })))))));
|
|
164
|
-
}
|
|
169
|
+
React.createElement(TabList, { disabled: disabled, tabs: tabs, onRemoveTab: handleRemoveTab, onRemoveToolbar: handleRemoveToolbar, onChangeTabName: handleChangeTabName })))))));
|
|
170
|
+
};
|
|
165
171
|
exports.default = DashboardManager;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
const React = tslib_1.__importStar(require("react"));
|
|
5
|
-
const isPlainObject_1 = tslib_1.__importDefault(require("lodash
|
|
5
|
+
const isPlainObject_1 = tslib_1.__importDefault(require("lodash/isPlainObject"));
|
|
6
6
|
exports.default = ({ domProps, item, onItemClick, index, columns, className, idProperty, style, }) => {
|
|
7
7
|
const key = item[idProperty] || index;
|
|
8
8
|
if (!isPlainObject_1.default(item)) {
|
|
@@ -5,7 +5,7 @@ const tslib_1 = require("tslib");
|
|
|
5
5
|
const React = tslib_1.__importStar(require("react"));
|
|
6
6
|
const rebass_1 = require("rebass");
|
|
7
7
|
const react_1 = require("react");
|
|
8
|
-
const merge_1 = tslib_1.__importDefault(require("lodash
|
|
8
|
+
const merge_1 = tslib_1.__importDefault(require("lodash/merge"));
|
|
9
9
|
const join_1 = tslib_1.__importDefault(require("../utils/join"));
|
|
10
10
|
const FormLayoutContext = react_1.createContext(null);
|
|
11
11
|
const defaultColumns = {
|
|
@@ -6,7 +6,7 @@ const React = tslib_1.__importStar(require("react"));
|
|
|
6
6
|
const react_1 = require("react");
|
|
7
7
|
const batchUpdate_1 = tslib_1.__importDefault(require("../utils/batchUpdate"));
|
|
8
8
|
const usePrevious_1 = tslib_1.__importDefault(require("../utils/usePrevious"));
|
|
9
|
-
const isEqual_1 = tslib_1.__importDefault(require("lodash
|
|
9
|
+
const isEqual_1 = tslib_1.__importDefault(require("lodash/isEqual"));
|
|
10
10
|
const utils_1 = require("./utils");
|
|
11
11
|
exports.useRefresh = () => {
|
|
12
12
|
const [x, update] = react_1.useState(0);
|
|
@@ -5,6 +5,20 @@ const tslib_1 = require("tslib");
|
|
|
5
5
|
const React = tslib_1.__importStar(require("react"));
|
|
6
6
|
const re_resizable_1 = require("re-resizable");
|
|
7
7
|
const useDraggable_1 = tslib_1.__importDefault(require("../utils/useDraggable"));
|
|
8
|
+
const UIHelper_1 = require("../../View/UIHelper");
|
|
9
|
+
const react_dom_1 = require("react-dom");
|
|
10
|
+
let portalElement;
|
|
11
|
+
const ensurePortalElement = () => {
|
|
12
|
+
if (!UIHelper_1.isBrowserDocumentAvailable()) {
|
|
13
|
+
return;
|
|
14
|
+
}
|
|
15
|
+
if (portalElement) {
|
|
16
|
+
return;
|
|
17
|
+
}
|
|
18
|
+
portalElement = document.createElement('div');
|
|
19
|
+
portalElement.classList.add('ab-cmp-modal-window');
|
|
20
|
+
document.body.appendChild(portalElement);
|
|
21
|
+
};
|
|
8
22
|
const getResizePositionDelta = (direction, delta) => {
|
|
9
23
|
const positionDelta = { x: 0, y: 0 };
|
|
10
24
|
const left = -delta.width;
|
|
@@ -26,6 +40,7 @@ const getResizePositionDelta = (direction, delta) => {
|
|
|
26
40
|
return null;
|
|
27
41
|
};
|
|
28
42
|
exports.WindowModal = (props) => {
|
|
43
|
+
ensurePortalElement();
|
|
29
44
|
const positionDeltaRef = React.useRef(null);
|
|
30
45
|
const positionRef = React.useRef(props.position);
|
|
31
46
|
/**
|
|
@@ -77,11 +92,11 @@ exports.WindowModal = (props) => {
|
|
|
77
92
|
applyTransform(positionDelta.x, positionDelta.y);
|
|
78
93
|
}
|
|
79
94
|
}, []);
|
|
80
|
-
return (React.createElement("div", { style: style,
|
|
95
|
+
return react_dom_1.createPortal(React.createElement("div", { style: style,
|
|
81
96
|
//@ts-ignore
|
|
82
97
|
ref: targetRef },
|
|
83
98
|
React.createElement(re_resizable_1.Resizable, { onResizeStop: handleResizeStop, onResize: handleResize, bounds: "window", defaultSize: {
|
|
84
99
|
width: props.size.width,
|
|
85
100
|
height: props.size.height,
|
|
86
|
-
} }, props.children)));
|
|
101
|
+
} }, props.children)), portalElement);
|
|
87
102
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
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("g", { transform: "matrix(0.966625, 0, 0, 0.966625, -161.245651, -58.219734)" },
|
|
8
|
+
React.createElement("g", { transform: "matrix(1, 0, 0, 1, 167.951233, 60.368694)" },
|
|
9
|
+
React.createElement("path", { d: "M 14.67 5 L 14.67 19 L 9.33 19 L 9.33 5 L 14.67 5 Z M 15.67 19 L 21 19 L 20.99 11.456 L 15.67 11.459 L 15.67 19 Z M 8.33 19 L 8.33 5 L 3 5 L 3 19 L 8.33 19 Z" })),
|
|
10
|
+
React.createElement("path", { d: "M 188.844 62.299 L 186.844 62.299 L 186.844 65.299 L 183.844 65.299 C 183.854 65.309 183.844 67.299 183.844 67.299 L 186.844 67.299 L 186.844 70.289 C 186.854 70.299 188.844 70.289 188.844 70.289 L 188.844 67.299 L 191.844 67.299 L 191.844 65.299 L 188.844 65.299 L 188.844 62.299 Z" }))));
|
|
@@ -47,6 +47,7 @@ const import_export_1 = tslib_1.__importDefault(require("./import-export"));
|
|
|
47
47
|
const calculated_column_1 = tslib_1.__importDefault(require("./calculated-column"));
|
|
48
48
|
const cell_summary_1 = tslib_1.__importDefault(require("./cell-summary"));
|
|
49
49
|
const column_chooser_1 = tslib_1.__importDefault(require("./column-chooser"));
|
|
50
|
+
const column_add_1 = tslib_1.__importDefault(require("./column-add"));
|
|
50
51
|
const cell_validation_1 = tslib_1.__importDefault(require("./cell-validation"));
|
|
51
52
|
const column_filter_1 = tslib_1.__importDefault(require("./column-filter"));
|
|
52
53
|
const column_info_1 = tslib_1.__importDefault(require("./column-info"));
|
|
@@ -136,6 +137,7 @@ const allIcons = {
|
|
|
136
137
|
chart: chart_1.default,
|
|
137
138
|
'cell-summary': cell_summary_1.default,
|
|
138
139
|
'column-chooser': column_chooser_1.default,
|
|
140
|
+
'column-add': column_add_1.default,
|
|
139
141
|
'column-filter': column_filter_1.default,
|
|
140
142
|
'data-source': data_source_1.default,
|
|
141
143
|
export: export_1.default,
|
|
@@ -26,7 +26,8 @@ function useDraggable({ onMove, onDrop, getBoundingRect = () => document.body.ge
|
|
|
26
26
|
* This gives time react to render the node handle.
|
|
27
27
|
*/
|
|
28
28
|
setTimeout(() => {
|
|
29
|
-
|
|
29
|
+
var _a;
|
|
30
|
+
const node = (_a = targetRef === null || targetRef === void 0 ? void 0 : targetRef.current) === null || _a === void 0 ? void 0 : _a.querySelector(handleSelector);
|
|
30
31
|
node && handleRefCallback(node);
|
|
31
32
|
}, 16);
|
|
32
33
|
}
|
|
@@ -193,7 +193,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
193
193
|
uiLabel: string;
|
|
194
194
|
}[];
|
|
195
195
|
};
|
|
196
|
-
|
|
196
|
+
AdaptableFlashingCell: {
|
|
197
197
|
name: string;
|
|
198
198
|
kind: string;
|
|
199
199
|
description: string;
|
|
@@ -349,36 +349,45 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
349
349
|
description: string;
|
|
350
350
|
uiLabel: string;
|
|
351
351
|
isOptional: boolean;
|
|
352
|
-
|
|
352
|
+
reference: string;
|
|
353
353
|
gridInfo?: undefined;
|
|
354
|
-
|
|
354
|
+
defaultValue?: undefined;
|
|
355
355
|
} | {
|
|
356
356
|
name: string;
|
|
357
357
|
kind: string;
|
|
358
358
|
description: string;
|
|
359
359
|
uiLabel: string;
|
|
360
360
|
isOptional: boolean;
|
|
361
|
-
reference: string;
|
|
362
361
|
gridInfo?: undefined;
|
|
363
362
|
defaultValue?: undefined;
|
|
363
|
+
reference?: undefined;
|
|
364
364
|
} | {
|
|
365
365
|
name: string;
|
|
366
366
|
kind: string;
|
|
367
367
|
description: string;
|
|
368
368
|
uiLabel: string;
|
|
369
369
|
isOptional: boolean;
|
|
370
|
-
gridInfo
|
|
370
|
+
gridInfo: string;
|
|
371
|
+
reference: string;
|
|
371
372
|
defaultValue?: undefined;
|
|
372
|
-
reference?: undefined;
|
|
373
373
|
} | {
|
|
374
374
|
name: string;
|
|
375
375
|
kind: string;
|
|
376
376
|
description: string;
|
|
377
377
|
uiLabel: string;
|
|
378
378
|
isOptional: boolean;
|
|
379
|
-
|
|
379
|
+
defaultValue: string;
|
|
380
380
|
reference: string;
|
|
381
|
-
|
|
381
|
+
gridInfo?: undefined;
|
|
382
|
+
} | {
|
|
383
|
+
name: string;
|
|
384
|
+
kind: string;
|
|
385
|
+
description: string;
|
|
386
|
+
uiLabel: string;
|
|
387
|
+
isOptional: boolean;
|
|
388
|
+
defaultValue: string;
|
|
389
|
+
gridInfo?: undefined;
|
|
390
|
+
reference?: undefined;
|
|
382
391
|
} | {
|
|
383
392
|
name: string;
|
|
384
393
|
kind: string;
|
|
@@ -917,35 +926,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
917
926
|
kind: string;
|
|
918
927
|
description: string;
|
|
919
928
|
};
|
|
920
|
-
ChartApi: {
|
|
921
|
-
name: string;
|
|
922
|
-
kind: string;
|
|
923
|
-
description: string;
|
|
924
|
-
properties: {
|
|
925
|
-
name: string;
|
|
926
|
-
kind: string;
|
|
927
|
-
description: string;
|
|
928
|
-
uiLabel: string;
|
|
929
|
-
}[];
|
|
930
|
-
};
|
|
931
|
-
ChartDefinition: {
|
|
932
|
-
name: string;
|
|
933
|
-
kind: string;
|
|
934
|
-
description: string;
|
|
935
|
-
};
|
|
936
|
-
ChartPluginOptions: {
|
|
937
|
-
name: string;
|
|
938
|
-
kind: string;
|
|
939
|
-
description: string;
|
|
940
|
-
properties: {
|
|
941
|
-
name: string;
|
|
942
|
-
kind: string;
|
|
943
|
-
description: string;
|
|
944
|
-
uiLabel: string;
|
|
945
|
-
isOptional: boolean;
|
|
946
|
-
defaultValue: string;
|
|
947
|
-
}[];
|
|
948
|
-
};
|
|
949
929
|
CheckboxColumnClickedInfo: {
|
|
950
930
|
name: string;
|
|
951
931
|
kind: string;
|
|
@@ -1339,6 +1319,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1339
1319
|
kind: string;
|
|
1340
1320
|
description: string;
|
|
1341
1321
|
properties: ({
|
|
1322
|
+
name: string;
|
|
1323
|
+
kind: string;
|
|
1324
|
+
description: string;
|
|
1325
|
+
uiLabel: string;
|
|
1326
|
+
isOptional: boolean;
|
|
1327
|
+
defaultValue: string;
|
|
1328
|
+
gridInfo?: undefined;
|
|
1329
|
+
} | {
|
|
1342
1330
|
name: string;
|
|
1343
1331
|
kind: string;
|
|
1344
1332
|
description: string;
|
|
@@ -1352,8 +1340,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1352
1340
|
description: string;
|
|
1353
1341
|
uiLabel: string;
|
|
1354
1342
|
isOptional: boolean;
|
|
1355
|
-
gridInfo?: undefined;
|
|
1356
1343
|
defaultValue?: undefined;
|
|
1344
|
+
gridInfo?: undefined;
|
|
1357
1345
|
})[];
|
|
1358
1346
|
};
|
|
1359
1347
|
DashboardState: {
|
|
@@ -1887,7 +1875,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1887
1875
|
isOptional: boolean;
|
|
1888
1876
|
}[];
|
|
1889
1877
|
};
|
|
1890
|
-
|
|
1878
|
+
FlashingCellApi: {
|
|
1891
1879
|
name: string;
|
|
1892
1880
|
kind: string;
|
|
1893
1881
|
description: string;
|
|
@@ -1896,9 +1884,38 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1896
1884
|
kind: string;
|
|
1897
1885
|
description: string;
|
|
1898
1886
|
uiLabel: string;
|
|
1899
|
-
reference: string;
|
|
1900
1887
|
}[];
|
|
1901
1888
|
};
|
|
1889
|
+
FlashingCellDefinition: {
|
|
1890
|
+
name: string;
|
|
1891
|
+
kind: string;
|
|
1892
|
+
description: string;
|
|
1893
|
+
properties: ({
|
|
1894
|
+
name: string;
|
|
1895
|
+
kind: string;
|
|
1896
|
+
description: string;
|
|
1897
|
+
uiLabel: string;
|
|
1898
|
+
isOptional: boolean;
|
|
1899
|
+
defaultValue: string;
|
|
1900
|
+
reference: string;
|
|
1901
|
+
} | {
|
|
1902
|
+
name: string;
|
|
1903
|
+
kind: string;
|
|
1904
|
+
description: string;
|
|
1905
|
+
uiLabel: string;
|
|
1906
|
+
isOptional: boolean;
|
|
1907
|
+
defaultValue: string;
|
|
1908
|
+
reference?: undefined;
|
|
1909
|
+
} | {
|
|
1910
|
+
name: string;
|
|
1911
|
+
kind: string;
|
|
1912
|
+
description: string;
|
|
1913
|
+
uiLabel: string;
|
|
1914
|
+
reference: string;
|
|
1915
|
+
isOptional?: undefined;
|
|
1916
|
+
defaultValue?: undefined;
|
|
1917
|
+
})[];
|
|
1918
|
+
};
|
|
1902
1919
|
FlashingCellDisplayedInfo: {
|
|
1903
1920
|
name: string;
|
|
1904
1921
|
kind: string;
|
|
@@ -1911,7 +1928,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1911
1928
|
reference: string;
|
|
1912
1929
|
}[];
|
|
1913
1930
|
};
|
|
1914
|
-
|
|
1931
|
+
FlashingCellOptions: {
|
|
1915
1932
|
name: string;
|
|
1916
1933
|
kind: string;
|
|
1917
1934
|
description: string;
|
|
@@ -2523,15 +2540,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2523
2540
|
gridInfo: string;
|
|
2524
2541
|
defaultValue: string;
|
|
2525
2542
|
reference?: undefined;
|
|
2526
|
-
} | {
|
|
2527
|
-
name: string;
|
|
2528
|
-
kind: string;
|
|
2529
|
-
description: string;
|
|
2530
|
-
uiLabel: string;
|
|
2531
|
-
isOptional: boolean;
|
|
2532
|
-
defaultValue: string;
|
|
2533
|
-
reference: string;
|
|
2534
|
-
gridInfo?: undefined;
|
|
2535
2543
|
} | {
|
|
2536
2544
|
name: string;
|
|
2537
2545
|
kind: string;
|
|
@@ -3107,47 +3115,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3107
3115
|
uiLabel: string;
|
|
3108
3116
|
}[];
|
|
3109
3117
|
};
|
|
3110
|
-
SparklineColumn: {
|
|
3111
|
-
name: string;
|
|
3112
|
-
kind: string;
|
|
3113
|
-
description: string;
|
|
3114
|
-
properties: ({
|
|
3115
|
-
name: string;
|
|
3116
|
-
kind: string;
|
|
3117
|
-
description: string;
|
|
3118
|
-
uiLabel: string;
|
|
3119
|
-
isOptional?: undefined;
|
|
3120
|
-
} | {
|
|
3121
|
-
name: string;
|
|
3122
|
-
kind: string;
|
|
3123
|
-
description: string;
|
|
3124
|
-
uiLabel: string;
|
|
3125
|
-
isOptional: boolean;
|
|
3126
|
-
})[];
|
|
3127
|
-
};
|
|
3128
|
-
SparklineColumnApi: {
|
|
3129
|
-
name: string;
|
|
3130
|
-
kind: string;
|
|
3131
|
-
description: string;
|
|
3132
|
-
properties: {
|
|
3133
|
-
name: string;
|
|
3134
|
-
kind: string;
|
|
3135
|
-
description: string;
|
|
3136
|
-
uiLabel: string;
|
|
3137
|
-
}[];
|
|
3138
|
-
};
|
|
3139
|
-
SparklineColumnState: {
|
|
3140
|
-
name: string;
|
|
3141
|
-
kind: string;
|
|
3142
|
-
description: string;
|
|
3143
|
-
properties: {
|
|
3144
|
-
name: string;
|
|
3145
|
-
kind: string;
|
|
3146
|
-
description: string;
|
|
3147
|
-
uiLabel: string;
|
|
3148
|
-
isOptional: boolean;
|
|
3149
|
-
}[];
|
|
3150
|
-
};
|
|
3151
3118
|
SpecialColumnSettings: {
|
|
3152
3119
|
name: string;
|
|
3153
3120
|
kind: string;
|