@adaptabletools/adaptable 13.1.1 → 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.
Files changed (382) hide show
  1. package/README.md +1 -1
  2. package/base.css +7 -2
  3. package/base.css.map +1 -1
  4. package/bundle.cjs.js +180 -177
  5. package/index.css +11 -2
  6. package/index.css.map +1 -1
  7. package/package.json +2 -2
  8. package/publishTimestamp.d.ts +1 -1
  9. package/publishTimestamp.js +1 -1
  10. package/src/AdaptableInterfaces/IAdaptable.d.ts +4 -1
  11. package/src/AdaptableOptions/ActionOptions.d.ts +4 -1
  12. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +1 -9
  13. package/src/AdaptableOptions/AlertOptions.d.ts +6 -1
  14. package/src/AdaptableOptions/ChartingOptions.d.ts +1 -1
  15. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
  16. package/src/AdaptableOptions/ExportOptions.d.ts +1 -1
  17. package/src/AdaptableOptions/GeneralOptions.d.ts +8 -3
  18. package/src/AdaptableOptions/MasterDetailPluginOptions.d.ts +6 -4
  19. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +1 -1
  20. package/src/Api/ActionApi.d.ts +14 -3
  21. package/src/Api/AdaptableApi.d.ts +0 -6
  22. package/src/Api/AlertApi.d.ts +127 -92
  23. package/src/Api/BulkUpdateApi.d.ts +9 -2
  24. package/src/Api/CalculatedColumnApi.d.ts +26 -21
  25. package/src/Api/CellSummaryApi.d.ts +15 -8
  26. package/src/Api/ChartingApi.d.ts +9 -2
  27. package/src/Api/ColumnApi.d.ts +153 -115
  28. package/src/Api/ConfigApi.d.ts +18 -18
  29. package/src/Api/CustomSortApi.d.ts +36 -7
  30. package/src/Api/DashboardApi.d.ts +12 -5
  31. package/src/Api/DataChangeHistoryApi.d.ts +8 -1
  32. package/src/Api/DataSetApi.d.ts +13 -3
  33. package/src/Api/EventApi.d.ts +2 -2
  34. package/src/Api/ExportApi.d.ts +30 -13
  35. package/src/Api/FilterApi.d.ts +74 -62
  36. package/src/Api/FlashingCellApi.d.ts +25 -9
  37. package/src/Api/FormatColumnApi.d.ts +76 -95
  38. package/src/Api/FreeTextColumnApi.d.ts +53 -21
  39. package/src/Api/GridApi.d.ts +57 -22
  40. package/src/Api/Implementation/ActionApiImpl.d.ts +9 -3
  41. package/src/Api/Implementation/ActionApiImpl.js +23 -11
  42. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
  43. package/src/Api/Implementation/AdaptableApiImpl.js +5 -2
  44. package/src/Api/Implementation/AlertApiImpl.d.ts +57 -28
  45. package/src/Api/Implementation/AlertApiImpl.js +179 -197
  46. package/src/Api/Implementation/ApiBase.d.ts +43 -2
  47. package/src/Api/Implementation/ApiBase.js +129 -5
  48. package/src/Api/Implementation/ApplicationApiImpl.d.ts +1 -1
  49. package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +1 -0
  50. package/src/Api/Implementation/BulkUpdateApiImpl.js +4 -1
  51. package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +7 -2
  52. package/src/Api/Implementation/CalculatedColumnApiImpl.js +28 -37
  53. package/src/Api/Implementation/CellSummaryApiImpl.d.ts +1 -0
  54. package/src/Api/Implementation/CellSummaryApiImpl.js +6 -1
  55. package/src/Api/Implementation/ChartingApiImpl.d.ts +2 -2
  56. package/src/Api/Implementation/ChartingApiImpl.js +10 -4
  57. package/src/Api/Implementation/ColumnApiImpl.d.ts +22 -6
  58. package/src/Api/Implementation/ColumnApiImpl.js +184 -195
  59. package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
  60. package/src/Api/Implementation/ConfigApiImpl.js +1 -1
  61. package/src/Api/Implementation/CustomSortApiImpl.d.ts +16 -1
  62. package/src/Api/Implementation/CustomSortApiImpl.js +33 -7
  63. package/src/Api/Implementation/DashboardApiImpl.d.ts +6 -1
  64. package/src/Api/Implementation/DashboardApiImpl.js +11 -12
  65. package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +1 -0
  66. package/src/Api/Implementation/DataChangeHistoryApiImpl.js +5 -0
  67. package/src/Api/Implementation/DataSetApiImpl.d.ts +6 -0
  68. package/src/Api/Implementation/DataSetApiImpl.js +17 -8
  69. package/src/Api/Implementation/EntitlementApiImpl.d.ts +1 -1
  70. package/src/Api/Implementation/ExportApiImpl.d.ts +9 -1
  71. package/src/Api/Implementation/ExportApiImpl.js +34 -68
  72. package/src/Api/Implementation/FilterApiImpl.d.ts +10 -1
  73. package/src/Api/Implementation/FilterApiImpl.js +61 -157
  74. package/src/Api/Implementation/FlashingCellApiImpl.d.ts +8 -0
  75. package/src/Api/Implementation/FlashingCellApiImpl.js +23 -26
  76. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +20 -15
  77. package/src/Api/Implementation/FormatColumnApiImpl.js +62 -153
  78. package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +13 -5
  79. package/src/Api/Implementation/FreeTextColumnApiImpl.js +42 -27
  80. package/src/Api/Implementation/GridApiImpl.d.ts +15 -1
  81. package/src/Api/Implementation/GridApiImpl.js +117 -61
  82. package/src/Api/Implementation/LayoutApiImpl.d.ts +8 -7
  83. package/src/Api/Implementation/LayoutApiImpl.js +29 -112
  84. package/src/Api/Implementation/PluginsApiImpl.d.ts +1 -1
  85. package/src/Api/Implementation/PlusMinusApiImpl.d.ts +2 -1
  86. package/src/Api/Implementation/PlusMinusApiImpl.js +5 -0
  87. package/src/Api/Implementation/PredicateApiImpl.d.ts +8 -5
  88. package/src/Api/Implementation/PredicateApiImpl.js +33 -98
  89. package/src/Api/Implementation/QueryApiImpl.d.ts +7 -2
  90. package/src/Api/Implementation/QueryApiImpl.js +22 -44
  91. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +4 -0
  92. package/src/Api/Implementation/QueryLanguageApiImpl.js +5 -0
  93. package/src/Api/Implementation/QuickSearchApiImpl.d.ts +1 -0
  94. package/src/Api/Implementation/QuickSearchApiImpl.js +5 -0
  95. package/src/Api/Implementation/ScheduleApiImpl.d.ts +27 -0
  96. package/src/Api/Implementation/ScheduleApiImpl.js +86 -17
  97. package/src/Api/Implementation/ScopeApiImpl.js +9 -7
  98. package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +2 -0
  99. package/src/Api/Implementation/SettingsPanelApiImpl.js +9 -0
  100. package/src/Api/Implementation/ShortcutApiImpl.d.ts +8 -1
  101. package/src/Api/Implementation/ShortcutApiImpl.js +25 -4
  102. package/src/Api/Implementation/SmartEditApiImpl.d.ts +1 -0
  103. package/src/Api/Implementation/SmartEditApiImpl.js +5 -0
  104. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +14 -11
  105. package/src/Api/Implementation/StyledColumnApiImpl.js +40 -185
  106. package/src/Api/Implementation/SystemStatusApiImpl.d.ts +6 -1
  107. package/src/Api/Implementation/SystemStatusApiImpl.js +19 -12
  108. package/src/Api/Implementation/TeamSharingApiImpl.d.ts +6 -5
  109. package/src/Api/Implementation/TeamSharingApiImpl.js +15 -25
  110. package/src/Api/Implementation/ThemeApiImpl.d.ts +5 -1
  111. package/src/Api/Implementation/ThemeApiImpl.js +23 -4
  112. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +2 -0
  113. package/src/Api/Implementation/UserInterfaceApiImpl.js +13 -4
  114. package/src/Api/Internal/ActionInternalApi.d.ts +23 -0
  115. package/src/Api/Internal/ActionInternalApi.js +198 -0
  116. package/src/Api/{Implementation/InternalApiImpl.d.ts → Internal/AdaptableInternalApi.d.ts} +7 -57
  117. package/src/Api/{Implementation/InternalApiImpl.js → Internal/AdaptableInternalApi.js} +28 -306
  118. package/src/Api/Internal/AlertInternalApi.d.ts +148 -0
  119. package/src/Api/Internal/AlertInternalApi.js +484 -0
  120. package/src/Api/Internal/CalculatedColumnInternalApi.d.ts +24 -0
  121. package/src/Api/Internal/CalculatedColumnInternalApi.js +57 -0
  122. package/src/Api/Internal/ColumnInternalApi.d.ts +33 -0
  123. package/src/Api/Internal/ColumnInternalApi.js +67 -0
  124. package/src/Api/Internal/CustomSortInternalApi.d.ts +6 -0
  125. package/src/Api/Internal/CustomSortInternalApi.js +11 -0
  126. package/src/Api/Internal/DashboardInternalApi.d.ts +8 -0
  127. package/src/Api/Internal/DashboardInternalApi.js +26 -0
  128. package/src/Api/Internal/DataSetInternalApi.d.ts +9 -0
  129. package/src/Api/Internal/DataSetInternalApi.js +20 -0
  130. package/src/Api/Internal/ExportInternalApi.d.ts +11 -0
  131. package/src/Api/Internal/ExportInternalApi.js +73 -0
  132. package/src/Api/Internal/FilterInternalApi.d.ts +58 -0
  133. package/src/Api/Internal/FilterInternalApi.js +194 -0
  134. package/src/Api/Internal/FlashingCellInternalApi.d.ts +12 -0
  135. package/src/Api/Internal/FlashingCellInternalApi.js +56 -0
  136. package/src/Api/Internal/FormatColumnInternalApi.d.ts +109 -0
  137. package/src/Api/Internal/FormatColumnInternalApi.js +225 -0
  138. package/src/Api/Internal/FreeTextColumnInternalApi.d.ts +15 -0
  139. package/src/Api/Internal/FreeTextColumnInternalApi.js +44 -0
  140. package/src/Api/Internal/GridInternalApi.d.ts +82 -0
  141. package/src/Api/Internal/GridInternalApi.js +252 -0
  142. package/src/Api/Internal/LayoutInternalApi.d.ts +48 -0
  143. package/src/Api/Internal/LayoutInternalApi.js +163 -0
  144. package/src/Api/Internal/PredicateInternalApi.d.ts +37 -0
  145. package/src/Api/Internal/PredicateInternalApi.js +140 -0
  146. package/src/Api/Internal/QueryInternalApi.d.ts +17 -0
  147. package/src/Api/Internal/QueryInternalApi.js +57 -0
  148. package/src/Api/Internal/QueryLanguageInternalApi.d.ts +11 -0
  149. package/src/Api/Internal/QueryLanguageInternalApi.js +34 -0
  150. package/src/Api/Internal/StyledColumnInternalApi.d.ts +59 -0
  151. package/src/Api/Internal/StyledColumnInternalApi.js +249 -0
  152. package/src/Api/Internal/SystemStatusInternalApi.d.ts +11 -0
  153. package/src/Api/Internal/SystemStatusInternalApi.js +27 -0
  154. package/src/Api/Internal/TeamSharingInternalApi.d.ts +20 -0
  155. package/src/Api/Internal/TeamSharingInternalApi.js +66 -0
  156. package/src/Api/LayoutApi.d.ts +28 -44
  157. package/src/Api/PlusMinusApi.d.ts +9 -2
  158. package/src/Api/PredicateApi.d.ts +26 -10
  159. package/src/Api/QueryApi.d.ts +23 -18
  160. package/src/Api/QuickSearchApi.d.ts +5 -1
  161. package/src/Api/ScheduleApi.d.ts +97 -16
  162. package/src/Api/SettingsPanelApi.d.ts +12 -1
  163. package/src/Api/ShortcutApi.d.ts +28 -7
  164. package/src/Api/SmartEditApi.d.ts +8 -1
  165. package/src/Api/StyledColumnApi.d.ts +34 -54
  166. package/src/Api/SystemStatusApi.d.ts +12 -6
  167. package/src/Api/TeamSharingApi.d.ts +4 -17
  168. package/src/Api/ThemeApi.d.ts +25 -6
  169. package/src/Api/UserInterfaceApi.d.ts +13 -2
  170. package/src/PredefinedConfig/AlertState.d.ts +1 -1
  171. package/src/PredefinedConfig/Common/AdaptableColumn.js +4 -0
  172. package/src/PredefinedConfig/Common/AdaptableForm.d.ts +0 -5
  173. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +10 -0
  174. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  175. package/src/PredefinedConfig/Common/AdaptableObject.d.ts +22 -1
  176. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +3 -0
  177. package/src/PredefinedConfig/Common/AdaptablePredicate.js +5 -3
  178. package/src/PredefinedConfig/Common/FDC3Context.d.ts +0 -5
  179. package/src/PredefinedConfig/FlashingCellState.d.ts +1 -1
  180. package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
  181. package/src/PredefinedConfig/StyledColumnState.d.ts +9 -0
  182. package/src/PredefinedConfig/SystemState.d.ts +5 -0
  183. package/src/Redux/ActionsReducers/GridRedux.d.ts +18 -0
  184. package/src/Redux/ActionsReducers/GridRedux.js +65 -2
  185. package/src/Redux/ActionsReducers/SystemRedux.d.ts +5 -0
  186. package/src/Redux/ActionsReducers/SystemRedux.js +17 -3
  187. package/src/Redux/Store/AdaptableStore.js +34 -26
  188. package/src/Strategy/AdaptableModuleBase.js +6 -6
  189. package/src/Strategy/AlertModule.d.ts +1 -6
  190. package/src/Strategy/AlertModule.js +37 -92
  191. package/src/Strategy/BulkUpdateModule.js +3 -3
  192. package/src/Strategy/CalculatedColumnModule.js +6 -6
  193. package/src/Strategy/ChartingModule.js +1 -1
  194. package/src/Strategy/CustomSortModule.js +4 -4
  195. package/src/Strategy/DashboardModule.js +2 -2
  196. package/src/Strategy/DataSetModule.js +1 -1
  197. package/src/Strategy/ExportModule.js +4 -4
  198. package/src/Strategy/FilterModule.js +7 -6
  199. package/src/Strategy/FlashingCellModule.d.ts +2 -0
  200. package/src/Strategy/FlashingCellModule.js +21 -5
  201. package/src/Strategy/FormatColumnModule.d.ts +1 -0
  202. package/src/Strategy/FormatColumnModule.js +29 -3
  203. package/src/Strategy/FreeTextColumnModule.js +3 -3
  204. package/src/Strategy/LayoutModule.js +18 -18
  205. package/src/Strategy/PlusMinusModule.js +2 -2
  206. package/src/Strategy/QueryModule.js +3 -3
  207. package/src/Strategy/ScheduleModule.js +10 -12
  208. package/src/Strategy/ShortcutModule.js +5 -5
  209. package/src/Strategy/SmartEditModule.js +3 -3
  210. package/src/Strategy/StyledColumnModule.js +9 -7
  211. package/src/Strategy/TeamSharingModule.js +3 -3
  212. package/src/Strategy/ThemeModule.js +1 -1
  213. package/src/Strategy/Utilities/CustomSort/getCustomSortColumnViewItems.js +1 -1
  214. package/src/Strategy/Utilities/Layout/getLayoutFilterViewItems.js +1 -1
  215. package/src/Strategy/Utilities/Layout/getLayoutSortViewItems.js +1 -1
  216. package/src/Strategy/Utilities/getRuleViewItems.d.ts +1 -1
  217. package/src/Strategy/Utilities/getRuleViewItems.js +4 -3
  218. package/src/Strategy/Utilities/getScopeViewItems.js +1 -1
  219. package/src/Strategy/Utilities/updateSingleToMultiplePredicates.d.ts +5 -0
  220. package/src/Strategy/Utilities/updateSingleToMultiplePredicates.js +12 -0
  221. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +4 -3
  222. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +8 -0
  223. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +11 -0
  224. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +73 -78
  225. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +3 -1
  226. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +9 -5
  227. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +12 -3
  228. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
  229. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +133 -28
  230. package/src/Utilities/Extensions/TypeExtensions.d.ts +1 -0
  231. package/src/Utilities/Helpers/AdaptableHelper.js +1 -1
  232. package/src/Utilities/Helpers/FormatHelper.js +13 -10
  233. package/src/Utilities/ObjectFactory.js +8 -6
  234. package/src/Utilities/Services/CalculatedColumnExpressionService.js +1 -1
  235. package/src/Utilities/Services/ChartingService.js +2 -2
  236. package/src/Utilities/Services/DataService.js +1 -1
  237. package/src/Utilities/Services/Interface/IEntitlementService.d.ts +2 -1
  238. package/src/Utilities/Services/Interface/IRowEditService.d.ts +0 -5
  239. package/src/Utilities/Services/ModuleService.js +1 -1
  240. package/src/Utilities/Services/QueryLanguageService.js +2 -2
  241. package/src/Utilities/Services/ReportService.js +3 -3
  242. package/src/Utilities/Services/RowEditService.d.ts +0 -19
  243. package/src/Utilities/Services/RowEditService.js +4 -161
  244. package/src/Utilities/Services/TeamSharingService.js +3 -3
  245. package/src/Utilities/Services/ValidationService.js +9 -7
  246. package/src/Utilities/logDeprecation.d.ts +3 -0
  247. package/src/Utilities/logDeprecation.js +30 -0
  248. package/src/View/AdaptablePopover/index.d.ts +2 -0
  249. package/src/View/AdaptablePopover/index.js +6 -2
  250. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.js +4 -2
  251. package/src/View/Alert/AlertEntityRow.js +1 -1
  252. package/src/View/Alert/AlertStatusSubPanel.js +1 -1
  253. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +2 -2
  254. package/src/View/Alert/Wizard/AlertButtonsEditor.js +2 -2
  255. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +3 -3
  256. package/src/View/Alert/Wizard/AlertWizard.js +3 -3
  257. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +4 -2
  258. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +2 -2
  259. package/src/View/Alert/Wizard/isValidAlertRules.js +4 -3
  260. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +3 -3
  261. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.d.ts +1 -0
  262. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +25 -4
  263. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  264. package/src/View/Components/Charting/ChartingViewPanel.d.ts +2 -2
  265. package/src/View/Components/Charting/ChartingViewPanel.js +17 -3
  266. package/src/View/Components/Charting/ChartingWizard/ChartingWizard.js +2 -2
  267. package/src/View/Components/Charting/ChartingWizard/SettingsSection.js +1 -1
  268. package/src/View/Components/Charting/DeleteChartButton.d.ts +7 -0
  269. package/src/View/Components/Charting/DeleteChartButton.js +12 -0
  270. package/src/View/Components/Charting/EditChartButton.d.ts +8 -0
  271. package/src/View/Components/Charting/EditChartButton.js +21 -0
  272. package/src/View/Components/EntityRulesEditor/PredicatesEditor.d.ts +16 -0
  273. package/src/View/Components/EntityRulesEditor/PredicatesEditor.js +86 -0
  274. package/src/View/Components/EntityRulesEditor/Utilities.d.ts +6 -0
  275. package/src/View/Components/EntityRulesEditor/Utilities.js +21 -0
  276. package/src/View/Components/EntityRulesEditor/index.d.ts +4 -9
  277. package/src/View/Components/EntityRulesEditor/index.js +16 -90
  278. package/src/View/Components/ExpressionWizard.js +1 -1
  279. package/src/View/Components/ExternalRenderer.js +3 -1
  280. package/src/View/Components/FilterForm/FilterForm.js +3 -3
  281. package/src/View/Components/FilterForm/QuickFilterForm.js +5 -5
  282. package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.js +5 -6
  283. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +1 -1
  284. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +2 -2
  285. package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
  286. package/src/View/Components/Popups/AdaptablePopupConfirmation.d.ts +2 -12
  287. package/src/View/Components/Popups/AdaptablePopupConfirmation.js +46 -39
  288. package/src/View/Components/PredicateEditor/PredicateEditor.js +5 -5
  289. package/src/View/Components/ScopeComponent.js +3 -3
  290. package/src/View/Components/Selectors/ColumnValueSelector.js +1 -1
  291. package/src/View/Components/StyleComponent.js +42 -14
  292. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +1 -1
  293. package/src/View/CustomSort/CustomSortSummary.js +1 -1
  294. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +2 -2
  295. package/src/View/CustomSort/Wizard/CustomSortSummaryWizard.js +1 -1
  296. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +1 -1
  297. package/src/View/Dashboard/Dashboard.js +1 -1
  298. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +1 -1
  299. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +10 -1
  300. package/src/View/DataSet/DataSetSelector.js +1 -1
  301. package/src/View/DataSet/DataSetStatusPanelPopover.js +1 -1
  302. package/src/View/DataSet/DataSetViewPanel.js +1 -1
  303. package/src/View/Export/ExportSelector.js +2 -2
  304. package/src/View/Export/ExportViewPanel.js +2 -2
  305. package/src/View/Export/ReportExportDropdown.js +1 -1
  306. package/src/View/Export/Wizard/ReportNameWizardSection.js +1 -1
  307. package/src/View/Export/Wizard/ReportRowsWizardSection.js +1 -1
  308. package/src/View/Filter/FilterSummary.js +1 -1
  309. package/src/View/Filter/FilterViewPanel.js +1 -1
  310. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +2 -2
  311. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +4 -2
  312. package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +4 -3
  313. package/src/View/FormatColumn/MoveFormatColumn.js +1 -1
  314. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +11 -5
  315. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +2 -2
  316. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +8 -6
  317. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +3 -4
  318. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +5 -19
  319. package/src/View/GridInfo/ColumnInfoComponent.js +1 -1
  320. package/src/View/GridInfo/GridInfoPopup.js +6 -6
  321. package/src/View/Layout/LayoutRadioSelector.js +1 -1
  322. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +1 -1
  323. package/src/View/Layout/LayoutViewPanel.js +1 -1
  324. package/src/View/Layout/PivotDetailsPopoup.js +1 -1
  325. package/src/View/Layout/SaveLayoutButton.js +1 -1
  326. package/src/View/Layout/Wizard/LayoutWizard.js +2 -2
  327. package/src/View/Layout/Wizard/sections/AggregationsSection.js +4 -4
  328. package/src/View/Layout/Wizard/sections/ColumnsSection.js +5 -5
  329. package/src/View/Layout/Wizard/sections/FilterSection.js +2 -2
  330. package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +2 -2
  331. package/src/View/Layout/Wizard/sections/RowGroupingSection.js +2 -2
  332. package/src/View/Layout/Wizard/sections/SortSection.js +1 -1
  333. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +1 -1
  334. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +2 -2
  335. package/src/View/Query/ExpandedQueryPopup.js +1 -1
  336. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +1 -1
  337. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +2 -2
  338. package/src/View/Shortcut/Wizard/ShortcutWizard.js +1 -1
  339. package/src/View/SmartEdit/SmartEditViewPanel.js +1 -1
  340. package/src/View/StatusBar/StatusBarPanel.js +1 -1
  341. package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.js +2 -2
  342. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +9 -0
  343. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +2 -2
  344. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarColumnComparisonPreview.d.ts +5 -0
  345. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarColumnComparisonPreview.js +26 -0
  346. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarRangesPreview.d.ts +5 -0
  347. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarRangesPreview.js +23 -0
  348. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarStylePreview.d.ts +8 -0
  349. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarStylePreview.js +25 -0
  350. package/src/View/StyledColumn/Wizard/{StyledColumnWizardStyleSection.d.ts → StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.d.ts} +2 -2
  351. package/src/View/StyledColumn/Wizard/{StyledColumnWizardStyleSection.js → StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.js} +21 -19
  352. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/index.d.ts +1 -0
  353. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/index.js +4 -0
  354. package/src/View/TeamSharing/SharedEntityDependencies.js +1 -1
  355. package/src/View/Theme/ThemeStatusPanelPopover.js +1 -1
  356. package/src/agGrid/ActionColumnRenderer.js +1 -1
  357. package/src/agGrid/Adaptable.d.ts +5 -3
  358. package/src/agGrid/Adaptable.js +106 -121
  359. package/src/agGrid/FilterWrapper.js +3 -3
  360. package/src/agGrid/FloatingFilterWrapper.js +3 -3
  361. package/src/agGrid/PercentBarRenderer.js +6 -6
  362. package/src/agGrid/agGridHelper.js +3 -3
  363. package/src/agGrid/agGridMenuHelper.js +3 -3
  364. package/src/agGrid/weightedAverage.js +2 -2
  365. package/src/components/ExpressionEditor/BaseEditorInput.js +92 -7
  366. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +5 -1
  367. package/src/components/OverlayTrigger/index.js +6 -2
  368. package/src/components/OverlayTrigger/utils.d.ts +1 -1
  369. package/src/components/OverlayTrigger/utils.js +4 -4
  370. package/src/components/icons/index.js +2 -0
  371. package/src/components/icons/open-in-new.d.ts +3 -0
  372. package/src/components/icons/open-in-new.js +7 -0
  373. package/src/env.js +1 -3
  374. package/src/metamodel/adaptable.metamodel.d.ts +30 -10
  375. package/src/metamodel/adaptable.metamodel.js +1 -1
  376. package/src/parser/src/parser.js +644 -382
  377. package/src/parser/src/types.d.ts +9 -0
  378. package/src/types.d.ts +3 -3
  379. package/version.d.ts +1 -1
  380. package/version.js +1 -1
  381. package/src/Api/InternalApi.d.ts +0 -155
  382. package/src/Api/InternalApi.js +0 -2
