@adaptabletools/adaptable 15.4.3 → 16.0.0-canary.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base.css +1 -1
- package/base.css.map +1 -1
- package/bundle.cjs.js +234 -228
- package/index.css +1 -1
- 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 +3 -2
- package/src/AdaptableOptions/ActionColumnOptions.d.ts +82 -0
- package/src/AdaptableOptions/{ActionOptions.d.ts → ActionRowOptions.d.ts} +15 -90
- package/src/AdaptableOptions/AdaptableOptions.d.ts +32 -7
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +1 -12
- package/src/AdaptableOptions/AlertOptions.d.ts +9 -0
- package/src/AdaptableOptions/CalendarOptions.d.ts +11 -0
- package/src/AdaptableOptions/CellSummaryOptions.d.ts +10 -0
- package/src/AdaptableOptions/ColumnOptions.d.ts +0 -4
- package/src/AdaptableOptions/CustomSortOptions.d.ts +24 -0
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +5 -1
- package/src/AdaptableOptions/DataSetOptions.d.ts +41 -0
- package/src/AdaptableOptions/DataSetOptions.js +2 -0
- package/src/AdaptableOptions/EditOptions.d.ts +4 -4
- package/src/AdaptableOptions/EntitlementOptions.d.ts +0 -16
- package/src/AdaptableOptions/ExportOptions.d.ts +2 -4
- package/src/AdaptableOptions/ExpressionOptions.d.ts +7 -0
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +1 -1
- package/src/AdaptableOptions/GroupingOptions.d.ts +50 -0
- package/src/AdaptableOptions/GroupingOptions.js +2 -0
- package/src/AdaptableOptions/MasterDetailPluginOptions.d.ts +9 -0
- package/src/AdaptableOptions/PredicateOptions.d.ts +4 -0
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +0 -8
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +30 -1
- package/src/Api/ActionColumnApi.d.ts +10 -0
- package/src/Api/ActionColumnApi.js +2 -0
- package/src/Api/{ActionApi.d.ts → ActionRowApi.d.ts} +4 -15
- package/src/Api/ActionRowApi.js +2 -0
- package/src/Api/AdaptableApi.d.ts +11 -6
- package/src/Api/AlertApi.d.ts +2 -111
- package/src/Api/BulkUpdateApi.d.ts +0 -7
- package/src/Api/CalculatedColumnApi.d.ts +0 -31
- package/src/Api/CalendarApi.d.ts +1 -1
- package/src/Api/CellSummaryApi.d.ts +0 -7
- package/src/Api/ChartingApi.d.ts +0 -7
- package/src/Api/ColumnApi.d.ts +1 -131
- package/src/Api/ConfigApi.d.ts +1 -7
- package/src/Api/CustomSortApi.d.ts +0 -25
- package/src/Api/DashboardApi.d.ts +0 -16
- package/src/Api/DataChangeHistoryApi.d.ts +0 -7
- package/src/Api/DataSetApi.d.ts +1 -16
- package/src/Api/EventApi.d.ts +1 -9
- package/src/Api/Events/AdaptableStateChanged.d.ts +0 -8
- package/src/Api/Events/AdaptableStateReloaded.d.ts +0 -4
- package/src/Api/Events/BaseEventInfo.d.ts +9 -1
- package/src/Api/Events/LiveDataChanged.d.ts +3 -7
- package/src/Api/ExportApi.d.ts +7 -31
- package/src/Api/{QueryLanguageApi.d.ts → ExpressionApi.d.ts} +2 -2
- package/src/Api/ExpressionApi.js +2 -0
- package/src/Api/FilterApi.d.ts +1 -59
- package/src/Api/FlashingCellApi.d.ts +0 -15
- package/src/Api/FormatColumnApi.d.ts +1 -91
- package/src/Api/FreeTextColumnApi.d.ts +0 -39
- package/src/Api/GridApi.d.ts +0 -31
- package/src/Api/Implementation/ActionColumnApiImpl.d.ts +7 -0
- package/src/Api/Implementation/ActionColumnApiImpl.js +14 -0
- package/src/Api/Implementation/ActionRowApiImpl.d.ts +12 -0
- package/src/Api/Implementation/{ActionApiImpl.js → ActionRowApiImpl.js} +8 -15
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +6 -4
- package/src/Api/Implementation/AdaptableApiImpl.js +7 -5
- package/src/Api/Implementation/AlertApiImpl.d.ts +1 -43
- package/src/Api/Implementation/AlertApiImpl.js +4 -94
- package/src/Api/Implementation/ApiBase.d.ts +15 -5
- package/src/Api/Implementation/ApiBase.js +26 -8
- package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +0 -7
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +0 -32
- package/src/Api/Implementation/CalendarApiImpl.d.ts +1 -0
- package/src/Api/Implementation/CalendarApiImpl.js +20 -17
- package/src/Api/Implementation/CellSummaryApiImpl.d.ts +0 -1
- package/src/Api/Implementation/CellSummaryApiImpl.js +1 -6
- package/src/Api/Implementation/ChartingApiImpl.d.ts +0 -1
- package/src/Api/Implementation/ChartingApiImpl.js +0 -5
- package/src/Api/Implementation/ColumnApiImpl.d.ts +0 -35
- package/src/Api/Implementation/ColumnApiImpl.js +1 -138
- package/src/Api/Implementation/ConfigApiImpl.js +2 -1
- package/src/Api/Implementation/CustomSortApiImpl.d.ts +1 -5
- package/src/Api/Implementation/CustomSortApiImpl.js +0 -16
- package/src/Api/Implementation/DashboardApiImpl.d.ts +0 -4
- package/src/Api/Implementation/DashboardApiImpl.js +2 -24
- package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +0 -1
- package/src/Api/Implementation/DataChangeHistoryApiImpl.js +0 -5
- package/src/Api/Implementation/DataSetApiImpl.d.ts +1 -4
- package/src/Api/Implementation/DataSetApiImpl.js +1 -14
- package/src/Api/Implementation/ExportApiImpl.d.ts +4 -10
- package/src/Api/Implementation/ExportApiImpl.js +15 -34
- package/src/Api/Implementation/{QueryLanguageApiImpl.d.ts → ExpressionApiImpl.d.ts} +4 -4
- package/src/Api/Implementation/{QueryLanguageApiImpl.js → ExpressionApiImpl.js} +7 -5
- package/src/Api/Implementation/FilterApiImpl.d.ts +1 -17
- package/src/Api/Implementation/FilterApiImpl.js +0 -53
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +0 -3
- package/src/Api/Implementation/FlashingCellApiImpl.js +2 -13
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +2 -34
- package/src/Api/Implementation/FormatColumnApiImpl.js +0 -73
- package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +0 -8
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +0 -29
- package/src/Api/Implementation/GridApiImpl.d.ts +0 -7
- package/src/Api/Implementation/GridApiImpl.js +3 -32
- package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -6
- package/src/Api/Implementation/LayoutApiImpl.js +2 -27
- package/src/Api/Implementation/OptionsApiImpl.d.ts +10 -5
- package/src/Api/Implementation/OptionsApiImpl.js +19 -7
- package/src/Api/Implementation/PlusMinusApiImpl.d.ts +0 -1
- package/src/Api/Implementation/PlusMinusApiImpl.js +0 -5
- package/src/Api/Implementation/PredicateApiImpl.d.ts +1 -8
- package/src/Api/Implementation/PredicateApiImpl.js +2 -30
- package/src/Api/Implementation/QueryApiImpl.d.ts +0 -5
- package/src/Api/Implementation/QueryApiImpl.js +0 -21
- package/src/Api/Implementation/QuickSearchApiImpl.d.ts +0 -1
- package/src/Api/Implementation/QuickSearchApiImpl.js +0 -5
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +1 -18
- package/src/Api/Implementation/ScheduleApiImpl.js +0 -69
- package/src/Api/Implementation/ScopeApiImpl.js +1 -1
- package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +0 -2
- package/src/Api/Implementation/SettingsPanelApiImpl.js +0 -9
- package/src/Api/Implementation/ShortcutApiImpl.d.ts +1 -6
- package/src/Api/Implementation/ShortcutApiImpl.js +0 -21
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +0 -1
- package/src/Api/Implementation/SmartEditApiImpl.js +0 -5
- package/src/Api/Implementation/StyledColumnApiImpl.d.ts +1 -5
- package/src/Api/Implementation/StyledColumnApiImpl.js +2 -17
- package/src/Api/Implementation/SystemStatusApiImpl.d.ts +0 -2
- package/src/Api/Implementation/SystemStatusApiImpl.js +0 -9
- package/src/Api/Implementation/TeamSharingApiImpl.d.ts +0 -5
- package/src/Api/Implementation/TeamSharingApiImpl.js +0 -21
- package/src/Api/Implementation/ThemeApiImpl.d.ts +0 -4
- package/src/Api/Implementation/ThemeApiImpl.js +2 -17
- package/src/Api/Implementation/ToolPanelApiImpl.js +2 -2
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +4 -2
- package/src/Api/Implementation/UserInterfaceApiImpl.js +17 -10
- package/src/Api/Internal/{ActionInternalApi.d.ts → ActionRowInternalApi.d.ts} +2 -2
- package/src/Api/Internal/{ActionInternalApi.js → ActionRowInternalApi.js} +12 -5
- package/src/Api/Internal/AdaptableInternalApi.d.ts +1 -10
- package/src/Api/Internal/AdaptableInternalApi.js +9 -20
- package/src/Api/Internal/AlertInternalApi.js +9 -6
- package/src/Api/Internal/CalculatedColumnInternalApi.js +2 -2
- package/src/Api/Internal/CustomSortInternalApi.d.ts +1 -1
- package/src/Api/Internal/CustomSortInternalApi.js +1 -1
- package/src/Api/Internal/DashboardInternalApi.js +2 -0
- package/src/Api/Internal/DataSetInternalApi.d.ts +1 -1
- package/src/Api/Internal/DataSetInternalApi.js +2 -1
- package/src/Api/Internal/ExportInternalApi.js +1 -1
- package/src/Api/Internal/{QueryLanguageInternalApi.d.ts → ExpressionnternalApi.d.ts} +1 -1
- package/src/Api/Internal/{QueryLanguageInternalApi.js → ExpressionnternalApi.js} +9 -5
- package/src/Api/Internal/FilterInternalApi.js +4 -1
- package/src/Api/Internal/FormatColumnInternalApi.js +1 -1
- package/src/Api/Internal/GridInternalApi.js +8 -0
- package/src/Api/Internal/LayoutInternalApi.js +6 -1
- package/src/Api/Internal/PredicateInternalApi.js +10 -0
- package/src/Api/Internal/QueryInternalApi.js +3 -1
- package/src/Api/Internal/SystemStatusInternalApi.js +4 -1
- package/src/Api/Internal/TeamSharingInternalApi.js +2 -0
- package/src/Api/LayoutApi.d.ts +3 -27
- package/src/Api/OptionsApi.d.ts +28 -10
- package/src/Api/PlusMinusApi.d.ts +0 -7
- package/src/Api/PredicateApi.d.ts +1 -32
- package/src/Api/QueryApi.d.ts +0 -23
- package/src/Api/QuickSearchApi.d.ts +0 -4
- package/src/Api/ScheduleApi.d.ts +0 -81
- package/src/Api/SettingsPanelApi.d.ts +0 -11
- package/src/Api/ShortcutApi.d.ts +0 -25
- package/src/Api/SmartEditApi.d.ts +0 -7
- package/src/Api/StyledColumnApi.d.ts +0 -21
- package/src/Api/SystemStatusApi.d.ts +0 -11
- package/src/Api/TeamSharingApi.d.ts +0 -23
- package/src/Api/ThemeApi.d.ts +0 -19
- package/src/Api/UserInterfaceApi.d.ts +4 -9
- package/src/PredefinedConfig/AlertState.d.ts +4 -1
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +3 -3
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +4 -1
- package/src/PredefinedConfig/Common/AggregationColumns.d.ts +3 -0
- package/src/PredefinedConfig/Common/BaseContext.d.ts +8 -0
- package/src/PredefinedConfig/Common/DataChangedScope.d.ts +9 -0
- package/src/PredefinedConfig/Common/Entitlement.d.ts +1 -1
- package/src/PredefinedConfig/LayoutState.d.ts +0 -6
- package/src/PredefinedConfig/SystemState.d.ts +1 -1
- package/src/PredefinedConfig/TeamSharingState.d.ts +1 -1
- package/src/PredefinedConfig/ThemeState.d.ts +3 -0
- package/src/Strategy/AdaptableModuleBase.js +3 -3
- package/src/Strategy/AlertModule.js +3 -3
- package/src/Strategy/CalculatedColumnModule.js +2 -2
- package/src/Strategy/CellSummaryModule.js +2 -0
- package/src/Strategy/DataSetModule.d.ts +1 -1
- package/src/Strategy/DataSetModule.js +1 -1
- package/src/Strategy/ExportModule.js +4 -0
- package/src/Strategy/FlashingCellModule.js +4 -4
- package/src/Strategy/FormatColumnModule.js +3 -3
- package/src/Strategy/QueryModule.js +1 -1
- package/src/Strategy/SmartEditModule.js +2 -0
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +24 -22
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +4 -0
- package/src/Utilities/Helpers/AdaptableHelper.js +12 -6
- package/src/Utilities/Helpers/FormatHelper.js +7 -0
- package/src/Utilities/ObjectFactory.d.ts +2 -2
- package/src/Utilities/ObjectFactory.js +6 -4
- package/src/Utilities/Services/AlertService.js +1 -1
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +2 -2
- package/src/Utilities/Services/ChartingService.js +2 -0
- package/src/Utilities/Services/EntitlementService.js +2 -2
- package/src/Utilities/Services/ModuleService.js +10 -10
- package/src/Utilities/Services/QueryLanguageService.js +16 -0
- package/src/Utilities/Services/ReportService.js +8 -6
- package/src/Utilities/Services/RowEditService.js +4 -2
- package/src/Utilities/Services/ValidationService.js +2 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.js +3 -3
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -1
- package/src/View/CellSummary/CellSummaryStatusPanel.js +1 -1
- package/src/View/Components/AdaptableIconSelector/index.d.ts +6 -0
- package/src/View/Components/AdaptableIconSelector/index.js +18 -0
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +2 -2
- package/src/View/Components/AdaptableViewIcon/index.d.ts +10 -0
- package/src/View/Components/AdaptableViewIcon/index.js +18 -0
- package/src/View/Components/EntityRulesEditor/Utilities.js +3 -3
- package/src/View/Components/ExternalRenderer.js +14 -2
- package/src/View/Components/FilterForm/QuickFilterForm.js +4 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.js +2 -0
- package/src/View/Components/RangesComponent.d.ts +4 -4
- package/src/View/Components/RangesComponent.js +13 -22
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +2 -0
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +11 -1
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +1 -1
- package/src/View/Dashboard/CustomDashboardButton.js +2 -0
- package/src/View/Dashboard/CustomToolbarWrapper.js +13 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +5 -5
- package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +2 -2
- package/src/View/DataChangeHistory/buildActionColumnButton.js +3 -2
- package/src/View/Export/ExportViewPanel.js +4 -4
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +3 -1
- package/src/View/GridInfo/GridInfoPopup.d.ts +0 -1
- package/src/View/GridInfo/GridInfoPopup.js +1 -2
- package/src/View/GridInfo/GridOptionsComponent.js +1 -1
- package/src/View/Layout/LayoutViewPanel.js +1 -1
- package/src/View/Layout/PivotDetailsPopoup.js +2 -0
- package/src/View/Layout/SaveLayoutButton.js +1 -1
- package/src/View/Layout/Wizard/LayoutWizard.js +1 -1
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +1 -1
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +2 -2
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.js +8 -1
- package/src/agGrid/ActionColumnRenderer.d.ts +1 -1
- package/src/agGrid/ActionColumnRenderer.js +5 -1
- package/src/agGrid/Adaptable.d.ts +14 -3
- package/src/agGrid/Adaptable.js +129 -30
- package/src/agGrid/BadgeRenderer.js +10 -2
- package/src/agGrid/CheckboxRenderer.d.ts +1 -2
- package/src/agGrid/agGridHelper.js +4 -5
- package/src/agGrid/agGridMenuHelper.js +4 -0
- package/src/agGrid/attachAddaptableColumnTypes.d.ts +11 -11
- package/src/agGrid/editors/AdaptableDateEditor/index.js +2 -0
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +2 -2
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +6 -3
- package/src/components/AdaptableIconComponent/index.js +6 -3
- package/src/components/ExpressionEditor/BaseEditorInput.js +2 -0
- package/src/components/ExpressionEditor/index.js +1 -1
- package/src/components/IconSelector/IconSelector.d.ts +2 -0
- package/src/components/IconSelector/IconSelector.js +21 -5
- package/src/components/Input/NumberInput.d.ts +10 -0
- package/src/components/Input/NumberInput.js +46 -0
- package/src/metamodel/adaptable.metamodel.d.ts +230 -145
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +13 -8
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableOptions/GeneralOptions.d.ts +0 -159
- package/src/Api/Events/SearchChanged.d.ts +0 -12
- package/src/Api/Implementation/ActionApiImpl.d.ts +0 -14
- /package/src/AdaptableOptions/{ActionOptions.js → ActionColumnOptions.js} +0 -0
- /package/src/AdaptableOptions/{GeneralOptions.js → ActionRowOptions.js} +0 -0
- /package/src/{Api/ActionApi.js → AdaptableOptions/CalendarOptions.js} +0 -0
- /package/src/{Api/Events/SearchChanged.js → AdaptableOptions/CellSummaryOptions.js} +0 -0
- /package/src/{Api/QueryLanguageApi.js → AdaptableOptions/CustomSortOptions.js} +0 -0
|
@@ -38,6 +38,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
38
38
|
desc: string;
|
|
39
39
|
}[];
|
|
40
40
|
};
|
|
41
|
+
ActionColumnOptions: {
|
|
42
|
+
name: string;
|
|
43
|
+
kind: string;
|
|
44
|
+
desc: string;
|
|
45
|
+
props: {
|
|
46
|
+
name: string;
|
|
47
|
+
kind: string;
|
|
48
|
+
desc: string;
|
|
49
|
+
isOpt: boolean;
|
|
50
|
+
defVal: string;
|
|
51
|
+
}[];
|
|
52
|
+
};
|
|
41
53
|
ActionColumnSettings: {
|
|
42
54
|
name: string;
|
|
43
55
|
kind: string;
|
|
@@ -61,18 +73,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
61
73
|
kind: string;
|
|
62
74
|
desc: string;
|
|
63
75
|
};
|
|
64
|
-
ActionOptions: {
|
|
65
|
-
name: string;
|
|
66
|
-
kind: string;
|
|
67
|
-
desc: string;
|
|
68
|
-
props: {
|
|
69
|
-
name: string;
|
|
70
|
-
kind: string;
|
|
71
|
-
desc: string;
|
|
72
|
-
isOpt: boolean;
|
|
73
|
-
defVal: string;
|
|
74
|
-
}[];
|
|
75
|
-
};
|
|
76
76
|
ActionRowButtonConfigurationContext: {
|
|
77
77
|
name: string;
|
|
78
78
|
kind: string;
|
|
@@ -129,6 +129,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
129
129
|
defVal: string;
|
|
130
130
|
})[];
|
|
131
131
|
};
|
|
132
|
+
ActionRowOptions: {
|
|
133
|
+
name: string;
|
|
134
|
+
kind: string;
|
|
135
|
+
desc: string;
|
|
136
|
+
props: {
|
|
137
|
+
name: string;
|
|
138
|
+
kind: string;
|
|
139
|
+
desc: string;
|
|
140
|
+
isOpt: boolean;
|
|
141
|
+
defVal: string;
|
|
142
|
+
}[];
|
|
143
|
+
};
|
|
132
144
|
ActionRowParamContext: {
|
|
133
145
|
name: string;
|
|
134
146
|
kind: string;
|
|
@@ -466,14 +478,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
466
478
|
name: string;
|
|
467
479
|
kind: string;
|
|
468
480
|
desc: string;
|
|
469
|
-
ref: string;
|
|
470
481
|
isOpt?: undefined;
|
|
471
482
|
} | {
|
|
472
483
|
name: string;
|
|
473
484
|
kind: string;
|
|
474
485
|
desc: string;
|
|
475
486
|
isOpt: boolean;
|
|
476
|
-
ref?: undefined;
|
|
477
487
|
})[];
|
|
478
488
|
};
|
|
479
489
|
AdaptableInternalIconName: {
|
|
@@ -763,24 +773,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
763
773
|
noCode: string;
|
|
764
774
|
defVal: string;
|
|
765
775
|
ref?: undefined;
|
|
766
|
-
} | {
|
|
767
|
-
name: string;
|
|
768
|
-
kind: string;
|
|
769
|
-
desc: string;
|
|
770
|
-
isOpt: boolean;
|
|
771
|
-
gridInfo?: undefined;
|
|
772
|
-
noCode?: undefined;
|
|
773
|
-
defVal?: undefined;
|
|
774
|
-
ref?: undefined;
|
|
775
|
-
} | {
|
|
776
|
-
name: string;
|
|
777
|
-
kind: string;
|
|
778
|
-
desc: string;
|
|
779
|
-
isOpt: boolean;
|
|
780
|
-
noCode: string;
|
|
781
|
-
defVal: string;
|
|
782
|
-
gridInfo?: undefined;
|
|
783
|
-
ref?: undefined;
|
|
784
776
|
} | {
|
|
785
777
|
name: string;
|
|
786
778
|
kind: string;
|
|
@@ -967,6 +959,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
967
959
|
defVal: string;
|
|
968
960
|
})[];
|
|
969
961
|
};
|
|
962
|
+
AggregationColumns: {
|
|
963
|
+
name: string;
|
|
964
|
+
kind: string;
|
|
965
|
+
desc: string;
|
|
966
|
+
};
|
|
970
967
|
AlertButton: {
|
|
971
968
|
name: string;
|
|
972
969
|
kind: string;
|
|
@@ -1020,6 +1017,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1020
1017
|
isOpt?: undefined;
|
|
1021
1018
|
})[];
|
|
1022
1019
|
};
|
|
1020
|
+
AlertDefinitionPredicate: {
|
|
1021
|
+
name: string;
|
|
1022
|
+
kind: string;
|
|
1023
|
+
desc: string;
|
|
1024
|
+
};
|
|
1023
1025
|
AlertForm: {
|
|
1024
1026
|
name: string;
|
|
1025
1027
|
kind: string;
|
|
@@ -1065,6 +1067,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1065
1067
|
gridInfo?: undefined;
|
|
1066
1068
|
defVal?: undefined;
|
|
1067
1069
|
noCode?: undefined;
|
|
1070
|
+
uiLabel?: undefined;
|
|
1068
1071
|
} | {
|
|
1069
1072
|
name: string;
|
|
1070
1073
|
kind: string;
|
|
@@ -1073,10 +1076,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1073
1076
|
gridInfo: string;
|
|
1074
1077
|
defVal: string;
|
|
1075
1078
|
noCode?: undefined;
|
|
1079
|
+
uiLabel?: undefined;
|
|
1080
|
+
} | {
|
|
1081
|
+
name: string;
|
|
1082
|
+
kind: string;
|
|
1083
|
+
desc: string;
|
|
1084
|
+
isOpt: boolean;
|
|
1085
|
+
gridInfo: string;
|
|
1086
|
+
noCode: string;
|
|
1087
|
+
defVal: string;
|
|
1088
|
+
uiLabel?: undefined;
|
|
1076
1089
|
} | {
|
|
1077
1090
|
name: string;
|
|
1078
1091
|
kind: string;
|
|
1079
1092
|
desc: string;
|
|
1093
|
+
uiLabel: string;
|
|
1080
1094
|
isOpt: boolean;
|
|
1081
1095
|
gridInfo: string;
|
|
1082
1096
|
noCode: string;
|
|
@@ -1089,6 +1103,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1089
1103
|
defVal: string;
|
|
1090
1104
|
gridInfo?: undefined;
|
|
1091
1105
|
noCode?: undefined;
|
|
1106
|
+
uiLabel?: undefined;
|
|
1092
1107
|
})[];
|
|
1093
1108
|
};
|
|
1094
1109
|
AlertProperties: {
|
|
@@ -1212,6 +1227,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1212
1227
|
desc: string;
|
|
1213
1228
|
};
|
|
1214
1229
|
BaseContext: {
|
|
1230
|
+
name: string;
|
|
1231
|
+
kind: string;
|
|
1232
|
+
desc: string;
|
|
1233
|
+
props: ({
|
|
1234
|
+
name: string;
|
|
1235
|
+
kind: string;
|
|
1236
|
+
desc: string;
|
|
1237
|
+
ref: string;
|
|
1238
|
+
} | {
|
|
1239
|
+
name: string;
|
|
1240
|
+
kind: string;
|
|
1241
|
+
desc: string;
|
|
1242
|
+
ref?: undefined;
|
|
1243
|
+
})[];
|
|
1244
|
+
};
|
|
1245
|
+
BasePermittedValues: {
|
|
1215
1246
|
name: string;
|
|
1216
1247
|
kind: string;
|
|
1217
1248
|
desc: string;
|
|
@@ -1307,6 +1338,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1307
1338
|
isOpt: boolean;
|
|
1308
1339
|
}[];
|
|
1309
1340
|
};
|
|
1341
|
+
CalendarOptions: {
|
|
1342
|
+
name: string;
|
|
1343
|
+
kind: string;
|
|
1344
|
+
desc: string;
|
|
1345
|
+
props: {
|
|
1346
|
+
name: string;
|
|
1347
|
+
kind: string;
|
|
1348
|
+
desc: string;
|
|
1349
|
+
isOpt: boolean;
|
|
1350
|
+
defVal: string;
|
|
1351
|
+
}[];
|
|
1352
|
+
};
|
|
1310
1353
|
CellColorRange: {
|
|
1311
1354
|
name: string;
|
|
1312
1355
|
kind: string;
|
|
@@ -1393,6 +1436,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1393
1436
|
desc: string;
|
|
1394
1437
|
}[];
|
|
1395
1438
|
};
|
|
1439
|
+
CellSummaryOptions: {
|
|
1440
|
+
name: string;
|
|
1441
|
+
kind: string;
|
|
1442
|
+
desc: string;
|
|
1443
|
+
props: {
|
|
1444
|
+
name: string;
|
|
1445
|
+
kind: string;
|
|
1446
|
+
desc: string;
|
|
1447
|
+
isOpt: boolean;
|
|
1448
|
+
}[];
|
|
1449
|
+
};
|
|
1396
1450
|
CellSummmary: {
|
|
1397
1451
|
name: string;
|
|
1398
1452
|
kind: string;
|
|
@@ -1589,14 +1643,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1589
1643
|
defVal: string;
|
|
1590
1644
|
gridInfo?: undefined;
|
|
1591
1645
|
noCode?: undefined;
|
|
1592
|
-
} | {
|
|
1593
|
-
name: string;
|
|
1594
|
-
kind: string;
|
|
1595
|
-
desc: string;
|
|
1596
|
-
isOpt: boolean;
|
|
1597
|
-
gridInfo?: undefined;
|
|
1598
|
-
noCode?: undefined;
|
|
1599
|
-
defVal?: undefined;
|
|
1600
1646
|
})[];
|
|
1601
1647
|
};
|
|
1602
1648
|
ColumnSort: {
|
|
@@ -1917,6 +1963,30 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1917
1963
|
ref?: undefined;
|
|
1918
1964
|
})[];
|
|
1919
1965
|
};
|
|
1966
|
+
CustomSharedEntity: {
|
|
1967
|
+
name: string;
|
|
1968
|
+
kind: string;
|
|
1969
|
+
desc: string;
|
|
1970
|
+
props: ({
|
|
1971
|
+
name: string;
|
|
1972
|
+
kind: string;
|
|
1973
|
+
desc: string;
|
|
1974
|
+
isOpt?: undefined;
|
|
1975
|
+
ref?: undefined;
|
|
1976
|
+
} | {
|
|
1977
|
+
name: string;
|
|
1978
|
+
kind: string;
|
|
1979
|
+
desc: string;
|
|
1980
|
+
isOpt: boolean;
|
|
1981
|
+
ref?: undefined;
|
|
1982
|
+
} | {
|
|
1983
|
+
name: string;
|
|
1984
|
+
kind: string;
|
|
1985
|
+
desc: string;
|
|
1986
|
+
ref: string;
|
|
1987
|
+
isOpt?: undefined;
|
|
1988
|
+
})[];
|
|
1989
|
+
};
|
|
1920
1990
|
CustomSharedEntityConfig: {
|
|
1921
1991
|
name: string;
|
|
1922
1992
|
kind: string;
|
|
@@ -1949,6 +2019,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1949
2019
|
isOpt: boolean;
|
|
1950
2020
|
})[];
|
|
1951
2021
|
};
|
|
2022
|
+
CustomSortOptions: {
|
|
2023
|
+
name: string;
|
|
2024
|
+
kind: string;
|
|
2025
|
+
desc: string;
|
|
2026
|
+
props: {
|
|
2027
|
+
name: string;
|
|
2028
|
+
kind: string;
|
|
2029
|
+
desc: string;
|
|
2030
|
+
isOpt: boolean;
|
|
2031
|
+
}[];
|
|
2032
|
+
};
|
|
1952
2033
|
CustomSortPermittedValues: {
|
|
1953
2034
|
name: string;
|
|
1954
2035
|
kind: string;
|
|
@@ -2125,6 +2206,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2125
2206
|
desc: string;
|
|
2126
2207
|
}[];
|
|
2127
2208
|
};
|
|
2209
|
+
DataChangedScope: {
|
|
2210
|
+
name: string;
|
|
2211
|
+
kind: string;
|
|
2212
|
+
desc: string;
|
|
2213
|
+
props: {
|
|
2214
|
+
name: string;
|
|
2215
|
+
kind: string;
|
|
2216
|
+
desc: string;
|
|
2217
|
+
}[];
|
|
2218
|
+
};
|
|
2128
2219
|
DataChangeHistoryButton: {
|
|
2129
2220
|
name: string;
|
|
2130
2221
|
kind: string;
|
|
@@ -2134,11 +2225,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2134
2225
|
name: string;
|
|
2135
2226
|
kind: string;
|
|
2136
2227
|
desc: string;
|
|
2137
|
-
props: {
|
|
2228
|
+
props: ({
|
|
2138
2229
|
name: string;
|
|
2139
2230
|
kind: string;
|
|
2140
2231
|
desc: string;
|
|
2141
|
-
|
|
2232
|
+
ref?: undefined;
|
|
2233
|
+
} | {
|
|
2234
|
+
name: string;
|
|
2235
|
+
kind: string;
|
|
2236
|
+
desc: string;
|
|
2237
|
+
ref: string;
|
|
2238
|
+
})[];
|
|
2142
2239
|
};
|
|
2143
2240
|
DataChangeHistoryOptions: {
|
|
2144
2241
|
name: string;
|
|
@@ -2202,7 +2299,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2202
2299
|
ref: string;
|
|
2203
2300
|
}[];
|
|
2204
2301
|
};
|
|
2205
|
-
|
|
2302
|
+
DataSetOptions: {
|
|
2206
2303
|
name: string;
|
|
2207
2304
|
kind: string;
|
|
2208
2305
|
desc: string;
|
|
@@ -2213,7 +2310,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2213
2310
|
isOpt: boolean;
|
|
2214
2311
|
}[];
|
|
2215
2312
|
};
|
|
2216
|
-
|
|
2313
|
+
DataUpdateConfig: {
|
|
2217
2314
|
name: string;
|
|
2218
2315
|
kind: string;
|
|
2219
2316
|
desc: string;
|
|
@@ -2224,7 +2321,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2224
2321
|
isOpt: boolean;
|
|
2225
2322
|
}[];
|
|
2226
2323
|
};
|
|
2227
|
-
|
|
2324
|
+
DateFormatterOptions: {
|
|
2228
2325
|
name: string;
|
|
2229
2326
|
kind: string;
|
|
2230
2327
|
desc: string;
|
|
@@ -2233,10 +2330,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2233
2330
|
kind: string;
|
|
2234
2331
|
desc: string;
|
|
2235
2332
|
isOpt: boolean;
|
|
2236
|
-
defVal: string;
|
|
2237
2333
|
}[];
|
|
2238
2334
|
};
|
|
2239
|
-
|
|
2335
|
+
DateInputOptions: {
|
|
2240
2336
|
name: string;
|
|
2241
2337
|
kind: string;
|
|
2242
2338
|
desc: string;
|
|
@@ -2244,12 +2340,30 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2244
2340
|
name: string;
|
|
2245
2341
|
kind: string;
|
|
2246
2342
|
desc: string;
|
|
2343
|
+
isOpt: boolean;
|
|
2344
|
+
defVal: string;
|
|
2247
2345
|
}[];
|
|
2248
2346
|
};
|
|
2347
|
+
DefaultAccessLevelContext: {
|
|
2348
|
+
name: string;
|
|
2349
|
+
kind: string;
|
|
2350
|
+
desc: string;
|
|
2351
|
+
};
|
|
2249
2352
|
DetailInitContext: {
|
|
2250
2353
|
name: string;
|
|
2251
2354
|
kind: string;
|
|
2252
2355
|
desc: string;
|
|
2356
|
+
props: ({
|
|
2357
|
+
name: string;
|
|
2358
|
+
kind: string;
|
|
2359
|
+
desc: string;
|
|
2360
|
+
ref?: undefined;
|
|
2361
|
+
} | {
|
|
2362
|
+
name: string;
|
|
2363
|
+
kind: string;
|
|
2364
|
+
desc: string;
|
|
2365
|
+
ref: string;
|
|
2366
|
+
})[];
|
|
2253
2367
|
};
|
|
2254
2368
|
EditActionRowFormContext: {
|
|
2255
2369
|
name: string;
|
|
@@ -2318,17 +2432,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2318
2432
|
name: string;
|
|
2319
2433
|
kind: string;
|
|
2320
2434
|
desc: string;
|
|
2321
|
-
props:
|
|
2322
|
-
name: string;
|
|
2323
|
-
kind: string;
|
|
2324
|
-
desc: string;
|
|
2325
|
-
ref?: undefined;
|
|
2326
|
-
} | {
|
|
2435
|
+
props: {
|
|
2327
2436
|
name: string;
|
|
2328
2437
|
kind: string;
|
|
2329
2438
|
desc: string;
|
|
2330
2439
|
ref: string;
|
|
2331
|
-
}
|
|
2440
|
+
}[];
|
|
2332
2441
|
};
|
|
2333
2442
|
EntitlementOptions: {
|
|
2334
2443
|
name: string;
|
|
@@ -2516,6 +2625,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2516
2625
|
isOpt: boolean;
|
|
2517
2626
|
gridInfo: string;
|
|
2518
2627
|
defVal: string;
|
|
2628
|
+
noCode?: undefined;
|
|
2519
2629
|
} | {
|
|
2520
2630
|
name: string;
|
|
2521
2631
|
kind: string;
|
|
@@ -2523,8 +2633,27 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2523
2633
|
isOpt: boolean;
|
|
2524
2634
|
gridInfo?: undefined;
|
|
2525
2635
|
defVal?: undefined;
|
|
2636
|
+
noCode?: undefined;
|
|
2637
|
+
} | {
|
|
2638
|
+
name: string;
|
|
2639
|
+
kind: string;
|
|
2640
|
+
desc: string;
|
|
2641
|
+
isOpt: boolean;
|
|
2642
|
+
noCode: string;
|
|
2643
|
+
defVal: string;
|
|
2644
|
+
gridInfo?: undefined;
|
|
2526
2645
|
})[];
|
|
2527
2646
|
};
|
|
2647
|
+
ExternalReport: {
|
|
2648
|
+
name: string;
|
|
2649
|
+
kind: string;
|
|
2650
|
+
desc: string;
|
|
2651
|
+
props: {
|
|
2652
|
+
name: string;
|
|
2653
|
+
kind: string;
|
|
2654
|
+
desc: string;
|
|
2655
|
+
}[];
|
|
2656
|
+
};
|
|
2528
2657
|
FDC3Column: {
|
|
2529
2658
|
name: string;
|
|
2530
2659
|
kind: string;
|
|
@@ -2938,72 +3067,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2938
3067
|
desc: string;
|
|
2939
3068
|
}[];
|
|
2940
3069
|
};
|
|
2941
|
-
GeneralOptions: {
|
|
2942
|
-
name: string;
|
|
2943
|
-
kind: string;
|
|
2944
|
-
desc: string;
|
|
2945
|
-
props: ({
|
|
2946
|
-
name: string;
|
|
2947
|
-
kind: string;
|
|
2948
|
-
desc: string;
|
|
2949
|
-
isOpt: boolean;
|
|
2950
|
-
defVal: string;
|
|
2951
|
-
noCode?: undefined;
|
|
2952
|
-
gridInfo?: undefined;
|
|
2953
|
-
ref?: undefined;
|
|
2954
|
-
uiLabel?: undefined;
|
|
2955
|
-
} | {
|
|
2956
|
-
name: string;
|
|
2957
|
-
kind: string;
|
|
2958
|
-
desc: string;
|
|
2959
|
-
isOpt: boolean;
|
|
2960
|
-
defVal?: undefined;
|
|
2961
|
-
noCode?: undefined;
|
|
2962
|
-
gridInfo?: undefined;
|
|
2963
|
-
ref?: undefined;
|
|
2964
|
-
uiLabel?: undefined;
|
|
2965
|
-
} | {
|
|
2966
|
-
name: string;
|
|
2967
|
-
kind: string;
|
|
2968
|
-
desc: string;
|
|
2969
|
-
isOpt: boolean;
|
|
2970
|
-
noCode: string;
|
|
2971
|
-
defVal: string;
|
|
2972
|
-
gridInfo?: undefined;
|
|
2973
|
-
ref?: undefined;
|
|
2974
|
-
uiLabel?: undefined;
|
|
2975
|
-
} | {
|
|
2976
|
-
name: string;
|
|
2977
|
-
kind: string;
|
|
2978
|
-
desc: string;
|
|
2979
|
-
isOpt: boolean;
|
|
2980
|
-
gridInfo: string;
|
|
2981
|
-
defVal: string;
|
|
2982
|
-
noCode?: undefined;
|
|
2983
|
-
ref?: undefined;
|
|
2984
|
-
uiLabel?: undefined;
|
|
2985
|
-
} | {
|
|
2986
|
-
name: string;
|
|
2987
|
-
kind: string;
|
|
2988
|
-
desc: string;
|
|
2989
|
-
isOpt: boolean;
|
|
2990
|
-
defVal: string;
|
|
2991
|
-
ref: string;
|
|
2992
|
-
noCode?: undefined;
|
|
2993
|
-
gridInfo?: undefined;
|
|
2994
|
-
uiLabel?: undefined;
|
|
2995
|
-
} | {
|
|
2996
|
-
name: string;
|
|
2997
|
-
kind: string;
|
|
2998
|
-
desc: string;
|
|
2999
|
-
uiLabel: string;
|
|
3000
|
-
isOpt: boolean;
|
|
3001
|
-
gridInfo: string;
|
|
3002
|
-
noCode: string;
|
|
3003
|
-
defVal: string;
|
|
3004
|
-
ref?: undefined;
|
|
3005
|
-
})[];
|
|
3006
|
-
};
|
|
3007
3070
|
GlobalExpressionFunctionsContext: {
|
|
3008
3071
|
name: string;
|
|
3009
3072
|
kind: string;
|
|
@@ -3152,26 +3215,35 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3152
3215
|
ref: string;
|
|
3153
3216
|
})[];
|
|
3154
3217
|
};
|
|
3155
|
-
|
|
3218
|
+
GroupingOptions: {
|
|
3156
3219
|
name: string;
|
|
3157
3220
|
kind: string;
|
|
3158
3221
|
desc: string;
|
|
3159
|
-
props: {
|
|
3222
|
+
props: ({
|
|
3160
3223
|
name: string;
|
|
3161
3224
|
kind: string;
|
|
3162
3225
|
desc: string;
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
desc: string;
|
|
3169
|
-
props: {
|
|
3226
|
+
isOpt: boolean;
|
|
3227
|
+
noCode: string;
|
|
3228
|
+
defVal: string;
|
|
3229
|
+
gridInfo?: undefined;
|
|
3230
|
+
} | {
|
|
3170
3231
|
name: string;
|
|
3171
3232
|
kind: string;
|
|
3172
3233
|
desc: string;
|
|
3173
3234
|
isOpt: boolean;
|
|
3174
|
-
|
|
3235
|
+
gridInfo: string;
|
|
3236
|
+
defVal: string;
|
|
3237
|
+
noCode?: undefined;
|
|
3238
|
+
} | {
|
|
3239
|
+
name: string;
|
|
3240
|
+
kind: string;
|
|
3241
|
+
desc: string;
|
|
3242
|
+
isOpt: boolean;
|
|
3243
|
+
noCode?: undefined;
|
|
3244
|
+
defVal?: undefined;
|
|
3245
|
+
gridInfo?: undefined;
|
|
3246
|
+
})[];
|
|
3175
3247
|
};
|
|
3176
3248
|
IAdaptableNoCodeWizard: {
|
|
3177
3249
|
name: string;
|
|
@@ -3657,6 +3729,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3657
3729
|
kind: string;
|
|
3658
3730
|
desc: string;
|
|
3659
3731
|
};
|
|
3732
|
+
OrganizationIntents: {
|
|
3733
|
+
name: string;
|
|
3734
|
+
kind: string;
|
|
3735
|
+
desc: string;
|
|
3736
|
+
};
|
|
3660
3737
|
PercentBarStyle: {
|
|
3661
3738
|
name: string;
|
|
3662
3739
|
kind: string;
|
|
@@ -4188,16 +4265,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4188
4265
|
desc: string;
|
|
4189
4266
|
}[];
|
|
4190
4267
|
};
|
|
4191
|
-
ServerReport: {
|
|
4192
|
-
name: string;
|
|
4193
|
-
kind: string;
|
|
4194
|
-
desc: string;
|
|
4195
|
-
props: {
|
|
4196
|
-
name: string;
|
|
4197
|
-
kind: string;
|
|
4198
|
-
desc: string;
|
|
4199
|
-
}[];
|
|
4200
|
-
};
|
|
4201
4268
|
ServerValidationContext: {
|
|
4202
4269
|
name: string;
|
|
4203
4270
|
kind: string;
|
|
@@ -4250,11 +4317,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4250
4317
|
name: string;
|
|
4251
4318
|
kind: string;
|
|
4252
4319
|
desc: string;
|
|
4253
|
-
props: {
|
|
4254
|
-
name: string;
|
|
4255
|
-
kind: string;
|
|
4256
|
-
desc: string;
|
|
4257
|
-
}[];
|
|
4258
4320
|
};
|
|
4259
4321
|
SharedEntity: {
|
|
4260
4322
|
name: string;
|
|
@@ -4697,12 +4759,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4697
4759
|
kind: string;
|
|
4698
4760
|
desc: string;
|
|
4699
4761
|
props: ({
|
|
4762
|
+
name: string;
|
|
4763
|
+
kind: string;
|
|
4764
|
+
desc: string;
|
|
4765
|
+
isOpt: boolean;
|
|
4766
|
+
defVal: string;
|
|
4767
|
+
ref?: undefined;
|
|
4768
|
+
noCode?: undefined;
|
|
4769
|
+
gridInfo?: undefined;
|
|
4770
|
+
} | {
|
|
4700
4771
|
name: string;
|
|
4701
4772
|
kind: string;
|
|
4702
4773
|
desc: string;
|
|
4703
4774
|
isOpt: boolean;
|
|
4704
4775
|
defVal: string;
|
|
4705
4776
|
ref: string;
|
|
4777
|
+
noCode?: undefined;
|
|
4706
4778
|
gridInfo?: undefined;
|
|
4707
4779
|
} | {
|
|
4708
4780
|
name: string;
|
|
@@ -4711,6 +4783,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4711
4783
|
isOpt: boolean;
|
|
4712
4784
|
defVal?: undefined;
|
|
4713
4785
|
ref?: undefined;
|
|
4786
|
+
noCode?: undefined;
|
|
4714
4787
|
gridInfo?: undefined;
|
|
4715
4788
|
} | {
|
|
4716
4789
|
name: string;
|
|
@@ -4719,6 +4792,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4719
4792
|
isOpt: boolean;
|
|
4720
4793
|
ref: string;
|
|
4721
4794
|
defVal?: undefined;
|
|
4795
|
+
noCode?: undefined;
|
|
4796
|
+
gridInfo?: undefined;
|
|
4797
|
+
} | {
|
|
4798
|
+
name: string;
|
|
4799
|
+
kind: string;
|
|
4800
|
+
desc: string;
|
|
4801
|
+
isOpt: boolean;
|
|
4802
|
+
noCode: string;
|
|
4803
|
+
defVal: string;
|
|
4804
|
+
ref?: undefined;
|
|
4722
4805
|
gridInfo?: undefined;
|
|
4723
4806
|
} | {
|
|
4724
4807
|
name: string;
|
|
@@ -4728,6 +4811,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4728
4811
|
gridInfo: string;
|
|
4729
4812
|
defVal: string;
|
|
4730
4813
|
ref?: undefined;
|
|
4814
|
+
noCode?: undefined;
|
|
4731
4815
|
} | {
|
|
4732
4816
|
name: string;
|
|
4733
4817
|
kind: string;
|
|
@@ -4736,6 +4820,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4736
4820
|
gridInfo: string;
|
|
4737
4821
|
defVal?: undefined;
|
|
4738
4822
|
ref?: undefined;
|
|
4823
|
+
noCode?: undefined;
|
|
4739
4824
|
})[];
|
|
4740
4825
|
};
|
|
4741
4826
|
UserMenuItem: {
|