@capillarytech/blaze-ui 5.23.3-beta.3 → 5.23.3-beta.4

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 (1516) hide show
  1. package/CapActionBar/index.js +48 -81
  2. package/CapActionBar/styles.module.css +11 -0
  3. package/CapActionBar/styles.module.scss.js +6 -0
  4. package/CapAdvancedIcon/index.js +216 -179
  5. package/CapAdvancedIcon/styles.module.css +124 -0
  6. package/CapAdvancedIcon/styles.module.scss.js +28 -0
  7. package/CapAdvancedIcon/styles.scss +23 -23
  8. package/CapAlert/index.js +29 -34
  9. package/CapAlert/styles.module.css +35 -0
  10. package/CapAlert/styles.module.scss.js +6 -0
  11. package/CapAlert/styles.scss +1 -1
  12. package/CapAppNotEnabled/index.js +25 -43
  13. package/CapAppNotEnabled/styles.module.css +32 -0
  14. package/CapAppNotEnabled/styles.module.scss.js +14 -0
  15. package/CapAppNotEnabled/styles.scss +5 -5
  16. package/CapAskAira/AudienceFilterBot/constants.js +4 -1
  17. package/CapAskAira/AudienceFilterBot/index.js +449 -405
  18. package/CapAskAira/AudienceFilterBot/messages.js +44 -40
  19. package/CapAskAira/AudienceFilterBot/styles.module.css +425 -0
  20. package/CapAskAira/AudienceFilterBot/styles.module.scss.js +76 -0
  21. package/CapAskAira/AudienceFilterBot/styles.scss +7 -7
  22. package/CapAskAira/CapAiMediaGeneration/actions.js +7 -4
  23. package/CapAskAira/CapAiMediaGeneration/api.js +8 -5
  24. package/CapAskAira/CapAiMediaGeneration/constants.js +25 -11
  25. package/CapAskAira/CapAiMediaGeneration/index.js +263 -320
  26. package/CapAskAira/CapAiMediaGeneration/messages.js +32 -28
  27. package/CapAskAira/CapAiMediaGeneration/reducer.js +14 -18
  28. package/CapAskAira/CapAiMediaGeneration/saga.js +17 -12
  29. package/CapAskAira/CapAiMediaGeneration/selectors.js +12 -16
  30. package/CapAskAira/CapAiMediaGeneration/styles.module.css +174 -0
  31. package/CapAskAira/CapAiMediaGeneration/styles.module.scss.js +32 -0
  32. package/CapAskAira/CapAiMediaGeneration/styles.scss +14 -14
  33. package/CapAskAira/ConfigurationBot/CopilotResponse.js +394 -402
  34. package/CapAskAira/ConfigurationBot/GeneratingResponse.js +60 -68
  35. package/CapAskAira/ConfigurationBot/IdentityIcon.js +27 -39
  36. package/CapAskAira/ConfigurationBot/UserApproveAction.js +47 -58
  37. package/CapAskAira/ConfigurationBot/UserRequest.js +33 -36
  38. package/CapAskAira/ConfigurationBot/constants.js +26 -29
  39. package/CapAskAira/ConfigurationBot/index.js +361 -388
  40. package/CapAskAira/ConfigurationBot/inferenceGenerator.js +12 -15
  41. package/CapAskAira/ConfigurationBot/messages.js +41 -37
  42. package/CapAskAira/ConfigurationBot/styles.module.css +165 -0
  43. package/CapAskAira/ConfigurationBot/styles.module.scss.js +41 -0
  44. package/CapAskAira/ConfigurationBot/styles.scss +33 -33
  45. package/CapAskAira/ConfigurationBot/util.js +30 -34
  46. package/CapAskAira/ContentGenerationBot/UtilComponents.js +123 -148
  47. package/CapAskAira/ContentGenerationBot/constants.js +23 -12
  48. package/CapAskAira/ContentGenerationBot/index.js +164 -153
  49. package/CapAskAira/ContentGenerationBot/jsonAssembler.js +32 -70
  50. package/CapAskAira/ContentGenerationBot/messages.js +28 -24
  51. package/CapAskAira/ContentGenerationBot/styles.module.css +96 -0
  52. package/CapAskAira/ContentGenerationBot/styles.module.scss.js +20 -0
  53. package/CapAskAira/DocumentationBot/UtilComponents.js +55 -57
  54. package/CapAskAira/DocumentationBot/constants.js +21 -11
  55. package/CapAskAira/DocumentationBot/index.js +134 -153
  56. package/CapAskAira/DocumentationBot/messages.js +27 -23
  57. package/CapAskAira/DocumentationBot/styles.module.css +91 -0
  58. package/CapAskAira/DocumentationBot/styles.module.scss.js +23 -0
  59. package/CapAskAira/DocumentationChatBot/MetaBlock.js +74 -75
  60. package/CapAskAira/DocumentationChatBot/actions.js +11 -9
  61. package/CapAskAira/DocumentationChatBot/api.js +8 -5
  62. package/CapAskAira/DocumentationChatBot/constants.js +21 -11
  63. package/CapAskAira/DocumentationChatBot/index.js +193 -221
  64. package/CapAskAira/DocumentationChatBot/messages.js +18 -14
  65. package/CapAskAira/DocumentationChatBot/reducer.js +17 -22
  66. package/CapAskAira/DocumentationChatBot/saga.js +25 -31
  67. package/CapAskAira/DocumentationChatBot/selectors.js +12 -16
  68. package/CapAskAira/DocumentationChatBot/styles.module.css +77 -0
  69. package/CapAskAira/DocumentationChatBot/styles.module.scss.js +20 -0
  70. package/CapAskAira/DocumentationChatBot/styles.scss +7 -7
  71. package/CapAskAira/RuleGenerationBot/UtilComponents.js +107 -114
  72. package/CapAskAira/RuleGenerationBot/actions.js +26 -23
  73. package/CapAskAira/RuleGenerationBot/api.js +16 -24
  74. package/CapAskAira/RuleGenerationBot/constants.js +33 -18
  75. package/CapAskAira/RuleGenerationBot/index.js +131 -161
  76. package/CapAskAira/RuleGenerationBot/messages.js +30 -26
  77. package/CapAskAira/RuleGenerationBot/reducer.js +28 -38
  78. package/CapAskAira/RuleGenerationBot/saga.js +75 -72
  79. package/CapAskAira/RuleGenerationBot/selector.js +12 -15
  80. package/CapAskAira/RuleGenerationBot/styles.module.css +33 -0
  81. package/CapAskAira/RuleGenerationBot/styles.module.scss.js +11 -0
  82. package/CapAskAira/RuleSummarizationBot/MetaBlock.js +104 -108
  83. package/CapAskAira/RuleSummarizationBot/actions.js +36 -42
  84. package/CapAskAira/RuleSummarizationBot/api.js +28 -45
  85. package/CapAskAira/RuleSummarizationBot/constants.js +57 -32
  86. package/CapAskAira/RuleSummarizationBot/index.js +179 -239
  87. package/CapAskAira/RuleSummarizationBot/messages.js +30 -26
  88. package/CapAskAira/RuleSummarizationBot/reducer.js +47 -59
  89. package/CapAskAira/RuleSummarizationBot/saga.js +154 -138
  90. package/CapAskAira/RuleSummarizationBot/selector.js +12 -15
  91. package/CapAskAira/RuleSummarizationBot/styles.module.css +85 -0
  92. package/CapAskAira/RuleSummarizationBot/styles.module.scss.js +22 -0
  93. package/CapAskAira/RuleSummarizationBot/styles.scss +8 -8
  94. package/CapAskAira/UtilComponents/AiraContainer.js +99 -109
  95. package/CapAskAira/UtilComponents/AiraTooltip.js +12 -19
  96. package/CapAskAira/UtilComponents/ErrorBar.js +23 -25
  97. package/CapAskAira/UtilComponents/Icons.js +45 -52
  98. package/CapAskAira/UtilComponents/InputBox.js +53 -44
  99. package/CapAskAira/UtilComponents/MultiLineInpuxBox.js +85 -116
  100. package/CapAskAira/UtilComponents/Notification.js +5 -19
  101. package/CapAskAira/UtilComponents/Popup.js +113 -136
  102. package/CapAskAira/UtilComponents/SecondaryButton.js +18 -40
  103. package/CapAskAira/UtilComponents/TitleBar.js +42 -41
  104. package/CapAskAira/UtilComponents/Tooltip.js +16 -17
  105. package/CapAskAira/constants.js +25 -18
  106. package/CapAskAira/hooks/useWebsocket.js +38 -51
  107. package/CapAskAira/index.js +25 -16
  108. package/CapAskAira/reducer.js +13 -11
  109. package/CapAskAira/rootStyles.js +4 -2
  110. package/CapAskAira/selector.js +6 -3
  111. package/CapAskAira/styles.module.css +238 -0
  112. package/CapAskAira/styles.module.scss.js +39 -0
  113. package/CapAskAira/styles.scss +4 -4
  114. package/CapAskAira/util.js +44 -43
  115. package/CapBanner/index.js +22 -34
  116. package/CapBanner/styles.module.css +34 -0
  117. package/CapBanner/styles.module.scss.js +9 -0
  118. package/CapBanner/styles.scss +1 -1
  119. package/CapBlock/index.js +50 -62
  120. package/CapBlock/styles.module.css +41 -0
  121. package/CapBlock/styles.module.scss.js +8 -0
  122. package/CapBlock/styles.scss +1 -1
  123. package/CapBorderedBox/index.js +29 -34
  124. package/CapButton/index.js +100 -135
  125. package/CapButton/styles.module.css +207 -0
  126. package/CapButton/styles.module.scss.js +13 -0
  127. package/CapButton/styles.scss +35 -35
  128. package/CapCSVFileUploader/index.js +113 -123
  129. package/CapCSVFileUploader/styles.module.css +73 -0
  130. package/CapCSVFileUploader/styles.module.scss.js +21 -0
  131. package/CapCSVFileUploader/styles.scss +11 -11
  132. package/CapCalendarDatePicker/index.js +11 -28
  133. package/CapCalendarDatePicker/styles.module.css +108 -0
  134. package/CapCalendarDatePicker/styles.module.scss.js +6 -0
  135. package/CapCalendarDatePicker/styles.scss +1 -1
  136. package/CapCard/index.js +10 -25
  137. package/CapCard/styles.module.css +21 -0
  138. package/CapCard/styles.module.scss.js +6 -0
  139. package/CapCard/styles.scss +1 -1
  140. package/CapCardBox/index.js +44 -54
  141. package/CapCardBox/styles.module.css +43 -0
  142. package/CapCardBox/styles.module.scss.js +12 -0
  143. package/CapCardBox/styles.scss +7 -7
  144. package/CapCarousel/index.js +78 -96
  145. package/CapCarousel/styles.module.css +25 -0
  146. package/CapCarousel/styles.module.scss.js +8 -0
  147. package/CapCheckbox/index.js +33 -47
  148. package/CapCheckbox/styles.module.css +44 -0
  149. package/CapCheckbox/styles.module.scss.js +12 -0
  150. package/CapCheckbox/styles.scss +5 -5
  151. package/CapCollapsibleLeftNavigation/constants.js +30 -14
  152. package/CapCollapsibleLeftNavigation/index.js +23 -7
  153. package/CapCollapsibleLeftNavigation/reducer.js +15 -33
  154. package/CapCollapsibleLeftNavigation/saga.js +23 -46
  155. package/CapCollapsibleNavbar/constants.js +40 -19
  156. package/CapCollapsibleNavbar/index.js +575 -619
  157. package/CapCollapsibleNavbar/styles.css +296 -0
  158. package/CapCollapsibleNavbar/styles.scss +75 -75
  159. package/CapColorPicker/index.js +26 -28
  160. package/CapColorPicker/styles.module.css +23 -0
  161. package/CapColorPicker/styles.module.scss.js +7 -0
  162. package/CapColorPicker/styles.scss +2 -2
  163. package/CapColoredTag/index.js +42 -56
  164. package/CapColoredTag/styles.module.css +27 -0
  165. package/CapColoredTag/styles.module.scss.js +10 -0
  166. package/CapColoredTag/styles.scss +2 -2
  167. package/CapColumn/index.js +13 -24
  168. package/CapColumn/styles.module.css +11 -0
  169. package/CapColumn/styles.module.scss.js +6 -0
  170. package/CapColumn/styles.scss +1 -1
  171. package/CapCondition/ConditionCustomField.js +125 -146
  172. package/CapCondition/ConditionDate.js +181 -268
  173. package/CapCondition/ConditionMultiSelect.js +19 -17
  174. package/CapCondition/ConditionMultiSelectTree.js +213 -259
  175. package/CapCondition/ConditionNumber.js +105 -171
  176. package/CapCondition/ConditionSKUUploader.js +55 -42
  177. package/CapCondition/ConditionStoreUploader.js +184 -217
  178. package/CapCondition/ConditionString.js +62 -88
  179. package/CapCondition/constants.js +124 -74
  180. package/CapCondition/helper.js +124 -143
  181. package/CapCondition/index.js +280 -281
  182. package/CapCondition/messages.js +48 -45
  183. package/CapCondition/style.js +35 -6
  184. package/CapCondition/styles.css +132 -0
  185. package/CapCondition/styles.scss +32 -32
  186. package/CapConditionPreview/constants.js +44 -27
  187. package/CapConditionPreview/index.js +271 -407
  188. package/CapConditionPreview/messages.js +113 -110
  189. package/CapConditionPreview/styles.module.css +56 -0
  190. package/CapConditionPreview/styles.module.scss.js +32 -0
  191. package/CapConditionPreview/styles.scss +3 -3
  192. package/CapCustomCard/CapCustomCard.js +273 -405
  193. package/CapCustomCard/CapCustomCardList.js +32 -41
  194. package/CapCustomCard/constants.js +18 -14
  195. package/CapCustomCard/index.js +6 -11
  196. package/CapCustomCard/messages.js +10 -6
  197. package/CapCustomCard/styles.module.css +293 -0
  198. package/CapCustomCard/styles.module.scss.js +37 -0
  199. package/CapCustomCard/styles.scss +56 -56
  200. package/CapCustomCarousel/index.js +92 -90
  201. package/CapCustomCarousel/styles.module.css +47 -0
  202. package/CapCustomCarousel/styles.module.scss.js +10 -0
  203. package/CapCustomCarousel/styles.scss +9 -9
  204. package/CapCustomCheckboxList/index.js +47 -78
  205. package/CapCustomCheckboxList/styles.module.css +38 -0
  206. package/CapCustomCheckboxList/styles.module.scss.js +12 -0
  207. package/CapCustomCheckboxList/styles.scss +5 -5
  208. package/CapCustomList/index.js +72 -90
  209. package/CapCustomList/styles.module.css +24 -0
  210. package/CapCustomList/styles.module.scss.js +9 -0
  211. package/CapCustomList/styles.scss +4 -4
  212. package/CapCustomSelect/index.js +245 -304
  213. package/CapCustomSelect/messages.js +12 -8
  214. package/CapCustomSelect/styles.module.css +105 -0
  215. package/CapCustomSelect/styles.module.scss.js +27 -0
  216. package/CapCustomSelect/styles.scss +6 -6
  217. package/CapDatePicker/index.js +106 -112
  218. package/CapDatePicker/styles.module.css +27 -0
  219. package/CapDatePicker/styles.module.scss.js +7 -0
  220. package/CapDatePicker/styles.scss +1 -1
  221. package/CapDateRangePicker/index.js +180 -168
  222. package/CapDateRangePicker/styles.module.css +35 -0
  223. package/CapDateRangePicker/styles.module.scss.js +8 -0
  224. package/CapDateRangePicker/styles.scss +1 -1
  225. package/CapDateTimePicker/index.js +129 -143
  226. package/CapDateTimePicker/messages.js +14 -10
  227. package/CapDateTimePicker/styles.module.css +61 -0
  228. package/CapDateTimePicker/styles.module.scss.js +7 -0
  229. package/CapDateTimeRangePicker/constants.js +10 -5
  230. package/CapDateTimeRangePicker/index.js +283 -356
  231. package/CapDateTimeRangePicker/messages.js +22 -18
  232. package/CapDateTimeRangePicker/styles.module.css +80 -0
  233. package/CapDateTimeRangePicker/styles.module.scss.js +12 -0
  234. package/CapDateTimeRangePicker/styles.scss +2 -2
  235. package/CapDivider/index.js +51 -58
  236. package/CapDivider/styles.css +17 -0
  237. package/CapDivider/styles.scss +10 -10
  238. package/CapDnDGraph/GraphBlockNode.js +107 -101
  239. package/CapDnDGraph/constants.js +80 -49
  240. package/CapDnDGraph/index.js +618 -731
  241. package/CapDnDGraph/reportingBlock.d.ts.map +1 -1
  242. package/CapDnDGraph/reportingBlock.js +65 -66
  243. package/CapDnDGraph/styles.css +74 -0
  244. package/CapDnDGraph/styles.scss +17 -17
  245. package/CapDnDGraph/utils.js +35 -83
  246. package/CapDndGraphSidebar/SideBarIcon.js +78 -75
  247. package/CapDndGraphSidebar/SidebarNodesRendered.js +40 -60
  248. package/CapDndGraphSidebar/index.js +39 -50
  249. package/CapDndGraphSidebar/styles.css +55 -0
  250. package/CapDndGraphSidebar/styles.scss +9 -9
  251. package/CapDragAndDrop/constants.js +13 -8
  252. package/CapDragAndDrop/index.js +69 -106
  253. package/CapDragAndDrop/styles.css +59 -0
  254. package/CapDragAndDrop/styles.scss +10 -10
  255. package/CapDragReorder/Card.js +62 -102
  256. package/CapDragReorder/index.js +66 -86
  257. package/CapDragReorder/messages.js +10 -6
  258. package/CapDragReorder/styles.css +77 -0
  259. package/CapDragReorder/styles.js +15 -12
  260. package/CapDragReorder/styles.scss +16 -16
  261. package/CapDrawer/index.js +39 -49
  262. package/CapDropdown/index.js +88 -117
  263. package/CapDropdown/styles.module.css +16 -0
  264. package/CapDropdown/styles.module.scss.js +6 -0
  265. package/CapDropdown/styles.scss +1 -1
  266. package/CapEmptyDivWithBorder/index.js +38 -54
  267. package/CapEmptyDivWithBorder/styles.module.css +14 -0
  268. package/CapEmptyDivWithBorder/styles.module.scss.js +6 -0
  269. package/CapEmptyDivWithBorder/styles.scss +1 -1
  270. package/CapError/index.js +44 -39
  271. package/CapError/styles.module.css +22 -0
  272. package/CapError/styles.module.scss.js +13 -0
  273. package/CapError/styles.scss +4 -4
  274. package/CapErrorBoundary/index.js +83 -91
  275. package/CapErrorBoundary/styles.module.css +27 -0
  276. package/CapErrorBoundary/styles.module.scss.js +10 -0
  277. package/CapErrorBoundary/styles.scss +3 -3
  278. package/CapErrorStateIllustration/index.js +51 -69
  279. package/CapErrorStateIllustration/styles.module.css +38 -0
  280. package/CapErrorStateIllustration/styles.module.scss.js +11 -0
  281. package/CapErrorStateIllustration/styles.scss +6 -6
  282. package/CapEventCalendar/CalendarCanvas/index.js +212 -327
  283. package/CapEventCalendar/CalendarCanvas/utils.js +40 -37
  284. package/CapEventCalendar/components/DayDropdown/index.js +14 -36
  285. package/CapEventCalendar/components/MonthHeader/index.js +9 -16
  286. package/CapEventCalendar/constants.js +40 -6
  287. package/CapEventCalendar/drawUtils.js +73 -113
  288. package/CapEventCalendar/index.js +145 -161
  289. package/CapEventCalendar/styles.css +112 -0
  290. package/CapEventCalendar/styles.scss +13 -13
  291. package/CapEventCalendar/utils.js +103 -148
  292. package/CapExpressionEditor/index.js +63 -65
  293. package/CapExpressionEditor/js/fixGrammar.js +23 -41
  294. package/CapExpressionEditor/js/grammar.js +1317 -654
  295. package/CapExpressionEditor/styles.module.css +182 -0
  296. package/CapExpressionEditor/styles.module.scss.js +8 -0
  297. package/CapExpressionEditor/styles.scss +27 -27
  298. package/CapForm/index.js +6 -23
  299. package/CapForm/styles.module.css +31 -0
  300. package/CapForm/styles.module.scss.js +6 -0
  301. package/CapForm/styles.scss +1 -1
  302. package/CapFormItem/index.js +15 -27
  303. package/CapFormItem/styles.module.css +32 -0
  304. package/CapFormItem/styles.module.scss.js +6 -0
  305. package/CapFormItem/styles.scss +1 -1
  306. package/CapGraph/constants.js +20 -19
  307. package/CapGraph/index.js +100 -120
  308. package/CapGraph/styles.module.css +8 -0
  309. package/CapGraph/styles.module.scss.js +4 -0
  310. package/CapHamburgerMenu/index.js +434 -487
  311. package/CapHamburgerMenu/styles.module.css +292 -0
  312. package/CapHamburgerMenu/styles.module.scss.js +36 -0
  313. package/CapHamburgerMenu/styles.scss +23 -23
  314. package/CapHeader/index.js +64 -103
  315. package/CapHeader/styles.module.css +21 -0
  316. package/CapHeader/styles.module.scss.js +9 -0
  317. package/CapHeader/styles.scss +1 -1
  318. package/CapHeading/index.js +43 -47
  319. package/CapHeading/styles.module.css +175 -0
  320. package/CapHeading/styles.module.scss.js +58 -0
  321. package/CapHeading/styles.scss +19 -19
  322. package/CapHierarchyComponent/index.js +29 -41
  323. package/CapIcon/index.js +180 -194
  324. package/CapIcon/styles.module.css +73 -0
  325. package/CapIcon/styles.module.scss.js +35 -0
  326. package/CapIcon/styles.scss +13 -13
  327. package/CapIllustration/index.js +66 -97
  328. package/CapIllustration/styles.module.css +31 -0
  329. package/CapIllustration/styles.module.scss.js +10 -0
  330. package/CapIllustration/styles.scss +1 -1
  331. package/CapImage/index.js +9 -23
  332. package/CapImage/styles.module.css +3 -0
  333. package/CapImage/styles.module.scss.js +6 -0
  334. package/CapImportMFEComponent/index.js +36 -53
  335. package/CapImportMFEComponent/messages.js +13 -10
  336. package/CapImportMFEComponent/styles.module.css +16 -0
  337. package/CapImportMFEComponent/styles.module.scss.js +7 -0
  338. package/CapImportMFEComponent/styles.scss +2 -2
  339. package/CapInfoNote/index.js +42 -56
  340. package/CapInfoNote/styles.module.css +20 -0
  341. package/CapInfoNote/styles.module.scss.js +8 -0
  342. package/CapInfoNote/styles.scss +3 -3
  343. package/CapInput/Number.js +12 -20
  344. package/CapInput/Search.js +13 -21
  345. package/CapInput/TextArea.js +13 -23
  346. package/CapInput/index.js +40 -43
  347. package/CapInput/styles.module.css +76 -0
  348. package/CapInput/styles.module.scss.js +7 -0
  349. package/CapInput/styles.scss +2 -2
  350. package/CapLabel/index.js +58 -64
  351. package/CapLabel/styles.module.css +209 -0
  352. package/CapLabel/styles.module.scss.js +107 -0
  353. package/CapLabel/styles.scss +36 -36
  354. package/CapLanguageProvider/actions.js +22 -25
  355. package/CapLanguageProvider/constants.js +18 -21
  356. package/CapLanguageProvider/index.js +119 -153
  357. package/CapLanguageProvider/reducer.js +8 -41
  358. package/CapLanguageProvider/selector.js +17 -36
  359. package/CapLevelGraphRenderer/Tooltip.js +32 -43
  360. package/CapLevelGraphRenderer/index.js +213 -320
  361. package/CapLevelGraphRenderer/styles.module.css +30 -0
  362. package/CapLevelGraphRenderer/styles.module.scss.js +10 -0
  363. package/CapLevelGraphRenderer/styles.scss +7 -7
  364. package/CapLink/index.js +32 -56
  365. package/CapLink/styles.module.css +74 -0
  366. package/CapLink/styles.module.scss.js +14 -0
  367. package/CapLink/styles.scss +14 -14
  368. package/CapList/index.js +13 -33
  369. package/CapList/styles.module.css +11 -0
  370. package/CapList/styles.module.scss.js +6 -0
  371. package/CapList/styles.scss +3 -3
  372. package/CapListLayout/index.js +14 -25
  373. package/CapListLayout/styles.module.css +13 -0
  374. package/CapListLayout/styles.module.scss.js +6 -0
  375. package/CapLogin/index.js +69 -79
  376. package/CapLogin/styles.module.css +39 -0
  377. package/CapLogin/styles.module.scss.js +12 -0
  378. package/CapMediaPreview/ImageRenderer.js +11 -18
  379. package/CapMediaPreview/MediaRenderer.js +29 -52
  380. package/CapMediaPreview/VideoPlayer.js +19 -32
  381. package/CapMediaPreview/constants.js +9 -7
  382. package/CapMediaPreview/index.js +138 -141
  383. package/CapMediaPreview/messages.js +14 -10
  384. package/CapMediaPreview/styles.css +135 -0
  385. package/CapMediaPreview/styles.scss +6 -6
  386. package/CapMenu/index.js +17 -35
  387. package/CapMenu/styles.module.scss.js +4 -0
  388. package/CapMobileDatePicker/index.js +54 -61
  389. package/CapMobileDatePicker/styles.css +19 -0
  390. package/CapMobileDatePicker/styles.scss +6 -6
  391. package/CapMobileDateRangePicker/ReactMobileDatePickerModule.d.ts +7 -0
  392. package/CapMobileDateRangePicker/ReactMobileDatePickerModule.d.ts.map +1 -0
  393. package/CapMobileDateRangePicker/ReactMobileDatePickerModule.js +4 -0
  394. package/CapMobileDateRangePicker/index.js +223 -260
  395. package/CapMobileDateRangePicker/styles.css +185 -0
  396. package/CapMobileDateRangePicker/styles.scss +62 -62
  397. package/CapModal/index.js +94 -116
  398. package/CapModal/messages.js +12 -13
  399. package/CapModal/styles.module.css +38 -0
  400. package/CapModal/styles.module.scss.js +11 -0
  401. package/CapModal/styles.scss +4 -4
  402. package/CapMultiSelect/index.js +54 -81
  403. package/CapMultiSelect/styles.module.css +10 -0
  404. package/CapMultiSelect/styles.module.scss.js +7 -0
  405. package/CapMultiSelect/styles.scss +2 -2
  406. package/CapMultiSelectDatePicker/index.js +63 -67
  407. package/CapMultiSelectDatePicker/messages.js +10 -6
  408. package/CapMultiSelectDatePicker/styles.module.css +51 -0
  409. package/CapMultiSelectDatePicker/styles.module.scss.js +20 -0
  410. package/CapMultiSelectDatePicker/styles.scss +5 -5
  411. package/CapMultiSelectWithTree/index.js +536 -598
  412. package/CapMultiSelectWithTree/styles.css +223 -0
  413. package/CapMultiSelectWithTree/styles.scss +46 -46
  414. package/CapMultiplePath/constants.js +16 -8
  415. package/CapMultiplePath/index.js +247 -405
  416. package/CapMultiplePath/styles.js +75 -34
  417. package/CapNavigation/constants.js +4 -1
  418. package/CapNavigation/index.js +311 -317
  419. package/CapNavigation/messages.js +12 -8
  420. package/CapNavigation/styles.module.css +19 -0
  421. package/CapNavigation/styles.module.scss.js +7 -0
  422. package/CapNavigation/styles.scss +2 -2
  423. package/CapNotification/index.js +39 -77
  424. package/CapNotification/styles.module.css +49 -0
  425. package/CapNotification/styles.module.scss.js +16 -0
  426. package/CapNotification/styles.scss +10 -10
  427. package/CapNotificationDropdown/CapNotificationDefaultCard.js +90 -118
  428. package/CapNotificationDropdown/constants.js +4 -1
  429. package/CapNotificationDropdown/index.js +67 -65
  430. package/CapNotificationDropdown/styles.module.css +140 -0
  431. package/CapNotificationDropdown/styles.module.scss.js +25 -0
  432. package/CapNotificationDropdown/styles.scss +25 -25
  433. package/CapPopover/index.js +56 -63
  434. package/CapPopover/styles.module.css +11 -0
  435. package/CapPopover/styles.module.scss.js +4 -0
  436. package/CapPopoverTree/index.js +147 -211
  437. package/CapPopoverTree/style.js +94 -13
  438. package/CapPopoverTree/styles.css +36 -0
  439. package/CapPopoverTree/styles.scss +10 -10
  440. package/CapProductSelection/constants.js +18 -8
  441. package/CapProductSelection/index.js +201 -248
  442. package/CapProductSelection/style.js +37 -8
  443. package/CapProductSelection/styles.scss +14 -14
  444. package/CapProgress/index.js +10 -24
  445. package/CapProgress/styles.module.css +36 -0
  446. package/CapProgress/styles.module.scss.js +6 -0
  447. package/CapProgress/styles.scss +9 -9
  448. package/CapRadio/index.js +33 -51
  449. package/CapRadio/styles.module.css +43 -0
  450. package/CapRadio/styles.module.scss.js +12 -0
  451. package/CapRadio/styles.scss +4 -4
  452. package/CapRadioButton/index.js +13 -22
  453. package/CapRadioButton/styles.module.css +21 -0
  454. package/CapRadioButton/styles.module.scss.js +6 -0
  455. package/CapRadioButton/styles.scss +2 -2
  456. package/CapRadioCard/index.js +102 -114
  457. package/CapRadioCard/styles.module.css +123 -0
  458. package/CapRadioCard/styles.module.scss.js +47 -0
  459. package/CapRadioCard/styles.scss +26 -26
  460. package/CapRadioGroup/index.js +18 -26
  461. package/CapRadioGroup/styles.module.css +18 -0
  462. package/CapRadioGroup/styles.module.scss.js +6 -0
  463. package/CapRadioGroup/styles.scss +3 -3
  464. package/CapReorderComponent/index.js +96 -97
  465. package/CapReorderComponent/styles.module.css +54 -0
  466. package/CapReorderComponent/styles.module.scss.js +13 -0
  467. package/CapReorderComponent/styles.scss +8 -8
  468. package/CapRoadMap/index.js +45 -50
  469. package/CapRoadMap/styles.module.css +56 -0
  470. package/CapRoadMap/styles.module.scss.js +8 -0
  471. package/CapRoadMap/styles.scss +12 -12
  472. package/CapRow/index.js +70 -73
  473. package/CapRow/styles.module.css +39 -0
  474. package/CapRow/styles.module.scss.js +14 -0
  475. package/CapRow/styles.scss +9 -9
  476. package/CapSKUUploader/index.js +118 -129
  477. package/CapSKUUploader/styles.module.css +29 -0
  478. package/CapSKUUploader/styles.module.scss.js +7 -0
  479. package/CapSKUUploader/styles.scss +6 -6
  480. package/CapSecondaryTopBar/index.js +92 -87
  481. package/CapSecondaryTopBar/styles.module.css +82 -0
  482. package/CapSecondaryTopBar/styles.module.scss.js +16 -0
  483. package/CapSecondaryTopBar/styles.scss +13 -13
  484. package/CapSelect/index.js +132 -152
  485. package/CapSelect/styles.module.css +51 -0
  486. package/CapSelect/styles.module.scss.js +9 -0
  487. package/CapSelect/styles.scss +11 -11
  488. package/CapSelect/utils.js +12 -13
  489. package/CapSelectFilter/index.js +82 -90
  490. package/CapSelectFilter/styles.module.css +68 -0
  491. package/CapSelectFilter/styles.module.scss.js +16 -0
  492. package/CapSelectFilter/styles.scss +10 -10
  493. package/CapShape/index.js +41 -36
  494. package/CapShape/styles.module.css +17 -0
  495. package/CapShape/styles.module.scss.js +8 -0
  496. package/CapShape/styles.scss +1 -1
  497. package/CapSideBar/MenuSearch.js +135 -172
  498. package/CapSideBar/_capSideBar.scss +21 -21
  499. package/CapSideBar/_menuSearch.module.css +131 -0
  500. package/CapSideBar/_menuSearch.module.scss.js +24 -0
  501. package/CapSideBar/_menuSearch.scss +11 -11
  502. package/CapSideBar/index.js +147 -165
  503. package/CapSideBar/styles.module.css +254 -0
  504. package/CapSideBar/styles.module.scss.js +28 -0
  505. package/CapSkeleton/index.js +8 -16
  506. package/CapSlideBox/index.js +84 -91
  507. package/CapSlideBox/styles.module.css +119 -0
  508. package/CapSlideBox/styles.module.scss.js +28 -0
  509. package/CapSlideBox/styles.scss +21 -21
  510. package/CapSlider/index.js +81 -101
  511. package/CapSlider/styles.module.css +41 -0
  512. package/CapSlider/styles.module.scss.js +8 -0
  513. package/CapSlider/styles.scss +12 -12
  514. package/CapSnackBar/index.js +35 -42
  515. package/CapSnackBar/styles.module.css +24 -0
  516. package/CapSnackBar/styles.module.scss.js +7 -0
  517. package/CapSnackBar/styles.scss +3 -3
  518. package/CapSomethingWentWrong/index.js +42 -49
  519. package/CapSomethingWentWrong/messages.js +13 -10
  520. package/CapSomethingWentWrong/styles.module.css +18 -0
  521. package/CapSomethingWentWrong/styles.module.scss.js +7 -0
  522. package/CapSomethingWentWrong/styles.scss +1 -1
  523. package/CapSpin/index.js +6 -16
  524. package/CapSplit/SplitAudienceInfo.js +38 -54
  525. package/CapSplit/constants.js +11 -9
  526. package/CapSplit/index.js +151 -173
  527. package/CapSplit/messages.js +22 -18
  528. package/CapSplit/styles.module.css +116 -0
  529. package/CapSplit/styles.module.scss.js +21 -0
  530. package/CapSplit/styles.scss +21 -21
  531. package/CapStaticTemplates/constants.js +6 -2
  532. package/CapStaticTemplates/index.js +228 -292
  533. package/CapStaticTemplates/style.js +216 -21
  534. package/CapStatisticCard/index.js +60 -81
  535. package/CapStatisticCard/styles.module.css +24 -0
  536. package/CapStatisticCard/styles.module.scss.js +13 -0
  537. package/CapStatisticCard/styles.scss +6 -6
  538. package/CapStatus/index.js +32 -39
  539. package/CapStatus/styles.module.css +16 -0
  540. package/CapStatus/styles.module.scss.js +6 -0
  541. package/CapStatus/styles.scss +1 -1
  542. package/CapSteps/index.js +31 -82
  543. package/CapSteps/styles.module.css +36 -0
  544. package/CapSteps/styles.module.scss.js +6 -0
  545. package/CapSteps/styles.scss +9 -9
  546. package/CapStepsAccordian/index.js +50 -96
  547. package/CapStepsAccordian/styles.module.css +49 -0
  548. package/CapStepsAccordian/styles.module.scss.js +10 -0
  549. package/CapStepsAccordian/styles.scss +8 -8
  550. package/CapSupportVideosWrapper/ResizablePIP.js +334 -318
  551. package/CapSupportVideosWrapper/constants.js +26 -12
  552. package/CapSupportVideosWrapper/index.js +108 -116
  553. package/CapSupportVideosWrapper/messages.js +15 -12
  554. package/CapSupportVideosWrapper/styles.css +146 -0
  555. package/CapSupportVideosWrapper/styles.module.scss.js +28 -0
  556. package/CapSupportVideosWrapper/styles.scss +21 -21
  557. package/CapSupportVideosWrapper/utils.js +4 -16
  558. package/CapSwitch/index.js +22 -27
  559. package/CapSwitch/styles.module.css +35 -0
  560. package/CapSwitch/styles.module.scss.js +6 -0
  561. package/CapSwitch/styles.scss +7 -7
  562. package/CapTab/index.js +59 -92
  563. package/CapTab/styles.module.css +20 -0
  564. package/CapTab/styles.module.scss.js +8 -0
  565. package/CapTab/styles.scss +4 -4
  566. package/CapTabV3/index.js +41 -56
  567. package/CapTabV3/styles.module.css +12 -0
  568. package/CapTabV3/styles.module.scss.js +6 -0
  569. package/CapTabV3/styles.scss +2 -2
  570. package/CapTable/index.js +106 -131
  571. package/CapTable/styles.module.css +49 -0
  572. package/CapTable/styles.module.scss.js +7 -0
  573. package/CapTable/styles.scss +2 -2
  574. package/CapTable/utils.js +44 -84
  575. package/CapTag/index.js +21 -27
  576. package/CapTag/styles.module.css +27 -0
  577. package/CapTag/styles.module.scss.js +13 -0
  578. package/CapTag/styles.scss +3 -3
  579. package/CapTagDropdown/index.js +135 -166
  580. package/CapTagDropdown/messages.js +14 -10
  581. package/CapTagDropdown/styles.module.css +57 -0
  582. package/CapTagDropdown/styles.module.scss.js +12 -0
  583. package/CapTagDropdown/styles.scss +7 -7
  584. package/CapTimePicker/index.js +75 -82
  585. package/CapTimePicker/styles.module.css +11 -0
  586. package/CapTimePicker/styles.module.scss.js +6 -0
  587. package/CapTimePicker/styles.scss +2 -2
  588. package/CapTimeline/CapTimelineCard.js +132 -118
  589. package/CapTimeline/CapTimelinePanesWrapper.js +37 -47
  590. package/CapTimeline/index.js +55 -65
  591. package/CapTimeline/styles.css +138 -0
  592. package/CapTimeline/styles.scss +43 -43
  593. package/CapTimelineNested/CapTimelineNestedCard.js +133 -110
  594. package/CapTimelineNested/CapTimelineNestedPanesWrapper.js +48 -56
  595. package/CapTimelineNested/NestedCard.js +56 -45
  596. package/CapTimelineNested/NestedCardParent.js +142 -115
  597. package/CapTimelineNested/_actionsAndTriggers.css +117 -0
  598. package/CapTimelineNested/_actionsAndTriggers.scss +9 -9
  599. package/CapTimelineNested/_capTimeline.scss +36 -36
  600. package/CapTimelineNested/_trigger.css +59 -0
  601. package/CapTimelineNested/assets/triggerComplete.svg.js +4 -0
  602. package/CapTimelineNested/assets/triggerOptional.svg.js +4 -0
  603. package/CapTimelineNested/assets/triggerPending.svg.js +4 -0
  604. package/CapTimelineNested/constants.js +12 -5
  605. package/CapTimelineNested/index.js +80 -82
  606. package/CapTimelineNested/styles.css +289 -0
  607. package/CapTooltip/index.js +73 -72
  608. package/CapTooltip/styles.module.css +27 -0
  609. package/CapTooltip/styles.module.scss.js +7 -0
  610. package/CapTooltip/styles.scss +3 -3
  611. package/CapTooltipWithInfo/index.js +21 -40
  612. package/CapTooltipWithInfo/styles.module.css +26 -0
  613. package/CapTooltipWithInfo/styles.module.scss.js +7 -0
  614. package/CapTooltipWithInfo/styles.scss +4 -4
  615. package/CapTopBar/CapOrgSelect.js +115 -131
  616. package/CapTopBar/CapOrgSelect.module.css +33 -0
  617. package/CapTopBar/CapOrgSelect.module.scss.js +10 -0
  618. package/CapTopBar/CapOrgSelect.scss +5 -5
  619. package/CapTopBar/CapOrgSelectUtils.js +98 -169
  620. package/CapTopBar/constants.js +4 -1
  621. package/CapTopBar/index.js +373 -377
  622. package/CapTopBar/styles.module.css +426 -0
  623. package/CapTopBar/styles.module.scss.js +81 -0
  624. package/CapTopBar/styles.scss +34 -34
  625. package/CapTopBar/themeConfig.js +17 -17
  626. package/CapTopBar/utils.js +47 -49
  627. package/CapTree/index.js +15 -60
  628. package/CapTree/styles.module.css +11 -0
  629. package/CapTree/styles.module.scss.js +8 -0
  630. package/CapTree/styles.scss +2 -2
  631. package/CapTreeSelect/index.js +71 -101
  632. package/CapTreeSelect/styles.module.css +49 -0
  633. package/CapTreeSelect/styles.module.scss.js +12 -0
  634. package/CapTreeSelect/styles.scss +11 -11
  635. package/CapTreeView/index.js +117 -160
  636. package/CapTreeView/styles.css +62 -0
  637. package/CapTreeView/styles.scss +15 -15
  638. package/CapTruncateList/index.js +60 -62
  639. package/CapTruncateList/messages.js +9 -6
  640. package/CapUnifiedSelect/CustomDropdown.js +189 -202
  641. package/CapUnifiedSelect/DropdownHeader.js +60 -35
  642. package/CapUnifiedSelect/components.js +58 -71
  643. package/CapUnifiedSelect/constants.js +24 -19
  644. package/CapUnifiedSelect/enhanceOptions.js +100 -123
  645. package/CapUnifiedSelect/index.js +288 -269
  646. package/CapUnifiedSelect/messages.js +24 -20
  647. package/CapUnifiedSelect/styles.module.css +651 -0
  648. package/CapUnifiedSelect/styles.module.scss.js +65 -0
  649. package/CapUnifiedSelect/styles.scss +79 -79
  650. package/CapUnifiedSelect/useCapUnifiedSelect.js +317 -310
  651. package/CapUnifiedSelect/useInfiniteScroll.js +98 -113
  652. package/CapUnifiedSelect/utils.js +95 -156
  653. package/CapUploader/index.js +13 -31
  654. package/CapUploader/styles.module.css +39 -0
  655. package/CapUploader/styles.module.scss.js +4 -0
  656. package/CapUserProfile/UserProfileTab.js +339 -316
  657. package/CapUserProfile/constants.js +108 -99
  658. package/CapUserProfile/index.js +115 -137
  659. package/CapUserProfile/messages.js +50 -46
  660. package/CapUserProfile/styles.module.css +77 -0
  661. package/CapUserProfile/styles.module.scss.js +19 -0
  662. package/CapUserProfile/styles.scss +18 -18
  663. package/CapUserProfile/utils.js +77 -174
  664. package/CapVerticalGroupTable/index.js +50 -61
  665. package/CapVerticalGroupTable/messages.js +9 -6
  666. package/CapVerticalGroupTable/style.js +11 -6
  667. package/CapVerticalGroupTable/styles.css +22 -0
  668. package/CapVerticalGroupTable/styles.scss +4 -4
  669. package/CapVirtualList/index.js +8 -16
  670. package/CapVirtualSelect/actions.js +13 -14
  671. package/CapVirtualSelect/constants.js +18 -12
  672. package/CapVirtualSelect/index.js +302 -316
  673. package/CapVirtualSelect/messages.js +10 -6
  674. package/CapVirtualSelect/reducer.js +9 -72
  675. package/CapVirtualSelect/selectors.js +13 -30
  676. package/CapVirtualSelect/styles.css +110 -0
  677. package/CapVirtualSelect/utils.js +7 -12
  678. package/ClearDataOnUnmountHoc/index.js +10 -10
  679. package/LocaleHoc/index.js +28 -29
  680. package/_virtual/_commonjsHelpers.js +8 -0
  681. package/_virtual/index.js +4 -0
  682. package/_virtual/moment-timezone.js +4 -0
  683. package/assets/HOCs/ComponentWithLabelHOC/index.js +113 -114
  684. package/assets/HOCs/ComponentWithLabelHOC/styles.module.css +143 -0
  685. package/assets/HOCs/ComponentWithLabelHOC/styles.module.scss.js +26 -0
  686. package/assets/HOCs/ComponentWithLabelHOC/styles.scss +7 -7
  687. package/assets/icons/add.js +17 -34
  688. package/assets/icons/back.js +9 -13
  689. package/assets/icons/calendar.js +16 -33
  690. package/assets/icons/capillary_logo.svg.js +4 -0
  691. package/assets/icons/capillary_logo_v2.png.js +4 -0
  692. package/assets/icons/check-filled.js +20 -17
  693. package/assets/icons/closeIcon.js +29 -38
  694. package/assets/icons/dropdownIcon.js +17 -32
  695. package/assets/icons/dynamic.js +16 -33
  696. package/assets/icons/index.js +36 -17
  697. package/assets/icons/info.js +29 -37
  698. package/assets/icons/logoBackground.js +14 -19
  699. package/assets/icons/message.js +20 -40
  700. package/assets/icons/more.js +5 -13
  701. package/assets/icons/outbound.js +16 -33
  702. package/assets/icons/searchIcon.js +16 -34
  703. package/assets/icons/selectedTick.js +17 -38
  704. package/assets/icons/survey.js +16 -34
  705. package/assets/icons/user.js +16 -33
  706. package/assets/icons/view.js +19 -36
  707. package/assets/images/EmptyStateIllustrationForPromos.png.js +4 -0
  708. package/assets/images/aiRA-icon.svg.js +4 -0
  709. package/assets/images/bootupPageCopilotIcon.svg.js +4 -0
  710. package/assets/images/cart.svg.js +4 -0
  711. package/assets/images/expiryErrorStateIllustration.svg.js +4 -0
  712. package/assets/images/featureUiNotEnabledIllustration.svg.js +4 -0
  713. package/assets/images/file-selector.svg.js +4 -0
  714. package/assets/images/group-3.svg.js +4 -0
  715. package/assets/images/offer.svg.js +4 -0
  716. package/assets/images/refreshErrorStateIllustration.svg.js +4 -0
  717. package/assets/images/repair-illustration.png.js +4 -0
  718. package/assets/images/sendIconDisabled.svg.js +4 -0
  719. package/assets/images/sendIconEnabled.svg.js +4 -0
  720. package/assets/svgIcons/Icons/Academy.js +23 -17
  721. package/assets/svgIcons/Icons/AcademyBackground.js +46 -45
  722. package/assets/svgIcons/Icons/Add.js +15 -14
  723. package/assets/svgIcons/Icons/AddMedia.js +21 -15
  724. package/assets/svgIcons/Icons/AddPhoto.js +21 -15
  725. package/assets/svgIcons/Icons/AddProfile.js +23 -17
  726. package/assets/svgIcons/Icons/AddUserBackground.js +50 -57
  727. package/assets/svgIcons/Icons/Ads.js +21 -15
  728. package/assets/svgIcons/Icons/AiraBotChat.js +243 -114
  729. package/assets/svgIcons/Icons/AiraBotDark.js +299 -159
  730. package/assets/svgIcons/Icons/AiraBotTitle.js +298 -148
  731. package/assets/svgIcons/Icons/AiraChatTitleBar.js +15 -46
  732. package/assets/svgIcons/Icons/AiraFAB.js +51 -44
  733. package/assets/svgIcons/Icons/AiraUserChat.js +53 -36
  734. package/assets/svgIcons/Icons/Alarm.js +21 -15
  735. package/assets/svgIcons/Icons/Alert.js +21 -15
  736. package/assets/svgIcons/Icons/AlertRed.js +49 -39
  737. package/assets/svgIcons/Icons/AlertWarning.js +24 -18
  738. package/assets/svgIcons/Icons/Android.js +15 -14
  739. package/assets/svgIcons/Icons/Api.js +31 -41
  740. package/assets/svgIcons/Icons/Apps.js +21 -15
  741. package/assets/svgIcons/Icons/ArrowDown.js +20 -14
  742. package/assets/svgIcons/Icons/ArrowFilled.js +46 -35
  743. package/assets/svgIcons/Icons/ArrowUp.js +26 -20
  744. package/assets/svgIcons/Icons/Attachment.js +21 -15
  745. package/assets/svgIcons/Icons/Attribution.js +20 -23
  746. package/assets/svgIcons/Icons/Back.js +21 -15
  747. package/assets/svgIcons/Icons/Badges.js +48 -37
  748. package/assets/svgIcons/Icons/Basket.js +21 -15
  749. package/assets/svgIcons/Icons/BehaviouralProfile.js +10 -43
  750. package/assets/svgIcons/Icons/Beta.js +8 -22
  751. package/assets/svgIcons/Icons/Bill.js +30 -39
  752. package/assets/svgIcons/Icons/BoldInfo.js +50 -40
  753. package/assets/svgIcons/Icons/Box.js +22 -16
  754. package/assets/svgIcons/Icons/Bulb.js +21 -15
  755. package/assets/svgIcons/Icons/Button.js +30 -39
  756. package/assets/svgIcons/Icons/Calendar.js +21 -15
  757. package/assets/svgIcons/Icons/CalendarActive.js +15 -14
  758. package/assets/svgIcons/Icons/Call.js +20 -14
  759. package/assets/svgIcons/Icons/CapillaryLogo.js +304 -345
  760. package/assets/svgIcons/Icons/Capture.js +21 -15
  761. package/assets/svgIcons/Icons/CarouselNormal.js +18 -18
  762. package/assets/svgIcons/Icons/CarouselSelected.js +18 -18
  763. package/assets/svgIcons/Icons/Carrot.js +15 -14
  764. package/assets/svgIcons/Icons/CartPromotion.js +21 -14
  765. package/assets/svgIcons/Icons/ChannelPriority.js +44 -43
  766. package/assets/svgIcons/Icons/Chart.js +21 -15
  767. package/assets/svgIcons/Icons/ChatBot.js +52 -41
  768. package/assets/svgIcons/Icons/ChatBubble.js +15 -14
  769. package/assets/svgIcons/Icons/CheckCircle.js +21 -15
  770. package/assets/svgIcons/Icons/CheckFilled.js +36 -29
  771. package/assets/svgIcons/Icons/CheckFilledDefault.js +15 -14
  772. package/assets/svgIcons/Icons/CheckFilledPlus.js +50 -49
  773. package/assets/svgIcons/Icons/ChevronDown.js +21 -15
  774. package/assets/svgIcons/Icons/ChevronLeft.js +21 -15
  775. package/assets/svgIcons/Icons/ChevronRight.js +21 -15
  776. package/assets/svgIcons/Icons/ChevronUp.js +21 -15
  777. package/assets/svgIcons/Icons/CircleDollar.js +23 -17
  778. package/assets/svgIcons/Icons/Click.js +28 -37
  779. package/assets/svgIcons/Icons/Clock.js +21 -15
  780. package/assets/svgIcons/Icons/Close.js +15 -14
  781. package/assets/svgIcons/Icons/Code.js +21 -15
  782. package/assets/svgIcons/Icons/Collapse2.js +22 -16
  783. package/assets/svgIcons/Icons/CollapseIcon.js +22 -16
  784. package/assets/svgIcons/Icons/Combine.js +26 -23
  785. package/assets/svgIcons/Icons/CommentMessage.js +21 -15
  786. package/assets/svgIcons/Icons/Communication.js +15 -14
  787. package/assets/svgIcons/Icons/Compare.js +22 -16
  788. package/assets/svgIcons/Icons/Connect.js +21 -15
  789. package/assets/svgIcons/Icons/Copy.js +21 -15
  790. package/assets/svgIcons/Icons/CriticalInfo.js +5 -18
  791. package/assets/svgIcons/Icons/CriticalWarning.js +24 -18
  792. package/assets/svgIcons/Icons/Data.js +21 -15
  793. package/assets/svgIcons/Icons/DefaultProfile.js +16 -15
  794. package/assets/svgIcons/Icons/Delay.js +21 -15
  795. package/assets/svgIcons/Icons/Delete.js +21 -15
  796. package/assets/svgIcons/Icons/Desktop.js +28 -37
  797. package/assets/svgIcons/Icons/Diamond.js +22 -16
  798. package/assets/svgIcons/Icons/DisLike.js +5 -16
  799. package/assets/svgIcons/Icons/DisneyHotstar.js +40 -40
  800. package/assets/svgIcons/Icons/Documentation.js +21 -15
  801. package/assets/svgIcons/Icons/Dollar.js +21 -15
  802. package/assets/svgIcons/Icons/DollarBackground.js +50 -57
  803. package/assets/svgIcons/Icons/Downgrade.js +15 -14
  804. package/assets/svgIcons/Icons/Download.js +21 -15
  805. package/assets/svgIcons/Icons/DraftFailed.js +43 -29
  806. package/assets/svgIcons/Icons/DraftPartiallyFailed.js +43 -29
  807. package/assets/svgIcons/Icons/Drag.js +21 -15
  808. package/assets/svgIcons/Icons/Draggable.js +22 -16
  809. package/assets/svgIcons/Icons/Earth.js +22 -16
  810. package/assets/svgIcons/Icons/Edit.js +21 -15
  811. package/assets/svgIcons/Icons/Email.js +9 -35
  812. package/assets/svgIcons/Icons/EmailFilled.js +42 -57
  813. package/assets/svgIcons/Icons/EnagementSplit.js +26 -23
  814. package/assets/svgIcons/Icons/End.js +25 -22
  815. package/assets/svgIcons/Icons/Enter.js +5 -16
  816. package/assets/svgIcons/Icons/Entry.js +26 -23
  817. package/assets/svgIcons/Icons/Error.js +28 -37
  818. package/assets/svgIcons/Icons/ErrorDot.js +16 -19
  819. package/assets/svgIcons/Icons/ErrorIndicator.js +40 -50
  820. package/assets/svgIcons/Icons/Exclude.js +50 -40
  821. package/assets/svgIcons/Icons/Exit.js +25 -22
  822. package/assets/svgIcons/Icons/ExitTrigger.js +11 -52
  823. package/assets/svgIcons/Icons/ExitTriggerFilled.js +11 -52
  824. package/assets/svgIcons/Icons/Expand2.js +22 -16
  825. package/assets/svgIcons/Icons/ExpandIcon.js +22 -16
  826. package/assets/svgIcons/Icons/Expander.js +22 -16
  827. package/assets/svgIcons/Icons/Extension.js +21 -15
  828. package/assets/svgIcons/Icons/Eye.js +21 -15
  829. package/assets/svgIcons/Icons/Facebook.js +28 -37
  830. package/assets/svgIcons/Icons/FacebookFilled.js +31 -23
  831. package/assets/svgIcons/Icons/FacebookReach.js +16 -33
  832. package/assets/svgIcons/Icons/File.js +21 -15
  833. package/assets/svgIcons/Icons/FileUpload.js +60 -50
  834. package/assets/svgIcons/Icons/Filled.js +23 -17
  835. package/assets/svgIcons/Icons/FilledDisLike.js +5 -16
  836. package/assets/svgIcons/Icons/FilledLike.js +5 -14
  837. package/assets/svgIcons/Icons/Filter.js +21 -15
  838. package/assets/svgIcons/Icons/Folder.js +28 -38
  839. package/assets/svgIcons/Icons/Footwear.js +22 -16
  840. package/assets/svgIcons/Icons/Forward.js +23 -17
  841. package/assets/svgIcons/Icons/Ftp.js +19 -18
  842. package/assets/svgIcons/Icons/FtpConnector.js +29 -17
  843. package/assets/svgIcons/Icons/Funnel.js +21 -15
  844. package/assets/svgIcons/Icons/Gallery.js +21 -15
  845. package/assets/svgIcons/Icons/GalleryIcon.js +5 -14
  846. package/assets/svgIcons/Icons/Gender.js +22 -16
  847. package/assets/svgIcons/Icons/Giftvoucher.js +23 -17
  848. package/assets/svgIcons/Icons/GoogleAd.js +40 -34
  849. package/assets/svgIcons/Icons/Graph.js +21 -15
  850. package/assets/svgIcons/Icons/Greetings.js +37 -37
  851. package/assets/svgIcons/Icons/Group.js +30 -39
  852. package/assets/svgIcons/Icons/GroupChat.js +21 -15
  853. package/assets/svgIcons/Icons/Groups.js +21 -15
  854. package/assets/svgIcons/Icons/GrowthGraph.js +21 -15
  855. package/assets/svgIcons/Icons/HeadphoneBackground.js +46 -45
  856. package/assets/svgIcons/Icons/Headphones.js +23 -17
  857. package/assets/svgIcons/Icons/Heart.js +15 -14
  858. package/assets/svgIcons/Icons/HeartPlus.js +26 -19
  859. package/assets/svgIcons/Icons/Help.js +24 -26
  860. package/assets/svgIcons/Icons/Home.js +23 -17
  861. package/assets/svgIcons/Icons/IaMascot.js +272 -134
  862. package/assets/svgIcons/Icons/Image.js +15 -14
  863. package/assets/svgIcons/Icons/ImageMessageNormal.js +22 -16
  864. package/assets/svgIcons/Icons/ImageMessageSelected.js +22 -16
  865. package/assets/svgIcons/Icons/InApp.js +54 -41
  866. package/assets/svgIcons/Icons/InProgress.js +27 -23
  867. package/assets/svgIcons/Icons/Info.js +21 -15
  868. package/assets/svgIcons/Icons/InfoWarning.js +9 -40
  869. package/assets/svgIcons/Icons/InfoWithError.js +51 -46
  870. package/assets/svgIcons/Icons/Integrations.js +52 -46
  871. package/assets/svgIcons/Icons/Intersect.js +24 -22
  872. package/assets/svgIcons/Icons/Ios.js +15 -14
  873. package/assets/svgIcons/Icons/JavaScript.js +21 -15
  874. package/assets/svgIcons/Icons/JoinLink.js +24 -18
  875. package/assets/svgIcons/Icons/Journey.js +21 -15
  876. package/assets/svgIcons/Icons/Json.js +35 -23
  877. package/assets/svgIcons/Icons/JumpIcon.js +22 -16
  878. package/assets/svgIcons/Icons/Lab.js +21 -15
  879. package/assets/svgIcons/Icons/Language.js +22 -16
  880. package/assets/svgIcons/Icons/Launch.js +28 -36
  881. package/assets/svgIcons/Icons/Leaf.js +22 -16
  882. package/assets/svgIcons/Icons/Library.js +22 -16
  883. package/assets/svgIcons/Icons/Lightning.js +15 -15
  884. package/assets/svgIcons/Icons/Like.js +5 -14
  885. package/assets/svgIcons/Icons/Line.js +21 -15
  886. package/assets/svgIcons/Icons/ListActive.js +15 -14
  887. package/assets/svgIcons/Icons/Location.js +15 -14
  888. package/assets/svgIcons/Icons/Lock.js +28 -36
  889. package/assets/svgIcons/Icons/Logout.js +15 -14
  890. package/assets/svgIcons/Icons/LoveFilled.js +38 -33
  891. package/assets/svgIcons/Icons/Loyalty.js +21 -15
  892. package/assets/svgIcons/Icons/LoyaltyBackground.js +50 -57
  893. package/assets/svgIcons/Icons/Mail.js +21 -15
  894. package/assets/svgIcons/Icons/Media.js +21 -15
  895. package/assets/svgIcons/Icons/Megaphone.js +15 -15
  896. package/assets/svgIcons/Icons/MegaphoneBackground.js +43 -56
  897. package/assets/svgIcons/Icons/MegaphoneFilled.js +21 -15
  898. package/assets/svgIcons/Icons/MemberCare.js +21 -15
  899. package/assets/svgIcons/Icons/Message.js +15 -15
  900. package/assets/svgIcons/Icons/MessageFilled.js +21 -15
  901. package/assets/svgIcons/Icons/MessageWithTransform.js +30 -39
  902. package/assets/svgIcons/Icons/Migrate.js +5 -16
  903. package/assets/svgIcons/Icons/Minimizer.js +22 -16
  904. package/assets/svgIcons/Icons/Minus.js +21 -15
  905. package/assets/svgIcons/Icons/Mobile.js +28 -36
  906. package/assets/svgIcons/Icons/Models.js +21 -15
  907. package/assets/svgIcons/Icons/MonitorBackground.js +49 -48
  908. package/assets/svgIcons/Icons/More.js +21 -15
  909. package/assets/svgIcons/Icons/MoreApplications.js +21 -15
  910. package/assets/svgIcons/Icons/Mpush.js +21 -15
  911. package/assets/svgIcons/Icons/MpushFilled.js +42 -57
  912. package/assets/svgIcons/Icons/MyLocation.js +25 -27
  913. package/assets/svgIcons/Icons/NotSent.js +28 -37
  914. package/assets/svgIcons/Icons/Note.js +24 -18
  915. package/assets/svgIcons/Icons/NoteTickMaterial.js +21 -15
  916. package/assets/svgIcons/Icons/NoteWithTick.js +21 -15
  917. package/assets/svgIcons/Icons/Notepad.js +21 -15
  918. package/assets/svgIcons/Icons/NotepadMaterial.js +18 -17
  919. package/assets/svgIcons/Icons/Notifications.js +21 -15
  920. package/assets/svgIcons/Icons/Nowhere.js +50 -40
  921. package/assets/svgIcons/Icons/Offer.js +21 -15
  922. package/assets/svgIcons/Icons/OfferWithColor.js +22 -16
  923. package/assets/svgIcons/Icons/OnlyIncentives.js +48 -37
  924. package/assets/svgIcons/Icons/OpenInNew.js +15 -14
  925. package/assets/svgIcons/Icons/OpenInNewLight.js +21 -15
  926. package/assets/svgIcons/Icons/Org.js +26 -23
  927. package/assets/svgIcons/Icons/OrgSettings.js +21 -15
  928. package/assets/svgIcons/Icons/PartnerProgram.js +5 -14
  929. package/assets/svgIcons/Icons/Pause.js +21 -15
  930. package/assets/svgIcons/Icons/Paused.js +24 -18
  931. package/assets/svgIcons/Icons/Performance.js +21 -15
  932. package/assets/svgIcons/Icons/Person.js +15 -14
  933. package/assets/svgIcons/Icons/PersonLove.js +30 -38
  934. package/assets/svgIcons/Icons/Personlaisation.js +21 -15
  935. package/assets/svgIcons/Icons/Play.js +21 -15
  936. package/assets/svgIcons/Icons/Plus.js +21 -15
  937. package/assets/svgIcons/Icons/Pointer.js +21 -15
  938. package/assets/svgIcons/Icons/Points.js +23 -17
  939. package/assets/svgIcons/Icons/PointsV1.js +22 -15
  940. package/assets/svgIcons/Icons/Premium.js +21 -15
  941. package/assets/svgIcons/Icons/PremiumColored.js +20 -28
  942. package/assets/svgIcons/Icons/ProductProfile.js +5 -18
  943. package/assets/svgIcons/Icons/Programs.js +21 -15
  944. package/assets/svgIcons/Icons/PromotionProfile.js +5 -14
  945. package/assets/svgIcons/Icons/RandomSplitBlock.js +20 -13
  946. package/assets/svgIcons/Icons/RbacLock.js +22 -16
  947. package/assets/svgIcons/Icons/Rcs.js +31 -41
  948. package/assets/svgIcons/Icons/Redirection.js +5 -15
  949. package/assets/svgIcons/Icons/Redis.js +46 -39
  950. package/assets/svgIcons/Icons/Referal.js +16 -34
  951. package/assets/svgIcons/Icons/Refresh.js +21 -15
  952. package/assets/svgIcons/Icons/RefreshCircle.js +24 -18
  953. package/assets/svgIcons/Icons/Reorder.js +28 -37
  954. package/assets/svgIcons/Icons/Reply.js +34 -29
  955. package/assets/svgIcons/Icons/Restore.js +22 -16
  956. package/assets/svgIcons/Icons/Retry.js +46 -36
  957. package/assets/svgIcons/Icons/Return.js +15 -14
  958. package/assets/svgIcons/Icons/Rewards.js +21 -15
  959. package/assets/svgIcons/Icons/RewardsOutline.js +23 -17
  960. package/assets/svgIcons/Icons/RichMessageNormal.js +22 -16
  961. package/assets/svgIcons/Icons/RichMessageSelected.js +22 -16
  962. package/assets/svgIcons/Icons/RichVideoNormal.js +33 -26
  963. package/assets/svgIcons/Icons/RichVideoSelected.js +33 -26
  964. package/assets/svgIcons/Icons/RightLeftArrow.js +22 -16
  965. package/assets/svgIcons/Icons/RightWrong.js +22 -16
  966. package/assets/svgIcons/Icons/Scenery.js +21 -15
  967. package/assets/svgIcons/Icons/Scope.js +30 -39
  968. package/assets/svgIcons/Icons/Search.js +15 -15
  969. package/assets/svgIcons/Icons/Send.js +21 -15
  970. package/assets/svgIcons/Icons/SendFilled.js +24 -21
  971. package/assets/svgIcons/Icons/Settings.js +21 -15
  972. package/assets/svgIcons/Icons/ShapeCopy.js +22 -16
  973. package/assets/svgIcons/Icons/Siren.js +28 -37
  974. package/assets/svgIcons/Icons/Sitemap.js +22 -16
  975. package/assets/svgIcons/Icons/SmallLink.js +25 -29
  976. package/assets/svgIcons/Icons/SmileyMessageNormal.js +26 -33
  977. package/assets/svgIcons/Icons/SmileyMessageSelected.js +22 -16
  978. package/assets/svgIcons/Icons/Sms.js +21 -15
  979. package/assets/svgIcons/Icons/SmsFilled.js +42 -58
  980. package/assets/svgIcons/Icons/Snapchat.js +41 -30
  981. package/assets/svgIcons/Icons/Sort.js +21 -15
  982. package/assets/svgIcons/Icons/SortUp.js +38 -40
  983. package/assets/svgIcons/Icons/Speaker.js +21 -15
  984. package/assets/svgIcons/Icons/Split.js +34 -24
  985. package/assets/svgIcons/Icons/SplitData.js +5 -16
  986. package/assets/svgIcons/Icons/Star.js +30 -39
  987. package/assets/svgIcons/Icons/Stop.js +21 -15
  988. package/assets/svgIcons/Icons/Store.js +22 -16
  989. package/assets/svgIcons/Icons/StoreTraffic.js +21 -15
  990. package/assets/svgIcons/Icons/SubtractLeft.js +27 -25
  991. package/assets/svgIcons/Icons/SubtractRight.js +18 -24
  992. package/assets/svgIcons/Icons/Sunset.js +24 -18
  993. package/assets/svgIcons/Icons/Survey.js +21 -15
  994. package/assets/svgIcons/Icons/SurveyBackground.js +51 -60
  995. package/assets/svgIcons/Icons/SurveyResponse.js +21 -15
  996. package/assets/svgIcons/Icons/Swap.js +22 -16
  997. package/assets/svgIcons/Icons/Sync.js +28 -37
  998. package/assets/svgIcons/Icons/Tablet.js +28 -37
  999. package/assets/svgIcons/Icons/Tag.js +15 -14
  1000. package/assets/svgIcons/Icons/Target.js +22 -16
  1001. package/assets/svgIcons/Icons/Task.js +15 -14
  1002. package/assets/svgIcons/Icons/Test.js +20 -14
  1003. package/assets/svgIcons/Icons/TestCheck.js +20 -14
  1004. package/assets/svgIcons/Icons/TestComplete.js +8 -25
  1005. package/assets/svgIcons/Icons/TestRunning.js +8 -23
  1006. package/assets/svgIcons/Icons/TextMessageNormal.js +22 -16
  1007. package/assets/svgIcons/Icons/TextMessageSelected.js +22 -16
  1008. package/assets/svgIcons/Icons/ThreeStarDark.js +40 -32
  1009. package/assets/svgIcons/Icons/ThreeStars.js +43 -43
  1010. package/assets/svgIcons/Icons/Tick.js +15 -14
  1011. package/assets/svgIcons/Icons/TickOutlined.js +24 -18
  1012. package/assets/svgIcons/Icons/Tiktok.js +50 -38
  1013. package/assets/svgIcons/Icons/TimerWarning.js +9 -40
  1014. package/assets/svgIcons/Icons/Tooltip.js +24 -24
  1015. package/assets/svgIcons/Icons/TopXChannel.js +28 -35
  1016. package/assets/svgIcons/Icons/Trigger.js +22 -16
  1017. package/assets/svgIcons/Icons/Trophy.js +11 -32
  1018. package/assets/svgIcons/Icons/Unicode.js +28 -38
  1019. package/assets/svgIcons/Icons/Union.js +18 -24
  1020. package/assets/svgIcons/Icons/Upload.js +21 -15
  1021. package/assets/svgIcons/Icons/User.js +21 -15
  1022. package/assets/svgIcons/Icons/UserAttributechange.js +38 -41
  1023. package/assets/svgIcons/Icons/UserCopy.js +39 -46
  1024. package/assets/svgIcons/Icons/Viber.js +24 -30
  1025. package/assets/svgIcons/Icons/Video.js +21 -15
  1026. package/assets/svgIcons/Icons/View.js +15 -14
  1027. package/assets/svgIcons/Icons/WaitEvent.js +53 -64
  1028. package/assets/svgIcons/Icons/WalletBackground.js +52 -58
  1029. package/assets/svgIcons/Icons/Warning.js +28 -37
  1030. package/assets/svgIcons/Icons/WarningCircle.js +24 -18
  1031. package/assets/svgIcons/Icons/WarningCircleFilled.js +33 -21
  1032. package/assets/svgIcons/Icons/Webhook.js +20 -13
  1033. package/assets/svgIcons/Icons/Wechat.js +21 -15
  1034. package/assets/svgIcons/Icons/WechatFilled.js +42 -57
  1035. package/assets/svgIcons/Icons/WechatOutline.js +30 -38
  1036. package/assets/svgIcons/Icons/Whatsapp.js +21 -15
  1037. package/assets/svgIcons/Icons/XEngage.js +35 -58
  1038. package/assets/svgIcons/Icons/YetToStart.js +22 -16
  1039. package/assets/svgIcons/Icons/Zalo.js +41 -33
  1040. package/assets/svgIcons/Icons/abTesting.js +9 -36
  1041. package/assets/svgIcons/Icons/percentCircle.js +7 -15
  1042. package/assets/svgIcons/Icons/sixDots.js +9 -32
  1043. package/assets/svgIcons/component.js +950 -626
  1044. package/en.json +1 -296
  1045. package/index.js +255 -129
  1046. package/package.json +12 -12
  1047. package/service/api.js +12 -22
  1048. package/service/index.js +4 -1
  1049. package/styled/index.js +148 -3
  1050. package/styles/_variables.js +319 -197
  1051. package/styles/datePickerCommon.css +77 -0
  1052. package/styles/datePickerCommon.scss +32 -32
  1053. package/translations/en.js +309 -306
  1054. package/translations/index.js +6 -3
  1055. package/translations/zh.js +43 -40
  1056. package/utils/compileHandlebars.js +45 -55
  1057. package/utils/dayjs.js +93 -290
  1058. package/utils/fonts.js +58 -134
  1059. package/utils/getCapThemeConfig.js +196 -250
  1060. package/utils/index.js +13 -57
  1061. package/utils/logDeprecationWarning.js +10 -6
  1062. package/CapActionBar/tests/CapActionBar.mockData.js +0 -114
  1063. package/CapActionBar/tests/CapActionBar.test.js +0 -353
  1064. package/CapActionBar/types.js +0 -1
  1065. package/CapAdvancedIcon/tests/index.test.js +0 -550
  1066. package/CapAdvancedIcon/tests/mockData.js +0 -55
  1067. package/CapAdvancedIcon/types.js +0 -1
  1068. package/CapAlert/tests/CapAlert.test.js +0 -467
  1069. package/CapAppNotEnabled/tests/CapAppNotEnabled.mockData.js +0 -10
  1070. package/CapAppNotEnabled/tests/CapAppNotEnabled.test.js +0 -178
  1071. package/CapAppNotEnabled/types.js +0 -1
  1072. package/CapAskAira/AudienceFilterBot/tests/index.test.js +0 -1193
  1073. package/CapAskAira/AudienceFilterBot/types.js +0 -1
  1074. package/CapAskAira/CapAiMediaGeneration/test/api.test.js +0 -43
  1075. package/CapAskAira/CapAiMediaGeneration/test/index.test.js +0 -204
  1076. package/CapAskAira/CapAiMediaGeneration/test/reducer.test.js +0 -33
  1077. package/CapAskAira/CapAiMediaGeneration/test/saga.test.js +0 -59
  1078. package/CapAskAira/CapAiMediaGeneration/test/selector.test.js +0 -73
  1079. package/CapAskAira/CapAiMediaGeneration/types.js +0 -1
  1080. package/CapAskAira/ConfigurationBot/PromptAttachmentButton.js +0 -40
  1081. package/CapAskAira/ConfigurationBot/test/PromptAttachmentButton.test.js +0 -96
  1082. package/CapAskAira/ConfigurationBot/test/index.test.js +0 -357
  1083. package/CapAskAira/ConfigurationBot/test/mockData.js +0 -49
  1084. package/CapAskAira/ConfigurationBot/test/util.test.js +0 -32
  1085. package/CapAskAira/ConfigurationBot/types.js +0 -1
  1086. package/CapAskAira/ContentGenerationBot/tests/index.test.js +0 -158
  1087. package/CapAskAira/ContentGenerationBot/tests/jsonAssembler.test.js +0 -96
  1088. package/CapAskAira/ContentGenerationBot/types.js +0 -1
  1089. package/CapAskAira/DocumentationBot/test/UtilComponents.test.js +0 -113
  1090. package/CapAskAira/DocumentationBot/test/index.test.js +0 -153
  1091. package/CapAskAira/DocumentationBot/types.js +0 -1
  1092. package/CapAskAira/DocumentationChatBot/test/api.test.js +0 -49
  1093. package/CapAskAira/DocumentationChatBot/test/index.test.js +0 -164
  1094. package/CapAskAira/DocumentationChatBot/test/reducer.test.js +0 -28
  1095. package/CapAskAira/DocumentationChatBot/test/saga.test.js +0 -59
  1096. package/CapAskAira/DocumentationChatBot/test/selector.test.js +0 -73
  1097. package/CapAskAira/DocumentationChatBot/types.js +0 -1
  1098. package/CapAskAira/RuleGenerationBot/tests/actions.test.js +0 -40
  1099. package/CapAskAira/RuleGenerationBot/tests/api.test.js +0 -95
  1100. package/CapAskAira/RuleGenerationBot/tests/index.test.js +0 -136
  1101. package/CapAskAira/RuleGenerationBot/tests/reducer.test.js +0 -137
  1102. package/CapAskAira/RuleGenerationBot/tests/saga.test.js +0 -110
  1103. package/CapAskAira/RuleGenerationBot/tests/selector.test.js +0 -82
  1104. package/CapAskAira/RuleGenerationBot/types.js +0 -1
  1105. package/CapAskAira/RuleSummarizationBot/tests/actions.test.js +0 -82
  1106. package/CapAskAira/RuleSummarizationBot/tests/api.test.js +0 -147
  1107. package/CapAskAira/RuleSummarizationBot/tests/index.test.js +0 -134
  1108. package/CapAskAira/RuleSummarizationBot/tests/mockData.js +0 -54
  1109. package/CapAskAira/RuleSummarizationBot/tests/reducer.test.js +0 -158
  1110. package/CapAskAira/RuleSummarizationBot/tests/saga.test.js +0 -206
  1111. package/CapAskAira/RuleSummarizationBot/tests/selector.test.js +0 -82
  1112. package/CapAskAira/RuleSummarizationBot/types.js +0 -1
  1113. package/CapAskAira/UtilComponents/tests/AiraContainer.test.js +0 -168
  1114. package/CapAskAira/UtilComponents/tests/ErrorBar.test.js +0 -48
  1115. package/CapAskAira/UtilComponents/tests/MultiLineInpuxBox.test.js +0 -158
  1116. package/CapAskAira/UtilComponents/tests/Notification.test.js +0 -44
  1117. package/CapAskAira/UtilComponents/tests/Popup.test.js +0 -176
  1118. package/CapAskAira/UtilComponents/tests/Tooltip.test.js +0 -32
  1119. package/CapAskAira/tests/CapAskAira.mockData.js +0 -25
  1120. package/CapAskAira/tests/CapAskAira.test.js +0 -91
  1121. package/CapAskAira/tests/util.test.js +0 -124
  1122. package/CapBanner/tests/CapBanner.mockData.js +0 -54
  1123. package/CapBanner/tests/CapBanner.test.js +0 -64
  1124. package/CapBanner/types.js +0 -1
  1125. package/CapBlock/tests/index.test.js +0 -279
  1126. package/CapBlock/types.js +0 -1
  1127. package/CapBorderedBox/tests/CapBorderedBox.mockData.js +0 -95
  1128. package/CapBorderedBox/tests/index.test.js +0 -314
  1129. package/CapBorderedBox/types.js +0 -1
  1130. package/CapButton/tests/CapButton.mockData.js +0 -19
  1131. package/CapButton/tests/CapButton.test.js +0 -664
  1132. package/CapButton/tests/index.test.js +0 -201
  1133. package/CapButton/types.js +0 -1
  1134. package/CapCSVFileUploader/tests/CapCSVFileUploader.mockData.js +0 -99
  1135. package/CapCSVFileUploader/tests/CapCSVFileUploader.test.js +0 -458
  1136. package/CapCSVFileUploader/types.js +0 -1
  1137. package/CapCalendarDatePicker/tests/index.test.js +0 -91
  1138. package/CapCalendarDatePicker/types.js +0 -1
  1139. package/CapCard/tests/CapCard.mockData.js +0 -88
  1140. package/CapCard/tests/index.test.js +0 -772
  1141. package/CapCard/types.js +0 -1
  1142. package/CapCardBox/tests/CapCardBox.mockData.js +0 -101
  1143. package/CapCardBox/tests/CapCardBox.test.js +0 -543
  1144. package/CapCardBox/types.js +0 -1
  1145. package/CapCarousel/tests/CapCarousel.mockData.js +0 -62
  1146. package/CapCarousel/tests/CapCarousel.test.js +0 -743
  1147. package/CapCarousel/types.js +0 -1
  1148. package/CapCheckbox/tests/CapCheckbox.test.js +0 -1012
  1149. package/CapCheckbox/tests/index.test.js +0 -143
  1150. package/CapCheckbox/types.js +0 -1
  1151. package/CapCollapsibleNavbar/tests/index.test.js +0 -54
  1152. package/CapColorPicker/tests/CapColorPicker.mockData.js +0 -21
  1153. package/CapColorPicker/tests/CapColorPicker.test.js +0 -344
  1154. package/CapColorPicker/types.js +0 -1
  1155. package/CapColoredTag/styles.js +0 -11
  1156. package/CapColoredTag/tests/CapColoredTag.mockData.js +0 -74
  1157. package/CapColoredTag/tests/CapColoredTag.test.js +0 -323
  1158. package/CapColoredTag/types.js +0 -1
  1159. package/CapColumn/tests/index.test.js +0 -92
  1160. package/CapColumn/types.js +0 -1
  1161. package/CapCondition/tests/ConditionCustomField.test.js +0 -333
  1162. package/CapCondition/tests/ConditionDate.test.js +0 -1982
  1163. package/CapCondition/tests/ConditionMultiSelect.test.js +0 -48
  1164. package/CapCondition/tests/ConditionMultiSelectTree.test.js +0 -49
  1165. package/CapCondition/tests/helper.test.js +0 -686
  1166. package/CapCondition/tests/index.test.js +0 -1116
  1167. package/CapConditionPreview/tests/index.test.js +0 -1501
  1168. package/CapConditionPreview/tests/mockData.js +0 -42
  1169. package/CapConditionPreview/types.js +0 -1
  1170. package/CapCustomCard/tests/CapCustomCard.mockData.js +0 -309
  1171. package/CapCustomCard/tests/CapCustomCard.test.js +0 -1079
  1172. package/CapCustomCard/types.js +0 -1
  1173. package/CapCustomCarousel/tests/index.test.js +0 -102
  1174. package/CapCustomCarousel/types.js +0 -1
  1175. package/CapCustomCheckboxList/tests/CapCustomCheckboxList.mockData.js +0 -139
  1176. package/CapCustomCheckboxList/tests/CapCustomCheckboxList.test.js +0 -547
  1177. package/CapCustomCheckboxList/types.js +0 -1
  1178. package/CapCustomList/tests/CapCustomList.mockData.js +0 -62
  1179. package/CapCustomList/tests/CapCustomList.test.js +0 -264
  1180. package/CapCustomList/types.js +0 -1
  1181. package/CapCustomSelect/tests/index.test.js +0 -509
  1182. package/CapCustomSelect/types.js +0 -1
  1183. package/CapDatePicker/tests/index.test.js +0 -421
  1184. package/CapDatePicker/types.js +0 -1
  1185. package/CapDateRangePicker/tests/CapDateRangePicker.compatibility.test.js +0 -292
  1186. package/CapDateRangePicker/tests/CapDateRangePicker.mockData.js +0 -17
  1187. package/CapDateRangePicker/tests/CapDateRangePicker.test.js +0 -287
  1188. package/CapDateRangePicker/tests/CapDateRangePicker.testUtils.js +0 -26
  1189. package/CapDateRangePicker/types.js +0 -1
  1190. package/CapDateTimePicker/tests/index.test.js +0 -244
  1191. package/CapDateTimePicker/types.js +0 -1
  1192. package/CapDateTimeRangePicker/tests/CapDateTimeRangePicker.test.js +0 -405
  1193. package/CapDateTimeRangePicker/tests/index.test.js +0 -1557
  1194. package/CapDateTimeRangePicker/types.js +0 -1
  1195. package/CapDivider/tests/CapDivider.mockData.js +0 -158
  1196. package/CapDivider/tests/index.test.js +0 -618
  1197. package/CapDivider/types.js +0 -1
  1198. package/CapDnDGraph/mockdata.js +0 -3046
  1199. package/CapDnDGraph/tests/utils.test.js +0 -72
  1200. package/CapDndGraphSidebar/tests/index.test.js +0 -139
  1201. package/CapDndGraphSidebar/tests/sideBarIcon.test.js +0 -77
  1202. package/CapDragReorder/ItemTypes.js +0 -3
  1203. package/CapDragReorder/tests/index.test.js +0 -47
  1204. package/CapDrawer/tests/CapDrawer.mockData.js +0 -135
  1205. package/CapDrawer/tests/CapDrawer.test.js +0 -313
  1206. package/CapDrawer/types.js +0 -1
  1207. package/CapDropdown/tests/CapDropdown.mockData.js +0 -89
  1208. package/CapDropdown/tests/CapDropdown.test.js +0 -1134
  1209. package/CapDropdown/tests/index.test.js +0 -154
  1210. package/CapDropdown/types.js +0 -1
  1211. package/CapEmptyDivWithBorder/tests/CapEmptyDivWithBorder.mockData.js +0 -92
  1212. package/CapEmptyDivWithBorder/tests/CapEmptyDivWithBorder.test.js +0 -446
  1213. package/CapEmptyDivWithBorder/types.js +0 -1
  1214. package/CapError/tests/CapError.mockData.js +0 -45
  1215. package/CapError/tests/index.test.js +0 -536
  1216. package/CapError/types.js +0 -1
  1217. package/CapErrorBoundary/tests/CapErrorBoundary.mockData.js +0 -46
  1218. package/CapErrorBoundary/tests/CapErrorBoundary.test.js +0 -493
  1219. package/CapErrorBoundary/types.js +0 -1
  1220. package/CapErrorStateIllustration/tests/CapErrorStateIllustration.mockData.js +0 -58
  1221. package/CapErrorStateIllustration/tests/CapErrorStateIllustration.test.js +0 -294
  1222. package/CapErrorStateIllustration/types.js +0 -1
  1223. package/CapEventCalendar/tests/CalendarCanvas.test.js +0 -235
  1224. package/CapEventCalendar/tests/CalendarCanvasUtils.test.js +0 -137
  1225. package/CapEventCalendar/tests/CapEventCalendar.test.js +0 -123
  1226. package/CapEventCalendar/tests/utils.test.js +0 -14
  1227. package/CapExpressionEditor/js/expressionEditor.js +0 -1505
  1228. package/CapExpressionEditor/js/fixGrammar.test.js +0 -221
  1229. package/CapExpressionEditor/js/pickers.js +0 -94
  1230. package/CapExpressionEditor/js/pickers.test.js +0 -153
  1231. package/CapExpressionEditor/tests/CapExpressionEditor.mockData.js +0 -24
  1232. package/CapExpressionEditor/tests/CapExpressionEditor.test.js +0 -354
  1233. package/CapExpressionEditor/types.js +0 -1
  1234. package/CapForm/tests/CapForm.mockData.js +0 -94
  1235. package/CapForm/tests/CapForm.test.js +0 -684
  1236. package/CapForm/tests/index.test.js +0 -118
  1237. package/CapForm/types.js +0 -1
  1238. package/CapFormItem/tests/CapFormItem.mockData.js +0 -63
  1239. package/CapFormItem/tests/index.test.js +0 -649
  1240. package/CapFormItem/types.js +0 -1
  1241. package/CapGraph/tests/CapGraph.mockData.js +0 -45
  1242. package/CapGraph/tests/index.test.js +0 -119
  1243. package/CapGraph/types.js +0 -1
  1244. package/CapHamburgerMenu/tests/CapHamburgerMenu.mockData.js +0 -123
  1245. package/CapHamburgerMenu/tests/index.test.js +0 -657
  1246. package/CapHamburgerMenu/types.js +0 -1
  1247. package/CapHeader/tests/index.test.js +0 -334
  1248. package/CapHeader/types.js +0 -1
  1249. package/CapHeading/tests/CapHeading.mockData.js +0 -72
  1250. package/CapHeading/tests/CapHeading.test.js +0 -677
  1251. package/CapHeading/tests/index.test.js +0 -657
  1252. package/CapHeading/types.js +0 -1
  1253. package/CapHierarchyComponent/tests/index.test.js +0 -84
  1254. package/CapIcon/tests/index.test.js +0 -366
  1255. package/CapIcon/types.js +0 -1
  1256. package/CapIllustration/tests/CapIllustration.mockData.js +0 -74
  1257. package/CapIllustration/tests/index.test.js +0 -244
  1258. package/CapIllustration/types.js +0 -1
  1259. package/CapImage/tests/CapImage.mockData.js +0 -54
  1260. package/CapImage/tests/index.test.js +0 -234
  1261. package/CapImage/types.js +0 -1
  1262. package/CapImportMFEComponent/tests/CapImportMFEComponent.mockData.js +0 -61
  1263. package/CapImportMFEComponent/tests/CapImportMFEComponent.test.js +0 -64
  1264. package/CapImportMFEComponent/types.js +0 -1
  1265. package/CapInfoNote/tests/CapInfoNote.mockData.js +0 -50
  1266. package/CapInfoNote/tests/index.test.js +0 -379
  1267. package/CapInfoNote/types.js +0 -1
  1268. package/CapInput/messages.js +0 -25
  1269. package/CapInput/tests/CapInput.mockData.js +0 -90
  1270. package/CapInput/tests/CapInput.test.js +0 -796
  1271. package/CapInput/tests/Number.test.js +0 -139
  1272. package/CapInput/tests/Search.test.js +0 -133
  1273. package/CapInput/tests/TextArea.test.js +0 -152
  1274. package/CapInput/tests/index.test.js +0 -149
  1275. package/CapInput/tests/messages.test.js +0 -33
  1276. package/CapInput/types.js +0 -1
  1277. package/CapLabel/tests/CapLabel.mockData.js +0 -74
  1278. package/CapLabel/tests/CapLabel.test.js +0 -621
  1279. package/CapLabel/tests/index.test.js +0 -194
  1280. package/CapLabel/types.js +0 -1
  1281. package/CapLanguageProvider/index.d.js +0 -1
  1282. package/CapLanguageProvider/saga.js +0 -56
  1283. package/CapLanguageProvider/tests/CapLanguageProvider.mockData.js +0 -52
  1284. package/CapLanguageProvider/tests/CapLanguageProvider.test.js +0 -405
  1285. package/CapLanguageProvider/tests/CapLanguageProvider.testHelpers.js +0 -61
  1286. package/CapLanguageProvider/tests/CapLanguageProvider.useCases.test.js +0 -350
  1287. package/CapLanguageProvider/tests/actions.test.js +0 -104
  1288. package/CapLanguageProvider/tests/index.test.js +0 -164
  1289. package/CapLanguageProvider/tests/locale.test.js +0 -20
  1290. package/CapLanguageProvider/tests/reducer.test.js +0 -187
  1291. package/CapLanguageProvider/tests/saga.test.js +0 -174
  1292. package/CapLanguageProvider/tests/selector.test.js +0 -122
  1293. package/CapLanguageProvider/types.js +0 -1
  1294. package/CapLevelGraphRenderer/tests/CapLevelGraphRenderer.mockData.js +0 -182
  1295. package/CapLevelGraphRenderer/tests/CapLevelGraphRenderer.test.js +0 -522
  1296. package/CapLevelGraphRenderer/tests/Tooltip.test.js +0 -123
  1297. package/CapLevelGraphRenderer/types.js +0 -1
  1298. package/CapLink/tests/CapLink.mockData.js +0 -65
  1299. package/CapLink/tests/index.test.js +0 -141
  1300. package/CapLink/types.js +0 -1
  1301. package/CapList/tests/CapList.mockData.js +0 -33
  1302. package/CapList/tests/CapList.test.js +0 -657
  1303. package/CapList/types.js +0 -1
  1304. package/CapListLayout/tests/CapListLayout.mockData.js +0 -43
  1305. package/CapListLayout/tests/CapListLayout.test.js +0 -50
  1306. package/CapListLayout/types.js +0 -1
  1307. package/CapLogin/tests/CapLogin.mockData.js +0 -55
  1308. package/CapLogin/tests/CapLogin.test.js +0 -194
  1309. package/CapLogin/types.js +0 -1
  1310. package/CapMediaPreview/tests/index.test.js +0 -127
  1311. package/CapMediaPreview/tests/mockData.js +0 -17
  1312. package/CapMenu/tests/CapMenu.mockData.js +0 -132
  1313. package/CapMenu/tests/CapMenu.test.js +0 -454
  1314. package/CapMenu/tests/index.test.js +0 -171
  1315. package/CapMenu/types.js +0 -1
  1316. package/CapMobileDatePicker/tests/index.test.js +0 -11
  1317. package/CapMobileDateRangePicker/ReactMobileDatePicker.js +0 -1045
  1318. package/CapModal/tests/CapModal.mockData.js +0 -62
  1319. package/CapModal/tests/index.test.js +0 -456
  1320. package/CapModal/types.js +0 -1
  1321. package/CapMultiSelect/tests/CapMultiSelect.mockData.js +0 -44
  1322. package/CapMultiSelect/tests/index.test.js +0 -219
  1323. package/CapMultiSelect/types.js +0 -1
  1324. package/CapMultiSelectDatePicker/tests/index.test.js +0 -23
  1325. package/CapMultiSelectDatePicker/types.js +0 -1
  1326. package/CapMultiSelectWithTree/tests/index.test.js +0 -422
  1327. package/CapMultiplePath/mockdata.js +0 -88
  1328. package/CapMultiplePath/tests/index.test.js +0 -382
  1329. package/CapNavigation/mockdata.js +0 -413
  1330. package/CapNavigation/tests/CapNavigation.mockData.js +0 -96
  1331. package/CapNavigation/tests/CapNavigation.test.js +0 -498
  1332. package/CapNavigation/tests/index.test.js +0 -229
  1333. package/CapNavigation/types.js +0 -1
  1334. package/CapNotification/tests/CapNotification.mockData.js +0 -35
  1335. package/CapNotification/tests/index.test.js +0 -137
  1336. package/CapNotification/types.js +0 -1
  1337. package/CapNotificationDropdown/tests/CapNotificationDropdown.mockData.js +0 -121
  1338. package/CapNotificationDropdown/tests/CapNotificationDropdown.test.js +0 -344
  1339. package/CapNotificationDropdown/types.js +0 -1
  1340. package/CapPopover/tests/CapPopover.mockData.js +0 -35
  1341. package/CapPopover/tests/index.test.js +0 -165
  1342. package/CapPopover/types.js +0 -1
  1343. package/CapPopoverTree/tests/index.test.js +0 -119
  1344. package/CapPopoverTree/tests/mockData.js +0 -37
  1345. package/CapProgress/tests/CapProgress.mockData.js +0 -121
  1346. package/CapProgress/tests/index.test.js +0 -216
  1347. package/CapProgress/types.js +0 -1
  1348. package/CapRadio/tests/index.test.js +0 -159
  1349. package/CapRadio/types.js +0 -1
  1350. package/CapRadioButton/tests/CapRadioButton.mockData.js +0 -44
  1351. package/CapRadioButton/tests/index.test.js +0 -494
  1352. package/CapRadioButton/types.js +0 -1
  1353. package/CapRadioCard/tests/CapRadioCard.mockData.js +0 -116
  1354. package/CapRadioCard/tests/index.test.js +0 -148
  1355. package/CapRadioCard/types.js +0 -1
  1356. package/CapRadioGroup/tests/CapRadioGroup.mockData.js +0 -117
  1357. package/CapRadioGroup/tests/index.test.js +0 -391
  1358. package/CapRadioGroup/types.js +0 -1
  1359. package/CapReorderComponent/tests/CapReorderComponent.mockData.js +0 -48
  1360. package/CapReorderComponent/tests/index.test.js +0 -841
  1361. package/CapReorderComponent/types.js +0 -1
  1362. package/CapRoadMap/tests/CapRoadMap.mockData.js +0 -74
  1363. package/CapRoadMap/tests/CapRoadMap.test.js +0 -159
  1364. package/CapRoadMap/types.js +0 -1
  1365. package/CapRow/tests/index.test.js +0 -383
  1366. package/CapRow/types.js +0 -1
  1367. package/CapSKUUploader/tests/CapSKUUploader.mockData.js +0 -106
  1368. package/CapSKUUploader/tests/CapSKUUploader.test.js +0 -414
  1369. package/CapSKUUploader/types.js +0 -1
  1370. package/CapSecondaryTopBar/tests/CapSecondaryTopBar.mockData.js +0 -144
  1371. package/CapSecondaryTopBar/tests/index.test.js +0 -148
  1372. package/CapSecondaryTopBar/types.js +0 -1
  1373. package/CapSelect/tests/CapSelect.mockData.js +0 -61
  1374. package/CapSelect/tests/index.test.js +0 -447
  1375. package/CapSelect/types.js +0 -1
  1376. package/CapSelectFilter/tests/CapSelectFilter.mockData.js +0 -40
  1377. package/CapSelectFilter/tests/index.test.js +0 -330
  1378. package/CapSelectFilter/types.js +0 -1
  1379. package/CapShape/tests/CapShape.mockData.js +0 -36
  1380. package/CapShape/tests/index.test.js +0 -482
  1381. package/CapShape/types.js +0 -1
  1382. package/CapSideBar/tests/CapSideBar.mockData.js +0 -209
  1383. package/CapSideBar/tests/MenuSearch.test.js +0 -304
  1384. package/CapSideBar/tests/index.test.js +0 -324
  1385. package/CapSideBar/types.js +0 -1
  1386. package/CapSkeleton/tests/index.test.js +0 -128
  1387. package/CapSkeleton/types.js +0 -1
  1388. package/CapSlideBox/tests/CapSlideBox.mockData.js +0 -65
  1389. package/CapSlideBox/tests/CapSlideBox.test.js +0 -494
  1390. package/CapSlideBox/types.js +0 -1
  1391. package/CapSlider/tests/CapSlider.mockData.js +0 -35
  1392. package/CapSlider/tests/index.test.js +0 -428
  1393. package/CapSlider/types.js +0 -1
  1394. package/CapSnackBar/tests/CapSnackBar.mockData.js +0 -51
  1395. package/CapSnackBar/tests/CapSnackBar.test.js +0 -364
  1396. package/CapSnackBar/types.js +0 -1
  1397. package/CapSomethingWentWrong/tests/CapSomethingWentWrong.mockData.js +0 -27
  1398. package/CapSomethingWentWrong/tests/CapSomethingWentWrong.test.js +0 -87
  1399. package/CapSomethingWentWrong/types.js +0 -1
  1400. package/CapSpin/tests/index.test.js +0 -113
  1401. package/CapSpin/types.js +0 -1
  1402. package/CapSplit/tests/index.test.js +0 -80
  1403. package/CapSplit/tests/mockData.js +0 -62
  1404. package/CapSplit/types.js +0 -1
  1405. package/CapStaticTemplates/tests/index.test.js +0 -119
  1406. package/CapStaticTemplates/tests/mockData.js +0 -39
  1407. package/CapStatisticCard/tests/CapStatisticCard.mockData.js +0 -26
  1408. package/CapStatisticCard/tests/CapStatisticCard.test.js +0 -104
  1409. package/CapStatisticCard/types.js +0 -1
  1410. package/CapStatus/tests/CapStatus.mockData.js +0 -56
  1411. package/CapStatus/tests/CapStatus.test.js +0 -298
  1412. package/CapStatus/types.js +0 -1
  1413. package/CapSteps/tests/CapSteps.mockData.js +0 -71
  1414. package/CapSteps/tests/index.test.js +0 -157
  1415. package/CapSteps/types.js +0 -1
  1416. package/CapStepsAccordian/tests/CapStepsAccordian.mockData.js +0 -145
  1417. package/CapStepsAccordian/tests/CapStepsAccordian.test.js +0 -587
  1418. package/CapStepsAccordian/tests/index.test.js +0 -43
  1419. package/CapStepsAccordian/types.js +0 -1
  1420. package/CapSupportVideosWrapper/tests/ResizablePIP.test.js +0 -460
  1421. package/CapSupportVideosWrapper/tests/index.test.js +0 -148
  1422. package/CapSupportVideosWrapper/tests/utils.test.js +0 -40
  1423. package/CapSupportVideosWrapper/types.js +0 -1
  1424. package/CapSwitch/tests/index.test.js +0 -119
  1425. package/CapSwitch/types.js +0 -1
  1426. package/CapTab/tests/CapTab.mockData.js +0 -89
  1427. package/CapTab/tests/CapTab.test.js +0 -1168
  1428. package/CapTab/tests/index.test.js +0 -223
  1429. package/CapTab/types.js +0 -1
  1430. package/CapTabV3/tests/CapTabV3.mockData.js +0 -190
  1431. package/CapTabV3/tests/CapTabV3.test.js +0 -586
  1432. package/CapTabV3/tests/index.test.js +0 -29
  1433. package/CapTabV3/types.js +0 -1
  1434. package/CapTable/loadable.js +0 -11
  1435. package/CapTable/tests/CapTable.mockData.js +0 -49
  1436. package/CapTable/tests/CapTable.test.js +0 -622
  1437. package/CapTable/tests/index.test.js +0 -331
  1438. package/CapTable/tests/loadable.test.js +0 -35
  1439. package/CapTable/types.js +0 -1
  1440. package/CapTag/tests/CapTag.mockData.js +0 -22
  1441. package/CapTag/tests/index.test.js +0 -67
  1442. package/CapTag/types.js +0 -1
  1443. package/CapTagDropdown/tests/index.test.js +0 -236
  1444. package/CapTagDropdown/types.js +0 -1
  1445. package/CapTimePicker/tests/CapTimePicker.mockData.js +0 -54
  1446. package/CapTimePicker/tests/index.test.js +0 -133
  1447. package/CapTimePicker/types.js +0 -1
  1448. package/CapTimeline/constants.js +0 -2
  1449. package/CapTimeline/tests/CapTimelineCard.test.js +0 -137
  1450. package/CapTimeline/tests/CapTimelinePanesWrapper.test.js +0 -78
  1451. package/CapTimeline/tests/index.test.js +0 -47
  1452. package/CapTimelineNested/tests/CapTimelineCard.test.js +0 -132
  1453. package/CapTimelineNested/tests/CapTimelinePanesWrapper.test.js +0 -52
  1454. package/CapTimelineNested/tests/NestedCard.test.js +0 -56
  1455. package/CapTimelineNested/tests/NestedCardParent.test.js +0 -65
  1456. package/CapTimelineNested/tests/index.test.js +0 -64
  1457. package/CapTimelineNested/tests/mockData.js +0 -137
  1458. package/CapTooltip/tests/index.test.js +0 -287
  1459. package/CapTooltip/types.js +0 -1
  1460. package/CapTooltipWithInfo/tests/CapTooltipWithInfo.mockData.js +0 -76
  1461. package/CapTooltipWithInfo/tests/index.test.js +0 -496
  1462. package/CapTooltipWithInfo/types.js +0 -1
  1463. package/CapTopBar/mockdata.js +0 -413
  1464. package/CapTopBar/tests/index.test.js +0 -635
  1465. package/CapTopBar/tests/utils.test.js +0 -183
  1466. package/CapTopBar/types.js +0 -1
  1467. package/CapTree/tests/CapTree.mockData.js +0 -81
  1468. package/CapTree/tests/CapTree.test.js +0 -544
  1469. package/CapTree/types.js +0 -1
  1470. package/CapTreeSelect/tests/CapTreeSelect.mockData.js +0 -131
  1471. package/CapTreeSelect/tests/index.test.js +0 -351
  1472. package/CapTreeSelect/types.js +0 -1
  1473. package/CapTreeView/tests/index.test.js +0 -72
  1474. package/CapTruncateList/tests/CapTruncateList.mockData.js +0 -8
  1475. package/CapTruncateList/tests/CapTruncateList.test.js +0 -250
  1476. package/CapTruncateList/types.js +0 -1
  1477. package/CapUnifiedSelect/testData.js +0 -159
  1478. package/CapUnifiedSelect/tests/index.test.js +0 -2988
  1479. package/CapUnifiedSelect/types.js +0 -1
  1480. package/CapUploader/tests/CapUploader.mockData.js +0 -139
  1481. package/CapUploader/tests/CapUploader.test.js +0 -449
  1482. package/CapUploader/types.js +0 -1
  1483. package/CapUserProfile/mockData.js +0 -492
  1484. package/CapUserProfile/tests/CapUserProfile.mockData.js +0 -60
  1485. package/CapUserProfile/tests/CapUserProfile.test.js +0 -421
  1486. package/CapUserProfile/tests/UserProfileTab.test.js +0 -308
  1487. package/CapUserProfile/tests/index.test.js +0 -122
  1488. package/CapUserProfile/tests/utils.test.js +0 -362
  1489. package/CapUserProfile/types.js +0 -1
  1490. package/CapVerticalGroupTable/tests/index.test.js +0 -70
  1491. package/CapVirtualList/tests/index.test.js +0 -94
  1492. package/CapVirtualList/types.js +0 -1
  1493. package/CapVirtualSelect/saga.js +0 -122
  1494. package/CapVirtualSelect/tests/index.test.js +0 -211
  1495. package/CapVirtualSelect/tests/mockData.js +0 -51
  1496. package/CapVirtualSelect/tests/reducer.test.js +0 -266
  1497. package/CapVirtualSelect/tests/saga.test.js +0 -256
  1498. package/CapVirtualSelect/tests/selector.test.js +0 -73
  1499. package/CapVirtualSelect/tests/utils.test.js +0 -42
  1500. package/LocaleHoc/tests/index.test.js +0 -41
  1501. package/assets/HOCs/ComponentWithLabelHOC/types.js +0 -1
  1502. package/assets/HOCs/index.js +0 -1
  1503. package/assets/svgIcons/Icons/index.js +0 -1
  1504. package/assets/svgIcons/Icons/tests/icons.test.js +0 -30
  1505. package/assets/svgIcons/index.d.js +0 -0
  1506. package/assets/svgIcons/index.js +0 -324
  1507. package/assets/svgIcons/tests/component.test.js +0 -252
  1508. package/service/api.types.js +0 -1
  1509. package/service/tests/api.test.js +0 -88
  1510. package/styled/variables.js +0 -3
  1511. package/styles.d.js +0 -0
  1512. package/translations/en.d.js +0 -1
  1513. package/utils/dayjs.types.js +0 -1
  1514. package/utils/fonts.test.js +0 -84
  1515. package/utils/styles.js +0 -21
  1516. package/utils/tests/dayjs.test.js +0 -1341