@@ -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, 12],
84
+ $V5 = [1, 13],
85
85
  $V6 = [1, 10],
86
- $V7 = [1, 11],
87
- $V8 = [1, 13],
88
- $V9 = [4, 7],
89
- $Va = [1, 16],
90
- $Vb = [1, 17],
91
- $Vc = [1, 18],
92
- $Vd = [1, 19],
93
- $Ve = [1, 20],
94
- $Vf = [1, 21],
95
- $Vg = [1, 22],
96
- $Vh = [1, 23],
97
- $Vi = [1, 24],
98
- $Vj = [1, 25],
99
- $Vk = [1, 26],
100
- $Vl = [1, 27],
101
- $Vm = [1, 28],
102
- $Vn = [1, 29],
103
- $Vo = [1, 30],
104
- $Vp = [1, 31],
105
- $Vq = [1, 32],
106
- $Vr = [
107
- 4,
108
- 7,
109
- 9,
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
- $Vs = [9, 34],
131
- $Vt = [2, 6],
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
- 7,
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 = [4, 7, 9, 21, 22, 24, 25, 34, 36],
157
- $Vx = [4, 7, 9, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36],
158
- $Vy = [1, 61];
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
- '=': 26,
188
- '!=': 27,
189
- '<': 28,
190
- '<=': 29,
191
- '>': 30,
192
- '>=': 31,
193
- FUNCTION: 32,
194
- '(': 33,
195
- ')': 34,
196
- IN: 35,
197
- WHERE: 36,
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
- 26: '=',
223
- 27: '!=',
224
- 28: '<',
225
- 29: '<=',
226
- 30: '>',
227
- 31: '>=',
228
- 32: 'FUNCTION',
229
- 33: '(',
230
- 34: ')',
231
- 35: 'IN',
232
- 36: 'WHERE',
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 33:
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
- this.$ = yy.node('EQ', [$$[$0 - 2], $$[$0]], this._$);
342
+ case 37:
343
+ case 41:
344
+ this.$ = $$[$0];
352
345
  break;
353
346
  case 25:
354
- this.$ = yy.node('NEQ', [$$[$0 - 2], $$[$0]], this._$);
347
+ this.$ = yy.node('EQ', [$$[$0 - 2], $$[$0]], this._$);
355
348
  break;
356
349
  case 26:
357
- this.$ = yy.node('LT', [$$[$0 - 2], $$[$0]], this._$);
350
+ this.$ = yy.node('NEQ', [$$[$0 - 2], $$[$0]], this._$);
358
351
  break;
359
352
  case 27:
360
- this.$ = yy.node('LTE', [$$[$0 - 2], $$[$0]], this._$);
353
+ this.$ = yy.node('LT', [$$[$0 - 2], $$[$0]], this._$);
361
354
  break;
362
355
  case 28:
363
- this.$ = yy.node('GT', [$$[$0 - 2], $$[$0]], this._$);
356
+ this.$ = yy.node('LTE', [$$[$0 - 2], $$[$0]], this._$);
364
357
  break;
365
358
  case 29:
366
- this.$ = yy.node('GTE', [$$[$0 - 2], $$[$0]], this._$);
359
+ this.$ = yy.node('GT', [$$[$0 - 2], $$[$0]], this._$);
367
360
  break;
368
361
  case 30:
369
- this.$ = yy.node($$[$0 - 3].toUpperCase(), $$[$0 - 1], this._$);
362
+ this.$ = yy.node('GTE', [$$[$0 - 2], $$[$0]], this._$);
370
363
  break;
371
364
  case 31:
372
- this.$ = -$$[$0];
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 34:
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
- 32: $V7,
396
- 33: $V8,
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, 14], 7: [1, 15] },
401
- o($V9, [2, 3], {
402
- 15: $Va,
403
- 16: $Vb,
404
- 17: $Vc,
405
- 18: $Vd,
406
- 19: $Ve,
407
- 20: $Vf,
408
- 21: $Vg,
409
- 22: $Vh,
410
- 24: $Vi,
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
- 35: $Vp,
432
+ 32: $Vp,
418
433
  36: $Vq,
434
+ 37: $Vr,
419
435
  }),
