@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,3046 +0,0 @@
1
- export var mockdata = {
2
- computeJoinGraphNodesDataInput: [{
3
- width: 148,
4
- height: 180,
5
- id: 'C_Dx-bl4PV',
6
- to: ['P9x2uEdq1d', '04keK6m-H3', 'X4pqXQKF7t'],
7
- type: 'ENTRY_TRIGGER',
8
- pathsInfo: {
9
- P9x2uEdq1d: {
10
- previewComponent: {
11
- displayName: 'withStyles__StyledComponent',
12
- attrs: [],
13
- componentStyle: {
14
- rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
15
- isStatic: false,
16
- componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
17
- lastClassName: 'kWaAQH'
18
- },
19
- foldedComponentIds: [],
20
- styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
21
- },
22
- previewProps: {
23
- header: 'entryTrigger',
24
- name: 'Path 1',
25
- condition: {
26
- compoundExpression: {
27
- operator: 'OR',
28
- expressionGroups: [{
29
- operator: 'AND',
30
- simpleExpressions: [{
31
- fact: {
32
- factId: 'tjqr20',
33
- profileId: 'TRANSACTION_PROFILE',
34
- params: []
35
- },
36
- functions: [],
37
- operator: 'EQ',
38
- operand: {
39
- type: 'DOUBLE_VALUE',
40
- longValue: null,
41
- stringValue: null,
42
- doubleValue: 50,
43
- booleanValue: null,
44
- longList: null,
45
- stringList: null,
46
- doubleList: null
47
- },
48
- isExcluded: false,
49
- excluded: false
50
- }]
51
- }]
52
- }
53
- },
54
- blockId: 'C_Dx-bl4PV',
55
- events: [{
56
- type: 'STANDARD',
57
- name: 'CouponRedeem'
58
- }, {
59
- type: 'STANDARD',
60
- name: 'customerAdded'
61
- }, {
62
- type: 'STANDARD',
63
- name: 'transactionAdded'
64
- }, {
65
- type: 'BEHAVIOURAL',
66
- name: 'reviewAdded'
67
- }],
68
- grammar: {
69
- LqNBP7: 'Bill type of the transaction',
70
- '32p234': 'Basket Sum with product',
71
- '8arjDE': 'Date of the transaction',
72
- '56de3w': 'Extended field in the customer',
73
- '3UcyB2': 'Discount on the transaction',
74
- sRc59p: 'Customer source',
75
- o765rt: 'OrgUnit',
76
- '5sLAB9': "Customer's slab name",
77
- '5LFP9e': 'Customer Lifetime Purchases',
78
- '5zpWFg': 'Transaction number',
79
- '87ytre': 'Customer externalId',
80
- sNb89U: 'Customer slab number',
81
- '3er25q': 'Customer Custom fields filter',
82
- '4cP21P': 'Customer points',
83
- loY34k: 'Customer is Loyal',
84
- '5HmDCN': 'Count of line-items in the transaction',
85
- tjqr20: 'Value of the transaction',
86
- cy654u: 'Concept',
87
- t987re: 'Customer Lifetime Transaction Count',
88
- '9i58j1': 'Zone',
89
- '23g26d': 'Extended fields in the transaction',
90
- '9LF38S': 'Customer Lifetime Points',
91
- '17t80a': 'Store',
92
- mFL59r: 'Gross amount of the transaction',
93
- '1wg27d': 'Custom fields in the transaction',
94
- c654er: "Customer's segments"
95
- },
96
- couponsData: {
97
- couponsData: {}
98
- },
99
- allAudienceGroups: {},
100
- brand: [],
101
- category: [],
102
- productAttribute: [],
103
- customerSegmentValues: [],
104
- conceptValues: [],
105
- zoneValues: [],
106
- storeValues: [],
107
- customFieldValues: []
108
- }
109
- },
110
- '04keK6m-H3': {
111
- previewComponent: {
112
- displayName: 'withStyles__StyledComponent',
113
- attrs: [],
114
- componentStyle: {
115
- rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
116
- isStatic: false,
117
- componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
118
- lastClassName: 'kWaAQH'
119
- },
120
- foldedComponentIds: [],
121
- styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
122
- },
123
- previewProps: {
124
- header: 'entryTrigger',
125
- name: 'Path 2',
126
- condition: {
127
- compoundExpression: {
128
- operator: 'OR',
129
- expressionGroups: [{
130
- operator: 'AND',
131
- simpleExpressions: [{
132
- fact: {
133
- factId: 'tjqr20',
134
- profileId: 'TRANSACTION_PROFILE',
135
- params: []
136
- },
137
- functions: [],
138
- operator: 'EQ',
139
- operand: {
140
- type: 'DOUBLE_VALUE',
141
- longValue: null,
142
- stringValue: null,
143
- doubleValue: 60,
144
- booleanValue: null,
145
- longList: null,
146
- stringList: null,
147
- doubleList: null
148
- },
149
- isExcluded: false,
150
- excluded: false
151
- }]
152
- }]
153
- }
154
- },
155
- blockId: 'C_Dx-bl4PV',
156
- events: [{
157
- type: 'STANDARD',
158
- name: 'CouponRedeem'
159
- }, {
160
- type: 'STANDARD',
161
- name: 'customerAdded'
162
- }, {
163
- type: 'STANDARD',
164
- name: 'transactionAdded'
165
- }, {
166
- type: 'BEHAVIOURAL',
167
- name: 'reviewAdded'
168
- }],
169
- grammar: {
170
- LqNBP7: 'Bill type of the transaction',
171
- '32p234': 'Basket Sum with product',
172
- '8arjDE': 'Date of the transaction',
173
- '56de3w': 'Extended field in the customer',
174
- '3UcyB2': 'Discount on the transaction',
175
- sRc59p: 'Customer source',
176
- o765rt: 'OrgUnit',
177
- '5sLAB9': "Customer's slab name",
178
- '5LFP9e': 'Customer Lifetime Purchases',
179
- '5zpWFg': 'Transaction number',
180
- '87ytre': 'Customer externalId',
181
- sNb89U: 'Customer slab number',
182
- '3er25q': 'Customer Custom fields filter',
183
- '4cP21P': 'Customer points',
184
- loY34k: 'Customer is Loyal',
185
- '5HmDCN': 'Count of line-items in the transaction',
186
- tjqr20: 'Value of the transaction',
187
- cy654u: 'Concept',
188
- t987re: 'Customer Lifetime Transaction Count',
189
- '9i58j1': 'Zone',
190
- '23g26d': 'Extended fields in the transaction',
191
- '9LF38S': 'Customer Lifetime Points',
192
- '17t80a': 'Store',
193
- mFL59r: 'Gross amount of the transaction',
194
- '1wg27d': 'Custom fields in the transaction',
195
- c654er: "Customer's segments"
196
- },
197
- couponsData: {
198
- couponsData: {}
199
- },
200
- allAudienceGroups: {},
201
- brand: [],
202
- category: [],
203
- productAttribute: [],
204
- customerSegmentValues: [],
205
- conceptValues: [],
206
- zoneValues: [],
207
- storeValues: [],
208
- customFieldValues: []
209
- }
210
- },
211
- X4pqXQKF7t: {
212
- previewComponent: {
213
- displayName: 'withStyles__StyledComponent',
214
- attrs: [],
215
- componentStyle: {
216
- rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
217
- isStatic: false,
218
- componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
219
- lastClassName: 'kWaAQH'
220
- },
221
- foldedComponentIds: [],
222
- styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
223
- },
224
- previewProps: {
225
- header: 'entryTrigger',
226
- name: 'Path 3',
227
- condition: {
228
- compoundExpression: {
229
- operator: 'OR',
230
- expressionGroups: [{
231
- operator: 'AND',
232
- simpleExpressions: [{
233
- fact: {
234
- factId: 'tjqr20',
235
- profileId: 'TRANSACTION_PROFILE',
236
- params: []
237
- },
238
- functions: [],
239
- operator: 'EQ',
240
- operand: {
241
- type: 'DOUBLE_VALUE',
242
- longValue: null,
243
- stringValue: null,
244
- doubleValue: 45,
245
- booleanValue: null,
246
- longList: null,
247
- stringList: null,
248
- doubleList: null
249
- },
250
- isExcluded: false,
251
- excluded: false
252
- }]
253
- }]
254
- }
255
- },
256
- blockId: 'C_Dx-bl4PV',
257
- events: [{
258
- type: 'STANDARD',
259
- name: 'CouponRedeem'
260
- }, {
261
- type: 'STANDARD',
262
- name: 'customerAdded'
263
- }, {
264
- type: 'STANDARD',
265
- name: 'transactionAdded'
266
- }, {
267
- type: 'BEHAVIOURAL',
268
- name: 'reviewAdded'
269
- }],
270
- grammar: {
271
- LqNBP7: 'Bill type of the transaction',
272
- '32p234': 'Basket Sum with product',
273
- '8arjDE': 'Date of the transaction',
274
- '56de3w': 'Extended field in the customer',
275
- '3UcyB2': 'Discount on the transaction',
276
- sRc59p: 'Customer source',
277
- o765rt: 'OrgUnit',
278
- '5sLAB9': "Customer's slab name",
279
- '5LFP9e': 'Customer Lifetime Purchases',
280
- '5zpWFg': 'Transaction number',
281
- '87ytre': 'Customer externalId',
282
- sNb89U: 'Customer slab number',
283
- '3er25q': 'Customer Custom fields filter',
284
- '4cP21P': 'Customer points',
285
- loY34k: 'Customer is Loyal',
286
- '5HmDCN': 'Count of line-items in the transaction',
287
- tjqr20: 'Value of the transaction',
288
- cy654u: 'Concept',
289
- t987re: 'Customer Lifetime Transaction Count',
290
- '9i58j1': 'Zone',
291
- '23g26d': 'Extended fields in the transaction',
292
- '9LF38S': 'Customer Lifetime Points',
293
- '17t80a': 'Store',
294
- mFL59r: 'Gross amount of the transaction',
295
- '1wg27d': 'Custom fields in the transaction',
296
- c654er: "Customer's segments"
297
- },
298
- couponsData: {
299
- couponsData: {}
300
- },
301
- allAudienceGroups: {},
302
- brand: [],
303
- category: [],
304
- productAttribute: [],
305
- customerSegmentValues: [],
306
- conceptValues: [],
307
- zoneValues: [],
308
- storeValues: [],
309
- customFieldValues: []
310
- }
311
- }
312
- },
313
- props: {
314
- blockData: {
315
- triggerType: 'USER_EVENT',
316
- userEventTrigger: {
317
- triggerFilterType: 'ALL_CUSTOMERS',
318
- eventType: 'transactionAdded',
319
- conditionalPaths: [{
320
- path: {
321
- pathName: null,
322
- pathBlockId: 'P9x2uEdq1d'
323
- },
324
- condition: {
325
- compoundExpression: {
326
- operator: 'OR',
327
- expressionGroups: [{
328
- operator: 'AND',
329
- simpleExpressions: [{
330
- fact: {
331
- factId: 'tjqr20',
332
- profileId: 'TRANSACTION_PROFILE',
333
- params: []
334
- },
335
- functions: [],
336
- operator: 'EQ',
337
- operand: {
338
- type: 'DOUBLE_VALUE',
339
- longValue: null,
340
- stringValue: null,
341
- doubleValue: 50,
342
- booleanValue: null,
343
- longList: null,
344
- stringList: null,
345
- doubleList: null
346
- },
347
- isExcluded: false,
348
- excluded: false
349
- }]
350
- }]
351
- }
352
- }
353
- }, {
354
- path: {
355
- pathName: null,
356
- pathBlockId: 'xA0_93gkpd'
357
- },
358
- condition: {
359
- compoundExpression: {
360
- operator: 'OR',
361
- expressionGroups: [{
362
- operator: 'AND',
363
- simpleExpressions: [{
364
- fact: {
365
- factId: 'tjqr20',
366
- profileId: 'TRANSACTION_PROFILE',
367
- params: []
368
- },
369
- functions: [],
370
- operator: 'EQ',
371
- operand: {
372
- type: 'DOUBLE_VALUE',
373
- longValue: null,
374
- stringValue: null,
375
- doubleValue: 60,
376
- booleanValue: null,
377
- longList: null,
378
- stringList: null,
379
- doubleList: null
380
- },
381
- isExcluded: false,
382
- excluded: false
383
- }]
384
- }]
385
- }
386
- }
387
- }, {
388
- path: {
389
- pathName: null,
390
- pathBlockId: 'lcEwakzb6c'
391
- },
392
- condition: {
393
- compoundExpression: {
394
- operator: 'OR',
395
- expressionGroups: [{
396
- operator: 'AND',
397
- simpleExpressions: [{
398
- fact: {
399
- factId: 'tjqr20',
400
- profileId: 'TRANSACTION_PROFILE',
401
- params: []
402
- },
403
- functions: [],
404
- operator: 'EQ',
405
- operand: {
406
- type: 'DOUBLE_VALUE',
407
- longValue: null,
408
- stringValue: null,
409
- doubleValue: 45,
410
- booleanValue: null,
411
- longList: null,
412
- stringList: null,
413
- doubleList: null
414
- },
415
- isExcluded: false,
416
- excluded: false
417
- }]
418
- }]
419
- }
420
- }
421
- }]
422
- },
423
- audienceListTrigger: null
424
- },
425
- viewMode: false
426
- },
427
- isMultiPath: true,
428
- placeholderToIndex: 1
429
- }, {
430
- id: 'P9x2uEdq1d',
431
- name: 'TILL',
432
- userEventTrigger: {
433
- triggerFilterType: 'ALL_CUSTOMERS',
434
- eventType: 'transactionAdded',
435
- conditionalPaths: [{
436
- path: {
437
- pathName: null,
438
- pathBlockId: 'aO5-eWUPMk'
439
- },
440
- condition: {
441
- compoundExpression: {
442
- operator: 'OR',
443
- expressionGroups: [{
444
- operator: 'AND',
445
- simpleExpressions: [{
446
- fact: {
447
- factId: 'tjqr20',
448
- profileId: 'TRANSACTION_PROFILE',
449
- params: []
450
- },
451
- functions: [],
452
- operator: 'EQ',
453
- operand: {
454
- type: 'DOUBLE_VALUE',
455
- longValue: null,
456
- stringValue: null,
457
- doubleValue: 50,
458
- booleanValue: null,
459
- longList: null,
460
- stringList: null,
461
- doubleList: null
462
- },
463
- isExcluded: false,
464
- excluded: false
465
- }]
466
- }]
467
- }
468
- }
469
- }]
470
- },
471
- waitDurationRO: {
472
- duration: 1,
473
- timeUnit: 'HOURS'
474
- },
475
- postWaitPath: {
476
- pathName: 'Wait time expired path',
477
- pathBlockId: 'GoPSnp68IE'
478
- },
479
- props: {
480
- iconType: 'waitEvent',
481
- color: '#23cccc',
482
- blockType: 'WAIT_TILL_EVENT',
483
- isConfigured: true,
484
- viewMode: false,
485
- id: 'P9x2uEdq1d',
486
- isMultiPath: true,
487
- nodePreview: {
488
- key: null,
489
- ref: null,
490
- props: {
491
- blockData: {
492
- id: 'P9x2uEdq1d',
493
- name: 'TILL',
494
- userEventTrigger: {
495
- triggerFilterType: 'ALL_CUSTOMERS',
496
- eventType: 'transactionAdded',
497
- conditionalPaths: [{
498
- path: {
499
- pathName: null,
500
- pathBlockId: 'aO5-eWUPMk'
501
- },
502
- condition: {
503
- compoundExpression: {
504
- operator: 'OR',
505
- expressionGroups: [{
506
- operator: 'AND',
507
- simpleExpressions: [{
508
- fact: {
509
- factId: 'tjqr20',
510
- profileId: 'TRANSACTION_PROFILE',
511
- params: []
512
- },
513
- functions: [],
514
- operator: 'EQ',
515
- operand: {
516
- type: 'DOUBLE_VALUE',
517
- longValue: null,
518
- stringValue: null,
519
- doubleValue: 50,
520
- booleanValue: null,
521
- longList: null,
522
- stringList: null,
523
- doubleList: null
524
- },
525
- isExcluded: false,
526
- excluded: false
527
- }]
528
- }]
529
- }
530
- }
531
- }]
532
- },
533
- waitDurationRO: {
534
- duration: 1,
535
- timeUnit: 'HOURS'
536
- },
537
- postWaitPath: {
538
- pathName: 'Wait time expired path',
539
- pathBlockId: 'GoPSnp68IE'
540
- },
541
- blockType: 'WAIT_TILL_EVENT'
542
- },
543
- blockId: 'P9x2uEdq1d',
544
- type: 'WAIT_TILL_EVENT'
545
- },
546
- _owner: null,
547
- _store: {}
548
- }
549
- },
550
- type: 'BLOCK_NODE',
551
- to: ['CLN_1RQ9YY', '12pNxGPAma'],
552
- pathsInfo: {
553
- CLN_1RQ9YY: {
554
- previewComponent: {
555
- displayName: 'withStyles__StyledComponent',
556
- attrs: [],
557
- componentStyle: {
558
- rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
559
- isStatic: false,
560
- componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
561
- lastClassName: 'kWaAQH'
562
- },
563
- foldedComponentIds: [],
564
- styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
565
- },
566
- previewProps: {
567
- header: 'waitTillEvent',
568
- name: {
569
- key: null,
570
- ref: null,
571
- props: {
572
- id: 'adionaUIApp.common.eventPath',
573
- defaultMessage: 'Event path',
574
- values: {}
575
- },
576
- _owner: null,
577
- _store: {}
578
- },
579
- condition: {
580
- compoundExpression: {
581
- operator: 'OR',
582
- expressionGroups: [{
583
- operator: 'AND',
584
- simpleExpressions: [{
585
- fact: {
586
- factId: 'tjqr20',
587
- profileId: 'TRANSACTION_PROFILE',
588
- params: []
589
- },
590
- functions: [],
591
- operator: 'EQ',
592
- operand: {
593
- type: 'DOUBLE_VALUE',
594
- longValue: null,
595
- stringValue: null,
596
- doubleValue: 50,
597
- booleanValue: null,
598
- longList: null,
599
- stringList: null,
600
- doubleList: null
601
- },
602
- isExcluded: false,
603
- excluded: false
604
- }]
605
- }]
606
- }
607
- },
608
- blockId: 'P9x2uEdq1d',
609
- events: [{
610
- type: 'STANDARD',
611
- name: 'CouponRedeem'
612
- }, {
613
- type: 'STANDARD',
614
- name: 'customerAdded'
615
- }, {
616
- type: 'STANDARD',
617
- name: 'transactionAdded'
618
- }, {
619
- type: 'BEHAVIOURAL',
620
- name: 'reviewAdded'
621
- }],
622
- grammar: {
623
- LqNBP7: 'Bill type of the transaction',
624
- '32p234': 'Basket Sum with product',
625
- '8arjDE': 'Date of the transaction',
626
- '56de3w': 'Extended field in the customer',
627
- '3UcyB2': 'Discount on the transaction',
628
- sRc59p: 'Customer source',
629
- o765rt: 'OrgUnit',
630
- '5sLAB9': "Customer's slab name",
631
- '5LFP9e': 'Customer Lifetime Purchases',
632
- '5zpWFg': 'Transaction number',
633
- '87ytre': 'Customer externalId',
634
- sNb89U: 'Customer slab number',
635
- '3er25q': 'Customer Custom fields filter',
636
- '4cP21P': 'Customer points',
637
- loY34k: 'Customer is Loyal',
638
- '5HmDCN': 'Count of line-items in the transaction',
639
- tjqr20: 'Value of the transaction',
640
- cy654u: 'Concept',
641
- t987re: 'Customer Lifetime Transaction Count',
642
- '9i58j1': 'Zone',
643
- '23g26d': 'Extended fields in the transaction',
644
- '9LF38S': 'Customer Lifetime Points',
645
- '17t80a': 'Store',
646
- mFL59r: 'Gross amount of the transaction',
647
- '1wg27d': 'Custom fields in the transaction',
648
- c654er: "Customer's segments"
649
- },
650
- couponsData: {
651
- couponsData: {}
652
- },
653
- allAudienceGroups: {},
654
- brand: [],
655
- category: [],
656
- productAttribute: [],
657
- customerSegmentValues: [],
658
- conceptValues: [],
659
- zoneValues: [],
660
- storeValues: [],
661
- customFieldValues: []
662
- }
663
- },
664
- '12pNxGPAma': {
665
- previewComponent: {
666
- displayName: 'withStyles__StyledComponent',
667
- attrs: [],
668
- componentStyle: {
669
- rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
670
- isStatic: false,
671
- componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
672
- lastClassName: 'kWaAQH'
673
- },
674
- foldedComponentIds: [],
675
- styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
676
- },
677
- previewProps: {
678
- header: 'waitExpiredPath',
679
- name: 'Wait time expired path',
680
- condition: {
681
- duration: 1,
682
- timeUnit: 'HOURS'
683
- },
684
- blockId: 'P9x2uEdq1d',
685
- events: [{
686
- type: 'STANDARD',
687
- name: 'CouponRedeem'
688
- }, {
689
- type: 'STANDARD',
690
- name: 'customerAdded'
691
- }, {
692
- type: 'STANDARD',
693
- name: 'transactionAdded'
694
- }, {
695
- type: 'BEHAVIOURAL',
696
- name: 'reviewAdded'
697
- }],
698
- grammar: {
699
- LqNBP7: 'Bill type of the transaction',
700
- '32p234': 'Basket Sum with product',
701
- '8arjDE': 'Date of the transaction',
702
- '56de3w': 'Extended field in the customer',
703
- '3UcyB2': 'Discount on the transaction',
704
- sRc59p: 'Customer source',
705
- o765rt: 'OrgUnit',
706
- '5sLAB9': "Customer's slab name",
707
- '5LFP9e': 'Customer Lifetime Purchases',
708
- '5zpWFg': 'Transaction number',
709
- '87ytre': 'Customer externalId',
710
- sNb89U: 'Customer slab number',
711
- '3er25q': 'Customer Custom fields filter',
712
- '4cP21P': 'Customer points',
713
- loY34k: 'Customer is Loyal',
714
- '5HmDCN': 'Count of line-items in the transaction',
715
- tjqr20: 'Value of the transaction',
716
- cy654u: 'Concept',
717
- t987re: 'Customer Lifetime Transaction Count',
718
- '9i58j1': 'Zone',
719
- '23g26d': 'Extended fields in the transaction',
720
- '9LF38S': 'Customer Lifetime Points',
721
- '17t80a': 'Store',
722
- mFL59r: 'Gross amount of the transaction',
723
- '1wg27d': 'Custom fields in the transaction',
724
- c654er: "Customer's segments"
725
- },
726
- couponsData: {
727
- couponsData: {}
728
- },
729
- allAudienceGroups: {},
730
- brand: [],
731
- category: [],
732
- productAttribute: [],
733
- customerSegmentValues: [],
734
- conceptValues: [],
735
- zoneValues: [],
736
- storeValues: [],
737
- customFieldValues: []
738
- }
739
- }
740
- },
741
- from: 'C_Dx-bl4PV'
742
- }, {
743
- id: 'CLN_1RQ9YY',
744
- props: {
745
- iconType: 'sms',
746
- color: '#fec52e',
747
- id: 'CLN_1RQ9YY',
748
- blockType: 'SMS',
749
- nodeTitle: {
750
- key: null,
751
- ref: null,
752
- props: {
753
- id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
754
- defaultMessage: 'SMS',
755
- values: {}
756
- },
757
- _owner: null,
758
- _store: {}
759
- },
760
- blockData: {
761
- content: {
762
- couponOffers: [],
763
- pointsOffers: [],
764
- body: 'SMS1'
765
- },
766
- deliverySettings: {
767
- domainId: 3461,
768
- gsmSenderId: 'TATADG'
769
- },
770
- name: 'SMS1'
771
- },
772
- isConfigured: true,
773
- nodePreview: {
774
- key: null,
775
- ref: null,
776
- props: {
777
- type: 'SMS',
778
- blockData: {
779
- content: {
780
- couponOffers: [],
781
- pointsOffers: [],
782
- body: 'SMS1'
783
- },
784
- deliverySettings: {
785
- domainId: 3461,
786
- gsmSenderId: 'TATADG'
787
- },
788
- name: 'SMS1'
789
- },
790
- blockId: 'CLN_1RQ9YY'
791
- },
792
- _owner: null,
793
- _store: {}
794
- },
795
- joinBlockNameArray: ['JOIN1', 'JOIN2']
796
- },
797
- to: ['aO5-eWUPMk'],
798
- from: 'P9x2uEdq1d',
799
- type: 'BLOCK_NODE'
800
- }, {
801
- width: 42,
802
- height: 42,
803
- id: 'aO5-eWUPMk',
804
- props: {
805
- type: 'end',
806
- style: {
807
- color: '#47af46',
808
- padding: '9px 0'
809
- },
810
- textLabel: {
811
- type: {
812
- displayName: 'CapLabel',
813
- attrs: [],
814
- componentStyle: {
815
- rules: ['font-size:', null, ';font-weight:', null, ';color:', null, ';line-height:', null, ';'],
816
- isStatic: false,
817
- componentId: 'CapLabel-n7zsf5-0',
818
- lastClassName: 'hcywYU'
819
- },
820
- foldedComponentIds: [],
821
- styledComponentId: 'CapLabel-n7zsf5-0',
822
- target: 'div',
823
- propTypes: {},
824
- CapLabelInline: {
825
- displayName: 'CapLabel__CapLabelInline',
826
- attrs: [],
827
- componentStyle: {
828
- rules: ['font-size:', null, ';font-weight:', null, ';color:', null, ';line-height:', null, ';'],
829
- isStatic: false,
830
- componentId: 'CapLabel__CapLabelInline-n7zsf5-1',
831
- lastClassName: 'gBSzRM'
832
- },
833
- foldedComponentIds: [],
834
- styledComponentId: 'CapLabel__CapLabelInline-n7zsf5-1',
835
- target: 'span'
836
- },
837
- _foldedDefaultProps: {
838
- type: 'label1'
839
- }
840
- },
841
- key: null,
842
- ref: null,
843
- props: {
844
- type: 'label2',
845
- className: 'margin-l-2 margin-t-5',
846
- children: {
847
- key: null,
848
- ref: null,
849
- props: {
850
- id: 'adionaUIApp.common.end',
851
- defaultMessage: 'End',
852
- values: {}
853
- },
854
- _owner: null,
855
- _store: {}
856
- }
857
- },
858
- _owner: null,
859
- _store: {}
860
- }
861
- },
862
- type: 'END_NODE',
863
- from: 'CLN_1RQ9YY'
864
- }, {
865
- id: '12pNxGPAma',
866
- props: {
867
- iconType: 'join',
868
- color: '#23cccc',
869
- id: '12pNxGPAma',
870
- blockType: 'JOIN',
871
- isMultiPath: false,
872
- nodeTitle: {
873
- key: null,
874
- ref: null,
875
- props: {
876
- id: 'adionaUIApp.components.pages.JourneyBuilder.configureJoin',
877
- defaultMessage: 'Join',
878
- values: {}
879
- },
880
- _owner: null,
881
- _store: {}
882
- },
883
- blockData: {
884
- name: 'JOIN3',
885
- nextBlock: {
886
- pathBlockId: '04keK6m-H3',
887
- pathName: 'SMS2'
888
- }
889
- },
890
- isConfigured: true,
891
- nodePreview: {
892
- key: null,
893
- ref: null,
894
- props: {
895
- type: 'JOIN',
896
- flowControlBlockName: 'JOIN3',
897
- joinedBlockName: 'SMS2'
898
- },
899
- _owner: null,
900
- _store: {}
901
- }
902
- },
903
- from: 'P9x2uEdq1d',
904
- type: 'BLOCK_NODE'
905
- }, {
906
- id: '04keK6m-H3',
907
- props: {
908
- iconType: 'sms',
909
- color: '#fec52e',
910
- id: '04keK6m-H3',
911
- blockType: 'SMS',
912
- nodeTitle: {
913
- key: null,
914
- ref: null,
915
- props: {
916
- id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
917
- defaultMessage: 'SMS',
918
- values: {}
919
- },
920
- _owner: null,
921
- _store: {}
922
- },
923
- blockData: {
924
- content: {
925
- couponOffers: [],
926
- pointsOffers: [],
927
- body: 'SMS2'
928
- },
929
- deliverySettings: {
930
- domainId: 3461,
931
- gsmSenderId: 'TATADG'
932
- },
933
- name: 'SMS2'
934
- },
935
- isConfigured: true,
936
- nodePreview: {
937
- key: null,
938
- ref: null,
939
- props: {
940
- type: 'SMS',
941
- blockData: {
942
- content: {
943
- couponOffers: [],
944
- pointsOffers: [],
945
- body: 'SMS2'
946
- },
947
- deliverySettings: {
948
- domainId: 3461,
949
- gsmSenderId: 'TATADG'
950
- },
951
- name: 'SMS2'
952
- },
953
- blockId: '04keK6m-H3'
954
- },
955
- _owner: null,
956
- _store: {}
957
- },
958
- joinBlockNameArray: ['JOIN3']
959
- },
960
- to: ['YsirnCRiSb'],
961
- from: 'C_Dx-bl4PV',
962
- type: 'BLOCK_NODE'
963
- }, {
964
- id: 'YsirnCRiSb',
965
- props: {
966
- iconType: 'join',
967
- color: '#23cccc',
968
- id: 'YsirnCRiSb',
969
- blockType: 'JOIN',
970
- isMultiPath: false,
971
- nodeTitle: {
972
- key: null,
973
- ref: null,
974
- props: {
975
- id: 'adionaUIApp.components.pages.JourneyBuilder.configureJoin',
976
- defaultMessage: 'Join',
977
- values: {}
978
- },
979
- _owner: null,
980
- _store: {}
981
- },
982
- blockData: {
983
- name: 'JOIN2',
984
- nextBlock: {
985
- pathBlockId: 'CLN_1RQ9YY',
986
- pathName: 'SMS1'
987
- }
988
- },
989
- isConfigured: true,
990
- nodePreview: {
991
- key: null,
992
- ref: null,
993
- props: {
994
- type: 'JOIN',
995
- flowControlBlockName: 'JOIN2',
996
- joinedBlockName: 'SMS1'
997
- },
998
- _owner: null,
999
- _store: {}
1000
- }
1001
- },
1002
- from: '04keK6m-H3',
1003
- type: 'BLOCK_NODE'
1004
- }, {
1005
- id: 'X4pqXQKF7t',
1006
- props: {
1007
- iconType: 'sms',
1008
- color: '#fec52e',
1009
- id: 'X4pqXQKF7t',
1010
- blockType: 'SMS',
1011
- nodeTitle: {
1012
- key: null,
1013
- ref: null,
1014
- props: {
1015
- id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
1016
- defaultMessage: 'SMS',
1017
- values: {}
1018
- },
1019
- _owner: null,
1020
- _store: {}
1021
- },
1022
- blockData: {
1023
- content: {
1024
- couponOffers: [],
1025
- pointsOffers: [],
1026
- body: 'SMS3'
1027
- },
1028
- deliverySettings: {
1029
- domainId: 3461,
1030
- gsmSenderId: 'TATADG'
1031
- },
1032
- name: 'SMS3'
1033
- },
1034
- isConfigured: true,
1035
- nodePreview: {
1036
- key: null,
1037
- ref: null,
1038
- props: {
1039
- type: 'SMS',
1040
- blockData: {
1041
- content: {
1042
- couponOffers: [],
1043
- pointsOffers: [],
1044
- body: 'SMS3'
1045
- },
1046
- deliverySettings: {
1047
- domainId: 3461,
1048
- gsmSenderId: 'TATADG'
1049
- },
1050
- name: 'SMS3'
1051
- },
1052
- blockId: 'X4pqXQKF7t'
1053
- },
1054
- _owner: null,
1055
- _store: {}
1056
- }
1057
- },
1058
- to: ['mj3MUxj6CH'],
1059
- from: 'C_Dx-bl4PV',
1060
- type: 'BLOCK_NODE'
1061
- }, {
1062
- id: 'mj3MUxj6CH',
1063
- props: {
1064
- iconType: 'join',
1065
- color: '#23cccc',
1066
- id: 'mj3MUxj6CH',
1067
- blockType: 'JOIN',
1068
- isMultiPath: false,
1069
- nodeTitle: {
1070
- key: null,
1071
- ref: null,
1072
- props: {
1073
- id: 'adionaUIApp.components.pages.JourneyBuilder.configureJoin',
1074
- defaultMessage: 'Join',
1075
- values: {}
1076
- },
1077
- _owner: null,
1078
- _store: {}
1079
- },
1080
- blockData: {
1081
- name: 'JOIN1',
1082
- nextBlock: {
1083
- pathBlockId: 'CLN_1RQ9YY',
1084
- pathName: 'SMS1'
1085
- }
1086
- },
1087
- isConfigured: true,
1088
- nodePreview: {
1089
- key: null,
1090
- ref: null,
1091
- props: {
1092
- type: 'JOIN',
1093
- flowControlBlockName: 'JOIN1',
1094
- joinedBlockName: 'SMS1'
1095
- },
1096
- _owner: null,
1097
- _store: {}
1098
- }
1099
- },
1100
- from: 'X4pqXQKF7t',
1101
- type: 'BLOCK_NODE'
1102
- }, {
1103
- width: 148,
1104
- height: 180,
1105
- id: '59iTeDxv_B',
1106
- to: [],
1107
- type: 'EXIT_TRIGGER',
1108
- pathsInfo: {},
1109
- props: {
1110
- blockData: {
1111
- triggerType: 'USER_EVENT',
1112
- userEventTrigger: {
1113
- triggerFilterType: 'ALL_CUSTOMERS',
1114
- eventType: 'transactionAdded',
1115
- conditionalPath: {
1116
- condition: {
1117
- compoundExpression: {
1118
- operator: 'OR',
1119
- expressionGroups: [{
1120
- operator: 'AND',
1121
- simpleExpressions: [{
1122
- fact: {
1123
- factId: 'tjqr20',
1124
- profileId: 'TRANSACTION_PROFILE',
1125
- params: []
1126
- },
1127
- functions: [],
1128
- operator: 'EQ',
1129
- operand: {
1130
- type: 'DOUBLE_VALUE',
1131
- longValue: null,
1132
- stringValue: null,
1133
- doubleValue: 50,
1134
- booleanValue: null,
1135
- longList: null,
1136
- stringList: null,
1137
- doubleList: null
1138
- },
1139
- isExcluded: false,
1140
- excluded: false
1141
- }]
1142
- }]
1143
- }
1144
- }
1145
- }
1146
- }
1147
- },
1148
- viewMode: false,
1149
- blockType: 'EXIT_TRIGGER',
1150
- grammar: {
1151
- LqNBP7: 'Bill type of the transaction',
1152
- '32p234': 'Basket Sum with product',
1153
- '8arjDE': 'Date of the transaction',
1154
- '56de3w': 'Extended field in the customer',
1155
- '3UcyB2': 'Discount on the transaction',
1156
- sRc59p: 'Customer source',
1157
- o765rt: 'OrgUnit',
1158
- '5sLAB9': "Customer's slab name",
1159
- '5LFP9e': 'Customer Lifetime Purchases',
1160
- '5zpWFg': 'Transaction number',
1161
- '87ytre': 'Customer externalId',
1162
- sNb89U: 'Customer slab number',
1163
- '3er25q': 'Customer Custom fields filter',
1164
- '4cP21P': 'Customer points',
1165
- loY34k: 'Customer is Loyal',
1166
- '5HmDCN': 'Count of line-items in the transaction',
1167
- tjqr20: 'Value of the transaction',
1168
- cy654u: 'Concept',
1169
- t987re: 'Customer Lifetime Transaction Count',
1170
- '9i58j1': 'Zone',
1171
- '23g26d': 'Extended fields in the transaction',
1172
- '9LF38S': 'Customer Lifetime Points',
1173
- '17t80a': 'Store',
1174
- mFL59r: 'Gross amount of the transaction',
1175
- '1wg27d': 'Custom fields in the transaction',
1176
- c654er: "Customer's segments"
1177
- }
1178
- },
1179
- isMultiPath: false
1180
- }, {
1181
- width: 148,
1182
- height: 161,
1183
- id: '5eDwSQu6Fi',
1184
- type: 'SCHEDULE_BLOCK',
1185
- isMultiPath: false,
1186
- props: {
1187
- id: '5eDwSQu6Fi',
1188
- blockData: {
1189
- startType: 'IMMEDIATE',
1190
- endType: 'NEVER',
1191
- startsFrom: null,
1192
- endsAt: 7226562600000
1193
- },
1194
- viewMode: false
1195
- }
1196
- }],
1197
- computeJoinGraphNodesDataOutput: {
1198
- '12pNxGPAma': ['04keK6m-H3', 'JOIN3'],
1199
- YsirnCRiSb: ['CLN_1RQ9YY', 'JOIN2'],
1200
- mj3MUxj6CH: ['CLN_1RQ9YY', 'JOIN1']
1201
- },
1202
- updateJoinOrJoinedGraphNodePropInput1: [{
1203
- width: 148,
1204
- height: 180,
1205
- id: 'C_Dx-bl4PV',
1206
- to: ['P9x2uEdq1d', 'X4pqXQKF7t'],
1207
- type: 'ENTRY_TRIGGER',
1208
- pathsInfo: {
1209
- P9x2uEdq1d: {
1210
- previewComponent: {
1211
- displayName: 'withStyles__StyledComponent',
1212
- attrs: [],
1213
- componentStyle: {
1214
- rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
1215
- isStatic: false,
1216
- componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
1217
- lastClassName: 'kWaAQH'
1218
- },
1219
- foldedComponentIds: [],
1220
- styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
1221
- },
1222
- previewProps: {
1223
- header: 'entryTrigger',
1224
- name: 'Path 1',
1225
- condition: {
1226
- compoundExpression: {
1227
- operator: 'OR',
1228
- expressionGroups: [{
1229
- operator: 'AND',
1230
- simpleExpressions: [{
1231
- fact: {
1232
- factId: 'tjqr20',
1233
- profileId: 'TRANSACTION_PROFILE'
1234
- },
1235
- operator: 'EQ',
1236
- operand: {
1237
- type: 'DOUBLE_VALUE',
1238
- doubleValue: 50
1239
- },
1240
- isExcluded: false
1241
- }]
1242
- }]
1243
- }
1244
- },
1245
- blockId: 'C_Dx-bl4PV',
1246
- events: [{
1247
- type: 'STANDARD',
1248
- name: 'CouponRedeem'
1249
- }, {
1250
- type: 'STANDARD',
1251
- name: 'customerAdded'
1252
- }, {
1253
- type: 'STANDARD',
1254
- name: 'transactionAdded'
1255
- }, {
1256
- type: 'BEHAVIOURAL',
1257
- name: 'reviewAdded'
1258
- }],
1259
- grammar: {
1260
- LqNBP7: 'Bill type of the transaction',
1261
- '32p234': 'Basket Sum with product',
1262
- '8arjDE': 'Date of the transaction',
1263
- '56de3w': 'Extended field in the customer',
1264
- '3UcyB2': 'Discount on the transaction',
1265
- sRc59p: 'Customer source',
1266
- o765rt: 'OrgUnit',
1267
- '5sLAB9': "Customer's slab name",
1268
- '5LFP9e': 'Customer Lifetime Purchases',
1269
- '5zpWFg': 'Transaction number',
1270
- '87ytre': 'Customer externalId',
1271
- sNb89U: 'Customer slab number',
1272
- '3er25q': 'Customer Custom fields filter',
1273
- '4cP21P': 'Customer points',
1274
- loY34k: 'Customer is Loyal',
1275
- '5HmDCN': 'Count of line-items in the transaction',
1276
- tjqr20: 'Value of the transaction',
1277
- cy654u: 'Concept',
1278
- t987re: 'Customer Lifetime Transaction Count',
1279
- '9i58j1': 'Zone',
1280
- '23g26d': 'Extended fields in the transaction',
1281
- '9LF38S': 'Customer Lifetime Points',
1282
- '17t80a': 'Store',
1283
- mFL59r: 'Gross amount of the transaction',
1284
- '1wg27d': 'Custom fields in the transaction',
1285
- c654er: "Customer's segments"
1286
- },
1287
- couponsData: {
1288
- couponsData: {
1289
- CLN_1RQ9YY: [],
1290
- '04keK6m-H3': [],
1291
- X4pqXQKF7t: []
1292
- }
1293
- },
1294
- allAudienceGroups: {},
1295
- brand: [],
1296
- category: [],
1297
- productAttribute: [],
1298
- customerSegmentValues: [],
1299
- conceptValues: [],
1300
- zoneValues: [],
1301
- storeValues: [],
1302
- customFieldValues: []
1303
- }
1304
- },
1305
- X4pqXQKF7t: {
1306
- previewComponent: {
1307
- displayName: 'withStyles__StyledComponent',
1308
- attrs: [],
1309
- componentStyle: {
1310
- rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
1311
- isStatic: false,
1312
- componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
1313
- lastClassName: 'kWaAQH'
1314
- },
1315
- foldedComponentIds: [],
1316
- styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
1317
- },
1318
- previewProps: {
1319
- header: 'entryTrigger',
1320
- name: 'Path 2',
1321
- condition: {
1322
- compoundExpression: {
1323
- operator: 'OR',
1324
- expressionGroups: [{
1325
- operator: 'AND',
1326
- simpleExpressions: [{
1327
- fact: {
1328
- factId: 'tjqr20',
1329
- profileId: 'TRANSACTION_PROFILE'
1330
- },
1331
- operator: 'EQ',
1332
- operand: {
1333
- type: 'DOUBLE_VALUE',
1334
- doubleValue: 45
1335
- },
1336
- isExcluded: false
1337
- }]
1338
- }]
1339
- }
1340
- },
1341
- blockId: 'C_Dx-bl4PV',
1342
- events: [{
1343
- type: 'STANDARD',
1344
- name: 'CouponRedeem'
1345
- }, {
1346
- type: 'STANDARD',
1347
- name: 'customerAdded'
1348
- }, {
1349
- type: 'STANDARD',
1350
- name: 'transactionAdded'
1351
- }, {
1352
- type: 'BEHAVIOURAL',
1353
- name: 'reviewAdded'
1354
- }],
1355
- grammar: {
1356
- LqNBP7: 'Bill type of the transaction',
1357
- '32p234': 'Basket Sum with product',
1358
- '8arjDE': 'Date of the transaction',
1359
- '56de3w': 'Extended field in the customer',
1360
- '3UcyB2': 'Discount on the transaction',
1361
- sRc59p: 'Customer source',
1362
- o765rt: 'OrgUnit',
1363
- '5sLAB9': "Customer's slab name",
1364
- '5LFP9e': 'Customer Lifetime Purchases',
1365
- '5zpWFg': 'Transaction number',
1366
- '87ytre': 'Customer externalId',
1367
- sNb89U: 'Customer slab number',
1368
- '3er25q': 'Customer Custom fields filter',
1369
- '4cP21P': 'Customer points',
1370
- loY34k: 'Customer is Loyal',
1371
- '5HmDCN': 'Count of line-items in the transaction',
1372
- tjqr20: 'Value of the transaction',
1373
- cy654u: 'Concept',
1374
- t987re: 'Customer Lifetime Transaction Count',
1375
- '9i58j1': 'Zone',
1376
- '23g26d': 'Extended fields in the transaction',
1377
- '9LF38S': 'Customer Lifetime Points',
1378
- '17t80a': 'Store',
1379
- mFL59r: 'Gross amount of the transaction',
1380
- '1wg27d': 'Custom fields in the transaction',
1381
- c654er: "Customer's segments"
1382
- },
1383
- couponsData: {
1384
- couponsData: {
1385
- CLN_1RQ9YY: [],
1386
- '04keK6m-H3': [],
1387
- X4pqXQKF7t: []
1388
- }
1389
- },
1390
- allAudienceGroups: {},
1391
- brand: [],
1392
- category: [],
1393
- productAttribute: [],
1394
- customerSegmentValues: [],
1395
- conceptValues: [],
1396
- zoneValues: [],
1397
- storeValues: [],
1398
- customFieldValues: []
1399
- }
1400
- }
1401
- },
1402
- props: {
1403
- blockData: {
1404
- triggerType: 'USER_EVENT',
1405
- userEventTrigger: {
1406
- triggerFilterType: 'ALL_CUSTOMERS',
1407
- eventType: 'transactionAdded',
1408
- conditionalPaths: [{
1409
- condition: {
1410
- compoundExpression: {
1411
- operator: 'OR',
1412
- expressionGroups: [{
1413
- operator: 'AND',
1414
- simpleExpressions: [{
1415
- fact: {
1416
- factId: 'tjqr20',
1417
- profileId: 'TRANSACTION_PROFILE'
1418
- },
1419
- operator: 'EQ',
1420
- operand: {
1421
- type: 'DOUBLE_VALUE',
1422
- doubleValue: 50
1423
- },
1424
- isExcluded: false
1425
- }]
1426
- }]
1427
- }
1428
- },
1429
- path: {
1430
- pathBlockId: 'P9x2uEdq1d',
1431
- pathName: null
1432
- }
1433
- }, {
1434
- condition: {
1435
- compoundExpression: {
1436
- operator: 'OR',
1437
- expressionGroups: [{
1438
- operator: 'AND',
1439
- simpleExpressions: [{
1440
- fact: {
1441
- factId: 'tjqr20',
1442
- profileId: 'TRANSACTION_PROFILE'
1443
- },
1444
- operator: 'EQ',
1445
- operand: {
1446
- type: 'DOUBLE_VALUE',
1447
- doubleValue: 45
1448
- },
1449
- isExcluded: false
1450
- }]
1451
- }]
1452
- }
1453
- },
1454
- path: {
1455
- pathBlockId: 'X4pqXQKF7t',
1456
- pathName: null
1457
- }
1458
- }]
1459
- }
1460
- },
1461
- allAudienceGroups: {}
1462
- },
1463
- isMultiPath: true,
1464
- placeholderToIndex: 1
1465
- }, {
1466
- id: 'P9x2uEdq1d',
1467
- name: 'TILL',
1468
- userEventTrigger: {
1469
- triggerFilterType: 'ALL_CUSTOMERS',
1470
- eventType: 'transactionAdded',
1471
- conditionalPaths: [{
1472
- path: {
1473
- pathName: null,
1474
- pathBlockId: 'aO5-eWUPMk'
1475
- },
1476
- condition: {
1477
- compoundExpression: {
1478
- operator: 'OR',
1479
- expressionGroups: [{
1480
- operator: 'AND',
1481
- simpleExpressions: [{
1482
- fact: {
1483
- factId: 'tjqr20',
1484
- profileId: 'TRANSACTION_PROFILE',
1485
- params: []
1486
- },
1487
- functions: [],
1488
- operator: 'EQ',
1489
- operand: {
1490
- type: 'DOUBLE_VALUE',
1491
- longValue: null,
1492
- stringValue: null,
1493
- doubleValue: 50,
1494
- booleanValue: null,
1495
- longList: null,
1496
- stringList: null,
1497
- doubleList: null
1498
- },
1499
- isExcluded: false,
1500
- excluded: false
1501
- }]
1502
- }]
1503
- }
1504
- }
1505
- }]
1506
- },
1507
- waitDurationRO: {
1508
- duration: 1,
1509
- timeUnit: 'HOURS'
1510
- },
1511
- postWaitPath: {
1512
- pathName: 'Wait time expired path',
1513
- pathBlockId: 'GoPSnp68IE'
1514
- },
1515
- props: {
1516
- iconType: 'waitEvent',
1517
- color: '#23cccc',
1518
- blockType: 'WAIT_TILL_EVENT',
1519
- isConfigured: true,
1520
- viewMode: false,
1521
- id: 'P9x2uEdq1d',
1522
- isMultiPath: true,
1523
- nodePreview: {
1524
- key: null,
1525
- ref: null,
1526
- props: {
1527
- blockData: {
1528
- id: 'P9x2uEdq1d',
1529
- name: 'TILL',
1530
- userEventTrigger: {
1531
- triggerFilterType: 'ALL_CUSTOMERS',
1532
- eventType: 'transactionAdded',
1533
- conditionalPaths: [{
1534
- path: {
1535
- pathName: null,
1536
- pathBlockId: 'aO5-eWUPMk'
1537
- },
1538
- condition: {
1539
- compoundExpression: {
1540
- operator: 'OR',
1541
- expressionGroups: [{
1542
- operator: 'AND',
1543
- simpleExpressions: [{
1544
- fact: {
1545
- factId: 'tjqr20',
1546
- profileId: 'TRANSACTION_PROFILE',
1547
- params: []
1548
- },
1549
- functions: [],
1550
- operator: 'EQ',
1551
- operand: {
1552
- type: 'DOUBLE_VALUE',
1553
- longValue: null,
1554
- stringValue: null,
1555
- doubleValue: 50,
1556
- booleanValue: null,
1557
- longList: null,
1558
- stringList: null,
1559
- doubleList: null
1560
- },
1561
- isExcluded: false,
1562
- excluded: false
1563
- }]
1564
- }]
1565
- }
1566
- }
1567
- }]
1568
- },
1569
- waitDurationRO: {
1570
- duration: 1,
1571
- timeUnit: 'HOURS'
1572
- },
1573
- postWaitPath: {
1574
- pathName: 'Wait time expired path',
1575
- pathBlockId: 'GoPSnp68IE'
1576
- },
1577
- blockType: 'WAIT_TILL_EVENT'
1578
- },
1579
- blockId: 'P9x2uEdq1d',
1580
- type: 'WAIT_TILL_EVENT'
1581
- },
1582
- _owner: null,
1583
- _store: {}
1584
- }
1585
- },
1586
- type: 'BLOCK_NODE',
1587
- to: ['CLN_1RQ9YY', '12pNxGPAma'],
1588
- pathsInfo: {
1589
- CLN_1RQ9YY: {
1590
- previewComponent: {
1591
- displayName: 'withStyles__StyledComponent',
1592
- attrs: [],
1593
- componentStyle: {
1594
- rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
1595
- isStatic: false,
1596
- componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
1597
- lastClassName: 'kWaAQH'
1598
- },
1599
- foldedComponentIds: [],
1600
- styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
1601
- },
1602
- previewProps: {
1603
- header: 'waitTillEvent',
1604
- name: {
1605
- key: null,
1606
- ref: null,
1607
- props: {
1608
- id: 'adionaUIApp.common.eventPath',
1609
- defaultMessage: 'Event path',
1610
- values: {}
1611
- },
1612
- _owner: null,
1613
- _store: {}
1614
- },
1615
- condition: {
1616
- compoundExpression: {
1617
- operator: 'OR',
1618
- expressionGroups: [{
1619
- operator: 'AND',
1620
- simpleExpressions: [{
1621
- fact: {
1622
- factId: 'tjqr20',
1623
- profileId: 'TRANSACTION_PROFILE',
1624
- params: []
1625
- },
1626
- functions: [],
1627
- operator: 'EQ',
1628
- operand: {
1629
- type: 'DOUBLE_VALUE',
1630
- longValue: null,
1631
- stringValue: null,
1632
- doubleValue: 50,
1633
- booleanValue: null,
1634
- longList: null,
1635
- stringList: null,
1636
- doubleList: null
1637
- },
1638
- isExcluded: false,
1639
- excluded: false
1640
- }]
1641
- }]
1642
- }
1643
- },
1644
- blockId: 'P9x2uEdq1d',
1645
- events: [{
1646
- type: 'STANDARD',
1647
- name: 'CouponRedeem'
1648
- }, {
1649
- type: 'STANDARD',
1650
- name: 'customerAdded'
1651
- }, {
1652
- type: 'STANDARD',
1653
- name: 'transactionAdded'
1654
- }, {
1655
- type: 'BEHAVIOURAL',
1656
- name: 'reviewAdded'
1657
- }],
1658
- grammar: {
1659
- LqNBP7: 'Bill type of the transaction',
1660
- '32p234': 'Basket Sum with product',
1661
- '8arjDE': 'Date of the transaction',
1662
- '56de3w': 'Extended field in the customer',
1663
- '3UcyB2': 'Discount on the transaction',
1664
- sRc59p: 'Customer source',
1665
- o765rt: 'OrgUnit',
1666
- '5sLAB9': "Customer's slab name",
1667
- '5LFP9e': 'Customer Lifetime Purchases',
1668
- '5zpWFg': 'Transaction number',
1669
- '87ytre': 'Customer externalId',
1670
- sNb89U: 'Customer slab number',
1671
- '3er25q': 'Customer Custom fields filter',
1672
- '4cP21P': 'Customer points',
1673
- loY34k: 'Customer is Loyal',
1674
- '5HmDCN': 'Count of line-items in the transaction',
1675
- tjqr20: 'Value of the transaction',
1676
- cy654u: 'Concept',
1677
- t987re: 'Customer Lifetime Transaction Count',
1678
- '9i58j1': 'Zone',
1679
- '23g26d': 'Extended fields in the transaction',
1680
- '9LF38S': 'Customer Lifetime Points',
1681
- '17t80a': 'Store',
1682
- mFL59r: 'Gross amount of the transaction',
1683
- '1wg27d': 'Custom fields in the transaction',
1684
- c654er: "Customer's segments"
1685
- },
1686
- couponsData: {
1687
- couponsData: {}
1688
- },
1689
- allAudienceGroups: {},
1690
- brand: [],
1691
- category: [],
1692
- productAttribute: [],
1693
- customerSegmentValues: [],
1694
- conceptValues: [],
1695
- zoneValues: [],
1696
- storeValues: [],
1697
- customFieldValues: []
1698
- }
1699
- },
1700
- '12pNxGPAma': {
1701
- previewComponent: {
1702
- displayName: 'withStyles__StyledComponent',
1703
- attrs: [],
1704
- componentStyle: {
1705
- rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
1706
- isStatic: false,
1707
- componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
1708
- lastClassName: 'kWaAQH'
1709
- },
1710
- foldedComponentIds: [],
1711
- styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
1712
- },
1713
- previewProps: {
1714
- header: 'waitExpiredPath',
1715
- name: 'Wait time expired path',
1716
- condition: {
1717
- duration: 1,
1718
- timeUnit: 'HOURS'
1719
- },
1720
- blockId: 'P9x2uEdq1d',
1721
- events: [{
1722
- type: 'STANDARD',
1723
- name: 'CouponRedeem'
1724
- }, {
1725
- type: 'STANDARD',
1726
- name: 'customerAdded'
1727
- }, {
1728
- type: 'STANDARD',
1729
- name: 'transactionAdded'
1730
- }, {
1731
- type: 'BEHAVIOURAL',
1732
- name: 'reviewAdded'
1733
- }],
1734
- grammar: {
1735
- LqNBP7: 'Bill type of the transaction',
1736
- '32p234': 'Basket Sum with product',
1737
- '8arjDE': 'Date of the transaction',
1738
- '56de3w': 'Extended field in the customer',
1739
- '3UcyB2': 'Discount on the transaction',
1740
- sRc59p: 'Customer source',
1741
- o765rt: 'OrgUnit',
1742
- '5sLAB9': "Customer's slab name",
1743
- '5LFP9e': 'Customer Lifetime Purchases',
1744
- '5zpWFg': 'Transaction number',
1745
- '87ytre': 'Customer externalId',
1746
- sNb89U: 'Customer slab number',
1747
- '3er25q': 'Customer Custom fields filter',
1748
- '4cP21P': 'Customer points',
1749
- loY34k: 'Customer is Loyal',
1750
- '5HmDCN': 'Count of line-items in the transaction',
1751
- tjqr20: 'Value of the transaction',
1752
- cy654u: 'Concept',
1753
- t987re: 'Customer Lifetime Transaction Count',
1754
- '9i58j1': 'Zone',
1755
- '23g26d': 'Extended fields in the transaction',
1756
- '9LF38S': 'Customer Lifetime Points',
1757
- '17t80a': 'Store',
1758
- mFL59r: 'Gross amount of the transaction',
1759
- '1wg27d': 'Custom fields in the transaction',
1760
- c654er: "Customer's segments"
1761
- },
1762
- couponsData: {
1763
- couponsData: {}
1764
- },
1765
- allAudienceGroups: {},
1766
- brand: [],
1767
- category: [],
1768
- productAttribute: [],
1769
- customerSegmentValues: [],
1770
- conceptValues: [],
1771
- zoneValues: [],
1772
- storeValues: [],
1773
- customFieldValues: []
1774
- }
1775
- }
1776
- },
1777
- from: 'C_Dx-bl4PV'
1778
- }, {
1779
- id: 'CLN_1RQ9YY',
1780
- props: {
1781
- iconType: 'sms',
1782
- color: '#fec52e',
1783
- id: 'CLN_1RQ9YY',
1784
- blockType: 'SMS',
1785
- nodeTitle: {
1786
- key: null,
1787
- ref: null,
1788
- props: {
1789
- id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
1790
- defaultMessage: 'SMS',
1791
- values: {}
1792
- },
1793
- _owner: null,
1794
- _store: {}
1795
- },
1796
- blockData: {
1797
- content: {
1798
- couponOffers: [],
1799
- pointsOffers: [],
1800
- body: 'SMS1'
1801
- },
1802
- deliverySettings: {
1803
- domainId: 3461,
1804
- gsmSenderId: 'TATADG'
1805
- },
1806
- name: 'SMS1'
1807
- },
1808
- isConfigured: true,
1809
- nodePreview: {
1810
- key: null,
1811
- ref: null,
1812
- props: {
1813
- type: 'SMS',
1814
- blockData: {
1815
- content: {
1816
- couponOffers: [],
1817
- pointsOffers: [],
1818
- body: 'SMS1'
1819
- },
1820
- deliverySettings: {
1821
- domainId: 3461,
1822
- gsmSenderId: 'TATADG'
1823
- },
1824
- name: 'SMS1'
1825
- },
1826
- blockId: 'CLN_1RQ9YY'
1827
- },
1828
- _owner: null,
1829
- _store: {}
1830
- },
1831
- joinBlockNameArray: ['JOIN1', 'JOIN2']
1832
- },
1833
- to: ['aO5-eWUPMk'],
1834
- from: 'P9x2uEdq1d',
1835
- type: 'BLOCK_NODE'
1836
- }, {
1837
- width: 42,
1838
- height: 42,
1839
- id: 'aO5-eWUPMk',
1840
- props: {
1841
- type: 'end',
1842
- style: {
1843
- color: '#47af46',
1844
- padding: '9px 0'
1845
- },
1846
- textLabel: {
1847
- type: {
1848
- displayName: 'CapLabel',
1849
- attrs: [],
1850
- componentStyle: {
1851
- rules: ['font-size:', null, ';font-weight:', null, ';color:', null, ';line-height:', null, ';'],
1852
- isStatic: false,
1853
- componentId: 'CapLabel-n7zsf5-0',
1854
- lastClassName: 'hcywYU'
1855
- },
1856
- foldedComponentIds: [],
1857
- styledComponentId: 'CapLabel-n7zsf5-0',
1858
- target: 'div',
1859
- propTypes: {},
1860
- CapLabelInline: {
1861
- displayName: 'CapLabel__CapLabelInline',
1862
- attrs: [],
1863
- componentStyle: {
1864
- rules: ['font-size:', null, ';font-weight:', null, ';color:', null, ';line-height:', null, ';'],
1865
- isStatic: false,
1866
- componentId: 'CapLabel__CapLabelInline-n7zsf5-1',
1867
- lastClassName: 'gBSzRM'
1868
- },
1869
- foldedComponentIds: [],
1870
- styledComponentId: 'CapLabel__CapLabelInline-n7zsf5-1',
1871
- target: 'span'
1872
- },
1873
- _foldedDefaultProps: {
1874
- type: 'label1'
1875
- }
1876
- },
1877
- key: null,
1878
- ref: null,
1879
- props: {
1880
- type: 'label2',
1881
- className: 'margin-l-2 margin-t-5',
1882
- children: {
1883
- key: null,
1884
- ref: null,
1885
- props: {
1886
- id: 'adionaUIApp.common.end',
1887
- defaultMessage: 'End',
1888
- values: {}
1889
- },
1890
- _owner: null,
1891
- _store: {}
1892
- }
1893
- },
1894
- _owner: null,
1895
- _store: {}
1896
- }
1897
- },
1898
- type: 'END_NODE',
1899
- from: 'CLN_1RQ9YY'
1900
- }, {
1901
- id: '12pNxGPAma',
1902
- props: {
1903
- iconType: 'join',
1904
- color: '#23cccc',
1905
- id: '12pNxGPAma',
1906
- blockType: 'JOIN',
1907
- isMultiPath: false,
1908
- nodeTitle: {
1909
- key: null,
1910
- ref: null,
1911
- props: {
1912
- id: 'adionaUIApp.components.pages.JourneyBuilder.configureJoin',
1913
- defaultMessage: 'Join',
1914
- values: {}
1915
- },
1916
- _owner: null,
1917
- _store: {}
1918
- },
1919
- blockData: {
1920
- name: 'JOIN3',
1921
- nextBlock: {
1922
- pathBlockId: '04keK6m-H3',
1923
- pathName: 'SMS2'
1924
- }
1925
- },
1926
- isConfigured: true,
1927
- nodePreview: {
1928
- key: null,
1929
- ref: null,
1930
- props: {
1931
- type: 'JOIN',
1932
- flowControlBlockName: 'JOIN3',
1933
- joinedBlockName: 'SMS2'
1934
- },
1935
- _owner: null,
1936
- _store: {}
1937
- }
1938
- },
1939
- from: 'P9x2uEdq1d',
1940
- type: 'BLOCK_NODE'
1941
- }, {
1942
- id: 'X4pqXQKF7t',
1943
- props: {
1944
- iconType: 'sms',
1945
- color: '#fec52e',
1946
- id: 'X4pqXQKF7t',
1947
- blockType: 'SMS',
1948
- nodeTitle: {
1949
- key: null,
1950
- ref: null,
1951
- props: {
1952
- id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
1953
- defaultMessage: 'SMS',
1954
- values: {}
1955
- },
1956
- _owner: null,
1957
- _store: {}
1958
- },
1959
- blockData: {
1960
- content: {
1961
- couponOffers: [],
1962
- pointsOffers: [],
1963
- body: 'SMS3'
1964
- },
1965
- deliverySettings: {
1966
- domainId: 3461,
1967
- gsmSenderId: 'TATADG'
1968
- },
1969
- name: 'SMS3'
1970
- },
1971
- isConfigured: true,
1972
- nodePreview: {
1973
- key: null,
1974
- ref: null,
1975
- props: {
1976
- type: 'SMS',
1977
- blockData: {
1978
- content: {
1979
- couponOffers: [],
1980
- pointsOffers: [],
1981
- body: 'SMS3'
1982
- },
1983
- deliverySettings: {
1984
- domainId: 3461,
1985
- gsmSenderId: 'TATADG'
1986
- },
1987
- name: 'SMS3'
1988
- },
1989
- blockId: 'X4pqXQKF7t'
1990
- },
1991
- _owner: null,
1992
- _store: {}
1993
- }
1994
- },
1995
- to: ['mj3MUxj6CH'],
1996
- from: 'C_Dx-bl4PV',
1997
- type: 'BLOCK_NODE'
1998
- }, {
1999
- id: 'mj3MUxj6CH',
2000
- props: {
2001
- iconType: 'join',
2002
- color: '#23cccc',
2003
- id: 'mj3MUxj6CH',
2004
- blockType: 'JOIN',
2005
- isMultiPath: false,
2006
- nodeTitle: {
2007
- key: null,
2008
- ref: null,
2009
- props: {
2010
- id: 'adionaUIApp.components.pages.JourneyBuilder.configureJoin',
2011
- defaultMessage: 'Join',
2012
- values: {}
2013
- },
2014
- _owner: null,
2015
- _store: {}
2016
- },
2017
- blockData: {
2018
- name: 'JOIN1',
2019
- nextBlock: {
2020
- pathBlockId: 'CLN_1RQ9YY',
2021
- pathName: 'SMS1'
2022
- }
2023
- },
2024
- isConfigured: true,
2025
- nodePreview: {
2026
- key: null,
2027
- ref: null,
2028
- props: {
2029
- type: 'JOIN',
2030
- flowControlBlockName: 'JOIN1',
2031
- joinedBlockName: 'SMS1'
2032
- },
2033
- _owner: null,
2034
- _store: {}
2035
- }
2036
- },
2037
- from: 'X4pqXQKF7t',
2038
- type: 'BLOCK_NODE'
2039
- }, {
2040
- width: 148,
2041
- height: 180,
2042
- id: '59iTeDxv_B',
2043
- to: [],
2044
- type: 'EXIT_TRIGGER',
2045
- pathsInfo: {},
2046
- props: {
2047
- blockData: {
2048
- triggerType: 'USER_EVENT',
2049
- userEventTrigger: {
2050
- triggerFilterType: 'ALL_CUSTOMERS',
2051
- eventType: 'transactionAdded',
2052
- conditionalPath: {
2053
- condition: {
2054
- compoundExpression: {
2055
- operator: 'OR',
2056
- expressionGroups: [{
2057
- operator: 'AND',
2058
- simpleExpressions: [{
2059
- fact: {
2060
- factId: 'tjqr20',
2061
- profileId: 'TRANSACTION_PROFILE',
2062
- params: []
2063
- },
2064
- functions: [],
2065
- operator: 'EQ',
2066
- operand: {
2067
- type: 'DOUBLE_VALUE',
2068
- longValue: null,
2069
- stringValue: null,
2070
- doubleValue: 50,
2071
- booleanValue: null,
2072
- longList: null,
2073
- stringList: null,
2074
- doubleList: null
2075
- },
2076
- isExcluded: false,
2077
- excluded: false
2078
- }]
2079
- }]
2080
- }
2081
- }
2082
- }
2083
- }
2084
- },
2085
- viewMode: false,
2086
- blockType: 'EXIT_TRIGGER',
2087
- grammar: {
2088
- LqNBP7: 'Bill type of the transaction',
2089
- '32p234': 'Basket Sum with product',
2090
- '8arjDE': 'Date of the transaction',
2091
- '56de3w': 'Extended field in the customer',
2092
- '3UcyB2': 'Discount on the transaction',
2093
- sRc59p: 'Customer source',
2094
- o765rt: 'OrgUnit',
2095
- '5sLAB9': "Customer's slab name",
2096
- '5LFP9e': 'Customer Lifetime Purchases',
2097
- '5zpWFg': 'Transaction number',
2098
- '87ytre': 'Customer externalId',
2099
- sNb89U: 'Customer slab number',
2100
- '3er25q': 'Customer Custom fields filter',
2101
- '4cP21P': 'Customer points',
2102
- loY34k: 'Customer is Loyal',
2103
- '5HmDCN': 'Count of line-items in the transaction',
2104
- tjqr20: 'Value of the transaction',
2105
- cy654u: 'Concept',
2106
- t987re: 'Customer Lifetime Transaction Count',
2107
- '9i58j1': 'Zone',
2108
- '23g26d': 'Extended fields in the transaction',
2109
- '9LF38S': 'Customer Lifetime Points',
2110
- '17t80a': 'Store',
2111
- mFL59r: 'Gross amount of the transaction',
2112
- '1wg27d': 'Custom fields in the transaction',
2113
- c654er: "Customer's segments"
2114
- }
2115
- },
2116
- isMultiPath: false
2117
- }, {
2118
- width: 148,
2119
- height: 161,
2120
- id: '5eDwSQu6Fi',
2121
- type: 'SCHEDULE_BLOCK',
2122
- isMultiPath: false,
2123
- props: {
2124
- id: '5eDwSQu6Fi',
2125
- blockData: {
2126
- startType: 'IMMEDIATE',
2127
- endType: 'NEVER',
2128
- startsFrom: null,
2129
- endsAt: 7226562600000
2130
- },
2131
- viewMode: false
2132
- }
2133
- }],
2134
- updateJoinOrJoinedGraphNodePropInput2: {
2135
- '12pNxGPAma': ['04keK6m-H3', 'JOIN3'],
2136
- YsirnCRiSb: ['CLN_1RQ9YY', 'JOIN2'],
2137
- mj3MUxj6CH: ['CLN_1RQ9YY', 'JOIN1']
2138
- },
2139
- updateJoinOrJoinedGraphNodePropOutput: [{
2140
- width: 148,
2141
- height: 180,
2142
- id: 'C_Dx-bl4PV',
2143
- to: ['P9x2uEdq1d', 'X4pqXQKF7t'],
2144
- type: 'ENTRY_TRIGGER',
2145
- pathsInfo: {
2146
- P9x2uEdq1d: {
2147
- previewComponent: {
2148
- displayName: 'withStyles__StyledComponent',
2149
- attrs: [],
2150
- componentStyle: {
2151
- rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
2152
- isStatic: false,
2153
- componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
2154
- lastClassName: 'kWaAQH'
2155
- },
2156
- foldedComponentIds: [],
2157
- styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
2158
- },
2159
- previewProps: {
2160
- header: 'entryTrigger',
2161
- name: 'Path 1',
2162
- condition: {
2163
- compoundExpression: {
2164
- operator: 'OR',
2165
- expressionGroups: [{
2166
- operator: 'AND',
2167
- simpleExpressions: [{
2168
- fact: {
2169
- factId: 'tjqr20',
2170
- profileId: 'TRANSACTION_PROFILE'
2171
- },
2172
- operator: 'EQ',
2173
- operand: {
2174
- type: 'DOUBLE_VALUE',
2175
- doubleValue: 50
2176
- },
2177
- isExcluded: false
2178
- }]
2179
- }]
2180
- }
2181
- },
2182
- blockId: 'C_Dx-bl4PV',
2183
- events: [{
2184
- type: 'STANDARD',
2185
- name: 'CouponRedeem'
2186
- }, {
2187
- type: 'STANDARD',
2188
- name: 'customerAdded'
2189
- }, {
2190
- type: 'STANDARD',
2191
- name: 'transactionAdded'
2192
- }, {
2193
- type: 'BEHAVIOURAL',
2194
- name: 'reviewAdded'
2195
- }],
2196
- grammar: {
2197
- LqNBP7: 'Bill type of the transaction',
2198
- '32p234': 'Basket Sum with product',
2199
- '8arjDE': 'Date of the transaction',
2200
- '56de3w': 'Extended field in the customer',
2201
- '3UcyB2': 'Discount on the transaction',
2202
- sRc59p: 'Customer source',
2203
- o765rt: 'OrgUnit',
2204
- '5sLAB9': "Customer's slab name",
2205
- '5LFP9e': 'Customer Lifetime Purchases',
2206
- '5zpWFg': 'Transaction number',
2207
- '87ytre': 'Customer externalId',
2208
- sNb89U: 'Customer slab number',
2209
- '3er25q': 'Customer Custom fields filter',
2210
- '4cP21P': 'Customer points',
2211
- loY34k: 'Customer is Loyal',
2212
- '5HmDCN': 'Count of line-items in the transaction',
2213
- tjqr20: 'Value of the transaction',
2214
- cy654u: 'Concept',
2215
- t987re: 'Customer Lifetime Transaction Count',
2216
- '9i58j1': 'Zone',
2217
- '23g26d': 'Extended fields in the transaction',
2218
- '9LF38S': 'Customer Lifetime Points',
2219
- '17t80a': 'Store',
2220
- mFL59r: 'Gross amount of the transaction',
2221
- '1wg27d': 'Custom fields in the transaction',
2222
- c654er: "Customer's segments"
2223
- },
2224
- couponsData: {
2225
- couponsData: {
2226
- CLN_1RQ9YY: [],
2227
- '04keK6m-H3': [],
2228
- X4pqXQKF7t: []
2229
- }
2230
- },
2231
- allAudienceGroups: {},
2232
- brand: [],
2233
- category: [],
2234
- productAttribute: [],
2235
- customerSegmentValues: [],
2236
- conceptValues: [],
2237
- zoneValues: [],
2238
- storeValues: [],
2239
- customFieldValues: []
2240
- }
2241
- },
2242
- X4pqXQKF7t: {
2243
- previewComponent: {
2244
- displayName: 'withStyles__StyledComponent',
2245
- attrs: [],
2246
- componentStyle: {
2247
- rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
2248
- isStatic: false,
2249
- componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
2250
- lastClassName: 'kWaAQH'
2251
- },
2252
- foldedComponentIds: [],
2253
- styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
2254
- },
2255
- previewProps: {
2256
- header: 'entryTrigger',
2257
- name: 'Path 2',
2258
- condition: {
2259
- compoundExpression: {
2260
- operator: 'OR',
2261
- expressionGroups: [{
2262
- operator: 'AND',
2263
- simpleExpressions: [{
2264
- fact: {
2265
- factId: 'tjqr20',
2266
- profileId: 'TRANSACTION_PROFILE'
2267
- },
2268
- operator: 'EQ',
2269
- operand: {
2270
- type: 'DOUBLE_VALUE',
2271
- doubleValue: 45
2272
- },
2273
- isExcluded: false
2274
- }]
2275
- }]
2276
- }
2277
- },
2278
- blockId: 'C_Dx-bl4PV',
2279
- events: [{
2280
- type: 'STANDARD',
2281
- name: 'CouponRedeem'
2282
- }, {
2283
- type: 'STANDARD',
2284
- name: 'customerAdded'
2285
- }, {
2286
- type: 'STANDARD',
2287
- name: 'transactionAdded'
2288
- }, {
2289
- type: 'BEHAVIOURAL',
2290
- name: 'reviewAdded'
2291
- }],
2292
- grammar: {
2293
- LqNBP7: 'Bill type of the transaction',
2294
- '32p234': 'Basket Sum with product',
2295
- '8arjDE': 'Date of the transaction',
2296
- '56de3w': 'Extended field in the customer',
2297
- '3UcyB2': 'Discount on the transaction',
2298
- sRc59p: 'Customer source',
2299
- o765rt: 'OrgUnit',
2300
- '5sLAB9': "Customer's slab name",
2301
- '5LFP9e': 'Customer Lifetime Purchases',
2302
- '5zpWFg': 'Transaction number',
2303
- '87ytre': 'Customer externalId',
2304
- sNb89U: 'Customer slab number',
2305
- '3er25q': 'Customer Custom fields filter',
2306
- '4cP21P': 'Customer points',
2307
- loY34k: 'Customer is Loyal',
2308
- '5HmDCN': 'Count of line-items in the transaction',
2309
- tjqr20: 'Value of the transaction',
2310
- cy654u: 'Concept',
2311
- t987re: 'Customer Lifetime Transaction Count',
2312
- '9i58j1': 'Zone',
2313
- '23g26d': 'Extended fields in the transaction',
2314
- '9LF38S': 'Customer Lifetime Points',
2315
- '17t80a': 'Store',
2316
- mFL59r: 'Gross amount of the transaction',
2317
- '1wg27d': 'Custom fields in the transaction',
2318
- c654er: "Customer's segments"
2319
- },
2320
- couponsData: {
2321
- couponsData: {
2322
- CLN_1RQ9YY: [],
2323
- '04keK6m-H3': [],
2324
- X4pqXQKF7t: []
2325
- }
2326
- },
2327
- allAudienceGroups: {},
2328
- brand: [],
2329
- category: [],
2330
- productAttribute: [],
2331
- customerSegmentValues: [],
2332
- conceptValues: [],
2333
- zoneValues: [],
2334
- storeValues: [],
2335
- customFieldValues: []
2336
- }
2337
- }
2338
- },
2339
- props: {
2340
- blockData: {
2341
- triggerType: 'USER_EVENT',
2342
- userEventTrigger: {
2343
- triggerFilterType: 'ALL_CUSTOMERS',
2344
- eventType: 'transactionAdded',
2345
- conditionalPaths: [{
2346
- condition: {
2347
- compoundExpression: {
2348
- operator: 'OR',
2349
- expressionGroups: [{
2350
- operator: 'AND',
2351
- simpleExpressions: [{
2352
- fact: {
2353
- factId: 'tjqr20',
2354
- profileId: 'TRANSACTION_PROFILE'
2355
- },
2356
- operator: 'EQ',
2357
- operand: {
2358
- type: 'DOUBLE_VALUE',
2359
- doubleValue: 50
2360
- },
2361
- isExcluded: false
2362
- }]
2363
- }]
2364
- }
2365
- },
2366
- path: {
2367
- pathBlockId: 'P9x2uEdq1d',
2368
- pathName: null
2369
- }
2370
- }, {
2371
- condition: {
2372
- compoundExpression: {
2373
- operator: 'OR',
2374
- expressionGroups: [{
2375
- operator: 'AND',
2376
- simpleExpressions: [{
2377
- fact: {
2378
- factId: 'tjqr20',
2379
- profileId: 'TRANSACTION_PROFILE'
2380
- },
2381
- operator: 'EQ',
2382
- operand: {
2383
- type: 'DOUBLE_VALUE',
2384
- doubleValue: 45
2385
- },
2386
- isExcluded: false
2387
- }]
2388
- }]
2389
- }
2390
- },
2391
- path: {
2392
- pathBlockId: 'X4pqXQKF7t',
2393
- pathName: null
2394
- }
2395
- }]
2396
- }
2397
- },
2398
- allAudienceGroups: {}
2399
- },
2400
- isMultiPath: true,
2401
- placeholderToIndex: 1
2402
- }, {
2403
- id: 'P9x2uEdq1d',
2404
- name: 'TILL',
2405
- userEventTrigger: {
2406
- triggerFilterType: 'ALL_CUSTOMERS',
2407
- eventType: 'transactionAdded',
2408
- conditionalPaths: [{
2409
- path: {
2410
- pathName: null,
2411
- pathBlockId: 'aO5-eWUPMk'
2412
- },
2413
- condition: {
2414
- compoundExpression: {
2415
- operator: 'OR',
2416
- expressionGroups: [{
2417
- operator: 'AND',
2418
- simpleExpressions: [{
2419
- fact: {
2420
- factId: 'tjqr20',
2421
- profileId: 'TRANSACTION_PROFILE',
2422
- params: []
2423
- },
2424
- functions: [],
2425
- operator: 'EQ',
2426
- operand: {
2427
- type: 'DOUBLE_VALUE',
2428
- longValue: null,
2429
- stringValue: null,
2430
- doubleValue: 50,
2431
- booleanValue: null,
2432
- longList: null,
2433
- stringList: null,
2434
- doubleList: null
2435
- },
2436
- isExcluded: false,
2437
- excluded: false
2438
- }]
2439
- }]
2440
- }
2441
- }
2442
- }]
2443
- },
2444
- waitDurationRO: {
2445
- duration: 1,
2446
- timeUnit: 'HOURS'
2447
- },
2448
- postWaitPath: {
2449
- pathName: 'Wait time expired path',
2450
- pathBlockId: 'GoPSnp68IE'
2451
- },
2452
- props: {
2453
- iconType: 'waitEvent',
2454
- color: '#23cccc',
2455
- blockType: 'WAIT_TILL_EVENT',
2456
- isConfigured: true,
2457
- viewMode: false,
2458
- id: 'P9x2uEdq1d',
2459
- isMultiPath: true,
2460
- nodePreview: {
2461
- key: null,
2462
- ref: null,
2463
- props: {
2464
- blockData: {
2465
- id: 'P9x2uEdq1d',
2466
- name: 'TILL',
2467
- userEventTrigger: {
2468
- triggerFilterType: 'ALL_CUSTOMERS',
2469
- eventType: 'transactionAdded',
2470
- conditionalPaths: [{
2471
- path: {
2472
- pathName: null,
2473
- pathBlockId: 'aO5-eWUPMk'
2474
- },
2475
- condition: {
2476
- compoundExpression: {
2477
- operator: 'OR',
2478
- expressionGroups: [{
2479
- operator: 'AND',
2480
- simpleExpressions: [{
2481
- fact: {
2482
- factId: 'tjqr20',
2483
- profileId: 'TRANSACTION_PROFILE',
2484
- params: []
2485
- },
2486
- functions: [],
2487
- operator: 'EQ',
2488
- operand: {
2489
- type: 'DOUBLE_VALUE',
2490
- longValue: null,
2491
- stringValue: null,
2492
- doubleValue: 50,
2493
- booleanValue: null,
2494
- longList: null,
2495
- stringList: null,
2496
- doubleList: null
2497
- },
2498
- isExcluded: false,
2499
- excluded: false
2500
- }]
2501
- }]
2502
- }
2503
- }
2504
- }]
2505
- },
2506
- waitDurationRO: {
2507
- duration: 1,
2508
- timeUnit: 'HOURS'
2509
- },
2510
- postWaitPath: {
2511
- pathName: 'Wait time expired path',
2512
- pathBlockId: 'GoPSnp68IE'
2513
- },
2514
- blockType: 'WAIT_TILL_EVENT'
2515
- },
2516
- blockId: 'P9x2uEdq1d',
2517
- type: 'WAIT_TILL_EVENT'
2518
- },
2519
- _owner: null,
2520
- _store: {}
2521
- }
2522
- },
2523
- type: 'BLOCK_NODE',
2524
- to: ['CLN_1RQ9YY', '12pNxGPAma'],
2525
- pathsInfo: {
2526
- CLN_1RQ9YY: {
2527
- previewComponent: {
2528
- displayName: 'withStyles__StyledComponent',
2529
- attrs: [],
2530
- componentStyle: {
2531
- rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
2532
- isStatic: false,
2533
- componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
2534
- lastClassName: 'kWaAQH'
2535
- },
2536
- foldedComponentIds: [],
2537
- styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
2538
- },
2539
- previewProps: {
2540
- header: 'waitTillEvent',
2541
- name: {
2542
- key: null,
2543
- ref: null,
2544
- props: {
2545
- id: 'adionaUIApp.common.eventPath',
2546
- defaultMessage: 'Event path',
2547
- values: {}
2548
- },
2549
- _owner: null,
2550
- _store: {}
2551
- },
2552
- condition: {
2553
- compoundExpression: {
2554
- operator: 'OR',
2555
- expressionGroups: [{
2556
- operator: 'AND',
2557
- simpleExpressions: [{
2558
- fact: {
2559
- factId: 'tjqr20',
2560
- profileId: 'TRANSACTION_PROFILE',
2561
- params: []
2562
- },
2563
- functions: [],
2564
- operator: 'EQ',
2565
- operand: {
2566
- type: 'DOUBLE_VALUE',
2567
- longValue: null,
2568
- stringValue: null,
2569
- doubleValue: 50,
2570
- booleanValue: null,
2571
- longList: null,
2572
- stringList: null,
2573
- doubleList: null
2574
- },
2575
- isExcluded: false,
2576
- excluded: false
2577
- }]
2578
- }]
2579
- }
2580
- },
2581
- blockId: 'P9x2uEdq1d',
2582
- events: [{
2583
- type: 'STANDARD',
2584
- name: 'CouponRedeem'
2585
- }, {
2586
- type: 'STANDARD',
2587
- name: 'customerAdded'
2588
- }, {
2589
- type: 'STANDARD',
2590
- name: 'transactionAdded'
2591
- }, {
2592
- type: 'BEHAVIOURAL',
2593
- name: 'reviewAdded'
2594
- }],
2595
- grammar: {
2596
- LqNBP7: 'Bill type of the transaction',
2597
- '32p234': 'Basket Sum with product',
2598
- '8arjDE': 'Date of the transaction',
2599
- '56de3w': 'Extended field in the customer',
2600
- '3UcyB2': 'Discount on the transaction',
2601
- sRc59p: 'Customer source',
2602
- o765rt: 'OrgUnit',
2603
- '5sLAB9': "Customer's slab name",
2604
- '5LFP9e': 'Customer Lifetime Purchases',
2605
- '5zpWFg': 'Transaction number',
2606
- '87ytre': 'Customer externalId',
2607
- sNb89U: 'Customer slab number',
2608
- '3er25q': 'Customer Custom fields filter',
2609
- '4cP21P': 'Customer points',
2610
- loY34k: 'Customer is Loyal',
2611
- '5HmDCN': 'Count of line-items in the transaction',
2612
- tjqr20: 'Value of the transaction',
2613
- cy654u: 'Concept',
2614
- t987re: 'Customer Lifetime Transaction Count',
2615
- '9i58j1': 'Zone',
2616
- '23g26d': 'Extended fields in the transaction',
2617
- '9LF38S': 'Customer Lifetime Points',
2618
- '17t80a': 'Store',
2619
- mFL59r: 'Gross amount of the transaction',
2620
- '1wg27d': 'Custom fields in the transaction',
2621
- c654er: "Customer's segments"
2622
- },
2623
- couponsData: {
2624
- couponsData: {}
2625
- },
2626
- allAudienceGroups: {},
2627
- brand: [],
2628
- category: [],
2629
- productAttribute: [],
2630
- customerSegmentValues: [],
2631
- conceptValues: [],
2632
- zoneValues: [],
2633
- storeValues: [],
2634
- customFieldValues: []
2635
- }
2636
- },
2637
- '12pNxGPAma': {
2638
- previewComponent: {
2639
- displayName: 'withStyles__StyledComponent',
2640
- attrs: [],
2641
- componentStyle: {
2642
- rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
2643
- isStatic: false,
2644
- componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
2645
- lastClassName: 'kWaAQH'
2646
- },
2647
- foldedComponentIds: [],
2648
- styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
2649
- },
2650
- previewProps: {
2651
- header: 'waitExpiredPath',
2652
- name: 'Wait time expired path',
2653
- condition: {
2654
- duration: 1,
2655
- timeUnit: 'HOURS'
2656
- },
2657
- blockId: 'P9x2uEdq1d',
2658
- events: [{
2659
- type: 'STANDARD',
2660
- name: 'CouponRedeem'
2661
- }, {
2662
- type: 'STANDARD',
2663
- name: 'customerAdded'
2664
- }, {
2665
- type: 'STANDARD',
2666
- name: 'transactionAdded'
2667
- }, {
2668
- type: 'BEHAVIOURAL',
2669
- name: 'reviewAdded'
2670
- }],
2671
- grammar: {
2672
- LqNBP7: 'Bill type of the transaction',
2673
- '32p234': 'Basket Sum with product',
2674
- '8arjDE': 'Date of the transaction',
2675
- '56de3w': 'Extended field in the customer',
2676
- '3UcyB2': 'Discount on the transaction',
2677
- sRc59p: 'Customer source',
2678
- o765rt: 'OrgUnit',
2679
- '5sLAB9': "Customer's slab name",
2680
- '5LFP9e': 'Customer Lifetime Purchases',
2681
- '5zpWFg': 'Transaction number',
2682
- '87ytre': 'Customer externalId',
2683
- sNb89U: 'Customer slab number',
2684
- '3er25q': 'Customer Custom fields filter',
2685
- '4cP21P': 'Customer points',
2686
- loY34k: 'Customer is Loyal',
2687
- '5HmDCN': 'Count of line-items in the transaction',
2688
- tjqr20: 'Value of the transaction',
2689
- cy654u: 'Concept',
2690
- t987re: 'Customer Lifetime Transaction Count',
2691
- '9i58j1': 'Zone',
2692
- '23g26d': 'Extended fields in the transaction',
2693
- '9LF38S': 'Customer Lifetime Points',
2694
- '17t80a': 'Store',
2695
- mFL59r: 'Gross amount of the transaction',
2696
- '1wg27d': 'Custom fields in the transaction',
2697
- c654er: "Customer's segments"
2698
- },
2699
- couponsData: {
2700
- couponsData: {}
2701
- },
2702
- allAudienceGroups: {},
2703
- brand: [],
2704
- category: [],
2705
- productAttribute: [],
2706
- customerSegmentValues: [],
2707
- conceptValues: [],
2708
- zoneValues: [],
2709
- storeValues: [],
2710
- customFieldValues: []
2711
- }
2712
- }
2713
- },
2714
- from: 'C_Dx-bl4PV'
2715
- }, {
2716
- id: 'CLN_1RQ9YY',
2717
- props: {
2718
- iconType: 'sms',
2719
- color: '#fec52e',
2720
- id: 'CLN_1RQ9YY',
2721
- blockType: 'SMS',
2722
- nodeTitle: {
2723
- key: null,
2724
- ref: null,
2725
- props: {
2726
- id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
2727
- defaultMessage: 'SMS',
2728
- values: {}
2729
- },
2730
- _owner: null,
2731
- _store: {}
2732
- },
2733
- blockData: {
2734
- content: {
2735
- couponOffers: [],
2736
- pointsOffers: [],
2737
- body: 'SMS1'
2738
- },
2739
- deliverySettings: {
2740
- domainId: 3461,
2741
- gsmSenderId: 'TATADG'
2742
- },
2743
- name: 'SMS1'
2744
- },
2745
- isConfigured: true,
2746
- nodePreview: {
2747
- key: null,
2748
- ref: null,
2749
- props: {
2750
- type: 'SMS',
2751
- blockData: {
2752
- content: {
2753
- couponOffers: [],
2754
- pointsOffers: [],
2755
- body: 'SMS1'
2756
- },
2757
- deliverySettings: {
2758
- domainId: 3461,
2759
- gsmSenderId: 'TATADG'
2760
- },
2761
- name: 'SMS1'
2762
- },
2763
- blockId: 'CLN_1RQ9YY'
2764
- },
2765
- _owner: null,
2766
- _store: {}
2767
- },
2768
- joinBlockNameArray: ['JOIN1']
2769
- },
2770
- to: ['aO5-eWUPMk'],
2771
- from: 'P9x2uEdq1d',
2772
- type: 'BLOCK_NODE'
2773
- }, {
2774
- width: 42,
2775
- height: 42,
2776
- id: 'aO5-eWUPMk',
2777
- props: {
2778
- type: 'end',
2779
- style: {
2780
- color: '#47af46',
2781
- padding: '9px 0'
2782
- },
2783
- textLabel: {
2784
- type: {
2785
- displayName: 'CapLabel',
2786
- attrs: [],
2787
- componentStyle: {
2788
- rules: ['font-size:', null, ';font-weight:', null, ';color:', null, ';line-height:', null, ';'],
2789
- isStatic: false,
2790
- componentId: 'CapLabel-n7zsf5-0',
2791
- lastClassName: 'hcywYU'
2792
- },
2793
- foldedComponentIds: [],
2794
- styledComponentId: 'CapLabel-n7zsf5-0',
2795
- target: 'div',
2796
- propTypes: {},
2797
- CapLabelInline: {
2798
- displayName: 'CapLabel__CapLabelInline',
2799
- attrs: [],
2800
- componentStyle: {
2801
- rules: ['font-size:', null, ';font-weight:', null, ';color:', null, ';line-height:', null, ';'],
2802
- isStatic: false,
2803
- componentId: 'CapLabel__CapLabelInline-n7zsf5-1',
2804
- lastClassName: 'gBSzRM'
2805
- },
2806
- foldedComponentIds: [],
2807
- styledComponentId: 'CapLabel__CapLabelInline-n7zsf5-1',
2808
- target: 'span'
2809
- },
2810
- _foldedDefaultProps: {
2811
- type: 'label1'
2812
- }
2813
- },
2814
- key: null,
2815
- ref: null,
2816
- props: {
2817
- type: 'label2',
2818
- className: 'margin-l-2 margin-t-5',
2819
- children: {
2820
- key: null,
2821
- ref: null,
2822
- props: {
2823
- id: 'adionaUIApp.common.end',
2824
- defaultMessage: 'End',
2825
- values: {}
2826
- },
2827
- _owner: null,
2828
- _store: {}
2829
- }
2830
- },
2831
- _owner: null,
2832
- _store: {}
2833
- }
2834
- },
2835
- type: 'END_NODE',
2836
- from: 'CLN_1RQ9YY'
2837
- }, {
2838
- id: '12pNxGPAma',
2839
- props: {
2840
- iconType: 'join',
2841
- color: '#23cccc',
2842
- id: '12pNxGPAma',
2843
- blockType: 'JOIN',
2844
- isMultiPath: false,
2845
- nodeTitle: 'Join',
2846
- blockData: {
2847
- name: 'JOIN3'
2848
- },
2849
- isConfigured: false
2850
- },
2851
- from: 'P9x2uEdq1d',
2852
- type: 'BLOCK_NODE'
2853
- }, {
2854
- id: 'X4pqXQKF7t',
2855
- props: {
2856
- iconType: 'sms',
2857
- color: '#fec52e',
2858
- id: 'X4pqXQKF7t',
2859
- blockType: 'SMS',
2860
- nodeTitle: {
2861
- key: null,
2862
- ref: null,
2863
- props: {
2864
- id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
2865
- defaultMessage: 'SMS',
2866
- values: {}
2867
- },
2868
- _owner: null,
2869
- _store: {}
2870
- },
2871
- blockData: {
2872
- content: {
2873
- couponOffers: [],
2874
- pointsOffers: [],
2875
- body: 'SMS3'
2876
- },
2877
- deliverySettings: {
2878
- domainId: 3461,
2879
- gsmSenderId: 'TATADG'
2880
- },
2881
- name: 'SMS3'
2882
- },
2883
- isConfigured: true,
2884
- nodePreview: {
2885
- key: null,
2886
- ref: null,
2887
- props: {
2888
- type: 'SMS',
2889
- blockData: {
2890
- content: {
2891
- couponOffers: [],
2892
- pointsOffers: [],
2893
- body: 'SMS3'
2894
- },
2895
- deliverySettings: {
2896
- domainId: 3461,
2897
- gsmSenderId: 'TATADG'
2898
- },
2899
- name: 'SMS3'
2900
- },
2901
- blockId: 'X4pqXQKF7t'
2902
- },
2903
- _owner: null,
2904
- _store: {}
2905
- }
2906
- },
2907
- to: ['mj3MUxj6CH'],
2908
- from: 'C_Dx-bl4PV',
2909
- type: 'BLOCK_NODE'
2910
- }, {
2911
- id: 'mj3MUxj6CH',
2912
- props: {
2913
- iconType: 'join',
2914
- color: '#23cccc',
2915
- id: 'mj3MUxj6CH',
2916
- blockType: 'JOIN',
2917
- isMultiPath: false,
2918
- nodeTitle: {
2919
- key: null,
2920
- ref: null,
2921
- props: {
2922
- id: 'adionaUIApp.components.pages.JourneyBuilder.configureJoin',
2923
- defaultMessage: 'Join',
2924
- values: {}
2925
- },
2926
- _owner: null,
2927
- _store: {}
2928
- },
2929
- blockData: {
2930
- name: 'JOIN1',
2931
- nextBlock: {
2932
- pathBlockId: 'CLN_1RQ9YY',
2933
- pathName: 'SMS1'
2934
- }
2935
- },
2936
- isConfigured: true,
2937
- nodePreview: {
2938
- key: null,
2939
- ref: null,
2940
- props: {
2941
- type: 'JOIN',
2942
- flowControlBlockName: 'JOIN1',
2943
- joinedBlockName: 'SMS1'
2944
- },
2945
- _owner: null,
2946
- _store: {}
2947
- }
2948
- },
2949
- from: 'X4pqXQKF7t',
2950
- type: 'BLOCK_NODE'
2951
- }, {
2952
- width: 148,
2953
- height: 180,
2954
- id: '59iTeDxv_B',
2955
- to: [],
2956
- type: 'EXIT_TRIGGER',
2957
- pathsInfo: {},
2958
- props: {
2959
- blockData: {
2960
- triggerType: 'USER_EVENT',
2961
- userEventTrigger: {
2962
- triggerFilterType: 'ALL_CUSTOMERS',
2963
- eventType: 'transactionAdded',
2964
- conditionalPath: {
2965
- condition: {
2966
- compoundExpression: {
2967
- operator: 'OR',
2968
- expressionGroups: [{
2969
- operator: 'AND',
2970
- simpleExpressions: [{
2971
- fact: {
2972
- factId: 'tjqr20',
2973
- profileId: 'TRANSACTION_PROFILE',
2974
- params: []
2975
- },
2976
- functions: [],
2977
- operator: 'EQ',
2978
- operand: {
2979
- type: 'DOUBLE_VALUE',
2980
- longValue: null,
2981
- stringValue: null,
2982
- doubleValue: 50,
2983
- booleanValue: null,
2984
- longList: null,
2985
- stringList: null,
2986
- doubleList: null
2987
- },
2988
- isExcluded: false,
2989
- excluded: false
2990
- }]
2991
- }]
2992
- }
2993
- }
2994
- }
2995
- }
2996
- },
2997
- viewMode: false,
2998
- blockType: 'EXIT_TRIGGER',
2999
- grammar: {
3000
- LqNBP7: 'Bill type of the transaction',
3001
- '32p234': 'Basket Sum with product',
3002
- '8arjDE': 'Date of the transaction',
3003
- '56de3w': 'Extended field in the customer',
3004
- '3UcyB2': 'Discount on the transaction',
3005
- sRc59p: 'Customer source',
3006
- o765rt: 'OrgUnit',
3007
- '5sLAB9': "Customer's slab name",
3008
- '5LFP9e': 'Customer Lifetime Purchases',
3009
- '5zpWFg': 'Transaction number',
3010
- '87ytre': 'Customer externalId',
3011
- sNb89U: 'Customer slab number',
3012
- '3er25q': 'Customer Custom fields filter',
3013
- '4cP21P': 'Customer points',
3014
- loY34k: 'Customer is Loyal',
3015
- '5HmDCN': 'Count of line-items in the transaction',
3016
- tjqr20: 'Value of the transaction',
3017
- cy654u: 'Concept',
3018
- t987re: 'Customer Lifetime Transaction Count',
3019
- '9i58j1': 'Zone',
3020
- '23g26d': 'Extended fields in the transaction',
3021
- '9LF38S': 'Customer Lifetime Points',
3022
- '17t80a': 'Store',
3023
- mFL59r: 'Gross amount of the transaction',
3024
- '1wg27d': 'Custom fields in the transaction',
3025
- c654er: "Customer's segments"
3026
- }
3027
- },
3028
- isMultiPath: false
3029
- }, {
3030
- width: 148,
3031
- height: 161,
3032
- id: '5eDwSQu6Fi',
3033
- type: 'SCHEDULE_BLOCK',
3034
- isMultiPath: false,
3035
- props: {
3036
- id: '5eDwSQu6Fi',
3037
- blockData: {
3038
- startType: 'IMMEDIATE',
3039
- endType: 'NEVER',
3040
- startsFrom: null,
3041
- endsAt: 7226562600000
3042
- },
3043
- viewMode: false
3044
- }
3045
- }]
3046
- };