@@ -1,6 +1,4 @@
1
- /* eslint-disable */
2
-
3
- export default {
1
+ const defaultGrammar = {
4
2
  "types": {
5
3
  "date": {
6
4
  "form": "object",
@@ -10,9 +8,11 @@ export default {
10
8
  "def": {
11
9
  "form": "function",
12
10
  "returnType": "integer",
13
- "params": [{
14
- "type": "date"
15
- }]
11
+ "params": [
12
+ {
13
+ "type": "date"
14
+ }
15
+ ]
16
16
  }
17
17
  },
18
18
  "isNotNull": {
@@ -40,20 +40,25 @@ export default {
40
40
  "def": {
41
41
  "form": "function",
42
42
  "returnType": "boolean",
43
- "params": [{
44
- "type": "integer"
45
- }, {
46
- "type": "integer"
47
- }]
43
+ "params": [
44
+ {
45
+ "type": "integer"
46
+ },
47
+ {
48
+ "type": "integer"
49
+ }
50
+ ]
48
51
  }
49
52
  },
50
53
  "daysDiffFromString": {
51
54
  "def": {
52
55
  "form": "function",
53
56
  "returnType": "integer",
54
- "params": [{
55
- "type": "string"
56
- }]
57
+ "params": [
58
+ {
59
+ "type": "string"
60
+ }
61
+ ]
57
62
  }
58
63
  },
59
64
  "isWeekend": {
@@ -67,15 +72,20 @@ export default {
67
72
  "def": {
68
73
  "form": "function",
69
74
  "returnType": "boolean",
70
- "params": [{
71
- "type": "integer"
72
- }, {
73
- "type": "integer"
74
- }, {
75
- "type": "integer"
76
- }, {
77
- "type": "integer"
78
- }]
75
+ "params": [
76
+ {
77
+ "type": "integer"
78
+ },
79
+ {
80
+ "type": "integer"
81
+ },
82
+ {
83
+ "type": "integer"
84
+ },
85
+ {
86
+ "type": "integer"
87
+ }
88
+ ]
79
89
  }
80
90
  },
81
91
  "isWeekday": {
@@ -117,35 +127,53 @@ export default {
117
127
  "def": {
118
128
  "form": "function",
119
129
  "returnType": "boolean",
120
- "params": [{
121
- "type": "integer"
122
- }, {
123
- "type": "integer"
124
- }, {
125
- "type": "integer"
126
- }, {
127
- "type": "integer"
128
- }, {
129
- "type": "integer"
130
- }, {
131
- "type": "integer"
132
- }]
130
+ "params": [
131
+ {
132
+ "type": "integer"
133
+ },
134
+ {
135
+ "type": "integer"
136
+ },
137
+ {
138
+ "type": "integer"
139
+ },
140
+ {
141
+ "type": "integer"
142
+ },
143
+ {
144
+ "type": "integer"
145
+ },
146
+ {
147
+ "type": "integer"
148
+ }
149
+ ]
133
150
  }
134
151
  },
135
152
  "daysDiff": {
136
153
  "def": {
137
154
  "form": "function",
138
155
  "returnType": "integer",
139
- "params": [{
140
- "type": "date"
141
- }]
156
+ "params": [
157
+ {
158
+ "type": "date"
159
+ }
160
+ ]
142
161
  }
143
162
  }
144
163
  }
145
164
  },
146
165
  "EEnum__ECustomerProfileSourceType": {
147
166
  "form": "enum",
148
- "values": ["Facebook", "WEB_ENGAGE", "WECHAT", "MARTJACK", "JD", "ECOMMERCE", "LINE", "INSTORE"]
167
+ "values": [
168
+ "Facebook",
169
+ "WEB_ENGAGE",
170
+ "WECHAT",
171
+ "MARTJACK",
172
+ "JD",
173
+ "ECOMMERCE",
174
+ "LINE",
175
+ "INSTORE"
176
+ ]
149
177
  },
150
178
  "string": {
151
179
  "form": "object",
@@ -162,9 +190,11 @@ export default {
162
190
  "def": {
163
191
  "form": "function",
164
192
  "returnType": "boolean",
165
- "params": [{
166
- "type": "string"
167
- }]
193
+ "params": [
194
+ {
195
+ "type": "string"
196
+ }
197
+ ]
168
198
  }
169
199
  },
170
200
  "isNull": {
@@ -206,9 +236,11 @@ export default {
206
236
  "def": {
207
237
  "form": "function",
208
238
  "returnType": "boolean",
209
- "params": [{
210
- "type": "string"
211
- }]
239
+ "params": [
240
+ {
241
+ "type": "string"
242
+ }
243
+ ]
212
244
  }
213
245
  }
214
246
  }
@@ -375,253 +407,317 @@ export default {
375
407
  "def": {
376
408
  "form": "function",
377
409
  "returnType": "real",
378
- "params": [{
379
- "type": "string"
380
- }]
410
+ "params": [
411
+ {
412
+ "type": "string"
413
+ }
414
+ ]
381
415
  }
382
416
  },
383
417
  "basketItemDiscountSum": {
384
418
  "def": {
385
419
  "form": "function",
386
420
  "returnType": "real",
387
- "params": [{
388
- "type": "EEnum__InvAttr"
389
- }, {
390
- "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
391
- }]
421
+ "params": [
422
+ {
423
+ "type": "EEnum__InvAttr"
424
+ },
425
+ {
426
+ "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
427
+ }
428
+ ]
392
429
  }
393
430
  },
394
431
  "tenderCombinationRegexSum": {
395
432
  "def": {
396
433
  "form": "function",
397
434
  "returnType": "real",
398
- "params": [{
399
- "type": "string"
400
- }]
435
+ "params": [
436
+ {
437
+ "type": "string"
438
+ }
439
+ ]
401
440
  }
402
441
  },
403
442
  "basketCountRegexBrand": {
404
443
  "def": {
405
444
  "form": "function",
406
445
  "returnType": "integer",
407
- "params": [{
408
- "type": "string"
409
- }]
446
+ "params": [
447
+ {
448
+ "type": "string"
449
+ }
450
+ ]
410
451
  }
411
452
  },
412
453
  "basketQtyRegexCategory": {
413
454
  "def": {
414
455
  "form": "function",
415
456
  "returnType": "real",
416
- "params": [{
417
- "type": "string"
418
- }]
457
+ "params": [
458
+ {
459
+ "type": "string"
460
+ }
461
+ ]
419
462
  }
420
463
  },
421
464
  "basketCountRegexCategory": {
422
465
  "def": {
423
466
  "form": "function",
424
467
  "returnType": "integer",
425
- "params": [{
426
- "type": "string"
427
- }]
468
+ "params": [
469
+ {
470
+ "type": "string"
471
+ }
472
+ ]
428
473
  }
429
474
  },
430
475
  "basketCount": {
431
476
  "def": {
432
477
  "form": "function",
433
478
  "returnType": "integer",
434
- "params": [{
435
- "type": "EEnum__InvAttr"
436
- }, {
437
- "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
438
- }]
479
+ "params": [
480
+ {
481
+ "type": "EEnum__InvAttr"
482
+ },
483
+ {
484
+ "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
485
+ }
486
+ ]
439
487
  }
440
488
  },
441
489
  "basketExcludesRegex": {
442
490
  "def": {
443
491
  "form": "function",
444
492
  "returnType": "boolean",
445
- "params": [{
446
- "type": "EEnum__InvAttr"
447
- }, {
448
- "type": "string"
449
- }]
493
+ "params": [
494
+ {
495
+ "type": "EEnum__InvAttr"
496
+ },
497
+ {
498
+ "type": "string"
499
+ }
500
+ ]
450
501
  }
451
502
  },
452
503
  "basketSumRegexCategory": {
453
504
  "def": {
454
505
  "form": "function",
455
506
  "returnType": "real",
456
- "params": [{
457
- "type": "string"
458
- }]
507
+ "params": [
508
+ {
509
+ "type": "string"
510
+ }
511
+ ]
459
512
  }
460
513
  },
461
514
  "customFieldValueIncludes": {
462
515
  "def": {
463
516
  "form": "function",
464
517
  "returnType": "boolean",
465
- "params": [{
466
- "type": "EEnum__TxCustomField"
467
- }, {
468
- "type": "'EEnum__TxCustomField__EDepEnum__TxCustomFieldVal__' + $.parent.operands[2].value"
469
- }]
518
+ "params": [
519
+ {
520
+ "type": "EEnum__TxCustomField"
521
+ },
522
+ {
523
+ "type": "'EEnum__TxCustomField__EDepEnum__TxCustomFieldVal__' + $.parent.operands[2].value"
524
+ }
525
+ ]
470
526
  }
471
527
  },
472
528
  "basketIncludes": {
473
529
  "def": {
474
530
  "form": "function",
475
531
  "returnType": "boolean",
476
- "params": [{
477
- "type": "EEnum__InvAttr"
478
- }, {
479
- "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
480
- }]
532
+ "params": [
533
+ {
534
+ "type": "EEnum__InvAttr"
535
+ },
536
+ {
537
+ "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
538
+ }
539
+ ]
481
540
  }
482
541
  },
483
542
  "basketQty": {
484
543
  "def": {
485
544
  "form": "function",
486
545
  "returnType": "real",
487
- "params": [{
488
- "type": "EEnum__InvAttr"
489
- }, {
490
- "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
491
- }]
546
+ "params": [
547
+ {
548
+ "type": "EEnum__InvAttr"
549
+ },
550
+ {
551
+ "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
552
+ }
553
+ ]
492
554
  }
493
555
  },
494
556
  "basketExcludes": {
495
557
  "def": {
496
558
  "form": "function",
497
559
  "returnType": "boolean",
498
- "params": [{
499
- "type": "EEnum__InvAttr"
500
- }, {
501
- "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
502
- }]
560
+ "params": [
561
+ {
562
+ "type": "EEnum__InvAttr"
563
+ },
564
+ {
565
+ "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
566
+ }
567
+ ]
503
568
  }
504
569
  },
505
570
  "basketIncludesRegex": {
506
571
  "def": {
507
572
  "form": "function",
508
573
  "returnType": "boolean",
509
- "params": [{
510
- "type": "EEnum__InvAttr"
511
- }, {
512
- "type": "string"
513
- }]
574
+ "params": [
575
+ {
576
+ "type": "EEnum__InvAttr"
577
+ },
578
+ {
579
+ "type": "string"
580
+ }
581
+ ]
514
582
  }
515
583
  },
516
584
  "customFieldValueExcludes": {
517
585
  "def": {
518
586
  "form": "function",
519
587
  "returnType": "boolean",
520
- "params": [{
521
- "type": "EEnum__TxCustomField"
522
- }, {
523
- "type": "'EEnum__TxCustomField__EDepEnum__TxCustomFieldVal__' + $.parent.operands[2].value"
524
- }]
588
+ "params": [
589
+ {
590
+ "type": "EEnum__TxCustomField"
591
+ },
592
+ {
593
+ "type": "'EEnum__TxCustomField__EDepEnum__TxCustomFieldVal__' + $.parent.operands[2].value"
594
+ }
595
+ ]
525
596
  }
526
597
  },
527
598
  "basketIncludesRegexBrand": {
528
599
  "def": {
529
600
  "form": "function",
530
601
  "returnType": "boolean",
531
- "params": [{
532
- "type": "string"
533
- }]
602
+ "params": [
603
+ {
604
+ "type": "string"
605
+ }
606
+ ]
534
607
  }
535
608
  },
536
609
  "basketItemDiscountSumRegex": {
537
610
  "def": {
538
611
  "form": "function",
539
612
  "returnType": "real",
540
- "params": [{
541
- "type": "EEnum__InvAttr"
542
- }, {
543
- "type": "string"
544
- }]
613
+ "params": [
614
+ {
615
+ "type": "EEnum__InvAttr"
616
+ },
617
+ {
618
+ "type": "string"
619
+ }
620
+ ]
545
621
  }
546
622
  },
547
623
  "basketCountRegex": {
548
624
  "def": {
549
625
  "form": "function",
550
626
  "returnType": "integer",
551
- "params": [{
552
- "type": "EEnum__InvAttr"
553
- }, {
554
- "type": "string"
555
- }]
627
+ "params": [
628
+ {
629
+ "type": "EEnum__InvAttr"
630
+ },
631
+ {
632
+ "type": "string"
633
+ }
634
+ ]
556
635
  }
557
636
  },
558
637
  "basketSum": {
559
638
  "def": {
560
639
  "form": "function",
561
640
  "returnType": "real",
562
- "params": [{
563
- "type": "EEnum__InvAttr"
564
- }, {
565
- "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
566
- }]
641
+ "params": [
642
+ {
643
+ "type": "EEnum__InvAttr"
644
+ },
645
+ {
646
+ "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
647
+ }
648
+ ]
567
649
  }
568
650
  },
569
651
  "basketSumRegexBrand": {
570
652
  "def": {
571
653
  "form": "function",
572
654
  "returnType": "real",
573
- "params": [{
574
- "type": "string"
575
- }]
655
+ "params": [
656
+ {
657
+ "type": "string"
658
+ }
659
+ ]
576
660
  }
577
661
  },
578
662
  "tenderCombinationIncludes": {
579
663
  "def": {
580
664
  "form": "function",
581
665
  "returnType": "boolean",
582
- "params": [{
583
- "type": "string"
584
- }]
666
+ "params": [
667
+ {
668
+ "type": "string"
669
+ }
670
+ ]
585
671
  }
586
672
  },
587
673
  "tenderCombinationExcludes": {
588
674
  "def": {
589
675
  "form": "function",
590
676
  "returnType": "boolean",
591
- "params": [{
592
- "type": "string"
593
- }]
677
+ "params": [
678
+ {
679
+ "type": "string"
680
+ }
681
+ ]
594
682
  }
595
683
  },
596
684
  "basketSumRegex": {
597
685
  "def": {
598
686
  "form": "function",
599
687
  "returnType": "real",
600
- "params": [{
601
- "type": "EEnum__InvAttr"
602
- }, {
603
- "type": "string"
604
- }]
688
+ "params": [
689
+ {
690
+ "type": "EEnum__InvAttr"
691
+ },
692
+ {
693
+ "type": "string"
694
+ }
695
+ ]
605
696
  }
606
697
  },
607
698
  "basketQtyRegex": {
608
699
  "def": {
609
700
  "form": "function",
610
701
  "returnType": "real",
611
- "params": [{
612
- "type": "EEnum__InvAttr"
613
- }, {
614
- "type": "string"
615
- }]
702
+ "params": [
703
+ {
704
+ "type": "EEnum__InvAttr"
705
+ },
706
+ {
707
+ "type": "string"
708
+ }
709
+ ]
616
710
  }
617
711
  },
618
712
  "basketIncludesRegexCategory": {
619
713
  "def": {
620
714
  "form": "function",
621
715
  "returnType": "boolean",
622
- "params": [{
623
- "type": "string"
624
- }]
716
+ "params": [
717
+ {
718
+ "type": "string"
719
+ }
720
+ ]
625
721
  }
626
722
  }
627
723
  }
@@ -691,7 +787,10 @@ export default {
691
787
  },
692
788
  "EEnum__CustomerCluster": {
693
789
  "form": "enum",
694
- "values": ["wftesting45", "abc"]
790
+ "values": [
791
+ "wftesting45",
792
+ "abc"
793
+ ]
695
794
  },
696
795
  "function": {
697
796
  "form": "primitive"
@@ -718,11 +817,79 @@ export default {
718
817
  },
719
818
  "EEnum__CustomerCustomField": {
720
819
  "form": "enum",
721
- "values": ["absas", "address", "addresslineone", "addresslinetwo", "addressone", "addressthree", "addresstwo", "age_group", "anniversary", "areaname", "asdsad", "bb_svc_score", "birthday", "car", "charity", "citibank", "city", "comments", "country", "countrycode", "countryname", "dhjkewjh", "dob", "email", "externalid", "frwjaeff", "gender", "hobbies", "hoby", "like_rate_returnshop", "lxfdyknv", "male", "maritalstatus", "nationality", "newfield", "occupation", "personalname", "phonenumber", "pincode", "postaladdress", "products", "qayxcygj", "religon", "rrtest", "samplefield", "state", "statename", "street", "streetname", "system", "systemone", "test_custom", "test_intouch_with_lo", "testdate", "testiviz", "testserver", "testsocial", "tnc", "unitnumber", "vouchertestfirst", "wbuwnxrq", "wnqwxmjq", "zipcode"]
820
+ "values": [
821
+ "absas",
822
+ "address",
823
+ "addresslineone",
824
+ "addresslinetwo",
825
+ "addressone",
826
+ "addressthree",
827
+ "addresstwo",
828
+ "age_group",
829
+ "anniversary",
830
+ "areaname",
831
+ "asdsad",
832
+ "bb_svc_score",
833
+ "birthday",
834
+ "car",
835
+ "charity",
836
+ "citibank",
837
+ "city",
838
+ "comments",
839
+ "country",
840
+ "countrycode",
841
+ "countryname",
842
+ "dhjkewjh",
843
+ "dob",
844
+ "email",
845
+ "externalid",
846
+ "frwjaeff",
847
+ "gender",
848
+ "hobbies",
849
+ "hoby",
850
+ "like_rate_returnshop",
851
+ "lxfdyknv",
852
+ "male",
853
+ "maritalstatus",
854
+ "nationality",
855
+ "newfield",
856
+ "occupation",
857
+ "personalname",
858
+ "phonenumber",
859
+ "pincode",
860
+ "postaladdress",
861
+ "products",
862
+ "qayxcygj",
863
+ "religon",
864
+ "rrtest",
865
+ "samplefield",
866
+ "state",
867
+ "statename",
868
+ "street",
869
+ "streetname",
870
+ "system",
871
+ "systemone",
872
+ "test_custom",
873
+ "test_intouch_with_lo",
874
+ "testdate",
875
+ "testiviz",
876
+ "testserver",
877
+ "testsocial",
878
+ "tnc",
879
+ "unitnumber",
880
+ "vouchertestfirst",
881
+ "wbuwnxrq",
882
+ "wnqwxmjq",
883
+ "zipcode"
884
+ ]
722
885
  },
723
886
  "EEnum__CustomerRegistrationOrgEntity": {
724
887
  "form": "enum",
725
- "values": ["CONCEPT", "ZONE", "STORE"]
888
+ "values": [
889
+ "CONCEPT",
890
+ "ZONE",
891
+ "STORE"
892
+ ]
726
893
  },
727
894
  "collection": {
728
895
  "form": "object"
@@ -749,9 +916,11 @@ export default {
749
916
  "def": {
750
917
  "form": "function",
751
918
  "returnType": "integer",
752
- "params": [{
753
- "type": "string"
754
- }]
919
+ "params": [
920
+ {
921
+ "type": "string"
922
+ }
923
+ ]
755
924
  }
756
925
  }
757
926
  }
@@ -967,29 +1136,36 @@ export default {
967
1136
  "def": {
968
1137
  "form": "function",
969
1138
  "returnType": "boolean",
970
- "params": [{
971
- "type": "EEnum__InvAttr"
972
- }, {
973
- "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
974
- }]
1139
+ "params": [
1140
+ {
1141
+ "type": "EEnum__InvAttr"
1142
+ },
1143
+ {
1144
+ "type": "'EEnum__InvAttr__EDepEnum__InvAttrVal__' + $.parent.operands[2].value"
1145
+ }
1146
+ ]
975
1147
  }
976
1148
  },
977
1149
  "doesBrandRegexMatch": {
978
1150
  "def": {
979
1151
  "form": "function",
980
1152
  "returnType": "boolean",
981
- "params": [{
982
- "type": "string"
983
- }]
1153
+ "params": [
1154
+ {
1155
+ "type": "string"
1156
+ }
1157
+ ]
984
1158
  }
985
1159
  },
986
1160
  "doesCategoryRegexMatch": {
987
1161
  "def": {
988
1162
  "form": "function",
989
1163
  "returnType": "boolean",
990
- "params": [{
991
- "type": "string"
992
- }]
1164
+ "params": [
1165
+ {
1166
+ "type": "string"
1167
+ }
1168
+ ]
993
1169
  }
994
1170
  }
995
1171
  }
@@ -1028,11 +1204,24 @@ export default {
1028
1204
  },
1029
1205
  "EEnum__TxCustomField": {
1030
1206
  "form": "enum",
1031
- "values": ["bill_cf", "govinda", "ihwfwgun", "test"]
1207
+ "values": [
1208
+ "bill_cf",
1209
+ "govinda",
1210
+ "ihwfwgun",
1211
+ "test"
1212
+ ]
1032
1213
  },
1033
1214
  "EEnum__InvAttr": {
1034
1215
  "form": "enum",
1035
- "values": ["A", "test", "testing123", "Size", "COLORCODE", "MaterialCode", "DIVISION"]
1216
+ "values": [
1217
+ "A",
1218
+ "test",
1219
+ "testing123",
1220
+ "Size",
1221
+ "COLORCODE",
1222
+ "MaterialCode",
1223
+ "DIVISION"
1224
+ ]
1036
1225
  },
1037
1226
  "transactionAddEvent": {
1038
1227
  "form": "object",
@@ -1547,538 +1736,1009 @@ export default {
1547
1736
  "def": {
1548
1737
  "form": "function",
1549
1738
  "returnType": "boolean",
1550
- "params": [{
1551
- "type": "EEnum__CustomerCustomField"
1552
- }, {
1553
- "type": "'EEnum__CustomerCustomField__EDepEnum__CustomerCustomFieldVal__' + $.parent.operands[2].value"
1554
- }]
1739
+ "params": [
1740
+ {
1741
+ "type": "EEnum__CustomerCustomField"
1742
+ },
1743
+ {
1744
+ "type": "'EEnum__CustomerCustomField__EDepEnum__CustomerCustomFieldVal__' + $.parent.operands[2].value"
1745
+ }
1746
+ ]
1555
1747
  }
1556
1748
  },
1557
1749
  "includesLabelRegex": {
1558
1750
  "def": {
1559
1751
  "form": "function",
1560
1752
  "returnType": "boolean",
1561
- "params": [{
1562
- "type": "string"
1563
- }]
1753
+ "params": [
1754
+ {
1755
+ "type": "string"
1756
+ }
1757
+ ]
1564
1758
  }
1565
1759
  },
1566
1760
  "clusterValueExcludes": {
1567
1761
  "def": {
1568
1762
  "form": "function",
1569
1763
  "returnType": "boolean",
1570
- "params": [{
1571
- "type": "EEnum__CustomerCluster"
1572
- }, {
1573
- "type": "'EEnum__CustomerCluster__EDepEnum__CustomerClusterVal__' + $.parent.operands[2].value"
1574
- }]
1764
+ "params": [
1765
+ {
1766
+ "type": "EEnum__CustomerCluster"
1767
+ },
1768
+ {
1769
+ "type": "'EEnum__CustomerCluster__EDepEnum__CustomerClusterVal__' + $.parent.operands[2].value"
1770
+ }
1771
+ ]
1575
1772
  }
1576
1773
  },
1577
1774
  "isRegisteredOn": {
1578
1775
  "def": {
1579
1776
  "form": "function",
1580
1777
  "returnType": "boolean",
1581
- "params": [{
1582
- "type": "EEnum__CustomerRegistrationOrgEntity"
1583
- }, {
1584
- "type": "'EEnum__CustomerRegistrationOrgEntity__EDepEnum__CustomerRegistrationOrgEntityVal__' + $.parent.operands[2].value"
1585
- }]
1778
+ "params": [
1779
+ {
1780
+ "type": "EEnum__CustomerRegistrationOrgEntity"
1781
+ },
1782
+ {
1783
+ "type": "'EEnum__CustomerRegistrationOrgEntity__EDepEnum__CustomerRegistrationOrgEntityVal__' + $.parent.operands[2].value"
1784
+ }
1785
+ ]
1586
1786
  }
1587
1787
  },
1588
1788
  "clusterValueIncludes": {
1589
1789
  "def": {
1590
1790
  "form": "function",
1591
1791
  "returnType": "boolean",
1592
- "params": [{
1593
- "type": "EEnum__CustomerCluster"
1594
- }, {
1595
- "type": "'EEnum__CustomerCluster__EDepEnum__CustomerClusterVal__' + $.parent.operands[2].value"
1596
- }]
1792
+ "params": [
1793
+ {
1794
+ "type": "EEnum__CustomerCluster"
1795
+ },
1796
+ {
1797
+ "type": "'EEnum__CustomerCluster__EDepEnum__CustomerClusterVal__' + $.parent.operands[2].value"
1798
+ }
1799
+ ]
1597
1800
  }
1598
1801
  },
1599
1802
  "customFieldValueIncludes": {
1600
1803
  "def": {
1601
1804
  "form": "function",
1602
1805
  "returnType": "boolean",
1603
- "params": [{
1604
- "type": "EEnum__CustomerCustomField"
1605
- }, {
1606
- "type": "'EEnum__CustomerCustomField__EDepEnum__CustomerCustomFieldVal__' + $.parent.operands[2].value"
1607
- }]
1806
+ "params": [
1807
+ {
1808
+ "type": "EEnum__CustomerCustomField"
1809
+ },
1810
+ {
1811
+ "type": "'EEnum__CustomerCustomField__EDepEnum__CustomerCustomFieldVal__' + $.parent.operands[2].value"
1812
+ }
1813
+ ]
1608
1814
  }
1609
1815
  },
1610
1816
  "doesProfileExists": {
1611
1817
  "def": {
1612
1818
  "form": "function",
1613
1819
  "returnType": "boolean",
1614
- "params": [{
1615
- "type": "EEnum__ECustomerProfileSourceType"
1616
- }, {
1617
- "type": "'EEnum__ECustomerProfileSourceType__EDepEnum__ECustomerProfileSourceAccountId__' + $.parent.operands[2].value"
1618
- }]
1820
+ "params": [
1821
+ {
1822
+ "type": "EEnum__ECustomerProfileSourceType"
1823
+ },
1824
+ {
1825
+ "type": "'EEnum__ECustomerProfileSourceType__EDepEnum__ECustomerProfileSourceAccountId__' + $.parent.operands[2].value"
1826
+ }
1827
+ ]
1619
1828
  }
1620
1829
  },
1621
1830
  "customFieldValueExists": {
1622
1831
  "def": {
1623
1832
  "form": "function",
1624
1833
  "returnType": "boolean",
1625
- "params": [{
1626
- "type": "EEnum__CustomerCustomField"
1627
- }]
1834
+ "params": [
1835
+ {
1836
+ "type": "EEnum__CustomerCustomField"
1837
+ }
1838
+ ]
1628
1839
  }
1629
1840
  }
1630
1841
  }
1631
1842
  }
1632
1843
  },
1633
- "operators": [{
1634
- "symbol": "==",
1635
- "operandTypes": ["boolean", "boolean"],
1636
- "type": "boolean"
1637
- }, {
1638
- "symbol": "!=",
1639
- "operandTypes": ["boolean", "boolean"],
1640
- "type": "boolean"
1641
- }, {
1642
- "symbol": "&&",
1643
- "operandTypes": ["boolean", "boolean"],
1644
- "type": "boolean"
1645
- }, {
1646
- "symbol": "||",
1647
- "operandTypes": ["boolean", "boolean"],
1648
- "type": "boolean"
1649
- }, {
1650
- "symbol": "+",
1651
- "operandTypes": ["real", "real"],
1652
- "type": "real"
1653
- }, {
1654
- "symbol": "-",
1655
- "operandTypes": ["real", "real"],
1656
- "type": "real"
1657
- }, {
1658
- "symbol": "*",
1659
- "operandTypes": ["real", "real"],
1660
- "type": "real"
1661
- }, {
1662
- "symbol": "/",
1663
- "operandTypes": ["real", "real"],
1664
- "type": "real"
1665
- }, {
1666
- "symbol": "%",
1667
- "operandTypes": ["real", "real"],
1668
- "type": "real"
1669
- }, {
1670
- "symbol": "==",
1671
- "operandTypes": ["real", "real"],
1672
- "type": "boolean"
1673
- }, {
1674
- "symbol": "<",
1675
- "operandTypes": ["real", "real"],
1676
- "type": "boolean"
1677
- }, {
1678
- "symbol": ">",
1679
- "operandTypes": ["real", "real"],
1680
- "type": "boolean"
1681
- }, {
1682
- "symbol": "<=",
1683
- "operandTypes": ["real", "real"],
1684
- "type": "boolean"
1685
- }, {
1686
- "symbol": ">=",
1687
- "operandTypes": ["real", "real"],
1688
- "type": "boolean"
1689
- }, {
1690
- "symbol": "!=",
1691
- "operandTypes": ["real", "real"],
1692
- "type": "boolean"
1693
- }, {
1694
- "symbol": "+",
1695
- "operandTypes": ["real", "integer"],
1696
- "type": "real"
1697
- }, {
1698
- "symbol": "-",
1699
- "operandTypes": ["real", "integer"],
1700
- "type": "real"
1701
- }, {
1702
- "symbol": "*",
1703
- "operandTypes": ["real", "integer"],
1704
- "type": "real"
1705
- }, {
1706
- "symbol": "/",
1707
- "operandTypes": ["real", "integer"],
1708
- "type": "real"
1709
- }, {
1710
- "symbol": "%",
1711
- "operandTypes": ["real", "integer"],
1712
- "type": "real"
1713
- }, {
1714
- "symbol": "==",
1715
- "operandTypes": ["real", "integer"],
1716
- "type": "boolean"
1717
- }, {
1718
- "symbol": "<",
1719
- "operandTypes": ["real", "integer"],
1720
- "type": "boolean"
1721
- }, {
1722
- "symbol": ">",
1723
- "operandTypes": ["real", "integer"],
1724
- "type": "boolean"
1725
- }, {
1726
- "symbol": "<=",
1727
- "operandTypes": ["real", "integer"],
1728
- "type": "boolean"
1729
- }, {
1730
- "symbol": ">=",
1731
- "operandTypes": ["real", "integer"],
1732
- "type": "boolean"
1733
- }, {
1734
- "symbol": "!=",
1735
- "operandTypes": ["real", "integer"],
1736
- "type": "boolean"
1737
- }, {
1738
- "symbol": "+",
1739
- "operandTypes": ["real", "number"],
1740
- "type": "real"
1741
- }, {
1742
- "symbol": "-",
1743
- "operandTypes": ["real", "number"],
1744
- "type": "real"
1745
- }, {
1746
- "symbol": "*",
1747
- "operandTypes": ["real", "number"],
1748
- "type": "real"
1749
- }, {
1750
- "symbol": "/",
1751
- "operandTypes": ["real", "number"],
1752
- "type": "real"
1753
- }, {
1754
- "symbol": "%",
1755
- "operandTypes": ["real", "number"],
1756
- "type": "real"
1757
- }, {
1758
- "symbol": "==",
1759
- "operandTypes": ["real", "number"],
1760
- "type": "boolean"
1761
- }, {
1762
- "symbol": "<",
1763
- "operandTypes": ["real", "number"],
1764
- "type": "boolean"
1765
- }, {
1766
- "symbol": ">",
1767
- "operandTypes": ["real", "number"],
1768
- "type": "boolean"
1769
- }, {
1770
- "symbol": "<=",
1771
- "operandTypes": ["real", "number"],
1772
- "type": "boolean"
1773
- }, {
1774
- "symbol": ">=",
1775
- "operandTypes": ["real", "number"],
1776
- "type": "boolean"
1777
- }, {
1778
- "symbol": "!=",
1779
- "operandTypes": ["real", "number"],
1780
- "type": "boolean"
1781
- }, {
1782
- "symbol": "+",
1783
- "operandTypes": ["integer", "real"],
1784
- "type": "real"
1785
- }, {
1786
- "symbol": "-",
1787
- "operandTypes": ["integer", "real"],
1788
- "type": "real"
1789
- }, {
1790
- "symbol": "*",
1791
- "operandTypes": ["integer", "real"],
1792
- "type": "real"
1793
- }, {
1794
- "symbol": "/",
1795
- "operandTypes": ["integer", "real"],
1796
- "type": "real"
1797
- }, {
1798
- "symbol": "%",
1799
- "operandTypes": ["integer", "real"],
1800
- "type": "real"
1801
- }, {
1802
- "symbol": "==",
1803
- "operandTypes": ["integer", "real"],
1804
- "type": "boolean"
1805
- }, {
1806
- "symbol": "<",
1807
- "operandTypes": ["integer", "real"],
1808
- "type": "boolean"
1809
- }, {
1810
- "symbol": ">",
1811
- "operandTypes": ["integer", "real"],
1812
- "type": "boolean"
1813
- }, {
1814
- "symbol": "<=",
1815
- "operandTypes": ["integer", "real"],
1816
- "type": "boolean"
1817
- }, {
1818
- "symbol": ">=",
1819
- "operandTypes": ["integer", "real"],
1820
- "type": "boolean"
1821
- }, {
1822
- "symbol": "!=",
1823
- "operandTypes": ["integer", "real"],
1824
- "type": "boolean"
1825
- }, {
1826
- "symbol": "+",
1827
- "operandTypes": ["integer", "integer"],
1828
- "type": "integer"
1829
- }, {
1830
- "symbol": "-",
1831
- "operandTypes": ["integer", "integer"],
1832
- "type": "integer"
1833
- }, {
1834
- "symbol": "*",
1835
- "operandTypes": ["integer", "integer"],
1836
- "type": "integer"
1837
- }, {
1838
- "symbol": "/",
1839
- "operandTypes": ["integer", "integer"],
1840
- "type": "real"
1841
- }, {
1842
- "symbol": "%",
1843
- "operandTypes": ["integer", "integer"],
1844
- "type": "integer"
1845
- }, {
1846
- "symbol": "==",
1847
- "operandTypes": ["integer", "integer"],
1848
- "type": "boolean"
1849
- }, {
1850
- "symbol": "<",
1851
- "operandTypes": ["integer", "integer"],
1852
- "type": "boolean"
1853
- }, {
1854
- "symbol": ">",
1855
- "operandTypes": ["integer", "integer"],
1856
- "type": "boolean"
1857
- }, {
1858
- "symbol": "<=",
1859
- "operandTypes": ["integer", "integer"],
1860
- "type": "boolean"
1861
- }, {
1862
- "symbol": ">=",
1863
- "operandTypes": ["integer", "integer"],
1864
- "type": "boolean"
1865
- }, {
1866
- "symbol": "!=",
1867
- "operandTypes": ["integer", "integer"],
1868
- "type": "boolean"
1869
- }, {
1870
- "symbol": "+",
1871
- "operandTypes": ["integer", "number"],
1872
- "type": "integer"
1873
- }, {
1874
- "symbol": "-",
1875
- "operandTypes": ["integer", "number"],
1876
- "type": "integer"
1877
- }, {
1878
- "symbol": "*",
1879
- "operandTypes": ["integer", "number"],
1880
- "type": "integer"
1881
- }, {
1882
- "symbol": "/",
1883
- "operandTypes": ["integer", "number"],
1884
- "type": "real"
1885
- }, {
1886
- "symbol": "%",
1887
- "operandTypes": ["integer", "number"],
1888
- "type": "integer"
1889
- }, {
1890
- "symbol": "==",
1891
- "operandTypes": ["integer", "number"],
1892
- "type": "boolean"
1893
- }, {
1894
- "symbol": "<",
1895
- "operandTypes": ["integer", "number"],
1896
- "type": "boolean"
1897
- }, {
1898
- "symbol": ">",
1899
- "operandTypes": ["integer", "number"],
1900
- "type": "boolean"
1901
- }, {
1902
- "symbol": "<=",
1903
- "operandTypes": ["integer", "number"],
1904
- "type": "boolean"
1905
- }, {
1906
- "symbol": ">=",
1907
- "operandTypes": ["integer", "number"],
1908
- "type": "boolean"
1909
- }, {
1910
- "symbol": "!=",
1911
- "operandTypes": ["integer", "number"],
1912
- "type": "boolean"
1913
- }, {
1914
- "symbol": "+",
1915
- "operandTypes": ["number", "real"],
1916
- "type": "real"
1917
- }, {
1918
- "symbol": "-",
1919
- "operandTypes": ["number", "real"],
1920
- "type": "real"
1921
- }, {
1922
- "symbol": "*",
1923
- "operandTypes": ["number", "real"],
1924
- "type": "real"
1925
- }, {
1926
- "symbol": "/",
1927
- "operandTypes": ["number", "real"],
1928
- "type": "real"
1929
- }, {
1930
- "symbol": "%",
1931
- "operandTypes": ["number", "real"],
1932
- "type": "real"
1933
- }, {
1934
- "symbol": "==",
1935
- "operandTypes": ["number", "real"],
1936
- "type": "boolean"
1937
- }, {
1938
- "symbol": "<",
1939
- "operandTypes": ["number", "real"],
1940
- "type": "boolean"
1941
- }, {
1942
- "symbol": ">",
1943
- "operandTypes": ["number", "real"],
1944
- "type": "boolean"
1945
- }, {
1946
- "symbol": "<=",
1947
- "operandTypes": ["number", "real"],
1948
- "type": "boolean"
1949
- }, {
1950
- "symbol": ">=",
1951
- "operandTypes": ["number", "real"],
1952
- "type": "boolean"
1953
- }, {
1954
- "symbol": "!=",
1955
- "operandTypes": ["number", "real"],
1956
- "type": "boolean"
1957
- }, {
1958
- "symbol": "+",
1959
- "operandTypes": ["number", "integer"],
1960
- "type": "integer"
1961
- }, {
1962
- "symbol": "-",
1963
- "operandTypes": ["number", "integer"],
1964
- "type": "integer"
1965
- }, {
1966
- "symbol": "*",
1967
- "operandTypes": ["number", "integer"],
1968
- "type": "integer"
1969
- }, {
1970
- "symbol": "/",
1971
- "operandTypes": ["number", "integer"],
1972
- "type": "real"
1973
- }, {
1974
- "symbol": "%",
1975
- "operandTypes": ["number", "integer"],
1976
- "type": "integer"
1977
- }, {
1978
- "symbol": "==",
1979
- "operandTypes": ["number", "integer"],
1980
- "type": "boolean"
1981
- }, {
1982
- "symbol": "<",
1983
- "operandTypes": ["number", "integer"],
1984
- "type": "boolean"
1985
- }, {
1986
- "symbol": ">",
1987
- "operandTypes": ["number", "integer"],
1988
- "type": "boolean"
1989
- }, {
1990
- "symbol": "<=",
1991
- "operandTypes": ["number", "integer"],
1992
- "type": "boolean"
1993
- }, {
1994
- "symbol": ">=",
1995
- "operandTypes": ["number", "integer"],
1996
- "type": "boolean"
1997
- }, {
1998
- "symbol": "!=",
1999
- "operandTypes": ["number", "integer"],
2000
- "type": "boolean"
2001
- }, {
2002
- "symbol": "+",
2003
- "operandTypes": ["number", "number"],
2004
- "type": "number"
2005
- }, {
2006
- "symbol": "-",
2007
- "operandTypes": ["number", "number"],
2008
- "type": "number"
2009
- }, {
2010
- "symbol": "*",
2011
- "operandTypes": ["number", "number"],
2012
- "type": "number"
2013
- }, {
2014
- "symbol": "/",
2015
- "operandTypes": ["number", "number"],
2016
- "type": "real"
2017
- }, {
2018
- "symbol": "%",
2019
- "operandTypes": ["number", "number"],
2020
- "type": "number"
2021
- }, {
2022
- "symbol": "==",
2023
- "operandTypes": ["number", "number"],
2024
- "type": "boolean"
2025
- }, {
2026
- "symbol": "<",
2027
- "operandTypes": ["number", "number"],
2028
- "type": "boolean"
2029
- }, {
2030
- "symbol": ">",
2031
- "operandTypes": ["number", "number"],
2032
- "type": "boolean"
2033
- }, {
2034
- "symbol": "<=",
2035
- "operandTypes": ["number", "number"],
2036
- "type": "boolean"
2037
- }, {
2038
- "symbol": ">=",
2039
- "operandTypes": ["number", "number"],
2040
- "type": "boolean"
2041
- }, {
2042
- "symbol": "!=",
2043
- "operandTypes": ["number", "number"],
2044
- "type": "boolean"
2045
- }, {
2046
- "symbol": "==",
2047
- "operandTypes": ["string", "string"],
2048
- "type": "boolean"
2049
- }, {
2050
- "symbol": "!=",
2051
- "operandTypes": ["string", "string"],
2052
- "type": "boolean"
2053
- }, {
2054
- "symbol": "+",
2055
- "operandTypes": ["string", "string"],
2056
- "type": "string"
2057
- }, {
2058
- "symbol": "==",
2059
- "operandTypes": ["date", "$.operands[0].type"],
2060
- "type": "boolean"
2061
- }, {
2062
- "symbol": "<",
2063
- "operandTypes": ["date", "$.operands[0].type"],
2064
- "type": "boolean"
2065
- }, {
2066
- "symbol": ">",
2067
- "operandTypes": ["date", "$.operands[0].type"],
2068
- "type": "boolean"
2069
- }, {
2070
- "symbol": "<=",
2071
- "operandTypes": ["date", "$.operands[0].type"],
2072
- "type": "boolean"
2073
- }, {
2074
- "symbol": ">=",
2075
- "operandTypes": ["date", "$.operands[0].type"],
2076
- "type": "boolean"
2077
- }, {
2078
- "symbol": "!=",
2079
- "operandTypes": ["date", "$.operands[0].type"],
2080
- "type": "boolean"
2081
- }],
1844
+ "operators": [
1845
+ {
1846
+ "symbol": "==",
1847
+ "operandTypes": [
1848
+ "boolean",
1849
+ "boolean"
1850
+ ],
1851
+ "type": "boolean"
1852
+ },
1853
+ {
1854
+ "symbol": "!=",
1855
+ "operandTypes": [
1856
+ "boolean",
1857
+ "boolean"
1858
+ ],
1859
+ "type": "boolean"
1860
+ },
1861
+ {
1862
+ "symbol": "&&",
1863
+ "operandTypes": [
1864
+ "boolean",
1865
+ "boolean"
1866
+ ],
1867
+ "type": "boolean"
1868
+ },
1869
+ {
1870
+ "symbol": "||",
1871
+ "operandTypes": [
1872
+ "boolean",
1873
+ "boolean"
1874
+ ],
1875
+ "type": "boolean"
1876
+ },
1877
+ {
1878
+ "symbol": "+",
1879
+ "operandTypes": [
1880
+ "real",
1881
+ "real"
1882
+ ],
1883
+ "type": "real"
1884
+ },
1885
+ {
1886
+ "symbol": "-",
1887
+ "operandTypes": [
1888
+ "real",
1889
+ "real"
1890
+ ],
1891
+ "type": "real"
1892
+ },
1893
+ {
1894
+ "symbol": "*",
1895
+ "operandTypes": [
1896
+ "real",
1897
+ "real"
1898
+ ],
1899
+ "type": "real"
1900
+ },
1901
+ {
1902
+ "symbol": "/",
1903
+ "operandTypes": [
1904
+ "real",
1905
+ "real"
1906
+ ],
1907
+ "type": "real"
1908
+ },
1909
+ {
1910
+ "symbol": "%",
1911
+ "operandTypes": [
1912
+ "real",
1913
+ "real"
1914
+ ],
1915
+ "type": "real"
1916
+ },
1917
+ {
1918
+ "symbol": "==",
1919
+ "operandTypes": [
1920
+ "real",
1921
+ "real"
1922
+ ],
1923
+ "type": "boolean"
1924
+ },
1925
+ {
1926
+ "symbol": "<",
1927
+ "operandTypes": [
1928
+ "real",
1929
+ "real"
1930
+ ],
1931
+ "type": "boolean"
1932
+ },
1933
+ {
1934
+ "symbol": ">",
1935
+ "operandTypes": [
1936
+ "real",
1937
+ "real"
1938
+ ],
1939
+ "type": "boolean"
1940
+ },
1941
+ {
1942
+ "symbol": "<=",
1943
+ "operandTypes": [
1944
+ "real",
1945
+ "real"
1946
+ ],
1947
+ "type": "boolean"
1948
+ },
1949
+ {
1950
+ "symbol": ">=",
1951
+ "operandTypes": [
1952
+ "real",
1953
+ "real"
1954
+ ],
1955
+ "type": "boolean"
1956
+ },
1957
+ {
1958
+ "symbol": "!=",
1959
+ "operandTypes": [
1960
+ "real",
1961
+ "real"
1962
+ ],
1963
+ "type": "boolean"
1964
+ },
1965
+ {
1966
+ "symbol": "+",
1967
+ "operandTypes": [
1968
+ "real",
1969
+ "integer"
1970
+ ],
1971
+ "type": "real"
1972
+ },
1973
+ {
1974
+ "symbol": "-",
1975
+ "operandTypes": [
1976
+ "real",
1977
+ "integer"
1978
+ ],
1979
+ "type": "real"
1980
+ },
1981
+ {
1982
+ "symbol": "*",
1983
+ "operandTypes": [
1984
+ "real",
1985
+ "integer"
1986
+ ],
1987
+ "type": "real"
1988
+ },
1989
+ {
1990
+ "symbol": "/",
1991
+ "operandTypes": [
1992
+ "real",
1993
+ "integer"
1994
+ ],
1995
+ "type": "real"
1996
+ },
1997
+ {
1998
+ "symbol": "%",
1999
+ "operandTypes": [
2000
+ "real",
2001
+ "integer"
2002
+ ],
2003
+ "type": "real"
2004
+ },
2005
+ {
2006
+ "symbol": "==",
2007
+ "operandTypes": [
2008
+ "real",
2009
+ "integer"
2010
+ ],
2011
+ "type": "boolean"
2012
+ },
2013
+ {
2014
+ "symbol": "<",
2015
+ "operandTypes": [
2016
+ "real",
2017
+ "integer"
2018
+ ],
2019
+ "type": "boolean"
2020
+ },
2021
+ {
2022
+ "symbol": ">",
2023
+ "operandTypes": [
2024
+ "real",
2025
+ "integer"
2026
+ ],
2027
+ "type": "boolean"
2028
+ },
2029
+ {
2030
+ "symbol": "<=",
2031
+ "operandTypes": [
2032
+ "real",
2033
+ "integer"
2034
+ ],
2035
+ "type": "boolean"
2036
+ },
2037
+ {
2038
+ "symbol": ">=",
2039
+ "operandTypes": [
2040
+ "real",
2041
+ "integer"
2042
+ ],
2043
+ "type": "boolean"
2044
+ },
2045
+ {
2046
+ "symbol": "!=",
2047
+ "operandTypes": [
2048
+ "real",
2049
+ "integer"
2050
+ ],
2051
+ "type": "boolean"
2052
+ },
2053
+ {
2054
+ "symbol": "+",
2055
+ "operandTypes": [
2056
+ "real",
2057
+ "number"
2058
+ ],
2059
+ "type": "real"
2060
+ },
2061
+ {
2062
+ "symbol": "-",
2063
+ "operandTypes": [
2064
+ "real",
2065
+ "number"
2066
+ ],
2067
+ "type": "real"
2068
+ },
2069
+ {
2070
+ "symbol": "*",
2071
+ "operandTypes": [
2072
+ "real",
2073
+ "number"
2074
+ ],
2075
+ "type": "real"
2076
+ },
2077
+ {
2078
+ "symbol": "/",
2079
+ "operandTypes": [
2080
+ "real",
2081
+ "number"
2082
+ ],
2083
+ "type": "real"
2084
+ },
2085
+ {
2086
+ "symbol": "%",
2087
+ "operandTypes": [
2088
+ "real",
2089
+ "number"
2090
+ ],
2091
+ "type": "real"
2092
+ },
2093
+ {
2094
+ "symbol": "==",
2095
+ "operandTypes": [
2096
+ "real",
2097
+ "number"
2098
+ ],
2099
+ "type": "boolean"
2100
+ },
2101
+ {
2102
+ "symbol": "<",
2103
+ "operandTypes": [
2104
+ "real",
2105
+ "number"
2106
+ ],
2107
+ "type": "boolean"
2108
+ },
2109
+ {
2110
+ "symbol": ">",
2111
+ "operandTypes": [
2112
+ "real",
2113
+ "number"
2114
+ ],
2115
+ "type": "boolean"
2116
+ },
2117
+ {
2118
+ "symbol": "<=",
2119
+ "operandTypes": [
2120
+ "real",
2121
+ "number"
2122
+ ],
2123
+ "type": "boolean"
2124
+ },
2125
+ {
2126
+ "symbol": ">=",
2127
+ "operandTypes": [
2128
+ "real",
2129
+ "number"
2130
+ ],
2131
+ "type": "boolean"
2132
+ },
2133
+ {
2134
+ "symbol": "!=",
2135
+ "operandTypes": [
2136
+ "real",
2137
+ "number"
2138
+ ],
2139
+ "type": "boolean"
2140
+ },
2141
+ {
2142
+ "symbol": "+",
2143
+ "operandTypes": [
2144
+ "integer",
2145
+ "real"
2146
+ ],
2147
+ "type": "real"
2148
+ },
2149
+ {
2150
+ "symbol": "-",
2151
+ "operandTypes": [
2152
+ "integer",
2153
+ "real"
2154
+ ],
2155
+ "type": "real"
2156
+ },
2157
+ {
2158
+ "symbol": "*",
2159
+ "operandTypes": [
2160
+ "integer",
2161
+ "real"
2162
+ ],
2163
+ "type": "real"
2164
+ },
2165
+ {
2166
+ "symbol": "/",
2167
+ "operandTypes": [
2168
+ "integer",
2169
+ "real"
2170
+ ],
2171
+ "type": "real"
2172
+ },
2173
+ {
2174
+ "symbol": "%",
2175
+ "operandTypes": [
2176
+ "integer",
2177
+ "real"
2178
+ ],
2179
+ "type": "real"
2180
+ },
2181
+ {
2182
+ "symbol": "==",
2183
+ "operandTypes": [
2184
+ "integer",
2185
+ "real"
2186
+ ],
2187
+ "type": "boolean"
2188
+ },
2189
+ {
2190
+ "symbol": "<",
2191
+ "operandTypes": [
2192
+ "integer",
2193
+ "real"
2194
+ ],
2195
+ "type": "boolean"
2196
+ },
2197
+ {
2198
+ "symbol": ">",
2199
+ "operandTypes": [
2200
+ "integer",
2201
+ "real"
2202
+ ],
2203
+ "type": "boolean"
2204
+ },
2205
+ {
2206
+ "symbol": "<=",
2207
+ "operandTypes": [
2208
+ "integer",
2209
+ "real"
2210
+ ],
2211
+ "type": "boolean"
2212
+ },
2213
+ {
2214
+ "symbol": ">=",
2215
+ "operandTypes": [
2216
+ "integer",
2217
+ "real"
2218
+ ],
2219
+ "type": "boolean"
2220
+ },
2221
+ {
2222
+ "symbol": "!=",
2223
+ "operandTypes": [
2224
+ "integer",
2225
+ "real"
2226
+ ],
2227
+ "type": "boolean"
2228
+ },
2229
+ {
2230
+ "symbol": "+",
2231
+ "operandTypes": [
2232
+ "integer",
2233
+ "integer"
2234
+ ],
2235
+ "type": "integer"
2236
+ },
2237
+ {
2238
+ "symbol": "-",
2239
+ "operandTypes": [
2240
+ "integer",
2241
+ "integer"
2242
+ ],
2243
+ "type": "integer"
2244
+ },
2245
+ {
2246
+ "symbol": "*",
2247
+ "operandTypes": [
2248
+ "integer",
2249
+ "integer"
2250
+ ],
2251
+ "type": "integer"
2252
+ },
2253
+ {
2254
+ "symbol": "/",
2255
+ "operandTypes": [
2256
+ "integer",
2257
+ "integer"
2258
+ ],
2259
+ "type": "real"
2260
+ },
2261
+ {
2262
+ "symbol": "%",
2263
+ "operandTypes": [
2264
+ "integer",
2265
+ "integer"
2266
+ ],
2267
+ "type": "integer"
2268
+ },
2269
+ {
2270
+ "symbol": "==",
2271
+ "operandTypes": [
2272
+ "integer",
2273
+ "integer"
2274
+ ],
2275
+ "type": "boolean"
2276
+ },
2277
+ {
2278
+ "symbol": "<",
2279
+ "operandTypes": [
2280
+ "integer",
2281
+ "integer"
2282
+ ],
2283
+ "type": "boolean"
2284
+ },
2285
+ {
2286
+ "symbol": ">",
2287
+ "operandTypes": [
2288
+ "integer",
2289
+ "integer"
2290
+ ],
2291
+ "type": "boolean"
2292
+ },
2293
+ {
2294
+ "symbol": "<=",
2295
+ "operandTypes": [
2296
+ "integer",
2297
+ "integer"
2298
+ ],
2299
+ "type": "boolean"
2300
+ },
2301
+ {
2302
+ "symbol": ">=",
2303
+ "operandTypes": [
2304
+ "integer",
2305
+ "integer"
2306
+ ],
2307
+ "type": "boolean"
2308
+ },
2309
+ {
2310
+ "symbol": "!=",
2311
+ "operandTypes": [
2312
+ "integer",
2313
+ "integer"
2314
+ ],
2315
+ "type": "boolean"
2316
+ },
2317
+ {
2318
+ "symbol": "+",
2319
+ "operandTypes": [
2320
+ "integer",
2321
+ "number"
2322
+ ],
2323
+ "type": "integer"
2324
+ },
2325
+ {
2326
+ "symbol": "-",
2327
+ "operandTypes": [
2328
+ "integer",
2329
+ "number"
2330
+ ],
2331
+ "type": "integer"
2332
+ },
2333
+ {
2334
+ "symbol": "*",
2335
+ "operandTypes": [
2336
+ "integer",
2337
+ "number"
2338
+ ],
2339
+ "type": "integer"
2340
+ },
2341
+ {
2342
+ "symbol": "/",
2343
+ "operandTypes": [
2344
+ "integer",
2345
+ "number"
2346
+ ],
2347
+ "type": "real"
2348
+ },
2349
+ {
2350
+ "symbol": "%",
2351
+ "operandTypes": [
2352
+ "integer",
2353
+ "number"
2354
+ ],
2355
+ "type": "integer"
2356
+ },
2357
+ {
2358
+ "symbol": "==",
2359
+ "operandTypes": [
2360
+ "integer",
2361
+ "number"
2362
+ ],
2363
+ "type": "boolean"
2364
+ },
2365
+ {
2366
+ "symbol": "<",
2367
+ "operandTypes": [
2368
+ "integer",
2369
+ "number"
2370
+ ],
2371
+ "type": "boolean"
2372
+ },
2373
+ {
2374
+ "symbol": ">",
2375
+ "operandTypes": [
2376
+ "integer",
2377
+ "number"
2378
+ ],
2379
+ "type": "boolean"
2380
+ },
2381
+ {
2382
+ "symbol": "<=",
2383
+ "operandTypes": [
2384
+ "integer",
2385
+ "number"
2386
+ ],
2387
+ "type": "boolean"
2388
+ },
2389
+ {
2390
+ "symbol": ">=",
2391
+ "operandTypes": [
2392
+ "integer",
2393
+ "number"
2394
+ ],
2395
+ "type": "boolean"
2396
+ },
2397
+ {
2398
+ "symbol": "!=",
2399
+ "operandTypes": [
2400
+ "integer",
2401
+ "number"
2402
+ ],
2403
+ "type": "boolean"
2404
+ },
2405
+ {
2406
+ "symbol": "+",
2407
+ "operandTypes": [
2408
+ "number",
2409
+ "real"
2410
+ ],
2411
+ "type": "real"
2412
+ },
2413
+ {
2414
+ "symbol": "-",
2415
+ "operandTypes": [
2416
+ "number",
2417
+ "real"
2418
+ ],
2419
+ "type": "real"
2420
+ },
2421
+ {
2422
+ "symbol": "*",
2423
+ "operandTypes": [
2424
+ "number",
2425
+ "real"
2426
+ ],
2427
+ "type": "real"
2428
+ },
2429
+ {
2430
+ "symbol": "/",
2431
+ "operandTypes": [
2432
+ "number",
2433
+ "real"
2434
+ ],
2435
+ "type": "real"
2436
+ },
2437
+ {
2438
+ "symbol": "%",
2439
+ "operandTypes": [
2440
+ "number",
2441
+ "real"
2442
+ ],
2443
+ "type": "real"
2444
+ },
2445
+ {
2446
+ "symbol": "==",
2447
+ "operandTypes": [
2448
+ "number",
2449
+ "real"
2450
+ ],
2451
+ "type": "boolean"
2452
+ },
2453
+ {
2454
+ "symbol": "<",
2455
+ "operandTypes": [
2456
+ "number",
2457
+ "real"
2458
+ ],
2459
+ "type": "boolean"
2460
+ },
2461
+ {
2462
+ "symbol": ">",
2463
+ "operandTypes": [
2464
+ "number",
2465
+ "real"
2466
+ ],
2467
+ "type": "boolean"
2468
+ },
2469
+ {
2470
+ "symbol": "<=",
2471
+ "operandTypes": [
2472
+ "number",
2473
+ "real"
2474
+ ],
2475
+ "type": "boolean"
2476
+ },
2477
+ {
2478
+ "symbol": ">=",
2479
+ "operandTypes": [
2480
+ "number",
2481
+ "real"
2482
+ ],
2483
+ "type": "boolean"
2484
+ },
2485
+ {
2486
+ "symbol": "!=",
2487
+ "operandTypes": [
2488
+ "number",
2489
+ "real"
2490
+ ],
2491
+ "type": "boolean"
2492
+ },
2493
+ {
2494
+ "symbol": "+",
2495
+ "operandTypes": [
2496
+ "number",
2497
+ "integer"
2498
+ ],
2499
+ "type": "integer"
2500
+ },
2501
+ {
2502
+ "symbol": "-",
2503
+ "operandTypes": [
2504
+ "number",
2505
+ "integer"
2506
+ ],
2507
+ "type": "integer"
2508
+ },
2509
+ {
2510
+ "symbol": "*",
2511
+ "operandTypes": [
2512
+ "number",
2513
+ "integer"
2514
+ ],
2515
+ "type": "integer"
2516
+ },
2517
+ {
2518
+ "symbol": "/",
2519
+ "operandTypes": [
2520
+ "number",
2521
+ "integer"
2522
+ ],
2523
+ "type": "real"
2524
+ },
2525
+ {
2526
+ "symbol": "%",
2527
+ "operandTypes": [
2528
+ "number",
2529
+ "integer"
2530
+ ],
2531
+ "type": "integer"
2532
+ },
2533
+ {
2534
+ "symbol": "==",
2535
+ "operandTypes": [
2536
+ "number",
2537
+ "integer"
2538
+ ],
2539
+ "type": "boolean"
2540
+ },
2541
+ {
2542
+ "symbol": "<",
2543
+ "operandTypes": [
2544
+ "number",
2545
+ "integer"
2546
+ ],
2547
+ "type": "boolean"
2548
+ },
2549
+ {
2550
+ "symbol": ">",
2551
+ "operandTypes": [
2552
+ "number",
2553
+ "integer"
2554
+ ],
2555
+ "type": "boolean"
2556
+ },
2557
+ {
2558
+ "symbol": "<=",
2559
+ "operandTypes": [
2560
+ "number",
2561
+ "integer"
2562
+ ],
2563
+ "type": "boolean"
2564
+ },
2565
+ {
2566
+ "symbol": ">=",
2567
+ "operandTypes": [
2568
+ "number",
2569
+ "integer"
2570
+ ],
2571
+ "type": "boolean"
2572
+ },
2573
+ {
2574
+ "symbol": "!=",
2575
+ "operandTypes": [
2576
+ "number",
2577
+ "integer"
2578
+ ],
2579
+ "type": "boolean"
2580
+ },
2581
+ {
2582
+ "symbol": "+",
2583
+ "operandTypes": [
2584
+ "number",
2585
+ "number"
2586
+ ],
2587
+ "type": "number"
2588
+ },
2589
+ {
2590
+ "symbol": "-",
2591
+ "operandTypes": [
2592
+ "number",
2593
+ "number"
2594
+ ],
2595
+ "type": "number"
2596
+ },
2597
+ {
2598
+ "symbol": "*",
2599
+ "operandTypes": [
2600
+ "number",
2601
+ "number"
2602
+ ],
2603
+ "type": "number"
2604
+ },
2605
+ {
2606
+ "symbol": "/",
2607
+ "operandTypes": [
2608
+ "number",
2609
+ "number"
2610
+ ],
2611
+ "type": "real"
2612
+ },
2613
+ {
2614
+ "symbol": "%",
2615
+ "operandTypes": [
2616
+ "number",
2617
+ "number"
2618
+ ],
2619
+ "type": "number"
2620
+ },
2621
+ {
2622
+ "symbol": "==",
2623
+ "operandTypes": [
2624
+ "number",
2625
+ "number"
2626
+ ],
2627
+ "type": "boolean"
2628
+ },
2629
+ {
2630
+ "symbol": "<",
2631
+ "operandTypes": [
2632
+ "number",
2633
+ "number"
2634
+ ],
2635
+ "type": "boolean"
2636
+ },
2637
+ {
2638
+ "symbol": ">",
2639
+ "operandTypes": [
2640
+ "number",
2641
+ "number"
2642
+ ],
2643
+ "type": "boolean"
2644
+ },
2645
+ {
2646
+ "symbol": "<=",
2647
+ "operandTypes": [
2648
+ "number",
2649
+ "number"
2650
+ ],
2651
+ "type": "boolean"
2652
+ },
2653
+ {
2654
+ "symbol": ">=",
2655
+ "operandTypes": [
2656
+ "number",
2657
+ "number"
2658
+ ],
2659
+ "type": "boolean"
2660
+ },
2661
+ {
2662
+ "symbol": "!=",
2663
+ "operandTypes": [
2664
+ "number",
2665
+ "number"
2666
+ ],
2667
+ "type": "boolean"
2668
+ },
2669
+ {
2670
+ "symbol": "==",
2671
+ "operandTypes": [
2672
+ "string",
2673
+ "string"
2674
+ ],
2675
+ "type": "boolean"
2676
+ },
2677
+ {
2678
+ "symbol": "!=",
2679
+ "operandTypes": [
2680
+ "string",
2681
+ "string"
2682
+ ],
2683
+ "type": "boolean"
2684
+ },
2685
+ {
2686
+ "symbol": "+",
2687
+ "operandTypes": [
2688
+ "string",
2689
+ "string"
2690
+ ],
2691
+ "type": "string"
2692
+ },
2693
+ {
2694
+ "symbol": "==",
2695
+ "operandTypes": [
2696
+ "date",
2697
+ "$.operands[0].type"
2698
+ ],
2699
+ "type": "boolean"
2700
+ },
2701
+ {
2702
+ "symbol": "<",
2703
+ "operandTypes": [
2704
+ "date",
2705
+ "$.operands[0].type"
2706
+ ],
2707
+ "type": "boolean"
2708
+ },
2709
+ {
2710
+ "symbol": ">",
2711
+ "operandTypes": [
2712
+ "date",
2713
+ "$.operands[0].type"
2714
+ ],
2715
+ "type": "boolean"
2716
+ },
2717
+ {
2718
+ "symbol": "<=",
2719
+ "operandTypes": [
2720
+ "date",
2721
+ "$.operands[0].type"
2722
+ ],
2723
+ "type": "boolean"
2724
+ },
2725
+ {
2726
+ "symbol": ">=",
2727
+ "operandTypes": [
2728
+ "date",
2729
+ "$.operands[0].type"
2730
+ ],
2731
+ "type": "boolean"
2732
+ },
2733
+ {
2734
+ "symbol": "!=",
2735
+ "operandTypes": [
2736
+ "date",
2737
+ "$.operands[0].type"
2738
+ ],
2739
+ "type": "boolean"
2740
+ }
2741
+ ],
2082
2742
  "identifiers": {
2083
2743
  "currentEvent": {
2084
2744
  "returnType": "transactionAddEvent",
@@ -2129,4 +2789,7 @@ export default {
2129
2789
  "desc": ""
2130
2790
  }
2131
2791
  }
2132
- };
2792
+ };
2793
+ export {
2794
+ defaultGrammar as default
2795
+ };