420
- o($Vr, [2, 9]),
421
- o($Vr, [2, 10]),
422
- o($Vr, [2, 11]),
423
- o($Vr, [2, 12]),
424
- o($Vr, [2, 13]),
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: 33,
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
- 32: $V7,
435
- 33: $V8,
450
+ 26: 11,
451
+ 33: $V7,
452
+ 34: $V8,
453
+ 44: $V9,
436
454
  },
437
- { 33: [1, 34] },
455
+ o($Vs, [2, 24]),
456
+ { 34: [1, 36] },
438
457
  {
439
- 6: 35,
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
- 32: $V7,
448
- 33: $V8,
480
+ 26: 11,
481
+ 33: $V7,
482
+ 34: $V8,
483
+ 44: $V9,
449
484
  },
450
485
  {
451
- 6: 36,
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
- 32: $V7,
460
- 33: $V8,
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($V9, [2, 4], {
464
- 6: 37,
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
- 32: $V7,
473
- 33: $V8,
512
+ 33: $V7,
513
+ 34: $V8,
514
+ 44: $V9,
474
515
  }),
475
516
  {
476
- 6: 38,
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
- 32: $V7,
485
- 33: $V8,
525
+ 26: 11,
526
+ 33: $V7,
527
+ 34: $V8,
528
+ 44: $V9,
486
529
  },
487
530
  {
488
- 6: 39,
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
- 32: $V7,
497
- 33: $V8,
539
+ 26: 11,
540
+ 33: $V7,
541
+ 34: $V8,
542
+ 44: $V9,
498
543
  },
499
544
  {
500
- 6: 40,
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
- 32: $V7,
509
- 33: $V8,
553
+ 26: 11,
554
+ 33: $V7,
555
+ 34: $V8,
556
+ 44: $V9,
510
557
  },
511
558
  {
512
- 6: 41,
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
- 32: $V7,
521
- 33: $V8,
567
+ 26: 11,
568
+ 33: $V7,
569
+ 34: $V8,
570
+ 44: $V9,
522
571
  },
523
572
  {
524
- 6: 42,
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
- 32: $V7,
533
- 33: $V8,
581
+ 26: 11,
582
+ 33: $V7,
583
+ 34: $V8,
584
+ 44: $V9,
534
585
  },
535
586
  {
536
- 6: 43,
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
- 32: $V7,
545
- 33: $V8,
595
+ 26: 11,
596
+ 33: $V7,
597
+ 34: $V8,
598
+ 44: $V9,
546
599
  },
547
600
  {
548
- 6: 44,
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
- 32: $V7,
557
- 33: $V8,
609
+ 26: 11,
610
+ 33: $V7,
611
+ 34: $V8,
612
+ 44: $V9,
558
613
  },
559
614
  {
560
- 6: 45,
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
- 32: $V7,
569
- 33: $V8,
623
+ 26: 11,
624
+ 33: $V7,
625
+ 34: $V8,
626
+ 44: $V9,
570
627
  },
571
628
  {
572
- 6: 46,
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
- 32: $V7,
581
- 33: $V8,
637
+ 26: 11,
638
+ 33: $V7,
639
+ 34: $V8,
640
+ 44: $V9,
582
641
  },
583
642
  {
584
- 6: 47,
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
- 32: $V7,
593
- 33: $V8,
651
+ 26: 11,
652
+ 33: $V7,
653
+ 34: $V8,
654
+ 44: $V9,
594
655
  },
595
656
  {
596
- 6: 48,
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
- 32: $V7,
605
- 33: $V8,
665
+ 26: 11,
666
+ 33: $V7,
667
+ 34: $V8,
668
+ 44: $V9,
606
669
  },
607
670
  {
608
- 6: 49,
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
- 32: $V7,
617
- 33: $V8,
679
+ 26: 11,
680
+ 33: $V7,
681
+ 34: $V8,
682
+ 44: $V9,
618
683
  },
619
684
  {
620
- 6: 50,
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
- 32: $V7,
629
- 33: $V8,
693
+ 26: 11,
694
+ 33: $V7,
695
+ 34: $V8,
696
+ 44: $V9,
630
697
  },
631
698
  {
632
- 6: 51,
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
- 32: $V7,
641
- 33: $V8,
707
+ 26: 11,
708
+ 33: $V7,
709
+ 34: $V8,
710
+ 44: $V9,
642
711
  },
643
712
  {
644
- 6: 52,
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
- 32: $V7,
653
- 33: $V8,
721
+ 26: 11,
722
+ 33: $V7,
723
+ 34: $V8,
724
+ 44: $V9,
654
725
  },
655
- { 33: [1, 53] },
726
+ { 34: [1, 57] },
656
727
  {
657
- 6: 54,
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
- 32: $V7,
666
- 33: $V8,
736
+ 26: 11,
737
+ 33: $V7,
738
+ 34: $V8,
739
+ 44: $V9,
667
740
  },
668
- o($Vr, [2, 22]),
669
- o($Vs, $Vt, {
670
- 8: 55,
671
- 6: 56,
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
- 32: $V7,
680
- 33: $V8,
753
+ 33: $V7,
754
+ 34: $V8,
755
+ 44: $V9,
681
756
  }),
682
- o($Vr, [2, 31]),
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: $Va,
685
- 16: $Vb,
686
- 17: $Vc,
687
- 18: $Vd,
688
- 19: $Ve,
689
- 20: $Vf,
690
- 21: $Vg,
691
- 22: $Vh,
692
- 24: $Vi,
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
- 34: [1, 57],
700
- 35: $Vp,
794
+ 32: $Vp,
701
795
  36: $Vq,
796
+ 37: $Vr,
797
+ 40: [2, 37],
702
798
  },
