@adaptabletools/adaptable 14.0.0-canary.0 → 14.0.0-canary.1
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/README.md +3 -3
- package/agGrid.d.ts +23 -1
- package/agGrid.js +23 -1
- package/base.css +1408 -2113
- package/base.css.map +1 -0
- package/bundle.cjs.js +259 -230
- package/index.css +1586 -1473
- package/index.css.map +1 -0
- package/package.json +10 -10
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +20 -5
- package/src/AdaptableOptions/ActionOptions.d.ts +66 -32
- package/src/AdaptableOptions/AdaptableOptions.d.ts +6 -2
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +10 -104
- package/src/AdaptableOptions/AlertOptions.d.ts +10 -1
- package/src/AdaptableOptions/ChartingOptions.d.ts +27 -0
- package/src/{Api/ConditionalStyleApi.js → AdaptableOptions/ChartingOptions.js} +0 -0
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
- package/src/AdaptableOptions/EntitlementOptions.d.ts +14 -1
- package/src/AdaptableOptions/ExportOptions.d.ts +3 -3
- package/src/AdaptableOptions/ExpressionOptions.d.ts +204 -0
- package/src/{Api/InternalApi.js → AdaptableOptions/ExpressionOptions.js} +0 -0
- package/src/AdaptableOptions/FilterOptions.d.ts +8 -1
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +21 -6
- package/src/AdaptableOptions/FinsemblePluginOptions.d.ts +32 -0
- package/src/{Strategy/Interface/IConditionalStyleModule.js → AdaptableOptions/FinsemblePluginOptions.js} +0 -0
- package/src/AdaptableOptions/GeneralOptions.d.ts +46 -5
- package/src/AdaptableOptions/LayoutOptions.d.ts +20 -2
- package/src/AdaptableOptions/MasterDetailPluginOptions.d.ts +6 -4
- package/src/AdaptableOptions/NotificationsOptions.d.ts +2 -1
- package/src/AdaptableOptions/PredicateOptions.d.ts +32 -0
- package/src/AdaptableOptions/PredicateOptions.js +2 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +4 -4
- package/src/Api/ActionApi.d.ts +14 -3
- package/src/Api/AdaptableApi.d.ts +12 -11
- package/src/Api/AlertApi.d.ts +139 -83
- package/src/Api/BulkUpdateApi.d.ts +9 -2
- package/src/Api/CalculatedColumnApi.d.ts +26 -21
- package/src/Api/CalendarApi.d.ts +29 -0
- package/src/Api/CalendarApi.js +2 -0
- package/src/Api/CellSummaryApi.d.ts +15 -8
- package/src/Api/ChartingApi.d.ts +45 -1
- package/src/Api/ColumnApi.d.ts +166 -110
- package/src/Api/ConfigApi.d.ts +18 -24
- package/src/Api/CustomSortApi.d.ts +36 -7
- package/src/Api/DashboardApi.d.ts +13 -6
- package/src/Api/DataChangeHistoryApi.d.ts +8 -1
- package/src/Api/DataSetApi.d.ts +13 -3
- package/src/Api/EntitlementApi.d.ts +31 -0
- package/src/Api/EntitlementApi.js +2 -0
- package/src/Api/EventApi.d.ts +15 -24
- package/src/Api/ExportApi.d.ts +35 -18
- package/src/Api/FilterApi.d.ts +75 -67
- package/src/Api/FinanceApi.d.ts +22 -9
- package/src/Api/FinsembleApi.d.ts +10 -0
- package/src/Api/FinsembleApi.js +2 -0
- package/src/Api/FlashingCellApi.d.ts +28 -12
- package/src/Api/FormatColumnApi.d.ts +96 -102
- package/src/Api/FreeTextColumnApi.d.ts +53 -21
- package/src/Api/GridApi.d.ts +59 -23
- package/src/Api/IPushPullApi.d.ts +1 -1
- package/src/Api/Implementation/ActionApiImpl.d.ts +9 -3
- package/src/Api/Implementation/ActionApiImpl.js +23 -11
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +8 -4
- package/src/Api/Implementation/AdaptableApiImpl.js +9 -5
- package/src/Api/Implementation/AlertApiImpl.d.ts +59 -26
- package/src/Api/Implementation/AlertApiImpl.js +187 -171
- package/src/Api/Implementation/ApiBase.d.ts +45 -3
- package/src/Api/Implementation/ApiBase.js +129 -5
- package/src/Api/Implementation/ApplicationApiImpl.d.ts +1 -1
- package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +1 -0
- package/src/Api/Implementation/BulkUpdateApiImpl.js +4 -1
- package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +7 -2
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +28 -37
- package/src/Api/Implementation/CalendarApiImpl.d.ts +9 -0
- package/src/Api/Implementation/CalendarApiImpl.js +59 -0
- package/src/Api/Implementation/CellSummaryApiImpl.d.ts +1 -0
- package/src/Api/Implementation/CellSummaryApiImpl.js +6 -1
- package/src/Api/Implementation/ChartingApiImpl.d.ts +11 -3
- package/src/Api/Implementation/ChartingApiImpl.js +41 -6
- package/src/Api/Implementation/ColumnApiImpl.d.ts +28 -8
- package/src/Api/Implementation/ColumnApiImpl.js +204 -194
- package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -3
- package/src/Api/Implementation/ConfigApiImpl.js +1 -12
- package/src/Api/Implementation/CustomSortApiImpl.d.ts +16 -1
- package/src/Api/Implementation/CustomSortApiImpl.js +33 -7
- package/src/Api/Implementation/DashboardApiImpl.d.ts +6 -1
- package/src/Api/Implementation/DashboardApiImpl.js +13 -15
- package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +1 -0
- package/src/Api/Implementation/DataChangeHistoryApiImpl.js +5 -0
- package/src/Api/Implementation/DataSetApiImpl.d.ts +6 -0
- package/src/Api/Implementation/DataSetApiImpl.js +17 -8
- package/src/Api/Implementation/EntitlementApiImpl.d.ts +11 -0
- package/src/Api/Implementation/EntitlementApiImpl.js +25 -0
- package/src/Api/Implementation/ExportApiImpl.d.ts +12 -4
- package/src/Api/Implementation/ExportApiImpl.js +43 -77
- package/src/Api/Implementation/FilterApiImpl.d.ts +11 -4
- package/src/Api/Implementation/FilterApiImpl.js +62 -166
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +9 -1
- package/src/Api/Implementation/FlashingCellApiImpl.js +29 -26
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +49 -26
- package/src/Api/Implementation/FormatColumnApiImpl.js +84 -259
- package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +13 -5
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +42 -27
- package/src/Api/Implementation/GridApiImpl.d.ts +17 -2
- package/src/Api/Implementation/GridApiImpl.js +122 -62
- package/src/Api/Implementation/LayoutApiImpl.d.ts +15 -7
- package/src/Api/Implementation/LayoutApiImpl.js +44 -112
- package/src/Api/Implementation/PluginsApiImpl.d.ts +3 -1
- package/src/Api/Implementation/PluginsApiImpl.js +6 -0
- package/src/Api/Implementation/PlusMinusApiImpl.d.ts +2 -1
- package/src/Api/Implementation/PlusMinusApiImpl.js +5 -0
- package/src/Api/Implementation/PredicateApiImpl.d.ts +13 -2
- package/src/Api/Implementation/PredicateApiImpl.js +41 -23
- package/src/Api/Implementation/QueryApiImpl.d.ts +7 -2
- package/src/Api/Implementation/QueryApiImpl.js +25 -52
- package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +6 -3
- package/src/Api/Implementation/QueryLanguageApiImpl.js +14 -18
- package/src/Api/Implementation/QuickSearchApiImpl.d.ts +1 -0
- package/src/Api/Implementation/QuickSearchApiImpl.js +5 -0
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +27 -0
- package/src/Api/Implementation/ScheduleApiImpl.js +86 -17
- package/src/Api/Implementation/ScopeApiImpl.d.ts +1 -1
- package/src/Api/Implementation/ScopeApiImpl.js +9 -7
- package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +2 -0
- package/src/Api/Implementation/SettingsPanelApiImpl.js +9 -0
- package/src/Api/Implementation/ShortcutApiImpl.d.ts +8 -1
- package/src/Api/Implementation/ShortcutApiImpl.js +25 -4
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +1 -0
- package/src/Api/Implementation/SmartEditApiImpl.js +5 -0
- package/src/Api/Implementation/StyledColumnApiImpl.d.ts +30 -0
- package/src/Api/Implementation/StyledColumnApiImpl.js +96 -0
- package/src/Api/Implementation/SystemStatusApiImpl.d.ts +6 -1
- package/src/Api/Implementation/SystemStatusApiImpl.js +20 -14
- package/src/Api/Implementation/TeamSharingApiImpl.d.ts +6 -5
- package/src/Api/Implementation/TeamSharingApiImpl.js +15 -25
- package/src/Api/Implementation/ThemeApiImpl.d.ts +5 -1
- package/src/Api/Implementation/ThemeApiImpl.js +23 -4
- package/src/Api/Implementation/ToolPanelApiImpl.d.ts +3 -1
- package/src/Api/Implementation/ToolPanelApiImpl.js +8 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +2 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.js +13 -4
- package/src/Api/Internal/ActionInternalApi.d.ts +23 -0
- package/src/Api/Internal/ActionInternalApi.js +198 -0
- package/src/Api/{Implementation/InternalApiImpl.d.ts → Internal/AdaptableInternalApi.d.ts} +15 -57
- package/src/Api/Internal/AdaptableInternalApi.js +455 -0
- package/src/Api/Internal/AlertInternalApi.d.ts +148 -0
- package/src/Api/Internal/AlertInternalApi.js +484 -0
- package/src/Api/Internal/CalculatedColumnInternalApi.d.ts +24 -0
- package/src/Api/Internal/CalculatedColumnInternalApi.js +57 -0
- package/src/Api/Internal/ColumnInternalApi.d.ts +33 -0
- package/src/Api/Internal/ColumnInternalApi.js +67 -0
- package/src/Api/Internal/CustomSortInternalApi.d.ts +6 -0
- package/src/Api/Internal/CustomSortInternalApi.js +11 -0
- package/src/Api/Internal/DashboardInternalApi.d.ts +8 -0
- package/src/Api/Internal/DashboardInternalApi.js +26 -0
- package/src/Api/Internal/DataSetInternalApi.d.ts +9 -0
- package/src/Api/Internal/DataSetInternalApi.js +20 -0
- package/src/Api/Internal/ExportInternalApi.d.ts +11 -0
- package/src/Api/Internal/ExportInternalApi.js +73 -0
- package/src/Api/Internal/FilterInternalApi.d.ts +58 -0
- package/src/Api/Internal/FilterInternalApi.js +194 -0
- package/src/Api/Internal/FlashingCellInternalApi.d.ts +12 -0
- package/src/Api/Internal/FlashingCellInternalApi.js +56 -0
- package/src/Api/Internal/FormatColumnInternalApi.d.ts +109 -0
- package/src/Api/Internal/FormatColumnInternalApi.js +225 -0
- package/src/Api/Internal/FreeTextColumnInternalApi.d.ts +15 -0
- package/src/Api/Internal/FreeTextColumnInternalApi.js +44 -0
- package/src/Api/Internal/GridInternalApi.d.ts +82 -0
- package/src/Api/Internal/GridInternalApi.js +252 -0
- package/src/Api/Internal/LayoutInternalApi.d.ts +48 -0
- package/src/Api/Internal/LayoutInternalApi.js +163 -0
- package/src/Api/Internal/PredicateInternalApi.d.ts +37 -0
- package/src/Api/Internal/PredicateInternalApi.js +140 -0
- package/src/Api/Internal/QueryInternalApi.d.ts +17 -0
- package/src/Api/Internal/QueryInternalApi.js +57 -0
- package/src/Api/Internal/QueryLanguageInternalApi.d.ts +11 -0
- package/src/Api/Internal/QueryLanguageInternalApi.js +34 -0
- package/src/Api/Internal/StyledColumnInternalApi.d.ts +59 -0
- package/src/Api/Internal/StyledColumnInternalApi.js +249 -0
- package/src/Api/Internal/SystemStatusInternalApi.d.ts +11 -0
- package/src/Api/Internal/SystemStatusInternalApi.js +27 -0
- package/src/Api/Internal/TeamSharingInternalApi.d.ts +20 -0
- package/src/Api/Internal/TeamSharingInternalApi.js +66 -0
- package/src/Api/LayoutApi.d.ts +36 -41
- package/src/Api/PluginsApi.d.ts +5 -0
- package/src/Api/PlusMinusApi.d.ts +9 -2
- package/src/Api/PredicateApi.d.ts +41 -10
- package/src/Api/QueryApi.d.ts +23 -18
- package/src/Api/QueryLanguageApi.d.ts +3 -7
- package/src/Api/QuickSearchApi.d.ts +5 -1
- package/src/Api/ScheduleApi.d.ts +97 -16
- package/src/Api/ScopeApi.d.ts +1 -1
- package/src/Api/SettingsPanelApi.d.ts +12 -1
- package/src/Api/ShortcutApi.d.ts +28 -7
- package/src/Api/SmartEditApi.d.ts +8 -1
- package/src/Api/StyledColumnApi.d.ts +100 -0
- package/src/Api/StyledColumnApi.js +2 -0
- package/src/Api/SystemStatusApi.d.ts +12 -6
- package/src/Api/TeamSharingApi.d.ts +4 -17
- package/src/Api/ThemeApi.d.ts +25 -6
- package/src/Api/ToolPanelApi.d.ts +10 -1
- package/src/Api/UserInterfaceApi.d.ts +13 -2
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -0
- package/src/PredefinedConfig/AlertState.d.ts +20 -5
- package/src/PredefinedConfig/ChartingState.d.ts +13 -4
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableColumn.js +4 -0
- package/src/PredefinedConfig/Common/AdaptableForm.d.ts +0 -5
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +10 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableObject.d.ts +22 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +8 -2
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +64 -45
- package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +6 -6
- package/src/PredefinedConfig/Common/ColumnFilter.d.ts +2 -2
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +3 -7
- package/src/PredefinedConfig/Common/Types.d.ts +7 -7
- package/src/PredefinedConfig/Common/Types.js +4 -0
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +10 -19
- package/src/PredefinedConfig/FlashingCellState.d.ts +9 -2
- package/src/PredefinedConfig/FormatColumnState.d.ts +28 -92
- package/src/PredefinedConfig/GridState.d.ts +1 -1
- package/src/PredefinedConfig/LayoutState.d.ts +1 -1
- package/src/PredefinedConfig/PredefinedConfig.d.ts +7 -2
- package/src/PredefinedConfig/StyledColumnState.d.ts +139 -0
- package/src/PredefinedConfig/StyledColumnState.js +2 -0
- package/src/PredefinedConfig/SystemState.d.ts +21 -0
- package/src/Redux/ActionsReducers/ChartingRedux.d.ts +28 -5
- package/src/Redux/ActionsReducers/ChartingRedux.js +45 -5
- package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +14 -0
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +43 -1
- package/src/Redux/ActionsReducers/FreeTextColumnRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/FreeTextColumnRedux.js +3 -3
- package/src/Redux/ActionsReducers/GridRedux.d.ts +18 -0
- package/src/Redux/ActionsReducers/GridRedux.js +65 -2
- package/src/Redux/ActionsReducers/PluginsRedux.d.ts +4 -4
- package/src/Redux/ActionsReducers/PluginsRedux.js +5 -5
- package/src/Redux/ActionsReducers/PopupRedux.js +10 -2
- package/src/Redux/ActionsReducers/QuickSearchRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/QuickSearchRedux.js +1 -1
- package/src/Redux/ActionsReducers/StyledColumnRedux.d.ts +49 -0
- package/src/Redux/ActionsReducers/StyledColumnRedux.js +92 -0
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +20 -0
- package/src/Redux/ActionsReducers/SystemRedux.js +67 -5
- package/src/Redux/DeadRedux.d.ts +6 -0
- package/src/Redux/DeadRedux.js +19 -1
- package/src/Redux/Store/AdaptableStore.js +45 -34
- package/src/Strategy/AdaptableModuleBase.js +6 -6
- package/src/Strategy/AlertModule.d.ts +1 -6
- package/src/Strategy/AlertModule.js +38 -93
- package/src/Strategy/BulkUpdateModule.js +3 -3
- package/src/Strategy/CalculatedColumnModule.js +6 -6
- package/src/Strategy/ChartingModule.d.ts +7 -1
- package/src/Strategy/ChartingModule.js +97 -0
- package/src/Strategy/CustomSortModule.js +4 -4
- package/src/Strategy/DashboardModule.js +2 -2
- package/src/Strategy/DataChangeHistoryModule.d.ts +1 -0
- package/src/Strategy/DataChangeHistoryModule.js +12 -0
- package/src/Strategy/DataSetModule.js +1 -1
- package/src/Strategy/ExportModule.js +4 -4
- package/src/Strategy/FilterModule.js +10 -13
- package/src/Strategy/FlashingCellModule.d.ts +2 -0
- package/src/Strategy/FlashingCellModule.js +27 -7
- package/src/Strategy/FormatColumnModule.d.ts +4 -10
- package/src/Strategy/FormatColumnModule.js +70 -185
- package/src/Strategy/FreeTextColumnModule.js +3 -3
- package/src/Strategy/Interface/IModule.d.ts +12 -10
- package/src/Strategy/LayoutModule.d.ts +3 -0
- package/src/Strategy/LayoutModule.js +138 -25
- package/src/Strategy/PlusMinusModule.js +2 -2
- package/src/Strategy/QueryModule.js +3 -3
- package/src/Strategy/ScheduleModule.js +10 -12
- package/src/Strategy/ShortcutModule.js +5 -5
- package/src/Strategy/SmartEditModule.js +3 -3
- package/src/Strategy/StyledColumnModule.d.ts +24 -0
- package/src/Strategy/StyledColumnModule.js +179 -0
- package/src/Strategy/TeamSharingModule.js +3 -3
- package/src/Strategy/ThemeModule.js +1 -1
- package/src/Strategy/Utilities/Alert/getAlertBehaviourViewItems.d.ts +2 -2
- package/src/Strategy/Utilities/CustomSort/getCustomSortColumnViewItems.js +1 -1
- package/src/Strategy/Utilities/Export/getExportColumnsViewItems.d.ts +1 -1
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.d.ts +1 -1
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +3 -4
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnStyleViewItems.js +1 -16
- package/src/Strategy/Utilities/Layout/getLayoutFilterViewItems.js +1 -1
- package/src/Strategy/Utilities/Layout/getLayoutSortViewItems.js +1 -1
- package/src/Strategy/Utilities/getRuleViewItems.d.ts +1 -1
- package/src/Strategy/Utilities/getRuleViewItems.js +4 -3
- package/src/Strategy/Utilities/getScopeViewItems.js +2 -2
- package/src/Strategy/Utilities/updateSingleToMultiplePredicates.d.ts +5 -0
- package/src/Strategy/Utilities/updateSingleToMultiplePredicates.js +12 -0
- package/src/Utilities/Constants/ModuleConstants.d.ts +3 -0
- package/src/Utilities/Constants/ModuleConstants.js +4 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +32 -25
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +19 -15
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -2
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +11 -1
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +1 -4
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +22 -11
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +1 -0
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +76 -79
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +3 -1
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +9 -5
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +2 -4
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +15 -4
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +2 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +136 -29
- package/src/Utilities/Extensions/ObjectExtensions.d.ts +10 -0
- package/src/Utilities/Extensions/ObjectExtensions.js +20 -0
- package/src/Utilities/Extensions/StringExtensions.d.ts +2 -0
- package/src/Utilities/Extensions/StringExtensions.js +21 -1
- package/src/Utilities/Extensions/TypeExtensions.d.ts +2 -0
- package/src/Utilities/Extensions/TypeExtensions.js +5 -0
- package/src/Utilities/Helpers/AdaptableHelper.js +6 -2
- package/src/Utilities/Helpers/FormatHelper.d.ts +1 -1
- package/src/Utilities/Helpers/FormatHelper.js +20 -11
- package/src/Utilities/ObjectFactory.d.ts +10 -6
- package/src/Utilities/ObjectFactory.js +30 -26
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +2 -2
- package/src/Utilities/Services/ChartingService.d.ts +10 -0
- package/src/Utilities/Services/ChartingService.js +100 -0
- package/src/Utilities/Services/DataService.js +1 -1
- package/src/Utilities/Services/EntitlementService.js +4 -1
- package/src/Utilities/Services/Interface/IChartingService.d.ts +5 -0
- package/src/Utilities/Services/Interface/IChartingService.js +2 -0
- package/src/Utilities/Services/Interface/IEntitlementService.d.ts +2 -1
- package/src/Utilities/Services/Interface/IMetamodelService.d.ts +1 -0
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +14 -4
- package/src/Utilities/Services/Interface/IRowEditService.d.ts +0 -5
- package/src/Utilities/Services/{LicenseService.d.ts → LicenseService/index.d.ts} +3 -3
- package/src/Utilities/Services/LicenseService/index.js +1 -0
- package/src/Utilities/Services/LicenseService/shouldLogThankYouMessage.d.ts +1 -0
- package/src/Utilities/Services/LicenseService/shouldLogThankYouMessage.js +15 -0
- package/src/Utilities/Services/MetamodelService.js +6 -4
- package/src/Utilities/Services/ModuleService.js +4 -2
- package/src/Utilities/Services/QueryLanguageService.d.ts +3 -3
- package/src/Utilities/Services/QueryLanguageService.js +91 -42
- package/src/Utilities/Services/ReportService.js +9 -9
- package/src/Utilities/Services/RowEditService.d.ts +0 -19
- package/src/Utilities/Services/RowEditService.js +5 -162
- package/src/Utilities/Services/TeamSharingService.js +3 -3
- package/src/Utilities/Services/ValidationService.js +9 -7
- package/src/Utilities/license/LicenseDetails.d.ts +1 -1
- package/src/Utilities/license/decode.d.ts +1 -0
- package/src/Utilities/license/decode.js +1 -1
- package/src/Utilities/logDeprecation.d.ts +3 -0
- package/src/Utilities/logDeprecation.js +30 -0
- package/src/View/AdaptablePopover/index.d.ts +4 -2
- package/src/View/AdaptablePopover/index.js +6 -2
- package/src/View/AdaptableView.d.ts +3 -3
- package/src/View/AdaptableViewFactory.js +2 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableOptionsForm.d.ts +3 -5
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableOptionsForm.js +103 -92
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +2 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +2 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/Components/FormBox.d.ts +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +4 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +8 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +7 -34
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.d.ts +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.js +7 -7
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +2 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.js +4 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UiOptionsForm.js +2 -1
- package/src/View/AdaptableWizardView/index.d.ts +1 -1
- package/src/View/Alert/AlertEntityRow.js +1 -1
- package/src/View/Alert/AlertStatusSubPanel.js +1 -1
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +17 -16
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +25 -2
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +23 -14
- package/src/View/Alert/Wizard/AlertWizard.js +3 -3
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +7 -5
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +5 -5
- package/src/View/Alert/Wizard/isValidAlertRules.js +5 -4
- package/src/View/BulkUpdate/BulkUpdatePopup.js +1 -1
- package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +3 -3
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +4 -3
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.d.ts +1 -0
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +34 -12
- package/src/View/Components/AdaptableObjectRow/index.js +1 -6
- package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonEdit.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonInfo.d.ts +1 -3
- package/src/View/Components/Buttons/ButtonInfo.js +3 -5
- package/src/View/Components/Charting/ChartingStatusBarPopover.d.ts +2 -0
- package/src/View/Components/Charting/ChartingStatusBarPopover.js +23 -0
- package/src/View/Components/Charting/ChartingViewPanel.d.ts +3 -0
- package/src/View/Components/Charting/ChartingViewPanel.js +95 -0
- package/src/View/Components/Charting/ChartingWizard/ChartingWizard.d.ts +6 -0
- package/src/View/Components/Charting/ChartingWizard/ChartingWizard.js +37 -0
- package/src/View/Components/Charting/ChartingWizard/PreviewChartSection.d.ts +6 -0
- package/src/View/Components/Charting/ChartingWizard/PreviewChartSection.js +34 -0
- package/src/View/Components/Charting/ChartingWizard/SettingsSection.d.ts +8 -0
- package/src/View/Components/Charting/ChartingWizard/SettingsSection.js +53 -0
- package/src/View/Components/Charting/DeleteChartButton.d.ts +7 -0
- package/src/View/Components/Charting/DeleteChartButton.js +12 -0
- package/src/View/Components/Charting/EditChartButton.d.ts +8 -0
- package/src/View/Components/Charting/EditChartButton.js +21 -0
- package/src/View/Components/Charting/ShowChartButton.d.ts +5 -0
- package/src/View/Components/Charting/ShowChartButton.js +38 -0
- package/src/View/Components/Charting/useChartState.d.ts +9 -0
- package/src/View/Components/Charting/useChartState.js +71 -0
- package/src/View/Components/EntityRulesEditor/PredicatesEditor.d.ts +16 -0
- package/src/View/Components/EntityRulesEditor/PredicatesEditor.js +86 -0
- package/src/View/Components/EntityRulesEditor/Utilities.d.ts +6 -0
- package/src/View/Components/EntityRulesEditor/Utilities.js +21 -0
- package/src/View/Components/EntityRulesEditor/index.d.ts +5 -9
- package/src/View/Components/EntityRulesEditor/index.js +44 -124
- package/src/View/Components/ExpressionWizard.js +2 -2
- package/src/View/Components/ExternalRenderer.js +3 -1
- package/src/View/Components/FilterForm/FilterForm.js +13 -18
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +2 -2
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
- package/src/View/Components/FilterForm/QuickFilterForm.js +15 -21
- package/src/View/Components/NewScopeComponent.js +3 -3
- package/src/View/Components/Panels/PanelWithButton.js +1 -5
- package/src/View/Components/Panels/PanelWithImage.js +1 -5
- package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.d.ts +1 -2
- package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.js +6 -7
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -2
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +3 -2
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +3 -16
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +12 -14
- package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/PopupPanel.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/TopBar.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
- package/src/View/Components/Popups/AdaptablePopupConfirmation.d.ts +2 -12
- package/src/View/Components/Popups/AdaptablePopupConfirmation.js +46 -39
- package/src/View/Components/Popups/AdaptablePopupPrompt.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +5 -5
- package/src/View/Components/Popups/AdaptableToaster.js +2 -0
- package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +1 -0
- package/src/View/Components/Popups/WindowPopups/windowFactory.js +4 -1
- package/src/View/Components/PredicateEditor/PredicateEditor.d.ts +10 -0
- package/src/View/Components/PredicateEditor/PredicateEditor.js +44 -0
- package/src/View/Components/RangesComponent.d.ts +11 -3
- package/src/View/Components/RangesComponent.js +121 -64
- package/src/View/Components/ScopeComponent.js +9 -9
- package/src/View/Components/Selectors/ColumnSelector.d.ts +1 -0
- package/src/View/Components/Selectors/ColumnSelector.js +2 -1
- package/src/View/Components/Selectors/ColumnValueSelector.js +3 -3
- package/src/View/Components/StyleComponent.d.ts +1 -0
- package/src/View/Components/StyleComponent.js +60 -37
- package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +3 -9
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +26 -11
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +1 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +0 -1
- package/src/View/CustomSort/CustomSortSummary.js +1 -1
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +2 -2
- package/src/View/CustomSort/Wizard/CustomSortSummaryWizard.js +1 -1
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +1 -1
- package/src/View/Dashboard/Dashboard.js +4 -3
- package/src/View/Dashboard/DashboardPopup.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +10 -1
- package/src/View/DataSet/DataSetSelector.js +2 -2
- package/src/View/DataSet/DataSetStatusPanelPopover.js +1 -1
- package/src/View/DataSet/DataSetViewPanel.d.ts +1 -1
- package/src/View/DataSet/DataSetViewPanel.js +1 -1
- package/src/View/Export/ExportSelector.js +2 -2
- package/src/View/Export/ExportViewPanel.d.ts +1 -1
- package/src/View/Export/ExportViewPanel.js +5 -5
- package/src/View/Export/ReportExportDropdown.js +2 -2
- package/src/View/Export/Wizard/ReportNameWizardSection.js +11 -12
- package/src/View/Export/Wizard/ReportRowsWizardSection.js +1 -1
- package/src/View/Filter/FilterSummary.d.ts +1 -1
- package/src/View/Filter/FilterSummary.js +1 -1
- package/src/View/Filter/FilterViewPanel.d.ts +1 -1
- package/src/View/Filter/FilterViewPanel.js +1 -1
- package/src/View/FlashingCell/FlashingCellStyle.js +3 -3
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +3 -3
- package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +2 -2
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +6 -6
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +8 -6
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +4 -3
- package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
- package/src/View/FormatColumn/MoveFormatColumn.d.ts +7 -0
- package/src/View/FormatColumn/MoveFormatColumn.js +27 -0
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +35 -29
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.d.ts +8 -0
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +28 -0
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +23 -3
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +2 -28
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.d.ts +3 -3
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +7 -302
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +18 -26
- package/src/View/FormatColumn/Wizard/constants.d.ts +1 -0
- package/src/View/FormatColumn/Wizard/constants.js +4 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +7 -7
- package/src/View/GridInfo/ColumnInfoComponent.js +27 -19
- package/src/View/GridInfo/GridInfoPopup.js +16 -15
- package/src/View/Layout/LayoutRadioSelector.js +2 -2
- package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +1 -1
- package/src/View/Layout/LayoutViewPanel.d.ts +1 -1
- package/src/View/Layout/LayoutViewPanel.js +1 -1
- package/src/View/Layout/PivotDetailsPopoup.d.ts +3 -0
- package/src/View/Layout/PivotDetailsPopoup.js +65 -0
- package/src/View/Layout/SaveLayoutButton.js +1 -1
- package/src/View/Layout/Wizard/Components/ColumnLabels.js +1 -1
- package/src/View/Layout/Wizard/LayoutWizard.js +9 -4
- package/src/View/Layout/Wizard/sections/AggregationsSection.js +5 -5
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +12 -11
- package/src/View/Layout/Wizard/sections/FilterSection.d.ts +1 -0
- package/src/View/Layout/Wizard/sections/FilterSection.js +52 -3
- package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +2 -2
- package/src/View/Layout/Wizard/sections/RowGroupingSection.js +2 -2
- package/src/View/Layout/Wizard/sections/SettingsSection.d.ts +2 -2
- package/src/View/Layout/Wizard/sections/SettingsSection.js +2 -2
- package/src/View/Layout/Wizard/sections/SortSection.js +2 -5
- package/src/View/License/LicenseWatermark.d.ts +1 -1
- package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +1 -1
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +1 -1
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +5 -5
- package/src/View/Query/ExpandedQueryPopup.js +1 -1
- package/src/View/Query/QueryViewPanel.d.ts +1 -1
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +1 -1
- package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +1 -1
- package/src/View/QuickSearch/QuickSearchPopup.js +2 -2
- package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +1 -1
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +5 -5
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +5 -5
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +5 -5
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +2 -2
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +2 -2
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +3 -3
- package/src/View/Shortcut/Wizard/ShortcutWizard.js +1 -1
- package/src/View/SmartEdit/SmartEditPopup.js +3 -3
- package/src/View/SmartEdit/SmartEditViewPanel.js +1 -1
- package/src/View/SpecialColumnSettingsWizardStep.js +10 -10
- package/src/View/StateManagement/StateManagementPopup.js +4 -4
- package/src/View/StateManagement/components/ClearButton.d.ts +1 -1
- package/src/View/StateManagement/components/LoadButton.d.ts +1 -1
- package/src/View/StatusBar/StatusBarPanel.d.ts +4 -4
- package/src/View/StatusBar/StatusBarPanel.js +1 -1
- package/src/View/StatusBar/StatusBarPopup.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.d.ts +6 -0
- package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.js +285 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.d.ts +7 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +106 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.d.ts +9 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +75 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.d.ts +8 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.js +38 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarColumnComparisonPreview.d.ts +5 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarColumnComparisonPreview.js +26 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarRangesPreview.d.ts +5 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarRangesPreview.js +23 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarStylePreview.d.ts +8 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarStylePreview.js +25 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.d.ts +9 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.js +263 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/index.d.ts +1 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/index.js +4 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.d.ts +7 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +68 -0
- package/src/View/SystemStatus/SystemStatusEntityRow.js +4 -6
- package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +1 -1
- package/src/View/TeamSharing/SharedEntityDependencies.js +1 -1
- package/src/View/TeamSharing/SharedEntityObjectView.js +1 -1
- package/src/View/TeamSharing/TeamSharingApplyButton.js +1 -1
- package/src/View/Theme/ThemePopup.js +1 -1
- package/src/View/Theme/ThemeStatusPanelPopover.js +1 -1
- package/src/View/Wizard/OnePageAdaptableWizard.d.ts +4 -4
- package/src/View/Wizard/OnePageAdaptableWizard.js +3 -4
- package/src/View/Wizard/OnePageWizards.d.ts +3 -3
- package/src/View/Wizard/OnePageWizards.js +2 -2
- package/src/agGrid/ActionColumnRenderer.d.ts +3 -0
- package/src/agGrid/ActionColumnRenderer.js +98 -64
- package/src/agGrid/Adaptable.d.ts +43 -14
- package/src/agGrid/Adaptable.js +555 -409
- package/src/agGrid/CheckboxRenderer.js +1 -1
- package/src/agGrid/FilterWrapper.js +62 -19
- package/src/agGrid/FloatingFilterWrapper.d.ts +2 -2
- package/src/agGrid/FloatingFilterWrapper.js +70 -32
- package/src/agGrid/PercentBarRenderer.d.ts +2 -2
- package/src/agGrid/PercentBarRenderer.js +16 -15
- package/src/agGrid/agGridHelper.d.ts +2 -2
- package/src/agGrid/agGridHelper.js +31 -20
- package/src/agGrid/agGridMenuHelper.js +3 -3
- package/src/agGrid/createAgStatusPanelComponent.d.ts +2 -1
- package/src/agGrid/createAgStatusPanelComponent.js +20 -3
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +5 -1
- package/src/agGrid/editors/AdaptableDateEditor/index.js +87 -20
- package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +1 -1
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +3 -3
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +81 -30
- package/src/agGrid/weightedAverage.js +19 -11
- package/src/bundle-dependencies/bundles/react-toastify/index.js +1 -1
- package/src/components/CheckBox/index.d.ts +1 -1
- package/src/components/CheckBox/index.js +7 -2
- package/src/components/ColorPicker/ColorPicker.d.ts +11 -0
- package/src/{View → components/ColorPicker}/ColorPicker.js +19 -6
- package/src/components/ColorPicker/index.d.ts +1 -0
- package/src/components/ColorPicker/index.js +4 -0
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/Datepicker/index.js +1 -1
- package/src/components/Dialog/index.d.ts +4 -2
- package/src/components/Dialog/index.js +2 -2
- package/src/components/DragAndDropContext/TabList.js +1 -1
- package/src/components/DragAndDropContext/UnusedPanel.js +3 -2
- package/src/components/DropdownButton/index.d.ts +21 -4
- package/src/components/DropdownButton/index.js +7 -8
- package/src/components/EllipsisContainer/index.js +1 -1
- package/src/components/ExpressionEditor/BaseEditorInput.d.ts +1 -1
- package/src/components/ExpressionEditor/BaseEditorInput.js +102 -36
- package/src/components/ExpressionEditor/EditorInput.js +1 -1
- package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +1 -1
- package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +5 -1
- package/src/components/ExpressionEditor/index.js +12 -58
- package/src/components/FormLayout/index.js +1 -1
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/List/ListGroupItem/index.d.ts +4 -2
- package/src/components/Loader/Loader.d.ts +2 -2
- package/src/components/Logo/index.d.ts +1 -1
- package/src/components/Modal/index.d.ts +1 -1
- package/src/components/Modal/index.js +0 -2
- package/src/components/OverlayTrigger/Overlay.d.ts +1 -4
- package/src/components/OverlayTrigger/Overlay.js +3 -40
- package/src/components/OverlayTrigger/index.d.ts +4 -4
- package/src/components/OverlayTrigger/index.js +75 -50
- package/src/components/OverlayTrigger/utils.d.ts +1 -1
- package/src/components/OverlayTrigger/utils.js +4 -4
- package/src/components/PopupWithFooter.d.ts +2 -2
- package/src/components/ProgressIndicator/ProgressIndicator.d.ts +1 -1
- package/src/components/SelectList.d.ts +1 -1
- package/src/components/SimpleButton/index.d.ts +4 -7
- package/src/components/SimpleButton/index.js +5 -4
- package/src/components/SizedContainer/index.d.ts +1 -1
- package/src/components/StylePreview.d.ts +1 -1
- package/src/components/StylePreview.js +2 -1
- package/src/components/Tag/Tag.d.ts +1 -1
- package/src/components/Textarea/index.d.ts +6 -4
- package/src/components/ToggleButton/index.d.ts +1 -1
- package/src/components/Tooltip/index.d.ts +1 -3
- package/src/components/Tooltip/index.js +2 -2
- package/src/components/WindowModal/WindowModal.d.ts +1 -1
- package/src/components/icons/{conditional-style.d.ts → brush.d.ts} +0 -0
- package/src/components/icons/brush.js +7 -0
- package/src/components/icons/index.d.ts +3 -2
- package/src/components/icons/index.js +4 -2
- package/src/components/icons/layout.d.ts +2 -1
- package/src/components/icons/open-in-new.d.ts +3 -0
- package/src/components/icons/{conditional-style.js → open-in-new.js} +1 -1
- package/src/components/utils/useContainerScrollObserver/index.d.ts +1 -1
- package/src/env.js +1 -3
- package/src/metamodel/adaptable.metamodel.d.ts +561 -160
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/parser.js +644 -382
- package/src/parser/src/types.d.ts +15 -3
- package/src/renderReactRoot.d.ts +5 -0
- package/src/renderReactRoot.js +56 -0
- package/src/types.d.ts +25 -17
- package/themes/dark.css +8 -4
- package/themes/dark.css.map +1 -0
- package/themes/light.css +4 -1
- package/themes/light.css.map +1 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableComponents.d.ts +0 -1
- package/src/AdaptableComponents.js +0 -5
- package/src/Api/ConditionalStyleApi.d.ts +0 -108
- package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +0 -29
- package/src/Api/Implementation/ConditionalStyleApiImpl.js +0 -98
- package/src/Api/Implementation/InternalApiImpl.js +0 -654
- package/src/Api/InternalApi.d.ts +0 -147
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +0 -49
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +0 -95
- package/src/Strategy/ConditionalStyleModule.d.ts +0 -29
- package/src/Strategy/ConditionalStyleModule.js +0 -225
- package/src/Strategy/Interface/IConditionalStyleModule.d.ts +0 -6
- package/src/Strategy/Utilities/getStyleViewItems.d.ts +0 -2
- package/src/Strategy/Utilities/getStyleViewItems.js +0 -16
- package/src/Utilities/Helpers/CalendarHelper.d.ts +0 -25
- package/src/Utilities/Helpers/CalendarHelper.js +0 -342
- package/src/Utilities/Services/LicenseService.js +0 -1
- package/src/View/ColorPicker.d.ts +0 -14
- package/src/View/ConditionalStyle/ConditionalStyleSummary.d.ts +0 -25
- package/src/View/ConditionalStyle/ConditionalStyleSummary.js +0 -108
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.d.ts +0 -9
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +0 -42
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.d.ts +0 -8
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +0 -43
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.d.ts +0 -8
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +0 -29
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.d.ts +0 -8
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +0 -23
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.d.ts +0 -6
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +0 -114
- package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.d.ts +0 -1
- package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.js +0 -4
- package/src/components/OverlayTrigger/getOverlayStyle.d.ts +0 -13
- package/src/components/OverlayTrigger/getOverlayStyle.js +0 -56
package/src/parser/src/parser.js
CHANGED
|
@@ -81,81 +81,50 @@ var parser = (function () {
|
|
|
81
81
|
$V2 = [1, 7],
|
|
82
82
|
$V3 = [1, 8],
|
|
83
83
|
$V4 = [1, 9],
|
|
84
|
-
$V5 = [1,
|
|
84
|
+
$V5 = [1, 13],
|
|
85
85
|
$V6 = [1, 10],
|
|
86
|
-
$V7 = [1,
|
|
87
|
-
$V8 = [1,
|
|
88
|
-
$V9 = [
|
|
89
|
-
$Va = [
|
|
90
|
-
$Vb = [1,
|
|
91
|
-
$Vc = [1,
|
|
92
|
-
$Vd = [1,
|
|
93
|
-
$Ve = [1,
|
|
94
|
-
$Vf = [1,
|
|
95
|
-
$Vg = [1,
|
|
96
|
-
$Vh = [1,
|
|
97
|
-
$Vi = [1,
|
|
98
|
-
$Vj = [1,
|
|
99
|
-
$Vk = [1,
|
|
100
|
-
$Vl = [1,
|
|
101
|
-
$Vm = [1,
|
|
102
|
-
$Vn = [1,
|
|
103
|
-
$Vo = [1,
|
|
104
|
-
$Vp = [1,
|
|
105
|
-
$Vq = [1,
|
|
106
|
-
$Vr = [
|
|
107
|
-
|
|
108
|
-
7,
|
|
109
|
-
|
|
110
|
-
15,
|
|
111
|
-
16,
|
|
112
|
-
17,
|
|
113
|
-
18,
|
|
114
|
-
19,
|
|
115
|
-
20,
|
|
116
|
-
21,
|
|
117
|
-
22,
|
|
118
|
-
24,
|
|
119
|
-
25,
|
|
120
|
-
26,
|
|
121
|
-
27,
|
|
122
|
-
28,
|
|
123
|
-
29,
|
|
124
|
-
30,
|
|
125
|
-
31,
|
|
126
|
-
34,
|
|
127
|
-
35,
|
|
128
|
-
36,
|
|
86
|
+
$V7 = [1, 12],
|
|
87
|
+
$V8 = [1, 14],
|
|
88
|
+
$V9 = [1, 15],
|
|
89
|
+
$Va = [4, 7],
|
|
90
|
+
$Vb = [1, 18],
|
|
91
|
+
$Vc = [1, 19],
|
|
92
|
+
$Vd = [1, 20],
|
|
93
|
+
$Ve = [1, 21],
|
|
94
|
+
$Vf = [1, 22],
|
|
95
|
+
$Vg = [1, 23],
|
|
96
|
+
$Vh = [1, 24],
|
|
97
|
+
$Vi = [1, 25],
|
|
98
|
+
$Vj = [1, 26],
|
|
99
|
+
$Vk = [1, 27],
|
|
100
|
+
$Vl = [1, 28],
|
|
101
|
+
$Vm = [1, 29],
|
|
102
|
+
$Vn = [1, 30],
|
|
103
|
+
$Vo = [1, 31],
|
|
104
|
+
$Vp = [1, 32],
|
|
105
|
+
$Vq = [1, 33],
|
|
106
|
+
$Vr = [1, 34],
|
|
107
|
+
$Vs = [
|
|
108
|
+
4, 7, 9, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 28, 29, 30, 31, 32,
|
|
109
|
+
35, 36, 37, 40, 41, 43, 45,
|
|
129
110
|
],
|
|
130
|
-
$
|
|
131
|
-
$
|
|
132
|
-
$Vu = [4, 7, 9, 15, 16, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36],
|
|
111
|
+
$Vt = [9, 35],
|
|
112
|
+
$Vu = [2, 6],
|
|
133
113
|
$Vv = [
|
|
134
|
-
4,
|
|
135
|
-
|
|
136
|
-
9,
|
|
137
|
-
15,
|
|
138
|
-
16,
|
|
139
|
-
17,
|
|
140
|
-
18,
|
|
141
|
-
19,
|
|
142
|
-
21,
|
|
143
|
-
22,
|
|
144
|
-
24,
|
|
145
|
-
25,
|
|
146
|
-
26,
|
|
147
|
-
27,
|
|
148
|
-
28,
|
|
149
|
-
29,
|
|
150
|
-
30,
|
|
151
|
-
31,
|
|
152
|
-
34,
|
|
153
|
-
35,
|
|
154
|
-
36,
|
|
114
|
+
4, 7, 9, 15, 16, 21, 22, 24, 25, 27, 28, 29, 30, 31, 32, 35, 36, 37, 40,
|
|
115
|
+
41, 43, 45,
|
|
155
116
|
],
|
|
156
|
-
$Vw = [
|
|
157
|
-
|
|
158
|
-
|
|
117
|
+
$Vw = [
|
|
118
|
+
4, 7, 9, 15, 16, 17, 18, 19, 21, 22, 24, 25, 27, 28, 29, 30, 31, 32, 35,
|
|
119
|
+
36, 37, 40, 41, 43, 45,
|
|
120
|
+
],
|
|
121
|
+
$Vx = [4, 7, 9, 21, 22, 24, 25, 35, 37, 40, 41, 43, 45],
|
|
122
|
+
$Vy = [
|
|
123
|
+
4, 7, 9, 21, 22, 24, 25, 27, 28, 29, 30, 31, 32, 35, 36, 37, 40, 41, 43,
|
|
124
|
+
45,
|
|
125
|
+
],
|
|
126
|
+
$Vz = [1, 67],
|
|
127
|
+
$VA = [40, 43, 45];
|
|
159
128
|
var parser = {
|
|
160
129
|
trace: function trace() {},
|
|
161
130
|
yy: {},
|
|
@@ -184,17 +153,26 @@ var parser = (function () {
|
|
|
184
153
|
'!': 23,
|
|
185
154
|
'?': 24,
|
|
186
155
|
':': 25,
|
|
187
|
-
|
|
188
|
-
'
|
|
189
|
-
'
|
|
190
|
-
'
|
|
191
|
-
'
|
|
192
|
-
'
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
'
|
|
196
|
-
|
|
197
|
-
|
|
156
|
+
case_when: 26,
|
|
157
|
+
'=': 27,
|
|
158
|
+
'!=': 28,
|
|
159
|
+
'<': 29,
|
|
160
|
+
'<=': 30,
|
|
161
|
+
'>': 31,
|
|
162
|
+
'>=': 32,
|
|
163
|
+
FUNCTION: 33,
|
|
164
|
+
'(': 34,
|
|
165
|
+
')': 35,
|
|
166
|
+
IN: 36,
|
|
167
|
+
WHERE: 37,
|
|
168
|
+
case_expression_value: 38,
|
|
169
|
+
when_then_list: 39,
|
|
170
|
+
WHEN: 40,
|
|
171
|
+
THEN: 41,
|
|
172
|
+
case_when_else: 42,
|
|
173
|
+
ELSE: 43,
|
|
174
|
+
CASE: 44,
|
|
175
|
+
END: 45,
|
|
198
176
|
$accept: 0,
|
|
199
177
|
$end: 1,
|
|
200
178
|
},
|
|
@@ -219,17 +197,22 @@ var parser = (function () {
|
|
|
219
197
|
23: '!',
|
|
220
198
|
24: '?',
|
|
221
199
|
25: ':',
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
200
|
+
27: '=',
|
|
201
|
+
28: '!=',
|
|
202
|
+
29: '<',
|
|
203
|
+
30: '<=',
|
|
204
|
+
31: '>',
|
|
205
|
+
32: '>=',
|
|
206
|
+
33: 'FUNCTION',
|
|
207
|
+
34: '(',
|
|
208
|
+
35: ')',
|
|
209
|
+
36: 'IN',
|
|
210
|
+
37: 'WHERE',
|
|
211
|
+
40: 'WHEN',
|
|
212
|
+
41: 'THEN',
|
|
213
|
+
43: 'ELSE',
|
|
214
|
+
44: 'CASE',
|
|
215
|
+
45: 'END',
|
|
233
216
|
},
|
|
234
217
|
productions_: [
|
|
235
218
|
0,
|
|
@@ -256,6 +239,7 @@ var parser = (function () {
|
|
|
256
239
|
[6, 3],
|
|
257
240
|
[6, 2],
|
|
258
241
|
[6, 5],
|
|
242
|
+
[6, 1],
|
|
259
243
|
[6, 3],
|
|
260
244
|
[6, 3],
|
|
261
245
|
[6, 3],
|
|
@@ -267,6 +251,13 @@ var parser = (function () {
|
|
|
267
251
|
[6, 5],
|
|
268
252
|
[6, 3],
|
|
269
253
|
[6, 3],
|
|
254
|
+
[38, 0],
|
|
255
|
+
[38, 1],
|
|
256
|
+
[39, 4],
|
|
257
|
+
[39, 5],
|
|
258
|
+
[42, 0],
|
|
259
|
+
[42, 2],
|
|
260
|
+
[26, 5],
|
|
270
261
|
],
|
|
271
262
|
performAction: function anonymous(
|
|
272
263
|
yytext,
|
|
@@ -292,7 +283,7 @@ var parser = (function () {
|
|
|
292
283
|
this.$ = [$$[$0]];
|
|
293
284
|
break;
|
|
294
285
|
case 4:
|
|
295
|
-
case
|
|
286
|
+
case 34:
|
|
296
287
|
this.$ = $$[$0 - 1];
|
|
297
288
|
break;
|
|
298
289
|
case 5:
|
|
@@ -348,35 +339,58 @@ var parser = (function () {
|
|
|
348
339
|
this.$ = yy.node('IF', [$$[$0 - 4], $$[$0 - 2], $$[$0]], this._$);
|
|
349
340
|
break;
|
|
350
341
|
case 24:
|
|
351
|
-
|
|
342
|
+
case 37:
|
|
343
|
+
case 41:
|
|
344
|
+
this.$ = $$[$0];
|
|
352
345
|
break;
|
|
353
346
|
case 25:
|
|
354
|
-
this.$ = yy.node('
|
|
347
|
+
this.$ = yy.node('EQ', [$$[$0 - 2], $$[$0]], this._$);
|
|
355
348
|
break;
|
|
356
349
|
case 26:
|
|
357
|
-
this.$ = yy.node('
|
|
350
|
+
this.$ = yy.node('NEQ', [$$[$0 - 2], $$[$0]], this._$);
|
|
358
351
|
break;
|
|
359
352
|
case 27:
|
|
360
|
-
this.$ = yy.node('
|
|
353
|
+
this.$ = yy.node('LT', [$$[$0 - 2], $$[$0]], this._$);
|
|
361
354
|
break;
|
|
362
355
|
case 28:
|
|
363
|
-
this.$ = yy.node('
|
|
356
|
+
this.$ = yy.node('LTE', [$$[$0 - 2], $$[$0]], this._$);
|
|
364
357
|
break;
|
|
365
358
|
case 29:
|
|
366
|
-
this.$ = yy.node('
|
|
359
|
+
this.$ = yy.node('GT', [$$[$0 - 2], $$[$0]], this._$);
|
|
367
360
|
break;
|
|
368
361
|
case 30:
|
|
369
|
-
this.$ = yy.node($$[$0 -
|
|
362
|
+
this.$ = yy.node('GTE', [$$[$0 - 2], $$[$0]], this._$);
|
|
370
363
|
break;
|
|
371
364
|
case 31:
|
|
372
|
-
this.$ =
|
|
365
|
+
this.$ = yy.node($$[$0 - 3].toUpperCase(), $$[$0 - 1], this._$);
|
|
373
366
|
break;
|
|
374
367
|
case 32:
|
|
368
|
+
this.$ = -$$[$0];
|
|
369
|
+
break;
|
|
370
|
+
case 33:
|
|
375
371
|
this.$ = yy.node('IN', [$$[$0 - 4], $$[$0 - 1]], this._$);
|
|
376
372
|
break;
|
|
377
|
-
case
|
|
373
|
+
case 35:
|
|
378
374
|
this.$ = yy.node('WHERE', [$$[$0 - 2], $$[$0]], this._$);
|
|
379
375
|
break;
|
|
376
|
+
case 36:
|
|
377
|
+
case 40:
|
|
378
|
+
this.$ = null;
|
|
379
|
+
break;
|
|
380
|
+
case 38:
|
|
381
|
+
this.$ = [{ WHEN: $$[$0 - 2], THEN: $$[$0] }];
|
|
382
|
+
break;
|
|
383
|
+
case 39:
|
|
384
|
+
this.$ = $$[$0 - 4];
|
|
385
|
+
this.$.push({ WHEN: $$[$0 - 2], THEN: $$[$0] });
|
|
386
|
+
break;
|
|
387
|
+
case 42:
|
|
388
|
+
this.$ = yy.node(
|
|
389
|
+
'CASE',
|
|
390
|
+
[$$[$0 - 3], $$[$0 - 2], $$[$0 - 1]],
|
|
391
|
+
this._$
|
|
392
|
+
);
|
|
393
|
+
break;
|
|
380
394
|
}
|
|
381
395
|
},
|
|
382
396
|
table: [
|
|
@@ -392,38 +406,40 @@ var parser = (function () {
|
|
|
392
406
|
14: $V4,
|
|
393
407
|
16: $V5,
|
|
394
408
|
23: $V6,
|
|
395
|
-
|
|
396
|
-
33: $
|
|
409
|
+
26: 11,
|
|
410
|
+
33: $V7,
|
|
411
|
+
34: $V8,
|
|
412
|
+
44: $V9,
|
|
397
413
|
},
|
|
398
414
|
{ 1: [3] },
|
|
399
415
|
{ 1: [2, 1] },
|
|
400
|
-
{ 4: [1,
|
|
401
|
-
o($
|
|
402
|
-
15: $
|
|
403
|
-
16: $
|
|
404
|
-
17: $
|
|
405
|
-
18: $
|
|
406
|
-
19: $
|
|
407
|
-
20: $
|
|
408
|
-
21: $
|
|
409
|
-
22: $
|
|
410
|
-
24: $
|
|
411
|
-
26: $Vj,
|
|
416
|
+
{ 4: [1, 16], 7: [1, 17] },
|
|
417
|
+
o($Va, [2, 3], {
|
|
418
|
+
15: $Vb,
|
|
419
|
+
16: $Vc,
|
|
420
|
+
17: $Vd,
|
|
421
|
+
18: $Ve,
|
|
422
|
+
19: $Vf,
|
|
423
|
+
20: $Vg,
|
|
424
|
+
21: $Vh,
|
|
425
|
+
22: $Vi,
|
|
426
|
+
24: $Vj,
|
|
412
427
|
27: $Vk,
|
|
413
428
|
28: $Vl,
|
|
414
429
|
29: $Vm,
|
|
415
430
|
30: $Vn,
|
|
416
431
|
31: $Vo,
|
|
417
|
-
|
|
432
|
+
32: $Vp,
|
|
418
433
|
36: $Vq,
|
|
434
|
+
37: $Vr,
|
|
419
435
|
}),
|
|
420
|
-
o($
|
|
421
|
-
o($
|
|
422
|
-
o($
|
|
423
|
-
o($
|
|
424
|
-
o($
|
|
436
|
+
o($Vs, [2, 9]),
|
|
437
|
+
o($Vs, [2, 10]),
|
|
438
|
+
o($Vs, [2, 11]),
|
|
439
|
+
o($Vs, [2, 12]),
|
|
440
|
+
o($Vs, [2, 13]),
|
|
425
441
|
{
|
|
426
|
-
6:
|
|
442
|
+
6: 35,
|
|
427
443
|
10: $V0,
|
|
428
444
|
11: $V1,
|
|
429
445
|
12: $V2,
|
|
@@ -431,12 +447,29 @@ var parser = (function () {
|
|
|
431
447
|
14: $V4,
|
|
432
448
|
16: $V5,
|
|
433
449
|
23: $V6,
|
|
434
|
-
|
|
435
|
-
33: $
|
|
450
|
+
26: 11,
|
|
451
|
+
33: $V7,
|
|
452
|
+
34: $V8,
|
|
453
|
+
44: $V9,
|
|
436
454
|
},
|
|
437
|
-
|
|
455
|
+
o($Vs, [2, 24]),
|
|
456
|
+
{ 34: [1, 36] },
|
|
438
457
|
{
|
|
439
|
-
6:
|
|
458
|
+
6: 37,
|
|
459
|
+
10: $V0,
|
|
460
|
+
11: $V1,
|
|
461
|
+
12: $V2,
|
|
462
|
+
13: $V3,
|
|
463
|
+
14: $V4,
|
|
464
|
+
16: $V5,
|
|
465
|
+
23: $V6,
|
|
466
|
+
26: 11,
|
|
467
|
+
33: $V7,
|
|
468
|
+
34: $V8,
|
|
469
|
+
44: $V9,
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
6: 38,
|
|
440
473
|
10: $V0,
|
|
441
474
|
11: $V1,
|
|
442
475
|
12: $V2,
|
|
@@ -444,11 +477,13 @@ var parser = (function () {
|
|
|
444
477
|
14: $V4,
|
|
445
478
|
16: $V5,
|
|
446
479
|
23: $V6,
|
|
447
|
-
|
|
448
|
-
33: $
|
|
480
|
+
26: 11,
|
|
481
|
+
33: $V7,
|
|
482
|
+
34: $V8,
|
|
483
|
+
44: $V9,
|
|
449
484
|
},
|
|
450
485
|
{
|
|
451
|
-
6:
|
|
486
|
+
6: 40,
|
|
452
487
|
10: $V0,
|
|
453
488
|
11: $V1,
|
|
454
489
|
12: $V2,
|
|
@@ -456,12 +491,17 @@ var parser = (function () {
|
|
|
456
491
|
14: $V4,
|
|
457
492
|
16: $V5,
|
|
458
493
|
23: $V6,
|
|
459
|
-
|
|
460
|
-
33: $
|
|
494
|
+
26: 11,
|
|
495
|
+
33: $V7,
|
|
496
|
+
34: $V8,
|
|
497
|
+
38: 39,
|
|
498
|
+
40: [2, 36],
|
|
499
|
+
44: $V9,
|
|
461
500
|
},
|
|
462
501
|
{ 1: [2, 2] },
|
|
463
|
-
o($
|
|
464
|
-
|
|
502
|
+
o($Va, [2, 4], {
|
|
503
|
+
26: 11,
|
|
504
|
+
6: 41,
|
|
465
505
|
10: $V0,
|
|
466
506
|
11: $V1,
|
|
467
507
|
12: $V2,
|
|
@@ -469,11 +509,12 @@ var parser = (function () {
|
|
|
469
509
|
14: $V4,
|
|
470
510
|
16: $V5,
|
|
471
511
|
23: $V6,
|
|
472
|
-
|
|
473
|
-
|
|
512
|
+
33: $V7,
|
|
513
|
+
34: $V8,
|
|
514
|
+
44: $V9,
|
|
474
515
|
}),
|
|
475
516
|
{
|
|
476
|
-
6:
|
|
517
|
+
6: 42,
|
|
477
518
|
10: $V0,
|
|
478
519
|
11: $V1,
|
|
479
520
|
12: $V2,
|
|
@@ -481,11 +522,13 @@ var parser = (function () {
|
|
|
481
522
|
14: $V4,
|
|
482
523
|
16: $V5,
|
|
483
524
|
23: $V6,
|
|
484
|
-
|
|
485
|
-
33: $
|
|
525
|
+
26: 11,
|
|
526
|
+
33: $V7,
|
|
527
|
+
34: $V8,
|
|
528
|
+
44: $V9,
|
|
486
529
|
},
|
|
487
530
|
{
|
|
488
|
-
6:
|
|
531
|
+
6: 43,
|
|
489
532
|
10: $V0,
|
|
490
533
|
11: $V1,
|
|
491
534
|
12: $V2,
|
|
@@ -493,11 +536,13 @@ var parser = (function () {
|
|
|
493
536
|
14: $V4,
|
|
494
537
|
16: $V5,
|
|
495
538
|
23: $V6,
|
|
496
|
-
|
|
497
|
-
33: $
|
|
539
|
+
26: 11,
|
|
540
|
+
33: $V7,
|
|
541
|
+
34: $V8,
|
|
542
|
+
44: $V9,
|
|
498
543
|
},
|
|
499
544
|
{
|
|
500
|
-
6:
|
|
545
|
+
6: 44,
|
|
501
546
|
10: $V0,
|
|
502
547
|
11: $V1,
|
|
503
548
|
12: $V2,
|
|
@@ -505,11 +550,13 @@ var parser = (function () {
|
|
|
505
550
|
14: $V4,
|
|
506
551
|
16: $V5,
|
|
507
552
|
23: $V6,
|
|
508
|
-
|
|
509
|
-
33: $
|
|
553
|
+
26: 11,
|
|
554
|
+
33: $V7,
|
|
555
|
+
34: $V8,
|
|
556
|
+
44: $V9,
|
|
510
557
|
},
|
|
511
558
|
{
|
|
512
|
-
6:
|
|
559
|
+
6: 45,
|
|
513
560
|
10: $V0,
|
|
514
561
|
11: $V1,
|
|
515
562
|
12: $V2,
|
|
@@ -517,11 +564,13 @@ var parser = (function () {
|
|
|
517
564
|
14: $V4,
|
|
518
565
|
16: $V5,
|
|
519
566
|
23: $V6,
|
|
520
|
-
|
|
521
|
-
33: $
|
|
567
|
+
26: 11,
|
|
568
|
+
33: $V7,
|
|
569
|
+
34: $V8,
|
|
570
|
+
44: $V9,
|
|
522
571
|
},
|
|
523
572
|
{
|
|
524
|
-
6:
|
|
573
|
+
6: 46,
|
|
525
574
|
10: $V0,
|
|
526
575
|
11: $V1,
|
|
527
576
|
12: $V2,
|
|
@@ -529,11 +578,13 @@ var parser = (function () {
|
|
|
529
578
|
14: $V4,
|
|
530
579
|
16: $V5,
|
|
531
580
|
23: $V6,
|
|
532
|
-
|
|
533
|
-
33: $
|
|
581
|
+
26: 11,
|
|
582
|
+
33: $V7,
|
|
583
|
+
34: $V8,
|
|
584
|
+
44: $V9,
|
|
534
585
|
},
|
|
535
586
|
{
|
|
536
|
-
6:
|
|
587
|
+
6: 47,
|
|
537
588
|
10: $V0,
|
|
538
589
|
11: $V1,
|
|
539
590
|
12: $V2,
|
|
@@ -541,11 +592,13 @@ var parser = (function () {
|
|
|
541
592
|
14: $V4,
|
|
542
593
|
16: $V5,
|
|
543
594
|
23: $V6,
|
|
544
|
-
|
|
545
|
-
33: $
|
|
595
|
+
26: 11,
|
|
596
|
+
33: $V7,
|
|
597
|
+
34: $V8,
|
|
598
|
+
44: $V9,
|
|
546
599
|
},
|
|
547
600
|
{
|
|
548
|
-
6:
|
|
601
|
+
6: 48,
|
|
549
602
|
10: $V0,
|
|
550
603
|
11: $V1,
|
|
551
604
|
12: $V2,
|
|
@@ -553,11 +606,13 @@ var parser = (function () {
|
|
|
553
606
|
14: $V4,
|
|
554
607
|
16: $V5,
|
|
555
608
|
23: $V6,
|
|
556
|
-
|
|
557
|
-
33: $
|
|
609
|
+
26: 11,
|
|
610
|
+
33: $V7,
|
|
611
|
+
34: $V8,
|
|
612
|
+
44: $V9,
|
|
558
613
|
},
|
|
559
614
|
{
|
|
560
|
-
6:
|
|
615
|
+
6: 49,
|
|
561
616
|
10: $V0,
|
|
562
617
|
11: $V1,
|
|
563
618
|
12: $V2,
|
|
@@ -565,11 +620,13 @@ var parser = (function () {
|
|
|
565
620
|
14: $V4,
|
|
566
621
|
16: $V5,
|
|
567
622
|
23: $V6,
|
|
568
|
-
|
|
569
|
-
33: $
|
|
623
|
+
26: 11,
|
|
624
|
+
33: $V7,
|
|
625
|
+
34: $V8,
|
|
626
|
+
44: $V9,
|
|
570
627
|
},
|
|
571
628
|
{
|
|
572
|
-
6:
|
|
629
|
+
6: 50,
|
|
573
630
|
10: $V0,
|
|
574
631
|
11: $V1,
|
|
575
632
|
12: $V2,
|
|
@@ -577,11 +634,13 @@ var parser = (function () {
|
|
|
577
634
|
14: $V4,
|
|
578
635
|
16: $V5,
|
|
579
636
|
23: $V6,
|
|
580
|
-
|
|
581
|
-
33: $
|
|
637
|
+
26: 11,
|
|
638
|
+
33: $V7,
|
|
639
|
+
34: $V8,
|
|
640
|
+
44: $V9,
|
|
582
641
|
},
|
|
583
642
|
{
|
|
584
|
-
6:
|
|
643
|
+
6: 51,
|
|
585
644
|
10: $V0,
|
|
586
645
|
11: $V1,
|
|
587
646
|
12: $V2,
|
|
@@ -589,11 +648,13 @@ var parser = (function () {
|
|
|
589
648
|
14: $V4,
|
|
590
649
|
16: $V5,
|
|
591
650
|
23: $V6,
|
|
592
|
-
|
|
593
|
-
33: $
|
|
651
|
+
26: 11,
|
|
652
|
+
33: $V7,
|
|
653
|
+
34: $V8,
|
|
654
|
+
44: $V9,
|
|
594
655
|
},
|
|
595
656
|
{
|
|
596
|
-
6:
|
|
657
|
+
6: 52,
|
|
597
658
|
10: $V0,
|
|
598
659
|
11: $V1,
|
|
599
660
|
12: $V2,
|
|
@@ -601,11 +662,13 @@ var parser = (function () {
|
|
|
601
662
|
14: $V4,
|
|
602
663
|
16: $V5,
|
|
603
664
|
23: $V6,
|
|
604
|
-
|
|
605
|
-
33: $
|
|
665
|
+
26: 11,
|
|
666
|
+
33: $V7,
|
|
667
|
+
34: $V8,
|
|
668
|
+
44: $V9,
|
|
606
669
|
},
|
|
607
670
|
{
|
|
608
|
-
6:
|
|
671
|
+
6: 53,
|
|
609
672
|
10: $V0,
|
|
610
673
|
11: $V1,
|
|
611
674
|
12: $V2,
|
|
@@ -613,11 +676,13 @@ var parser = (function () {
|
|
|
613
676
|
14: $V4,
|
|
614
677
|
16: $V5,
|
|
615
678
|
23: $V6,
|
|
616
|
-
|
|
617
|
-
33: $
|
|
679
|
+
26: 11,
|
|
680
|
+
33: $V7,
|
|
681
|
+
34: $V8,
|
|
682
|
+
44: $V9,
|
|
618
683
|
},
|
|
619
684
|
{
|
|
620
|
-
6:
|
|
685
|
+
6: 54,
|
|
621
686
|
10: $V0,
|
|
622
687
|
11: $V1,
|
|
623
688
|
12: $V2,
|
|
@@ -625,11 +690,13 @@ var parser = (function () {
|
|
|
625
690
|
14: $V4,
|
|
626
691
|
16: $V5,
|
|
627
692
|
23: $V6,
|
|
628
|
-
|
|
629
|
-
33: $
|
|
693
|
+
26: 11,
|
|
694
|
+
33: $V7,
|
|
695
|
+
34: $V8,
|
|
696
|
+
44: $V9,
|
|
630
697
|
},
|
|
631
698
|
{
|
|
632
|
-
6:
|
|
699
|
+
6: 55,
|
|
633
700
|
10: $V0,
|
|
634
701
|
11: $V1,
|
|
635
702
|
12: $V2,
|
|
@@ -637,11 +704,13 @@ var parser = (function () {
|
|
|
637
704
|
14: $V4,
|
|
638
705
|
16: $V5,
|
|
639
706
|
23: $V6,
|
|
640
|
-
|
|
641
|
-
33: $
|
|
707
|
+
26: 11,
|
|
708
|
+
33: $V7,
|
|
709
|
+
34: $V8,
|
|
710
|
+
44: $V9,
|
|
642
711
|
},
|
|
643
712
|
{
|
|
644
|
-
6:
|
|
713
|
+
6: 56,
|
|
645
714
|
10: $V0,
|
|
646
715
|
11: $V1,
|
|
647
716
|
12: $V2,
|
|
@@ -649,12 +718,14 @@ var parser = (function () {
|
|
|
649
718
|
14: $V4,
|
|
650
719
|
16: $V5,
|
|
651
720
|
23: $V6,
|
|
652
|
-
|
|
653
|
-
33: $
|
|
721
|
+
26: 11,
|
|
722
|
+
33: $V7,
|
|
723
|
+
34: $V8,
|
|
724
|
+
44: $V9,
|
|
654
725
|
},
|
|
655
|
-
{
|
|
726
|
+
{ 34: [1, 57] },
|
|
656
727
|
{
|
|
657
|
-
6:
|
|
728
|
+
6: 58,
|
|
658
729
|
10: $V0,
|
|
659
730
|
11: $V1,
|
|
660
731
|
12: $V2,
|
|
@@ -662,13 +733,16 @@ var parser = (function () {
|
|
|
662
733
|
14: $V4,
|
|
663
734
|
16: $V5,
|
|
664
735
|
23: $V6,
|
|
665
|
-
|
|
666
|
-
33: $
|
|
736
|
+
26: 11,
|
|
737
|
+
33: $V7,
|
|
738
|
+
34: $V8,
|
|
739
|
+
44: $V9,
|
|
667
740
|
},
|
|
668
|
-
o($
|
|
669
|
-
o($
|
|
670
|
-
|
|
671
|
-
|
|
741
|
+
o($Vs, [2, 22]),
|
|
742
|
+
o($Vt, $Vu, {
|
|
743
|
+
26: 11,
|
|
744
|
+
8: 59,
|
|
745
|
+
6: 60,
|
|
672
746
|
10: $V0,
|
|
673
747
|
11: $V1,
|
|
674
748
|
12: $V2,
|
|
@@ -676,114 +750,137 @@ var parser = (function () {
|
|
|
676
750
|
14: $V4,
|
|
677
751
|
16: $V5,
|
|
678
752
|
23: $V6,
|
|
679
|
-
|
|
680
|
-
|
|
753
|
+
33: $V7,
|
|
754
|
+
34: $V8,
|
|
755
|
+
44: $V9,
|
|
681
756
|
}),
|
|
682
|
-
o($
|
|
757
|
+
o($Vs, [2, 32]),
|
|
758
|
+
{
|
|
759
|
+
15: $Vb,
|
|
760
|
+
16: $Vc,
|
|
761
|
+
17: $Vd,
|
|
762
|
+
18: $Ve,
|
|
763
|
+
19: $Vf,
|
|
764
|
+
20: $Vg,
|
|
765
|
+
21: $Vh,
|
|
766
|
+
22: $Vi,
|
|
767
|
+
24: $Vj,
|
|
768
|
+
27: $Vk,
|
|
769
|
+
28: $Vl,
|
|
770
|
+
29: $Vm,
|
|
771
|
+
30: $Vn,
|
|
772
|
+
31: $Vo,
|
|
773
|
+
32: $Vp,
|
|
774
|
+
35: [1, 61],
|
|
775
|
+
36: $Vq,
|
|
776
|
+
37: $Vr,
|
|
777
|
+
},
|
|
778
|
+
{ 39: 62, 40: [1, 63] },
|
|
683
779
|
{
|
|
684
|
-
15: $
|
|
685
|
-
16: $
|
|
686
|
-
17: $
|
|
687
|
-
18: $
|
|
688
|
-
19: $
|
|
689
|
-
20: $
|
|
690
|
-
21: $
|
|
691
|
-
22: $
|
|
692
|
-
24: $
|
|
693
|
-
26: $Vj,
|
|
780
|
+
15: $Vb,
|
|
781
|
+
16: $Vc,
|
|
782
|
+
17: $Vd,
|
|
783
|
+
18: $Ve,
|
|
784
|
+
19: $Vf,
|
|
785
|
+
20: $Vg,
|
|
786
|
+
21: $Vh,
|
|
787
|
+
22: $Vi,
|
|
788
|
+
24: $Vj,
|
|
694
789
|
27: $Vk,
|
|
695
790
|
28: $Vl,
|
|
696
791
|
29: $Vm,
|
|
697
792
|
30: $Vn,
|
|
698
793
|
31: $Vo,
|
|
699
|
-
|
|
700
|
-
35: $Vp,
|
|
794
|
+
32: $Vp,
|
|
701
795
|
36: $Vq,
|
|
796
|
+
37: $Vr,
|
|
797
|
+
40: [2, 37],
|
|
702
798
|
},
|
|
703
|
-
o($
|
|
704
|
-
15: $
|
|
705
|
-
16: $
|
|
706
|
-
17: $
|
|
707
|
-
18: $
|
|
708
|
-
19: $
|
|
709
|
-
20: $
|
|
710
|
-
21: $
|
|
711
|
-
22: $
|
|
712
|
-
24: $
|
|
713
|
-
26: $Vj,
|
|
799
|
+
o($Va, [2, 5], {
|
|
800
|
+
15: $Vb,
|
|
801
|
+
16: $Vc,
|
|
802
|
+
17: $Vd,
|
|
803
|
+
18: $Ve,
|
|
804
|
+
19: $Vf,
|
|
805
|
+
20: $Vg,
|
|
806
|
+
21: $Vh,
|
|
807
|
+
22: $Vi,
|
|
808
|
+
24: $Vj,
|
|
714
809
|
27: $Vk,
|
|
715
810
|
28: $Vl,
|
|
716
811
|
29: $Vm,
|
|
717
812
|
30: $Vn,
|
|
718
813
|
31: $Vo,
|
|
719
|
-
|
|
814
|
+
32: $Vp,
|
|
720
815
|
36: $Vq,
|
|
816
|
+
37: $Vr,
|
|
721
817
|
}),
|
|
722
|
-
o($
|
|
723
|
-
o($
|
|
724
|
-
o($
|
|
725
|
-
o($
|
|
726
|
-
o($
|
|
727
|
-
o($
|
|
728
|
-
o($
|
|
729
|
-
15: $
|
|
730
|
-
16: $
|
|
731
|
-
17: $
|
|
732
|
-
18: $
|
|
733
|
-
19: $
|
|
734
|
-
20: $
|
|
735
|
-
26: $Vj,
|
|
818
|
+
o($Vv, [2, 14], { 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg }),
|
|
819
|
+
o($Vv, [2, 15], { 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg }),
|
|
820
|
+
o($Vw, [2, 16], { 20: $Vg }),
|
|
821
|
+
o($Vw, [2, 17], { 20: $Vg }),
|
|
822
|
+
o($Vw, [2, 18], { 20: $Vg }),
|
|
823
|
+
o($Vs, [2, 19]),
|
|
824
|
+
o($Vx, [2, 20], {
|
|
825
|
+
15: $Vb,
|
|
826
|
+
16: $Vc,
|
|
827
|
+
17: $Vd,
|
|
828
|
+
18: $Ve,
|
|
829
|
+
19: $Vf,
|
|
830
|
+
20: $Vg,
|
|
736
831
|
27: $Vk,
|
|
737
832
|
28: $Vl,
|
|
738
833
|
29: $Vm,
|
|
739
834
|
30: $Vn,
|
|
740
835
|
31: $Vo,
|
|
741
|
-
|
|
836
|
+
32: $Vp,
|
|
837
|
+
36: $Vq,
|
|
742
838
|
}),
|
|
743
|
-
o($
|
|
744
|
-
15: $
|
|
745
|
-
16: $
|
|
746
|
-
17: $
|
|
747
|
-
18: $
|
|
748
|
-
19: $
|
|
749
|
-
20: $
|
|
750
|
-
26: $Vj,
|
|
839
|
+
o($Vx, [2, 21], {
|
|
840
|
+
15: $Vb,
|
|
841
|
+
16: $Vc,
|
|
842
|
+
17: $Vd,
|
|
843
|
+
18: $Ve,
|
|
844
|
+
19: $Vf,
|
|
845
|
+
20: $Vg,
|
|
751
846
|
27: $Vk,
|
|
752
847
|
28: $Vl,
|
|
753
848
|
29: $Vm,
|
|
754
849
|
30: $Vn,
|
|
755
850
|
31: $Vo,
|
|
756
|
-
|
|
851
|
+
32: $Vp,
|
|
852
|
+
36: $Vq,
|
|
757
853
|
}),
|
|
758
854
|
{
|
|
759
|
-
15: $
|
|
760
|
-
16: $
|
|
761
|
-
17: $
|
|
762
|
-
18: $
|
|
763
|
-
19: $
|
|
764
|
-
20: $
|
|
765
|
-
21: $
|
|
766
|
-
22: $
|
|
767
|
-
24: $
|
|
768
|
-
25: [1,
|
|
769
|
-
26: $Vj,
|
|
855
|
+
15: $Vb,
|
|
856
|
+
16: $Vc,
|
|
857
|
+
17: $Vd,
|
|
858
|
+
18: $Ve,
|
|
859
|
+
19: $Vf,
|
|
860
|
+
20: $Vg,
|
|
861
|
+
21: $Vh,
|
|
862
|
+
22: $Vi,
|
|
863
|
+
24: $Vj,
|
|
864
|
+
25: [1, 64],
|
|
770
865
|
27: $Vk,
|
|
771
866
|
28: $Vl,
|
|
772
867
|
29: $Vm,
|
|
773
868
|
30: $Vn,
|
|
774
869
|
31: $Vo,
|
|
775
|
-
|
|
870
|
+
32: $Vp,
|
|
776
871
|
36: $Vq,
|
|
872
|
+
37: $Vr,
|
|
777
873
|
},
|
|
778
|
-
o($
|
|
779
|
-
o($
|
|
780
|
-
o($
|
|
781
|
-
o($
|
|
782
|
-
o($
|
|
783
|
-
o($
|
|
784
|
-
o($
|
|
785
|
-
|
|
786
|
-
|
|
874
|
+
o($Vy, [2, 25], { 15: $Vb, 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg }),
|
|
875
|
+
o($Vy, [2, 26], { 15: $Vb, 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg }),
|
|
876
|
+
o($Vy, [2, 27], { 15: $Vb, 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg }),
|
|
877
|
+
o($Vy, [2, 28], { 15: $Vb, 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg }),
|
|
878
|
+
o($Vy, [2, 29], { 15: $Vb, 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg }),
|
|
879
|
+
o($Vy, [2, 30], { 15: $Vb, 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg }),
|
|
880
|
+
o($Vt, $Vu, {
|
|
881
|
+
26: 11,
|
|
882
|
+
6: 60,
|
|
883
|
+
8: 65,
|
|
787
884
|
10: $V0,
|
|
788
885
|
11: $V1,
|
|
789
886
|
12: $V2,
|
|
@@ -791,49 +888,224 @@ var parser = (function () {
|
|
|
791
888
|
14: $V4,
|
|
792
889
|
16: $V5,
|
|
793
890
|
23: $V6,
|
|
794
|
-
|
|
795
|
-
|
|
891
|
+
33: $V7,
|
|
892
|
+
34: $V8,
|
|
893
|
+
44: $V9,
|
|
894
|
+
}),
|
|
895
|
+
o([4, 7, 9, 24, 25, 35, 37, 40, 41, 43, 45], [2, 35], {
|
|
896
|
+
15: $Vb,
|
|
897
|
+
16: $Vc,
|
|
898
|
+
17: $Vd,
|
|
899
|
+
18: $Ve,
|
|
900
|
+
19: $Vf,
|
|
901
|
+
20: $Vg,
|
|
902
|
+
21: $Vh,
|
|
903
|
+
22: $Vi,
|
|
904
|
+
27: $Vk,
|
|
905
|
+
28: $Vl,
|
|
906
|
+
29: $Vm,
|
|
907
|
+
30: $Vn,
|
|
908
|
+
31: $Vo,
|
|
909
|
+
32: $Vp,
|
|
910
|
+
36: $Vq,
|
|
911
|
+
}),
|
|
912
|
+
{ 9: $Vz, 35: [1, 66] },
|
|
913
|
+
o($Vt, [2, 7], {
|
|
914
|
+
15: $Vb,
|
|
915
|
+
16: $Vc,
|
|
916
|
+
17: $Vd,
|
|
917
|
+
18: $Ve,
|
|
918
|
+
19: $Vf,
|
|
919
|
+
20: $Vg,
|
|
920
|
+
21: $Vh,
|
|
921
|
+
22: $Vi,
|
|
922
|
+
24: $Vj,
|
|
923
|
+
27: $Vk,
|
|
924
|
+
28: $Vl,
|
|
925
|
+
29: $Vm,
|
|
926
|
+
30: $Vn,
|
|
927
|
+
31: $Vo,
|
|
928
|
+
32: $Vp,
|
|
929
|
+
36: $Vq,
|
|
930
|
+
37: $Vr,
|
|
796
931
|
}),
|
|
797
|
-
o(
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
932
|
+
o($Vs, [2, 34]),
|
|
933
|
+
{ 40: [1, 69], 42: 68, 43: [1, 70], 45: [2, 40] },
|
|
934
|
+
{
|
|
935
|
+
6: 71,
|
|
936
|
+
10: $V0,
|
|
937
|
+
11: $V1,
|
|
938
|
+
12: $V2,
|
|
939
|
+
13: $V3,
|
|
940
|
+
14: $V4,
|
|
941
|
+
16: $V5,
|
|
942
|
+
23: $V6,
|
|
943
|
+
26: 11,
|
|
944
|
+
33: $V7,
|
|
945
|
+
34: $V8,
|
|
946
|
+
44: $V9,
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
6: 72,
|
|
950
|
+
10: $V0,
|
|
951
|
+
11: $V1,
|
|
952
|
+
12: $V2,
|
|
953
|
+
13: $V3,
|
|
954
|
+
14: $V4,
|
|
955
|
+
16: $V5,
|
|
956
|
+
23: $V6,
|
|
957
|
+
26: 11,
|
|
958
|
+
33: $V7,
|
|
959
|
+
34: $V8,
|
|
960
|
+
44: $V9,
|
|
961
|
+
},
|
|
962
|
+
{ 9: $Vz, 35: [1, 73] },
|
|
963
|
+
o($Vs, [2, 31]),
|
|
964
|
+
{
|
|
965
|
+
6: 74,
|
|
966
|
+
10: $V0,
|
|
967
|
+
11: $V1,
|
|
968
|
+
12: $V2,
|
|
969
|
+
13: $V3,
|
|
970
|
+
14: $V4,
|
|
971
|
+
16: $V5,
|
|
972
|
+
23: $V6,
|
|
973
|
+
26: 11,
|
|
974
|
+
33: $V7,
|
|
975
|
+
34: $V8,
|
|
976
|
+
44: $V9,
|
|
977
|
+
},
|
|
978
|
+
{ 45: [1, 75] },
|
|
979
|
+
{
|
|
980
|
+
6: 76,
|
|
981
|
+
10: $V0,
|
|
982
|
+
11: $V1,
|
|
983
|
+
12: $V2,
|
|
984
|
+
13: $V3,
|
|
985
|
+
14: $V4,
|
|
986
|
+
16: $V5,
|
|
987
|
+
23: $V6,
|
|
988
|
+
26: 11,
|
|
989
|
+
33: $V7,
|
|
990
|
+
34: $V8,
|
|
991
|
+
44: $V9,
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
6: 77,
|
|
995
|
+
10: $V0,
|
|
996
|
+
11: $V1,
|
|
997
|
+
12: $V2,
|
|
998
|
+
13: $V3,
|
|
999
|
+
14: $V4,
|
|
1000
|
+
16: $V5,
|
|
1001
|
+
23: $V6,
|
|
1002
|
+
26: 11,
|
|
1003
|
+
33: $V7,
|
|
1004
|
+
34: $V8,
|
|
1005
|
+
44: $V9,
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
15: $Vb,
|
|
1009
|
+
16: $Vc,
|
|
1010
|
+
17: $Vd,
|
|
1011
|
+
18: $Ve,
|
|
1012
|
+
19: $Vf,
|
|
1013
|
+
20: $Vg,
|
|
1014
|
+
21: $Vh,
|
|
1015
|
+
22: $Vi,
|
|
1016
|
+
24: $Vj,
|
|
1017
|
+
27: $Vk,
|
|
1018
|
+
28: $Vl,
|
|
1019
|
+
29: $Vm,
|
|
1020
|
+
30: $Vn,
|
|
1021
|
+
31: $Vo,
|
|
1022
|
+
32: $Vp,
|
|
1023
|
+
36: $Vq,
|
|
1024
|
+
37: $Vr,
|
|
1025
|
+
41: [1, 78],
|
|
1026
|
+
},
|
|
1027
|
+
o([4, 7, 9, 25, 35, 40, 41, 43, 45], [2, 23], {
|
|
1028
|
+
15: $Vb,
|
|
1029
|
+
16: $Vc,
|
|
1030
|
+
17: $Vd,
|
|
1031
|
+
18: $Ve,
|
|
1032
|
+
19: $Vf,
|
|
1033
|
+
20: $Vg,
|
|
1034
|
+
21: $Vh,
|
|
1035
|
+
22: $Vi,
|
|
1036
|
+
24: $Vj,
|
|
807
1037
|
27: $Vk,
|
|
808
1038
|
28: $Vl,
|
|
809
1039
|
29: $Vm,
|
|
810
1040
|
30: $Vn,
|
|
811
1041
|
31: $Vo,
|
|
812
|
-
|
|
1042
|
+
32: $Vp,
|
|
1043
|
+
36: $Vq,
|
|
1044
|
+
37: $Vr,
|
|
813
1045
|
}),
|
|
814
|
-
|
|
815
|
-
o($
|
|
816
|
-
15: $
|
|
817
|
-
16: $
|
|
818
|
-
17: $
|
|
819
|
-
18: $
|
|
820
|
-
19: $
|
|
821
|
-
20: $
|
|
822
|
-
21: $
|
|
823
|
-
22: $
|
|
824
|
-
24: $
|
|
825
|
-
26: $Vj,
|
|
1046
|
+
o($Vs, [2, 33]),
|
|
1047
|
+
o($Vt, [2, 8], {
|
|
1048
|
+
15: $Vb,
|
|
1049
|
+
16: $Vc,
|
|
1050
|
+
17: $Vd,
|
|
1051
|
+
18: $Ve,
|
|
1052
|
+
19: $Vf,
|
|
1053
|
+
20: $Vg,
|
|
1054
|
+
21: $Vh,
|
|
1055
|
+
22: $Vi,
|
|
1056
|
+
24: $Vj,
|
|
826
1057
|
27: $Vk,
|
|
827
1058
|
28: $Vl,
|
|
828
1059
|
29: $Vm,
|
|
829
1060
|
30: $Vn,
|
|
830
1061
|
31: $Vo,
|
|
831
|
-
|
|
1062
|
+
32: $Vp,
|
|
832
1063
|
36: $Vq,
|
|
1064
|
+
37: $Vr,
|
|
833
1065
|
}),
|
|
834
|
-
o($
|
|
1066
|
+
o($Vs, [2, 42]),
|
|
1067
|
+
{
|
|
1068
|
+
15: $Vb,
|
|
1069
|
+
16: $Vc,
|
|
1070
|
+
17: $Vd,
|
|
1071
|
+
18: $Ve,
|
|
1072
|
+
19: $Vf,
|
|
1073
|
+
20: $Vg,
|
|
1074
|
+
21: $Vh,
|
|
1075
|
+
22: $Vi,
|
|
1076
|
+
24: $Vj,
|
|
1077
|
+
27: $Vk,
|
|
1078
|
+
28: $Vl,
|
|
1079
|
+
29: $Vm,
|
|
1080
|
+
30: $Vn,
|
|
1081
|
+
31: $Vo,
|
|
1082
|
+
32: $Vp,
|
|
1083
|
+
36: $Vq,
|
|
1084
|
+
37: $Vr,
|
|
1085
|
+
41: [1, 79],
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
15: $Vb,
|
|
1089
|
+
16: $Vc,
|
|
1090
|
+
17: $Vd,
|
|
1091
|
+
18: $Ve,
|
|
1092
|
+
19: $Vf,
|
|
1093
|
+
20: $Vg,
|
|
1094
|
+
21: $Vh,
|
|
1095
|
+
22: $Vi,
|
|
1096
|
+
24: $Vj,
|
|
1097
|
+
27: $Vk,
|
|
1098
|
+
28: $Vl,
|
|
1099
|
+
29: $Vm,
|
|
1100
|
+
30: $Vn,
|
|
1101
|
+
31: $Vo,
|
|
1102
|
+
32: $Vp,
|
|
1103
|
+
36: $Vq,
|
|
1104
|
+
37: $Vr,
|
|
1105
|
+
45: [2, 41],
|
|
1106
|
+
},
|
|
835
1107
|
{
|
|
836
|
-
6:
|
|
1108
|
+
6: 80,
|
|
837
1109
|
10: $V0,
|
|
838
1110
|
11: $V1,
|
|
839
1111
|
12: $V2,
|
|
@@ -841,13 +1113,13 @@ var parser = (function () {
|
|
|
841
1113
|
14: $V4,
|
|
842
1114
|
16: $V5,
|
|
843
1115
|
23: $V6,
|
|
844
|
-
|
|
845
|
-
33: $
|
|
1116
|
+
26: 11,
|
|
1117
|
+
33: $V7,
|
|
1118
|
+
34: $V8,
|
|
1119
|
+
44: $V9,
|
|
846
1120
|
},
|
|
847
|
-
{ 9: $Vy, 34: [1, 63] },
|
|
848
|
-
o($Vr, [2, 30]),
|
|
849
1121
|
{
|
|
850
|
-
6:
|
|
1122
|
+
6: 81,
|
|
851
1123
|
10: $V0,
|
|
852
1124
|
11: $V1,
|
|
853
1125
|
12: $V2,
|
|
@@ -855,50 +1127,51 @@ var parser = (function () {
|
|
|
855
1127
|
14: $V4,
|
|
856
1128
|
16: $V5,
|
|
857
1129
|
23: $V6,
|
|
858
|
-
|
|
859
|
-
33: $
|
|
1130
|
+
26: 11,
|
|
1131
|
+
33: $V7,
|
|
1132
|
+
34: $V8,
|
|
1133
|
+
44: $V9,
|
|
860
1134
|
},
|
|
861
|
-
o(
|
|
862
|
-
15: $
|
|
863
|
-
16: $
|
|
864
|
-
17: $
|
|
865
|
-
18: $
|
|
866
|
-
19: $
|
|
867
|
-
20: $
|
|
868
|
-
21: $
|
|
869
|
-
22: $
|
|
870
|
-
24: $
|
|
871
|
-
26: $Vj,
|
|
1135
|
+
o($VA, [2, 38], {
|
|
1136
|
+
15: $Vb,
|
|
1137
|
+
16: $Vc,
|
|
1138
|
+
17: $Vd,
|
|
1139
|
+
18: $Ve,
|
|
1140
|
+
19: $Vf,
|
|
1141
|
+
20: $Vg,
|
|
1142
|
+
21: $Vh,
|
|
1143
|
+
22: $Vi,
|
|
1144
|
+
24: $Vj,
|
|
872
1145
|
27: $Vk,
|
|
873
1146
|
28: $Vl,
|
|
874
1147
|
29: $Vm,
|
|
875
1148
|
30: $Vn,
|
|
876
1149
|
31: $Vo,
|
|
877
|
-
|
|
1150
|
+
32: $Vp,
|
|
878
1151
|
36: $Vq,
|
|
1152
|
+
37: $Vr,
|
|
879
1153
|
}),
|
|
880
|
-
o($
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
24: $Vi,
|
|
891
|
-
26: $Vj,
|
|
1154
|
+
o($VA, [2, 39], {
|
|
1155
|
+
15: $Vb,
|
|
1156
|
+
16: $Vc,
|
|
1157
|
+
17: $Vd,
|
|
1158
|
+
18: $Ve,
|
|
1159
|
+
19: $Vf,
|
|
1160
|
+
20: $Vg,
|
|
1161
|
+
21: $Vh,
|
|
1162
|
+
22: $Vi,
|
|
1163
|
+
24: $Vj,
|
|
892
1164
|
27: $Vk,
|
|
893
1165
|
28: $Vl,
|
|
894
1166
|
29: $Vm,
|
|
895
1167
|
30: $Vn,
|
|
896
1168
|
31: $Vo,
|
|
897
|
-
|
|
1169
|
+
32: $Vp,
|
|
898
1170
|
36: $Vq,
|
|
1171
|
+
37: $Vr,
|
|
899
1172
|
}),
|
|
900
1173
|
],
|
|
901
|
-
defaultActions: { 2: [2, 1],
|
|
1174
|
+
defaultActions: { 2: [2, 1], 16: [2, 2] },
|
|
902
1175
|
parseError: function parseError(str, hash) {
|
|
903
1176
|
if (hash.recoverable) {
|
|
904
1177
|
this.trace(str);
|
|
@@ -1470,28 +1743,28 @@ var parser = (function () {
|
|
|
1470
1743
|
return 13;
|
|
1471
1744
|
break;
|
|
1472
1745
|
case 4:
|
|
1473
|
-
return
|
|
1746
|
+
return 33;
|
|
1474
1747
|
break;
|
|
1475
1748
|
case 5:
|
|
1476
1749
|
return 14;
|
|
1477
1750
|
break;
|
|
1478
1751
|
case 6:
|
|
1479
|
-
return
|
|
1752
|
+
return 28;
|
|
1480
1753
|
break;
|
|
1481
1754
|
case 7:
|
|
1482
|
-
return
|
|
1755
|
+
return 32;
|
|
1483
1756
|
break;
|
|
1484
1757
|
case 8:
|
|
1485
|
-
return
|
|
1758
|
+
return 30;
|
|
1486
1759
|
break;
|
|
1487
1760
|
case 9:
|
|
1488
|
-
return
|
|
1761
|
+
return 27;
|
|
1489
1762
|
break;
|
|
1490
1763
|
case 10:
|
|
1491
|
-
return
|
|
1764
|
+
return 31;
|
|
1492
1765
|
break;
|
|
1493
1766
|
case 11:
|
|
1494
|
-
return
|
|
1767
|
+
return 29;
|
|
1495
1768
|
break;
|
|
1496
1769
|
case 12:
|
|
1497
1770
|
return 23;
|
|
@@ -1503,60 +1776,75 @@ var parser = (function () {
|
|
|
1503
1776
|
return 21;
|
|
1504
1777
|
break;
|
|
1505
1778
|
case 15:
|
|
1506
|
-
return
|
|
1779
|
+
return 37;
|
|
1507
1780
|
break;
|
|
1508
1781
|
case 16:
|
|
1509
|
-
return
|
|
1782
|
+
return 36;
|
|
1510
1783
|
break;
|
|
1511
1784
|
case 17:
|
|
1512
|
-
return
|
|
1785
|
+
return 44;
|
|
1513
1786
|
break;
|
|
1514
1787
|
case 18:
|
|
1515
|
-
return
|
|
1788
|
+
return 40;
|
|
1516
1789
|
break;
|
|
1517
1790
|
case 19:
|
|
1518
|
-
return
|
|
1791
|
+
return 41;
|
|
1519
1792
|
break;
|
|
1520
1793
|
case 20:
|
|
1521
|
-
return
|
|
1794
|
+
return 43;
|
|
1522
1795
|
break;
|
|
1523
1796
|
case 21:
|
|
1524
|
-
return
|
|
1797
|
+
return 45;
|
|
1525
1798
|
break;
|
|
1526
1799
|
case 22:
|
|
1527
|
-
return
|
|
1800
|
+
return 17;
|
|
1528
1801
|
break;
|
|
1529
1802
|
case 23:
|
|
1530
|
-
return
|
|
1803
|
+
return 18;
|
|
1531
1804
|
break;
|
|
1532
1805
|
case 24:
|
|
1533
|
-
return
|
|
1806
|
+
return 16;
|
|
1534
1807
|
break;
|
|
1535
1808
|
case 25:
|
|
1536
|
-
return
|
|
1809
|
+
return 15;
|
|
1537
1810
|
break;
|
|
1538
1811
|
case 26:
|
|
1539
|
-
return
|
|
1812
|
+
return 19;
|
|
1540
1813
|
break;
|
|
1541
1814
|
case 27:
|
|
1542
|
-
return
|
|
1815
|
+
return 20;
|
|
1543
1816
|
break;
|
|
1544
1817
|
case 28:
|
|
1545
|
-
return
|
|
1818
|
+
return 34;
|
|
1546
1819
|
break;
|
|
1547
1820
|
case 29:
|
|
1548
|
-
return
|
|
1821
|
+
return 35;
|
|
1549
1822
|
break;
|
|
1550
1823
|
case 30:
|
|
1551
|
-
return
|
|
1824
|
+
return '[';
|
|
1552
1825
|
break;
|
|
1553
1826
|
case 31:
|
|
1554
|
-
return
|
|
1827
|
+
return ']';
|
|
1555
1828
|
break;
|
|
1556
1829
|
case 32:
|
|
1557
|
-
return
|
|
1830
|
+
return 9;
|
|
1558
1831
|
break;
|
|
1559
1832
|
case 33:
|
|
1833
|
+
return 24;
|
|
1834
|
+
break;
|
|
1835
|
+
case 34:
|
|
1836
|
+
return 25;
|
|
1837
|
+
break;
|
|
1838
|
+
case 35:
|
|
1839
|
+
return 10;
|
|
1840
|
+
break;
|
|
1841
|
+
case 36:
|
|
1842
|
+
return 11;
|
|
1843
|
+
break;
|
|
1844
|
+
case 37:
|
|
1845
|
+
return 4;
|
|
1846
|
+
break;
|
|
1847
|
+
case 38:
|
|
1560
1848
|
return 'INVALID';
|
|
1561
1849
|
break;
|
|
1562
1850
|
}
|
|
@@ -1579,6 +1867,11 @@ var parser = (function () {
|
|
|
1579
1867
|
/^(?:\||OR\b)/,
|
|
1580
1868
|
/^(?:WHERE\b)/,
|
|
1581
1869
|
/^(?:IN\b)/,
|
|
1870
|
+
/^(?:CASE\b)/,
|
|
1871
|
+
/^(?:WHEN\b)/,
|
|
1872
|
+
/^(?:THEN\b)/,
|
|
1873
|
+
/^(?:ELSE\b)/,
|
|
1874
|
+
/^(?:END\b)/,
|
|
1582
1875
|
/^(?:\*)/,
|
|
1583
1876
|
/^(?:\/)/,
|
|
1584
1877
|
/^(?:-)/,
|
|
@@ -1600,40 +1893,9 @@ var parser = (function () {
|
|
|
1600
1893
|
conditions: {
|
|
1601
1894
|
INITIAL: {
|
|
1602
1895
|
rules: [
|
|
1603
|
-
0,
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
3,
|
|
1607
|
-
4,
|
|
1608
|
-
5,
|
|
1609
|
-
6,
|
|
1610
|
-
7,
|
|
1611
|
-
8,
|
|
1612
|
-
9,
|
|
1613
|
-
10,
|
|
1614
|
-
11,
|
|
1615
|
-
12,
|
|
1616
|
-
13,
|
|
1617
|
-
14,
|
|
1618
|
-
15,
|
|
1619
|
-
16,
|
|
1620
|
-
17,
|
|
1621
|
-
18,
|
|
1622
|
-
19,
|
|
1623
|
-
20,
|
|
1624
|
-
21,
|
|
1625
|
-
22,
|
|
1626
|
-
23,
|
|
1627
|
-
24,
|
|
1628
|
-
25,
|
|
1629
|
-
26,
|
|
1630
|
-
27,
|
|
1631
|
-
28,
|
|
1632
|
-
29,
|
|
1633
|
-
30,
|
|
1634
|
-
31,
|
|
1635
|
-
32,
|
|
1636
|
-
33,
|
|
1896
|
+
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
|
|
1897
|
+
19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
|
|
1898
|
+
36, 37, 38,
|
|
1637
1899
|
],
|
|
1638
1900
|
inclusive: true,
|
|
1639
1901
|
},
|