@adaptabletools/adaptable 10.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/LICENSE.md +264 -0
- package/README.md +36 -0
- package/agGrid.d.ts +58 -0
- package/agGrid.js +14 -0
- package/base.css +2512 -0
- package/fonts/glyphicons-halflings-regular.eot +0 -0
- package/fonts/glyphicons-halflings-regular.svg +288 -0
- package/fonts/glyphicons-halflings-regular.ttf +0 -0
- package/fonts/glyphicons-halflings-regular.woff +0 -0
- package/fonts/glyphicons-halflings-regular.woff2 +0 -0
- package/index.css +3375 -0
- package/package.json +67 -0
- package/publishTimestamp.d.ts +2 -0
- package/publishTimestamp.js +3 -0
- package/src/AdaptableComponents.d.ts +1 -0
- package/src/AdaptableComponents.js +5 -0
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +91 -0
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.js +2 -0
- package/src/AdaptableInterfaces/IAdaptable.d.ts +214 -0
- package/src/AdaptableInterfaces/IAdaptable.js +2 -0
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +33 -0
- package/src/AdaptableOptions/AdaptableFrameworkComponent.js +2 -0
- package/src/AdaptableOptions/AdaptableOptions.d.ts +169 -0
- package/src/AdaptableOptions/AdaptableOptions.js +2 -0
- package/src/AdaptableOptions/AdaptablePlugin.d.ts +40 -0
- package/src/AdaptableOptions/AdaptablePlugin.js +36 -0
- package/src/AdaptableOptions/AlertOptions.d.ts +143 -0
- package/src/AdaptableOptions/AlertOptions.js +2 -0
- package/src/AdaptableOptions/ChartPluginOptions.d.ts +20 -0
- package/src/AdaptableOptions/ChartPluginOptions.js +2 -0
- package/src/AdaptableOptions/ContainerOptions.d.ts +55 -0
- package/src/AdaptableOptions/ContainerOptions.js +2 -0
- package/src/AdaptableOptions/DashboardOptions.d.ts +98 -0
- package/src/AdaptableOptions/DashboardOptions.js +2 -0
- package/src/AdaptableOptions/DataChangeTrackingOptions.d.ts +34 -0
- package/src/AdaptableOptions/DataChangeTrackingOptions.js +21 -0
- package/src/AdaptableOptions/DateInputOptions.d.ts +78 -0
- package/src/AdaptableOptions/DateInputOptions.js +2 -0
- package/src/AdaptableOptions/EditOptions.d.ts +38 -0
- package/src/AdaptableOptions/EditOptions.js +2 -0
- package/src/AdaptableOptions/EntitlementOptions.d.ts +20 -0
- package/src/AdaptableOptions/EntitlementOptions.js +2 -0
- package/src/AdaptableOptions/ExportOptions.d.ts +108 -0
- package/src/AdaptableOptions/ExportOptions.js +2 -0
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +66 -0
- package/src/AdaptableOptions/FinancePluginOptions.js +2 -0
- package/src/AdaptableOptions/GeneralOptions.d.ts +83 -0
- package/src/AdaptableOptions/GeneralOptions.js +2 -0
- package/src/AdaptableOptions/Glue42PluginOptions.d.ts +25 -0
- package/src/AdaptableOptions/Glue42PluginOptions.js +2 -0
- package/src/AdaptableOptions/IPushPullPluginOptions.d.ts +37 -0
- package/src/AdaptableOptions/IPushPullPluginOptions.js +2 -0
- package/src/AdaptableOptions/LayoutOptions.d.ts +41 -0
- package/src/AdaptableOptions/LayoutOptions.js +2 -0
- package/src/AdaptableOptions/MasterDetailAgGridPluginOptions.d.ts +16 -0
- package/src/AdaptableOptions/MasterDetailAgGridPluginOptions.js +2 -0
- package/src/AdaptableOptions/MenuOptions.d.ts +49 -0
- package/src/AdaptableOptions/MenuOptions.js +2 -0
- package/src/AdaptableOptions/OpenFinPluginOptions.d.ts +52 -0
- package/src/AdaptableOptions/OpenFinPluginOptions.js +2 -0
- package/src/AdaptableOptions/SearchOptions.d.ts +196 -0
- package/src/AdaptableOptions/SearchOptions.js +2 -0
- package/src/AdaptableOptions/StateOptions.d.ts +79 -0
- package/src/AdaptableOptions/StateOptions.js +2 -0
- package/src/AdaptableOptions/SystemStatusOptions.d.ts +19 -0
- package/src/AdaptableOptions/SystemStatusOptions.js +2 -0
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +39 -0
- package/src/AdaptableOptions/TeamSharingOptions.js +2 -0
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +132 -0
- package/src/AdaptableOptions/ToolPanelOptions.js +2 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +115 -0
- package/src/AdaptableOptions/UserInterfaceOptions.js +2 -0
- package/src/Api/AdaptableApi.d.ts +185 -0
- package/src/Api/AdaptableApi.js +2 -0
- package/src/Api/AlertApi.d.ts +246 -0
- package/src/Api/AlertApi.js +2 -0
- package/src/Api/ApplicationApi.d.ts +50 -0
- package/src/Api/ApplicationApi.js +2 -0
- package/src/Api/BulkUpdateApi.d.ts +19 -0
- package/src/Api/BulkUpdateApi.js +2 -0
- package/src/Api/CalculatedColumnApi.d.ts +66 -0
- package/src/Api/CalculatedColumnApi.js +2 -0
- package/src/Api/CellSummaryApi.d.ts +18 -0
- package/src/Api/CellSummaryApi.js +2 -0
- package/src/Api/ChartApi.d.ts +20 -0
- package/src/Api/ChartApi.js +2 -0
- package/src/Api/ColumnApi.d.ts +239 -0
- package/src/Api/ColumnApi.js +2 -0
- package/src/Api/ConditionalStyleApi.d.ts +96 -0
- package/src/Api/ConditionalStyleApi.js +2 -0
- package/src/Api/ConfigApi.d.ts +204 -0
- package/src/Api/ConfigApi.js +2 -0
- package/src/Api/CustomSortApi.d.ts +77 -0
- package/src/Api/CustomSortApi.js +2 -0
- package/src/Api/DashboardApi.d.ts +164 -0
- package/src/Api/DashboardApi.js +2 -0
- package/src/Api/DataSourceApi.d.ts +58 -0
- package/src/Api/DataSourceApi.js +2 -0
- package/src/Api/EventApi.d.ts +210 -0
- package/src/Api/EventApi.js +2 -0
- package/src/Api/Events/AdaptableReady.d.ts +14 -0
- package/src/Api/Events/AdaptableReady.js +2 -0
- package/src/Api/Events/AdaptableStateChanged.d.ts +39 -0
- package/src/Api/Events/AdaptableStateChanged.js +2 -0
- package/src/Api/Events/AlertFired.d.ts +10 -0
- package/src/Api/Events/AlertFired.js +2 -0
- package/src/Api/Events/CellChanged.d.ts +10 -0
- package/src/Api/Events/CellChanged.js +2 -0
- package/src/Api/Events/ChexboxColumnClicked.d.ts +22 -0
- package/src/Api/Events/ChexboxColumnClicked.js +2 -0
- package/src/Api/Events/CustomToolbarConfigured.d.ts +10 -0
- package/src/Api/Events/CustomToolbarConfigured.js +2 -0
- package/src/Api/Events/DashboardChanged.d.ts +18 -0
- package/src/Api/Events/DashboardChanged.js +2 -0
- package/src/Api/Events/FlashingAlertFired.d.ts +10 -0
- package/src/Api/Events/FlashingAlertFired.js +2 -0
- package/src/Api/Events/GridDataChanged.d.ts +14 -0
- package/src/Api/Events/GridDataChanged.js +2 -0
- package/src/Api/Events/LayoutChanged.d.ts +18 -0
- package/src/Api/Events/LayoutChanged.js +2 -0
- package/src/Api/Events/LiveDataChanged.d.ts +39 -0
- package/src/Api/Events/LiveDataChanged.js +2 -0
- package/src/Api/Events/SearchChanged.d.ts +55 -0
- package/src/Api/Events/SearchChanged.js +2 -0
- package/src/Api/Events/SelectionChanged.d.ts +15 -0
- package/src/Api/Events/SelectionChanged.js +2 -0
- package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +10 -0
- package/src/Api/Events/SystemStatusMessageDisplayed.js +2 -0
- package/src/Api/Events/TeamSharedEntityChanged.d.ts +10 -0
- package/src/Api/Events/TeamSharedEntityChanged.js +2 -0
- package/src/Api/Events/ThemeChanged.d.ts +10 -0
- package/src/Api/Events/ThemeChanged.js +2 -0
- package/src/Api/ExportApi.d.ts +125 -0
- package/src/Api/ExportApi.js +2 -0
- package/src/Api/FilterApi.d.ts +119 -0
- package/src/Api/FilterApi.js +2 -0
- package/src/Api/FinanceApi.d.ts +10 -0
- package/src/Api/FinanceApi.js +2 -0
- package/src/Api/FormatColumnApi.d.ts +173 -0
- package/src/Api/FormatColumnApi.js +2 -0
- package/src/Api/FreeTextColumnApi.d.ts +88 -0
- package/src/Api/FreeTextColumnApi.js +2 -0
- package/src/Api/Glue42Api.d.ts +113 -0
- package/src/Api/Glue42Api.js +2 -0
- package/src/Api/GridApi.d.ts +376 -0
- package/src/Api/GridApi.js +2 -0
- package/src/Api/IPushPullApi.d.ts +176 -0
- package/src/Api/IPushPullApi.js +2 -0
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +78 -0
- package/src/Api/Implementation/AdaptableApiImpl.js +81 -0
- package/src/Api/Implementation/AlertApiImpl.d.ts +59 -0
- package/src/Api/Implementation/AlertApiImpl.js +327 -0
- package/src/Api/Implementation/ApiBase.d.ts +62 -0
- package/src/Api/Implementation/ApiBase.js +120 -0
- package/src/Api/Implementation/ApplicationApiImpl.d.ts +13 -0
- package/src/Api/Implementation/ApplicationApiImpl.js +39 -0
- package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +8 -0
- package/src/Api/Implementation/BulkUpdateApiImpl.js +19 -0
- package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +16 -0
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +64 -0
- package/src/Api/Implementation/CellSummaryApiImpl.d.ts +8 -0
- package/src/Api/Implementation/CellSummaryApiImpl.js +18 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +60 -0
- package/src/Api/Implementation/ColumnApiImpl.js +366 -0
- package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +27 -0
- package/src/Api/Implementation/ConditionalStyleApiImpl.js +90 -0
- package/src/Api/Implementation/ConfigApiImpl.d.ts +73 -0
- package/src/Api/Implementation/ConfigApiImpl.js +407 -0
- package/src/Api/Implementation/CustomSortApiImpl.d.ts +18 -0
- package/src/Api/Implementation/CustomSortApiImpl.js +62 -0
- package/src/Api/Implementation/DashboardApiImpl.d.ts +46 -0
- package/src/Api/Implementation/DashboardApiImpl.js +199 -0
- package/src/Api/Implementation/DataSourceApiImpl.d.ts +15 -0
- package/src/Api/Implementation/DataSourceApiImpl.js +51 -0
- package/src/Api/Implementation/EventApiImpl.d.ts +12 -0
- package/src/Api/Implementation/EventApiImpl.js +26 -0
- package/src/Api/Implementation/ExportApiImpl.d.ts +31 -0
- package/src/Api/Implementation/ExportApiImpl.js +168 -0
- package/src/Api/Implementation/FilterApiImpl.d.ts +31 -0
- package/src/Api/Implementation/FilterApiImpl.js +195 -0
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +45 -0
- package/src/Api/Implementation/FormatColumnApiImpl.js +267 -0
- package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +26 -0
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +128 -0
- package/src/Api/Implementation/GridApiImpl.d.ts +88 -0
- package/src/Api/Implementation/GridApiImpl.js +322 -0
- package/src/Api/Implementation/InternalApiImpl.d.ts +115 -0
- package/src/Api/Implementation/InternalApiImpl.js +390 -0
- package/src/Api/Implementation/LayoutApiImpl.d.ts +30 -0
- package/src/Api/Implementation/LayoutApiImpl.js +215 -0
- package/src/Api/Implementation/PluginsApiImpl.d.ts +20 -0
- package/src/Api/Implementation/PluginsApiImpl.js +60 -0
- package/src/Api/Implementation/PlusMinusApiImpl.d.ts +18 -0
- package/src/Api/Implementation/PlusMinusApiImpl.js +57 -0
- package/src/Api/Implementation/PredicateApiImpl.d.ts +15 -0
- package/src/Api/Implementation/PredicateApiImpl.js +82 -0
- package/src/Api/Implementation/QueryApiImpl.d.ts +25 -0
- package/src/Api/Implementation/QueryApiImpl.js +134 -0
- package/src/Api/Implementation/QuickSearchApiImpl.d.ts +13 -0
- package/src/Api/Implementation/QuickSearchApiImpl.js +31 -0
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +54 -0
- package/src/Api/Implementation/ScheduleApiImpl.js +214 -0
- package/src/Api/Implementation/ScopeApiImpl.d.ts +29 -0
- package/src/Api/Implementation/ScopeApiImpl.js +260 -0
- package/src/Api/Implementation/ShortcutApiImpl.d.ts +16 -0
- package/src/Api/Implementation/ShortcutApiImpl.js +50 -0
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +11 -0
- package/src/Api/Implementation/SmartEditApiImpl.js +29 -0
- package/src/Api/Implementation/SparklineColumnApiImpl.d.ts +9 -0
- package/src/Api/Implementation/SparklineColumnApiImpl.js +24 -0
- package/src/Api/Implementation/SystemStatusApiImpl.d.ts +18 -0
- package/src/Api/Implementation/SystemStatusApiImpl.js +96 -0
- package/src/Api/Implementation/TeamSharingApiImpl.d.ts +12 -0
- package/src/Api/Implementation/TeamSharingApiImpl.js +44 -0
- package/src/Api/Implementation/ThemeApiImpl.d.ts +17 -0
- package/src/Api/Implementation/ThemeApiImpl.js +65 -0
- package/src/Api/Implementation/ToolPanelApiImpl.d.ts +20 -0
- package/src/Api/Implementation/ToolPanelApiImpl.js +61 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +24 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.js +192 -0
- package/src/Api/InternalApi.d.ts +117 -0
- package/src/Api/InternalApi.js +2 -0
- package/src/Api/LayoutApi.d.ts +124 -0
- package/src/Api/LayoutApi.js +2 -0
- package/src/Api/OpenFinApi.d.ts +61 -0
- package/src/Api/OpenFinApi.js +2 -0
- package/src/Api/PluginsApi.d.ts +26 -0
- package/src/Api/PluginsApi.js +2 -0
- package/src/Api/PlusMinusApi.d.ts +72 -0
- package/src/Api/PlusMinusApi.js +2 -0
- package/src/Api/PredicateApi.d.ts +55 -0
- package/src/Api/PredicateApi.js +2 -0
- package/src/Api/QueryApi.d.ts +91 -0
- package/src/Api/QueryApi.js +2 -0
- package/src/Api/QuickSearchApi.d.ts +37 -0
- package/src/Api/QuickSearchApi.js +2 -0
- package/src/Api/ScheduleApi.d.ts +253 -0
- package/src/Api/ScheduleApi.js +2 -0
- package/src/Api/ScopeApi.d.ts +129 -0
- package/src/Api/ScopeApi.js +2 -0
- package/src/Api/ShortcutApi.d.ts +62 -0
- package/src/Api/ShortcutApi.js +2 -0
- package/src/Api/SmartEditApi.d.ts +33 -0
- package/src/Api/SmartEditApi.js +2 -0
- package/src/Api/SparklineColumnApi.d.ts +23 -0
- package/src/Api/SparklineColumnApi.js +2 -0
- package/src/Api/SystemStatusApi.d.ts +43 -0
- package/src/Api/SystemStatusApi.js +2 -0
- package/src/Api/TeamSharingApi.d.ts +31 -0
- package/src/Api/TeamSharingApi.js +2 -0
- package/src/Api/ThemeApi.d.ts +59 -0
- package/src/Api/ThemeApi.js +2 -0
- package/src/Api/ToolPanelApi.d.ts +51 -0
- package/src/Api/ToolPanelApi.js +2 -0
- package/src/Api/UserInterfaceApi.d.ts +63 -0
- package/src/Api/UserInterfaceApi.js +2 -0
- package/src/PredefinedConfig/AdaptableState.d.ts +68 -0
- package/src/PredefinedConfig/AdaptableState.js +2 -0
- package/src/PredefinedConfig/AlertState.d.ts +155 -0
- package/src/PredefinedConfig/AlertState.js +2 -0
- package/src/PredefinedConfig/ApplicationState.d.ts +23 -0
- package/src/PredefinedConfig/ApplicationState.js +2 -0
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +82 -0
- package/src/PredefinedConfig/CalculatedColumnState.js +2 -0
- package/src/PredefinedConfig/ChartState.d.ts +144 -0
- package/src/PredefinedConfig/ChartState.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableAlert.d.ts +23 -0
- package/src/PredefinedConfig/Common/AdaptableAlert.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableButton.d.ts +40 -0
- package/src/PredefinedConfig/Common/AdaptableButton.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +124 -0
- package/src/PredefinedConfig/Common/AdaptableColumn.js +26 -0
- package/src/PredefinedConfig/Common/AdaptableComparerFunction.d.ts +22 -0
- package/src/PredefinedConfig/Common/AdaptableComparerFunction.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableFlashingAlert.d.ts +32 -0
- package/src/PredefinedConfig/Common/AdaptableFlashingAlert.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableForm.d.ts +52 -0
- package/src/PredefinedConfig/Common/AdaptableForm.js +11 -0
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +73 -0
- package/src/PredefinedConfig/Common/AdaptableFormat.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +27 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableMessageType.d.ts +20 -0
- package/src/PredefinedConfig/Common/AdaptableMessageType.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableObject.d.ts +18 -0
- package/src/PredefinedConfig/Common/AdaptableObject.js +2 -0
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +113 -0
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +500 -0
- package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +19 -0
- package/src/PredefinedConfig/Common/AdaptableQuery.js +10 -0
- package/src/PredefinedConfig/Common/AdaptableScope.d.ts +14 -0
- package/src/PredefinedConfig/Common/AdaptableScope.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +33 -0
- package/src/PredefinedConfig/Common/AdaptableStyle.js +2 -0
- package/src/PredefinedConfig/Common/AlternativeModuleName.d.ts +14 -0
- package/src/PredefinedConfig/Common/AlternativeModuleName.js +2 -0
- package/src/PredefinedConfig/Common/ButtonStyle.d.ts +19 -0
- package/src/PredefinedConfig/Common/ButtonStyle.js +2 -0
- package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +22 -0
- package/src/PredefinedConfig/Common/CellHighlightInfo.js +2 -0
- package/src/PredefinedConfig/Common/CellSummary.d.ts +55 -0
- package/src/PredefinedConfig/Common/CellSummary.js +2 -0
- package/src/PredefinedConfig/Common/ChartEnums.d.ts +123 -0
- package/src/PredefinedConfig/Common/ChartEnums.js +152 -0
- package/src/PredefinedConfig/Common/ColumnSort.d.ts +13 -0
- package/src/PredefinedConfig/Common/ColumnSort.js +2 -0
- package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +42 -0
- package/src/PredefinedConfig/Common/DataChangedInfo.js +2 -0
- package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +13 -0
- package/src/PredefinedConfig/Common/DataUpdateConfig.js +2 -0
- package/src/PredefinedConfig/Common/Entitlement.d.ts +15 -0
- package/src/PredefinedConfig/Common/Entitlement.js +2 -0
- package/src/PredefinedConfig/Common/Enums.d.ts +97 -0
- package/src/PredefinedConfig/Common/Enums.js +118 -0
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +65 -0
- package/src/PredefinedConfig/Common/FDC3Context.js +2 -0
- package/src/PredefinedConfig/Common/FilterActionOnDataChange.d.ts +14 -0
- package/src/PredefinedConfig/Common/FilterActionOnDataChange.js +6 -0
- package/src/PredefinedConfig/Common/Menu.d.ts +123 -0
- package/src/PredefinedConfig/Common/Menu.js +2 -0
- package/src/PredefinedConfig/Common/Schedule.d.ts +48 -0
- package/src/PredefinedConfig/Common/Schedule.js +16 -0
- package/src/PredefinedConfig/Common/SuspendableObject.d.ts +10 -0
- package/src/PredefinedConfig/Common/SuspendableObject.js +2 -0
- package/src/PredefinedConfig/Common/SystemStatusMessageInfo.d.ts +23 -0
- package/src/PredefinedConfig/Common/SystemStatusMessageInfo.js +2 -0
- package/src/PredefinedConfig/Common/Types.d.ts +27 -0
- package/src/PredefinedConfig/Common/Types.js +23 -0
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +50 -0
- package/src/PredefinedConfig/ConditionalStyleState.js +2 -0
- package/src/PredefinedConfig/ConfigState.d.ts +9 -0
- package/src/PredefinedConfig/ConfigState.js +2 -0
- package/src/PredefinedConfig/CustomSortState.d.ts +26 -0
- package/src/PredefinedConfig/CustomSortState.js +2 -0
- package/src/PredefinedConfig/DashboardState.d.ts +76 -0
- package/src/PredefinedConfig/DashboardState.js +2 -0
- package/src/PredefinedConfig/DataSourceState.d.ts +34 -0
- package/src/PredefinedConfig/DataSourceState.js +2 -0
- package/src/PredefinedConfig/DeprecatedState.d.ts +82 -0
- package/src/PredefinedConfig/DeprecatedState.js +5 -0
- package/src/PredefinedConfig/ExportState.d.ts +84 -0
- package/src/PredefinedConfig/ExportState.js +2 -0
- package/src/PredefinedConfig/FilterState.d.ts +51 -0
- package/src/PredefinedConfig/FilterState.js +2 -0
- package/src/PredefinedConfig/FormatColumnState.d.ts +134 -0
- package/src/PredefinedConfig/FormatColumnState.js +2 -0
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +55 -0
- package/src/PredefinedConfig/FreeTextColumnState.js +2 -0
- package/src/PredefinedConfig/Glue42State.d.ts +46 -0
- package/src/PredefinedConfig/Glue42State.js +2 -0
- package/src/PredefinedConfig/GridState.d.ts +23 -0
- package/src/PredefinedConfig/GridState.js +2 -0
- package/src/PredefinedConfig/IPushPullState.d.ts +54 -0
- package/src/PredefinedConfig/IPushPullState.js +2 -0
- package/src/PredefinedConfig/InternalState.d.ts +10 -0
- package/src/PredefinedConfig/InternalState.js +2 -0
- package/src/PredefinedConfig/LayoutState.d.ts +81 -0
- package/src/PredefinedConfig/LayoutState.js +2 -0
- package/src/PredefinedConfig/OpenFinState.d.ts +32 -0
- package/src/PredefinedConfig/OpenFinState.js +2 -0
- package/src/PredefinedConfig/PlusMinusState.d.ts +30 -0
- package/src/PredefinedConfig/PlusMinusState.js +2 -0
- package/src/PredefinedConfig/PopupState.d.ts +12 -0
- package/src/PredefinedConfig/PopupState.js +2 -0
- package/src/PredefinedConfig/PredefinedConfig.d.ts +150 -0
- package/src/PredefinedConfig/PredefinedConfig.js +2 -0
- package/src/PredefinedConfig/QueryState.d.ts +29 -0
- package/src/PredefinedConfig/QueryState.js +2 -0
- package/src/PredefinedConfig/QuickSearchState.d.ts +15 -0
- package/src/PredefinedConfig/QuickSearchState.js +2 -0
- package/src/PredefinedConfig/ScheduleState.d.ts +57 -0
- package/src/PredefinedConfig/ScheduleState.js +2 -0
- package/src/PredefinedConfig/Selection/GridCell.d.ts +30 -0
- package/src/PredefinedConfig/Selection/GridCell.js +2 -0
- package/src/PredefinedConfig/Selection/GridCellRange.d.ts +5 -0
- package/src/PredefinedConfig/Selection/GridCellRange.js +2 -0
- package/src/PredefinedConfig/Selection/GridRow.d.ts +43 -0
- package/src/PredefinedConfig/Selection/GridRow.js +2 -0
- package/src/PredefinedConfig/Selection/SelectedCellInfo.d.ts +15 -0
- package/src/PredefinedConfig/Selection/SelectedCellInfo.js +2 -0
- package/src/PredefinedConfig/Selection/SelectedRowInfo.d.ts +10 -0
- package/src/PredefinedConfig/Selection/SelectedRowInfo.js +2 -0
- package/src/PredefinedConfig/ShortcutState.d.ts +33 -0
- package/src/PredefinedConfig/ShortcutState.js +2 -0
- package/src/PredefinedConfig/SparklineColumnState.d.ts +40 -0
- package/src/PredefinedConfig/SparklineColumnState.js +2 -0
- package/src/PredefinedConfig/SystemState.d.ts +59 -0
- package/src/PredefinedConfig/SystemState.js +2 -0
- package/src/PredefinedConfig/TeamSharingState.d.ts +88 -0
- package/src/PredefinedConfig/TeamSharingState.js +2 -0
- package/src/PredefinedConfig/ThemeState.d.ts +36 -0
- package/src/PredefinedConfig/ThemeState.js +2 -0
- package/src/PredefinedConfig/ToolPanelState.d.ts +32 -0
- package/src/PredefinedConfig/ToolPanelState.js +2 -0
- package/src/PredefinedConfig/Uuid.d.ts +2 -0
- package/src/PredefinedConfig/Uuid.js +5 -0
- package/src/Redux/ActionsReducers/AlertRedux.d.ts +88 -0
- package/src/Redux/ActionsReducers/AlertRedux.js +157 -0
- package/src/Redux/ActionsReducers/ApplicationRedux.d.ts +27 -0
- package/src/Redux/ActionsReducers/ApplicationRedux.js +56 -0
- package/src/Redux/ActionsReducers/BulkUpdateRedux.d.ts +25 -0
- package/src/Redux/ActionsReducers/BulkUpdateRedux.js +26 -0
- package/src/Redux/ActionsReducers/CalculatedColumnRedux.d.ts +35 -0
- package/src/Redux/ActionsReducers/CalculatedColumnRedux.js +72 -0
- package/src/Redux/ActionsReducers/CellSummaryRedux.d.ts +5 -0
- package/src/Redux/ActionsReducers/CellSummaryRedux.js +7 -0
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +49 -0
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +88 -0
- package/src/Redux/ActionsReducers/CustomSortRedux.d.ts +49 -0
- package/src/Redux/ActionsReducers/CustomSortRedux.js +86 -0
- package/src/Redux/ActionsReducers/DashboardRedux.d.ts +116 -0
- package/src/Redux/ActionsReducers/DashboardRedux.js +173 -0
- package/src/Redux/ActionsReducers/DataSourceRedux.d.ts +42 -0
- package/src/Redux/ActionsReducers/DataSourceRedux.js +76 -0
- package/src/Redux/ActionsReducers/ExportRedux.d.ts +61 -0
- package/src/Redux/ActionsReducers/ExportRedux.js +97 -0
- package/src/Redux/ActionsReducers/FilterRedux.d.ts +70 -0
- package/src/Redux/ActionsReducers/FilterRedux.js +126 -0
- package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +49 -0
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +85 -0
- package/src/Redux/ActionsReducers/FreeTextColumnRedux.d.ts +49 -0
- package/src/Redux/ActionsReducers/FreeTextColumnRedux.js +94 -0
- package/src/Redux/ActionsReducers/GridRedux.d.ts +171 -0
- package/src/Redux/ActionsReducers/GridRedux.js +227 -0
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +57 -0
- package/src/Redux/ActionsReducers/LayoutRedux.js +89 -0
- package/src/Redux/ActionsReducers/PluginsRedux.d.ts +188 -0
- package/src/Redux/ActionsReducers/PluginsRedux.js +194 -0
- package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +58 -0
- package/src/Redux/ActionsReducers/PlusMinusRedux.js +97 -0
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +73 -0
- package/src/Redux/ActionsReducers/PopupRedux.js +238 -0
- package/src/Redux/ActionsReducers/QueryRedux.d.ts +44 -0
- package/src/Redux/ActionsReducers/QueryRedux.js +76 -0
- package/src/Redux/ActionsReducers/QuickSearchRedux.d.ts +28 -0
- package/src/Redux/ActionsReducers/QuickSearchRedux.js +47 -0
- package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +216 -0
- package/src/Redux/ActionsReducers/ScheduleRedux.js +345 -0
- package/src/Redux/ActionsReducers/ShortcutRedux.d.ts +49 -0
- package/src/Redux/ActionsReducers/ShortcutRedux.js +86 -0
- package/src/Redux/ActionsReducers/SmartEditRedux.d.ts +25 -0
- package/src/Redux/ActionsReducers/SmartEditRedux.js +26 -0
- package/src/Redux/ActionsReducers/SparklineColumnRedux.d.ts +35 -0
- package/src/Redux/ActionsReducers/SparklineColumnRedux.js +70 -0
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +227 -0
- package/src/Redux/ActionsReducers/SystemRedux.js +470 -0
- package/src/Redux/ActionsReducers/SystemStatusRedux.d.ts +17 -0
- package/src/Redux/ActionsReducers/SystemStatusRedux.js +18 -0
- package/src/Redux/ActionsReducers/TeamSharingRedux.d.ts +55 -0
- package/src/Redux/ActionsReducers/TeamSharingRedux.js +100 -0
- package/src/Redux/ActionsReducers/ThemeRedux.d.ts +35 -0
- package/src/Redux/ActionsReducers/ThemeRedux.js +57 -0
- package/src/Redux/ActionsReducers/ToolPanelRedux.d.ts +60 -0
- package/src/Redux/ActionsReducers/ToolPanelRedux.js +110 -0
- package/src/Redux/ActionsReducers/utils.d.ts +8 -0
- package/src/Redux/ActionsReducers/utils.js +18 -0
- package/src/Redux/DeadRedux.d.ts +25 -0
- package/src/Redux/DeadRedux.js +59 -0
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.d.ts +12 -0
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +104 -0
- package/src/Redux/Store/AdaptableReduxMerger.d.ts +13 -0
- package/src/Redux/Store/AdaptableReduxMerger.js +118 -0
- package/src/Redux/Store/AdaptableStore.d.ts +46 -0
- package/src/Redux/Store/AdaptableStore.js +1258 -0
- package/src/Redux/Store/Interface/IAdaptableStore.d.ts +14 -0
- package/src/Redux/Store/Interface/IAdaptableStore.js +2 -0
- package/src/Redux/Store/Interface/IStorageEngine.d.ts +9 -0
- package/src/Redux/Store/Interface/IStorageEngine.js +2 -0
- package/src/Strategy/AdaptableModuleBase.d.ts +55 -0
- package/src/Strategy/AdaptableModuleBase.js +254 -0
- package/src/Strategy/AlertModule.d.ts +27 -0
- package/src/Strategy/AlertModule.js +367 -0
- package/src/Strategy/BulkUpdateModule.d.ts +12 -0
- package/src/Strategy/BulkUpdateModule.js +148 -0
- package/src/Strategy/CalculatedColumnModule.d.ts +17 -0
- package/src/Strategy/CalculatedColumnModule.js +63 -0
- package/src/Strategy/CellSummaryModule.d.ts +13 -0
- package/src/Strategy/CellSummaryModule.js +97 -0
- package/src/Strategy/ChangeHistoryModule.d.ts +8 -0
- package/src/Strategy/ChangeHistoryModule.js +24 -0
- package/src/Strategy/ConditionalStyleModule.d.ts +22 -0
- package/src/Strategy/ConditionalStyleModule.js +184 -0
- package/src/Strategy/CustomSortModule.d.ts +16 -0
- package/src/Strategy/CustomSortModule.js +50 -0
- package/src/Strategy/DashboardModule.d.ts +13 -0
- package/src/Strategy/DashboardModule.js +76 -0
- package/src/Strategy/DataSourceModule.d.ts +12 -0
- package/src/Strategy/DataSourceModule.js +26 -0
- package/src/Strategy/ExportModule.d.ts +29 -0
- package/src/Strategy/ExportModule.js +193 -0
- package/src/Strategy/FilterModule.d.ts +18 -0
- package/src/Strategy/FilterModule.js +80 -0
- package/src/Strategy/FormatColumnModule.d.ts +18 -0
- package/src/Strategy/FormatColumnModule.js +213 -0
- package/src/Strategy/FreeTextColumnModule.d.ts +16 -0
- package/src/Strategy/FreeTextColumnModule.js +47 -0
- package/src/Strategy/GridInfoModule.d.ts +12 -0
- package/src/Strategy/GridInfoModule.js +78 -0
- package/src/Strategy/Interface/IBulkUpdateModule.d.ts +13 -0
- package/src/Strategy/Interface/IBulkUpdateModule.js +2 -0
- package/src/Strategy/Interface/ICellSummaryModule.d.ts +6 -0
- package/src/Strategy/Interface/ICellSummaryModule.js +2 -0
- package/src/Strategy/Interface/IConditionalStyleModule.d.ts +6 -0
- package/src/Strategy/Interface/IConditionalStyleModule.js +2 -0
- package/src/Strategy/Interface/IExportModule.d.ts +6 -0
- package/src/Strategy/Interface/IExportModule.js +2 -0
- package/src/Strategy/Interface/IModule.d.ts +54 -0
- package/src/Strategy/Interface/IModule.js +2 -0
- package/src/Strategy/Interface/IModuleActionReturn.d.ts +5 -0
- package/src/Strategy/Interface/IModuleActionReturn.js +2 -0
- package/src/Strategy/Interface/IPlusMinusModule.d.ts +7 -0
- package/src/Strategy/Interface/IPlusMinusModule.js +2 -0
- package/src/Strategy/Interface/IScheduleModule.d.ts +4 -0
- package/src/Strategy/Interface/IScheduleModule.js +2 -0
- package/src/Strategy/Interface/IShortcutModule.d.ts +4 -0
- package/src/Strategy/Interface/IShortcutModule.js +2 -0
- package/src/Strategy/Interface/ISmartEditModule.d.ts +10 -0
- package/src/Strategy/Interface/ISmartEditModule.js +2 -0
- package/src/Strategy/LayoutModule.d.ts +19 -0
- package/src/Strategy/LayoutModule.js +112 -0
- package/src/Strategy/PlusMinusModule.d.ts +26 -0
- package/src/Strategy/PlusMinusModule.js +183 -0
- package/src/Strategy/QueryModule.d.ts +13 -0
- package/src/Strategy/QueryModule.js +29 -0
- package/src/Strategy/QuickSearchModule.d.ts +6 -0
- package/src/Strategy/QuickSearchModule.js +12 -0
- package/src/Strategy/ScheduleModule.d.ts +13 -0
- package/src/Strategy/ScheduleModule.js +120 -0
- package/src/Strategy/ShortcutModule.d.ts +18 -0
- package/src/Strategy/ShortcutModule.js +72 -0
- package/src/Strategy/SmartEditModule.d.ts +17 -0
- package/src/Strategy/SmartEditModule.js +168 -0
- package/src/Strategy/StateManagementModule.d.ts +6 -0
- package/src/Strategy/StateManagementModule.js +12 -0
- package/src/Strategy/SystemStatusModule.d.ts +10 -0
- package/src/Strategy/SystemStatusModule.js +34 -0
- package/src/Strategy/TeamSharingModule.d.ts +11 -0
- package/src/Strategy/TeamSharingModule.js +73 -0
- package/src/Strategy/ThemeModule.d.ts +9 -0
- package/src/Strategy/ThemeModule.js +18 -0
- package/src/Strategy/ToolPanelModule.d.ts +8 -0
- package/src/Strategy/ToolPanelModule.js +43 -0
- package/src/Utilities/Cancelable.d.ts +4 -0
- package/src/Utilities/Cancelable.js +2 -0
- package/src/Utilities/Constants/ConfigConstants.d.ts +10 -0
- package/src/Utilities/Constants/ConfigConstants.js +14 -0
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +9 -0
- package/src/Utilities/Constants/DocumentationLinkConstants.js +12 -0
- package/src/Utilities/Constants/GeneralConstants.d.ts +66 -0
- package/src/Utilities/Constants/GeneralConstants.js +92 -0
- package/src/Utilities/Constants/ModuleConstants.d.ts +32 -0
- package/src/Utilities/Constants/ModuleConstants.js +34 -0
- package/src/Utilities/Defaults/DefaultAdaptableOptions.d.ts +2 -0
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +213 -0
- package/src/Utilities/Defaults/DefaultCategoryChartProperties.d.ts +2 -0
- package/src/Utilities/Defaults/DefaultCategoryChartProperties.js +56 -0
- package/src/Utilities/Defaults/DefaultPieChartProperties.d.ts +2 -0
- package/src/Utilities/Defaults/DefaultPieChartProperties.js +13 -0
- package/src/Utilities/Defaults/DefaultSparklinesChartProperties.d.ts +2 -0
- package/src/Utilities/Defaults/DefaultSparklinesChartProperties.js +25 -0
- package/src/Utilities/Emitter.d.ts +21 -0
- package/src/Utilities/Emitter.js +232 -0
- package/src/Utilities/ExpressionFunctions/ExpressionEvaluationError.d.ts +4 -0
- package/src/Utilities/ExpressionFunctions/ExpressionEvaluationError.js +11 -0
- package/src/Utilities/ExpressionFunctions/aggregationExpressionFunctions.d.ts +6 -0
- package/src/Utilities/ExpressionFunctions/aggregationExpressionFunctions.js +211 -0
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +53 -0
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +601 -0
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +6 -0
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +421 -0
- package/src/Utilities/ExpressionFunctions/reactiveExpressionFunctionUtils.d.ts +12 -0
- package/src/Utilities/ExpressionFunctions/reactiveExpressionFunctionUtils.js +87 -0
- package/src/Utilities/ExpressionFunctions/types.d.ts +7 -0
- package/src/Utilities/ExpressionFunctions/types.js +2 -0
- package/src/Utilities/Extensions/ArrayExtensions.d.ts +67 -0
- package/src/Utilities/Extensions/ArrayExtensions.js +313 -0
- package/src/Utilities/Extensions/EnumExtensions.d.ts +11 -0
- package/src/Utilities/Extensions/EnumExtensions.js +41 -0
- package/src/Utilities/Extensions/NumberExtensions.d.ts +5 -0
- package/src/Utilities/Extensions/NumberExtensions.js +24 -0
- package/src/Utilities/Extensions/StringExtensions.d.ts +39 -0
- package/src/Utilities/Extensions/StringExtensions.js +111 -0
- package/src/Utilities/Extensions/TypeExtensions.d.ts +44 -0
- package/src/Utilities/Extensions/TypeExtensions.js +2 -0
- package/src/Utilities/Helpers/AdaptableHelper.d.ts +25 -0
- package/src/Utilities/Helpers/AdaptableHelper.js +156 -0
- package/src/Utilities/Helpers/CalendarHelper.d.ts +25 -0
- package/src/Utilities/Helpers/CalendarHelper.js +174 -0
- package/src/Utilities/Helpers/DateHelper.d.ts +4 -0
- package/src/Utilities/Helpers/DateHelper.js +38 -0
- package/src/Utilities/Helpers/FormatHelper.d.ts +11 -0
- package/src/Utilities/Helpers/FormatHelper.js +107 -0
- package/src/Utilities/Helpers/Helper.d.ts +38 -0
- package/src/Utilities/Helpers/Helper.js +264 -0
- package/src/Utilities/Helpers/LoggingHelper.d.ts +15 -0
- package/src/Utilities/Helpers/LoggingHelper.js +110 -0
- package/src/Utilities/Helpers/PreviewHelper.d.ts +11 -0
- package/src/Utilities/Helpers/PreviewHelper.js +73 -0
- package/src/Utilities/Helpers/StyleHelper.d.ts +5 -0
- package/src/Utilities/Helpers/StyleHelper.js +44 -0
- package/src/Utilities/Interface/AdaptableToolPanelContext.d.ts +4 -0
- package/src/Utilities/Interface/AdaptableToolPanelContext.js +2 -0
- package/src/Utilities/Interface/ColumnFilterContext.d.ts +7 -0
- package/src/Utilities/Interface/ColumnFilterContext.js +2 -0
- package/src/Utilities/Interface/IPPStyle.d.ts +31 -0
- package/src/Utilities/Interface/IPPStyle.js +2 -0
- package/src/Utilities/Interface/KeyValuePair.d.ts +7 -0
- package/src/Utilities/Interface/KeyValuePair.js +2 -0
- package/src/Utilities/Interface/MessagePopups.d.ts +59 -0
- package/src/Utilities/Interface/MessagePopups.js +2 -0
- package/src/Utilities/Interface/Preview.d.ts +17 -0
- package/src/Utilities/Interface/Preview.js +2 -0
- package/src/Utilities/Interface/ProgressIndicator.d.ts +4 -0
- package/src/Utilities/Interface/ProgressIndicator.js +2 -0
- package/src/Utilities/MenuItem.d.ts +28 -0
- package/src/Utilities/MenuItem.js +37 -0
- package/src/Utilities/ObjectFactory.d.ts +116 -0
- package/src/Utilities/ObjectFactory.js +491 -0
- package/src/Utilities/Services/AlertService.d.ts +15 -0
- package/src/Utilities/Services/AlertService.js +70 -0
- package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +11 -0
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +67 -0
- package/src/Utilities/Services/DataService.d.ts +27 -0
- package/src/Utilities/Services/DataService.js +96 -0
- package/src/Utilities/Services/EntitlementService.d.ts +14 -0
- package/src/Utilities/Services/EntitlementService.js +51 -0
- package/src/Utilities/Services/ExpressionService.d.ts +34 -0
- package/src/Utilities/Services/ExpressionService.js +195 -0
- package/src/Utilities/Services/Interface/IAdaptableService.d.ts +3 -0
- package/src/Utilities/Services/Interface/IAdaptableService.js +2 -0
- package/src/Utilities/Services/Interface/IAlertService.d.ts +16 -0
- package/src/Utilities/Services/Interface/IAlertService.js +2 -0
- package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +7 -0
- package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.js +2 -0
- package/src/Utilities/Services/Interface/IDataService.d.ts +12 -0
- package/src/Utilities/Services/Interface/IDataService.js +2 -0
- package/src/Utilities/Services/Interface/IEntitlementService.d.ts +10 -0
- package/src/Utilities/Services/Interface/IEntitlementService.js +2 -0
- package/src/Utilities/Services/Interface/IExpressionService.d.ts +26 -0
- package/src/Utilities/Services/Interface/IExpressionService.js +2 -0
- package/src/Utilities/Services/Interface/ILicenseService.d.ts +2 -0
- package/src/Utilities/Services/Interface/ILicenseService.js +2 -0
- package/src/Utilities/Services/Interface/IMetamodelService.d.ts +14 -0
- package/src/Utilities/Services/Interface/IMetamodelService.js +2 -0
- package/src/Utilities/Services/Interface/IModuleService.d.ts +16 -0
- package/src/Utilities/Services/Interface/IModuleService.js +2 -0
- package/src/Utilities/Services/Interface/IReportService.d.ts +22 -0
- package/src/Utilities/Services/Interface/IReportService.js +2 -0
- package/src/Utilities/Services/Interface/ITeamSharingService.d.ts +14 -0
- package/src/Utilities/Services/Interface/ITeamSharingService.js +2 -0
- package/src/Utilities/Services/Interface/IValidationService.d.ts +12 -0
- package/src/Utilities/Services/Interface/IValidationService.js +2 -0
- package/src/Utilities/Services/LicenseService.d.ts +27 -0
- package/src/Utilities/Services/LicenseService.js +145 -0
- package/src/Utilities/Services/MetamodelService.d.ts +11 -0
- package/src/Utilities/Services/MetamodelService.js +70 -0
- package/src/Utilities/Services/ModuleService.d.ts +20 -0
- package/src/Utilities/Services/ModuleService.js +147 -0
- package/src/Utilities/Services/ReportService.d.ts +30 -0
- package/src/Utilities/Services/ReportService.js +353 -0
- package/src/Utilities/Services/TeamSharingService.d.ts +22 -0
- package/src/Utilities/Services/TeamSharingService.js +183 -0
- package/src/Utilities/Services/ValidationService.d.ts +17 -0
- package/src/Utilities/Services/ValidationService.js +112 -0
- package/src/Utilities/getScrollbarSize.d.ts +2 -0
- package/src/Utilities/getScrollbarSize.js +30 -0
- package/src/Utilities/isAdaptableObject.d.ts +2 -0
- package/src/Utilities/isAdaptableObject.js +7 -0
- package/src/Utilities/isMacLike.d.ts +1 -0
- package/src/Utilities/isMacLike.js +7 -0
- package/src/Utilities/license/LicenseDetails.d.ts +10 -0
- package/src/Utilities/license/LicenseDetails.js +2 -0
- package/src/Utilities/license/crc32.d.ts +1 -0
- package/src/Utilities/license/crc32.js +47 -0
- package/src/Utilities/license/decode.d.ts +6 -0
- package/src/Utilities/license/decode.js +67 -0
- package/src/Utilities/reorder.d.ts +1 -0
- package/src/Utilities/reorder.js +16 -0
- package/src/Utilities/sortWithOrder.d.ts +11 -0
- package/src/Utilities/sortWithOrder.js +54 -0
- package/src/Utilities/waitForCondition.d.ts +1 -0
- package/src/Utilities/waitForCondition.js +28 -0
- package/src/View/AdaptableContext.d.ts +5 -0
- package/src/View/AdaptableContext.js +10 -0
- package/src/View/AdaptablePopover/index.d.ts +17 -0
- package/src/View/AdaptablePopover/index.js +37 -0
- package/src/View/AdaptableView.d.ts +5 -0
- package/src/View/AdaptableView.js +60 -0
- package/src/View/AdaptableViewFactory.d.ts +7 -0
- package/src/View/AdaptableViewFactory.js +89 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +12 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +274 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.d.ts +8 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +124 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.d.ts +9 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +74 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/useSelection.d.ts +19 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/useSelection.js +57 -0
- package/src/View/AdaptableWizardView/helper.d.ts +19 -0
- package/src/View/AdaptableWizardView/helper.js +91 -0
- package/src/View/AdaptableWizardView/index.d.ts +25 -0
- package/src/View/AdaptableWizardView/index.js +111 -0
- package/src/View/Alert/AlertEntityRow.d.ts +11 -0
- package/src/View/Alert/AlertEntityRow.js +33 -0
- package/src/View/Alert/AlertPopup.d.ts +42 -0
- package/src/View/Alert/AlertPopup.js +205 -0
- package/src/View/Alert/AlertSharedEntity.d.ts +5 -0
- package/src/View/Alert/AlertSharedEntity.js +19 -0
- package/src/View/Alert/AlertViewPanel.d.ts +22 -0
- package/src/View/Alert/AlertViewPanel.js +57 -0
- package/src/View/Alert/AlertsPanel.d.ts +14 -0
- package/src/View/Alert/AlertsPanel.js +43 -0
- package/src/View/Alert/FlashingAlertEntityRow.d.ts +7 -0
- package/src/View/Alert/FlashingAlertEntityRow.js +22 -0
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.d.ts +8 -0
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +67 -0
- package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +13 -0
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +142 -0
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +8 -0
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +93 -0
- package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +8 -0
- package/src/View/Alert/Wizard/AlertRulesWizardSection.js +24 -0
- package/src/View/Alert/Wizard/AlertScopeWizardSection.d.ts +7 -0
- package/src/View/Alert/Wizard/AlertScopeWizardSection.js +9 -0
- package/src/View/Alert/Wizard/AlertSelectQueryWizard.d.ts +19 -0
- package/src/View/Alert/Wizard/AlertSelectQueryWizard.js +59 -0
- package/src/View/Alert/Wizard/AlertWizard.d.ts +6 -0
- package/src/View/Alert/Wizard/AlertWizard.js +75 -0
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +7 -0
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +26 -0
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.d.ts +8 -0
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +56 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertDurationWizardSection.d.ts +10 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertDurationWizardSection.js +60 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertRulesWizardSection.d.ts +7 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertRulesWizardSection.js +57 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertScopeWizardSection.d.ts +7 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertScopeWizardSection.js +9 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertStyleWizardSection.d.ts +10 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertStyleWizardSection.js +48 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertWizard.d.ts +6 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertWizard.js +89 -0
- package/src/View/Alert/Wizard/isValidAlertRules.d.ts +4 -0
- package/src/View/Alert/Wizard/isValidAlertRules.js +44 -0
- package/src/View/BulkUpdate/BulkUpdatePopup.d.ts +31 -0
- package/src/View/BulkUpdate/BulkUpdatePopup.js +112 -0
- package/src/View/BulkUpdate/BulkUpdateViewPanel.d.ts +29 -0
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +107 -0
- package/src/View/CalculatedColumn/CalculatedColumnEntityRow.d.ts +9 -0
- package/src/View/CalculatedColumn/CalculatedColumnEntityRow.js +28 -0
- package/src/View/CalculatedColumn/CalculatedColumnPopup.d.ts +25 -0
- package/src/View/CalculatedColumn/CalculatedColumnPopup.js +117 -0
- package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.d.ts +5 -0
- package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +20 -0
- package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +19 -0
- package/src/View/CalculatedColumn/CalculatedColumnSummary.js +72 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.d.ts +9 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +49 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.d.ts +9 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +143 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.d.ts +6 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +45 -0
- package/src/View/CellSummary/CellSummaryDetails.d.ts +9 -0
- package/src/View/CellSummary/CellSummaryDetails.js +35 -0
- package/src/View/CellSummary/CellSummaryPopover.d.ts +8 -0
- package/src/View/CellSummary/CellSummaryPopover.js +12 -0
- package/src/View/CellSummary/CellSummaryPopup.d.ts +15 -0
- package/src/View/CellSummary/CellSummaryPopup.js +29 -0
- package/src/View/CellSummary/CellSummaryViewPanel.d.ts +25 -0
- package/src/View/CellSummary/CellSummaryViewPanel.js +112 -0
- package/src/View/ChangeHistory/ChangeHistoryGrid.d.ts +9 -0
- package/src/View/ChangeHistory/ChangeHistoryGrid.js +306 -0
- package/src/View/ChangeHistory/ChangeHistoryPopup.d.ts +12 -0
- package/src/View/ChangeHistory/ChangeHistoryPopup.js +40 -0
- package/src/View/ColorPicker.d.ts +8 -0
- package/src/View/ColorPicker.js +22 -0
- package/src/View/Components/AdaptableDateInput/index.d.ts +5 -0
- package/src/View/Components/AdaptableDateInput/index.js +37 -0
- package/src/View/Components/AdaptableInput/index.d.ts +5 -0
- package/src/View/Components/AdaptableInput/index.js +20 -0
- package/src/View/Components/AdaptableObjectCollection/index.d.ts +12 -0
- package/src/View/Components/AdaptableObjectCollection/index.js +16 -0
- package/src/View/Components/AdaptableObjectRow/index.d.ts +12 -0
- package/src/View/Components/AdaptableObjectRow/index.js +24 -0
- package/src/View/Components/Buttons/ButtonApply.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonApply.js +12 -0
- package/src/View/Components/Buttons/ButtonBase/index.d.ts +23 -0
- package/src/View/Components/Buttons/ButtonBase/index.js +74 -0
- package/src/View/Components/Buttons/ButtonClear.d.ts +9 -0
- package/src/View/Components/Buttons/ButtonClear.js +12 -0
- package/src/View/Components/Buttons/ButtonClone.d.ts +3 -0
- package/src/View/Components/Buttons/ButtonClone.js +9 -0
- package/src/View/Components/Buttons/ButtonClose.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonClose.js +12 -0
- package/src/View/Components/Buttons/ButtonConfigure.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonConfigure.js +12 -0
- package/src/View/Components/Buttons/ButtonDelete.d.ts +18 -0
- package/src/View/Components/Buttons/ButtonDelete.js +45 -0
- package/src/View/Components/Buttons/ButtonEdit.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonEdit.js +12 -0
- package/src/View/Components/Buttons/ButtonExpand.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonExpand.js +12 -0
- package/src/View/Components/Buttons/ButtonExport.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonExport.js +12 -0
- package/src/View/Components/Buttons/ButtonFunction.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonFunction.js +12 -0
- package/src/View/Components/Buttons/ButtonGeneral.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonGeneral.js +12 -0
- package/src/View/Components/Buttons/ButtonInfo.d.ts +9 -0
- package/src/View/Components/Buttons/ButtonInfo.js +12 -0
- package/src/View/Components/Buttons/ButtonInvalid.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonInvalid.js +12 -0
- package/src/View/Components/Buttons/ButtonLogin.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonLogin.js +12 -0
- package/src/View/Components/Buttons/ButtonLogout.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonLogout.js +12 -0
- package/src/View/Components/Buttons/ButtonMaximise.d.ts +8 -0
- package/src/View/Components/Buttons/ButtonMaximise.js +12 -0
- package/src/View/Components/Buttons/ButtonMinimise.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonMinimise.js +12 -0
- package/src/View/Components/Buttons/ButtonNew.d.ts +3 -0
- package/src/View/Components/Buttons/ButtonNew.js +9 -0
- package/src/View/Components/Buttons/ButtonNewPage.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonNewPage.js +13 -0
- package/src/View/Components/Buttons/ButtonPause.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonPause.js +12 -0
- package/src/View/Components/Buttons/ButtonPlay.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonPlay.js +13 -0
- package/src/View/Components/Buttons/ButtonPreviewDelete.d.ts +4 -0
- package/src/View/Components/Buttons/ButtonPreviewDelete.js +8 -0
- package/src/View/Components/Buttons/ButtonSave.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonSave.js +12 -0
- package/src/View/Components/Buttons/ButtonSchedule.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonSchedule.js +12 -0
- package/src/View/Components/Buttons/ButtonShare.d.ts +15 -0
- package/src/View/Components/Buttons/ButtonShare.js +23 -0
- package/src/View/Components/Buttons/ButtonShow.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonShow.js +12 -0
- package/src/View/Components/Buttons/ButtonShowChart.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonShowChart.js +12 -0
- package/src/View/Components/Buttons/ButtonStop.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonStop.js +12 -0
- package/src/View/Components/Buttons/ButtonUndo.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonUndo.js +12 -0
- package/src/View/Components/Buttons/EntityListActionButtons.d.ts +39 -0
- package/src/View/Components/Buttons/EntityListActionButtons.js +79 -0
- package/src/View/Components/Buttons/SuspendToggleButton.d.ts +12 -0
- package/src/View/Components/Buttons/SuspendToggleButton.js +17 -0
- package/src/View/Components/ColumnSelector/index.d.ts +17 -0
- package/src/View/Components/ColumnSelector/index.js +28 -0
- package/src/View/Components/EntityRowItem.d.ts +7 -0
- package/src/View/Components/EntityRowItem.js +13 -0
- package/src/View/Components/EntityRulesEditor/index.d.ts +42 -0
- package/src/View/Components/EntityRulesEditor/index.js +174 -0
- package/src/View/Components/ExpressionWizard.d.ts +24 -0
- package/src/View/Components/ExpressionWizard.js +79 -0
- package/src/View/Components/FilterForm/FilterForm.d.ts +63 -0
- package/src/View/Components/FilterForm/FilterForm.js +262 -0
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +17 -0
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +68 -0
- package/src/View/Components/FilterForm/ListBoxMenu.d.ts +14 -0
- package/src/View/Components/FilterForm/ListBoxMenu.js +33 -0
- package/src/View/Components/FilterForm/QuickFilterForm.d.ts +50 -0
- package/src/View/Components/FilterForm/QuickFilterForm.js +283 -0
- package/src/View/Components/FilterForm/Waiting.d.ts +8 -0
- package/src/View/Components/FilterForm/Waiting.js +18 -0
- package/src/View/Components/Forms/AdaptableForm.d.ts +6 -0
- package/src/View/Components/Forms/AdaptableForm.js +21 -0
- package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +10 -0
- package/src/View/Components/Forms/AdaptableFormControlTextClear.js +39 -0
- package/src/View/Components/ListBox/DualListBoxEditor.d.ts +22 -0
- package/src/View/Components/ListBox/DualListBoxEditor.js +519 -0
- package/src/View/Components/ListBox/ListBoxFilterSortComponent.d.ts +13 -0
- package/src/View/Components/ListBox/ListBoxFilterSortComponent.js +31 -0
- package/src/View/Components/ModuleProfile.d.ts +8 -0
- package/src/View/Components/ModuleProfile.js +18 -0
- package/src/View/Components/ModuleSummary/ModuleDetail.d.ts +23 -0
- package/src/View/Components/ModuleSummary/ModuleDetail.js +19 -0
- package/src/View/Components/ModuleSummary/ModuleHeader.d.ts +15 -0
- package/src/View/Components/ModuleSummary/ModuleHeader.js +20 -0
- package/src/View/Components/ModuleSummary/SummaryRowItem.d.ts +7 -0
- package/src/View/Components/ModuleSummary/SummaryRowItem.js +17 -0
- package/src/View/Components/ModuleValueSelector/index.d.ts +5 -0
- package/src/View/Components/ModuleValueSelector/index.js +34 -0
- package/src/View/Components/NewScopeComponent.d.ts +24 -0
- package/src/View/Components/NewScopeComponent.js +146 -0
- package/src/View/Components/Panels/FilterFormPanel.d.ts +22 -0
- package/src/View/Components/Panels/FilterFormPanel.js +41 -0
- package/src/View/Components/Panels/PanelDashboard/index.d.ts +15 -0
- package/src/View/Components/Panels/PanelDashboard/index.js +21 -0
- package/src/View/Components/Panels/PanelToolPanel/index.d.ts +14 -0
- package/src/View/Components/Panels/PanelToolPanel/index.js +31 -0
- package/src/View/Components/Panels/PanelWithButton.d.ts +22 -0
- package/src/View/Components/Panels/PanelWithButton.js +36 -0
- package/src/View/Components/Panels/PanelWithIImageThreeButtons.d.ts +11 -0
- package/src/View/Components/Panels/PanelWithIImageThreeButtons.js +28 -0
- package/src/View/Components/Panels/PanelWithImage.d.ts +21 -0
- package/src/View/Components/Panels/PanelWithImage.js +40 -0
- package/src/View/Components/Panels/PanelWithRow.d.ts +10 -0
- package/src/View/Components/Panels/PanelWithRow.js +21 -0
- package/src/View/Components/Panels/PanelWithTwoButtons.d.ts +12 -0
- package/src/View/Components/Panels/PanelWithTwoButtons.js +20 -0
- package/src/View/Components/Panels/ToolPanelSettingsPanel.d.ts +8 -0
- package/src/View/Components/Panels/ToolPanelSettingsPanel.js +31 -0
- package/src/View/Components/Popups/AdaptableChart.d.ts +18 -0
- package/src/View/Components/Popups/AdaptableChart.js +40 -0
- package/src/View/Components/Popups/AdaptableLoadingScreen.d.ts +8 -0
- package/src/View/Components/Popups/AdaptableLoadingScreen.js +18 -0
- package/src/View/Components/Popups/AdaptablePopup.d.ts +23 -0
- package/src/View/Components/Popups/AdaptablePopup.js +59 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +10 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.js +73 -0
- package/src/View/Components/Popups/AdaptablePopupConfirmation.d.ts +29 -0
- package/src/View/Components/Popups/AdaptablePopupConfirmation.js +56 -0
- package/src/View/Components/Popups/AdaptablePopupPrompt.d.ts +18 -0
- package/src/View/Components/Popups/AdaptablePopupPrompt.js +47 -0
- package/src/View/Components/Popups/AdaptablePopupTeamSharing.d.ts +9 -0
- package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +46 -0
- package/src/View/Components/Popups/AdaptableToaster.d.ts +7 -0
- package/src/View/Components/Popups/AdaptableToaster.js +33 -0
- package/src/View/Components/Popups/PopupContext.d.ts +7 -0
- package/src/View/Components/Popups/PopupContext.js +12 -0
- package/src/View/Components/PreviewResultsPanel.d.ts +16 -0
- package/src/View/Components/PreviewResultsPanel.js +61 -0
- package/src/View/Components/RangesComponent.d.ts +34 -0
- package/src/View/Components/RangesComponent.js +186 -0
- package/src/View/Components/ScopeComponent.d.ts +24 -0
- package/src/View/Components/ScopeComponent.js +135 -0
- package/src/View/Components/Selectors/ColumnSelector.d.ts +17 -0
- package/src/View/Components/Selectors/ColumnSelector.js +54 -0
- package/src/View/Components/Selectors/ColumnValueSelector.d.ts +31 -0
- package/src/View/Components/Selectors/ColumnValueSelector.js +106 -0
- package/src/View/Components/SharedProps/BaseProps.d.ts +8 -0
- package/src/View/Components/SharedProps/BaseProps.js +2 -0
- package/src/View/Components/SharedProps/ChartDisplayPopupPropsBase.d.ts +7 -0
- package/src/View/Components/SharedProps/ChartDisplayPopupPropsBase.js +2 -0
- package/src/View/Components/SharedProps/ConfigEntityRowProps.d.ts +30 -0
- package/src/View/Components/SharedProps/ConfigEntityRowProps.js +2 -0
- package/src/View/Components/SharedProps/EditableConfigEntityState.d.ts +14 -0
- package/src/View/Components/SharedProps/EditableConfigEntityState.js +10 -0
- package/src/View/Components/SharedProps/ModuleSummaryProps.d.ts +9 -0
- package/src/View/Components/SharedProps/ModuleSummaryProps.js +2 -0
- package/src/View/Components/SharedProps/ModuleViewPopupProps.d.ts +25 -0
- package/src/View/Components/SharedProps/ModuleViewPopupProps.js +2 -0
- package/src/View/Components/SharedProps/ToolPanelModuleViewPopupProps.d.ts +13 -0
- package/src/View/Components/SharedProps/ToolPanelModuleViewPopupProps.js +2 -0
- package/src/View/Components/SharedProps/ToolbarModuleViewPopupProps.d.ts +14 -0
- package/src/View/Components/SharedProps/ToolbarModuleViewPopupProps.js +2 -0
- package/src/View/Components/SharedProps/ViewPanelProps.d.ts +9 -0
- package/src/View/Components/SharedProps/ViewPanelProps.js +2 -0
- package/src/View/Components/SharedProps/WizardScopeState.d.ts +4 -0
- package/src/View/Components/SharedProps/WizardScopeState.js +2 -0
- package/src/View/Components/StyleComponent.d.ts +32 -0
- package/src/View/Components/StyleComponent.js +153 -0
- package/src/View/Components/StyleVisualItem.d.ts +9 -0
- package/src/View/Components/StyleVisualItem.js +45 -0
- package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +43 -0
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +296 -0
- package/src/View/Components/ToolPanel/CustomToolPanelContent.d.ts +6 -0
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +71 -0
- package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +27 -0
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +110 -0
- package/src/View/Components/ToolPanel/ToolPanelWrapper.d.ts +14 -0
- package/src/View/Components/ToolPanel/ToolPanelWrapper.js +61 -0
- package/src/View/Components/ValueSelector/index.d.ts +38 -0
- package/src/View/Components/ValueSelector/index.js +203 -0
- package/src/View/Components/WizardSummaryPage.d.ts +7 -0
- package/src/View/Components/WizardSummaryPage.js +23 -0
- package/src/View/Components/WizardSummaryRow.d.ts +9 -0
- package/src/View/Components/WizardSummaryRow.js +16 -0
- package/src/View/ConditionalStyle/ConditionalStyleEntityRow.d.ts +5 -0
- package/src/View/ConditionalStyle/ConditionalStyleEntityRow.js +26 -0
- package/src/View/ConditionalStyle/ConditionalStylePopup.d.ts +30 -0
- package/src/View/ConditionalStyle/ConditionalStylePopup.js +144 -0
- package/src/View/ConditionalStyle/ConditionalStyleSharedEntity.d.ts +5 -0
- package/src/View/ConditionalStyle/ConditionalStyleSharedEntity.js +23 -0
- package/src/View/ConditionalStyle/ConditionalStyleSummary.d.ts +25 -0
- package/src/View/ConditionalStyle/ConditionalStyleSummary.js +107 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.d.ts +9 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +42 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.d.ts +8 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +42 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.d.ts +8 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +22 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.d.ts +6 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +78 -0
- package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.d.ts +1 -0
- package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.js +4 -0
- package/src/View/CustomSort/CustomSortEntityRow.d.ts +10 -0
- package/src/View/CustomSort/CustomSortEntityRow.js +32 -0
- package/src/View/CustomSort/CustomSortPopup.d.ts +27 -0
- package/src/View/CustomSort/CustomSortPopup.js +138 -0
- package/src/View/CustomSort/CustomSortSharedEntity.d.ts +6 -0
- package/src/View/CustomSort/CustomSortSharedEntity.js +24 -0
- package/src/View/CustomSort/CustomSortSummary.d.ts +21 -0
- package/src/View/CustomSort/CustomSortSummary.js +110 -0
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.d.ts +9 -0
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +51 -0
- package/src/View/CustomSort/Wizard/CustomSortSummaryWizard.d.ts +15 -0
- package/src/View/CustomSort/Wizard/CustomSortSummaryWizard.js +36 -0
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.d.ts +8 -0
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +53 -0
- package/src/View/CustomSort/Wizard/CustomSortWizard.d.ts +7 -0
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +45 -0
- package/src/View/Dashboard/CustomToolbarWrapper.d.ts +7 -0
- package/src/View/Dashboard/CustomToolbarWrapper.js +67 -0
- package/src/View/Dashboard/Dashboard.d.ts +27 -0
- package/src/View/Dashboard/Dashboard.js +251 -0
- package/src/View/Dashboard/DashboardPopup.d.ts +27 -0
- package/src/View/Dashboard/DashboardPopup.js +101 -0
- package/src/View/Dashboard/DashboardViewPanel.d.ts +17 -0
- package/src/View/Dashboard/DashboardViewPanel.js +39 -0
- package/src/View/Dashboard/ModuleToolbarWrapper.d.ts +9 -0
- package/src/View/Dashboard/ModuleToolbarWrapper.js +16 -0
- package/src/View/DataSource/DataSourceEntityRow.d.ts +12 -0
- package/src/View/DataSource/DataSourceEntityRow.js +29 -0
- package/src/View/DataSource/DataSourcePopup.d.ts +28 -0
- package/src/View/DataSource/DataSourcePopup.js +97 -0
- package/src/View/DataSource/DataSourceViewPanel.d.ts +19 -0
- package/src/View/DataSource/DataSourceViewPanel.js +67 -0
- package/src/View/DataSource/Wizard/DataSourceSettingsSummary.d.ts +2 -0
- package/src/View/DataSource/Wizard/DataSourceSettingsSummary.js +17 -0
- package/src/View/DataSource/Wizard/DataSourceSettingsWizard.d.ts +8 -0
- package/src/View/DataSource/Wizard/DataSourceSettingsWizard.js +42 -0
- package/src/View/DataSource/Wizard/DataSourceWizard.d.ts +9 -0
- package/src/View/DataSource/Wizard/DataSourceWizard.js +28 -0
- package/src/View/Export/ExportCustomDestinationDialog.d.ts +11 -0
- package/src/View/Export/ExportCustomDestinationDialog.js +47 -0
- package/src/View/Export/ExportCustomDestinationFormPopups.d.ts +5 -0
- package/src/View/Export/ExportCustomDestinationFormPopups.js +15 -0
- package/src/View/Export/ExportPopup.d.ts +34 -0
- package/src/View/Export/ExportPopup.js +139 -0
- package/src/View/Export/ExportSharedEntity.d.ts +5 -0
- package/src/View/Export/ExportSharedEntity.js +16 -0
- package/src/View/Export/ExportViewPanel.d.ts +31 -0
- package/src/View/Export/ExportViewPanel.js +159 -0
- package/src/View/Export/ProgressIndicator.d.ts +6 -0
- package/src/View/Export/ProgressIndicator.js +25 -0
- package/src/View/Export/ReportEntityRow.d.ts +10 -0
- package/src/View/Export/ReportEntityRow.js +49 -0
- package/src/View/Export/Wizard/NewReportWizard.d.ts +6 -0
- package/src/View/Export/Wizard/NewReportWizard.js +48 -0
- package/src/View/Export/Wizard/ReportColumnTypeWizard.d.ts +20 -0
- package/src/View/Export/Wizard/ReportColumnTypeWizard.js +72 -0
- package/src/View/Export/Wizard/ReportColumnsWizardSection.d.ts +8 -0
- package/src/View/Export/Wizard/ReportColumnsWizardSection.js +70 -0
- package/src/View/Export/Wizard/ReportNameWizardSection.d.ts +9 -0
- package/src/View/Export/Wizard/ReportNameWizardSection.js +44 -0
- package/src/View/Export/Wizard/ReportRowTypeWizard.d.ts +20 -0
- package/src/View/Export/Wizard/ReportRowTypeWizard.js +72 -0
- package/src/View/Export/Wizard/ReportRowsWizardSection.d.ts +8 -0
- package/src/View/Export/Wizard/ReportRowsWizardSection.js +71 -0
- package/src/View/Export/Wizard/ReportScopeWizard.d.ts +17 -0
- package/src/View/Export/Wizard/ReportScopeWizard.js +52 -0
- package/src/View/Export/Wizard/ReportSettingsWizard.d.ts +21 -0
- package/src/View/Export/Wizard/ReportSettingsWizard.js +62 -0
- package/src/View/Export/Wizard/ReportSummaryWizard.d.ts +15 -0
- package/src/View/Export/Wizard/ReportSummaryWizard.js +44 -0
- package/src/View/Export/Wizard/ReportWizard.d.ts +7 -0
- package/src/View/Export/Wizard/ReportWizard.js +50 -0
- package/src/View/Filter/ActiveFiltersPanel.d.ts +16 -0
- package/src/View/Filter/ActiveFiltersPanel.js +37 -0
- package/src/View/Filter/FilterEntityRow.d.ts +12 -0
- package/src/View/Filter/FilterEntityRow.js +20 -0
- package/src/View/Filter/FilterPopup.d.ts +20 -0
- package/src/View/Filter/FilterPopup.js +50 -0
- package/src/View/Filter/FilterSharedEntity.d.ts +5 -0
- package/src/View/Filter/FilterSharedEntity.js +15 -0
- package/src/View/Filter/FilterSummary.d.ts +15 -0
- package/src/View/Filter/FilterSummary.js +52 -0
- package/src/View/Filter/FilterViewPanel.d.ts +25 -0
- package/src/View/Filter/FilterViewPanel.js +53 -0
- package/src/View/FormatColumn/FormatColumnEntityRow.d.ts +9 -0
- package/src/View/FormatColumn/FormatColumnEntityRow.js +103 -0
- package/src/View/FormatColumn/FormatColumnPopup.d.ts +27 -0
- package/src/View/FormatColumn/FormatColumnPopup.js +133 -0
- package/src/View/FormatColumn/FormatColumnSharedEntity.d.ts +5 -0
- package/src/View/FormatColumn/FormatColumnSharedEntity.js +18 -0
- package/src/View/FormatColumn/FormatColumnSummary.d.ts +20 -0
- package/src/View/FormatColumn/FormatColumnSummary.js +95 -0
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +15 -0
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +349 -0
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.d.ts +8 -0
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +23 -0
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.d.ts +8 -0
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +78 -0
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.d.ts +10 -0
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +317 -0
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.d.ts +6 -0
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +130 -0
- package/src/View/FreeTextColumn/FreeTextColumnEntityRow.d.ts +5 -0
- package/src/View/FreeTextColumn/FreeTextColumnEntityRow.js +31 -0
- package/src/View/FreeTextColumn/FreeTextColumnPopup.d.ts +25 -0
- package/src/View/FreeTextColumn/FreeTextColumnPopup.js +116 -0
- package/src/View/FreeTextColumn/FreeTextColumnSharedEntity.d.ts +5 -0
- package/src/View/FreeTextColumn/FreeTextColumnSharedEntity.js +24 -0
- package/src/View/FreeTextColumn/FreeTextColumnSummary.d.ts +20 -0
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +93 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.d.ts +18 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +131 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.d.ts +6 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +38 -0
- package/src/View/GridInfo/AdaptableOptionsComponent.d.ts +7 -0
- package/src/View/GridInfo/AdaptableOptionsComponent.js +99 -0
- package/src/View/GridInfo/ColumnInfoComponent.d.ts +20 -0
- package/src/View/GridInfo/ColumnInfoComponent.js +168 -0
- package/src/View/GridInfo/GridInfoPopup.d.ts +16 -0
- package/src/View/GridInfo/GridInfoPopup.js +96 -0
- package/src/View/GridInfo/GridOptionsComponent.d.ts +17 -0
- package/src/View/GridInfo/GridOptionsComponent.js +37 -0
- package/src/View/KeyHint.d.ts +3 -0
- package/src/View/KeyHint.js +9 -0
- package/src/View/Layout/LayoutEntityRow.d.ts +13 -0
- package/src/View/Layout/LayoutEntityRow.js +23 -0
- package/src/View/Layout/LayoutPopup.d.ts +32 -0
- package/src/View/Layout/LayoutPopup.js +176 -0
- package/src/View/Layout/LayoutSharedEntity.d.ts +5 -0
- package/src/View/Layout/LayoutSharedEntity.js +15 -0
- package/src/View/Layout/LayoutViewPanel.d.ts +22 -0
- package/src/View/Layout/LayoutViewPanel.js +83 -0
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.d.ts +27 -0
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +83 -0
- package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.d.ts +16 -0
- package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +88 -0
- package/src/View/Layout/Wizard/LayoutEditor/PivotList.d.ts +15 -0
- package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +69 -0
- package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.d.ts +15 -0
- package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +69 -0
- package/src/View/Layout/Wizard/LayoutEditor/droppableIds.d.ts +7 -0
- package/src/View/Layout/Wizard/LayoutEditor/droppableIds.js +11 -0
- package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.d.ts +6 -0
- package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +25 -0
- package/src/View/Layout/Wizard/LayoutEditor/index.d.ts +9 -0
- package/src/View/Layout/Wizard/LayoutEditor/index.js +428 -0
- package/src/View/Layout/Wizard/LayoutEditor/reducer.d.ts +28 -0
- package/src/View/Layout/Wizard/LayoutEditor/reducer.js +44 -0
- package/src/View/Layout/Wizard/LayoutEditor/utils.d.ts +10 -0
- package/src/View/Layout/Wizard/LayoutEditor/utils.js +13 -0
- package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +52 -0
- package/src/View/Layout/Wizard/LayoutEditorWizard.js +92 -0
- package/src/View/Layout/Wizard/LayoutWizard.d.ts +9 -0
- package/src/View/Layout/Wizard/LayoutWizard.js +20 -0
- package/src/View/License/LicenseWatermark.d.ts +2 -0
- package/src/View/License/LicenseWatermark.js +58 -0
- package/src/View/License/index.d.ts +1 -0
- package/src/View/License/index.js +5 -0
- package/src/View/PlusMinus/PlusMinusEntityRow.d.ts +9 -0
- package/src/View/PlusMinus/PlusMinusEntityRow.js +24 -0
- package/src/View/PlusMinus/PlusMinusPopup.d.ts +30 -0
- package/src/View/PlusMinus/PlusMinusPopup.js +124 -0
- package/src/View/PlusMinus/PlusMinusSharedEntity.d.ts +5 -0
- package/src/View/PlusMinus/PlusMinusSharedEntity.js +21 -0
- package/src/View/PlusMinus/PlusMinusSummary.d.ts +20 -0
- package/src/View/PlusMinus/PlusMinusSummary.js +101 -0
- package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.d.ts +9 -0
- package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +47 -0
- package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.d.ts +7 -0
- package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.js +22 -0
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +13 -0
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +57 -0
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.d.ts +7 -0
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +59 -0
- package/src/View/Query/ExpandedQueryPopup.d.ts +19 -0
- package/src/View/Query/ExpandedQueryPopup.js +62 -0
- package/src/View/Query/NamedQueryEntityRow.d.ts +8 -0
- package/src/View/Query/NamedQueryEntityRow.js +21 -0
- package/src/View/Query/NamedQuerySharedEntity.d.ts +5 -0
- package/src/View/Query/NamedQuerySharedEntity.js +19 -0
- package/src/View/Query/QueryPopup.d.ts +28 -0
- package/src/View/Query/QueryPopup.js +114 -0
- package/src/View/Query/QueryViewPanel.d.ts +31 -0
- package/src/View/Query/QueryViewPanel.js +162 -0
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.d.ts +9 -0
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +34 -0
- package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.d.ts +9 -0
- package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +41 -0
- package/src/View/Query/Wizard/NamedQueryWizard.d.ts +6 -0
- package/src/View/Query/Wizard/NamedQueryWizard.js +44 -0
- package/src/View/QuickSearch/QuickSearchPopup.d.ts +12 -0
- package/src/View/QuickSearch/QuickSearchPopup.js +58 -0
- package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +8 -0
- package/src/View/QuickSearch/QuickSearchViewPanel.js +25 -0
- package/src/View/QuickSearch/useQuickSearchDebounced.d.ts +7 -0
- package/src/View/QuickSearch/useQuickSearchDebounced.js +21 -0
- package/src/View/Schedule/ScheduleEntityRow.d.ts +5 -0
- package/src/View/Schedule/ScheduleEntityRow.js +58 -0
- package/src/View/Schedule/SchedulePopup.d.ts +58 -0
- package/src/View/Schedule/SchedulePopup.js +317 -0
- package/src/View/Schedule/Wizard/ScheduleScheduleSummary.d.ts +2 -0
- package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +14 -0
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.d.ts +10 -0
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +113 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.d.ts +9 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +24 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.d.ts +11 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +46 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.d.ts +9 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +24 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.d.ts +8 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +46 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.d.ts +11 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +35 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.d.ts +2 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +70 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.d.ts +7 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +37 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/index.d.ts +3 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/index.js +9 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.d.ts +2 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +55 -0
- package/src/View/Schedule/Wizard/ScheduleWizard.d.ts +7 -0
- package/src/View/Schedule/Wizard/ScheduleWizard.js +39 -0
- package/src/View/Shortcut/ShortcutEntityRow.d.ts +17 -0
- package/src/View/Shortcut/ShortcutEntityRow.js +47 -0
- package/src/View/Shortcut/ShortcutPopup.d.ts +30 -0
- package/src/View/Shortcut/ShortcutPopup.js +121 -0
- package/src/View/Shortcut/ShortcutSharedEntity.d.ts +5 -0
- package/src/View/Shortcut/ShortcutSharedEntity.js +19 -0
- package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.d.ts +7 -0
- package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +22 -0
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.d.ts +10 -0
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +80 -0
- package/src/View/Shortcut/Wizard/ShortcutWizard.d.ts +8 -0
- package/src/View/Shortcut/Wizard/ShortcutWizard.js +55 -0
- package/src/View/Shortcut/shortcutKeys.d.ts +1 -0
- package/src/View/Shortcut/shortcutKeys.js +31 -0
- package/src/View/Shortcut/shortcutOperations.d.ts +2 -0
- package/src/View/Shortcut/shortcutOperations.js +10 -0
- package/src/View/SmartEdit/SmartEditPopup.d.ts +26 -0
- package/src/View/SmartEdit/SmartEditPopup.js +102 -0
- package/src/View/SmartEdit/SmartEditViewPanel.d.ts +35 -0
- package/src/View/SmartEdit/SmartEditViewPanel.js +121 -0
- package/src/View/StateManagement/StateManagementPopup.d.ts +16 -0
- package/src/View/StateManagement/StateManagementPopup.js +122 -0
- package/src/View/SystemStatus/SystemStatusEntityRow.d.ts +7 -0
- package/src/View/SystemStatus/SystemStatusEntityRow.js +32 -0
- package/src/View/SystemStatus/SystemStatusPopup.d.ts +18 -0
- package/src/View/SystemStatus/SystemStatusPopup.js +49 -0
- package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +12 -0
- package/src/View/SystemStatus/SystemStatusViewPanel.js +34 -0
- package/src/View/TeamSharing/TeamSharingPopup.d.ts +23 -0
- package/src/View/TeamSharing/TeamSharingPopup.js +163 -0
- package/src/View/Theme/ThemePopup.d.ts +16 -0
- package/src/View/Theme/ThemePopup.js +61 -0
- package/src/View/Theme/ThemeViewPanel.d.ts +16 -0
- package/src/View/Theme/ThemeViewPanel.js +58 -0
- package/src/View/UIHelper.d.ts +85 -0
- package/src/View/UIHelper.js +495 -0
- package/src/View/UIInterfaces.d.ts +5 -0
- package/src/View/UIInterfaces.js +3 -0
- package/src/View/Wizard/AdaptableWizard.d.ts +56 -0
- package/src/View/Wizard/AdaptableWizard.js +159 -0
- package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +42 -0
- package/src/View/Wizard/Interface/IAdaptableWizard.js +2 -0
- package/src/View/Wizard/OnePageAdaptableWizard.d.ts +41 -0
- package/src/View/Wizard/OnePageAdaptableWizard.js +214 -0
- package/src/View/Wizard/WizardLegend.d.ts +12 -0
- package/src/View/Wizard/WizardLegend.js +29 -0
- package/src/View/Wizard/useKeyboardNavigation.d.ts +2 -0
- package/src/View/Wizard/useKeyboardNavigation.js +35 -0
- package/src/View/renderWithAdaptableContext.d.ts +3 -0
- package/src/View/renderWithAdaptableContext.js +14 -0
- package/src/agGrid/ActionColumnRenderer.d.ts +14 -0
- package/src/agGrid/ActionColumnRenderer.js +93 -0
- package/src/agGrid/Adaptable.d.ts +332 -0
- package/src/agGrid/Adaptable.js +3894 -0
- package/src/agGrid/CheckboxRenderer.d.ts +3 -0
- package/src/agGrid/CheckboxRenderer.js +35 -0
- package/src/agGrid/ColumnSetupInfo.d.ts +8 -0
- package/src/agGrid/ColumnSetupInfo.js +2 -0
- package/src/agGrid/FilterWrapper.d.ts +2 -0
- package/src/agGrid/FilterWrapper.js +54 -0
- package/src/agGrid/FloatingFilterWrapper.d.ts +2 -0
- package/src/agGrid/FloatingFilterWrapper.js +43 -0
- package/src/agGrid/GroupCellRenderer.d.ts +5 -0
- package/src/agGrid/GroupCellRenderer.js +82 -0
- package/src/agGrid/agGridHelper.d.ts +54 -0
- package/src/agGrid/agGridHelper.js +644 -0
- package/src/agGrid/agGridMenuHelper.d.ts +29 -0
- package/src/agGrid/agGridMenuHelper.js +371 -0
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.d.ts +13 -0
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +61 -0
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +40 -0
- package/src/agGrid/editors/AdaptableDateEditor/index.js +113 -0
- package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.d.ts +23 -0
- package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +74 -0
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +54 -0
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +94 -0
- package/src/agGrid/index.d.ts +4 -0
- package/src/agGrid/index.js +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/DayPicker.d.ts +88 -0
- package/src/bundle-dependencies/bundles/react-day-picker/DayPicker.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/Button.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/Button.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/ButtonProps.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/Caption.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/Caption.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/CaptionProps.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabel.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabel.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabelProps.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/Day.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/Day.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/DayProps.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/useDay.d.ts +51 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/useDayFocus.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/index.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/DayContent.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/DayContent.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/DayContentProps.d.ts +10 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/Dropdown.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/Dropdown.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/DropdownProps.d.ts +10 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/Footer.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/Footer.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/Head.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/Head.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/utils/getWeekdays.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/utils/getWeekdays.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/utils/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/IconDropdown.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/IconDropdown.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/IconNext.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/IconNext.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/IconPrevious.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/IconPrevious.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/MonthsDropdown.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/MonthsDropdownProps.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/Navigation.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/NavigationProps.d.ts +18 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Root/Root.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Root/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/Row.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/RowProps.d.ts +11 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/Table.d.ts +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getOutsideEndDays.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getOutsideStartDays.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getWeeks.d.ts +15 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/WeekNumber/WeekNumber.d.ts +15 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/WeekNumber/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/YearsDropdown/YearsDropdown.d.ts +16 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/YearsDropdown/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/index.d.ts +18 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/ContextProvider.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerContext.d.ts +78 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerContextValue.d.ts +20 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerProvider.d.ts +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/defaultClassNames.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatCaption.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatDay.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatMonthCaption.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatWeekNumber.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatWeekdayName.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatYearCaption.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/index.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/index.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelDay.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelMonthDropdown.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelNext.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelPrevious.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelWeekNumber.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelWeekday.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelYearDropdown.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/useDayPicker.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/parseFromToProps.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/parseModifierProps.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusContext.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusContextValue.d.ts +19 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusProvider.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/index.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/useFocus.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationContext.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationContextValue.d.ts +13 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationProvider.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/index.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/useNavigation.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/useNavigationState.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getDisplayMonths.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getInitialMonth.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getInitialMonth.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getNextMonth.d.ts +18 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getNextMonth.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getPreviousMonth.d.ts +19 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getPreviousMonth.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleContext.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleContextValue.d.ts +13 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleModifiers.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleProvider.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/useSelectMultiple.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeContext.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeContextValue.d.ts +13 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeModifiers.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeProvider.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/useSelectRange.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/utils/addToRange.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleContext.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleContextValue.d.ts +11 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleModifiers.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleProvider.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/useSelectSingle.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/index.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInput.d.ts +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputDayPickerProps.d.ts +14 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputFieldProps.d.ts +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputOptions.d.ts +35 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/index.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/useInput.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/utils/isValidDate.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/types/UseModifiers.d.ts +10 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/types/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/useModifiers.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/getModifierStatus.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/isDateInRange.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/isMatch.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/index.js +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/CaptionLayout.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/ClassNames.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Components.d.ts +33 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/CustomModifiers.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateAfter.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateBefore.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateFormatter.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateInterval.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateRange.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayClickEventHandler.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayFocusEventHandler.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayKeyboardEventHandler.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayLabelFormatter.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayMouseEventHandler.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayOfWeekMatcher.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerBase.d.ts +239 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerMultiple.d.ts +15 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerProps.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerRange.d.ts +16 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerSingle.d.ts +13 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerUncontrolled.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayTouchEventHandler.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Formatters.d.ts +19 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/InternalModifier.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Labels.d.ts +17 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Matcher.d.ts +10 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Modifier.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierClassNames.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierStatus.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierStyles.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Modifiers.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/MonthChangeEventHandler.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/NavButtonLabelFormatter.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectMultipleEventHandler.d.ts +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectRangeEventHandler.d.ts +10 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectSingleEventHandler.d.ts +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/StyledComponentProps.d.ts +10 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/StyledElement.d.ts +76 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Styles.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberClickEventHandler.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberFormatter.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberLabelFormatter.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekdayLabelFormatter.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/index.d.ts +54 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isArrayOfDates.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateAfterType.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateBeforeType.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateInterval.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateRange.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateType.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayOfWeekType.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerMultiple.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerRange.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerSingle.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerUncontrolled.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/CloseButton.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/ProgressBar.d.ts +55 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/Toast.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/ToastContainer.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/Transitions.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-toastify/core/eventManager.d.ts +39 -0
- package/src/bundle-dependencies/bundles/react-toastify/core/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-toastify/core/toast.d.ts +55 -0
- package/src/bundle-dependencies/bundles/react-toastify/hooks/index.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-toastify/hooks/toastContainerReducer.d.ts +15 -0
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useKeeper.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useToast.d.ts +10 -0
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useToastContainer.d.ts +16 -0
- package/src/bundle-dependencies/bundles/react-toastify/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-toastify/index.js +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/inject-style.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/components/CloseButton.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/components/ProgressBar.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/components/Toast.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/components/ToastContainer.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/core/eventManager.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/core/toast.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/helpers.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/collapseToast.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/cssTransition.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/propValidator.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/types/index.d.ts +240 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/collapseToast.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/constant.d.ts +20 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/cssTransition.d.ts +42 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/index.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/propValidator.d.ts +10 -0
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +24 -0
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +97 -0
- package/src/components/AdaptableFormComponent/index.d.ts +1 -0
- package/src/components/AdaptableFormComponent/index.js +4 -0
- package/src/components/ChartContainer/index.d.ts +15 -0
- package/src/components/ChartContainer/index.js +22 -0
- package/src/components/CheckBox/index.d.ts +24 -0
- package/src/components/CheckBox/index.js +61 -0
- package/src/components/CodeBlock/index.d.ts +4 -0
- package/src/components/CodeBlock/index.js +11 -0
- package/src/components/ContainerProps.d.ts +30 -0
- package/src/components/ContainerProps.js +2 -0
- package/src/components/Dashboard/Dashboard.d.ts +30 -0
- package/src/components/Dashboard/Dashboard.js +79 -0
- package/src/components/Dashboard/DashboardManager.d.ts +15 -0
- package/src/components/Dashboard/DashboardManager.js +165 -0
- package/src/components/Dashboard/DashboardTab.d.ts +6 -0
- package/src/components/Dashboard/DashboardTab.js +7 -0
- package/src/components/Dashboard/DashboardToolbar.d.ts +14 -0
- package/src/components/Dashboard/DashboardToolbar.js +18 -0
- package/src/components/Dashboard/index.d.ts +3 -0
- package/src/components/Dashboard/index.js +6 -0
- package/src/components/Datepicker/Caption.d.ts +7 -0
- package/src/components/Datepicker/Caption.js +50 -0
- package/src/components/Datepicker/CaptionLabel.d.ts +8 -0
- package/src/components/Datepicker/CaptionLabel.js +28 -0
- package/src/components/Datepicker/DatepickerContext.d.ts +11 -0
- package/src/components/Datepicker/DatepickerContext.js +12 -0
- package/src/components/Datepicker/index.d.ts +18 -0
- package/src/components/Datepicker/index.js +106 -0
- package/src/components/Dialog/index.d.ts +22 -0
- package/src/components/Dialog/index.js +118 -0
- package/src/components/Dialog/useIsOpen.d.ts +6 -0
- package/src/components/Dialog/useIsOpen.js +13 -0
- package/src/components/Dropdown/Arrows.d.ts +3 -0
- package/src/components/Dropdown/Arrows.js +21 -0
- package/src/components/Dropdown/index.d.ts +30 -0
- package/src/components/Dropdown/index.js +98 -0
- package/src/components/DropdownButton/DropdownButtonItem.d.ts +12 -0
- package/src/components/DropdownButton/DropdownButtonItem.js +2 -0
- package/src/components/DropdownButton/index.d.ts +28 -0
- package/src/components/DropdownButton/index.js +153 -0
- package/src/components/DropdownButton/renderItem.d.ts +14 -0
- package/src/components/DropdownButton/renderItem.js +15 -0
- package/src/components/DropdownButton/useExpanded.d.ts +24 -0
- package/src/components/DropdownButton/useExpanded.js +59 -0
- package/src/components/EllipsisContainer/index.d.ts +13 -0
- package/src/components/EllipsisContainer/index.js +106 -0
- package/src/components/EmptyContent/index.d.ts +5 -0
- package/src/components/EmptyContent/index.js +15 -0
- package/src/components/ErrorBox/index.d.ts +5 -0
- package/src/components/ErrorBox/index.js +12 -0
- package/src/components/ExpressionEditor/BaseEditorInput.d.ts +25 -0
- package/src/components/ExpressionEditor/BaseEditorInput.js +119 -0
- package/src/components/ExpressionEditor/EditorButton.d.ts +7 -0
- package/src/components/ExpressionEditor/EditorButton.js +43 -0
- package/src/components/ExpressionEditor/EditorContext.d.ts +12 -0
- package/src/components/ExpressionEditor/EditorContext.js +12 -0
- package/src/components/ExpressionEditor/EditorInput.d.ts +12 -0
- package/src/components/ExpressionEditor/EditorInput.js +16 -0
- package/src/components/ExpressionEditor/EditorInputReactive.d.ts +12 -0
- package/src/components/ExpressionEditor/EditorInputReactive.js +54 -0
- package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.d.ts +7 -0
- package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +18 -0
- package/src/components/ExpressionEditor/NamedQueryContext.d.ts +11 -0
- package/src/components/ExpressionEditor/NamedQueryContext.js +11 -0
- package/src/components/ExpressionEditor/editorButtonsReactive.d.ts +2 -0
- package/src/components/ExpressionEditor/editorButtonsReactive.js +80 -0
- package/src/components/ExpressionEditor/editorButtonsSearch.d.ts +2 -0
- package/src/components/ExpressionEditor/editorButtonsSearch.js +77 -0
- package/src/components/ExpressionEditor/index.d.ts +19 -0
- package/src/components/ExpressionEditor/index.js +184 -0
- package/src/components/FieldWrap/index.d.ts +10 -0
- package/src/components/FieldWrap/index.js +14 -0
- package/src/components/FileDroppable/FileDroppableState.d.ts +5 -0
- package/src/components/FileDroppable/FileDroppableState.js +2 -0
- package/src/components/FileDroppable/index.d.ts +21 -0
- package/src/components/FileDroppable/index.js +127 -0
- package/src/components/FileDroppable/reducer.d.ts +14 -0
- package/src/components/FileDroppable/reducer.js +26 -0
- package/src/components/FlexWithFooter.d.ts +8 -0
- package/src/components/FlexWithFooter.js +19 -0
- package/src/components/FormLayout/index.d.ts +30 -0
- package/src/components/FormLayout/index.js +82 -0
- package/src/components/HelpBlock/index.d.ts +5 -0
- package/src/components/HelpBlock/index.js +12 -0
- package/src/components/InfiniteTable/index.d.ts +3 -0
- package/src/components/InfiniteTable/index.js +13 -0
- package/src/components/Input/index.d.ts +12 -0
- package/src/components/Input/index.js +20 -0
- package/src/components/List/GridList/index.d.ts +9 -0
- package/src/components/List/GridList/index.js +27 -0
- package/src/components/List/ListGroup/index.d.ts +6 -0
- package/src/components/List/ListGroup/index.js +12 -0
- package/src/components/List/ListGroupItem/index.d.ts +12 -0
- package/src/components/List/ListGroupItem/index.js +19 -0
- package/src/components/Logo/index.d.ts +6 -0
- package/src/components/Logo/index.js +12 -0
- package/src/components/Modal/Backdrop.d.ts +19 -0
- package/src/components/Modal/Backdrop.js +51 -0
- package/src/components/Modal/index.d.ts +9 -0
- package/src/components/Modal/index.js +40 -0
- package/src/components/NotifyResize/index.d.ts +9 -0
- package/src/components/NotifyResize/index.js +37 -0
- package/src/components/OverlayTrigger/Overlay.d.ts +12 -0
- package/src/components/OverlayTrigger/Overlay.js +109 -0
- package/src/components/OverlayTrigger/getOverlayStyle.d.ts +13 -0
- package/src/components/OverlayTrigger/getOverlayStyle.js +56 -0
- package/src/components/OverlayTrigger/index.d.ts +30 -0
- package/src/components/OverlayTrigger/index.js +187 -0
- package/src/components/OverlayTrigger/useVendorClassName.d.ts +2 -0
- package/src/components/OverlayTrigger/useVendorClassName.js +14 -0
- package/src/components/OverlayTrigger/utils.d.ts +4 -0
- package/src/components/OverlayTrigger/utils.js +41 -0
- package/src/components/Panel/index.d.ts +16 -0
- package/src/components/Panel/index.js +40 -0
- package/src/components/PopupWithFooter.d.ts +14 -0
- package/src/components/PopupWithFooter.js +21 -0
- package/src/components/Radio/index.d.ts +28 -0
- package/src/components/Radio/index.js +66 -0
- package/src/components/ResizeObserver/getResizeObserverObject.d.ts +1 -0
- package/src/components/ResizeObserver/getResizeObserverObject.js +7 -0
- package/src/components/ResizeObserver/index.d.ts +37 -0
- package/src/components/ResizeObserver/index.js +104 -0
- package/src/components/SelectableList/index.d.ts +14 -0
- package/src/components/SelectableList/index.js +100 -0
- package/src/components/SimpleButton/index.d.ts +22 -0
- package/src/components/SimpleButton/index.js +73 -0
- package/src/components/SizedContainer/index.d.ts +14 -0
- package/src/components/SizedContainer/index.js +19 -0
- package/src/components/Table/index.d.ts +3 -0
- package/src/components/Table/index.js +9 -0
- package/src/components/Tabs/index.d.ts +47 -0
- package/src/components/Tabs/index.js +131 -0
- package/src/components/Textarea/index.d.ts +11 -0
- package/src/components/Textarea/index.js +20 -0
- package/src/components/Toastify/index.d.ts +3 -0
- package/src/components/Toastify/index.js +10 -0
- package/src/components/ToggleButton/index.d.ts +10 -0
- package/src/components/ToggleButton/index.js +17 -0
- package/src/components/Tooltip/index.d.ts +8 -0
- package/src/components/Tooltip/index.js +9 -0
- package/src/components/WizardPanel/index.d.ts +4 -0
- package/src/components/WizardPanel/index.js +10 -0
- package/src/components/icons/DefaultIcon.d.ts +12 -0
- package/src/components/icons/DefaultIcon.js +14 -0
- package/src/components/icons/alert.d.ts +3 -0
- package/src/components/icons/alert.js +7 -0
- package/src/components/icons/align-justify.d.ts +3 -0
- package/src/components/icons/align-justify.js +7 -0
- package/src/components/icons/application.d.ts +3 -0
- package/src/components/icons/application.js +7 -0
- package/src/components/icons/arrow-down.d.ts +3 -0
- package/src/components/icons/arrow-down.js +7 -0
- package/src/components/icons/arrow-expand.d.ts +3 -0
- package/src/components/icons/arrow-expand.js +7 -0
- package/src/components/icons/arrow-left.d.ts +3 -0
- package/src/components/icons/arrow-left.js +8 -0
- package/src/components/icons/arrow-right.d.ts +3 -0
- package/src/components/icons/arrow-right.js +7 -0
- package/src/components/icons/arrow-up.d.ts +3 -0
- package/src/components/icons/arrow-up.js +7 -0
- package/src/components/icons/attach-file.d.ts +3 -0
- package/src/components/icons/attach-file.js +8 -0
- package/src/components/icons/blanks.d.ts +3 -0
- package/src/components/icons/blanks.js +7 -0
- package/src/components/icons/boolean-list.d.ts +3 -0
- package/src/components/icons/boolean-list.js +7 -0
- package/src/components/icons/build.d.ts +3 -0
- package/src/components/icons/build.js +8 -0
- package/src/components/icons/bulk-update.d.ts +3 -0
- package/src/components/icons/bulk-update.js +11 -0
- package/src/components/icons/calculated-column.d.ts +3 -0
- package/src/components/icons/calculated-column.js +7 -0
- package/src/components/icons/calendar.d.ts +3 -0
- package/src/components/icons/calendar.js +7 -0
- package/src/components/icons/campaign.d.ts +3 -0
- package/src/components/icons/campaign.js +7 -0
- package/src/components/icons/cell-summary.d.ts +3 -0
- package/src/components/icons/cell-summary.js +7 -0
- package/src/components/icons/cell-validation.d.ts +3 -0
- package/src/components/icons/cell-validation.js +7 -0
- package/src/components/icons/chart.d.ts +3 -0
- package/src/components/icons/chart.js +7 -0
- package/src/components/icons/check-box-outline.d.ts +3 -0
- package/src/components/icons/check-box-outline.js +7 -0
- package/src/components/icons/check-box.d.ts +3 -0
- package/src/components/icons/check-box.js +7 -0
- package/src/components/icons/check-circle.d.ts +3 -0
- package/src/components/icons/check-circle.js +7 -0
- package/src/components/icons/check.d.ts +3 -0
- package/src/components/icons/check.js +7 -0
- package/src/components/icons/clear.d.ts +3 -0
- package/src/components/icons/clear.js +7 -0
- package/src/components/icons/clone.d.ts +3 -0
- package/src/components/icons/clone.js +7 -0
- package/src/components/icons/close.d.ts +3 -0
- package/src/components/icons/close.js +7 -0
- package/src/components/icons/cloud-upload.d.ts +3 -0
- package/src/components/icons/cloud-upload.js +7 -0
- package/src/components/icons/collapse.d.ts +3 -0
- package/src/components/icons/collapse.js +7 -0
- package/src/components/icons/color-drop.d.ts +3 -0
- package/src/components/icons/color-drop.js +7 -0
- package/src/components/icons/column-chooser.d.ts +3 -0
- package/src/components/icons/column-chooser.js +7 -0
- package/src/components/icons/column-filter.d.ts +3 -0
- package/src/components/icons/column-filter.js +7 -0
- package/src/components/icons/column-info.d.ts +3 -0
- package/src/components/icons/column-info.js +7 -0
- package/src/components/icons/comment.d.ts +3 -0
- package/src/components/icons/comment.js +7 -0
- package/src/components/icons/conditional-style.d.ts +3 -0
- package/src/components/icons/conditional-style.js +7 -0
- package/src/components/icons/contains.d.ts +3 -0
- package/src/components/icons/contains.js +7 -0
- package/src/components/icons/custom-sort.d.ts +3 -0
- package/src/components/icons/custom-sort.js +7 -0
- package/src/components/icons/dashboard.d.ts +3 -0
- package/src/components/icons/dashboard.js +7 -0
- package/src/components/icons/data-source.d.ts +3 -0
- package/src/components/icons/data-source.js +7 -0
- package/src/components/icons/date-range.d.ts +3 -0
- package/src/components/icons/date-range.js +8 -0
- package/src/components/icons/delete.d.ts +3 -0
- package/src/components/icons/delete.js +7 -0
- package/src/components/icons/division.d.ts +3 -0
- package/src/components/icons/division.js +7 -0
- package/src/components/icons/dock.d.ts +3 -0
- package/src/components/icons/dock.js +7 -0
- package/src/components/icons/drag.d.ts +3 -0
- package/src/components/icons/drag.js +7 -0
- package/src/components/icons/edit.d.ts +3 -0
- package/src/components/icons/edit.js +7 -0
- package/src/components/icons/equal.d.ts +3 -0
- package/src/components/icons/equal.js +7 -0
- package/src/components/icons/equation.d.ts +3 -0
- package/src/components/icons/equation.js +7 -0
- package/src/components/icons/error.d.ts +3 -0
- package/src/components/icons/error.js +7 -0
- package/src/components/icons/expand.d.ts +3 -0
- package/src/components/icons/expand.js +7 -0
- package/src/components/icons/exponent.d.ts +3 -0
- package/src/components/icons/exponent.js +7 -0
- package/src/components/icons/export.d.ts +3 -0
- package/src/components/icons/export.js +7 -0
- package/src/components/icons/fast-backward.d.ts +3 -0
- package/src/components/icons/fast-backward.js +7 -0
- package/src/components/icons/fast-forward.d.ts +3 -0
- package/src/components/icons/fast-forward.js +7 -0
- package/src/components/icons/filter-outline.d.ts +3 -0
- package/src/components/icons/filter-outline.js +7 -0
- package/src/components/icons/flashing-cell.d.ts +3 -0
- package/src/components/icons/flashing-cell.js +7 -0
- package/src/components/icons/folder-open.d.ts +3 -0
- package/src/components/icons/folder-open.js +7 -0
- package/src/components/icons/folder-shared.d.ts +3 -0
- package/src/components/icons/folder-shared.js +7 -0
- package/src/components/icons/folder.d.ts +3 -0
- package/src/components/icons/folder.js +7 -0
- package/src/components/icons/format-column.d.ts +3 -0
- package/src/components/icons/format-column.js +7 -0
- package/src/components/icons/format-letter-ends-with.d.ts +3 -0
- package/src/components/icons/format-letter-ends-with.js +7 -0
- package/src/components/icons/format-letter-starts-with.d.ts +3 -0
- package/src/components/icons/format-letter-starts-with.js +7 -0
- package/src/components/icons/freetext-column.d.ts +3 -0
- package/src/components/icons/freetext-column.js +11 -0
- package/src/components/icons/function.d.ts +3 -0
- package/src/components/icons/function.js +7 -0
- package/src/components/icons/gradient-column.d.ts +3 -0
- package/src/components/icons/gradient-column.js +7 -0
- package/src/components/icons/greater-than-or-equal.d.ts +3 -0
- package/src/components/icons/greater-than-or-equal.js +7 -0
- package/src/components/icons/greater-than.d.ts +3 -0
- package/src/components/icons/greater-than.js +7 -0
- package/src/components/icons/hide-column.d.ts +3 -0
- package/src/components/icons/hide-column.js +8 -0
- package/src/components/icons/history.d.ts +3 -0
- package/src/components/icons/history.js +7 -0
- package/src/components/icons/home.d.ts +3 -0
- package/src/components/icons/home.js +7 -0
- package/src/components/icons/import-export.d.ts +3 -0
- package/src/components/icons/import-export.js +7 -0
- package/src/components/icons/index.d.ts +14 -0
- package/src/components/icons/index.js +277 -0
- package/src/components/icons/info.d.ts +3 -0
- package/src/components/icons/info.js +7 -0
- package/src/components/icons/invalid.d.ts +3 -0
- package/src/components/icons/invalid.js +8 -0
- package/src/components/icons/ipushpull.d.ts +3 -0
- package/src/components/icons/ipushpull.js +8 -0
- package/src/components/icons/justify.d.ts +3 -0
- package/src/components/icons/justify.js +7 -0
- package/src/components/icons/layout.d.ts +3 -0
- package/src/components/icons/layout.js +7 -0
- package/src/components/icons/less-than-or-equal.d.ts +3 -0
- package/src/components/icons/less-than-or-equal.js +7 -0
- package/src/components/icons/less-than.d.ts +3 -0
- package/src/components/icons/less-than.js +7 -0
- package/src/components/icons/list.d.ts +3 -0
- package/src/components/icons/list.js +7 -0
- package/src/components/icons/login.d.ts +3 -0
- package/src/components/icons/login.js +7 -0
- package/src/components/icons/logout copy.d.ts +3 -0
- package/src/components/icons/logout copy.js +8 -0
- package/src/components/icons/logout.d.ts +3 -0
- package/src/components/icons/logout.js +8 -0
- package/src/components/icons/minus.d.ts +3 -0
- package/src/components/icons/minus.js +7 -0
- package/src/components/icons/multiplication.d.ts +3 -0
- package/src/components/icons/multiplication.js +7 -0
- package/src/components/icons/newpage.d.ts +3 -0
- package/src/components/icons/newpage.js +8 -0
- package/src/components/icons/non-blanks.d.ts +3 -0
- package/src/components/icons/non-blanks.js +7 -0
- package/src/components/icons/not-contains.d.ts +3 -0
- package/src/components/icons/not-contains.js +7 -0
- package/src/components/icons/not-equal.d.ts +3 -0
- package/src/components/icons/not-equal.js +7 -0
- package/src/components/icons/pause.d.ts +3 -0
- package/src/components/icons/pause.js +7 -0
- package/src/components/icons/percent-bar.d.ts +3 -0
- package/src/components/icons/percent-bar.js +12 -0
- package/src/components/icons/percent.d.ts +3 -0
- package/src/components/icons/percent.js +7 -0
- package/src/components/icons/pie-chart.d.ts +3 -0
- package/src/components/icons/pie-chart.js +7 -0
- package/src/components/icons/play.d.ts +3 -0
- package/src/components/icons/play.js +8 -0
- package/src/components/icons/plus-minus.d.ts +3 -0
- package/src/components/icons/plus-minus.js +7 -0
- package/src/components/icons/plus.d.ts +3 -0
- package/src/components/icons/plus.js +7 -0
- package/src/components/icons/query.d.ts +3 -0
- package/src/components/icons/query.js +7 -0
- package/src/components/icons/quick-search.d.ts +3 -0
- package/src/components/icons/quick-search.js +7 -0
- package/src/components/icons/refresh.d.ts +3 -0
- package/src/components/icons/refresh.js +7 -0
- package/src/components/icons/regex.d.ts +3 -0
- package/src/components/icons/regex.js +7 -0
- package/src/components/icons/reminder.d.ts +3 -0
- package/src/components/icons/reminder.js +7 -0
- package/src/components/icons/save.d.ts +3 -0
- package/src/components/icons/save.js +7 -0
- package/src/components/icons/schedule.d.ts +3 -0
- package/src/components/icons/schedule.js +10 -0
- package/src/components/icons/settings.d.ts +3 -0
- package/src/components/icons/settings.js +7 -0
- package/src/components/icons/shortcut.d.ts +3 -0
- package/src/components/icons/shortcut.js +7 -0
- package/src/components/icons/show-column.d.ts +3 -0
- package/src/components/icons/show-column.js +8 -0
- package/src/components/icons/smart-edit.d.ts +3 -0
- package/src/components/icons/smart-edit.js +7 -0
- package/src/components/icons/sort-asc.d.ts +3 -0
- package/src/components/icons/sort-asc.js +10 -0
- package/src/components/icons/sort-desc.d.ts +3 -0
- package/src/components/icons/sort-desc.js +10 -0
- package/src/components/icons/spark-line.d.ts +3 -0
- package/src/components/icons/spark-line.js +7 -0
- package/src/components/icons/state-management.d.ts +3 -0
- package/src/components/icons/state-management.js +7 -0
- package/src/components/icons/stop.d.ts +3 -0
- package/src/components/icons/stop.js +8 -0
- package/src/components/icons/system-status.d.ts +3 -0
- package/src/components/icons/system-status.js +7 -0
- package/src/components/icons/tab-unselected.d.ts +3 -0
- package/src/components/icons/tab-unselected.js +7 -0
- package/src/components/icons/table-arrow-right.d.ts +3 -0
- package/src/components/icons/table-arrow-right.js +7 -0
- package/src/components/icons/team-share.d.ts +3 -0
- package/src/components/icons/team-share.js +7 -0
- package/src/components/icons/theme.d.ts +3 -0
- package/src/components/icons/theme.js +8 -0
- package/src/components/icons/track-changes.d.ts +3 -0
- package/src/components/icons/track-changes.js +8 -0
- package/src/components/icons/triangle-down.d.ts +3 -0
- package/src/components/icons/triangle-down.js +7 -0
- package/src/components/icons/triangle-up.d.ts +3 -0
- package/src/components/icons/triangle-up.js +7 -0
- package/src/components/icons/unchecked.d.ts +3 -0
- package/src/components/icons/unchecked.js +7 -0
- package/src/components/icons/undo.d.ts +3 -0
- package/src/components/icons/undo.js +7 -0
- package/src/components/icons/updated-row.d.ts +3 -0
- package/src/components/icons/updated-row.js +7 -0
- package/src/components/icons/user-filter.d.ts +3 -0
- package/src/components/icons/user-filter.js +7 -0
- package/src/components/icons/warning.d.ts +3 -0
- package/src/components/icons/warning.js +7 -0
- package/src/components/utils/batchUpdate.d.ts +9 -0
- package/src/components/utils/batchUpdate.js +27 -0
- package/src/components/utils/captureTabNavigation/getFocusableChildren.d.ts +2 -0
- package/src/components/utils/captureTabNavigation/getFocusableChildren.js +16 -0
- package/src/components/utils/captureTabNavigation/index.d.ts +2 -0
- package/src/components/utils/captureTabNavigation/index.js +29 -0
- package/src/components/utils/contains.d.ts +1 -0
- package/src/components/utils/contains.js +14 -0
- package/src/components/utils/getAvailableSizeInfo.d.ts +21 -0
- package/src/components/utils/getAvailableSizeInfo.js +37 -0
- package/src/components/utils/join.d.ts +2 -0
- package/src/components/utils/join.js +4 -0
- package/src/components/utils/selectParent/index.d.ts +2 -0
- package/src/components/utils/selectParent/index.js +15 -0
- package/src/components/utils/selectParent/matches.d.ts +2 -0
- package/src/components/utils/selectParent/matches.js +9 -0
- package/src/components/utils/useAutoFocus.d.ts +12 -0
- package/src/components/utils/useAutoFocus.js +19 -0
- package/src/components/utils/useContainerScrollObserver/index.d.ts +6 -0
- package/src/components/utils/useContainerScrollObserver/index.js +80 -0
- package/src/components/utils/useDraggable.d.ts +9 -0
- package/src/components/utils/useDraggable.js +84 -0
- package/src/components/utils/useGlobalEvent.d.ts +1 -0
- package/src/components/utils/useGlobalEvent.js +11 -0
- package/src/components/utils/useLatest.d.ts +1 -0
- package/src/components/utils/useLatest.js +9 -0
- package/src/components/utils/usePrevious.d.ts +2 -0
- package/src/components/utils/usePrevious.js +11 -0
- package/src/components/utils/usePropState.d.ts +2 -0
- package/src/components/utils/usePropState.js +11 -0
- package/src/components/utils/useProperty.d.ts +22 -0
- package/src/components/utils/useProperty.js +49 -0
- package/src/components/utils/useRerender.d.ts +1 -0
- package/src/components/utils/useRerender.js +10 -0
- package/src/components/utils/useSelectionRange.d.ts +5 -0
- package/src/components/utils/useSelectionRange.js +24 -0
- package/src/components/utils/useTheme.d.ts +32 -0
- package/src/components/utils/useTheme.js +5 -0
- package/src/components/utils/uuid.d.ts +2 -0
- package/src/components/utils/uuid.js +5 -0
- package/src/env.d.ts +4 -0
- package/src/env.js +7 -0
- package/src/metamodel/adaptable-metamodel-model.d.ts +19 -0
- package/src/metamodel/adaptable-metamodel-model.js +2 -0
- package/src/metamodel/adaptable.metamodel.d.ts +3313 -0
- package/src/metamodel/adaptable.metamodel.js +10638 -0
- package/src/parser/src/evaluator.d.ts +2 -0
- package/src/parser/src/evaluator.js +25 -0
- package/src/parser/src/index.d.ts +8 -0
- package/src/parser/src/index.js +30 -0
- package/src/parser/src/parser.js +1653 -0
- package/src/parser/src/tokenizer.d.ts +2 -0
- package/src/parser/src/tokenizer.js +21 -0
- package/src/parser/src/types.d.ts +94 -0
- package/src/parser/src/types.js +2 -0
- package/src/parser/src/utils.d.ts +4 -0
- package/src/parser/src/utils.js +34 -0
- package/src/theme.d.ts +32 -0
- package/src/theme.js +51 -0
- package/src/themes/index.d.ts +2 -0
- package/src/themes/index.js +14 -0
- package/src/types.d.ts +142 -0
- package/src/types.js +5 -0
- package/themes/dark.css +16 -0
- package/themes/light.css +2 -0
- package/types.d.ts +1 -0
- package/types.js +4 -0
- package/version.d.ts +2 -0
- package/version.js +3 -0
|
@@ -0,0 +1,3313 @@
|
|
|
1
|
+
export declare const ADAPTABLE_METAMODEL: {
|
|
2
|
+
AccessLevel: {
|
|
3
|
+
name: string;
|
|
4
|
+
kind: string;
|
|
5
|
+
description: string;
|
|
6
|
+
};
|
|
7
|
+
ActionColumn: {
|
|
8
|
+
name: string;
|
|
9
|
+
kind: string;
|
|
10
|
+
description: string;
|
|
11
|
+
properties: ({
|
|
12
|
+
name: string;
|
|
13
|
+
kind: string;
|
|
14
|
+
description: string;
|
|
15
|
+
uiLabel: string;
|
|
16
|
+
isOptional?: undefined;
|
|
17
|
+
} | {
|
|
18
|
+
name: string;
|
|
19
|
+
kind: string;
|
|
20
|
+
description: string;
|
|
21
|
+
uiLabel: string;
|
|
22
|
+
isOptional: boolean;
|
|
23
|
+
})[];
|
|
24
|
+
};
|
|
25
|
+
ActionColumnButtonContext: {
|
|
26
|
+
name: string;
|
|
27
|
+
kind: string;
|
|
28
|
+
description: string;
|
|
29
|
+
properties: ({
|
|
30
|
+
name: string;
|
|
31
|
+
kind: string;
|
|
32
|
+
description: string;
|
|
33
|
+
uiLabel: string;
|
|
34
|
+
reference: string;
|
|
35
|
+
} | {
|
|
36
|
+
name: string;
|
|
37
|
+
kind: string;
|
|
38
|
+
description: string;
|
|
39
|
+
uiLabel: string;
|
|
40
|
+
reference?: undefined;
|
|
41
|
+
})[];
|
|
42
|
+
};
|
|
43
|
+
ActionHandler: {
|
|
44
|
+
name: string;
|
|
45
|
+
kind: string;
|
|
46
|
+
description: string;
|
|
47
|
+
};
|
|
48
|
+
AdaptableAlert: {
|
|
49
|
+
name: string;
|
|
50
|
+
kind: string;
|
|
51
|
+
description: string;
|
|
52
|
+
properties: ({
|
|
53
|
+
name: string;
|
|
54
|
+
kind: string;
|
|
55
|
+
description: string;
|
|
56
|
+
uiLabel: string;
|
|
57
|
+
reference: string;
|
|
58
|
+
isOptional?: undefined;
|
|
59
|
+
} | {
|
|
60
|
+
name: string;
|
|
61
|
+
kind: string;
|
|
62
|
+
description: string;
|
|
63
|
+
uiLabel: string;
|
|
64
|
+
isOptional: boolean;
|
|
65
|
+
reference: string;
|
|
66
|
+
} | {
|
|
67
|
+
name: string;
|
|
68
|
+
kind: string;
|
|
69
|
+
description: string;
|
|
70
|
+
uiLabel: string;
|
|
71
|
+
reference?: undefined;
|
|
72
|
+
isOptional?: undefined;
|
|
73
|
+
})[];
|
|
74
|
+
};
|
|
75
|
+
AdaptableApi: {
|
|
76
|
+
name: string;
|
|
77
|
+
kind: string;
|
|
78
|
+
description: string;
|
|
79
|
+
properties: ({
|
|
80
|
+
name: string;
|
|
81
|
+
kind: string;
|
|
82
|
+
description: string;
|
|
83
|
+
uiLabel: string;
|
|
84
|
+
reference: string;
|
|
85
|
+
} | {
|
|
86
|
+
name: string;
|
|
87
|
+
kind: string;
|
|
88
|
+
description: string;
|
|
89
|
+
uiLabel: string;
|
|
90
|
+
reference?: undefined;
|
|
91
|
+
})[];
|
|
92
|
+
};
|
|
93
|
+
AdaptableButton: {
|
|
94
|
+
name: string;
|
|
95
|
+
kind: string;
|
|
96
|
+
description: string;
|
|
97
|
+
properties: ({
|
|
98
|
+
name: string;
|
|
99
|
+
kind: string;
|
|
100
|
+
description: string;
|
|
101
|
+
uiLabel: string;
|
|
102
|
+
isOptional: boolean;
|
|
103
|
+
reference?: undefined;
|
|
104
|
+
} | {
|
|
105
|
+
name: string;
|
|
106
|
+
kind: string;
|
|
107
|
+
description: string;
|
|
108
|
+
uiLabel: string;
|
|
109
|
+
isOptional: boolean;
|
|
110
|
+
reference: string;
|
|
111
|
+
})[];
|
|
112
|
+
};
|
|
113
|
+
AdaptableColumn: {
|
|
114
|
+
name: string;
|
|
115
|
+
kind: string;
|
|
116
|
+
description: string;
|
|
117
|
+
properties: ({
|
|
118
|
+
name: string;
|
|
119
|
+
kind: string;
|
|
120
|
+
description: string;
|
|
121
|
+
uiLabel: string;
|
|
122
|
+
isOptional?: undefined;
|
|
123
|
+
reference?: undefined;
|
|
124
|
+
} | {
|
|
125
|
+
name: string;
|
|
126
|
+
kind: string;
|
|
127
|
+
description: string;
|
|
128
|
+
uiLabel: string;
|
|
129
|
+
isOptional: boolean;
|
|
130
|
+
reference?: undefined;
|
|
131
|
+
} | {
|
|
132
|
+
name: string;
|
|
133
|
+
kind: string;
|
|
134
|
+
description: string;
|
|
135
|
+
uiLabel: string;
|
|
136
|
+
isOptional: boolean;
|
|
137
|
+
reference: string;
|
|
138
|
+
})[];
|
|
139
|
+
};
|
|
140
|
+
AdaptableColumnBase: {
|
|
141
|
+
name: string;
|
|
142
|
+
kind: string;
|
|
143
|
+
description: string;
|
|
144
|
+
properties: {
|
|
145
|
+
name: string;
|
|
146
|
+
kind: string;
|
|
147
|
+
description: string;
|
|
148
|
+
uiLabel: string;
|
|
149
|
+
}[];
|
|
150
|
+
};
|
|
151
|
+
AdaptableComparerFunction: {
|
|
152
|
+
name: string;
|
|
153
|
+
kind: string;
|
|
154
|
+
description: string;
|
|
155
|
+
};
|
|
156
|
+
AdaptableCoordinate: {
|
|
157
|
+
name: string;
|
|
158
|
+
kind: string;
|
|
159
|
+
description: string;
|
|
160
|
+
properties: {
|
|
161
|
+
name: string;
|
|
162
|
+
kind: string;
|
|
163
|
+
description: string;
|
|
164
|
+
uiLabel: string;
|
|
165
|
+
}[];
|
|
166
|
+
};
|
|
167
|
+
AdaptableFlashingAlert: {
|
|
168
|
+
name: string;
|
|
169
|
+
kind: string;
|
|
170
|
+
description: string;
|
|
171
|
+
properties: ({
|
|
172
|
+
name: string;
|
|
173
|
+
kind: string;
|
|
174
|
+
description: string;
|
|
175
|
+
uiLabel: string;
|
|
176
|
+
isOptional: boolean;
|
|
177
|
+
reference: string;
|
|
178
|
+
} | {
|
|
179
|
+
name: string;
|
|
180
|
+
kind: string;
|
|
181
|
+
description: string;
|
|
182
|
+
uiLabel: string;
|
|
183
|
+
isOptional?: undefined;
|
|
184
|
+
reference?: undefined;
|
|
185
|
+
} | {
|
|
186
|
+
name: string;
|
|
187
|
+
kind: string;
|
|
188
|
+
description: string;
|
|
189
|
+
uiLabel: string;
|
|
190
|
+
reference: string;
|
|
191
|
+
isOptional?: undefined;
|
|
192
|
+
})[];
|
|
193
|
+
};
|
|
194
|
+
AdaptableForm: {
|
|
195
|
+
name: string;
|
|
196
|
+
kind: string;
|
|
197
|
+
description: string;
|
|
198
|
+
properties: {
|
|
199
|
+
name: string;
|
|
200
|
+
kind: string;
|
|
201
|
+
description: string;
|
|
202
|
+
uiLabel: string;
|
|
203
|
+
isOptional: boolean;
|
|
204
|
+
}[];
|
|
205
|
+
};
|
|
206
|
+
AdaptableFormat: {
|
|
207
|
+
name: string;
|
|
208
|
+
kind: string;
|
|
209
|
+
description: string;
|
|
210
|
+
};
|
|
211
|
+
AdaptableFormField: {
|
|
212
|
+
name: string;
|
|
213
|
+
kind: string;
|
|
214
|
+
description: string;
|
|
215
|
+
properties: ({
|
|
216
|
+
name: string;
|
|
217
|
+
kind: string;
|
|
218
|
+
description: string;
|
|
219
|
+
uiLabel: string;
|
|
220
|
+
isOptional: boolean;
|
|
221
|
+
} | {
|
|
222
|
+
name: string;
|
|
223
|
+
kind: string;
|
|
224
|
+
description: string;
|
|
225
|
+
uiLabel: string;
|
|
226
|
+
isOptional?: undefined;
|
|
227
|
+
})[];
|
|
228
|
+
};
|
|
229
|
+
AdaptableIcon: {
|
|
230
|
+
name: string;
|
|
231
|
+
kind: string;
|
|
232
|
+
description: string;
|
|
233
|
+
properties: ({
|
|
234
|
+
name: string;
|
|
235
|
+
kind: string;
|
|
236
|
+
description: string;
|
|
237
|
+
uiLabel: string;
|
|
238
|
+
isOptional: boolean;
|
|
239
|
+
reference: string;
|
|
240
|
+
} | {
|
|
241
|
+
name: string;
|
|
242
|
+
kind: string;
|
|
243
|
+
description: string;
|
|
244
|
+
uiLabel: string;
|
|
245
|
+
isOptional?: undefined;
|
|
246
|
+
reference?: undefined;
|
|
247
|
+
} | {
|
|
248
|
+
name: string;
|
|
249
|
+
kind: string;
|
|
250
|
+
description: string;
|
|
251
|
+
uiLabel: string;
|
|
252
|
+
isOptional: boolean;
|
|
253
|
+
reference?: undefined;
|
|
254
|
+
})[];
|
|
255
|
+
};
|
|
256
|
+
AdaptableLoadStateFunction: {
|
|
257
|
+
name: string;
|
|
258
|
+
kind: string;
|
|
259
|
+
description: string;
|
|
260
|
+
};
|
|
261
|
+
AdaptableMenuItem: {
|
|
262
|
+
name: string;
|
|
263
|
+
kind: string;
|
|
264
|
+
description: string;
|
|
265
|
+
properties: ({
|
|
266
|
+
name: string;
|
|
267
|
+
kind: string;
|
|
268
|
+
description: string;
|
|
269
|
+
uiLabel: string;
|
|
270
|
+
isOptional: boolean;
|
|
271
|
+
} | {
|
|
272
|
+
name: string;
|
|
273
|
+
kind: string;
|
|
274
|
+
description: string;
|
|
275
|
+
uiLabel: string;
|
|
276
|
+
isOptional?: undefined;
|
|
277
|
+
})[];
|
|
278
|
+
};
|
|
279
|
+
AdaptableMessageType: {
|
|
280
|
+
name: string;
|
|
281
|
+
kind: string;
|
|
282
|
+
description: string;
|
|
283
|
+
};
|
|
284
|
+
AdaptableObject: {
|
|
285
|
+
name: string;
|
|
286
|
+
kind: string;
|
|
287
|
+
description: string;
|
|
288
|
+
properties: ({
|
|
289
|
+
name: string;
|
|
290
|
+
kind: string;
|
|
291
|
+
description: string;
|
|
292
|
+
uiLabel: string;
|
|
293
|
+
isOptional: boolean;
|
|
294
|
+
reference?: undefined;
|
|
295
|
+
} | {
|
|
296
|
+
name: string;
|
|
297
|
+
kind: string;
|
|
298
|
+
description: string;
|
|
299
|
+
uiLabel: string;
|
|
300
|
+
isOptional: boolean;
|
|
301
|
+
reference: string;
|
|
302
|
+
})[];
|
|
303
|
+
};
|
|
304
|
+
AdaptableOptions: {
|
|
305
|
+
name: string;
|
|
306
|
+
kind: string;
|
|
307
|
+
description: string;
|
|
308
|
+
properties: ({
|
|
309
|
+
name: string;
|
|
310
|
+
kind: string;
|
|
311
|
+
description: string;
|
|
312
|
+
uiLabel: string;
|
|
313
|
+
isOptional: boolean;
|
|
314
|
+
gridInfo: string;
|
|
315
|
+
defaultValue: string;
|
|
316
|
+
reference?: undefined;
|
|
317
|
+
} | {
|
|
318
|
+
name: string;
|
|
319
|
+
kind: string;
|
|
320
|
+
description: string;
|
|
321
|
+
uiLabel: string;
|
|
322
|
+
isOptional: boolean;
|
|
323
|
+
gridInfo: string;
|
|
324
|
+
reference: string;
|
|
325
|
+
defaultValue?: undefined;
|
|
326
|
+
} | {
|
|
327
|
+
name: string;
|
|
328
|
+
kind: string;
|
|
329
|
+
description: string;
|
|
330
|
+
uiLabel: string;
|
|
331
|
+
isOptional: boolean;
|
|
332
|
+
reference: string;
|
|
333
|
+
gridInfo?: undefined;
|
|
334
|
+
defaultValue?: undefined;
|
|
335
|
+
} | {
|
|
336
|
+
name: string;
|
|
337
|
+
kind: string;
|
|
338
|
+
description: string;
|
|
339
|
+
uiLabel: string;
|
|
340
|
+
isOptional: boolean;
|
|
341
|
+
gridInfo?: undefined;
|
|
342
|
+
defaultValue?: undefined;
|
|
343
|
+
reference?: undefined;
|
|
344
|
+
} | {
|
|
345
|
+
name: string;
|
|
346
|
+
kind: string;
|
|
347
|
+
description: string;
|
|
348
|
+
uiLabel: string;
|
|
349
|
+
isOptional: boolean;
|
|
350
|
+
defaultValue: string;
|
|
351
|
+
gridInfo?: undefined;
|
|
352
|
+
reference?: undefined;
|
|
353
|
+
} | {
|
|
354
|
+
name: string;
|
|
355
|
+
kind: string;
|
|
356
|
+
description: string;
|
|
357
|
+
uiLabel: string;
|
|
358
|
+
gridInfo: string;
|
|
359
|
+
defaultValue: string;
|
|
360
|
+
isOptional?: undefined;
|
|
361
|
+
reference?: undefined;
|
|
362
|
+
})[];
|
|
363
|
+
};
|
|
364
|
+
AdaptablePersistStateFunction: {
|
|
365
|
+
name: string;
|
|
366
|
+
kind: string;
|
|
367
|
+
description: string;
|
|
368
|
+
};
|
|
369
|
+
AdaptablePredicate: {
|
|
370
|
+
name: string;
|
|
371
|
+
kind: string;
|
|
372
|
+
description: string;
|
|
373
|
+
properties: ({
|
|
374
|
+
name: string;
|
|
375
|
+
kind: string;
|
|
376
|
+
description: string;
|
|
377
|
+
uiLabel: string;
|
|
378
|
+
isOptional: boolean;
|
|
379
|
+
} | {
|
|
380
|
+
name: string;
|
|
381
|
+
kind: string;
|
|
382
|
+
description: string;
|
|
383
|
+
uiLabel: string;
|
|
384
|
+
isOptional?: undefined;
|
|
385
|
+
})[];
|
|
386
|
+
};
|
|
387
|
+
AdaptablePredicateDef: {
|
|
388
|
+
name: string;
|
|
389
|
+
kind: string;
|
|
390
|
+
description: string;
|
|
391
|
+
properties: ({
|
|
392
|
+
name: string;
|
|
393
|
+
kind: string;
|
|
394
|
+
description: string;
|
|
395
|
+
uiLabel: string;
|
|
396
|
+
reference: string;
|
|
397
|
+
isOptional?: undefined;
|
|
398
|
+
} | {
|
|
399
|
+
name: string;
|
|
400
|
+
kind: string;
|
|
401
|
+
description: string;
|
|
402
|
+
uiLabel: string;
|
|
403
|
+
reference?: undefined;
|
|
404
|
+
isOptional?: undefined;
|
|
405
|
+
} | {
|
|
406
|
+
name: string;
|
|
407
|
+
kind: string;
|
|
408
|
+
description: string;
|
|
409
|
+
uiLabel: string;
|
|
410
|
+
isOptional: boolean;
|
|
411
|
+
reference?: undefined;
|
|
412
|
+
})[];
|
|
413
|
+
};
|
|
414
|
+
AdaptableReadyInfo: {
|
|
415
|
+
name: string;
|
|
416
|
+
kind: string;
|
|
417
|
+
description: string;
|
|
418
|
+
properties: ({
|
|
419
|
+
name: string;
|
|
420
|
+
kind: string;
|
|
421
|
+
description: string;
|
|
422
|
+
uiLabel: string;
|
|
423
|
+
reference: string;
|
|
424
|
+
} | {
|
|
425
|
+
name: string;
|
|
426
|
+
kind: string;
|
|
427
|
+
description: string;
|
|
428
|
+
uiLabel: string;
|
|
429
|
+
reference?: undefined;
|
|
430
|
+
})[];
|
|
431
|
+
};
|
|
432
|
+
AdaptableScope: {
|
|
433
|
+
name: string;
|
|
434
|
+
kind: string;
|
|
435
|
+
description: string;
|
|
436
|
+
};
|
|
437
|
+
AdaptableSearchState: {
|
|
438
|
+
name: string;
|
|
439
|
+
kind: string;
|
|
440
|
+
description: string;
|
|
441
|
+
properties: {
|
|
442
|
+
name: string;
|
|
443
|
+
kind: string;
|
|
444
|
+
description: string;
|
|
445
|
+
uiLabel: string;
|
|
446
|
+
}[];
|
|
447
|
+
};
|
|
448
|
+
AdaptableSortState: {
|
|
449
|
+
name: string;
|
|
450
|
+
kind: string;
|
|
451
|
+
description: string;
|
|
452
|
+
properties: {
|
|
453
|
+
name: string;
|
|
454
|
+
kind: string;
|
|
455
|
+
description: string;
|
|
456
|
+
uiLabel: string;
|
|
457
|
+
}[];
|
|
458
|
+
};
|
|
459
|
+
AdaptableState: {
|
|
460
|
+
name: string;
|
|
461
|
+
kind: string;
|
|
462
|
+
description: string;
|
|
463
|
+
};
|
|
464
|
+
AdaptableStateChangedInfo: {
|
|
465
|
+
name: string;
|
|
466
|
+
kind: string;
|
|
467
|
+
description: string;
|
|
468
|
+
properties: ({
|
|
469
|
+
name: string;
|
|
470
|
+
kind: string;
|
|
471
|
+
description: string;
|
|
472
|
+
uiLabel: string;
|
|
473
|
+
reference?: undefined;
|
|
474
|
+
} | {
|
|
475
|
+
name: string;
|
|
476
|
+
kind: string;
|
|
477
|
+
description: string;
|
|
478
|
+
uiLabel: string;
|
|
479
|
+
reference: string;
|
|
480
|
+
})[];
|
|
481
|
+
};
|
|
482
|
+
AdaptableStyle: {
|
|
483
|
+
name: string;
|
|
484
|
+
kind: string;
|
|
485
|
+
description: string;
|
|
486
|
+
properties: {
|
|
487
|
+
name: string;
|
|
488
|
+
kind: string;
|
|
489
|
+
description: string;
|
|
490
|
+
uiLabel: string;
|
|
491
|
+
isOptional: boolean;
|
|
492
|
+
}[];
|
|
493
|
+
};
|
|
494
|
+
AdaptableTheme: {
|
|
495
|
+
name: string;
|
|
496
|
+
kind: string;
|
|
497
|
+
description: string;
|
|
498
|
+
properties: ({
|
|
499
|
+
name: string;
|
|
500
|
+
kind: string;
|
|
501
|
+
description: string;
|
|
502
|
+
uiLabel: string;
|
|
503
|
+
isOptional?: undefined;
|
|
504
|
+
} | {
|
|
505
|
+
name: string;
|
|
506
|
+
kind: string;
|
|
507
|
+
description: string;
|
|
508
|
+
uiLabel: string;
|
|
509
|
+
isOptional: boolean;
|
|
510
|
+
})[];
|
|
511
|
+
};
|
|
512
|
+
AdaptableToolPanelDefinition: {
|
|
513
|
+
name: string;
|
|
514
|
+
kind: string;
|
|
515
|
+
description: string;
|
|
516
|
+
properties: ({
|
|
517
|
+
name: string;
|
|
518
|
+
kind: string;
|
|
519
|
+
description: string;
|
|
520
|
+
uiLabel: string;
|
|
521
|
+
isOptional?: undefined;
|
|
522
|
+
defaultValue?: undefined;
|
|
523
|
+
} | {
|
|
524
|
+
name: string;
|
|
525
|
+
kind: string;
|
|
526
|
+
description: string;
|
|
527
|
+
uiLabel: string;
|
|
528
|
+
isOptional: boolean;
|
|
529
|
+
defaultValue: string;
|
|
530
|
+
})[];
|
|
531
|
+
};
|
|
532
|
+
AlertApi: {
|
|
533
|
+
name: string;
|
|
534
|
+
kind: string;
|
|
535
|
+
description: string;
|
|
536
|
+
properties: {
|
|
537
|
+
name: string;
|
|
538
|
+
kind: string;
|
|
539
|
+
description: string;
|
|
540
|
+
uiLabel: string;
|
|
541
|
+
}[];
|
|
542
|
+
};
|
|
543
|
+
AlertButton: {
|
|
544
|
+
name: string;
|
|
545
|
+
kind: string;
|
|
546
|
+
description: string;
|
|
547
|
+
properties: ({
|
|
548
|
+
name: string;
|
|
549
|
+
kind: string;
|
|
550
|
+
description: string;
|
|
551
|
+
uiLabel: string;
|
|
552
|
+
isOptional: boolean;
|
|
553
|
+
reference?: undefined;
|
|
554
|
+
} | {
|
|
555
|
+
name: string;
|
|
556
|
+
kind: string;
|
|
557
|
+
description: string;
|
|
558
|
+
uiLabel: string;
|
|
559
|
+
isOptional: boolean;
|
|
560
|
+
reference: string;
|
|
561
|
+
} | {
|
|
562
|
+
name: string;
|
|
563
|
+
kind: string;
|
|
564
|
+
description: string;
|
|
565
|
+
uiLabel: string;
|
|
566
|
+
isOptional?: undefined;
|
|
567
|
+
reference?: undefined;
|
|
568
|
+
})[];
|
|
569
|
+
};
|
|
570
|
+
AlertButtonContext: {
|
|
571
|
+
name: string;
|
|
572
|
+
kind: string;
|
|
573
|
+
description: string;
|
|
574
|
+
properties: ({
|
|
575
|
+
name: string;
|
|
576
|
+
kind: string;
|
|
577
|
+
description: string;
|
|
578
|
+
uiLabel: string;
|
|
579
|
+
reference: string;
|
|
580
|
+
isOptional?: undefined;
|
|
581
|
+
} | {
|
|
582
|
+
name: string;
|
|
583
|
+
kind: string;
|
|
584
|
+
description: string;
|
|
585
|
+
uiLabel: string;
|
|
586
|
+
isOptional: boolean;
|
|
587
|
+
reference: string;
|
|
588
|
+
})[];
|
|
589
|
+
};
|
|
590
|
+
AlertDefinition: {
|
|
591
|
+
name: string;
|
|
592
|
+
kind: string;
|
|
593
|
+
description: string;
|
|
594
|
+
properties: ({
|
|
595
|
+
name: string;
|
|
596
|
+
kind: string;
|
|
597
|
+
description: string;
|
|
598
|
+
uiLabel: string;
|
|
599
|
+
isOptional: boolean;
|
|
600
|
+
reference?: undefined;
|
|
601
|
+
} | {
|
|
602
|
+
name: string;
|
|
603
|
+
kind: string;
|
|
604
|
+
description: string;
|
|
605
|
+
uiLabel: string;
|
|
606
|
+
isOptional: boolean;
|
|
607
|
+
reference: string;
|
|
608
|
+
} | {
|
|
609
|
+
name: string;
|
|
610
|
+
kind: string;
|
|
611
|
+
description: string;
|
|
612
|
+
uiLabel: string;
|
|
613
|
+
reference: string;
|
|
614
|
+
isOptional?: undefined;
|
|
615
|
+
})[];
|
|
616
|
+
};
|
|
617
|
+
AlertFiredInfo: {
|
|
618
|
+
name: string;
|
|
619
|
+
kind: string;
|
|
620
|
+
description: string;
|
|
621
|
+
properties: {
|
|
622
|
+
name: string;
|
|
623
|
+
kind: string;
|
|
624
|
+
description: string;
|
|
625
|
+
uiLabel: string;
|
|
626
|
+
reference: string;
|
|
627
|
+
}[];
|
|
628
|
+
};
|
|
629
|
+
AlertForm: {
|
|
630
|
+
name: string;
|
|
631
|
+
kind: string;
|
|
632
|
+
description: string;
|
|
633
|
+
};
|
|
634
|
+
AlertOptions: {
|
|
635
|
+
name: string;
|
|
636
|
+
kind: string;
|
|
637
|
+
description: string;
|
|
638
|
+
properties: ({
|
|
639
|
+
name: string;
|
|
640
|
+
kind: string;
|
|
641
|
+
description: string;
|
|
642
|
+
uiLabel: string;
|
|
643
|
+
isOptional: boolean;
|
|
644
|
+
gridInfo?: undefined;
|
|
645
|
+
defaultValue?: undefined;
|
|
646
|
+
reference?: undefined;
|
|
647
|
+
} | {
|
|
648
|
+
name: string;
|
|
649
|
+
kind: string;
|
|
650
|
+
description: string;
|
|
651
|
+
uiLabel: string;
|
|
652
|
+
isOptional: boolean;
|
|
653
|
+
gridInfo: string;
|
|
654
|
+
defaultValue: string;
|
|
655
|
+
reference?: undefined;
|
|
656
|
+
} | {
|
|
657
|
+
name: string;
|
|
658
|
+
kind: string;
|
|
659
|
+
description: string;
|
|
660
|
+
uiLabel: string;
|
|
661
|
+
isOptional: boolean;
|
|
662
|
+
defaultValue: string;
|
|
663
|
+
reference: string;
|
|
664
|
+
gridInfo?: undefined;
|
|
665
|
+
} | {
|
|
666
|
+
name: string;
|
|
667
|
+
kind: string;
|
|
668
|
+
description: string;
|
|
669
|
+
uiLabel: string;
|
|
670
|
+
isOptional: boolean;
|
|
671
|
+
gridInfo: string;
|
|
672
|
+
defaultValue: string;
|
|
673
|
+
reference: string;
|
|
674
|
+
})[];
|
|
675
|
+
};
|
|
676
|
+
AlertProperties: {
|
|
677
|
+
name: string;
|
|
678
|
+
kind: string;
|
|
679
|
+
description: string;
|
|
680
|
+
properties: {
|
|
681
|
+
name: string;
|
|
682
|
+
kind: string;
|
|
683
|
+
description: string;
|
|
684
|
+
uiLabel: string;
|
|
685
|
+
isOptional: boolean;
|
|
686
|
+
}[];
|
|
687
|
+
};
|
|
688
|
+
AlertState: {
|
|
689
|
+
name: string;
|
|
690
|
+
kind: string;
|
|
691
|
+
description: string;
|
|
692
|
+
properties: {
|
|
693
|
+
name: string;
|
|
694
|
+
kind: string;
|
|
695
|
+
description: string;
|
|
696
|
+
uiLabel: string;
|
|
697
|
+
isOptional: boolean;
|
|
698
|
+
defaultValue: string;
|
|
699
|
+
}[];
|
|
700
|
+
};
|
|
701
|
+
AlternativeModuleName: {
|
|
702
|
+
name: string;
|
|
703
|
+
kind: string;
|
|
704
|
+
description: string;
|
|
705
|
+
properties: ({
|
|
706
|
+
name: string;
|
|
707
|
+
kind: string;
|
|
708
|
+
description: string;
|
|
709
|
+
uiLabel: string;
|
|
710
|
+
reference: string;
|
|
711
|
+
} | {
|
|
712
|
+
name: string;
|
|
713
|
+
kind: string;
|
|
714
|
+
description: string;
|
|
715
|
+
uiLabel: string;
|
|
716
|
+
reference?: undefined;
|
|
717
|
+
})[];
|
|
718
|
+
};
|
|
719
|
+
AngularFrameworkComponent: {
|
|
720
|
+
name: string;
|
|
721
|
+
kind: string;
|
|
722
|
+
description: string;
|
|
723
|
+
};
|
|
724
|
+
ApplicationApi: {
|
|
725
|
+
name: string;
|
|
726
|
+
kind: string;
|
|
727
|
+
description: string;
|
|
728
|
+
properties: {
|
|
729
|
+
name: string;
|
|
730
|
+
kind: string;
|
|
731
|
+
description: string;
|
|
732
|
+
uiLabel: string;
|
|
733
|
+
}[];
|
|
734
|
+
};
|
|
735
|
+
ApplicationDataEntry: {
|
|
736
|
+
name: string;
|
|
737
|
+
kind: string;
|
|
738
|
+
description: string;
|
|
739
|
+
properties: {
|
|
740
|
+
name: string;
|
|
741
|
+
kind: string;
|
|
742
|
+
description: string;
|
|
743
|
+
uiLabel: string;
|
|
744
|
+
}[];
|
|
745
|
+
};
|
|
746
|
+
ApplicationState: {
|
|
747
|
+
name: string;
|
|
748
|
+
kind: string;
|
|
749
|
+
description: string;
|
|
750
|
+
properties: {
|
|
751
|
+
name: string;
|
|
752
|
+
kind: string;
|
|
753
|
+
description: string;
|
|
754
|
+
uiLabel: string;
|
|
755
|
+
isOptional: boolean;
|
|
756
|
+
}[];
|
|
757
|
+
};
|
|
758
|
+
BaseAlertDefinition: {
|
|
759
|
+
name: string;
|
|
760
|
+
kind: string;
|
|
761
|
+
description: string;
|
|
762
|
+
properties: {
|
|
763
|
+
name: string;
|
|
764
|
+
kind: string;
|
|
765
|
+
description: string;
|
|
766
|
+
uiLabel: string;
|
|
767
|
+
reference: string;
|
|
768
|
+
}[];
|
|
769
|
+
};
|
|
770
|
+
BulkUpdateApi: {
|
|
771
|
+
name: string;
|
|
772
|
+
kind: string;
|
|
773
|
+
description: string;
|
|
774
|
+
properties: {
|
|
775
|
+
name: string;
|
|
776
|
+
kind: string;
|
|
777
|
+
description: string;
|
|
778
|
+
uiLabel: string;
|
|
779
|
+
}[];
|
|
780
|
+
};
|
|
781
|
+
ButtonStyle: {
|
|
782
|
+
name: string;
|
|
783
|
+
kind: string;
|
|
784
|
+
description: string;
|
|
785
|
+
properties: ({
|
|
786
|
+
name: string;
|
|
787
|
+
kind: string;
|
|
788
|
+
description: string;
|
|
789
|
+
uiLabel: string;
|
|
790
|
+
isOptional: boolean;
|
|
791
|
+
defaultValue?: undefined;
|
|
792
|
+
} | {
|
|
793
|
+
name: string;
|
|
794
|
+
kind: string;
|
|
795
|
+
description: string;
|
|
796
|
+
uiLabel: string;
|
|
797
|
+
isOptional: boolean;
|
|
798
|
+
defaultValue: string;
|
|
799
|
+
})[];
|
|
800
|
+
};
|
|
801
|
+
CalculatedColumn: {
|
|
802
|
+
name: string;
|
|
803
|
+
kind: string;
|
|
804
|
+
description: string;
|
|
805
|
+
properties: ({
|
|
806
|
+
name: string;
|
|
807
|
+
kind: string;
|
|
808
|
+
description: string;
|
|
809
|
+
uiLabel: string;
|
|
810
|
+
isOptional: boolean;
|
|
811
|
+
reference: string;
|
|
812
|
+
} | {
|
|
813
|
+
name: string;
|
|
814
|
+
kind: string;
|
|
815
|
+
description: string;
|
|
816
|
+
uiLabel: string;
|
|
817
|
+
isOptional?: undefined;
|
|
818
|
+
reference?: undefined;
|
|
819
|
+
} | {
|
|
820
|
+
name: string;
|
|
821
|
+
kind: string;
|
|
822
|
+
description: string;
|
|
823
|
+
uiLabel: string;
|
|
824
|
+
isOptional: boolean;
|
|
825
|
+
reference?: undefined;
|
|
826
|
+
})[];
|
|
827
|
+
};
|
|
828
|
+
CalculatedColumnApi: {
|
|
829
|
+
name: string;
|
|
830
|
+
kind: string;
|
|
831
|
+
description: string;
|
|
832
|
+
properties: {
|
|
833
|
+
name: string;
|
|
834
|
+
kind: string;
|
|
835
|
+
description: string;
|
|
836
|
+
uiLabel: string;
|
|
837
|
+
}[];
|
|
838
|
+
};
|
|
839
|
+
CalculatedColumnSettings: {
|
|
840
|
+
name: string;
|
|
841
|
+
kind: string;
|
|
842
|
+
description: string;
|
|
843
|
+
properties: ({
|
|
844
|
+
name: string;
|
|
845
|
+
kind: string;
|
|
846
|
+
description: string;
|
|
847
|
+
uiLabel: string;
|
|
848
|
+
isOptional: boolean;
|
|
849
|
+
defaultValue: string;
|
|
850
|
+
} | {
|
|
851
|
+
name: string;
|
|
852
|
+
kind: string;
|
|
853
|
+
description: string;
|
|
854
|
+
uiLabel: string;
|
|
855
|
+
isOptional: boolean;
|
|
856
|
+
defaultValue?: undefined;
|
|
857
|
+
})[];
|
|
858
|
+
};
|
|
859
|
+
CalculatedColumnState: {
|
|
860
|
+
name: string;
|
|
861
|
+
kind: string;
|
|
862
|
+
description: string;
|
|
863
|
+
properties: {
|
|
864
|
+
name: string;
|
|
865
|
+
kind: string;
|
|
866
|
+
description: string;
|
|
867
|
+
uiLabel: string;
|
|
868
|
+
isOptional: boolean;
|
|
869
|
+
defaultValue: string;
|
|
870
|
+
}[];
|
|
871
|
+
};
|
|
872
|
+
CellChangedInfo: {
|
|
873
|
+
name: string;
|
|
874
|
+
kind: string;
|
|
875
|
+
description: string;
|
|
876
|
+
properties: {
|
|
877
|
+
name: string;
|
|
878
|
+
kind: string;
|
|
879
|
+
description: string;
|
|
880
|
+
uiLabel: string;
|
|
881
|
+
reference: string;
|
|
882
|
+
}[];
|
|
883
|
+
};
|
|
884
|
+
CellHighlightInfo: {
|
|
885
|
+
name: string;
|
|
886
|
+
kind: string;
|
|
887
|
+
description: string;
|
|
888
|
+
properties: ({
|
|
889
|
+
name: string;
|
|
890
|
+
kind: string;
|
|
891
|
+
description: string;
|
|
892
|
+
uiLabel: string;
|
|
893
|
+
isOptional?: undefined;
|
|
894
|
+
reference?: undefined;
|
|
895
|
+
} | {
|
|
896
|
+
name: string;
|
|
897
|
+
kind: string;
|
|
898
|
+
description: string;
|
|
899
|
+
uiLabel: string;
|
|
900
|
+
isOptional: boolean;
|
|
901
|
+
reference: string;
|
|
902
|
+
} | {
|
|
903
|
+
name: string;
|
|
904
|
+
kind: string;
|
|
905
|
+
description: string;
|
|
906
|
+
uiLabel: string;
|
|
907
|
+
isOptional: boolean;
|
|
908
|
+
reference?: undefined;
|
|
909
|
+
})[];
|
|
910
|
+
};
|
|
911
|
+
CellSummaryApi: {
|
|
912
|
+
name: string;
|
|
913
|
+
kind: string;
|
|
914
|
+
description: string;
|
|
915
|
+
properties: {
|
|
916
|
+
name: string;
|
|
917
|
+
kind: string;
|
|
918
|
+
description: string;
|
|
919
|
+
uiLabel: string;
|
|
920
|
+
}[];
|
|
921
|
+
};
|
|
922
|
+
CellSummaryOperationParams: {
|
|
923
|
+
name: string;
|
|
924
|
+
kind: string;
|
|
925
|
+
description: string;
|
|
926
|
+
properties: ({
|
|
927
|
+
name: string;
|
|
928
|
+
kind: string;
|
|
929
|
+
description: string;
|
|
930
|
+
uiLabel: string;
|
|
931
|
+
reference?: undefined;
|
|
932
|
+
} | {
|
|
933
|
+
name: string;
|
|
934
|
+
kind: string;
|
|
935
|
+
description: string;
|
|
936
|
+
uiLabel: string;
|
|
937
|
+
reference: string;
|
|
938
|
+
})[];
|
|
939
|
+
};
|
|
940
|
+
CellSummmary: {
|
|
941
|
+
name: string;
|
|
942
|
+
kind: string;
|
|
943
|
+
description: string;
|
|
944
|
+
};
|
|
945
|
+
CellTextOption: {
|
|
946
|
+
name: string;
|
|
947
|
+
kind: string;
|
|
948
|
+
description: string;
|
|
949
|
+
};
|
|
950
|
+
ChartApi: {
|
|
951
|
+
name: string;
|
|
952
|
+
kind: string;
|
|
953
|
+
description: string;
|
|
954
|
+
properties: {
|
|
955
|
+
name: string;
|
|
956
|
+
kind: string;
|
|
957
|
+
description: string;
|
|
958
|
+
uiLabel: string;
|
|
959
|
+
}[];
|
|
960
|
+
};
|
|
961
|
+
ChartDefinition: {
|
|
962
|
+
name: string;
|
|
963
|
+
kind: string;
|
|
964
|
+
description: string;
|
|
965
|
+
};
|
|
966
|
+
ChartPluginOptions: {
|
|
967
|
+
name: string;
|
|
968
|
+
kind: string;
|
|
969
|
+
description: string;
|
|
970
|
+
properties: {
|
|
971
|
+
name: string;
|
|
972
|
+
kind: string;
|
|
973
|
+
description: string;
|
|
974
|
+
uiLabel: string;
|
|
975
|
+
isOptional: boolean;
|
|
976
|
+
defaultValue: string;
|
|
977
|
+
}[];
|
|
978
|
+
};
|
|
979
|
+
CheckboxColumnClickedInfo: {
|
|
980
|
+
name: string;
|
|
981
|
+
kind: string;
|
|
982
|
+
description: string;
|
|
983
|
+
properties: ({
|
|
984
|
+
name: string;
|
|
985
|
+
kind: string;
|
|
986
|
+
description: string;
|
|
987
|
+
uiLabel: string;
|
|
988
|
+
reference: string;
|
|
989
|
+
} | {
|
|
990
|
+
name: string;
|
|
991
|
+
kind: string;
|
|
992
|
+
description: string;
|
|
993
|
+
uiLabel: string;
|
|
994
|
+
reference?: undefined;
|
|
995
|
+
})[];
|
|
996
|
+
};
|
|
997
|
+
ColumnApi: {
|
|
998
|
+
name: string;
|
|
999
|
+
kind: string;
|
|
1000
|
+
description: string;
|
|
1001
|
+
properties: {
|
|
1002
|
+
name: string;
|
|
1003
|
+
kind: string;
|
|
1004
|
+
description: string;
|
|
1005
|
+
uiLabel: string;
|
|
1006
|
+
}[];
|
|
1007
|
+
};
|
|
1008
|
+
ColumnFilter: {
|
|
1009
|
+
name: string;
|
|
1010
|
+
kind: string;
|
|
1011
|
+
description: string;
|
|
1012
|
+
properties: ({
|
|
1013
|
+
name: string;
|
|
1014
|
+
kind: string;
|
|
1015
|
+
description: string;
|
|
1016
|
+
uiLabel: string;
|
|
1017
|
+
reference?: undefined;
|
|
1018
|
+
} | {
|
|
1019
|
+
name: string;
|
|
1020
|
+
kind: string;
|
|
1021
|
+
description: string;
|
|
1022
|
+
uiLabel: string;
|
|
1023
|
+
reference: string;
|
|
1024
|
+
})[];
|
|
1025
|
+
};
|
|
1026
|
+
ColumnSort: {
|
|
1027
|
+
name: string;
|
|
1028
|
+
kind: string;
|
|
1029
|
+
description: string;
|
|
1030
|
+
properties: {
|
|
1031
|
+
name: string;
|
|
1032
|
+
kind: string;
|
|
1033
|
+
description: string;
|
|
1034
|
+
uiLabel: string;
|
|
1035
|
+
}[];
|
|
1036
|
+
};
|
|
1037
|
+
ConditionalStyle: {
|
|
1038
|
+
name: string;
|
|
1039
|
+
kind: string;
|
|
1040
|
+
description: string;
|
|
1041
|
+
properties: ({
|
|
1042
|
+
name: string;
|
|
1043
|
+
kind: string;
|
|
1044
|
+
description: string;
|
|
1045
|
+
uiLabel: string;
|
|
1046
|
+
isOptional: boolean;
|
|
1047
|
+
defaultValue: string;
|
|
1048
|
+
reference?: undefined;
|
|
1049
|
+
} | {
|
|
1050
|
+
name: string;
|
|
1051
|
+
kind: string;
|
|
1052
|
+
description: string;
|
|
1053
|
+
uiLabel: string;
|
|
1054
|
+
reference: string;
|
|
1055
|
+
isOptional?: undefined;
|
|
1056
|
+
defaultValue?: undefined;
|
|
1057
|
+
})[];
|
|
1058
|
+
};
|
|
1059
|
+
ConditionalStyleApi: {
|
|
1060
|
+
name: string;
|
|
1061
|
+
kind: string;
|
|
1062
|
+
description: string;
|
|
1063
|
+
properties: {
|
|
1064
|
+
name: string;
|
|
1065
|
+
kind: string;
|
|
1066
|
+
description: string;
|
|
1067
|
+
uiLabel: string;
|
|
1068
|
+
}[];
|
|
1069
|
+
};
|
|
1070
|
+
ConditionalStyleRule: {
|
|
1071
|
+
name: string;
|
|
1072
|
+
kind: string;
|
|
1073
|
+
description: string;
|
|
1074
|
+
};
|
|
1075
|
+
ConditionalStyleState: {
|
|
1076
|
+
name: string;
|
|
1077
|
+
kind: string;
|
|
1078
|
+
description: string;
|
|
1079
|
+
properties: {
|
|
1080
|
+
name: string;
|
|
1081
|
+
kind: string;
|
|
1082
|
+
description: string;
|
|
1083
|
+
uiLabel: string;
|
|
1084
|
+
isOptional: boolean;
|
|
1085
|
+
}[];
|
|
1086
|
+
};
|
|
1087
|
+
ConfigApi: {
|
|
1088
|
+
name: string;
|
|
1089
|
+
kind: string;
|
|
1090
|
+
description: string;
|
|
1091
|
+
properties: {
|
|
1092
|
+
name: string;
|
|
1093
|
+
kind: string;
|
|
1094
|
+
description: string;
|
|
1095
|
+
uiLabel: string;
|
|
1096
|
+
}[];
|
|
1097
|
+
};
|
|
1098
|
+
ConfigState: {
|
|
1099
|
+
name: string;
|
|
1100
|
+
kind: string;
|
|
1101
|
+
description: string;
|
|
1102
|
+
properties: {
|
|
1103
|
+
name: string;
|
|
1104
|
+
kind: string;
|
|
1105
|
+
description: string;
|
|
1106
|
+
uiLabel: string;
|
|
1107
|
+
isOptional: boolean;
|
|
1108
|
+
}[];
|
|
1109
|
+
};
|
|
1110
|
+
ContainerOptions: {
|
|
1111
|
+
name: string;
|
|
1112
|
+
kind: string;
|
|
1113
|
+
description: string;
|
|
1114
|
+
properties: {
|
|
1115
|
+
name: string;
|
|
1116
|
+
kind: string;
|
|
1117
|
+
description: string;
|
|
1118
|
+
uiLabel: string;
|
|
1119
|
+
isOptional: boolean;
|
|
1120
|
+
gridInfo: string;
|
|
1121
|
+
defaultValue: string;
|
|
1122
|
+
}[];
|
|
1123
|
+
};
|
|
1124
|
+
CustomDestination: {
|
|
1125
|
+
name: string;
|
|
1126
|
+
kind: string;
|
|
1127
|
+
description: string;
|
|
1128
|
+
properties: ({
|
|
1129
|
+
name: string;
|
|
1130
|
+
kind: string;
|
|
1131
|
+
description: string;
|
|
1132
|
+
uiLabel: string;
|
|
1133
|
+
isOptional: boolean;
|
|
1134
|
+
} | {
|
|
1135
|
+
name: string;
|
|
1136
|
+
kind: string;
|
|
1137
|
+
description: string;
|
|
1138
|
+
uiLabel: string;
|
|
1139
|
+
isOptional?: undefined;
|
|
1140
|
+
})[];
|
|
1141
|
+
};
|
|
1142
|
+
CustomReport: {
|
|
1143
|
+
name: string;
|
|
1144
|
+
kind: string;
|
|
1145
|
+
description: string;
|
|
1146
|
+
properties: {
|
|
1147
|
+
name: string;
|
|
1148
|
+
kind: string;
|
|
1149
|
+
description: string;
|
|
1150
|
+
uiLabel: string;
|
|
1151
|
+
}[];
|
|
1152
|
+
};
|
|
1153
|
+
CustomSort: {
|
|
1154
|
+
name: string;
|
|
1155
|
+
kind: string;
|
|
1156
|
+
description: string;
|
|
1157
|
+
properties: ({
|
|
1158
|
+
name: string;
|
|
1159
|
+
kind: string;
|
|
1160
|
+
description: string;
|
|
1161
|
+
uiLabel: string;
|
|
1162
|
+
isOptional?: undefined;
|
|
1163
|
+
} | {
|
|
1164
|
+
name: string;
|
|
1165
|
+
kind: string;
|
|
1166
|
+
description: string;
|
|
1167
|
+
uiLabel: string;
|
|
1168
|
+
isOptional: boolean;
|
|
1169
|
+
})[];
|
|
1170
|
+
};
|
|
1171
|
+
CustomSortApi: {
|
|
1172
|
+
name: string;
|
|
1173
|
+
kind: string;
|
|
1174
|
+
description: string;
|
|
1175
|
+
properties: {
|
|
1176
|
+
name: string;
|
|
1177
|
+
kind: string;
|
|
1178
|
+
description: string;
|
|
1179
|
+
uiLabel: string;
|
|
1180
|
+
}[];
|
|
1181
|
+
};
|
|
1182
|
+
CustomSortState: {
|
|
1183
|
+
name: string;
|
|
1184
|
+
kind: string;
|
|
1185
|
+
description: string;
|
|
1186
|
+
properties: {
|
|
1187
|
+
name: string;
|
|
1188
|
+
kind: string;
|
|
1189
|
+
description: string;
|
|
1190
|
+
uiLabel: string;
|
|
1191
|
+
isOptional: boolean;
|
|
1192
|
+
defaultValue: string;
|
|
1193
|
+
}[];
|
|
1194
|
+
};
|
|
1195
|
+
CustomToolbar: {
|
|
1196
|
+
name: string;
|
|
1197
|
+
kind: string;
|
|
1198
|
+
description: string;
|
|
1199
|
+
properties: ({
|
|
1200
|
+
name: string;
|
|
1201
|
+
kind: string;
|
|
1202
|
+
description: string;
|
|
1203
|
+
uiLabel: string;
|
|
1204
|
+
isOptional: boolean;
|
|
1205
|
+
reference: string;
|
|
1206
|
+
} | {
|
|
1207
|
+
name: string;
|
|
1208
|
+
kind: string;
|
|
1209
|
+
description: string;
|
|
1210
|
+
uiLabel: string;
|
|
1211
|
+
isOptional?: undefined;
|
|
1212
|
+
reference?: undefined;
|
|
1213
|
+
} | {
|
|
1214
|
+
name: string;
|
|
1215
|
+
kind: string;
|
|
1216
|
+
description: string;
|
|
1217
|
+
uiLabel: string;
|
|
1218
|
+
isOptional: boolean;
|
|
1219
|
+
reference?: undefined;
|
|
1220
|
+
})[];
|
|
1221
|
+
};
|
|
1222
|
+
CustomToolbarButtonContext: {
|
|
1223
|
+
name: string;
|
|
1224
|
+
kind: string;
|
|
1225
|
+
description: string;
|
|
1226
|
+
properties: {
|
|
1227
|
+
name: string;
|
|
1228
|
+
kind: string;
|
|
1229
|
+
description: string;
|
|
1230
|
+
uiLabel: string;
|
|
1231
|
+
reference: string;
|
|
1232
|
+
}[];
|
|
1233
|
+
};
|
|
1234
|
+
CustomToolbarConfiguredInfo: {
|
|
1235
|
+
name: string;
|
|
1236
|
+
kind: string;
|
|
1237
|
+
description: string;
|
|
1238
|
+
properties: {
|
|
1239
|
+
name: string;
|
|
1240
|
+
kind: string;
|
|
1241
|
+
description: string;
|
|
1242
|
+
uiLabel: string;
|
|
1243
|
+
reference: string;
|
|
1244
|
+
}[];
|
|
1245
|
+
};
|
|
1246
|
+
CustomToolPanel: {
|
|
1247
|
+
name: string;
|
|
1248
|
+
kind: string;
|
|
1249
|
+
description: string;
|
|
1250
|
+
properties: ({
|
|
1251
|
+
name: string;
|
|
1252
|
+
kind: string;
|
|
1253
|
+
description: string;
|
|
1254
|
+
uiLabel: string;
|
|
1255
|
+
isOptional: boolean;
|
|
1256
|
+
reference: string;
|
|
1257
|
+
} | {
|
|
1258
|
+
name: string;
|
|
1259
|
+
kind: string;
|
|
1260
|
+
description: string;
|
|
1261
|
+
uiLabel: string;
|
|
1262
|
+
isOptional?: undefined;
|
|
1263
|
+
reference?: undefined;
|
|
1264
|
+
} | {
|
|
1265
|
+
name: string;
|
|
1266
|
+
kind: string;
|
|
1267
|
+
description: string;
|
|
1268
|
+
uiLabel: string;
|
|
1269
|
+
isOptional: boolean;
|
|
1270
|
+
reference?: undefined;
|
|
1271
|
+
})[];
|
|
1272
|
+
};
|
|
1273
|
+
DashboardApi: {
|
|
1274
|
+
name: string;
|
|
1275
|
+
kind: string;
|
|
1276
|
+
description: string;
|
|
1277
|
+
properties: {
|
|
1278
|
+
name: string;
|
|
1279
|
+
kind: string;
|
|
1280
|
+
description: string;
|
|
1281
|
+
uiLabel: string;
|
|
1282
|
+
}[];
|
|
1283
|
+
};
|
|
1284
|
+
DashboardButtonContext: {
|
|
1285
|
+
name: string;
|
|
1286
|
+
kind: string;
|
|
1287
|
+
description: string;
|
|
1288
|
+
properties: {
|
|
1289
|
+
name: string;
|
|
1290
|
+
kind: string;
|
|
1291
|
+
description: string;
|
|
1292
|
+
uiLabel: string;
|
|
1293
|
+
reference: string;
|
|
1294
|
+
}[];
|
|
1295
|
+
};
|
|
1296
|
+
DashboardChangedInfo: {
|
|
1297
|
+
name: string;
|
|
1298
|
+
kind: string;
|
|
1299
|
+
description: string;
|
|
1300
|
+
properties: ({
|
|
1301
|
+
name: string;
|
|
1302
|
+
kind: string;
|
|
1303
|
+
description: string;
|
|
1304
|
+
uiLabel: string;
|
|
1305
|
+
reference?: undefined;
|
|
1306
|
+
} | {
|
|
1307
|
+
name: string;
|
|
1308
|
+
kind: string;
|
|
1309
|
+
description: string;
|
|
1310
|
+
uiLabel: string;
|
|
1311
|
+
reference: string;
|
|
1312
|
+
})[];
|
|
1313
|
+
};
|
|
1314
|
+
DashboardOptions: {
|
|
1315
|
+
name: string;
|
|
1316
|
+
kind: string;
|
|
1317
|
+
description: string;
|
|
1318
|
+
properties: ({
|
|
1319
|
+
name: string;
|
|
1320
|
+
kind: string;
|
|
1321
|
+
description: string;
|
|
1322
|
+
uiLabel: string;
|
|
1323
|
+
isOptional: boolean;
|
|
1324
|
+
gridInfo: string;
|
|
1325
|
+
defaultValue: string;
|
|
1326
|
+
} | {
|
|
1327
|
+
name: string;
|
|
1328
|
+
kind: string;
|
|
1329
|
+
description: string;
|
|
1330
|
+
uiLabel: string;
|
|
1331
|
+
isOptional: boolean;
|
|
1332
|
+
gridInfo?: undefined;
|
|
1333
|
+
defaultValue?: undefined;
|
|
1334
|
+
})[];
|
|
1335
|
+
};
|
|
1336
|
+
DashboardState: {
|
|
1337
|
+
name: string;
|
|
1338
|
+
kind: string;
|
|
1339
|
+
description: string;
|
|
1340
|
+
properties: ({
|
|
1341
|
+
name: string;
|
|
1342
|
+
kind: string;
|
|
1343
|
+
description: string;
|
|
1344
|
+
uiLabel: string;
|
|
1345
|
+
isOptional: boolean;
|
|
1346
|
+
defaultValue?: undefined;
|
|
1347
|
+
reference?: undefined;
|
|
1348
|
+
} | {
|
|
1349
|
+
name: string;
|
|
1350
|
+
kind: string;
|
|
1351
|
+
description: string;
|
|
1352
|
+
uiLabel: string;
|
|
1353
|
+
isOptional: boolean;
|
|
1354
|
+
defaultValue: string;
|
|
1355
|
+
reference?: undefined;
|
|
1356
|
+
} | {
|
|
1357
|
+
name: string;
|
|
1358
|
+
kind: string;
|
|
1359
|
+
description: string;
|
|
1360
|
+
uiLabel: string;
|
|
1361
|
+
isOptional: boolean;
|
|
1362
|
+
reference: string;
|
|
1363
|
+
defaultValue?: undefined;
|
|
1364
|
+
} | {
|
|
1365
|
+
name: string;
|
|
1366
|
+
kind: string;
|
|
1367
|
+
description: string;
|
|
1368
|
+
uiLabel: string;
|
|
1369
|
+
isOptional: boolean;
|
|
1370
|
+
defaultValue: string;
|
|
1371
|
+
reference: string;
|
|
1372
|
+
})[];
|
|
1373
|
+
};
|
|
1374
|
+
DashboardTab: {
|
|
1375
|
+
name: string;
|
|
1376
|
+
kind: string;
|
|
1377
|
+
description: string;
|
|
1378
|
+
properties: {
|
|
1379
|
+
name: string;
|
|
1380
|
+
kind: string;
|
|
1381
|
+
description: string;
|
|
1382
|
+
uiLabel: string;
|
|
1383
|
+
}[];
|
|
1384
|
+
};
|
|
1385
|
+
DataChangedInfo: {
|
|
1386
|
+
name: string;
|
|
1387
|
+
kind: string;
|
|
1388
|
+
description: string;
|
|
1389
|
+
properties: ({
|
|
1390
|
+
name: string;
|
|
1391
|
+
kind: string;
|
|
1392
|
+
description: string;
|
|
1393
|
+
uiLabel: string;
|
|
1394
|
+
isOptional?: undefined;
|
|
1395
|
+
reference?: undefined;
|
|
1396
|
+
} | {
|
|
1397
|
+
name: string;
|
|
1398
|
+
kind: string;
|
|
1399
|
+
description: string;
|
|
1400
|
+
uiLabel: string;
|
|
1401
|
+
isOptional: boolean;
|
|
1402
|
+
reference?: undefined;
|
|
1403
|
+
} | {
|
|
1404
|
+
name: string;
|
|
1405
|
+
kind: string;
|
|
1406
|
+
description: string;
|
|
1407
|
+
uiLabel: string;
|
|
1408
|
+
isOptional: boolean;
|
|
1409
|
+
reference: string;
|
|
1410
|
+
})[];
|
|
1411
|
+
};
|
|
1412
|
+
DataSource: {
|
|
1413
|
+
name: string;
|
|
1414
|
+
kind: string;
|
|
1415
|
+
description: string;
|
|
1416
|
+
properties: ({
|
|
1417
|
+
name: string;
|
|
1418
|
+
kind: string;
|
|
1419
|
+
description: string;
|
|
1420
|
+
uiLabel: string;
|
|
1421
|
+
isOptional?: undefined;
|
|
1422
|
+
} | {
|
|
1423
|
+
name: string;
|
|
1424
|
+
kind: string;
|
|
1425
|
+
description: string;
|
|
1426
|
+
uiLabel: string;
|
|
1427
|
+
isOptional: boolean;
|
|
1428
|
+
})[];
|
|
1429
|
+
};
|
|
1430
|
+
DataSourceApi: {
|
|
1431
|
+
name: string;
|
|
1432
|
+
kind: string;
|
|
1433
|
+
description: string;
|
|
1434
|
+
properties: {
|
|
1435
|
+
name: string;
|
|
1436
|
+
kind: string;
|
|
1437
|
+
description: string;
|
|
1438
|
+
uiLabel: string;
|
|
1439
|
+
}[];
|
|
1440
|
+
};
|
|
1441
|
+
DataSourceState: {
|
|
1442
|
+
name: string;
|
|
1443
|
+
kind: string;
|
|
1444
|
+
description: string;
|
|
1445
|
+
properties: {
|
|
1446
|
+
name: string;
|
|
1447
|
+
kind: string;
|
|
1448
|
+
description: string;
|
|
1449
|
+
uiLabel: string;
|
|
1450
|
+
isOptional: boolean;
|
|
1451
|
+
}[];
|
|
1452
|
+
};
|
|
1453
|
+
DataUpdateConfig: {
|
|
1454
|
+
name: string;
|
|
1455
|
+
kind: string;
|
|
1456
|
+
description: string;
|
|
1457
|
+
properties: {
|
|
1458
|
+
name: string;
|
|
1459
|
+
kind: string;
|
|
1460
|
+
description: string;
|
|
1461
|
+
uiLabel: string;
|
|
1462
|
+
isOptional: boolean;
|
|
1463
|
+
}[];
|
|
1464
|
+
};
|
|
1465
|
+
DateFormatterOptions: {
|
|
1466
|
+
name: string;
|
|
1467
|
+
kind: string;
|
|
1468
|
+
description: string;
|
|
1469
|
+
properties: {
|
|
1470
|
+
name: string;
|
|
1471
|
+
kind: string;
|
|
1472
|
+
description: string;
|
|
1473
|
+
uiLabel: string;
|
|
1474
|
+
isOptional: boolean;
|
|
1475
|
+
}[];
|
|
1476
|
+
};
|
|
1477
|
+
DateInputOptions: {
|
|
1478
|
+
name: string;
|
|
1479
|
+
kind: string;
|
|
1480
|
+
description: string;
|
|
1481
|
+
properties: {
|
|
1482
|
+
name: string;
|
|
1483
|
+
kind: string;
|
|
1484
|
+
description: string;
|
|
1485
|
+
uiLabel: string;
|
|
1486
|
+
isOptional: boolean;
|
|
1487
|
+
defaultValue: string;
|
|
1488
|
+
}[];
|
|
1489
|
+
};
|
|
1490
|
+
EditOptions: {
|
|
1491
|
+
name: string;
|
|
1492
|
+
kind: string;
|
|
1493
|
+
description: string;
|
|
1494
|
+
properties: ({
|
|
1495
|
+
name: string;
|
|
1496
|
+
kind: string;
|
|
1497
|
+
description: string;
|
|
1498
|
+
uiLabel: string;
|
|
1499
|
+
isOptional: boolean;
|
|
1500
|
+
gridInfo: string;
|
|
1501
|
+
defaultValue: string;
|
|
1502
|
+
} | {
|
|
1503
|
+
name: string;
|
|
1504
|
+
kind: string;
|
|
1505
|
+
description: string;
|
|
1506
|
+
uiLabel: string;
|
|
1507
|
+
isOptional: boolean;
|
|
1508
|
+
gridInfo?: undefined;
|
|
1509
|
+
defaultValue?: undefined;
|
|
1510
|
+
})[];
|
|
1511
|
+
};
|
|
1512
|
+
EntitlementOptions: {
|
|
1513
|
+
name: string;
|
|
1514
|
+
kind: string;
|
|
1515
|
+
description: string;
|
|
1516
|
+
properties: ({
|
|
1517
|
+
name: string;
|
|
1518
|
+
kind: string;
|
|
1519
|
+
description: string;
|
|
1520
|
+
uiLabel: string;
|
|
1521
|
+
isOptional: boolean;
|
|
1522
|
+
gridInfo: string;
|
|
1523
|
+
defaultValue: string;
|
|
1524
|
+
} | {
|
|
1525
|
+
name: string;
|
|
1526
|
+
kind: string;
|
|
1527
|
+
description: string;
|
|
1528
|
+
uiLabel: string;
|
|
1529
|
+
isOptional: boolean;
|
|
1530
|
+
gridInfo: string;
|
|
1531
|
+
defaultValue?: undefined;
|
|
1532
|
+
})[];
|
|
1533
|
+
};
|
|
1534
|
+
EventApi: {
|
|
1535
|
+
name: string;
|
|
1536
|
+
kind: string;
|
|
1537
|
+
description: string;
|
|
1538
|
+
properties: {
|
|
1539
|
+
name: string;
|
|
1540
|
+
kind: string;
|
|
1541
|
+
description: string;
|
|
1542
|
+
uiLabel: string;
|
|
1543
|
+
}[];
|
|
1544
|
+
};
|
|
1545
|
+
ExportApi: {
|
|
1546
|
+
name: string;
|
|
1547
|
+
kind: string;
|
|
1548
|
+
description: string;
|
|
1549
|
+
properties: {
|
|
1550
|
+
name: string;
|
|
1551
|
+
kind: string;
|
|
1552
|
+
description: string;
|
|
1553
|
+
uiLabel: string;
|
|
1554
|
+
}[];
|
|
1555
|
+
};
|
|
1556
|
+
ExportButtonContext: {
|
|
1557
|
+
name: string;
|
|
1558
|
+
kind: string;
|
|
1559
|
+
description: string;
|
|
1560
|
+
properties: {
|
|
1561
|
+
name: string;
|
|
1562
|
+
kind: string;
|
|
1563
|
+
description: string;
|
|
1564
|
+
uiLabel: string;
|
|
1565
|
+
reference: string;
|
|
1566
|
+
}[];
|
|
1567
|
+
};
|
|
1568
|
+
ExportOptions: {
|
|
1569
|
+
name: string;
|
|
1570
|
+
kind: string;
|
|
1571
|
+
description: string;
|
|
1572
|
+
properties: ({
|
|
1573
|
+
name: string;
|
|
1574
|
+
kind: string;
|
|
1575
|
+
description: string;
|
|
1576
|
+
uiLabel: string;
|
|
1577
|
+
isOptional: boolean;
|
|
1578
|
+
gridInfo: string;
|
|
1579
|
+
defaultValue: string;
|
|
1580
|
+
reference?: undefined;
|
|
1581
|
+
} | {
|
|
1582
|
+
name: string;
|
|
1583
|
+
kind: string;
|
|
1584
|
+
description: string;
|
|
1585
|
+
uiLabel: string;
|
|
1586
|
+
isOptional: boolean;
|
|
1587
|
+
gridInfo?: undefined;
|
|
1588
|
+
defaultValue?: undefined;
|
|
1589
|
+
reference?: undefined;
|
|
1590
|
+
} | {
|
|
1591
|
+
name: string;
|
|
1592
|
+
kind: string;
|
|
1593
|
+
description: string;
|
|
1594
|
+
uiLabel: string;
|
|
1595
|
+
isOptional: boolean;
|
|
1596
|
+
defaultValue: string;
|
|
1597
|
+
gridInfo?: undefined;
|
|
1598
|
+
reference?: undefined;
|
|
1599
|
+
} | {
|
|
1600
|
+
name: string;
|
|
1601
|
+
kind: string;
|
|
1602
|
+
description: string;
|
|
1603
|
+
uiLabel: string;
|
|
1604
|
+
isOptional: boolean;
|
|
1605
|
+
gridInfo: string;
|
|
1606
|
+
defaultValue: string;
|
|
1607
|
+
reference: string;
|
|
1608
|
+
})[];
|
|
1609
|
+
};
|
|
1610
|
+
ExportState: {
|
|
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
|
+
}[];
|
|
1621
|
+
};
|
|
1622
|
+
ExpressionContext: {
|
|
1623
|
+
name: string;
|
|
1624
|
+
kind: string;
|
|
1625
|
+
description: string;
|
|
1626
|
+
properties: ({
|
|
1627
|
+
name: string;
|
|
1628
|
+
kind: string;
|
|
1629
|
+
description: string;
|
|
1630
|
+
uiLabel: string;
|
|
1631
|
+
isOptional: boolean;
|
|
1632
|
+
reference: string;
|
|
1633
|
+
} | {
|
|
1634
|
+
name: string;
|
|
1635
|
+
kind: string;
|
|
1636
|
+
description: string;
|
|
1637
|
+
uiLabel: string;
|
|
1638
|
+
isOptional: boolean;
|
|
1639
|
+
reference?: undefined;
|
|
1640
|
+
} | {
|
|
1641
|
+
name: string;
|
|
1642
|
+
kind: string;
|
|
1643
|
+
description: string;
|
|
1644
|
+
uiLabel: string;
|
|
1645
|
+
reference: string;
|
|
1646
|
+
isOptional?: undefined;
|
|
1647
|
+
} | {
|
|
1648
|
+
name: string;
|
|
1649
|
+
kind: string;
|
|
1650
|
+
description: string;
|
|
1651
|
+
uiLabel: string;
|
|
1652
|
+
isOptional?: undefined;
|
|
1653
|
+
reference?: undefined;
|
|
1654
|
+
})[];
|
|
1655
|
+
};
|
|
1656
|
+
ExpressionFunction: {
|
|
1657
|
+
name: string;
|
|
1658
|
+
kind: string;
|
|
1659
|
+
description: string;
|
|
1660
|
+
properties: ({
|
|
1661
|
+
name: string;
|
|
1662
|
+
kind: string;
|
|
1663
|
+
description: string;
|
|
1664
|
+
uiLabel: string;
|
|
1665
|
+
isOptional: boolean;
|
|
1666
|
+
reference?: undefined;
|
|
1667
|
+
} | {
|
|
1668
|
+
name: string;
|
|
1669
|
+
kind: string;
|
|
1670
|
+
description: string;
|
|
1671
|
+
uiLabel: string;
|
|
1672
|
+
reference: string;
|
|
1673
|
+
isOptional?: undefined;
|
|
1674
|
+
})[];
|
|
1675
|
+
};
|
|
1676
|
+
ExpressionFunctionDocBlock: {
|
|
1677
|
+
name: string;
|
|
1678
|
+
kind: string;
|
|
1679
|
+
description: string;
|
|
1680
|
+
};
|
|
1681
|
+
ExpressionFunctionHandler: {
|
|
1682
|
+
name: string;
|
|
1683
|
+
kind: string;
|
|
1684
|
+
description: string;
|
|
1685
|
+
};
|
|
1686
|
+
FDC3Context: {
|
|
1687
|
+
name: string;
|
|
1688
|
+
kind: string;
|
|
1689
|
+
description: string;
|
|
1690
|
+
properties: ({
|
|
1691
|
+
name: string;
|
|
1692
|
+
kind: string;
|
|
1693
|
+
description: string;
|
|
1694
|
+
uiLabel: string;
|
|
1695
|
+
isOptional?: undefined;
|
|
1696
|
+
} | {
|
|
1697
|
+
name: string;
|
|
1698
|
+
kind: string;
|
|
1699
|
+
description: string;
|
|
1700
|
+
uiLabel: string;
|
|
1701
|
+
isOptional: boolean;
|
|
1702
|
+
})[];
|
|
1703
|
+
};
|
|
1704
|
+
FilterActionOnDataChange: {
|
|
1705
|
+
name: string;
|
|
1706
|
+
kind: string;
|
|
1707
|
+
description: string;
|
|
1708
|
+
properties: ({
|
|
1709
|
+
name: string;
|
|
1710
|
+
kind: string;
|
|
1711
|
+
description: string;
|
|
1712
|
+
uiLabel: string;
|
|
1713
|
+
isOptional?: undefined;
|
|
1714
|
+
} | {
|
|
1715
|
+
name: string;
|
|
1716
|
+
kind: string;
|
|
1717
|
+
description: string;
|
|
1718
|
+
uiLabel: string;
|
|
1719
|
+
isOptional: boolean;
|
|
1720
|
+
})[];
|
|
1721
|
+
};
|
|
1722
|
+
FilterApi: {
|
|
1723
|
+
name: string;
|
|
1724
|
+
kind: string;
|
|
1725
|
+
description: string;
|
|
1726
|
+
properties: {
|
|
1727
|
+
name: string;
|
|
1728
|
+
kind: string;
|
|
1729
|
+
description: string;
|
|
1730
|
+
uiLabel: string;
|
|
1731
|
+
}[];
|
|
1732
|
+
};
|
|
1733
|
+
FilterState: {
|
|
1734
|
+
name: string;
|
|
1735
|
+
kind: string;
|
|
1736
|
+
description: string;
|
|
1737
|
+
properties: ({
|
|
1738
|
+
name: string;
|
|
1739
|
+
kind: string;
|
|
1740
|
+
description: string;
|
|
1741
|
+
uiLabel: string;
|
|
1742
|
+
isOptional: boolean;
|
|
1743
|
+
defaultValue?: undefined;
|
|
1744
|
+
} | {
|
|
1745
|
+
name: string;
|
|
1746
|
+
kind: string;
|
|
1747
|
+
description: string;
|
|
1748
|
+
uiLabel: string;
|
|
1749
|
+
isOptional: boolean;
|
|
1750
|
+
defaultValue: string;
|
|
1751
|
+
})[];
|
|
1752
|
+
};
|
|
1753
|
+
FinanceApi: {
|
|
1754
|
+
name: string;
|
|
1755
|
+
kind: string;
|
|
1756
|
+
description: string;
|
|
1757
|
+
properties: {
|
|
1758
|
+
name: string;
|
|
1759
|
+
kind: string;
|
|
1760
|
+
description: string;
|
|
1761
|
+
uiLabel: string;
|
|
1762
|
+
}[];
|
|
1763
|
+
};
|
|
1764
|
+
FinancePluginOptions: {
|
|
1765
|
+
name: string;
|
|
1766
|
+
kind: string;
|
|
1767
|
+
description: string;
|
|
1768
|
+
properties: {
|
|
1769
|
+
name: string;
|
|
1770
|
+
kind: string;
|
|
1771
|
+
description: string;
|
|
1772
|
+
uiLabel: string;
|
|
1773
|
+
isOptional: boolean;
|
|
1774
|
+
}[];
|
|
1775
|
+
};
|
|
1776
|
+
FlashingAlertDefinition: {
|
|
1777
|
+
name: string;
|
|
1778
|
+
kind: string;
|
|
1779
|
+
description: string;
|
|
1780
|
+
};
|
|
1781
|
+
FlashingAlertFiredInfo: {
|
|
1782
|
+
name: string;
|
|
1783
|
+
kind: string;
|
|
1784
|
+
description: string;
|
|
1785
|
+
properties: {
|
|
1786
|
+
name: string;
|
|
1787
|
+
kind: string;
|
|
1788
|
+
description: string;
|
|
1789
|
+
uiLabel: string;
|
|
1790
|
+
reference: string;
|
|
1791
|
+
}[];
|
|
1792
|
+
};
|
|
1793
|
+
FlashingAlertProperties: {
|
|
1794
|
+
name: string;
|
|
1795
|
+
kind: string;
|
|
1796
|
+
description: string;
|
|
1797
|
+
properties: ({
|
|
1798
|
+
name: string;
|
|
1799
|
+
kind: string;
|
|
1800
|
+
description: string;
|
|
1801
|
+
uiLabel: string;
|
|
1802
|
+
isOptional: boolean;
|
|
1803
|
+
reference: string;
|
|
1804
|
+
} | {
|
|
1805
|
+
name: string;
|
|
1806
|
+
kind: string;
|
|
1807
|
+
description: string;
|
|
1808
|
+
uiLabel: string;
|
|
1809
|
+
isOptional: boolean;
|
|
1810
|
+
reference?: undefined;
|
|
1811
|
+
})[];
|
|
1812
|
+
};
|
|
1813
|
+
FormatColumn: {
|
|
1814
|
+
name: string;
|
|
1815
|
+
kind: string;
|
|
1816
|
+
description: string;
|
|
1817
|
+
properties: ({
|
|
1818
|
+
name: string;
|
|
1819
|
+
kind: string;
|
|
1820
|
+
description: string;
|
|
1821
|
+
uiLabel: string;
|
|
1822
|
+
isOptional: boolean;
|
|
1823
|
+
reference?: undefined;
|
|
1824
|
+
defaultValue?: undefined;
|
|
1825
|
+
} | {
|
|
1826
|
+
name: string;
|
|
1827
|
+
kind: string;
|
|
1828
|
+
description: string;
|
|
1829
|
+
uiLabel: string;
|
|
1830
|
+
isOptional: boolean;
|
|
1831
|
+
reference: string;
|
|
1832
|
+
defaultValue?: undefined;
|
|
1833
|
+
} | {
|
|
1834
|
+
name: string;
|
|
1835
|
+
kind: string;
|
|
1836
|
+
description: string;
|
|
1837
|
+
uiLabel: string;
|
|
1838
|
+
isOptional: boolean;
|
|
1839
|
+
defaultValue: string;
|
|
1840
|
+
reference?: undefined;
|
|
1841
|
+
} | {
|
|
1842
|
+
name: string;
|
|
1843
|
+
kind: string;
|
|
1844
|
+
description: string;
|
|
1845
|
+
uiLabel: string;
|
|
1846
|
+
reference: string;
|
|
1847
|
+
isOptional?: undefined;
|
|
1848
|
+
defaultValue?: undefined;
|
|
1849
|
+
})[];
|
|
1850
|
+
};
|
|
1851
|
+
FormatColumnApi: {
|
|
1852
|
+
name: string;
|
|
1853
|
+
kind: string;
|
|
1854
|
+
description: string;
|
|
1855
|
+
properties: {
|
|
1856
|
+
name: string;
|
|
1857
|
+
kind: string;
|
|
1858
|
+
description: string;
|
|
1859
|
+
uiLabel: string;
|
|
1860
|
+
}[];
|
|
1861
|
+
};
|
|
1862
|
+
FormatColumnState: {
|
|
1863
|
+
name: string;
|
|
1864
|
+
kind: string;
|
|
1865
|
+
description: string;
|
|
1866
|
+
properties: {
|
|
1867
|
+
name: string;
|
|
1868
|
+
kind: string;
|
|
1869
|
+
description: string;
|
|
1870
|
+
uiLabel: string;
|
|
1871
|
+
isOptional: boolean;
|
|
1872
|
+
}[];
|
|
1873
|
+
};
|
|
1874
|
+
FreeTextColumn: {
|
|
1875
|
+
name: string;
|
|
1876
|
+
kind: string;
|
|
1877
|
+
description: string;
|
|
1878
|
+
properties: ({
|
|
1879
|
+
name: string;
|
|
1880
|
+
kind: string;
|
|
1881
|
+
description: string;
|
|
1882
|
+
uiLabel: string;
|
|
1883
|
+
isOptional?: undefined;
|
|
1884
|
+
defaultValue?: undefined;
|
|
1885
|
+
} | {
|
|
1886
|
+
name: string;
|
|
1887
|
+
kind: string;
|
|
1888
|
+
description: string;
|
|
1889
|
+
uiLabel: string;
|
|
1890
|
+
isOptional: boolean;
|
|
1891
|
+
defaultValue: string;
|
|
1892
|
+
} | {
|
|
1893
|
+
name: string;
|
|
1894
|
+
kind: string;
|
|
1895
|
+
description: string;
|
|
1896
|
+
uiLabel: string;
|
|
1897
|
+
isOptional: boolean;
|
|
1898
|
+
defaultValue?: undefined;
|
|
1899
|
+
})[];
|
|
1900
|
+
};
|
|
1901
|
+
FreeTextColumnApi: {
|
|
1902
|
+
name: string;
|
|
1903
|
+
kind: string;
|
|
1904
|
+
description: string;
|
|
1905
|
+
properties: {
|
|
1906
|
+
name: string;
|
|
1907
|
+
kind: string;
|
|
1908
|
+
description: string;
|
|
1909
|
+
uiLabel: string;
|
|
1910
|
+
}[];
|
|
1911
|
+
};
|
|
1912
|
+
FreeTextColumnState: {
|
|
1913
|
+
name: string;
|
|
1914
|
+
kind: string;
|
|
1915
|
+
description: string;
|
|
1916
|
+
properties: {
|
|
1917
|
+
name: string;
|
|
1918
|
+
kind: string;
|
|
1919
|
+
description: string;
|
|
1920
|
+
uiLabel: string;
|
|
1921
|
+
isOptional: boolean;
|
|
1922
|
+
}[];
|
|
1923
|
+
};
|
|
1924
|
+
FreeTextStoredValue: {
|
|
1925
|
+
name: string;
|
|
1926
|
+
kind: string;
|
|
1927
|
+
description: string;
|
|
1928
|
+
properties: {
|
|
1929
|
+
name: string;
|
|
1930
|
+
kind: string;
|
|
1931
|
+
description: string;
|
|
1932
|
+
uiLabel: string;
|
|
1933
|
+
}[];
|
|
1934
|
+
};
|
|
1935
|
+
GeneralOptions: {
|
|
1936
|
+
name: string;
|
|
1937
|
+
kind: string;
|
|
1938
|
+
description: string;
|
|
1939
|
+
properties: ({
|
|
1940
|
+
name: string;
|
|
1941
|
+
kind: string;
|
|
1942
|
+
description: string;
|
|
1943
|
+
uiLabel: string;
|
|
1944
|
+
isOptional: boolean;
|
|
1945
|
+
defaultValue: string;
|
|
1946
|
+
gridInfo?: undefined;
|
|
1947
|
+
reference?: undefined;
|
|
1948
|
+
} | {
|
|
1949
|
+
name: string;
|
|
1950
|
+
kind: string;
|
|
1951
|
+
description: string;
|
|
1952
|
+
uiLabel: string;
|
|
1953
|
+
isOptional: boolean;
|
|
1954
|
+
gridInfo: string;
|
|
1955
|
+
defaultValue: string;
|
|
1956
|
+
reference?: undefined;
|
|
1957
|
+
} | {
|
|
1958
|
+
name: string;
|
|
1959
|
+
kind: string;
|
|
1960
|
+
description: string;
|
|
1961
|
+
uiLabel: string;
|
|
1962
|
+
isOptional: boolean;
|
|
1963
|
+
defaultValue?: undefined;
|
|
1964
|
+
gridInfo?: undefined;
|
|
1965
|
+
reference?: undefined;
|
|
1966
|
+
} | {
|
|
1967
|
+
name: string;
|
|
1968
|
+
kind: string;
|
|
1969
|
+
description: string;
|
|
1970
|
+
uiLabel: string;
|
|
1971
|
+
isOptional: boolean;
|
|
1972
|
+
defaultValue: string;
|
|
1973
|
+
reference: string;
|
|
1974
|
+
gridInfo?: undefined;
|
|
1975
|
+
})[];
|
|
1976
|
+
};
|
|
1977
|
+
Glue42Api: {
|
|
1978
|
+
name: string;
|
|
1979
|
+
kind: string;
|
|
1980
|
+
description: string;
|
|
1981
|
+
properties: {
|
|
1982
|
+
name: string;
|
|
1983
|
+
kind: string;
|
|
1984
|
+
description: string;
|
|
1985
|
+
uiLabel: string;
|
|
1986
|
+
}[];
|
|
1987
|
+
};
|
|
1988
|
+
Glue42PluginOptions: {
|
|
1989
|
+
name: string;
|
|
1990
|
+
kind: string;
|
|
1991
|
+
description: string;
|
|
1992
|
+
properties: {
|
|
1993
|
+
name: string;
|
|
1994
|
+
kind: string;
|
|
1995
|
+
description: string;
|
|
1996
|
+
uiLabel: string;
|
|
1997
|
+
isOptional: boolean;
|
|
1998
|
+
}[];
|
|
1999
|
+
};
|
|
2000
|
+
Glue42Report: {
|
|
2001
|
+
name: string;
|
|
2002
|
+
kind: string;
|
|
2003
|
+
description: string;
|
|
2004
|
+
properties: {
|
|
2005
|
+
name: string;
|
|
2006
|
+
kind: string;
|
|
2007
|
+
description: string;
|
|
2008
|
+
uiLabel: string;
|
|
2009
|
+
}[];
|
|
2010
|
+
};
|
|
2011
|
+
Glue42Schedule: {
|
|
2012
|
+
name: string;
|
|
2013
|
+
kind: string;
|
|
2014
|
+
description: string;
|
|
2015
|
+
properties: ({
|
|
2016
|
+
name: string;
|
|
2017
|
+
kind: string;
|
|
2018
|
+
description: string;
|
|
2019
|
+
uiLabel: string;
|
|
2020
|
+
reference: string;
|
|
2021
|
+
} | {
|
|
2022
|
+
name: string;
|
|
2023
|
+
kind: string;
|
|
2024
|
+
description: string;
|
|
2025
|
+
uiLabel: string;
|
|
2026
|
+
reference?: undefined;
|
|
2027
|
+
})[];
|
|
2028
|
+
};
|
|
2029
|
+
Glue42State: {
|
|
2030
|
+
name: string;
|
|
2031
|
+
kind: string;
|
|
2032
|
+
description: string;
|
|
2033
|
+
properties: ({
|
|
2034
|
+
name: string;
|
|
2035
|
+
kind: string;
|
|
2036
|
+
description: string;
|
|
2037
|
+
uiLabel: string;
|
|
2038
|
+
isOptional: boolean;
|
|
2039
|
+
reference: string;
|
|
2040
|
+
} | {
|
|
2041
|
+
name: string;
|
|
2042
|
+
kind: string;
|
|
2043
|
+
description: string;
|
|
2044
|
+
uiLabel: string;
|
|
2045
|
+
isOptional: boolean;
|
|
2046
|
+
reference?: undefined;
|
|
2047
|
+
})[];
|
|
2048
|
+
};
|
|
2049
|
+
GridApi: {
|
|
2050
|
+
name: string;
|
|
2051
|
+
kind: string;
|
|
2052
|
+
description: string;
|
|
2053
|
+
properties: {
|
|
2054
|
+
name: string;
|
|
2055
|
+
kind: string;
|
|
2056
|
+
description: string;
|
|
2057
|
+
uiLabel: string;
|
|
2058
|
+
}[];
|
|
2059
|
+
};
|
|
2060
|
+
GridCell: {
|
|
2061
|
+
name: string;
|
|
2062
|
+
kind: string;
|
|
2063
|
+
description: string;
|
|
2064
|
+
properties: ({
|
|
2065
|
+
name: string;
|
|
2066
|
+
kind: string;
|
|
2067
|
+
description: string;
|
|
2068
|
+
uiLabel: string;
|
|
2069
|
+
isOptional?: undefined;
|
|
2070
|
+
reference?: undefined;
|
|
2071
|
+
} | {
|
|
2072
|
+
name: string;
|
|
2073
|
+
kind: string;
|
|
2074
|
+
description: string;
|
|
2075
|
+
uiLabel: string;
|
|
2076
|
+
isOptional: boolean;
|
|
2077
|
+
reference?: undefined;
|
|
2078
|
+
} | {
|
|
2079
|
+
name: string;
|
|
2080
|
+
kind: string;
|
|
2081
|
+
description: string;
|
|
2082
|
+
uiLabel: string;
|
|
2083
|
+
reference: string;
|
|
2084
|
+
isOptional?: undefined;
|
|
2085
|
+
})[];
|
|
2086
|
+
};
|
|
2087
|
+
GridDataChangedInfo: {
|
|
2088
|
+
name: string;
|
|
2089
|
+
kind: string;
|
|
2090
|
+
description: string;
|
|
2091
|
+
properties: {
|
|
2092
|
+
name: string;
|
|
2093
|
+
kind: string;
|
|
2094
|
+
description: string;
|
|
2095
|
+
uiLabel: string;
|
|
2096
|
+
}[];
|
|
2097
|
+
};
|
|
2098
|
+
GridRow: {
|
|
2099
|
+
name: string;
|
|
2100
|
+
kind: string;
|
|
2101
|
+
description: string;
|
|
2102
|
+
properties: ({
|
|
2103
|
+
name: string;
|
|
2104
|
+
kind: string;
|
|
2105
|
+
description: string;
|
|
2106
|
+
uiLabel: string;
|
|
2107
|
+
isOptional?: undefined;
|
|
2108
|
+
reference?: undefined;
|
|
2109
|
+
} | {
|
|
2110
|
+
name: string;
|
|
2111
|
+
kind: string;
|
|
2112
|
+
description: string;
|
|
2113
|
+
uiLabel: string;
|
|
2114
|
+
isOptional: boolean;
|
|
2115
|
+
reference?: undefined;
|
|
2116
|
+
} | {
|
|
2117
|
+
name: string;
|
|
2118
|
+
kind: string;
|
|
2119
|
+
description: string;
|
|
2120
|
+
uiLabel: string;
|
|
2121
|
+
isOptional: boolean;
|
|
2122
|
+
reference: string;
|
|
2123
|
+
})[];
|
|
2124
|
+
};
|
|
2125
|
+
IAdaptableNoCodeWizard: {
|
|
2126
|
+
name: string;
|
|
2127
|
+
kind: string;
|
|
2128
|
+
description: string;
|
|
2129
|
+
};
|
|
2130
|
+
InstrumentColumn: {
|
|
2131
|
+
name: string;
|
|
2132
|
+
kind: string;
|
|
2133
|
+
description: string;
|
|
2134
|
+
properties: ({
|
|
2135
|
+
name: string;
|
|
2136
|
+
kind: string;
|
|
2137
|
+
description: string;
|
|
2138
|
+
uiLabel: string;
|
|
2139
|
+
isOptional: boolean;
|
|
2140
|
+
} | {
|
|
2141
|
+
name: string;
|
|
2142
|
+
kind: string;
|
|
2143
|
+
description: string;
|
|
2144
|
+
uiLabel: string;
|
|
2145
|
+
isOptional?: undefined;
|
|
2146
|
+
})[];
|
|
2147
|
+
};
|
|
2148
|
+
InstrumentContext: {
|
|
2149
|
+
name: string;
|
|
2150
|
+
kind: string;
|
|
2151
|
+
description: string;
|
|
2152
|
+
properties: {
|
|
2153
|
+
name: string;
|
|
2154
|
+
kind: string;
|
|
2155
|
+
description: string;
|
|
2156
|
+
uiLabel: string;
|
|
2157
|
+
}[];
|
|
2158
|
+
};
|
|
2159
|
+
IPushPullApi: {
|
|
2160
|
+
name: string;
|
|
2161
|
+
kind: string;
|
|
2162
|
+
description: string;
|
|
2163
|
+
properties: {
|
|
2164
|
+
name: string;
|
|
2165
|
+
kind: string;
|
|
2166
|
+
description: string;
|
|
2167
|
+
uiLabel: string;
|
|
2168
|
+
}[];
|
|
2169
|
+
};
|
|
2170
|
+
IPushPullDomain: {
|
|
2171
|
+
name: string;
|
|
2172
|
+
kind: string;
|
|
2173
|
+
description: string;
|
|
2174
|
+
properties: {
|
|
2175
|
+
name: string;
|
|
2176
|
+
kind: string;
|
|
2177
|
+
description: string;
|
|
2178
|
+
uiLabel: string;
|
|
2179
|
+
}[];
|
|
2180
|
+
};
|
|
2181
|
+
IPushPullPluginOptions: {
|
|
2182
|
+
name: string;
|
|
2183
|
+
kind: string;
|
|
2184
|
+
description: string;
|
|
2185
|
+
properties: ({
|
|
2186
|
+
name: string;
|
|
2187
|
+
kind: string;
|
|
2188
|
+
description: string;
|
|
2189
|
+
uiLabel: string;
|
|
2190
|
+
isOptional: boolean;
|
|
2191
|
+
defaultValue: string;
|
|
2192
|
+
} | {
|
|
2193
|
+
name: string;
|
|
2194
|
+
kind: string;
|
|
2195
|
+
description: string;
|
|
2196
|
+
uiLabel: string;
|
|
2197
|
+
isOptional: boolean;
|
|
2198
|
+
defaultValue?: undefined;
|
|
2199
|
+
})[];
|
|
2200
|
+
};
|
|
2201
|
+
IPushPullReport: {
|
|
2202
|
+
name: string;
|
|
2203
|
+
kind: string;
|
|
2204
|
+
description: string;
|
|
2205
|
+
};
|
|
2206
|
+
IPushPullSchedule: {
|
|
2207
|
+
name: string;
|
|
2208
|
+
kind: string;
|
|
2209
|
+
description: string;
|
|
2210
|
+
};
|
|
2211
|
+
IPushPullState: {
|
|
2212
|
+
name: string;
|
|
2213
|
+
kind: string;
|
|
2214
|
+
description: string;
|
|
2215
|
+
};
|
|
2216
|
+
Layout: {
|
|
2217
|
+
name: string;
|
|
2218
|
+
kind: string;
|
|
2219
|
+
description: string;
|
|
2220
|
+
properties: ({
|
|
2221
|
+
name: string;
|
|
2222
|
+
kind: string;
|
|
2223
|
+
description: string;
|
|
2224
|
+
uiLabel: string;
|
|
2225
|
+
isOptional: boolean;
|
|
2226
|
+
} | {
|
|
2227
|
+
name: string;
|
|
2228
|
+
kind: string;
|
|
2229
|
+
description: string;
|
|
2230
|
+
uiLabel: string;
|
|
2231
|
+
isOptional?: undefined;
|
|
2232
|
+
})[];
|
|
2233
|
+
};
|
|
2234
|
+
LayoutApi: {
|
|
2235
|
+
name: string;
|
|
2236
|
+
kind: string;
|
|
2237
|
+
description: string;
|
|
2238
|
+
properties: {
|
|
2239
|
+
name: string;
|
|
2240
|
+
kind: string;
|
|
2241
|
+
description: string;
|
|
2242
|
+
uiLabel: string;
|
|
2243
|
+
}[];
|
|
2244
|
+
};
|
|
2245
|
+
LayoutChangedInfo: {
|
|
2246
|
+
name: string;
|
|
2247
|
+
kind: string;
|
|
2248
|
+
description: string;
|
|
2249
|
+
properties: ({
|
|
2250
|
+
name: string;
|
|
2251
|
+
kind: string;
|
|
2252
|
+
description: string;
|
|
2253
|
+
uiLabel: string;
|
|
2254
|
+
reference?: undefined;
|
|
2255
|
+
} | {
|
|
2256
|
+
name: string;
|
|
2257
|
+
kind: string;
|
|
2258
|
+
description: string;
|
|
2259
|
+
uiLabel: string;
|
|
2260
|
+
reference: string;
|
|
2261
|
+
})[];
|
|
2262
|
+
};
|
|
2263
|
+
LayoutOptions: {
|
|
2264
|
+
name: string;
|
|
2265
|
+
kind: string;
|
|
2266
|
+
description: string;
|
|
2267
|
+
properties: {
|
|
2268
|
+
name: string;
|
|
2269
|
+
kind: string;
|
|
2270
|
+
description: string;
|
|
2271
|
+
uiLabel: string;
|
|
2272
|
+
isOptional: boolean;
|
|
2273
|
+
gridInfo: string;
|
|
2274
|
+
defaultValue: string;
|
|
2275
|
+
}[];
|
|
2276
|
+
};
|
|
2277
|
+
LayoutState: {
|
|
2278
|
+
name: string;
|
|
2279
|
+
kind: string;
|
|
2280
|
+
description: string;
|
|
2281
|
+
properties: {
|
|
2282
|
+
name: string;
|
|
2283
|
+
kind: string;
|
|
2284
|
+
description: string;
|
|
2285
|
+
uiLabel: string;
|
|
2286
|
+
isOptional: boolean;
|
|
2287
|
+
defaultValue: string;
|
|
2288
|
+
}[];
|
|
2289
|
+
};
|
|
2290
|
+
LiveDataChangedInfo: {
|
|
2291
|
+
name: string;
|
|
2292
|
+
kind: string;
|
|
2293
|
+
description: string;
|
|
2294
|
+
properties: ({
|
|
2295
|
+
name: string;
|
|
2296
|
+
kind: string;
|
|
2297
|
+
description: string;
|
|
2298
|
+
uiLabel: string;
|
|
2299
|
+
isOptional?: undefined;
|
|
2300
|
+
} | {
|
|
2301
|
+
name: string;
|
|
2302
|
+
kind: string;
|
|
2303
|
+
description: string;
|
|
2304
|
+
uiLabel: string;
|
|
2305
|
+
isOptional: boolean;
|
|
2306
|
+
})[];
|
|
2307
|
+
};
|
|
2308
|
+
LiveReport: {
|
|
2309
|
+
name: string;
|
|
2310
|
+
kind: string;
|
|
2311
|
+
description: string;
|
|
2312
|
+
properties: ({
|
|
2313
|
+
name: string;
|
|
2314
|
+
kind: string;
|
|
2315
|
+
description: string;
|
|
2316
|
+
uiLabel: string;
|
|
2317
|
+
reference?: undefined;
|
|
2318
|
+
} | {
|
|
2319
|
+
name: string;
|
|
2320
|
+
kind: string;
|
|
2321
|
+
description: string;
|
|
2322
|
+
uiLabel: string;
|
|
2323
|
+
reference: string;
|
|
2324
|
+
})[];
|
|
2325
|
+
};
|
|
2326
|
+
MenuContext: {
|
|
2327
|
+
name: string;
|
|
2328
|
+
kind: string;
|
|
2329
|
+
description: string;
|
|
2330
|
+
properties: ({
|
|
2331
|
+
name: string;
|
|
2332
|
+
kind: string;
|
|
2333
|
+
description: string;
|
|
2334
|
+
uiLabel: string;
|
|
2335
|
+
reference: string;
|
|
2336
|
+
} | {
|
|
2337
|
+
name: string;
|
|
2338
|
+
kind: string;
|
|
2339
|
+
description: string;
|
|
2340
|
+
uiLabel: string;
|
|
2341
|
+
reference?: undefined;
|
|
2342
|
+
})[];
|
|
2343
|
+
};
|
|
2344
|
+
MenuOptions: {
|
|
2345
|
+
name: string;
|
|
2346
|
+
kind: string;
|
|
2347
|
+
description: string;
|
|
2348
|
+
properties: ({
|
|
2349
|
+
name: string;
|
|
2350
|
+
kind: string;
|
|
2351
|
+
description: string;
|
|
2352
|
+
uiLabel: string;
|
|
2353
|
+
isOptional: boolean;
|
|
2354
|
+
gridInfo?: undefined;
|
|
2355
|
+
defaultValue?: undefined;
|
|
2356
|
+
} | {
|
|
2357
|
+
name: string;
|
|
2358
|
+
kind: string;
|
|
2359
|
+
description: string;
|
|
2360
|
+
uiLabel: string;
|
|
2361
|
+
isOptional: boolean;
|
|
2362
|
+
gridInfo: string;
|
|
2363
|
+
defaultValue: string;
|
|
2364
|
+
})[];
|
|
2365
|
+
};
|
|
2366
|
+
NamedQuery: {
|
|
2367
|
+
name: string;
|
|
2368
|
+
kind: string;
|
|
2369
|
+
description: string;
|
|
2370
|
+
properties: {
|
|
2371
|
+
name: string;
|
|
2372
|
+
kind: string;
|
|
2373
|
+
description: string;
|
|
2374
|
+
uiLabel: string;
|
|
2375
|
+
}[];
|
|
2376
|
+
};
|
|
2377
|
+
NumberFormatterOptions: {
|
|
2378
|
+
name: string;
|
|
2379
|
+
kind: string;
|
|
2380
|
+
description: string;
|
|
2381
|
+
properties: {
|
|
2382
|
+
name: string;
|
|
2383
|
+
kind: string;
|
|
2384
|
+
description: string;
|
|
2385
|
+
uiLabel: string;
|
|
2386
|
+
isOptional: boolean;
|
|
2387
|
+
}[];
|
|
2388
|
+
};
|
|
2389
|
+
OpenFinApi: {
|
|
2390
|
+
name: string;
|
|
2391
|
+
kind: string;
|
|
2392
|
+
description: string;
|
|
2393
|
+
properties: {
|
|
2394
|
+
name: string;
|
|
2395
|
+
kind: string;
|
|
2396
|
+
description: string;
|
|
2397
|
+
uiLabel: string;
|
|
2398
|
+
}[];
|
|
2399
|
+
};
|
|
2400
|
+
OpenFinPluginOptions: {
|
|
2401
|
+
name: string;
|
|
2402
|
+
kind: string;
|
|
2403
|
+
description: string;
|
|
2404
|
+
properties: ({
|
|
2405
|
+
name: string;
|
|
2406
|
+
kind: string;
|
|
2407
|
+
description: string;
|
|
2408
|
+
uiLabel: string;
|
|
2409
|
+
isOptional: boolean;
|
|
2410
|
+
defaultValue?: undefined;
|
|
2411
|
+
} | {
|
|
2412
|
+
name: string;
|
|
2413
|
+
kind: string;
|
|
2414
|
+
description: string;
|
|
2415
|
+
uiLabel: string;
|
|
2416
|
+
isOptional: boolean;
|
|
2417
|
+
defaultValue: string;
|
|
2418
|
+
})[];
|
|
2419
|
+
};
|
|
2420
|
+
OpenFinReport: {
|
|
2421
|
+
name: string;
|
|
2422
|
+
kind: string;
|
|
2423
|
+
description: string;
|
|
2424
|
+
properties: {
|
|
2425
|
+
name: string;
|
|
2426
|
+
kind: string;
|
|
2427
|
+
description: string;
|
|
2428
|
+
uiLabel: string;
|
|
2429
|
+
}[];
|
|
2430
|
+
};
|
|
2431
|
+
OpenFinSchedule: {
|
|
2432
|
+
name: string;
|
|
2433
|
+
kind: string;
|
|
2434
|
+
description: string;
|
|
2435
|
+
properties: ({
|
|
2436
|
+
name: string;
|
|
2437
|
+
kind: string;
|
|
2438
|
+
description: string;
|
|
2439
|
+
uiLabel: string;
|
|
2440
|
+
reference: string;
|
|
2441
|
+
} | {
|
|
2442
|
+
name: string;
|
|
2443
|
+
kind: string;
|
|
2444
|
+
description: string;
|
|
2445
|
+
uiLabel: string;
|
|
2446
|
+
reference?: undefined;
|
|
2447
|
+
})[];
|
|
2448
|
+
};
|
|
2449
|
+
OpenFinState: {
|
|
2450
|
+
name: string;
|
|
2451
|
+
kind: string;
|
|
2452
|
+
description: string;
|
|
2453
|
+
};
|
|
2454
|
+
PluginsApi: {
|
|
2455
|
+
name: string;
|
|
2456
|
+
kind: string;
|
|
2457
|
+
description: string;
|
|
2458
|
+
};
|
|
2459
|
+
PlusMinusApi: {
|
|
2460
|
+
name: string;
|
|
2461
|
+
kind: string;
|
|
2462
|
+
description: string;
|
|
2463
|
+
properties: {
|
|
2464
|
+
name: string;
|
|
2465
|
+
kind: string;
|
|
2466
|
+
description: string;
|
|
2467
|
+
uiLabel: string;
|
|
2468
|
+
}[];
|
|
2469
|
+
};
|
|
2470
|
+
PlusMinusNudge: {
|
|
2471
|
+
name: string;
|
|
2472
|
+
kind: string;
|
|
2473
|
+
description: string;
|
|
2474
|
+
properties: ({
|
|
2475
|
+
name: string;
|
|
2476
|
+
kind: string;
|
|
2477
|
+
description: string;
|
|
2478
|
+
uiLabel: string;
|
|
2479
|
+
isOptional?: undefined;
|
|
2480
|
+
reference?: undefined;
|
|
2481
|
+
} | {
|
|
2482
|
+
name: string;
|
|
2483
|
+
kind: string;
|
|
2484
|
+
description: string;
|
|
2485
|
+
uiLabel: string;
|
|
2486
|
+
isOptional: boolean;
|
|
2487
|
+
reference: string;
|
|
2488
|
+
} | {
|
|
2489
|
+
name: string;
|
|
2490
|
+
kind: string;
|
|
2491
|
+
description: string;
|
|
2492
|
+
uiLabel: string;
|
|
2493
|
+
reference: string;
|
|
2494
|
+
isOptional?: undefined;
|
|
2495
|
+
})[];
|
|
2496
|
+
};
|
|
2497
|
+
PlusMinusState: {
|
|
2498
|
+
name: string;
|
|
2499
|
+
kind: string;
|
|
2500
|
+
description: string;
|
|
2501
|
+
properties: {
|
|
2502
|
+
name: string;
|
|
2503
|
+
kind: string;
|
|
2504
|
+
description: string;
|
|
2505
|
+
uiLabel: string;
|
|
2506
|
+
isOptional: boolean;
|
|
2507
|
+
}[];
|
|
2508
|
+
};
|
|
2509
|
+
PredefinedConfig: {
|
|
2510
|
+
name: string;
|
|
2511
|
+
kind: string;
|
|
2512
|
+
description: string;
|
|
2513
|
+
properties: ({
|
|
2514
|
+
name: string;
|
|
2515
|
+
kind: string;
|
|
2516
|
+
description: string;
|
|
2517
|
+
uiLabel: string;
|
|
2518
|
+
isOptional: boolean;
|
|
2519
|
+
reference?: undefined;
|
|
2520
|
+
} | {
|
|
2521
|
+
name: string;
|
|
2522
|
+
kind: string;
|
|
2523
|
+
description: string;
|
|
2524
|
+
uiLabel: string;
|
|
2525
|
+
isOptional: boolean;
|
|
2526
|
+
reference: string;
|
|
2527
|
+
})[];
|
|
2528
|
+
};
|
|
2529
|
+
PredicateApi: {
|
|
2530
|
+
name: string;
|
|
2531
|
+
kind: string;
|
|
2532
|
+
description: string;
|
|
2533
|
+
properties: {
|
|
2534
|
+
name: string;
|
|
2535
|
+
kind: string;
|
|
2536
|
+
description: string;
|
|
2537
|
+
uiLabel: string;
|
|
2538
|
+
}[];
|
|
2539
|
+
};
|
|
2540
|
+
PredicateDefHandlerParams: {
|
|
2541
|
+
name: string;
|
|
2542
|
+
kind: string;
|
|
2543
|
+
description: string;
|
|
2544
|
+
properties: ({
|
|
2545
|
+
name: string;
|
|
2546
|
+
kind: string;
|
|
2547
|
+
description: string;
|
|
2548
|
+
uiLabel: string;
|
|
2549
|
+
reference: string;
|
|
2550
|
+
} | {
|
|
2551
|
+
name: string;
|
|
2552
|
+
kind: string;
|
|
2553
|
+
description: string;
|
|
2554
|
+
uiLabel: string;
|
|
2555
|
+
reference?: undefined;
|
|
2556
|
+
})[];
|
|
2557
|
+
};
|
|
2558
|
+
QueryApi: {
|
|
2559
|
+
name: string;
|
|
2560
|
+
kind: string;
|
|
2561
|
+
description: string;
|
|
2562
|
+
properties: {
|
|
2563
|
+
name: string;
|
|
2564
|
+
kind: string;
|
|
2565
|
+
description: string;
|
|
2566
|
+
uiLabel: string;
|
|
2567
|
+
}[];
|
|
2568
|
+
};
|
|
2569
|
+
QueryState: {
|
|
2570
|
+
name: string;
|
|
2571
|
+
kind: string;
|
|
2572
|
+
description: string;
|
|
2573
|
+
properties: {
|
|
2574
|
+
name: string;
|
|
2575
|
+
kind: string;
|
|
2576
|
+
description: string;
|
|
2577
|
+
uiLabel: string;
|
|
2578
|
+
isOptional: boolean;
|
|
2579
|
+
}[];
|
|
2580
|
+
};
|
|
2581
|
+
QuickSearchApi: {
|
|
2582
|
+
name: string;
|
|
2583
|
+
kind: string;
|
|
2584
|
+
description: string;
|
|
2585
|
+
properties: {
|
|
2586
|
+
name: string;
|
|
2587
|
+
kind: string;
|
|
2588
|
+
description: string;
|
|
2589
|
+
uiLabel: string;
|
|
2590
|
+
}[];
|
|
2591
|
+
};
|
|
2592
|
+
QuickSearchState: {
|
|
2593
|
+
name: string;
|
|
2594
|
+
kind: string;
|
|
2595
|
+
description: string;
|
|
2596
|
+
properties: ({
|
|
2597
|
+
name: string;
|
|
2598
|
+
kind: string;
|
|
2599
|
+
description: string;
|
|
2600
|
+
uiLabel: string;
|
|
2601
|
+
isOptional: boolean;
|
|
2602
|
+
reference?: undefined;
|
|
2603
|
+
} | {
|
|
2604
|
+
name: string;
|
|
2605
|
+
kind: string;
|
|
2606
|
+
description: string;
|
|
2607
|
+
uiLabel: string;
|
|
2608
|
+
isOptional: boolean;
|
|
2609
|
+
reference: string;
|
|
2610
|
+
})[];
|
|
2611
|
+
};
|
|
2612
|
+
ReactFrameworkComponent: {
|
|
2613
|
+
name: string;
|
|
2614
|
+
kind: string;
|
|
2615
|
+
description: string;
|
|
2616
|
+
};
|
|
2617
|
+
ReminderSchedule: {
|
|
2618
|
+
name: string;
|
|
2619
|
+
kind: string;
|
|
2620
|
+
description: string;
|
|
2621
|
+
};
|
|
2622
|
+
ReportData: {
|
|
2623
|
+
name: string;
|
|
2624
|
+
kind: string;
|
|
2625
|
+
description: string;
|
|
2626
|
+
properties: {
|
|
2627
|
+
name: string;
|
|
2628
|
+
kind: string;
|
|
2629
|
+
description: string;
|
|
2630
|
+
uiLabel: string;
|
|
2631
|
+
}[];
|
|
2632
|
+
};
|
|
2633
|
+
ReportSchedule: {
|
|
2634
|
+
name: string;
|
|
2635
|
+
kind: string;
|
|
2636
|
+
description: string;
|
|
2637
|
+
properties: ({
|
|
2638
|
+
name: string;
|
|
2639
|
+
kind: string;
|
|
2640
|
+
description: string;
|
|
2641
|
+
uiLabel: string;
|
|
2642
|
+
isOptional?: undefined;
|
|
2643
|
+
reference?: undefined;
|
|
2644
|
+
} | {
|
|
2645
|
+
name: string;
|
|
2646
|
+
kind: string;
|
|
2647
|
+
description: string;
|
|
2648
|
+
uiLabel: string;
|
|
2649
|
+
isOptional: boolean;
|
|
2650
|
+
reference: string;
|
|
2651
|
+
})[];
|
|
2652
|
+
};
|
|
2653
|
+
RowInfo: {
|
|
2654
|
+
name: string;
|
|
2655
|
+
kind: string;
|
|
2656
|
+
description: string;
|
|
2657
|
+
properties: {
|
|
2658
|
+
name: string;
|
|
2659
|
+
kind: string;
|
|
2660
|
+
description: string;
|
|
2661
|
+
uiLabel: string;
|
|
2662
|
+
isOptional: boolean;
|
|
2663
|
+
}[];
|
|
2664
|
+
};
|
|
2665
|
+
Schedule: {
|
|
2666
|
+
name: string;
|
|
2667
|
+
kind: string;
|
|
2668
|
+
description: string;
|
|
2669
|
+
properties: ({
|
|
2670
|
+
name: string;
|
|
2671
|
+
kind: string;
|
|
2672
|
+
description: string;
|
|
2673
|
+
uiLabel: string;
|
|
2674
|
+
isOptional: boolean;
|
|
2675
|
+
} | {
|
|
2676
|
+
name: string;
|
|
2677
|
+
kind: string;
|
|
2678
|
+
description: string;
|
|
2679
|
+
uiLabel: string;
|
|
2680
|
+
isOptional?: undefined;
|
|
2681
|
+
})[];
|
|
2682
|
+
};
|
|
2683
|
+
ScheduleApi: {
|
|
2684
|
+
name: string;
|
|
2685
|
+
kind: string;
|
|
2686
|
+
description: string;
|
|
2687
|
+
properties: {
|
|
2688
|
+
name: string;
|
|
2689
|
+
kind: string;
|
|
2690
|
+
description: string;
|
|
2691
|
+
uiLabel: string;
|
|
2692
|
+
}[];
|
|
2693
|
+
};
|
|
2694
|
+
ScheduleState: {
|
|
2695
|
+
name: string;
|
|
2696
|
+
kind: string;
|
|
2697
|
+
description: string;
|
|
2698
|
+
properties: {
|
|
2699
|
+
name: string;
|
|
2700
|
+
kind: string;
|
|
2701
|
+
description: string;
|
|
2702
|
+
uiLabel: string;
|
|
2703
|
+
isOptional: boolean;
|
|
2704
|
+
}[];
|
|
2705
|
+
};
|
|
2706
|
+
ScopeApi: {
|
|
2707
|
+
name: string;
|
|
2708
|
+
kind: string;
|
|
2709
|
+
description: string;
|
|
2710
|
+
properties: {
|
|
2711
|
+
name: string;
|
|
2712
|
+
kind: string;
|
|
2713
|
+
description: string;
|
|
2714
|
+
uiLabel: string;
|
|
2715
|
+
}[];
|
|
2716
|
+
};
|
|
2717
|
+
SearchChangedInfo: {
|
|
2718
|
+
name: string;
|
|
2719
|
+
kind: string;
|
|
2720
|
+
description: string;
|
|
2721
|
+
properties: ({
|
|
2722
|
+
name: string;
|
|
2723
|
+
kind: string;
|
|
2724
|
+
description: string;
|
|
2725
|
+
uiLabel: string;
|
|
2726
|
+
reference: string;
|
|
2727
|
+
} | {
|
|
2728
|
+
name: string;
|
|
2729
|
+
kind: string;
|
|
2730
|
+
description: string;
|
|
2731
|
+
uiLabel: string;
|
|
2732
|
+
reference?: undefined;
|
|
2733
|
+
})[];
|
|
2734
|
+
};
|
|
2735
|
+
SearchOptions: {
|
|
2736
|
+
name: string;
|
|
2737
|
+
kind: string;
|
|
2738
|
+
description: string;
|
|
2739
|
+
properties: ({
|
|
2740
|
+
name: string;
|
|
2741
|
+
kind: string;
|
|
2742
|
+
description: string;
|
|
2743
|
+
uiLabel: string;
|
|
2744
|
+
isOptional: boolean;
|
|
2745
|
+
gridInfo: string;
|
|
2746
|
+
defaultValue: string;
|
|
2747
|
+
reference?: undefined;
|
|
2748
|
+
} | {
|
|
2749
|
+
name: string;
|
|
2750
|
+
kind: string;
|
|
2751
|
+
description: string;
|
|
2752
|
+
uiLabel: string;
|
|
2753
|
+
isOptional: boolean;
|
|
2754
|
+
defaultValue: string;
|
|
2755
|
+
gridInfo?: undefined;
|
|
2756
|
+
reference?: undefined;
|
|
2757
|
+
} | {
|
|
2758
|
+
name: string;
|
|
2759
|
+
kind: string;
|
|
2760
|
+
description: string;
|
|
2761
|
+
uiLabel: string;
|
|
2762
|
+
isOptional: boolean;
|
|
2763
|
+
defaultValue: string;
|
|
2764
|
+
reference: string;
|
|
2765
|
+
gridInfo?: undefined;
|
|
2766
|
+
} | {
|
|
2767
|
+
name: string;
|
|
2768
|
+
kind: string;
|
|
2769
|
+
description: string;
|
|
2770
|
+
uiLabel: string;
|
|
2771
|
+
isOptional: boolean;
|
|
2772
|
+
gridInfo: string;
|
|
2773
|
+
defaultValue: string;
|
|
2774
|
+
reference: string;
|
|
2775
|
+
} | {
|
|
2776
|
+
name: string;
|
|
2777
|
+
kind: string;
|
|
2778
|
+
description: string;
|
|
2779
|
+
uiLabel: string;
|
|
2780
|
+
isOptional: boolean;
|
|
2781
|
+
reference: string;
|
|
2782
|
+
gridInfo?: undefined;
|
|
2783
|
+
defaultValue?: undefined;
|
|
2784
|
+
})[];
|
|
2785
|
+
};
|
|
2786
|
+
SelectedCellInfo: {
|
|
2787
|
+
name: string;
|
|
2788
|
+
kind: string;
|
|
2789
|
+
description: string;
|
|
2790
|
+
properties: {
|
|
2791
|
+
name: string;
|
|
2792
|
+
kind: string;
|
|
2793
|
+
description: string;
|
|
2794
|
+
uiLabel: string;
|
|
2795
|
+
}[];
|
|
2796
|
+
};
|
|
2797
|
+
SelectedRowInfo: {
|
|
2798
|
+
name: string;
|
|
2799
|
+
kind: string;
|
|
2800
|
+
description: string;
|
|
2801
|
+
properties: {
|
|
2802
|
+
name: string;
|
|
2803
|
+
kind: string;
|
|
2804
|
+
description: string;
|
|
2805
|
+
uiLabel: string;
|
|
2806
|
+
}[];
|
|
2807
|
+
};
|
|
2808
|
+
SelectionChangedInfo: {
|
|
2809
|
+
name: string;
|
|
2810
|
+
kind: string;
|
|
2811
|
+
description: string;
|
|
2812
|
+
properties: {
|
|
2813
|
+
name: string;
|
|
2814
|
+
kind: string;
|
|
2815
|
+
description: string;
|
|
2816
|
+
uiLabel: string;
|
|
2817
|
+
reference: string;
|
|
2818
|
+
}[];
|
|
2819
|
+
};
|
|
2820
|
+
SharedEntity: {
|
|
2821
|
+
name: string;
|
|
2822
|
+
kind: string;
|
|
2823
|
+
description: string;
|
|
2824
|
+
properties: ({
|
|
2825
|
+
name: string;
|
|
2826
|
+
kind: string;
|
|
2827
|
+
description: string;
|
|
2828
|
+
uiLabel: string;
|
|
2829
|
+
reference?: undefined;
|
|
2830
|
+
} | {
|
|
2831
|
+
name: string;
|
|
2832
|
+
kind: string;
|
|
2833
|
+
description: string;
|
|
2834
|
+
uiLabel: string;
|
|
2835
|
+
reference: string;
|
|
2836
|
+
})[];
|
|
2837
|
+
};
|
|
2838
|
+
Shortcut: {
|
|
2839
|
+
name: string;
|
|
2840
|
+
kind: string;
|
|
2841
|
+
description: string;
|
|
2842
|
+
properties: ({
|
|
2843
|
+
name: string;
|
|
2844
|
+
kind: string;
|
|
2845
|
+
description: string;
|
|
2846
|
+
uiLabel: string;
|
|
2847
|
+
reference: string;
|
|
2848
|
+
} | {
|
|
2849
|
+
name: string;
|
|
2850
|
+
kind: string;
|
|
2851
|
+
description: string;
|
|
2852
|
+
uiLabel: string;
|
|
2853
|
+
reference?: undefined;
|
|
2854
|
+
})[];
|
|
2855
|
+
};
|
|
2856
|
+
ShortcutApi: {
|
|
2857
|
+
name: string;
|
|
2858
|
+
kind: string;
|
|
2859
|
+
description: string;
|
|
2860
|
+
properties: {
|
|
2861
|
+
name: string;
|
|
2862
|
+
kind: string;
|
|
2863
|
+
description: string;
|
|
2864
|
+
uiLabel: string;
|
|
2865
|
+
}[];
|
|
2866
|
+
};
|
|
2867
|
+
ShortcutState: {
|
|
2868
|
+
name: string;
|
|
2869
|
+
kind: string;
|
|
2870
|
+
description: string;
|
|
2871
|
+
properties: {
|
|
2872
|
+
name: string;
|
|
2873
|
+
kind: string;
|
|
2874
|
+
description: string;
|
|
2875
|
+
uiLabel: string;
|
|
2876
|
+
isOptional: boolean;
|
|
2877
|
+
}[];
|
|
2878
|
+
};
|
|
2879
|
+
SmartEditApi: {
|
|
2880
|
+
name: string;
|
|
2881
|
+
kind: string;
|
|
2882
|
+
description: string;
|
|
2883
|
+
properties: {
|
|
2884
|
+
name: string;
|
|
2885
|
+
kind: string;
|
|
2886
|
+
description: string;
|
|
2887
|
+
uiLabel: string;
|
|
2888
|
+
}[];
|
|
2889
|
+
};
|
|
2890
|
+
SparklineColumn: {
|
|
2891
|
+
name: string;
|
|
2892
|
+
kind: string;
|
|
2893
|
+
description: string;
|
|
2894
|
+
properties: ({
|
|
2895
|
+
name: string;
|
|
2896
|
+
kind: string;
|
|
2897
|
+
description: string;
|
|
2898
|
+
uiLabel: string;
|
|
2899
|
+
isOptional?: undefined;
|
|
2900
|
+
} | {
|
|
2901
|
+
name: string;
|
|
2902
|
+
kind: string;
|
|
2903
|
+
description: string;
|
|
2904
|
+
uiLabel: string;
|
|
2905
|
+
isOptional: boolean;
|
|
2906
|
+
})[];
|
|
2907
|
+
};
|
|
2908
|
+
SparklineColumnApi: {
|
|
2909
|
+
name: string;
|
|
2910
|
+
kind: string;
|
|
2911
|
+
description: string;
|
|
2912
|
+
properties: {
|
|
2913
|
+
name: string;
|
|
2914
|
+
kind: string;
|
|
2915
|
+
description: string;
|
|
2916
|
+
uiLabel: string;
|
|
2917
|
+
}[];
|
|
2918
|
+
};
|
|
2919
|
+
SparklineColumnState: {
|
|
2920
|
+
name: string;
|
|
2921
|
+
kind: string;
|
|
2922
|
+
description: string;
|
|
2923
|
+
properties: {
|
|
2924
|
+
name: string;
|
|
2925
|
+
kind: string;
|
|
2926
|
+
description: string;
|
|
2927
|
+
uiLabel: string;
|
|
2928
|
+
isOptional: boolean;
|
|
2929
|
+
}[];
|
|
2930
|
+
};
|
|
2931
|
+
StateOptions: {
|
|
2932
|
+
name: string;
|
|
2933
|
+
kind: string;
|
|
2934
|
+
description: string;
|
|
2935
|
+
properties: ({
|
|
2936
|
+
name: string;
|
|
2937
|
+
kind: string;
|
|
2938
|
+
description: string;
|
|
2939
|
+
uiLabel: string;
|
|
2940
|
+
isOptional: boolean;
|
|
2941
|
+
reference?: undefined;
|
|
2942
|
+
defaultValue?: undefined;
|
|
2943
|
+
} | {
|
|
2944
|
+
name: string;
|
|
2945
|
+
kind: string;
|
|
2946
|
+
description: string;
|
|
2947
|
+
uiLabel: string;
|
|
2948
|
+
isOptional: boolean;
|
|
2949
|
+
reference: string;
|
|
2950
|
+
defaultValue?: undefined;
|
|
2951
|
+
} | {
|
|
2952
|
+
name: string;
|
|
2953
|
+
kind: string;
|
|
2954
|
+
description: string;
|
|
2955
|
+
uiLabel: string;
|
|
2956
|
+
isOptional: boolean;
|
|
2957
|
+
defaultValue: string;
|
|
2958
|
+
reference?: undefined;
|
|
2959
|
+
})[];
|
|
2960
|
+
};
|
|
2961
|
+
SuspendableObject: {
|
|
2962
|
+
name: string;
|
|
2963
|
+
kind: string;
|
|
2964
|
+
description: string;
|
|
2965
|
+
properties: {
|
|
2966
|
+
name: string;
|
|
2967
|
+
kind: string;
|
|
2968
|
+
description: string;
|
|
2969
|
+
uiLabel: string;
|
|
2970
|
+
isOptional: boolean;
|
|
2971
|
+
}[];
|
|
2972
|
+
};
|
|
2973
|
+
SystemStatusApi: {
|
|
2974
|
+
name: string;
|
|
2975
|
+
kind: string;
|
|
2976
|
+
description: string;
|
|
2977
|
+
properties: {
|
|
2978
|
+
name: string;
|
|
2979
|
+
kind: string;
|
|
2980
|
+
description: string;
|
|
2981
|
+
uiLabel: string;
|
|
2982
|
+
}[];
|
|
2983
|
+
};
|
|
2984
|
+
SystemStatusMessageDisplayedInfo: {
|
|
2985
|
+
name: string;
|
|
2986
|
+
kind: string;
|
|
2987
|
+
description: string;
|
|
2988
|
+
properties: {
|
|
2989
|
+
name: string;
|
|
2990
|
+
kind: string;
|
|
2991
|
+
description: string;
|
|
2992
|
+
uiLabel: string;
|
|
2993
|
+
reference: string;
|
|
2994
|
+
}[];
|
|
2995
|
+
};
|
|
2996
|
+
SystemStatusMessageInfo: {
|
|
2997
|
+
name: string;
|
|
2998
|
+
kind: string;
|
|
2999
|
+
description: string;
|
|
3000
|
+
properties: ({
|
|
3001
|
+
name: string;
|
|
3002
|
+
kind: string;
|
|
3003
|
+
description: string;
|
|
3004
|
+
uiLabel: string;
|
|
3005
|
+
isOptional: boolean;
|
|
3006
|
+
reference?: undefined;
|
|
3007
|
+
} | {
|
|
3008
|
+
name: string;
|
|
3009
|
+
kind: string;
|
|
3010
|
+
description: string;
|
|
3011
|
+
uiLabel: string;
|
|
3012
|
+
isOptional?: undefined;
|
|
3013
|
+
reference?: undefined;
|
|
3014
|
+
} | {
|
|
3015
|
+
name: string;
|
|
3016
|
+
kind: string;
|
|
3017
|
+
description: string;
|
|
3018
|
+
uiLabel: string;
|
|
3019
|
+
reference: string;
|
|
3020
|
+
isOptional?: undefined;
|
|
3021
|
+
})[];
|
|
3022
|
+
};
|
|
3023
|
+
SystemStatusOptions: {
|
|
3024
|
+
name: string;
|
|
3025
|
+
kind: string;
|
|
3026
|
+
description: string;
|
|
3027
|
+
properties: {
|
|
3028
|
+
name: string;
|
|
3029
|
+
kind: string;
|
|
3030
|
+
description: string;
|
|
3031
|
+
uiLabel: string;
|
|
3032
|
+
isOptional: boolean;
|
|
3033
|
+
gridInfo: string;
|
|
3034
|
+
defaultValue: string;
|
|
3035
|
+
}[];
|
|
3036
|
+
};
|
|
3037
|
+
TeamSharedEntityChangedInfo: {
|
|
3038
|
+
name: string;
|
|
3039
|
+
kind: string;
|
|
3040
|
+
description: string;
|
|
3041
|
+
properties: {
|
|
3042
|
+
name: string;
|
|
3043
|
+
kind: string;
|
|
3044
|
+
description: string;
|
|
3045
|
+
uiLabel: string;
|
|
3046
|
+
reference: string;
|
|
3047
|
+
}[];
|
|
3048
|
+
};
|
|
3049
|
+
TeamSharingApi: {
|
|
3050
|
+
name: string;
|
|
3051
|
+
kind: string;
|
|
3052
|
+
description: string;
|
|
3053
|
+
properties: {
|
|
3054
|
+
name: string;
|
|
3055
|
+
kind: string;
|
|
3056
|
+
description: string;
|
|
3057
|
+
uiLabel: string;
|
|
3058
|
+
}[];
|
|
3059
|
+
};
|
|
3060
|
+
TeamSharingOptions: {
|
|
3061
|
+
name: string;
|
|
3062
|
+
kind: string;
|
|
3063
|
+
description: string;
|
|
3064
|
+
properties: ({
|
|
3065
|
+
name: string;
|
|
3066
|
+
kind: string;
|
|
3067
|
+
description: string;
|
|
3068
|
+
uiLabel: string;
|
|
3069
|
+
gridInfo: string;
|
|
3070
|
+
defaultValue: string;
|
|
3071
|
+
isOptional?: undefined;
|
|
3072
|
+
} | {
|
|
3073
|
+
name: string;
|
|
3074
|
+
kind: string;
|
|
3075
|
+
description: string;
|
|
3076
|
+
uiLabel: string;
|
|
3077
|
+
defaultValue: string;
|
|
3078
|
+
gridInfo?: undefined;
|
|
3079
|
+
isOptional?: undefined;
|
|
3080
|
+
} | {
|
|
3081
|
+
name: string;
|
|
3082
|
+
kind: string;
|
|
3083
|
+
description: string;
|
|
3084
|
+
uiLabel: string;
|
|
3085
|
+
isOptional: boolean;
|
|
3086
|
+
gridInfo: string;
|
|
3087
|
+
defaultValue: string;
|
|
3088
|
+
})[];
|
|
3089
|
+
};
|
|
3090
|
+
TeamSharingState: {
|
|
3091
|
+
name: string;
|
|
3092
|
+
kind: string;
|
|
3093
|
+
description: string;
|
|
3094
|
+
properties: {
|
|
3095
|
+
name: string;
|
|
3096
|
+
kind: string;
|
|
3097
|
+
description: string;
|
|
3098
|
+
uiLabel: string;
|
|
3099
|
+
}[];
|
|
3100
|
+
};
|
|
3101
|
+
ThemeApi: {
|
|
3102
|
+
name: string;
|
|
3103
|
+
kind: string;
|
|
3104
|
+
description: string;
|
|
3105
|
+
properties: {
|
|
3106
|
+
name: string;
|
|
3107
|
+
kind: string;
|
|
3108
|
+
description: string;
|
|
3109
|
+
uiLabel: string;
|
|
3110
|
+
}[];
|
|
3111
|
+
};
|
|
3112
|
+
ThemeChangedInfo: {
|
|
3113
|
+
name: string;
|
|
3114
|
+
kind: string;
|
|
3115
|
+
description: string;
|
|
3116
|
+
properties: {
|
|
3117
|
+
name: string;
|
|
3118
|
+
kind: string;
|
|
3119
|
+
description: string;
|
|
3120
|
+
uiLabel: string;
|
|
3121
|
+
}[];
|
|
3122
|
+
};
|
|
3123
|
+
ThemeState: {
|
|
3124
|
+
name: string;
|
|
3125
|
+
kind: string;
|
|
3126
|
+
description: string;
|
|
3127
|
+
properties: {
|
|
3128
|
+
name: string;
|
|
3129
|
+
kind: string;
|
|
3130
|
+
description: string;
|
|
3131
|
+
uiLabel: string;
|
|
3132
|
+
isOptional: boolean;
|
|
3133
|
+
}[];
|
|
3134
|
+
};
|
|
3135
|
+
ToolPanelApi: {
|
|
3136
|
+
name: string;
|
|
3137
|
+
kind: string;
|
|
3138
|
+
description: string;
|
|
3139
|
+
properties: {
|
|
3140
|
+
name: string;
|
|
3141
|
+
kind: string;
|
|
3142
|
+
description: string;
|
|
3143
|
+
uiLabel: string;
|
|
3144
|
+
}[];
|
|
3145
|
+
};
|
|
3146
|
+
ToolPanelButtonContext: {
|
|
3147
|
+
name: string;
|
|
3148
|
+
kind: string;
|
|
3149
|
+
description: string;
|
|
3150
|
+
properties: {
|
|
3151
|
+
name: string;
|
|
3152
|
+
kind: string;
|
|
3153
|
+
description: string;
|
|
3154
|
+
uiLabel: string;
|
|
3155
|
+
reference: string;
|
|
3156
|
+
}[];
|
|
3157
|
+
};
|
|
3158
|
+
ToolPanelOptions: {
|
|
3159
|
+
name: string;
|
|
3160
|
+
kind: string;
|
|
3161
|
+
description: string;
|
|
3162
|
+
properties: ({
|
|
3163
|
+
name: string;
|
|
3164
|
+
kind: string;
|
|
3165
|
+
description: string;
|
|
3166
|
+
uiLabel: string;
|
|
3167
|
+
isOptional: boolean;
|
|
3168
|
+
gridInfo: string;
|
|
3169
|
+
defaultValue: string;
|
|
3170
|
+
} | {
|
|
3171
|
+
name: string;
|
|
3172
|
+
kind: string;
|
|
3173
|
+
description: string;
|
|
3174
|
+
uiLabel: string;
|
|
3175
|
+
isOptional: boolean;
|
|
3176
|
+
gridInfo?: undefined;
|
|
3177
|
+
defaultValue?: undefined;
|
|
3178
|
+
} | {
|
|
3179
|
+
name: string;
|
|
3180
|
+
kind: string;
|
|
3181
|
+
description: string;
|
|
3182
|
+
uiLabel: string;
|
|
3183
|
+
isOptional: boolean;
|
|
3184
|
+
defaultValue: string;
|
|
3185
|
+
gridInfo?: undefined;
|
|
3186
|
+
})[];
|
|
3187
|
+
};
|
|
3188
|
+
ToolPanelState: {
|
|
3189
|
+
name: string;
|
|
3190
|
+
kind: string;
|
|
3191
|
+
description: string;
|
|
3192
|
+
properties: ({
|
|
3193
|
+
name: string;
|
|
3194
|
+
kind: string;
|
|
3195
|
+
description: string;
|
|
3196
|
+
uiLabel: string;
|
|
3197
|
+
isOptional: boolean;
|
|
3198
|
+
defaultValue: string;
|
|
3199
|
+
reference: string;
|
|
3200
|
+
} | {
|
|
3201
|
+
name: string;
|
|
3202
|
+
kind: string;
|
|
3203
|
+
description: string;
|
|
3204
|
+
uiLabel: string;
|
|
3205
|
+
isOptional: boolean;
|
|
3206
|
+
defaultValue: string;
|
|
3207
|
+
reference?: undefined;
|
|
3208
|
+
})[];
|
|
3209
|
+
};
|
|
3210
|
+
UserInterfaceApi: {
|
|
3211
|
+
name: string;
|
|
3212
|
+
kind: string;
|
|
3213
|
+
description: string;
|
|
3214
|
+
properties: {
|
|
3215
|
+
name: string;
|
|
3216
|
+
kind: string;
|
|
3217
|
+
description: string;
|
|
3218
|
+
uiLabel: string;
|
|
3219
|
+
}[];
|
|
3220
|
+
};
|
|
3221
|
+
UserInterfaceOptions: {
|
|
3222
|
+
name: string;
|
|
3223
|
+
kind: string;
|
|
3224
|
+
description: string;
|
|
3225
|
+
properties: ({
|
|
3226
|
+
name: string;
|
|
3227
|
+
kind: string;
|
|
3228
|
+
description: string;
|
|
3229
|
+
uiLabel: string;
|
|
3230
|
+
isOptional: boolean;
|
|
3231
|
+
defaultValue?: undefined;
|
|
3232
|
+
reference?: undefined;
|
|
3233
|
+
gridInfo?: undefined;
|
|
3234
|
+
} | {
|
|
3235
|
+
name: string;
|
|
3236
|
+
kind: string;
|
|
3237
|
+
description: string;
|
|
3238
|
+
uiLabel: string;
|
|
3239
|
+
isOptional: boolean;
|
|
3240
|
+
defaultValue: string;
|
|
3241
|
+
reference: string;
|
|
3242
|
+
gridInfo?: undefined;
|
|
3243
|
+
} | {
|
|
3244
|
+
name: string;
|
|
3245
|
+
kind: string;
|
|
3246
|
+
description: string;
|
|
3247
|
+
uiLabel: string;
|
|
3248
|
+
isOptional: boolean;
|
|
3249
|
+
reference: string;
|
|
3250
|
+
defaultValue?: undefined;
|
|
3251
|
+
gridInfo?: undefined;
|
|
3252
|
+
} | {
|
|
3253
|
+
name: string;
|
|
3254
|
+
kind: string;
|
|
3255
|
+
description: string;
|
|
3256
|
+
uiLabel: string;
|
|
3257
|
+
isOptional: boolean;
|
|
3258
|
+
gridInfo: string;
|
|
3259
|
+
defaultValue: string;
|
|
3260
|
+
reference?: undefined;
|
|
3261
|
+
} | {
|
|
3262
|
+
name: string;
|
|
3263
|
+
kind: string;
|
|
3264
|
+
description: string;
|
|
3265
|
+
uiLabel: string;
|
|
3266
|
+
isOptional: boolean;
|
|
3267
|
+
gridInfo: string;
|
|
3268
|
+
defaultValue?: undefined;
|
|
3269
|
+
reference?: undefined;
|
|
3270
|
+
})[];
|
|
3271
|
+
};
|
|
3272
|
+
UserMenuItem: {
|
|
3273
|
+
name: string;
|
|
3274
|
+
kind: string;
|
|
3275
|
+
description: string;
|
|
3276
|
+
properties: ({
|
|
3277
|
+
name: string;
|
|
3278
|
+
kind: string;
|
|
3279
|
+
description: string;
|
|
3280
|
+
uiLabel: string;
|
|
3281
|
+
isOptional: boolean;
|
|
3282
|
+
} | {
|
|
3283
|
+
name: string;
|
|
3284
|
+
kind: string;
|
|
3285
|
+
description: string;
|
|
3286
|
+
uiLabel: string;
|
|
3287
|
+
isOptional?: undefined;
|
|
3288
|
+
})[];
|
|
3289
|
+
};
|
|
3290
|
+
ValidationResult: {
|
|
3291
|
+
name: string;
|
|
3292
|
+
kind: string;
|
|
3293
|
+
description: string;
|
|
3294
|
+
properties: {
|
|
3295
|
+
name: string;
|
|
3296
|
+
kind: string;
|
|
3297
|
+
description: string;
|
|
3298
|
+
uiLabel: string;
|
|
3299
|
+
isOptional: boolean;
|
|
3300
|
+
}[];
|
|
3301
|
+
};
|
|
3302
|
+
WeightedAverageColumn: {
|
|
3303
|
+
name: string;
|
|
3304
|
+
kind: string;
|
|
3305
|
+
description: string;
|
|
3306
|
+
properties: {
|
|
3307
|
+
name: string;
|
|
3308
|
+
kind: string;
|
|
3309
|
+
description: string;
|
|
3310
|
+
uiLabel: string;
|
|
3311
|
+
}[];
|
|
3312
|
+
};
|
|
3313
|
+
};
|