703
- o($V9, [2, 5], {
704
- 15: $Va,
705
- 16: $Vb,
706
- 17: $Vc,
707
- 18: $Vd,
708
- 19: $Ve,
709
- 20: $Vf,
710
- 21: $Vg,
711
- 22: $Vh,
712
- 24: $Vi,
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
- 35: $Vp,
814
+ 32: $Vp,
720
815
  36: $Vq,
816
+ 37: $Vr,
721
817
  }),
722
- o($Vu, [2, 14], { 17: $Vc, 18: $Vd, 19: $Ve, 20: $Vf }),
723
- o($Vu, [2, 15], { 17: $Vc, 18: $Vd, 19: $Ve, 20: $Vf }),
724
- o($Vv, [2, 16], { 20: $Vf }),
725
- o($Vv, [2, 17], { 20: $Vf }),
726
- o($Vv, [2, 18], { 20: $Vf }),
727
- o($Vr, [2, 19]),
728
- o($Vw, [2, 20], {
729
- 15: $Va,
730
- 16: $Vb,
731
- 17: $Vc,
732
- 18: $Vd,
733
- 19: $Ve,
734
- 20: $Vf,
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
- 35: $Vp,
836
+ 32: $Vp,
837
+ 36: $Vq,
742
838
  }),
743
- o($Vw, [2, 21], {
744
- 15: $Va,
745
- 16: $Vb,
746
- 17: $Vc,
747
- 18: $Vd,
748
- 19: $Ve,
749
- 20: $Vf,
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
- 35: $Vp,
851
+ 32: $Vp,
852
+ 36: $Vq,
757
853
  }),
