@adaptabletools/adaptable 14.0.0-canary.0 → 14.0.0-canary.2

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 (708) hide show
  1. package/README.md +3 -3
  2. package/agGrid.d.ts +23 -1
  3. package/agGrid.js +23 -1
  4. package/base.css +1408 -2113
  5. package/base.css.map +1 -0
  6. package/bundle.cjs.js +215 -186
  7. package/index.css +1586 -1473
  8. package/index.css.map +1 -0
  9. package/package.json +10 -10
  10. package/publishTimestamp.d.ts +1 -1
  11. package/publishTimestamp.js +1 -1
  12. package/src/AdaptableInterfaces/IAdaptable.d.ts +20 -5
  13. package/src/AdaptableOptions/ActionOptions.d.ts +66 -32
  14. package/src/AdaptableOptions/AdaptableOptions.d.ts +6 -2
  15. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +10 -104
  16. package/src/AdaptableOptions/AlertOptions.d.ts +10 -1
  17. package/src/AdaptableOptions/ChartingOptions.d.ts +27 -0
  18. package/src/{Api/ConditionalStyleApi.js → AdaptableOptions/ChartingOptions.js} +0 -0
  19. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
  20. package/src/AdaptableOptions/EntitlementOptions.d.ts +14 -1
  21. package/src/AdaptableOptions/ExportOptions.d.ts +3 -3
  22. package/src/AdaptableOptions/ExpressionOptions.d.ts +204 -0
  23. package/src/{Api/InternalApi.js → AdaptableOptions/ExpressionOptions.js} +0 -0
  24. package/src/AdaptableOptions/FilterOptions.d.ts +8 -1
  25. package/src/AdaptableOptions/FinancePluginOptions.d.ts +21 -6
  26. package/src/AdaptableOptions/FinsemblePluginOptions.d.ts +32 -0
  27. package/src/{Strategy/Interface/IConditionalStyleModule.js → AdaptableOptions/FinsemblePluginOptions.js} +0 -0
  28. package/src/AdaptableOptions/GeneralOptions.d.ts +46 -5
  29. package/src/AdaptableOptions/LayoutOptions.d.ts +20 -2
  30. package/src/AdaptableOptions/MasterDetailPluginOptions.d.ts +6 -4
  31. package/src/AdaptableOptions/NotificationsOptions.d.ts +2 -1
  32. package/src/AdaptableOptions/PredicateOptions.d.ts +32 -0
  33. package/src/AdaptableOptions/PredicateOptions.js +2 -0
  34. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +4 -4
  35. package/src/Api/ActionApi.d.ts +14 -3
  36. package/src/Api/AdaptableApi.d.ts +21 -12
  37. package/src/Api/AlertApi.d.ts +139 -83
  38. package/src/Api/BulkUpdateApi.d.ts +9 -2
  39. package/src/Api/CalculatedColumnApi.d.ts +26 -21
  40. package/src/Api/CalendarApi.d.ts +29 -0
  41. package/src/Api/CalendarApi.js +2 -0
  42. package/src/Api/CellSummaryApi.d.ts +15 -8
  43. package/src/Api/ChartingApi.d.ts +45 -1
  44. package/src/Api/ColumnApi.d.ts +166 -110
  45. package/src/Api/ConfigApi.d.ts +19 -29
  46. package/src/Api/CustomSortApi.d.ts +36 -7
  47. package/src/Api/DashboardApi.d.ts +13 -6
  48. package/src/Api/DataChangeHistoryApi.d.ts +8 -1
  49. package/src/Api/DataSetApi.d.ts +13 -3
  50. package/src/Api/EntitlementApi.d.ts +31 -0
  51. package/src/Api/EntitlementApi.js +2 -0
  52. package/src/Api/EventApi.d.ts +15 -24
  53. package/src/Api/ExportApi.d.ts +35 -18
  54. package/src/Api/FilterApi.d.ts +75 -67
  55. package/src/Api/FinanceApi.d.ts +22 -9
  56. package/src/Api/FinsembleApi.d.ts +10 -0
  57. package/src/Api/FinsembleApi.js +2 -0
  58. package/src/Api/FlashingCellApi.d.ts +28 -12
  59. package/src/Api/FormatColumnApi.d.ts +96 -102
  60. package/src/Api/FreeTextColumnApi.d.ts +53 -21
  61. package/src/Api/GridApi.d.ts +59 -23
  62. package/src/Api/IPushPullApi.d.ts +1 -1
  63. package/src/Api/Implementation/ActionApiImpl.d.ts +9 -3
  64. package/src/Api/Implementation/ActionApiImpl.js +23 -11
  65. package/src/Api/Implementation/AdaptableApiImpl.d.ts +10 -5
  66. package/src/Api/Implementation/AdaptableApiImpl.js +12 -5
  67. package/src/Api/Implementation/AlertApiImpl.d.ts +59 -26
  68. package/src/Api/Implementation/AlertApiImpl.js +187 -171
  69. package/src/Api/Implementation/ApiBase.d.ts +50 -3
  70. package/src/Api/Implementation/ApiBase.js +144 -5
  71. package/src/Api/Implementation/ApplicationApiImpl.d.ts +1 -1
  72. package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +1 -0
  73. package/src/Api/Implementation/BulkUpdateApiImpl.js +4 -1
  74. package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +7 -2
  75. package/src/Api/Implementation/CalculatedColumnApiImpl.js +28 -37
  76. package/src/Api/Implementation/CalendarApiImpl.d.ts +9 -0
  77. package/src/Api/Implementation/CalendarApiImpl.js +59 -0
  78. package/src/Api/Implementation/CellSummaryApiImpl.d.ts +1 -0
  79. package/src/Api/Implementation/CellSummaryApiImpl.js +6 -1
  80. package/src/Api/Implementation/ChartingApiImpl.d.ts +11 -3
  81. package/src/Api/Implementation/ChartingApiImpl.js +41 -6
  82. package/src/Api/Implementation/ColumnApiImpl.d.ts +28 -8
  83. package/src/Api/Implementation/ColumnApiImpl.js +204 -194
  84. package/src/Api/Implementation/ConfigApiImpl.d.ts +3 -4
  85. package/src/Api/Implementation/ConfigApiImpl.js +4 -12
  86. package/src/Api/Implementation/CustomSortApiImpl.d.ts +16 -1
  87. package/src/Api/Implementation/CustomSortApiImpl.js +33 -7
  88. package/src/Api/Implementation/DashboardApiImpl.d.ts +6 -1
  89. package/src/Api/Implementation/DashboardApiImpl.js +13 -15
  90. package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +1 -0
  91. package/src/Api/Implementation/DataChangeHistoryApiImpl.js +5 -0
  92. package/src/Api/Implementation/DataSetApiImpl.d.ts +6 -0
  93. package/src/Api/Implementation/DataSetApiImpl.js +17 -8
  94. package/src/Api/Implementation/EntitlementApiImpl.d.ts +11 -0
  95. package/src/Api/Implementation/EntitlementApiImpl.js +25 -0
  96. package/src/Api/Implementation/ExportApiImpl.d.ts +12 -4
  97. package/src/Api/Implementation/ExportApiImpl.js +43 -77
  98. package/src/Api/Implementation/FilterApiImpl.d.ts +11 -4
  99. package/src/Api/Implementation/FilterApiImpl.js +62 -166
  100. package/src/Api/Implementation/FlashingCellApiImpl.d.ts +9 -1
  101. package/src/Api/Implementation/FlashingCellApiImpl.js +29 -26
  102. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +49 -26
  103. package/src/Api/Implementation/FormatColumnApiImpl.js +84 -259
  104. package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +13 -5
  105. package/src/Api/Implementation/FreeTextColumnApiImpl.js +42 -27
  106. package/src/Api/Implementation/GridApiImpl.d.ts +17 -2
  107. package/src/Api/Implementation/GridApiImpl.js +122 -62
  108. package/src/Api/Implementation/LayoutApiImpl.d.ts +15 -7
  109. package/src/Api/Implementation/LayoutApiImpl.js +44 -112
  110. package/src/Api/Implementation/OptionsApiImpl.d.ts +36 -0
  111. package/src/Api/Implementation/OptionsApiImpl.js +100 -0
  112. package/src/Api/Implementation/PluginsApiImpl.d.ts +3 -1
  113. package/src/Api/Implementation/PluginsApiImpl.js +6 -0
  114. package/src/Api/Implementation/PlusMinusApiImpl.d.ts +2 -1
  115. package/src/Api/Implementation/PlusMinusApiImpl.js +5 -0
  116. package/src/Api/Implementation/PredicateApiImpl.d.ts +13 -2
  117. package/src/Api/Implementation/PredicateApiImpl.js +41 -23
  118. package/src/Api/Implementation/QueryApiImpl.d.ts +7 -2
  119. package/src/Api/Implementation/QueryApiImpl.js +25 -52
  120. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +6 -3
  121. package/src/Api/Implementation/QueryLanguageApiImpl.js +14 -18
  122. package/src/Api/Implementation/QuickSearchApiImpl.d.ts +1 -0
  123. package/src/Api/Implementation/QuickSearchApiImpl.js +5 -0
  124. package/src/Api/Implementation/ScheduleApiImpl.d.ts +27 -0
  125. package/src/Api/Implementation/ScheduleApiImpl.js +86 -17
  126. package/src/Api/Implementation/ScopeApiImpl.d.ts +1 -1
  127. package/src/Api/Implementation/ScopeApiImpl.js +9 -7
  128. package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +2 -0
  129. package/src/Api/Implementation/SettingsPanelApiImpl.js +9 -0
  130. package/src/Api/Implementation/ShortcutApiImpl.d.ts +8 -1
  131. package/src/Api/Implementation/ShortcutApiImpl.js +25 -4
  132. package/src/Api/Implementation/SmartEditApiImpl.d.ts +1 -0
  133. package/src/Api/Implementation/SmartEditApiImpl.js +5 -0
  134. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +30 -0
  135. package/src/Api/Implementation/StyledColumnApiImpl.js +96 -0
  136. package/src/Api/Implementation/SystemStatusApiImpl.d.ts +6 -1
  137. package/src/Api/Implementation/SystemStatusApiImpl.js +20 -14
  138. package/src/Api/Implementation/TeamSharingApiImpl.d.ts +6 -5
  139. package/src/Api/Implementation/TeamSharingApiImpl.js +15 -25
  140. package/src/Api/Implementation/ThemeApiImpl.d.ts +5 -1
  141. package/src/Api/Implementation/ThemeApiImpl.js +23 -4
  142. package/src/Api/Implementation/ToolPanelApiImpl.d.ts +3 -1
  143. package/src/Api/Implementation/ToolPanelApiImpl.js +8 -0
  144. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +2 -0
  145. package/src/Api/Implementation/UserInterfaceApiImpl.js +13 -4
  146. package/src/Api/Internal/ActionInternalApi.d.ts +23 -0
  147. package/src/Api/Internal/ActionInternalApi.js +198 -0
  148. package/src/Api/{Implementation/InternalApiImpl.d.ts → Internal/AdaptableInternalApi.d.ts} +21 -57
  149. package/src/Api/Internal/AdaptableInternalApi.js +461 -0
  150. package/src/Api/Internal/AlertInternalApi.d.ts +148 -0
  151. package/src/Api/Internal/AlertInternalApi.js +484 -0
  152. package/src/Api/Internal/CalculatedColumnInternalApi.d.ts +24 -0
  153. package/src/Api/Internal/CalculatedColumnInternalApi.js +57 -0
  154. package/src/Api/Internal/ColumnInternalApi.d.ts +33 -0
  155. package/src/Api/Internal/ColumnInternalApi.js +67 -0
  156. package/src/Api/Internal/CustomSortInternalApi.d.ts +6 -0
  157. package/src/Api/Internal/CustomSortInternalApi.js +11 -0
  158. package/src/Api/Internal/DashboardInternalApi.d.ts +8 -0
  159. package/src/Api/Internal/DashboardInternalApi.js +26 -0
  160. package/src/Api/Internal/DataSetInternalApi.d.ts +9 -0
  161. package/src/Api/Internal/DataSetInternalApi.js +20 -0
  162. package/src/Api/Internal/ExportInternalApi.d.ts +11 -0
  163. package/src/Api/Internal/ExportInternalApi.js +73 -0
  164. package/src/Api/Internal/FilterInternalApi.d.ts +58 -0
  165. package/src/Api/Internal/FilterInternalApi.js +194 -0
  166. package/src/Api/Internal/FlashingCellInternalApi.d.ts +12 -0
  167. package/src/Api/Internal/FlashingCellInternalApi.js +56 -0
  168. package/src/Api/Internal/FormatColumnInternalApi.d.ts +109 -0
  169. package/src/Api/Internal/FormatColumnInternalApi.js +225 -0
  170. package/src/Api/Internal/FreeTextColumnInternalApi.d.ts +15 -0
  171. package/src/Api/Internal/FreeTextColumnInternalApi.js +44 -0
  172. package/src/Api/Internal/GridInternalApi.d.ts +82 -0
  173. package/src/Api/Internal/GridInternalApi.js +252 -0
  174. package/src/Api/Internal/LayoutInternalApi.d.ts +48 -0
  175. package/src/Api/Internal/LayoutInternalApi.js +163 -0
  176. package/src/Api/Internal/PredicateInternalApi.d.ts +37 -0
  177. package/src/Api/Internal/PredicateInternalApi.js +140 -0
  178. package/src/Api/Internal/QueryInternalApi.d.ts +17 -0
  179. package/src/Api/Internal/QueryInternalApi.js +57 -0
  180. package/src/Api/Internal/QueryLanguageInternalApi.d.ts +11 -0
  181. package/src/Api/Internal/QueryLanguageInternalApi.js +34 -0
  182. package/src/Api/Internal/StyledColumnInternalApi.d.ts +59 -0
  183. package/src/Api/Internal/StyledColumnInternalApi.js +249 -0
  184. package/src/Api/Internal/SystemStatusInternalApi.d.ts +11 -0
  185. package/src/Api/Internal/SystemStatusInternalApi.js +27 -0
  186. package/src/Api/Internal/TeamSharingInternalApi.d.ts +20 -0
  187. package/src/Api/Internal/TeamSharingInternalApi.js +66 -0
  188. package/src/Api/LayoutApi.d.ts +36 -41
  189. package/src/Api/OptionsApi.d.ts +131 -0
  190. package/src/Api/OptionsApi.js +2 -0
  191. package/src/Api/PluginsApi.d.ts +5 -0
  192. package/src/Api/PlusMinusApi.d.ts +9 -2
  193. package/src/Api/PredicateApi.d.ts +41 -10
  194. package/src/Api/QueryApi.d.ts +23 -18
  195. package/src/Api/QueryLanguageApi.d.ts +3 -7
  196. package/src/Api/QuickSearchApi.d.ts +5 -1
  197. package/src/Api/ScheduleApi.d.ts +97 -16
  198. package/src/Api/ScopeApi.d.ts +1 -1
  199. package/src/Api/SettingsPanelApi.d.ts +12 -1
  200. package/src/Api/ShortcutApi.d.ts +28 -7
  201. package/src/Api/SmartEditApi.d.ts +8 -1
  202. package/src/Api/StyledColumnApi.d.ts +100 -0
  203. package/src/Api/StyledColumnApi.js +2 -0
  204. package/src/Api/SystemStatusApi.d.ts +12 -6
  205. package/src/Api/TeamSharingApi.d.ts +4 -17
  206. package/src/Api/ThemeApi.d.ts +25 -6
  207. package/src/Api/ToolPanelApi.d.ts +10 -1
  208. package/src/Api/UserInterfaceApi.d.ts +13 -2
  209. package/src/PredefinedConfig/AdaptableState.d.ts +2 -0
  210. package/src/PredefinedConfig/AlertState.d.ts +20 -5
  211. package/src/PredefinedConfig/ChartingState.d.ts +13 -4
  212. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
  213. package/src/PredefinedConfig/Common/AdaptableColumn.js +4 -0
  214. package/src/PredefinedConfig/Common/AdaptableForm.d.ts +0 -5
  215. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +10 -0
  216. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  217. package/src/PredefinedConfig/Common/AdaptableObject.d.ts +22 -1
  218. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +8 -2
  219. package/src/PredefinedConfig/Common/AdaptablePredicate.js +64 -45
  220. package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +6 -6
  221. package/src/PredefinedConfig/Common/ColumnFilter.d.ts +2 -2
  222. package/src/PredefinedConfig/Common/FDC3Context.d.ts +3 -7
  223. package/src/PredefinedConfig/Common/Types.d.ts +7 -7
  224. package/src/PredefinedConfig/Common/Types.js +4 -0
  225. package/src/PredefinedConfig/ConditionalStyleState.d.ts +10 -19
  226. package/src/PredefinedConfig/FlashingCellState.d.ts +9 -2
  227. package/src/PredefinedConfig/FormatColumnState.d.ts +28 -92
  228. package/src/PredefinedConfig/GridState.d.ts +1 -1
  229. package/src/PredefinedConfig/LayoutState.d.ts +1 -1
  230. package/src/PredefinedConfig/PredefinedConfig.d.ts +7 -2
  231. package/src/PredefinedConfig/StyledColumnState.d.ts +139 -0
  232. package/src/PredefinedConfig/StyledColumnState.js +2 -0
  233. package/src/PredefinedConfig/SystemState.d.ts +21 -0
  234. package/src/Redux/ActionsReducers/ChartingRedux.d.ts +28 -5
  235. package/src/Redux/ActionsReducers/ChartingRedux.js +45 -5
  236. package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +14 -0
  237. package/src/Redux/ActionsReducers/FormatColumnRedux.js +43 -1
  238. package/src/Redux/ActionsReducers/FreeTextColumnRedux.d.ts +1 -1
  239. package/src/Redux/ActionsReducers/FreeTextColumnRedux.js +3 -3
  240. package/src/Redux/ActionsReducers/GridRedux.d.ts +18 -0
  241. package/src/Redux/ActionsReducers/GridRedux.js +65 -2
  242. package/src/Redux/ActionsReducers/PluginsRedux.d.ts +4 -4
  243. package/src/Redux/ActionsReducers/PluginsRedux.js +5 -5
  244. package/src/Redux/ActionsReducers/PopupRedux.js +10 -2
  245. package/src/Redux/ActionsReducers/QuickSearchRedux.d.ts +1 -1
  246. package/src/Redux/ActionsReducers/QuickSearchRedux.js +1 -1
  247. package/src/Redux/ActionsReducers/StyledColumnRedux.d.ts +49 -0
  248. package/src/Redux/ActionsReducers/StyledColumnRedux.js +92 -0
  249. package/src/Redux/ActionsReducers/SystemRedux.d.ts +20 -0
  250. package/src/Redux/ActionsReducers/SystemRedux.js +67 -5
  251. package/src/Redux/DeadRedux.d.ts +6 -0
  252. package/src/Redux/DeadRedux.js +19 -1
  253. package/src/Redux/Store/AdaptableStore.js +45 -34
  254. package/src/Strategy/AdaptableModuleBase.js +6 -6
  255. package/src/Strategy/AlertModule.d.ts +1 -6
  256. package/src/Strategy/AlertModule.js +38 -93
  257. package/src/Strategy/BulkUpdateModule.js +3 -3
  258. package/src/Strategy/CalculatedColumnModule.js +6 -6
  259. package/src/Strategy/ChartingModule.d.ts +7 -1
  260. package/src/Strategy/ChartingModule.js +97 -0
  261. package/src/Strategy/CustomSortModule.js +4 -4
  262. package/src/Strategy/DashboardModule.js +2 -2
  263. package/src/Strategy/DataChangeHistoryModule.d.ts +1 -0
  264. package/src/Strategy/DataChangeHistoryModule.js +12 -0
  265. package/src/Strategy/DataSetModule.js +1 -1
  266. package/src/Strategy/ExportModule.js +4 -4
  267. package/src/Strategy/FilterModule.js +10 -13
  268. package/src/Strategy/FlashingCellModule.d.ts +2 -0
  269. package/src/Strategy/FlashingCellModule.js +27 -7
  270. package/src/Strategy/FormatColumnModule.d.ts +4 -10
  271. package/src/Strategy/FormatColumnModule.js +70 -185
  272. package/src/Strategy/FreeTextColumnModule.js +3 -3
  273. package/src/Strategy/Interface/IModule.d.ts +12 -10
  274. package/src/Strategy/LayoutModule.d.ts +3 -0
  275. package/src/Strategy/LayoutModule.js +138 -25
  276. package/src/Strategy/PlusMinusModule.js +2 -2
  277. package/src/Strategy/QueryModule.js +3 -3
  278. package/src/Strategy/ScheduleModule.js +10 -12
  279. package/src/Strategy/ShortcutModule.js +5 -5
  280. package/src/Strategy/SmartEditModule.js +3 -3
  281. package/src/Strategy/StyledColumnModule.d.ts +24 -0
  282. package/src/Strategy/StyledColumnModule.js +179 -0
  283. package/src/Strategy/TeamSharingModule.js +3 -3
  284. package/src/Strategy/ThemeModule.js +1 -1
  285. package/src/Strategy/Utilities/Alert/getAlertBehaviourViewItems.d.ts +2 -2
  286. package/src/Strategy/Utilities/CustomSort/getCustomSortColumnViewItems.js +1 -1
  287. package/src/Strategy/Utilities/Export/getExportColumnsViewItems.d.ts +1 -1
  288. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.d.ts +1 -1
  289. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +3 -4
  290. package/src/Strategy/Utilities/FormatColumn/getFormatColumnStyleViewItems.js +1 -16
  291. package/src/Strategy/Utilities/Layout/getLayoutFilterViewItems.js +1 -1
  292. package/src/Strategy/Utilities/Layout/getLayoutSortViewItems.js +1 -1
  293. package/src/Strategy/Utilities/getRuleViewItems.d.ts +1 -1
  294. package/src/Strategy/Utilities/getRuleViewItems.js +4 -3
  295. package/src/Strategy/Utilities/getScopeViewItems.js +2 -2
  296. package/src/Strategy/Utilities/updateSingleToMultiplePredicates.d.ts +5 -0
  297. package/src/Strategy/Utilities/updateSingleToMultiplePredicates.js +12 -0
  298. package/src/Utilities/Constants/ModuleConstants.d.ts +3 -0
  299. package/src/Utilities/Constants/ModuleConstants.js +4 -1
  300. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +32 -25
  301. package/src/Utilities/Defaults/DefaultSettingsPanel.js +19 -15
  302. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -2
  303. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +11 -1
  304. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +1 -4
  305. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +22 -11
  306. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +1 -0
  307. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +76 -79
  308. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +3 -1
  309. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +9 -5
  310. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +2 -4
  311. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +15 -4
  312. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +2 -1
  313. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +136 -29
  314. package/src/Utilities/Extensions/ObjectExtensions.d.ts +10 -0
  315. package/src/Utilities/Extensions/ObjectExtensions.js +20 -0
  316. package/src/Utilities/Extensions/StringExtensions.d.ts +2 -0
  317. package/src/Utilities/Extensions/StringExtensions.js +21 -1
  318. package/src/Utilities/Extensions/TypeExtensions.d.ts +2 -0
  319. package/src/Utilities/Extensions/TypeExtensions.js +5 -0
  320. package/src/Utilities/Helpers/AdaptableHelper.js +6 -2
  321. package/src/Utilities/Helpers/FormatHelper.d.ts +1 -1
  322. package/src/Utilities/Helpers/FormatHelper.js +20 -11
  323. package/src/Utilities/ObjectFactory.d.ts +10 -6
  324. package/src/Utilities/ObjectFactory.js +30 -26
  325. package/src/Utilities/Services/CalculatedColumnExpressionService.js +2 -2
  326. package/src/Utilities/Services/ChartingService.d.ts +10 -0
  327. package/src/Utilities/Services/ChartingService.js +100 -0
  328. package/src/Utilities/Services/DataService.js +1 -1
  329. package/src/Utilities/Services/EntitlementService.js +4 -1
  330. package/src/Utilities/Services/Interface/IChartingService.d.ts +5 -0
  331. package/src/Utilities/Services/Interface/IChartingService.js +2 -0
  332. package/src/Utilities/Services/Interface/IEntitlementService.d.ts +2 -1
  333. package/src/Utilities/Services/Interface/IMetamodelService.d.ts +1 -0
  334. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +14 -4
  335. package/src/Utilities/Services/Interface/IRowEditService.d.ts +0 -5
  336. package/src/Utilities/Services/{LicenseService.d.ts → LicenseService/index.d.ts} +3 -3
  337. package/src/Utilities/Services/LicenseService/index.js +1 -0
  338. package/src/Utilities/Services/LicenseService/shouldLogThankYouMessage.d.ts +1 -0
  339. package/src/Utilities/Services/LicenseService/shouldLogThankYouMessage.js +15 -0
  340. package/src/Utilities/Services/MetamodelService.js +6 -4
  341. package/src/Utilities/Services/ModuleService.js +4 -2
  342. package/src/Utilities/Services/QueryLanguageService.d.ts +3 -3
  343. package/src/Utilities/Services/QueryLanguageService.js +91 -42
  344. package/src/Utilities/Services/ReportService.js +9 -9
  345. package/src/Utilities/Services/RowEditService.d.ts +0 -19
  346. package/src/Utilities/Services/RowEditService.js +5 -162
  347. package/src/Utilities/Services/TeamSharingService.js +3 -3
  348. package/src/Utilities/Services/ValidationService.js +9 -7
  349. package/src/Utilities/license/LicenseDetails.d.ts +1 -1
  350. package/src/Utilities/license/decode.d.ts +1 -0
  351. package/src/Utilities/license/decode.js +1 -1
  352. package/src/Utilities/logDeprecation.d.ts +3 -0
  353. package/src/Utilities/logDeprecation.js +30 -0
  354. package/src/View/AdaptablePopover/index.d.ts +4 -2
  355. package/src/View/AdaptablePopover/index.js +6 -2
  356. package/src/View/AdaptableView.d.ts +3 -3
  357. package/src/View/AdaptableViewFactory.js +2 -0
  358. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableOptionsForm.d.ts +3 -5
  359. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableOptionsForm.js +103 -92
  360. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +2 -1
  361. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +2 -2
  362. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/Components/FormBox.d.ts +1 -1
  363. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +4 -3
  364. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +8 -3
  365. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +7 -34
  366. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.d.ts +1 -1
  367. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.js +7 -7
  368. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +2 -1
  369. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.js +4 -2
  370. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UiOptionsForm.js +2 -1
  371. package/src/View/AdaptableWizardView/index.d.ts +1 -1
  372. package/src/View/Alert/AlertEntityRow.js +1 -1
  373. package/src/View/Alert/AlertStatusSubPanel.js +1 -1
  374. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +17 -16
  375. package/src/View/Alert/Wizard/AlertButtonsEditor.js +25 -2
  376. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +23 -14
  377. package/src/View/Alert/Wizard/AlertWizard.js +3 -3
  378. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +7 -5
  379. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +5 -5
  380. package/src/View/Alert/Wizard/isValidAlertRules.js +5 -4
  381. package/src/View/BulkUpdate/BulkUpdatePopup.js +1 -1
  382. package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
  383. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +3 -3
  384. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  385. package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +4 -3
  386. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.d.ts +1 -0
  387. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +34 -12
  388. package/src/View/Components/AdaptableObjectRow/index.js +1 -6
  389. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  390. package/src/View/Components/Buttons/ButtonEdit.d.ts +1 -1
  391. package/src/View/Components/Buttons/ButtonInfo.d.ts +1 -3
  392. package/src/View/Components/Buttons/ButtonInfo.js +3 -5
  393. package/src/View/Components/Charting/ChartingStatusBarPopover.d.ts +2 -0
  394. package/src/View/Components/Charting/ChartingStatusBarPopover.js +23 -0
  395. package/src/View/Components/Charting/ChartingViewPanel.d.ts +3 -0
  396. package/src/View/Components/Charting/ChartingViewPanel.js +95 -0
  397. package/src/View/Components/Charting/ChartingWizard/ChartingWizard.d.ts +6 -0
  398. package/src/View/Components/Charting/ChartingWizard/ChartingWizard.js +37 -0
  399. package/src/View/Components/Charting/ChartingWizard/PreviewChartSection.d.ts +6 -0
  400. package/src/View/Components/Charting/ChartingWizard/PreviewChartSection.js +34 -0
  401. package/src/View/Components/Charting/ChartingWizard/SettingsSection.d.ts +8 -0
  402. package/src/View/Components/Charting/ChartingWizard/SettingsSection.js +53 -0
  403. package/src/View/Components/Charting/DeleteChartButton.d.ts +7 -0
  404. package/src/View/Components/Charting/DeleteChartButton.js +12 -0
  405. package/src/View/Components/Charting/EditChartButton.d.ts +8 -0
  406. package/src/View/Components/Charting/EditChartButton.js +21 -0
  407. package/src/View/Components/Charting/ShowChartButton.d.ts +5 -0
  408. package/src/View/Components/Charting/ShowChartButton.js +38 -0
  409. package/src/View/Components/Charting/useChartState.d.ts +9 -0
  410. package/src/View/Components/Charting/useChartState.js +71 -0
  411. package/src/View/Components/EntityRulesEditor/PredicatesEditor.d.ts +16 -0
  412. package/src/View/Components/EntityRulesEditor/PredicatesEditor.js +86 -0
  413. package/src/View/Components/EntityRulesEditor/Utilities.d.ts +6 -0
  414. package/src/View/Components/EntityRulesEditor/Utilities.js +21 -0
  415. package/src/View/Components/EntityRulesEditor/index.d.ts +5 -9
  416. package/src/View/Components/EntityRulesEditor/index.js +44 -124
  417. package/src/View/Components/ExpressionWizard.js +2 -2
  418. package/src/View/Components/ExternalRenderer.js +3 -1
  419. package/src/View/Components/FilterForm/FilterForm.js +13 -18
  420. package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +2 -2
  421. package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
  422. package/src/View/Components/FilterForm/QuickFilterForm.js +15 -21
  423. package/src/View/Components/NewScopeComponent.js +3 -3
  424. package/src/View/Components/Panels/PanelWithButton.js +1 -5
  425. package/src/View/Components/Panels/PanelWithImage.js +1 -5
  426. package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.d.ts +1 -2
  427. package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.js +6 -7
  428. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -2
  429. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.d.ts +1 -1
  430. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +1 -1
  431. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +3 -2
  432. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +3 -16
  433. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +1 -1
  434. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +12 -14
  435. package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +1 -1
  436. package/src/View/Components/Popups/AdaptablePopup/PopupPanel.d.ts +1 -1
  437. package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +1 -1
  438. package/src/View/Components/Popups/AdaptablePopup/TopBar.d.ts +1 -1
  439. package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
  440. package/src/View/Components/Popups/AdaptablePopupConfirmation.d.ts +2 -12
  441. package/src/View/Components/Popups/AdaptablePopupConfirmation.js +46 -39
  442. package/src/View/Components/Popups/AdaptablePopupPrompt.d.ts +1 -1
  443. package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +5 -5
  444. package/src/View/Components/Popups/AdaptableToaster.js +2 -0
  445. package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +1 -0
  446. package/src/View/Components/Popups/WindowPopups/windowFactory.js +4 -1
  447. package/src/View/Components/PredicateEditor/PredicateEditor.d.ts +10 -0
  448. package/src/View/Components/PredicateEditor/PredicateEditor.js +44 -0
  449. package/src/View/Components/RangesComponent.d.ts +11 -3
  450. package/src/View/Components/RangesComponent.js +121 -64
  451. package/src/View/Components/ScopeComponent.js +9 -9
  452. package/src/View/Components/Selectors/ColumnSelector.d.ts +1 -0
  453. package/src/View/Components/Selectors/ColumnSelector.js +2 -1
  454. package/src/View/Components/Selectors/ColumnValueSelector.js +3 -3
  455. package/src/View/Components/StyleComponent.d.ts +1 -0
  456. package/src/View/Components/StyleComponent.js +60 -37
  457. package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +3 -9
  458. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +26 -11
  459. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  460. package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +1 -1
  461. package/src/View/Components/ToolPanel/ToolPanelPopup.js +0 -1
  462. package/src/View/CustomSort/CustomSortSummary.js +1 -1
  463. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +2 -2
  464. package/src/View/CustomSort/Wizard/CustomSortSummaryWizard.js +1 -1
  465. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +1 -1
  466. package/src/View/Dashboard/Dashboard.js +4 -3
  467. package/src/View/Dashboard/DashboardPopup.js +1 -1
  468. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +1 -1
  469. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +10 -1
  470. package/src/View/DataSet/DataSetSelector.js +2 -2
  471. package/src/View/DataSet/DataSetStatusPanelPopover.js +1 -1
  472. package/src/View/DataSet/DataSetViewPanel.d.ts +1 -1
  473. package/src/View/DataSet/DataSetViewPanel.js +1 -1
  474. package/src/View/Export/ExportSelector.js +2 -2
  475. package/src/View/Export/ExportViewPanel.d.ts +1 -1
  476. package/src/View/Export/ExportViewPanel.js +5 -5
  477. package/src/View/Export/ReportExportDropdown.js +2 -2
  478. package/src/View/Export/Wizard/ReportNameWizardSection.js +11 -12
  479. package/src/View/Export/Wizard/ReportRowsWizardSection.js +1 -1
  480. package/src/View/Filter/FilterSummary.d.ts +1 -1
  481. package/src/View/Filter/FilterSummary.js +1 -1
  482. package/src/View/Filter/FilterViewPanel.d.ts +1 -1
  483. package/src/View/Filter/FilterViewPanel.js +1 -1
  484. package/src/View/FlashingCell/FlashingCellStyle.js +3 -3
  485. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +3 -3
  486. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +2 -2
  487. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +6 -6
  488. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +8 -6
  489. package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +4 -3
  490. package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
  491. package/src/View/FormatColumn/MoveFormatColumn.d.ts +7 -0
  492. package/src/View/FormatColumn/MoveFormatColumn.js +27 -0
  493. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +35 -29
  494. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.d.ts +8 -0
  495. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +28 -0
  496. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +23 -3
  497. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +2 -28
  498. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.d.ts +3 -3
  499. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +7 -302
  500. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +18 -26
  501. package/src/View/FormatColumn/Wizard/constants.d.ts +1 -0
  502. package/src/View/FormatColumn/Wizard/constants.js +4 -0
  503. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +7 -7
  504. package/src/View/GridInfo/ColumnInfoComponent.js +27 -19
  505. package/src/View/GridInfo/GridInfoPopup.js +16 -15
  506. package/src/View/Layout/LayoutRadioSelector.js +2 -2
  507. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +1 -1
  508. package/src/View/Layout/LayoutViewPanel.d.ts +1 -1
  509. package/src/View/Layout/LayoutViewPanel.js +1 -1
  510. package/src/View/Layout/PivotDetailsPopoup.d.ts +3 -0
  511. package/src/View/Layout/PivotDetailsPopoup.js +65 -0
  512. package/src/View/Layout/SaveLayoutButton.js +1 -1
  513. package/src/View/Layout/Wizard/Components/ColumnLabels.js +1 -1
  514. package/src/View/Layout/Wizard/LayoutWizard.js +9 -4
  515. package/src/View/Layout/Wizard/sections/AggregationsSection.js +5 -5
  516. package/src/View/Layout/Wizard/sections/ColumnsSection.js +12 -11
  517. package/src/View/Layout/Wizard/sections/FilterSection.d.ts +1 -0
  518. package/src/View/Layout/Wizard/sections/FilterSection.js +52 -3
  519. package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +2 -2
  520. package/src/View/Layout/Wizard/sections/RowGroupingSection.js +2 -2
  521. package/src/View/Layout/Wizard/sections/SettingsSection.d.ts +2 -2
  522. package/src/View/Layout/Wizard/sections/SettingsSection.js +2 -2
  523. package/src/View/Layout/Wizard/sections/SortSection.js +2 -5
  524. package/src/View/License/LicenseWatermark.d.ts +1 -1
  525. package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +1 -1
  526. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +1 -1
  527. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +5 -5
  528. package/src/View/Query/ExpandedQueryPopup.js +1 -1
  529. package/src/View/Query/QueryViewPanel.d.ts +1 -1
  530. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +1 -1
  531. package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +1 -1
  532. package/src/View/QuickSearch/QuickSearchPopup.js +2 -2
  533. package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +1 -1
  534. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +5 -5
  535. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +1 -1
  536. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +5 -5
  537. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +1 -1
  538. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +5 -5
  539. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +2 -2
  540. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +2 -2
  541. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +3 -3
  542. package/src/View/Shortcut/Wizard/ShortcutWizard.js +1 -1
  543. package/src/View/SmartEdit/SmartEditPopup.js +3 -3
  544. package/src/View/SmartEdit/SmartEditViewPanel.js +1 -1
  545. package/src/View/SpecialColumnSettingsWizardStep.js +10 -10
  546. package/src/View/StateManagement/StateManagementPopup.js +4 -4
  547. package/src/View/StateManagement/components/ClearButton.d.ts +1 -1
  548. package/src/View/StateManagement/components/LoadButton.d.ts +1 -1
  549. package/src/View/StatusBar/StatusBarPanel.d.ts +4 -4
  550. package/src/View/StatusBar/StatusBarPanel.js +1 -1
  551. package/src/View/StatusBar/StatusBarPopup.js +1 -1
  552. package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.d.ts +6 -0
  553. package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.js +285 -0
  554. package/src/View/StyledColumn/Wizard/StyledColumnWizard.d.ts +7 -0
  555. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +106 -0
  556. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.d.ts +9 -0
  557. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +75 -0
  558. package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.d.ts +8 -0
  559. package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.js +38 -0
  560. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarColumnComparisonPreview.d.ts +5 -0
  561. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarColumnComparisonPreview.js +26 -0
  562. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarRangesPreview.d.ts +5 -0
  563. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarRangesPreview.js +23 -0
  564. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarStylePreview.d.ts +8 -0
  565. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarStylePreview.js +25 -0
  566. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.d.ts +9 -0
  567. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.js +263 -0
  568. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/index.d.ts +1 -0
  569. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/index.js +4 -0
  570. package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.d.ts +7 -0
  571. package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +68 -0
  572. package/src/View/SystemStatus/SystemStatusEntityRow.js +4 -6
  573. package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +1 -1
  574. package/src/View/TeamSharing/SharedEntityDependencies.js +1 -1
  575. package/src/View/TeamSharing/SharedEntityObjectView.js +1 -1
  576. package/src/View/TeamSharing/TeamSharingApplyButton.js +1 -1
  577. package/src/View/Theme/ThemePopup.js +1 -1
  578. package/src/View/Theme/ThemeStatusPanelPopover.js +1 -1
  579. package/src/View/Wizard/OnePageAdaptableWizard.d.ts +4 -4
  580. package/src/View/Wizard/OnePageAdaptableWizard.js +3 -4
  581. package/src/View/Wizard/OnePageWizards.d.ts +3 -3
  582. package/src/View/Wizard/OnePageWizards.js +2 -2
  583. package/src/agGrid/ActionColumnRenderer.d.ts +3 -0
  584. package/src/agGrid/ActionColumnRenderer.js +98 -64
  585. package/src/agGrid/Adaptable.d.ts +43 -14
  586. package/src/agGrid/Adaptable.js +555 -409
  587. package/src/agGrid/CheckboxRenderer.js +1 -1
  588. package/src/agGrid/FilterWrapper.js +62 -19
  589. package/src/agGrid/FloatingFilterWrapper.d.ts +2 -2
  590. package/src/agGrid/FloatingFilterWrapper.js +70 -32
  591. package/src/agGrid/PercentBarRenderer.d.ts +2 -2
  592. package/src/agGrid/PercentBarRenderer.js +16 -15
  593. package/src/agGrid/agGridHelper.d.ts +2 -2
  594. package/src/agGrid/agGridHelper.js +31 -20
  595. package/src/agGrid/agGridMenuHelper.js +3 -3
  596. package/src/agGrid/createAgStatusPanelComponent.d.ts +2 -1
  597. package/src/agGrid/createAgStatusPanelComponent.js +20 -3
  598. package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +5 -1
  599. package/src/agGrid/editors/AdaptableDateEditor/index.js +87 -20
  600. package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +1 -1
  601. package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +3 -3
  602. package/src/agGrid/editors/AdaptableNumberEditor/index.js +81 -30
  603. package/src/agGrid/weightedAverage.js +19 -11
  604. package/src/bundle-dependencies/bundles/react-toastify/index.js +1 -1
  605. package/src/components/CheckBox/index.d.ts +1 -1
  606. package/src/components/CheckBox/index.js +7 -2
  607. package/src/components/ColorPicker/ColorPicker.d.ts +11 -0
  608. package/src/{View → components/ColorPicker}/ColorPicker.js +19 -6
  609. package/src/components/ColorPicker/index.d.ts +1 -0
  610. package/src/components/ColorPicker/index.js +4 -0
  611. package/src/components/Datepicker/index.d.ts +1 -1
  612. package/src/components/Datepicker/index.js +1 -1
  613. package/src/components/Dialog/index.d.ts +4 -2
  614. package/src/components/Dialog/index.js +2 -2
  615. package/src/components/DragAndDropContext/TabList.js +1 -1
  616. package/src/components/DragAndDropContext/UnusedPanel.js +3 -2
  617. package/src/components/DropdownButton/index.d.ts +21 -4
  618. package/src/components/DropdownButton/index.js +7 -8
  619. package/src/components/EllipsisContainer/index.js +1 -1
  620. package/src/components/ExpressionEditor/BaseEditorInput.d.ts +1 -1
  621. package/src/components/ExpressionEditor/BaseEditorInput.js +102 -36
  622. package/src/components/ExpressionEditor/EditorInput.js +1 -1
  623. package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +1 -1
  624. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +5 -1
  625. package/src/components/ExpressionEditor/index.js +12 -58
  626. package/src/components/FormLayout/index.js +1 -1
  627. package/src/components/Input/index.d.ts +1 -1
  628. package/src/components/List/ListGroupItem/index.d.ts +4 -2
  629. package/src/components/Loader/Loader.d.ts +2 -2
  630. package/src/components/Logo/index.d.ts +1 -1
  631. package/src/components/Modal/index.d.ts +1 -1
  632. package/src/components/Modal/index.js +0 -2
  633. package/src/components/OverlayTrigger/Overlay.d.ts +1 -4
  634. package/src/components/OverlayTrigger/Overlay.js +3 -40
  635. package/src/components/OverlayTrigger/index.d.ts +4 -4
  636. package/src/components/OverlayTrigger/index.js +75 -50
  637. package/src/components/OverlayTrigger/utils.d.ts +1 -1
  638. package/src/components/OverlayTrigger/utils.js +4 -4
  639. package/src/components/PopupWithFooter.d.ts +2 -2
  640. package/src/components/ProgressIndicator/ProgressIndicator.d.ts +1 -1
  641. package/src/components/SelectList.d.ts +1 -1
  642. package/src/components/SimpleButton/index.d.ts +4 -7
  643. package/src/components/SimpleButton/index.js +5 -4
  644. package/src/components/SizedContainer/index.d.ts +1 -1
  645. package/src/components/StylePreview.d.ts +1 -1
  646. package/src/components/StylePreview.js +2 -1
  647. package/src/components/Tag/Tag.d.ts +1 -1
  648. package/src/components/Textarea/index.d.ts +6 -4
  649. package/src/components/ToggleButton/index.d.ts +1 -1
  650. package/src/components/Tooltip/index.d.ts +1 -3
  651. package/src/components/Tooltip/index.js +2 -2
  652. package/src/components/WindowModal/WindowModal.d.ts +1 -1
  653. package/src/components/icons/{conditional-style.d.ts → brush.d.ts} +0 -0
  654. package/src/components/icons/brush.js +7 -0
  655. package/src/components/icons/index.d.ts +3 -2
  656. package/src/components/icons/index.js +4 -2
  657. package/src/components/icons/layout.d.ts +2 -1
  658. package/src/components/icons/open-in-new.d.ts +3 -0
  659. package/src/components/icons/{conditional-style.js → open-in-new.js} +1 -1
  660. package/src/components/utils/useContainerScrollObserver/index.d.ts +1 -1
  661. package/src/env.js +1 -3
  662. package/src/metamodel/adaptable.metamodel.d.ts +572 -160
  663. package/src/metamodel/adaptable.metamodel.js +1 -1
  664. package/src/parser/src/parser.js +644 -382
  665. package/src/parser/src/types.d.ts +15 -3
  666. package/src/renderReactRoot.d.ts +5 -0
  667. package/src/renderReactRoot.js +56 -0
  668. package/src/types.d.ts +26 -17
  669. package/themes/dark.css +8 -4
  670. package/themes/dark.css.map +1 -0
  671. package/themes/light.css +4 -1
  672. package/themes/light.css.map +1 -0
  673. package/version.d.ts +1 -1
  674. package/version.js +1 -1
  675. package/src/AdaptableComponents.d.ts +0 -1
  676. package/src/AdaptableComponents.js +0 -5
  677. package/src/Api/ConditionalStyleApi.d.ts +0 -108
  678. package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +0 -29
  679. package/src/Api/Implementation/ConditionalStyleApiImpl.js +0 -98
  680. package/src/Api/Implementation/InternalApiImpl.js +0 -654
  681. package/src/Api/InternalApi.d.ts +0 -147
  682. package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +0 -49
  683. package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +0 -95
  684. package/src/Strategy/ConditionalStyleModule.d.ts +0 -29
  685. package/src/Strategy/ConditionalStyleModule.js +0 -225
  686. package/src/Strategy/Interface/IConditionalStyleModule.d.ts +0 -6
  687. package/src/Strategy/Utilities/getStyleViewItems.d.ts +0 -2
  688. package/src/Strategy/Utilities/getStyleViewItems.js +0 -16
  689. package/src/Utilities/Helpers/CalendarHelper.d.ts +0 -25
  690. package/src/Utilities/Helpers/CalendarHelper.js +0 -342
  691. package/src/Utilities/Services/LicenseService.js +0 -1
  692. package/src/View/ColorPicker.d.ts +0 -14
  693. package/src/View/ConditionalStyle/ConditionalStyleSummary.d.ts +0 -25
  694. package/src/View/ConditionalStyle/ConditionalStyleSummary.js +0 -108
  695. package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.d.ts +0 -9
  696. package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +0 -42
  697. package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.d.ts +0 -8
  698. package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +0 -43
  699. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.d.ts +0 -8
  700. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +0 -29
  701. package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.d.ts +0 -8
  702. package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +0 -23
  703. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.d.ts +0 -6
  704. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +0 -114
  705. package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.d.ts +0 -1
  706. package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.js +0 -4
  707. package/src/components/OverlayTrigger/getOverlayStyle.d.ts +0 -13
  708. package/src/components/OverlayTrigger/getOverlayStyle.js +0 -56
@@ -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
  },