@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,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Shortcut } from '../../../PredefinedConfig/ShortcutState';
|
|
3
|
+
export declare const isSettingsValid: (data: Shortcut) => string | true;
|
|
4
|
+
export declare const ShortcutSettingsSummary: React.FunctionComponent;
|
|
5
|
+
interface ShortcutSettingsWizardProps {
|
|
6
|
+
availableKeys: Array<string>;
|
|
7
|
+
onChange: (shortcut: Shortcut) => void;
|
|
8
|
+
}
|
|
9
|
+
export declare const ShortcutSettingsWizard: React.FunctionComponent<ShortcutSettingsWizardProps>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ShortcutSettingsWizard = exports.ShortcutSettingsSummary = exports.isSettingsValid = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const React = tslib_1.__importStar(require("react"));
|
|
6
|
+
const rebass_1 = require("rebass");
|
|
7
|
+
const AdaptablePopover_1 = require("../../AdaptablePopover");
|
|
8
|
+
const Input_1 = tslib_1.__importDefault(require("../../../components/Input"));
|
|
9
|
+
const shortcutOperations_1 = require("../shortcutOperations");
|
|
10
|
+
const FormLayout_1 = tslib_1.__importStar(require("../../../components/FormLayout"));
|
|
11
|
+
const OnePageAdaptableWizard_1 = require("../../Wizard/OnePageAdaptableWizard");
|
|
12
|
+
const Tabs_1 = require("../../../components/Tabs");
|
|
13
|
+
const CodeBlock_1 = require("../../../components/CodeBlock");
|
|
14
|
+
const DropdownButton_1 = tslib_1.__importDefault(require("../../../components/DropdownButton"));
|
|
15
|
+
const OnePageAdaptableWizard_2 = require("../../../View/Wizard/OnePageAdaptableWizard");
|
|
16
|
+
exports.isSettingsValid = (data) => {
|
|
17
|
+
const shortcutKey = data.ShortcutKey && typeof data.ShortcutKey === 'string' ? '' : 'Shortcut key is not selected';
|
|
18
|
+
const shortcutValue = typeof data.ShortcutValue === 'number' ? '' : 'Shortcut value is not specified';
|
|
19
|
+
const shortcutOperation = data.ShortcutOperation && typeof data.ShortcutOperation === 'string'
|
|
20
|
+
? ''
|
|
21
|
+
: 'Shortcut operation is not selected';
|
|
22
|
+
const result = [shortcutKey, shortcutValue, shortcutOperation].filter(Boolean);
|
|
23
|
+
return result.length ? result.join(', ') : true;
|
|
24
|
+
};
|
|
25
|
+
exports.ShortcutSettingsSummary = () => {
|
|
26
|
+
var _a, _b;
|
|
27
|
+
const { data: shortcut } = OnePageAdaptableWizard_1.useOnePageWizardContext();
|
|
28
|
+
return (React.createElement(React.Fragment, null,
|
|
29
|
+
React.createElement(OnePageAdaptableWizard_2.SummaryText, null,
|
|
30
|
+
"Shortcut Key ",
|
|
31
|
+
React.createElement(CodeBlock_1.CodeBlock, null, shortcut.ShortcutKey || 'Not selected')),
|
|
32
|
+
React.createElement(OnePageAdaptableWizard_2.SummaryText, null,
|
|
33
|
+
"Value ",
|
|
34
|
+
React.createElement(CodeBlock_1.CodeBlock, null, (_a = shortcut.ShortcutValue) !== null && _a !== void 0 ? _a : 'Not specified')),
|
|
35
|
+
React.createElement(OnePageAdaptableWizard_2.SummaryText, null,
|
|
36
|
+
"Operation ",
|
|
37
|
+
React.createElement(CodeBlock_1.CodeBlock, null, (_b = shortcut.ShortcutOperation) !== null && _b !== void 0 ? _b : 'Not Specified'))));
|
|
38
|
+
};
|
|
39
|
+
exports.ShortcutSettingsWizard = (props) => {
|
|
40
|
+
var _a;
|
|
41
|
+
const { data: shortcut } = OnePageAdaptableWizard_1.useOnePageWizardContext();
|
|
42
|
+
const handleKeyChange = React.useCallback((ShortcutKey) => {
|
|
43
|
+
props.onChange(Object.assign(Object.assign({}, shortcut), { ShortcutKey }));
|
|
44
|
+
}, [shortcut]);
|
|
45
|
+
const handleOperationChange = React.useCallback((ShortcutOperation) => props.onChange(Object.assign(Object.assign({}, shortcut), { ShortcutOperation })), [shortcut]);
|
|
46
|
+
const handleOperationValueChange = React.useCallback((event) => {
|
|
47
|
+
props.onChange(Object.assign(Object.assign({}, shortcut), { ShortcutValue: event.target.value ? parseFloat(event.target.value) : event.target.value }));
|
|
48
|
+
}, [shortcut]);
|
|
49
|
+
const optionActions = shortcutOperations_1.shortcutOperationList.map((operation) => ({
|
|
50
|
+
value: operation,
|
|
51
|
+
label: operation,
|
|
52
|
+
onClick: () => handleOperationChange(operation),
|
|
53
|
+
}));
|
|
54
|
+
const optionKeys = props.availableKeys.map((key) => ({
|
|
55
|
+
value: key,
|
|
56
|
+
label: key,
|
|
57
|
+
onClick: () => handleKeyChange(key),
|
|
58
|
+
}));
|
|
59
|
+
return (React.createElement(rebass_1.Box, { "data-name": "shortcut-column-settings" },
|
|
60
|
+
React.createElement(Tabs_1.Tabs, { autoFocus: false },
|
|
61
|
+
React.createElement(Tabs_1.Tabs.Tab, null, "Shortcut Settings"),
|
|
62
|
+
React.createElement(Tabs_1.Tabs.Content, null,
|
|
63
|
+
React.createElement(FormLayout_1.default, { width: 400 },
|
|
64
|
+
React.createElement(FormLayout_1.FormRow, { label: "Key" },
|
|
65
|
+
React.createElement(rebass_1.Flex, { flexDirection: "row" },
|
|
66
|
+
React.createElement(DropdownButton_1.default, { style: { flex: 1 }, marginRight: 3, items: optionKeys }, shortcut.ShortcutKey || 'Select Key'),
|
|
67
|
+
React.createElement(AdaptablePopover_1.AdaptablePopover, { headerText: "Shortcut: Key", bodyText: ['The keyboard key that, when pressed, triggers the shortcut.'] }))),
|
|
68
|
+
React.createElement(FormLayout_1.FormRow, { label: "Operation" },
|
|
69
|
+
React.createElement(rebass_1.Flex, { flexDirection: "row" },
|
|
70
|
+
React.createElement(DropdownButton_1.default, { style: { flex: 1 }, marginRight: 3, items: optionActions }, shortcut.ShortcutOperation || 'Select Operation'),
|
|
71
|
+
React.createElement(AdaptablePopover_1.AdaptablePopover, { headerText: 'Shortcut: Operation', bodyText: [
|
|
72
|
+
"The mathematical operation that is performed on the cell's current value - using the shortcut's 'value' - in order to calculate the new total for the cell.",
|
|
73
|
+
] }))),
|
|
74
|
+
React.createElement(FormLayout_1.FormRow, { label: "Value" },
|
|
75
|
+
React.createElement(rebass_1.Flex, { flexDirection: "row" },
|
|
76
|
+
React.createElement(Input_1.default, { flex: 1, marginRight: 3, onChange: handleOperationValueChange, placeholder: "Enter Number", type: "number", value: (_a = shortcut.ShortcutValue) !== null && _a !== void 0 ? _a : '' }),
|
|
77
|
+
React.createElement(AdaptablePopover_1.AdaptablePopover, { headerText: 'Shortcut: Value', bodyText: [
|
|
78
|
+
"The number that is used - together with the shortcut's mathematical 'operation' and the current cell value - in order to calculate the new total for the cell.",
|
|
79
|
+
] }))))))));
|
|
80
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { AdaptableOnePageWizardProps } from '../../../View/Wizard/Interface/IAdaptableWizard';
|
|
3
|
+
import { Shortcut } from '../../../PredefinedConfig/ShortcutState';
|
|
4
|
+
interface ShortcutWizardProps extends AdaptableOnePageWizardProps<Shortcut> {
|
|
5
|
+
availableKeys: string[];
|
|
6
|
+
}
|
|
7
|
+
export declare const ShortcutWizard: React.FunctionComponent<ShortcutWizardProps>;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ShortcutWizard = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const React = tslib_1.__importStar(require("react"));
|
|
6
|
+
const rebass_1 = require("rebass");
|
|
7
|
+
const OnePageAdaptableWizard_1 = require("../../../View/Wizard/OnePageAdaptableWizard");
|
|
8
|
+
const Helper_1 = require("../../../Utilities/Helpers/Helper");
|
|
9
|
+
const NewScopeComponent_1 = require("../../Components/NewScopeComponent");
|
|
10
|
+
const ShortcutScopeWizardSection_1 = require("./ShortcutScopeWizardSection");
|
|
11
|
+
const ShortcutSettingsWizard_1 = require("./ShortcutSettingsWizard");
|
|
12
|
+
exports.ShortcutWizard = (props) => {
|
|
13
|
+
const [shortcut, setShortcut] = React.useState(() => {
|
|
14
|
+
var _a;
|
|
15
|
+
const shortcut = Helper_1.cloneObject(props.data);
|
|
16
|
+
shortcut.Scope = (_a = shortcut.Scope) !== null && _a !== void 0 ? _a : { All: true };
|
|
17
|
+
return shortcut;
|
|
18
|
+
});
|
|
19
|
+
return (React.createElement(OnePageAdaptableWizard_1.OnePageAdaptableWizard, { moduleInfo: props.moduleInfo, data: shortcut, onHide: props.onCloseWizard, onFinish: props.onFinishWizard, sections: [
|
|
20
|
+
{
|
|
21
|
+
title: 'Target',
|
|
22
|
+
isValid: NewScopeComponent_1.isScopeValid,
|
|
23
|
+
details: 'Specify where Shortcut should be applied',
|
|
24
|
+
renderSummary: () => NewScopeComponent_1.renderScopeSummary(shortcut.Scope, {
|
|
25
|
+
scopeWholeRow: 'Shortcut is triggered for matching rows',
|
|
26
|
+
scopeColumns: 'Shortcut is triggered in cells in selected columns',
|
|
27
|
+
scopeDataTypes: 'Shortcut is triggered for cells with selected data type',
|
|
28
|
+
}),
|
|
29
|
+
render: () => (React.createElement(rebass_1.Box, { padding: 2 },
|
|
30
|
+
React.createElement(ShortcutScopeWizardSection_1.ShortcutScopeWizardSection, { onChange: setShortcut }))),
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
title: 'Settings',
|
|
34
|
+
isValid: ShortcutSettingsWizard_1.isSettingsValid,
|
|
35
|
+
details: (React.createElement(React.Fragment, null,
|
|
36
|
+
"A Shortcut is a mathematical calculation (",
|
|
37
|
+
React.createElement("b", null, "Operation"),
|
|
38
|
+
") which is applied with the defined operand ",
|
|
39
|
+
React.createElement("b", null, "Value"),
|
|
40
|
+
" on the edited cell content when the corresponding Shortcut ",
|
|
41
|
+
React.createElement("b", null, "Key"),
|
|
42
|
+
" is pressed.")),
|
|
43
|
+
renderSummary: () => React.createElement(ShortcutSettingsWizard_1.ShortcutSettingsSummary, null),
|
|
44
|
+
render: () => (React.createElement(rebass_1.Box, { padding: 2 },
|
|
45
|
+
React.createElement(ShortcutSettingsWizard_1.ShortcutSettingsWizard, { availableKeys: props.availableKeys, onChange: setShortcut }))),
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
render: () => {
|
|
49
|
+
return (React.createElement(rebass_1.Box, { padding: 2 },
|
|
50
|
+
React.createElement(OnePageAdaptableWizard_1.OnePageWizardSummary, null)));
|
|
51
|
+
},
|
|
52
|
+
title: 'Summary',
|
|
53
|
+
},
|
|
54
|
+
] }));
|
|
55
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const shortcutKeys: string[];
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.shortcutKeys = void 0;
|
|
4
|
+
exports.shortcutKeys = [
|
|
5
|
+
'A',
|
|
6
|
+
'B',
|
|
7
|
+
'C',
|
|
8
|
+
'D',
|
|
9
|
+
'E',
|
|
10
|
+
'F',
|
|
11
|
+
'G',
|
|
12
|
+
'H',
|
|
13
|
+
'I',
|
|
14
|
+
'J',
|
|
15
|
+
'K',
|
|
16
|
+
'L',
|
|
17
|
+
'M',
|
|
18
|
+
'N',
|
|
19
|
+
'O',
|
|
20
|
+
'P',
|
|
21
|
+
'Q',
|
|
22
|
+
'R',
|
|
23
|
+
'S',
|
|
24
|
+
'T',
|
|
25
|
+
'U',
|
|
26
|
+
'V',
|
|
27
|
+
'W',
|
|
28
|
+
'X',
|
|
29
|
+
'Y',
|
|
30
|
+
'Z',
|
|
31
|
+
];
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.shortcutOperationList = void 0;
|
|
4
|
+
const Enums_1 = require("../../PredefinedConfig/Common/Enums");
|
|
5
|
+
exports.shortcutOperationList = [
|
|
6
|
+
Enums_1.MathOperation.Add,
|
|
7
|
+
Enums_1.MathOperation.Subtract,
|
|
8
|
+
Enums_1.MathOperation.Multiply,
|
|
9
|
+
Enums_1.MathOperation.Divide,
|
|
10
|
+
];
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import * as SmartEditRedux from '../../Redux/ActionsReducers/SmartEditRedux';
|
|
3
|
+
import * as SystemRedux from '../../Redux/ActionsReducers/SystemRedux';
|
|
4
|
+
import { MathOperation } from '../../PredefinedConfig/Common/Enums';
|
|
5
|
+
import { ModuleViewPopupProps } from '../Components/SharedProps/ModuleViewPopupProps';
|
|
6
|
+
import { PreviewInfo } from '../../Utilities/Interface/Preview';
|
|
7
|
+
interface SmartEditPopupProps extends ModuleViewPopupProps<SmartEditPopupComponent> {
|
|
8
|
+
SmartEditValue: number;
|
|
9
|
+
MathOperation: 'Add' | 'Subtract' | 'Multiply' | 'Divide';
|
|
10
|
+
PreviewInfo: PreviewInfo;
|
|
11
|
+
onSmartEditValueChange: (value: number) => SystemRedux.SmartEditChangeValueAction;
|
|
12
|
+
onSmartEditOperationChange: (MathOperation: MathOperation) => SystemRedux.SmartEditChangeOperationAction;
|
|
13
|
+
onSmartEditCheckSelectedCells: () => SystemRedux.SmartEditCheckCellSelectionAction;
|
|
14
|
+
onRunSmartEdit: () => SmartEditRedux.SmartEditRunAction;
|
|
15
|
+
}
|
|
16
|
+
declare class SmartEditPopupComponent extends React.Component<SmartEditPopupProps, {}> {
|
|
17
|
+
constructor(props: SmartEditPopupProps);
|
|
18
|
+
componentDidMount(): void;
|
|
19
|
+
render(): JSX.Element;
|
|
20
|
+
private submit;
|
|
21
|
+
private onSmartEditValueChange;
|
|
22
|
+
private onApplySmartEdit;
|
|
23
|
+
private getButtonStyle;
|
|
24
|
+
}
|
|
25
|
+
export declare let SmartEditPopup: import("react-redux").ConnectedComponent<typeof SmartEditPopupComponent, any>;
|
|
26
|
+
export {};
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SmartEditPopup = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const React = tslib_1.__importStar(require("react"));
|
|
6
|
+
const react_redux_1 = require("react-redux");
|
|
7
|
+
const SmartEditRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/SmartEditRedux"));
|
|
8
|
+
const SystemRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/SystemRedux"));
|
|
9
|
+
const Enums_1 = require("../../PredefinedConfig/Common/Enums");
|
|
10
|
+
const PanelWithImage_1 = require("../Components/Panels/PanelWithImage");
|
|
11
|
+
const AdaptablePopover_1 = require("../AdaptablePopover");
|
|
12
|
+
const EnumExtensions_1 = require("../../Utilities/Extensions/EnumExtensions");
|
|
13
|
+
const PreviewResultsPanel_1 = require("../Components/PreviewResultsPanel");
|
|
14
|
+
const PreviewHelper_1 = require("../../Utilities/Helpers/PreviewHelper");
|
|
15
|
+
const StringExtensions_1 = require("../../Utilities/Extensions/StringExtensions");
|
|
16
|
+
const Input_1 = tslib_1.__importDefault(require("../../components/Input"));
|
|
17
|
+
const rebass_1 = require("rebass");
|
|
18
|
+
const DropdownButton_1 = tslib_1.__importDefault(require("../../components/DropdownButton"));
|
|
19
|
+
const SimpleButton_1 = tslib_1.__importDefault(require("../../components/SimpleButton"));
|
|
20
|
+
const preventDefault = (e) => e.preventDefault();
|
|
21
|
+
class SmartEditPopupComponent extends React.Component {
|
|
22
|
+
constructor(props) {
|
|
23
|
+
super(props);
|
|
24
|
+
this.state = { isShowingError: false, errorText: '' };
|
|
25
|
+
}
|
|
26
|
+
componentDidMount() {
|
|
27
|
+
this.props.onSmartEditCheckSelectedCells();
|
|
28
|
+
}
|
|
29
|
+
render() {
|
|
30
|
+
let col;
|
|
31
|
+
if (this.props.PreviewInfo) {
|
|
32
|
+
col = this.props.api.columnApi.getColumnFromId(this.props.PreviewInfo.columnId);
|
|
33
|
+
}
|
|
34
|
+
let globalValidationMessage = PreviewHelper_1.PreviewHelper.GetValidationMessage(this.props.PreviewInfo, `${this.props.SmartEditValue}`);
|
|
35
|
+
let showPanel = this.props.PreviewInfo && StringExtensions_1.StringExtensions.IsNotNullOrEmpty(`${this.props.SmartEditValue}`);
|
|
36
|
+
let previewPanel = showPanel ? (React.createElement(PreviewResultsPanel_1.PreviewResultsPanel, { style: { flex: '1 1 100%', overflow: 'initial', height: '100%' }, previewInfo: this.props.PreviewInfo, api: this.props.api, selectedColumn: col, showPanel: showPanel, showHeader: true })) : null;
|
|
37
|
+
let operationMenuItems = EnumExtensions_1.EnumExtensions.getNames(Enums_1.MathOperation).map((mathOperation, index) => {
|
|
38
|
+
return {
|
|
39
|
+
label: mathOperation,
|
|
40
|
+
onClick: () => {
|
|
41
|
+
this.props.onSmartEditOperationChange(mathOperation);
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
});
|
|
45
|
+
return (React.createElement(PanelWithImage_1.PanelWithImage, { variant: "primary", style: { height: '100%' }, bodyProps: {
|
|
46
|
+
style: { display: 'flex', flexFlow: 'column' },
|
|
47
|
+
}, header: this.props.moduleInfo.FriendlyName, glyphicon: this.props.moduleInfo.Glyph, infoLink: this.props.moduleInfo.HelpPage, infoLinkDisabled: !this.props.api.internalApi.isDocumentationLinksDisplayed(), bodyScroll: true, onKeyDown: (e) => {
|
|
48
|
+
if (e.key === 'Enter') {
|
|
49
|
+
this.submit();
|
|
50
|
+
}
|
|
51
|
+
} },
|
|
52
|
+
React.createElement(rebass_1.Flex, { flexDirection: "row", padding: 2, "data-name": "smart-edit-operation" },
|
|
53
|
+
React.createElement(DropdownButton_1.default, { items: operationMenuItems, columns: ['label'], onMouseDown: preventDefault }, Enums_1.MathOperation[this.props.MathOperation]),
|
|
54
|
+
React.createElement(Input_1.default, { value: this.props.SmartEditValue.toString(), marginLeft: 2, marginRight: 2, type: "number", placeholder: "Enter a Number", onChange: (e) => this.onSmartEditValueChange(e) }),
|
|
55
|
+
React.createElement(SimpleButton_1.default, { tone: this.getButtonStyle(), variant: "raised", disabled: StringExtensions_1.StringExtensions.IsNullOrEmpty(`${this.props.SmartEditValue}`) ||
|
|
56
|
+
(this.props.PreviewInfo &&
|
|
57
|
+
this.props.PreviewInfo.previewValidationSummary.validationResult == 'All'), onClick: () => {
|
|
58
|
+
this.submit();
|
|
59
|
+
}, marginRight: 2 }, "Apply to Grid"),
|
|
60
|
+
' ',
|
|
61
|
+
this.props.PreviewInfo &&
|
|
62
|
+
this.props.PreviewInfo.previewValidationSummary.validationResult != 'None' && (React.createElement(AdaptablePopover_1.AdaptablePopover, { headerText: 'Validation Error', bodyText: [globalValidationMessage], MessageType: 'Error' }))),
|
|
63
|
+
previewPanel));
|
|
64
|
+
}
|
|
65
|
+
submit() {
|
|
66
|
+
this.onApplySmartEdit();
|
|
67
|
+
}
|
|
68
|
+
onSmartEditValueChange(event) {
|
|
69
|
+
const e = event.target;
|
|
70
|
+
this.props.onSmartEditValueChange(Number(e.value));
|
|
71
|
+
}
|
|
72
|
+
onApplySmartEdit() {
|
|
73
|
+
this.props.onRunSmartEdit();
|
|
74
|
+
}
|
|
75
|
+
getButtonStyle() {
|
|
76
|
+
if (this.props.PreviewInfo) {
|
|
77
|
+
if (this.props.PreviewInfo.previewValidationSummary.validationResult == 'All') {
|
|
78
|
+
return 'neutral';
|
|
79
|
+
}
|
|
80
|
+
if (this.props.PreviewInfo.previewValidationSummary.validationResult == 'Some') {
|
|
81
|
+
return 'error';
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
return 'success';
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
function mapStateToProps(state, ownProps) {
|
|
88
|
+
return {
|
|
89
|
+
SmartEditValue: state.System.SmartEditValue,
|
|
90
|
+
MathOperation: state.System.SmartEditOperation,
|
|
91
|
+
PreviewInfo: state.System.SmartEditPreviewInfo,
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
function mapDispatchToProps(dispatch) {
|
|
95
|
+
return {
|
|
96
|
+
onSmartEditValueChange: (value) => dispatch(SystemRedux.SmartEditChangeValue(value)),
|
|
97
|
+
onSmartEditOperationChange: (SmartEditOperation) => dispatch(SystemRedux.SmartEditChangeOperation(SmartEditOperation)),
|
|
98
|
+
onSmartEditCheckSelectedCells: () => dispatch(SystemRedux.SmartEditCheckCellSelection()),
|
|
99
|
+
onRunSmartEdit: () => dispatch(SmartEditRedux.SmartEditRun(false)),
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
exports.SmartEditPopup = react_redux_1.connect(mapStateToProps, mapDispatchToProps)(SmartEditPopupComponent);
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ViewPanelProps } from '../Components/SharedProps/ViewPanelProps';
|
|
2
|
+
import * as SystemRedux from '../../Redux/ActionsReducers/SystemRedux';
|
|
3
|
+
import * as SmartEditRedux from '../../Redux/ActionsReducers/SmartEditRedux';
|
|
4
|
+
import { PreviewInfo } from '../../Utilities/Interface/Preview';
|
|
5
|
+
import { MathOperation } from '../../PredefinedConfig/Common/Enums';
|
|
6
|
+
import * as React from 'react';
|
|
7
|
+
export interface SmartEditViewPanelComponentProps extends ViewPanelProps {
|
|
8
|
+
SmartEditValue: number | undefined;
|
|
9
|
+
MathOperation: 'Add' | 'Subtract' | 'Multiply' | 'Divide' | undefined;
|
|
10
|
+
IsValidSelection: boolean;
|
|
11
|
+
PreviewInfo: PreviewInfo;
|
|
12
|
+
InPivotMode: Boolean;
|
|
13
|
+
onSmartEditValueChange: (value: number) => SystemRedux.SmartEditChangeValueAction;
|
|
14
|
+
onSmartEditOperationChange: (MathOperation: MathOperation) => SystemRedux.SmartEditChangeOperationAction;
|
|
15
|
+
onSmartEditCheckSelectedCells: () => SystemRedux.SmartEditCheckCellSelectionAction;
|
|
16
|
+
onRunSmartEdit: () => SmartEditRedux.SmartEditRunAction;
|
|
17
|
+
}
|
|
18
|
+
interface SmartEditViewPanelComponentState {
|
|
19
|
+
SelectedColumnId: string;
|
|
20
|
+
}
|
|
21
|
+
declare class SmartEditViewPanelComponent extends React.Component<SmartEditViewPanelComponentProps, SmartEditViewPanelComponentState> {
|
|
22
|
+
private cleanupEvent?;
|
|
23
|
+
constructor(props: SmartEditViewPanelComponentProps);
|
|
24
|
+
componentDidMount(): void;
|
|
25
|
+
componentWillUnmount(): void;
|
|
26
|
+
render(): JSX.Element;
|
|
27
|
+
private checkSelectedCells;
|
|
28
|
+
private onSmartEditValueChange;
|
|
29
|
+
private getStatusColour;
|
|
30
|
+
private onApplyClick;
|
|
31
|
+
private onchangeMathOperation;
|
|
32
|
+
onApplySmartEdit(): any;
|
|
33
|
+
}
|
|
34
|
+
export declare let SmartEditViewPanelControl: import("react-redux").ConnectedComponent<typeof SmartEditViewPanelComponent, any>;
|
|
35
|
+
export {};
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SmartEditViewPanelControl = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const SystemRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/SystemRedux"));
|
|
6
|
+
const SmartEditRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/SmartEditRedux"));
|
|
7
|
+
const Enums_1 = require("../../PredefinedConfig/Common/Enums");
|
|
8
|
+
const React = tslib_1.__importStar(require("react"));
|
|
9
|
+
const StringExtensions_1 = require("../../Utilities/Extensions/StringExtensions");
|
|
10
|
+
const PreviewResultsPanel_1 = require("../Components/PreviewResultsPanel");
|
|
11
|
+
const EnumExtensions_1 = require("../../Utilities/Extensions/EnumExtensions");
|
|
12
|
+
const rebass_1 = require("rebass");
|
|
13
|
+
const DropdownButton_1 = tslib_1.__importDefault(require("../../components/DropdownButton"));
|
|
14
|
+
const Input_1 = tslib_1.__importDefault(require("../../components/Input"));
|
|
15
|
+
const ButtonApply_1 = require("../Components/Buttons/ButtonApply");
|
|
16
|
+
const AdaptablePopover_1 = require("../AdaptablePopover");
|
|
17
|
+
const UIHelper_1 = require("../UIHelper");
|
|
18
|
+
const react_redux_1 = require("react-redux");
|
|
19
|
+
class SmartEditViewPanelComponent extends React.Component {
|
|
20
|
+
constructor(props) {
|
|
21
|
+
super(props);
|
|
22
|
+
this.state = {
|
|
23
|
+
SelectedColumnId: '',
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
componentDidMount() {
|
|
27
|
+
if (this.props.api) {
|
|
28
|
+
const adaptable = this.props.api.internalApi.getAdaptableInstance();
|
|
29
|
+
if (adaptable) {
|
|
30
|
+
this.cleanupEvent = adaptable._on('CellsSelected', () => {
|
|
31
|
+
this.checkSelectedCells();
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
this.checkSelectedCells();
|
|
36
|
+
}
|
|
37
|
+
componentWillUnmount() {
|
|
38
|
+
var _a;
|
|
39
|
+
(_a = this.cleanupEvent) === null || _a === void 0 ? void 0 : _a.call(this);
|
|
40
|
+
}
|
|
41
|
+
render() {
|
|
42
|
+
let statusColour = this.getStatusColour();
|
|
43
|
+
let selectedColumn = StringExtensions_1.StringExtensions.IsNotNullOrEmpty(this.state.SelectedColumnId)
|
|
44
|
+
? this.props.api.columnApi.getColumnFromId(this.state.SelectedColumnId)
|
|
45
|
+
: null;
|
|
46
|
+
let previewPanel = (React.createElement(PreviewResultsPanel_1.PreviewResultsPanel, { previewInfo: this.props.PreviewInfo, api: this.props.api, selectedColumn: selectedColumn, showPanel: true, showHeader: false }));
|
|
47
|
+
let operationMenuItems = EnumExtensions_1.EnumExtensions.getNames(Enums_1.MathOperation).map((mathOperation, index) => {
|
|
48
|
+
return {
|
|
49
|
+
onClick: () => this.props.onSmartEditOperationChange(mathOperation),
|
|
50
|
+
label: mathOperation,
|
|
51
|
+
};
|
|
52
|
+
});
|
|
53
|
+
const applyButtonStyle = {
|
|
54
|
+
color: statusColour,
|
|
55
|
+
fill: 'currentColor',
|
|
56
|
+
};
|
|
57
|
+
let shouldDisable = this.props.accessLevel == 'ReadOnly' ||
|
|
58
|
+
!this.props.IsValidSelection ||
|
|
59
|
+
this.props.InPivotMode == true;
|
|
60
|
+
const elementType = this.props.viewType === 'Toolbar' ? 'DashboardToolbar' : 'ToolPanel';
|
|
61
|
+
return (React.createElement(rebass_1.Flex, { flexDirection: "row", className: `ab-${elementType}__SmartEdit__wrap`, flexWrap: this.props.viewType === 'ToolPanel' ? 'wrap' : 'nowrap' },
|
|
62
|
+
React.createElement(rebass_1.Flex, null,
|
|
63
|
+
React.createElement(DropdownButton_1.default, { className: `ab-${elementType}__SmartEdit__select`, marginRight: 2, items: operationMenuItems, style: { fontSize: 'small' }, columns: ['label'], disabled: shouldDisable, variant: "outlined" }, this.props.MathOperation),
|
|
64
|
+
React.createElement(Input_1.default, { style: {
|
|
65
|
+
width: '5rem',
|
|
66
|
+
}, className: `ab-${elementType}__SmartEdit__select-value`, value: this.props.SmartEditValue.toString(), type: "number", placeholder: "Enter a Number", step: "any", onChange: (e) => this.onSmartEditValueChange(e), disabled: shouldDisable, marginRight: 2 })),
|
|
67
|
+
React.createElement(rebass_1.Flex, null,
|
|
68
|
+
!shouldDisable && (React.createElement(ButtonApply_1.ButtonApply, { onClick: () => this.onApplyClick(), style: applyButtonStyle, className: `ab-${elementType}__SmartEdit__apply`, tooltip: "Apply Smart Edit", disabled: StringExtensions_1.StringExtensions.IsNullOrEmpty(`${this.props.SmartEditValue}`) ||
|
|
69
|
+
(this.props.PreviewInfo != null &&
|
|
70
|
+
this.props.PreviewInfo.previewValidationSummary.validationResult == 'All'), accessLevel: this.props.accessLevel }, this.props.viewType === 'ToolPanel' && 'Apply Smart Edit')),
|
|
71
|
+
!shouldDisable && (React.createElement(AdaptablePopover_1.AdaptablePopover, { headerText: "Preview Results", className: `ab-${elementType}__SmartEdit__info`,
|
|
72
|
+
// tooltipText="Preview Results"
|
|
73
|
+
bodyText: [previewPanel], MessageType: UIHelper_1.UIHelper.getMessageTypeByStatusColour(statusColour), useButton: true, showEvent: 'focus', hideEvent: "blur" })))));
|
|
74
|
+
}
|
|
75
|
+
checkSelectedCells() {
|
|
76
|
+
this.props.onSmartEditCheckSelectedCells();
|
|
77
|
+
}
|
|
78
|
+
onSmartEditValueChange(event) {
|
|
79
|
+
const e = event.target;
|
|
80
|
+
this.props.onSmartEditValueChange(Number(e.value));
|
|
81
|
+
}
|
|
82
|
+
getStatusColour() {
|
|
83
|
+
if (StringExtensions_1.StringExtensions.IsNotNullOrEmpty(`${this.props.SmartEditValue}`) &&
|
|
84
|
+
this.props.PreviewInfo) {
|
|
85
|
+
if (this.props.PreviewInfo.previewValidationSummary.validationResult == 'All') {
|
|
86
|
+
return Enums_1.StatusColour.Error;
|
|
87
|
+
}
|
|
88
|
+
if (this.props.PreviewInfo.previewValidationSummary.validationResult == 'Some') {
|
|
89
|
+
return Enums_1.StatusColour.Warn;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
return Enums_1.StatusColour.Success;
|
|
93
|
+
}
|
|
94
|
+
onApplyClick() {
|
|
95
|
+
this.onApplySmartEdit();
|
|
96
|
+
}
|
|
97
|
+
onchangeMathOperation(mathOperation) {
|
|
98
|
+
this.props.onSmartEditOperationChange(mathOperation);
|
|
99
|
+
}
|
|
100
|
+
onApplySmartEdit() {
|
|
101
|
+
this.props.onRunSmartEdit();
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
function mapStateToProps(state, ownProps) {
|
|
105
|
+
return {
|
|
106
|
+
SmartEditValue: state.System.SmartEditValue,
|
|
107
|
+
MathOperation: state.System.SmartEditOperation,
|
|
108
|
+
IsValidSelection: state.System.IsValidSmartEditSelection,
|
|
109
|
+
PreviewInfo: state.System.SmartEditPreviewInfo,
|
|
110
|
+
InPivotMode: state.Grid.IsGridInPivotMode,
|
|
111
|
+
};
|
|
112
|
+
}
|
|
113
|
+
function mapDispatchToProps(dispatch) {
|
|
114
|
+
return {
|
|
115
|
+
onSmartEditValueChange: (value) => dispatch(SystemRedux.SmartEditChangeValue(value)),
|
|
116
|
+
onSmartEditOperationChange: (SmartEditOperation) => dispatch(SystemRedux.SmartEditChangeOperation(SmartEditOperation)),
|
|
117
|
+
onSmartEditCheckSelectedCells: () => dispatch(SystemRedux.SmartEditCheckCellSelection()),
|
|
118
|
+
onRunSmartEdit: () => dispatch(SmartEditRedux.SmartEditRun(false)),
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
exports.SmartEditViewPanelControl = react_redux_1.connect(mapStateToProps, mapDispatchToProps)(SmartEditViewPanelComponent);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { ModuleViewPopupProps } from '../Components/SharedProps/ModuleViewPopupProps';
|
|
3
|
+
interface StateManagementPopupProps extends ModuleViewPopupProps<StateManagementPopupComponent> {
|
|
4
|
+
}
|
|
5
|
+
declare class StateManagementPopupComponent extends React.Component<StateManagementPopupProps, {}> {
|
|
6
|
+
constructor(props: StateManagementPopupProps);
|
|
7
|
+
render(): JSX.Element;
|
|
8
|
+
onClearLocalStorage(): void;
|
|
9
|
+
onLoadPredefinedConfig(e: any): void;
|
|
10
|
+
onExportAllState(type: any): void;
|
|
11
|
+
onExportUserState(type: any): void;
|
|
12
|
+
onExportPredefinedConfig(type: any): void;
|
|
13
|
+
onExportState(type: any, name: string, state: any): void;
|
|
14
|
+
}
|
|
15
|
+
export declare let StateManagementPopup: import("react-redux").ConnectedComponent<typeof StateManagementPopupComponent, any>;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StateManagementPopup = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const React = tslib_1.__importStar(require("react"));
|
|
6
|
+
const react_redux_1 = require("react-redux");
|
|
7
|
+
const PanelWithButton_1 = require("../Components/Panels/PanelWithButton");
|
|
8
|
+
const UIHelper_1 = require("../UIHelper");
|
|
9
|
+
const rebass_1 = require("rebass");
|
|
10
|
+
const SimpleButton_1 = tslib_1.__importDefault(require("../../components/SimpleButton"));
|
|
11
|
+
const HelpBlock_1 = tslib_1.__importDefault(require("../../components/HelpBlock"));
|
|
12
|
+
const Dropdown_1 = tslib_1.__importDefault(require("../../components/Dropdown"));
|
|
13
|
+
const Helper_1 = tslib_1.__importDefault(require("../../Utilities/Helpers/Helper"));
|
|
14
|
+
const LoggingHelper_1 = require("../../Utilities/Helpers/LoggingHelper");
|
|
15
|
+
const FileDroppable_1 = require("../../components/FileDroppable");
|
|
16
|
+
class StateManagementPopupComponent extends React.Component {
|
|
17
|
+
constructor(props) {
|
|
18
|
+
super(props);
|
|
19
|
+
this.state = UIHelper_1.UIHelper.getEmptyConfigState();
|
|
20
|
+
}
|
|
21
|
+
render() {
|
|
22
|
+
// sort out actions
|
|
23
|
+
let destinationOptions = [
|
|
24
|
+
{
|
|
25
|
+
value: 'Clipboard',
|
|
26
|
+
label: 'Clipboard',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
value: 'Console',
|
|
30
|
+
label: 'Console',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
value: 'JSON',
|
|
34
|
+
label: 'JSON',
|
|
35
|
+
},
|
|
36
|
+
];
|
|
37
|
+
let clearButton = (React.createElement(SimpleButton_1.default, { onClick: () => this.onClearLocalStorage(), tooltip: "Clear User State", tone: "error", variant: "raised", marginTop: 2, accessLevel: this.props.accessLevel }, "Clear User State"));
|
|
38
|
+
let loadButton = (React.createElement(SimpleButton_1.default, { marginTop: 2, tone: "info", variant: "raised", accessLevel: this.props.accessLevel },
|
|
39
|
+
React.createElement("input", { type: "file", onChange: (json) => this.onLoadPredefinedConfig(json), accept: '.json', style: {
|
|
40
|
+
opacity: 0,
|
|
41
|
+
position: 'absolute',
|
|
42
|
+
cursor: 'pointer',
|
|
43
|
+
fontSize: 0,
|
|
44
|
+
lineHeight: 0,
|
|
45
|
+
top: 0,
|
|
46
|
+
left: 0,
|
|
47
|
+
width: '100%',
|
|
48
|
+
height: '100%',
|
|
49
|
+
zIndex: 1,
|
|
50
|
+
} }),
|
|
51
|
+
' ',
|
|
52
|
+
"Load Predefined Config"));
|
|
53
|
+
return (React.createElement(rebass_1.Flex, { flex: 1, flexDirection: "column" },
|
|
54
|
+
React.createElement(PanelWithButton_1.PanelWithButton, { headerText: this.props.moduleInfo.FriendlyName, button: null, glyphicon: this.props.moduleInfo.Glyph, infoLink: this.props.moduleInfo.HelpPage, infoLinkDisabled: !this.props.api.internalApi.isDocumentationLinksDisplayed() },
|
|
55
|
+
React.createElement(rebass_1.Box, null,
|
|
56
|
+
React.createElement(HelpBlock_1.default, null, 'Clear all current user state that has been applied. When you restart / refresh Adaptable any state that you have previously created will be lost. However your Predefined Config will then be re-applied.'),
|
|
57
|
+
clearButton,
|
|
58
|
+
React.createElement(HelpBlock_1.default, { marginTop: 3 }, 'Load Predefined Config (from a .json file). This will cause this window to close.'),
|
|
59
|
+
' ',
|
|
60
|
+
loadButton,
|
|
61
|
+
React.createElement(HelpBlock_1.default, { marginTop: 3, marginBottom: 2 }, 'Export All Adaptable State'),
|
|
62
|
+
React.createElement(Dropdown_1.default, { key: 'exportAllState', placeholder: "Select Export Destination", style: { flex: 1, maxWidth: 'none' }, value: undefined, onChange: (x) => this.onExportAllState(x), marginRight: 3, options: destinationOptions }),
|
|
63
|
+
React.createElement(HelpBlock_1.default, { marginTop: 3, marginBottom: 2 }, 'Export User State'),
|
|
64
|
+
' ',
|
|
65
|
+
React.createElement(Dropdown_1.default, { key: 'exportUserState', placeholder: "Select Export Destination", style: { flex: 1, maxWidth: 'none' }, value: undefined, onChange: (x) => this.onExportUserState(x), marginRight: 3, options: destinationOptions }),
|
|
66
|
+
React.createElement(HelpBlock_1.default, { marginTop: 3, marginBottom: 2 }, 'Export Initial Predefined Config'),
|
|
67
|
+
' ',
|
|
68
|
+
React.createElement(Dropdown_1.default, { key: 'exportPredefinedConfig', placeholder: "Select Export Destination", style: { flex: 1, maxWidth: 'none' }, value: undefined, onChange: (x) => this.onExportPredefinedConfig(x), marginRight: 3, options: destinationOptions })))));
|
|
69
|
+
}
|
|
70
|
+
onClearLocalStorage() {
|
|
71
|
+
this.props.api.configApi.reloadPredefinedConfig();
|
|
72
|
+
}
|
|
73
|
+
onLoadPredefinedConfig(e) {
|
|
74
|
+
let nativeEvent = e.nativeEvent;
|
|
75
|
+
let files;
|
|
76
|
+
if (nativeEvent && nativeEvent.dataTransfer) {
|
|
77
|
+
files = nativeEvent.dataTransfer.files;
|
|
78
|
+
}
|
|
79
|
+
else {
|
|
80
|
+
files = e.target.files;
|
|
81
|
+
}
|
|
82
|
+
const file = files[0];
|
|
83
|
+
FileDroppable_1.readJSONFile(file).then((json) => {
|
|
84
|
+
this.props.api.configApi.reloadPredefinedConfig(json);
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
onExportAllState(type) {
|
|
88
|
+
let allState = this.props.api.configApi.getAllState();
|
|
89
|
+
this.onExportState(type, 'allState', allState);
|
|
90
|
+
}
|
|
91
|
+
onExportUserState(type) {
|
|
92
|
+
let userState = this.props.api.configApi.getAllUserState();
|
|
93
|
+
this.onExportState(type, 'userState', userState);
|
|
94
|
+
}
|
|
95
|
+
onExportPredefinedConfig(type) {
|
|
96
|
+
let predefinedConfig = this.props.api.configApi.getPredefinedConfig();
|
|
97
|
+
this.onExportState(type, 'predefinedConfig', predefinedConfig);
|
|
98
|
+
}
|
|
99
|
+
onExportState(type, name, state) {
|
|
100
|
+
switch (type) {
|
|
101
|
+
case 'Clipboard':
|
|
102
|
+
let stringifiedState = JSON.stringify(state);
|
|
103
|
+
Helper_1.default.copyToClipboard(stringifiedState);
|
|
104
|
+
break;
|
|
105
|
+
case 'Console':
|
|
106
|
+
LoggingHelper_1.ConsoleLog(state);
|
|
107
|
+
break;
|
|
108
|
+
case 'JSON':
|
|
109
|
+
const jsonFileName = name + '.json';
|
|
110
|
+
const jsonContent = JSON.stringify(state);
|
|
111
|
+
Helper_1.default.createDownloadedFile(jsonContent, jsonFileName, 'application/json');
|
|
112
|
+
break;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
function mapStateToProps(state, ownProps) {
|
|
117
|
+
return {};
|
|
118
|
+
}
|
|
119
|
+
function mapDispatchToProps(dispatch) {
|
|
120
|
+
return {};
|
|
121
|
+
}
|
|
122
|
+
exports.StateManagementPopup = react_redux_1.connect(mapStateToProps, mapDispatchToProps)(StateManagementPopupComponent);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SharedEntityRowProps } from '../Components/SharedProps/ConfigEntityRowProps';
|
|
3
|
+
export interface SystemStatusEntityRowProps extends SharedEntityRowProps<SystemStatusEntityRow> {
|
|
4
|
+
}
|
|
5
|
+
export declare class SystemStatusEntityRow extends React.Component<SystemStatusEntityRowProps, {}> {
|
|
6
|
+
render(): any;
|
|
7
|
+
}
|