758
854
  {
759
- 15: $Va,
760
- 16: $Vb,
761
- 17: $Vc,
762
- 18: $Vd,
763
- 19: $Ve,
764
- 20: $Vf,
765
- 21: $Vg,
766
- 22: $Vh,
767
- 24: $Vi,
768
- 25: [1, 58],
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
- 35: $Vp,
870
+ 32: $Vp,
776
871
  36: $Vq,
872
+ 37: $Vr,
777
873
  },
778
- o($Vx, [2, 24], { 15: $Va, 16: $Vb, 17: $Vc, 18: $Vd, 19: $Ve, 20: $Vf }),
779
- o($Vx, [2, 25], { 15: $Va, 16: $Vb, 17: $Vc, 18: $Vd, 19: $Ve, 20: $Vf }),
780
- o($Vx, [2, 26], { 15: $Va, 16: $Vb, 17: $Vc, 18: $Vd, 19: $Ve, 20: $Vf }),
781
- o($Vx, [2, 27], { 15: $Va, 16: $Vb, 17: $Vc, 18: $Vd, 19: $Ve, 20: $Vf }),
782
- o($Vx, [2, 28], { 15: $Va, 16: $Vb, 17: $Vc, 18: $Vd, 19: $Ve, 20: $Vf }),
783
- o($Vx, [2, 29], { 15: $Va, 16: $Vb, 17: $Vc, 18: $Vd, 19: $Ve, 20: $Vf }),
784
- o($Vs, $Vt, {
785
- 6: 56,
786
- 8: 59,
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
- 32: $V7,
795
- 33: $V8,
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([4, 7, 9, 24, 25, 34, 36], [2, 34], {
798
- 15: $Va,
799
- 16: $Vb,
800
- 17: $Vc,
801
- 18: $Vd,
802
- 19: $Ve,
803
- 20: $Vf,
804
- 21: $Vg,
805
- 22: $Vh,
806
- 26: $Vj,
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
- 35: $Vp,
1042
+ 32: $Vp,
1043
+ 36: $Vq,
1044
+ 37: $Vr,
813
1045
  }),
814
- { 9: $Vy, 34: [1, 60] },
815
- o($Vs, [2, 7], {
816
- 15: $Va,
817
- 16: $Vb,
818
- 17: $Vc,
819
- 18: $Vd,
820
- 19: $Ve,
821
- 20: $Vf,
822
- 21: $Vg,
823
- 22: $Vh,
824
- 24: $Vi,
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
- 35: $Vp,
1062
+ 32: $Vp,
832
1063
  36: $Vq,
1064
+ 37: $Vr,
833
1065
  }),
834
- o($Vr, [2, 33]),
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: 62,
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
- 32: $V7,
845
- 33: $V8,
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: 64,
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
- 32: $V7,
859
- 33: $V8,
1130
+ 26: 11,
1131
+ 33: $V7,
1132
+ 34: $V8,
1133
+ 44: $V9,
860
1134
  },
861
- o([4, 7, 9, 25, 34], [2, 23], {
862
- 15: $Va,
863
- 16: $Vb,
864
- 17: $Vc,
865
- 18: $Vd,
866
- 19: $Ve,
867
- 20: $Vf,
868
- 21: $Vg,
869
- 22: $Vh,
870
- 24: $Vi,
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
- 35: $Vp,
1150
+ 32: $Vp,
878
1151
  36: $Vq,
1152
+ 37: $Vr,
879
1153
  }),
880
- o($Vr, [2, 32]),
881
- o($Vs, [2, 8], {
882
- 15: $Va,
883
- 16: $Vb,
884
- 17: $Vc,
885
- 18: $Vd,
886
- 19: $Ve,
887
- 20: $Vf,
888
- 21: $Vg,
889
- 22: $Vh,
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
- 35: $Vp,
1169
+ 32: $Vp,
898
1170
  36: $Vq,
1171
+ 37: $Vr,
899
1172
  }),
900
1173
  ],
901
- defaultActions: { 2: [2, 1], 14: [2, 2] },
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 32;
1746
+ return 33;
1474
1747
  break;
1475
1748
  case 5:
1476
1749
  return 14;
1477
1750
  break;
1478
1751
  case 6:
1479
- return 27;
1752
+ return 28;
1480
1753
  break;
1481
1754
  case 7:
1482
- return 31;
1755
+ return 32;
1483
1756
  break;
1484
1757
  case 8:
1485
- return 29;
1758
+ return 30;
1486
1759
  break;
1487
1760
  case 9:
1488
- return 26;
1761
+ return 27;
1489
1762
  break;
1490
1763
  case 10:
1491
- return 30;
1764
+ return 31;
1492
1765
  break;
1493
1766
  case 11:
1494
- return 28;
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 36;
1779
+ return 37;
1507
1780
  break;
1508
1781
  case 16:
1509
- return 35;
1782
+ return 36;
1510
1783
  break;
1511
1784
  case 17:
1512
- return 17;
1785
+ return 44;
1513
1786
  break;
1514
1787
  case 18:
1515
- return 18;
1788
+ return 40;
1516
1789
  break;
1517
1790
  case 19:
1518
- return 16;
1791
+ return 41;
1519
1792
  break;
1520
1793
  case 20:
1521
- return 15;
1794
+ return 43;
1522
1795
  break;
1523
1796
  case 21:
1524
- return 19;
1797
+ return 45;
1525
1798
  break;
1526
1799
  case 22:
1527
- return 20;
1800
+ return 17;
1528
1801
  break;
1529
1802
  case 23:
1530
- return 33;
1803
+ return 18;
1531
1804
  break;
1532
1805
  case 24:
1533
- return 34;
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 9;
1815
+ return 20;
1543
1816
  break;
1544
1817
  case 28:
1545
- return 24;
1818
+ return 34;
1546
1819
  break;
1547
1820
  case 29:
1548
- return 25;
1821
+ return 35;
1549
1822
  break;
1550
1823
  case 30:
1551
- return 10;
1824
+ return '[';
1552
1825
  break;
1553
1826
  case 31:
1554
- return 11;
1827
+ return ']';
1555
1828
  break;
1556
1829
  case 32:
1557
- return 4;
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
- 1,
1605
- 2,
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
  },