@capillarytech/creatives-library 7.14.39 → 7.14.41

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 (38) hide show
  1. package/i18n.js +4 -6
  2. package/package.json +1 -1
  3. package/reducers.js +2 -0
  4. package/services/api.js +9 -1
  5. package/tests/integration/TemplateCreation/TemplateCreation.integration.test.js +420 -0
  6. package/tests/integration/TemplateCreation/api-response.js +1663 -0
  7. package/tests/integration/TemplateCreation/helper.js +23 -0
  8. package/tests/integration/TemplateCreation/mocks/initialState.js +428 -0
  9. package/tests/integration/TemplateCreation/msw-handler.js +48 -0
  10. package/v2Components/CapActionButton/index.js +1 -0
  11. package/v2Components/FormBuilder/index.js +28 -4
  12. package/v2Containers/Assets/Gallery/index.js +1 -1
  13. package/v2Containers/CreativesContainer/constants.js +2 -0
  14. package/v2Containers/CreativesContainer/selectors.js +2 -2
  15. package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +8 -0
  16. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +3 -0
  17. package/v2Containers/Line/Container/Text/index.js +3 -2
  18. package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +4 -0
  19. package/v2Containers/Line/Container/index.js +1 -1
  20. package/v2Containers/Rcs/index.js +3 -0
  21. package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +250 -3
  22. package/v2Containers/Sms/Create/actions.js +9 -0
  23. package/v2Containers/Sms/Create/constants.js +2 -0
  24. package/v2Containers/Sms/Create/index.js +12 -0
  25. package/v2Containers/Sms/Create/sagas.js +19 -3
  26. package/v2Containers/Sms/Create/tests/sagas.test.js +82 -0
  27. package/v2Containers/Templates/index.js +26 -11
  28. package/v2Containers/Templates/tests/__snapshots__/index.test.js.snap +96 -80
  29. package/v2Containers/TemplatesV2/index.js +1 -1
  30. package/v2Containers/Viber/index.js +1 -0
  31. package/v2Containers/Whatsapp/constants.js +27 -8
  32. package/v2Containers/Whatsapp/index.js +14 -2
  33. package/v2Containers/Whatsapp/messages.js +21 -4
  34. package/v2Containers/Whatsapp/styles.scss +3 -0
  35. package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +180 -128
  36. package/v2Containers/Whatsapp/tests/utils.test.js +1 -1
  37. package/v2Containers/Whatsapp/utils.js +2 -1
  38. package/v2Containers/mockdata.js +5 -5
@@ -4079,6 +4079,7 @@ new message content.",
4079
4079
  className="ant-col ant-col-14 cap-column-v2"
4080
4080
  >
4081
4081
  <_class
4082
+ data-testid="template_name"
4082
4083
  errorMessage={false}
4083
4084
  id="rcs_template_name_input"
4084
4085
  key=".0"
@@ -4102,6 +4103,7 @@ new message content.",
4102
4103
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
4103
4104
  >
4104
4105
  <CapInput
4106
+ data-testid="template_name"
4105
4107
  errorMessage={false}
4106
4108
  id="rcs_template_name_input"
4107
4109
  onChange={[Function]}
@@ -4109,6 +4111,7 @@ new message content.",
4109
4111
  value="final_name"
4110
4112
  >
4111
4113
  <Input
4114
+ data-testid="template_name"
4112
4115
  id="rcs_template_name_input"
4113
4116
  onChange={[Function]}
4114
4117
  size="default"
@@ -4121,6 +4124,7 @@ new message content.",
4121
4124
  >
4122
4125
  <input
4123
4126
  className="ant-input"
4127
+ data-testid="template_name"
4124
4128
  id="rcs_template_name_input"
4125
4129
  onChange={[Function]}
4126
4130
  onKeyDown={[Function]}
@@ -4904,6 +4908,7 @@ new message content.",
4904
4908
  </div>
4905
4909
  </Rcs__RcsLabel>
4906
4910
  <_class
4911
+ data-testid="template_title"
4907
4912
  id="rcs-template-title-input"
4908
4913
  labelPosition="top"
4909
4914
  maxLength={200}
@@ -4932,6 +4937,7 @@ new message content.",
4932
4937
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
4933
4938
  >
4934
4939
  <CapInput
4940
+ data-testid="template_title"
4935
4941
  id="rcs-template-title-input"
4936
4942
  maxLength={200}
4937
4943
  onChange={[Function]}
@@ -4946,6 +4952,7 @@ new message content.",
4946
4952
  value="final_title"
4947
4953
  >
4948
4954
  <Input
4955
+ data-testid="template_title"
4949
4956
  id="rcs-template-title-input"
4950
4957
  maxLength={200}
4951
4958
  onChange={[Function]}
@@ -4965,6 +4972,7 @@ new message content.",
4965
4972
  >
4966
4973
  <input
4967
4974
  className="ant-input"
4975
+ data-testid="template_title"
4968
4976
  id="rcs-template-title-input"
4969
4977
  maxLength={200}
4970
4978
  onChange={[Function]}
@@ -5157,6 +5165,7 @@ new message content.",
5157
5165
  "minRows": 3,
5158
5166
  }
5159
5167
  }
5168
+ data-testid="rcs_text_area"
5160
5169
  errorMessage={false}
5161
5170
  id="rcs_template_message_textarea"
5162
5171
  labelPosition="top"
@@ -5185,6 +5194,7 @@ new message content.",
5185
5194
  "minRows": 3,
5186
5195
  }
5187
5196
  }
5197
+ data-testid="rcs_text_area"
5188
5198
  errorMessage={false}
5189
5199
  id="rcs_template_message_textarea"
5190
5200
  maxLength={1000}
@@ -5207,6 +5217,7 @@ new message content.",
5207
5217
  }
5208
5218
  }
5209
5219
  cols={35}
5220
+ data-testid="rcs_text_area"
5210
5221
  errorMessage={false}
5211
5222
  id="rcs_template_message_textarea"
5212
5223
  maxLength={1000}
@@ -5225,6 +5236,7 @@ new message content.",
5225
5236
  }
5226
5237
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
5227
5238
  cols={35}
5239
+ data-testid="rcs_text_area"
5228
5240
  errorMessage={false}
5229
5241
  id="rcs_template_message_textarea"
5230
5242
  maxLength={1000}
@@ -5241,6 +5253,7 @@ new message content.",
5241
5253
  <textarea
5242
5254
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
5243
5255
  cols={35}
5256
+ data-testid="rcs_text_area"
5244
5257
  errorMessage={false}
5245
5258
  id="rcs_template_message_textarea"
5246
5259
  maxLength={1000}
@@ -10104,7 +10117,9 @@ new message content.",
10104
10117
  </Rcs__RcsFooter>
10105
10118
  <CapSlideBox
10106
10119
  className="rcs-fallback-preview"
10120
+ closeIconPosition="right"
10107
10121
  closeIconSize="m"
10122
+ closeIconType="close"
10108
10123
  content={
10109
10124
  <React.Fragment>
10110
10125
  <InjectIntl(TemplatePreview)
@@ -10150,7 +10165,7 @@ new message content.",
10150
10165
  className="cap-slide-box-v2-container size-r right"
10151
10166
  >
10152
10167
  <div
10153
- className="slidebox-header"
10168
+ className="slidebox-header-icon-right"
10154
10169
  >
10155
10170
  <CapHeading
10156
10171
  type="h1"
@@ -16864,6 +16879,7 @@ new message content.",
16864
16879
  className="ant-col ant-col-14 cap-column-v2"
16865
16880
  >
16866
16881
  <_class
16882
+ data-testid="template_name"
16867
16883
  errorMessage={false}
16868
16884
  id="rcs_template_name_input"
16869
16885
  key=".0"
@@ -16887,6 +16903,7 @@ new message content.",
16887
16903
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
16888
16904
  >
16889
16905
  <CapInput
16906
+ data-testid="template_name"
16890
16907
  errorMessage={false}
16891
16908
  id="rcs_template_name_input"
16892
16909
  onChange={[Function]}
@@ -16894,6 +16911,7 @@ new message content.",
16894
16911
  value="final_name"
16895
16912
  >
16896
16913
  <Input
16914
+ data-testid="template_name"
16897
16915
  id="rcs_template_name_input"
16898
16916
  onChange={[Function]}
16899
16917
  size="default"
@@ -16906,6 +16924,7 @@ new message content.",
16906
16924
  >
16907
16925
  <input
16908
16926
  className="ant-input"
16927
+ data-testid="template_name"
16909
16928
  id="rcs_template_name_input"
16910
16929
  onChange={[Function]}
16911
16930
  onKeyDown={[Function]}
@@ -17689,6 +17708,7 @@ new message content.",
17689
17708
  </div>
17690
17709
  </Rcs__RcsLabel>
17691
17710
  <_class
17711
+ data-testid="template_title"
17692
17712
  id="rcs-template-title-input"
17693
17713
  labelPosition="top"
17694
17714
  maxLength={200}
@@ -17717,6 +17737,7 @@ new message content.",
17717
17737
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
17718
17738
  >
17719
17739
  <CapInput
17740
+ data-testid="template_title"
17720
17741
  id="rcs-template-title-input"
17721
17742
  maxLength={200}
17722
17743
  onChange={[Function]}
@@ -17731,6 +17752,7 @@ new message content.",
17731
17752
  value="final_title"
17732
17753
  >
17733
17754
  <Input
17755
+ data-testid="template_title"
17734
17756
  id="rcs-template-title-input"
17735
17757
  maxLength={200}
17736
17758
  onChange={[Function]}
@@ -17750,6 +17772,7 @@ new message content.",
17750
17772
  >
17751
17773
  <input
17752
17774
  className="ant-input"
17775
+ data-testid="template_title"
17753
17776
  id="rcs-template-title-input"
17754
17777
  maxLength={200}
17755
17778
  onChange={[Function]}
@@ -17942,6 +17965,7 @@ new message content.",
17942
17965
  "minRows": 3,
17943
17966
  }
17944
17967
  }
17968
+ data-testid="rcs_text_area"
17945
17969
  errorMessage={false}
17946
17970
  id="rcs_template_message_textarea"
17947
17971
  labelPosition="top"
@@ -17970,6 +17994,7 @@ new message content.",
17970
17994
  "minRows": 3,
17971
17995
  }
17972
17996
  }
17997
+ data-testid="rcs_text_area"
17973
17998
  errorMessage={false}
17974
17999
  id="rcs_template_message_textarea"
17975
18000
  maxLength={1000}
@@ -17992,6 +18017,7 @@ new message content.",
17992
18017
  }
17993
18018
  }
17994
18019
  cols={35}
18020
+ data-testid="rcs_text_area"
17995
18021
  errorMessage={false}
17996
18022
  id="rcs_template_message_textarea"
17997
18023
  maxLength={1000}
@@ -18010,6 +18036,7 @@ new message content.",
18010
18036
  }
18011
18037
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
18012
18038
  cols={35}
18039
+ data-testid="rcs_text_area"
18013
18040
  errorMessage={false}
18014
18041
  id="rcs_template_message_textarea"
18015
18042
  maxLength={1000}
@@ -18026,6 +18053,7 @@ new message content.",
18026
18053
  <textarea
18027
18054
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
18028
18055
  cols={35}
18056
+ data-testid="rcs_text_area"
18029
18057
  errorMessage={false}
18030
18058
  id="rcs_template_message_textarea"
18031
18059
  maxLength={1000}
@@ -22889,7 +22917,9 @@ new message content.",
22889
22917
  </Rcs__RcsFooter>
22890
22918
  <CapSlideBox
22891
22919
  className="rcs-fallback-preview"
22920
+ closeIconPosition="right"
22892
22921
  closeIconSize="m"
22922
+ closeIconType="close"
22893
22923
  content={
22894
22924
  <React.Fragment>
22895
22925
  <InjectIntl(TemplatePreview)
@@ -22935,7 +22965,7 @@ new message content.",
22935
22965
  className="cap-slide-box-v2-container size-r right"
22936
22966
  >
22937
22967
  <div
22938
- className="slidebox-header"
22968
+ className="slidebox-header-icon-right"
22939
22969
  >
22940
22970
  <CapHeading
22941
22971
  type="h1"
@@ -28173,6 +28203,7 @@ new message content.",
28173
28203
  className="ant-col ant-col-14 cap-column-v2"
28174
28204
  >
28175
28205
  <_class
28206
+ data-testid="template_name"
28176
28207
  errorMessage={false}
28177
28208
  id="rcs_template_name_input"
28178
28209
  key=".0"
@@ -28196,6 +28227,7 @@ new message content.",
28196
28227
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
28197
28228
  >
28198
28229
  <CapInput
28230
+ data-testid="template_name"
28199
28231
  errorMessage={false}
28200
28232
  id="rcs_template_name_input"
28201
28233
  onChange={[Function]}
@@ -28203,6 +28235,7 @@ new message content.",
28203
28235
  value=""
28204
28236
  >
28205
28237
  <Input
28238
+ data-testid="template_name"
28206
28239
  id="rcs_template_name_input"
28207
28240
  onChange={[Function]}
28208
28241
  size="default"
@@ -28215,6 +28248,7 @@ new message content.",
28215
28248
  >
28216
28249
  <input
28217
28250
  className="ant-input"
28251
+ data-testid="template_name"
28218
28252
  id="rcs_template_name_input"
28219
28253
  onChange={[Function]}
28220
28254
  onKeyDown={[Function]}
@@ -28998,6 +29032,7 @@ new message content.",
28998
29032
  </div>
28999
29033
  </Rcs__RcsLabel>
29000
29034
  <_class
29035
+ data-testid="template_title"
29001
29036
  id="rcs-template-title-input"
29002
29037
  labelPosition="top"
29003
29038
  maxLength={200}
@@ -29026,6 +29061,7 @@ new message content.",
29026
29061
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
29027
29062
  >
29028
29063
  <CapInput
29064
+ data-testid="template_title"
29029
29065
  id="rcs-template-title-input"
29030
29066
  maxLength={200}
29031
29067
  onChange={[Function]}
@@ -29040,6 +29076,7 @@ new message content.",
29040
29076
  value=""
29041
29077
  >
29042
29078
  <Input
29079
+ data-testid="template_title"
29043
29080
  id="rcs-template-title-input"
29044
29081
  maxLength={200}
29045
29082
  onChange={[Function]}
@@ -29059,6 +29096,7 @@ new message content.",
29059
29096
  >
29060
29097
  <input
29061
29098
  className="ant-input"
29099
+ data-testid="template_title"
29062
29100
  id="rcs-template-title-input"
29063
29101
  maxLength={200}
29064
29102
  onChange={[Function]}
@@ -29251,6 +29289,7 @@ new message content.",
29251
29289
  "minRows": 3,
29252
29290
  }
29253
29291
  }
29292
+ data-testid="rcs_text_area"
29254
29293
  errorMessage={false}
29255
29294
  id="rcs_template_message_textarea"
29256
29295
  labelPosition="top"
@@ -29279,6 +29318,7 @@ new message content.",
29279
29318
  "minRows": 3,
29280
29319
  }
29281
29320
  }
29321
+ data-testid="rcs_text_area"
29282
29322
  errorMessage={false}
29283
29323
  id="rcs_template_message_textarea"
29284
29324
  maxLength={1000}
@@ -29301,6 +29341,7 @@ new message content.",
29301
29341
  }
29302
29342
  }
29303
29343
  cols={35}
29344
+ data-testid="rcs_text_area"
29304
29345
  errorMessage={false}
29305
29346
  id="rcs_template_message_textarea"
29306
29347
  maxLength={1000}
@@ -29319,6 +29360,7 @@ new message content.",
29319
29360
  }
29320
29361
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
29321
29362
  cols={35}
29363
+ data-testid="rcs_text_area"
29322
29364
  errorMessage={false}
29323
29365
  id="rcs_template_message_textarea"
29324
29366
  maxLength={1000}
@@ -29335,6 +29377,7 @@ new message content.",
29335
29377
  <textarea
29336
29378
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
29337
29379
  cols={35}
29380
+ data-testid="rcs_text_area"
29338
29381
  errorMessage={false}
29339
29382
  id="rcs_template_message_textarea"
29340
29383
  maxLength={1000}
@@ -37438,6 +37481,7 @@ new message content.",
37438
37481
  className="ant-col ant-col-14 cap-column-v2"
37439
37482
  >
37440
37483
  <_class
37484
+ data-testid="template_name"
37441
37485
  errorMessage={false}
37442
37486
  id="rcs_template_name_input"
37443
37487
  key=".0"
@@ -37461,6 +37505,7 @@ new message content.",
37461
37505
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
37462
37506
  >
37463
37507
  <CapInput
37508
+ data-testid="template_name"
37464
37509
  errorMessage={false}
37465
37510
  id="rcs_template_name_input"
37466
37511
  onChange={[Function]}
@@ -37468,6 +37513,7 @@ new message content.",
37468
37513
  value=""
37469
37514
  >
37470
37515
  <Input
37516
+ data-testid="template_name"
37471
37517
  id="rcs_template_name_input"
37472
37518
  onChange={[Function]}
37473
37519
  size="default"
@@ -37480,6 +37526,7 @@ new message content.",
37480
37526
  >
37481
37527
  <input
37482
37528
  className="ant-input"
37529
+ data-testid="template_name"
37483
37530
  id="rcs_template_name_input"
37484
37531
  onChange={[Function]}
37485
37532
  onKeyDown={[Function]}
@@ -38263,6 +38310,7 @@ new message content.",
38263
38310
  </div>
38264
38311
  </Rcs__RcsLabel>
38265
38312
  <_class
38313
+ data-testid="template_title"
38266
38314
  id="rcs-template-title-input"
38267
38315
  labelPosition="top"
38268
38316
  maxLength={200}
@@ -38291,6 +38339,7 @@ new message content.",
38291
38339
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
38292
38340
  >
38293
38341
  <CapInput
38342
+ data-testid="template_title"
38294
38343
  id="rcs-template-title-input"
38295
38344
  maxLength={200}
38296
38345
  onChange={[Function]}
@@ -38305,6 +38354,7 @@ new message content.",
38305
38354
  value=""
38306
38355
  >
38307
38356
  <Input
38357
+ data-testid="template_title"
38308
38358
  id="rcs-template-title-input"
38309
38359
  maxLength={200}
38310
38360
  onChange={[Function]}
@@ -38324,6 +38374,7 @@ new message content.",
38324
38374
  >
38325
38375
  <input
38326
38376
  className="ant-input"
38377
+ data-testid="template_title"
38327
38378
  id="rcs-template-title-input"
38328
38379
  maxLength={200}
38329
38380
  onChange={[Function]}
@@ -38516,6 +38567,7 @@ new message content.",
38516
38567
  "minRows": 3,
38517
38568
  }
38518
38569
  }
38570
+ data-testid="rcs_text_area"
38519
38571
  errorMessage={false}
38520
38572
  id="rcs_template_message_textarea"
38521
38573
  labelPosition="top"
@@ -38544,6 +38596,7 @@ new message content.",
38544
38596
  "minRows": 3,
38545
38597
  }
38546
38598
  }
38599
+ data-testid="rcs_text_area"
38547
38600
  errorMessage={false}
38548
38601
  id="rcs_template_message_textarea"
38549
38602
  maxLength={1000}
@@ -38566,6 +38619,7 @@ new message content.",
38566
38619
  }
38567
38620
  }
38568
38621
  cols={35}
38622
+ data-testid="rcs_text_area"
38569
38623
  errorMessage={false}
38570
38624
  id="rcs_template_message_textarea"
38571
38625
  maxLength={1000}
@@ -38584,6 +38638,7 @@ new message content.",
38584
38638
  }
38585
38639
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
38586
38640
  cols={35}
38641
+ data-testid="rcs_text_area"
38587
38642
  errorMessage={false}
38588
38643
  id="rcs_template_message_textarea"
38589
38644
  maxLength={1000}
@@ -38600,6 +38655,7 @@ new message content.",
38600
38655
  <textarea
38601
38656
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
38602
38657
  cols={35}
38658
+ data-testid="rcs_text_area"
38603
38659
  errorMessage={false}
38604
38660
  id="rcs_template_message_textarea"
38605
38661
  maxLength={1000}
@@ -46183,6 +46239,7 @@ new message content.",
46183
46239
  className="ant-col ant-col-14 cap-column-v2"
46184
46240
  >
46185
46241
  <_class
46242
+ data-testid="template_name"
46186
46243
  errorMessage={false}
46187
46244
  id="rcs_template_name_input"
46188
46245
  key=".0"
@@ -46206,6 +46263,7 @@ new message content.",
46206
46263
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
46207
46264
  >
46208
46265
  <CapInput
46266
+ data-testid="template_name"
46209
46267
  errorMessage={false}
46210
46268
  id="rcs_template_name_input"
46211
46269
  onChange={[Function]}
@@ -46213,6 +46271,7 @@ new message content.",
46213
46271
  value="RCS_TEST3"
46214
46272
  >
46215
46273
  <Input
46274
+ data-testid="template_name"
46216
46275
  id="rcs_template_name_input"
46217
46276
  onChange={[Function]}
46218
46277
  size="default"
@@ -46225,6 +46284,7 @@ new message content.",
46225
46284
  >
46226
46285
  <input
46227
46286
  className="ant-input"
46287
+ data-testid="template_name"
46228
46288
  id="rcs_template_name_input"
46229
46289
  onChange={[Function]}
46230
46290
  onKeyDown={[Function]}
@@ -49497,6 +49557,7 @@ new message content.",
49497
49557
  </div>
49498
49558
  </Rcs__RcsLabel>
49499
49559
  <_class
49560
+ data-testid="template_title"
49500
49561
  id="rcs-template-title-input"
49501
49562
  labelPosition="top"
49502
49563
  maxLength={200}
@@ -49525,6 +49586,7 @@ new message content.",
49525
49586
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
49526
49587
  >
49527
49588
  <CapInput
49589
+ data-testid="template_title"
49528
49590
  id="rcs-template-title-input"
49529
49591
  maxLength={200}
49530
49592
  onChange={[Function]}
@@ -49539,6 +49601,7 @@ new message content.",
49539
49601
  value="Rcs title"
49540
49602
  >
49541
49603
  <Input
49604
+ data-testid="template_title"
49542
49605
  id="rcs-template-title-input"
49543
49606
  maxLength={200}
49544
49607
  onChange={[Function]}
@@ -49558,6 +49621,7 @@ new message content.",
49558
49621
  >
49559
49622
  <input
49560
49623
  className="ant-input"
49624
+ data-testid="template_title"
49561
49625
  id="rcs-template-title-input"
49562
49626
  maxLength={200}
49563
49627
  onChange={[Function]}
@@ -49764,6 +49828,7 @@ new message content.",
49764
49828
  "minRows": 3,
49765
49829
  }
49766
49830
  }
49831
+ data-testid="rcs_text_area"
49767
49832
  errorMessage={false}
49768
49833
  id="rcs_template_message_textarea"
49769
49834
  labelPosition="top"
@@ -49792,6 +49857,7 @@ new message content.",
49792
49857
  "minRows": 3,
49793
49858
  }
49794
49859
  }
49860
+ data-testid="rcs_text_area"
49795
49861
  errorMessage={false}
49796
49862
  id="rcs_template_message_textarea"
49797
49863
  maxLength={1000}
@@ -49814,6 +49880,7 @@ new message content.",
49814
49880
  }
49815
49881
  }
49816
49882
  cols={35}
49883
+ data-testid="rcs_text_area"
49817
49884
  errorMessage={false}
49818
49885
  id="rcs_template_message_textarea"
49819
49886
  maxLength={1000}
@@ -49832,6 +49899,7 @@ new message content.",
49832
49899
  }
49833
49900
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
49834
49901
  cols={35}
49902
+ data-testid="rcs_text_area"
49835
49903
  errorMessage={false}
49836
49904
  id="rcs_template_message_textarea"
49837
49905
  maxLength={1000}
@@ -49848,6 +49916,7 @@ new message content.",
49848
49916
  <textarea
49849
49917
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
49850
49918
  cols={35}
49919
+ data-testid="rcs_text_area"
49851
49920
  errorMessage={false}
49852
49921
  id="rcs_template_message_textarea"
49853
49922
  maxLength={1000}
@@ -52356,6 +52425,7 @@ new message content.",
52356
52425
  </div>
52357
52426
  </CapHeading>
52358
52427
  <_class
52428
+ data-testid="cta_btn_link"
52359
52429
  errorMessage={false}
52360
52430
  id="rcs-template-Button-link"
52361
52431
  key=".3"
@@ -52380,6 +52450,7 @@ new message content.",
52380
52450
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
52381
52451
  >
52382
52452
  <CapInput
52453
+ data-testid="cta_btn_link"
52383
52454
  errorMessage={false}
52384
52455
  id="rcs-template-Button-link"
52385
52456
  onChange={[Function]}
@@ -52388,6 +52459,7 @@ new message content.",
52388
52459
  value="url"
52389
52460
  >
52390
52461
  <Input
52462
+ data-testid="cta_btn_link"
52391
52463
  id="rcs-template-Button-link"
52392
52464
  onChange={[Function]}
52393
52465
  placeholder="Enter button link"
@@ -52401,6 +52473,7 @@ new message content.",
52401
52473
  >
52402
52474
  <input
52403
52475
  className="ant-input"
52476
+ data-testid="cta_btn_link"
52404
52477
  id="rcs-template-Button-link"
52405
52478
  onChange={[Function]}
52406
52479
  onKeyDown={[Function]}
@@ -60763,6 +60836,7 @@ new message content.",
60763
60836
  className="ant-col ant-col-14 cap-column-v2"
60764
60837
  >
60765
60838
  <_class
60839
+ data-testid="template_name"
60766
60840
  errorMessage={false}
60767
60841
  id="rcs_template_name_input"
60768
60842
  key=".0"
@@ -60786,6 +60860,7 @@ new message content.",
60786
60860
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
60787
60861
  >
60788
60862
  <CapInput
60863
+ data-testid="template_name"
60789
60864
  errorMessage={false}
60790
60865
  id="rcs_template_name_input"
60791
60866
  onChange={[Function]}
@@ -60793,6 +60868,7 @@ new message content.",
60793
60868
  value="RCS_TEST3"
60794
60869
  >
60795
60870
  <Input
60871
+ data-testid="template_name"
60796
60872
  id="rcs_template_name_input"
60797
60873
  onChange={[Function]}
60798
60874
  size="default"
@@ -60805,6 +60881,7 @@ new message content.",
60805
60881
  >
60806
60882
  <input
60807
60883
  className="ant-input"
60884
+ data-testid="template_name"
60808
60885
  id="rcs_template_name_input"
60809
60886
  onChange={[Function]}
60810
60887
  onKeyDown={[Function]}
@@ -64077,6 +64154,7 @@ new message content.",
64077
64154
  </div>
64078
64155
  </Rcs__RcsLabel>
64079
64156
  <_class
64157
+ data-testid="template_title"
64080
64158
  id="rcs-template-title-input"
64081
64159
  labelPosition="top"
64082
64160
  maxLength={200}
@@ -64105,6 +64183,7 @@ new message content.",
64105
64183
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
64106
64184
  >
64107
64185
  <CapInput
64186
+ data-testid="template_title"
64108
64187
  id="rcs-template-title-input"
64109
64188
  maxLength={200}
64110
64189
  onChange={[Function]}
@@ -64119,6 +64198,7 @@ new message content.",
64119
64198
  value="Rcs title"
64120
64199
  >
64121
64200
  <Input
64201
+ data-testid="template_title"
64122
64202
  id="rcs-template-title-input"
64123
64203
  maxLength={200}
64124
64204
  onChange={[Function]}
@@ -64138,6 +64218,7 @@ new message content.",
64138
64218
  >
64139
64219
  <input
64140
64220
  className="ant-input"
64221
+ data-testid="template_title"
64141
64222
  id="rcs-template-title-input"
64142
64223
  maxLength={200}
64143
64224
  onChange={[Function]}
@@ -64344,6 +64425,7 @@ new message content.",
64344
64425
  "minRows": 3,
64345
64426
  }
64346
64427
  }
64428
+ data-testid="rcs_text_area"
64347
64429
  errorMessage={false}
64348
64430
  id="rcs_template_message_textarea"
64349
64431
  labelPosition="top"
@@ -64372,6 +64454,7 @@ new message content.",
64372
64454
  "minRows": 3,
64373
64455
  }
64374
64456
  }
64457
+ data-testid="rcs_text_area"
64375
64458
  errorMessage={false}
64376
64459
  id="rcs_template_message_textarea"
64377
64460
  maxLength={1000}
@@ -64394,6 +64477,7 @@ new message content.",
64394
64477
  }
64395
64478
  }
64396
64479
  cols={35}
64480
+ data-testid="rcs_text_area"
64397
64481
  errorMessage={false}
64398
64482
  id="rcs_template_message_textarea"
64399
64483
  maxLength={1000}
@@ -64412,6 +64496,7 @@ new message content.",
64412
64496
  }
64413
64497
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
64414
64498
  cols={35}
64499
+ data-testid="rcs_text_area"
64415
64500
  errorMessage={false}
64416
64501
  id="rcs_template_message_textarea"
64417
64502
  maxLength={1000}
@@ -64428,6 +64513,7 @@ new message content.",
64428
64513
  <textarea
64429
64514
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
64430
64515
  cols={35}
64516
+ data-testid="rcs_text_area"
64431
64517
  errorMessage={false}
64432
64518
  id="rcs_template_message_textarea"
64433
64519
  maxLength={1000}
@@ -66936,6 +67022,7 @@ new message content.",
66936
67022
  </div>
66937
67023
  </CapHeading>
66938
67024
  <_class
67025
+ data-testid="cta_btn_link"
66939
67026
  errorMessage={false}
66940
67027
  id="rcs-template-Button-link"
66941
67028
  key=".3"
@@ -66960,6 +67047,7 @@ new message content.",
66960
67047
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
66961
67048
  >
66962
67049
  <CapInput
67050
+ data-testid="cta_btn_link"
66963
67051
  errorMessage={false}
66964
67052
  id="rcs-template-Button-link"
66965
67053
  onChange={[Function]}
@@ -66968,6 +67056,7 @@ new message content.",
66968
67056
  value="url"
66969
67057
  >
66970
67058
  <Input
67059
+ data-testid="cta_btn_link"
66971
67060
  id="rcs-template-Button-link"
66972
67061
  onChange={[Function]}
66973
67062
  placeholder="Enter button link"
@@ -66981,6 +67070,7 @@ new message content.",
66981
67070
  >
66982
67071
  <input
66983
67072
  className="ant-input"
67073
+ data-testid="cta_btn_link"
66984
67074
  id="rcs-template-Button-link"
66985
67075
  onChange={[Function]}
66986
67076
  onKeyDown={[Function]}
@@ -75237,6 +75327,7 @@ new message content.",
75237
75327
  className="ant-col ant-col-14 cap-column-v2"
75238
75328
  >
75239
75329
  <_class
75330
+ data-testid="template_name"
75240
75331
  errorMessage={false}
75241
75332
  id="rcs_template_name_input"
75242
75333
  key=".0"
@@ -75260,6 +75351,7 @@ new message content.",
75260
75351
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
75261
75352
  >
75262
75353
  <CapInput
75354
+ data-testid="template_name"
75263
75355
  errorMessage={false}
75264
75356
  id="rcs_template_name_input"
75265
75357
  onChange={[Function]}
@@ -75267,6 +75359,7 @@ new message content.",
75267
75359
  value="RCS_TEST3"
75268
75360
  >
75269
75361
  <Input
75362
+ data-testid="template_name"
75270
75363
  id="rcs_template_name_input"
75271
75364
  onChange={[Function]}
75272
75365
  size="default"
@@ -75279,6 +75372,7 @@ new message content.",
75279
75372
  >
75280
75373
  <input
75281
75374
  className="ant-input"
75375
+ data-testid="template_name"
75282
75376
  id="rcs_template_name_input"
75283
75377
  onChange={[Function]}
75284
75378
  onKeyDown={[Function]}
@@ -78551,6 +78645,7 @@ new message content.",
78551
78645
  </div>
78552
78646
  </Rcs__RcsLabel>
78553
78647
  <_class
78648
+ data-testid="template_title"
78554
78649
  id="rcs-template-title-input"
78555
78650
  labelPosition="top"
78556
78651
  maxLength={200}
@@ -78579,6 +78674,7 @@ new message content.",
78579
78674
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
78580
78675
  >
78581
78676
  <CapInput
78677
+ data-testid="template_title"
78582
78678
  id="rcs-template-title-input"
78583
78679
  maxLength={200}
78584
78680
  onChange={[Function]}
@@ -78593,6 +78689,7 @@ new message content.",
78593
78689
  value="Rcs title"
78594
78690
  >
78595
78691
  <Input
78692
+ data-testid="template_title"
78596
78693
  id="rcs-template-title-input"
78597
78694
  maxLength={200}
78598
78695
  onChange={[Function]}
@@ -78612,6 +78709,7 @@ new message content.",
78612
78709
  >
78613
78710
  <input
78614
78711
  className="ant-input"
78712
+ data-testid="template_title"
78615
78713
  id="rcs-template-title-input"
78616
78714
  maxLength={200}
78617
78715
  onChange={[Function]}
@@ -78818,6 +78916,7 @@ new message content.",
78818
78916
  "minRows": 3,
78819
78917
  }
78820
78918
  }
78919
+ data-testid="rcs_text_area"
78821
78920
  errorMessage={false}
78822
78921
  id="rcs_template_message_textarea"
78823
78922
  labelPosition="top"
@@ -78846,6 +78945,7 @@ new message content.",
78846
78945
  "minRows": 3,
78847
78946
  }
78848
78947
  }
78948
+ data-testid="rcs_text_area"
78849
78949
  errorMessage={false}
78850
78950
  id="rcs_template_message_textarea"
78851
78951
  maxLength={1000}
@@ -78868,6 +78968,7 @@ new message content.",
78868
78968
  }
78869
78969
  }
78870
78970
  cols={35}
78971
+ data-testid="rcs_text_area"
78871
78972
  errorMessage={false}
78872
78973
  id="rcs_template_message_textarea"
78873
78974
  maxLength={1000}
@@ -78886,6 +78987,7 @@ new message content.",
78886
78987
  }
78887
78988
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
78888
78989
  cols={35}
78990
+ data-testid="rcs_text_area"
78889
78991
  errorMessage={false}
78890
78992
  id="rcs_template_message_textarea"
78891
78993
  maxLength={1000}
@@ -78902,6 +79004,7 @@ new message content.",
78902
79004
  <textarea
78903
79005
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
78904
79006
  cols={35}
79007
+ data-testid="rcs_text_area"
78905
79008
  errorMessage={false}
78906
79009
  id="rcs_template_message_textarea"
78907
79010
  maxLength={1000}
@@ -81410,6 +81513,7 @@ new message content.",
81410
81513
  </div>
81411
81514
  </CapHeading>
81412
81515
  <_class
81516
+ data-testid="cta_btn_link"
81413
81517
  errorMessage={false}
81414
81518
  id="rcs-template-Button-link"
81415
81519
  key=".3"
@@ -81434,6 +81538,7 @@ new message content.",
81434
81538
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
81435
81539
  >
81436
81540
  <CapInput
81541
+ data-testid="cta_btn_link"
81437
81542
  errorMessage={false}
81438
81543
  id="rcs-template-Button-link"
81439
81544
  onChange={[Function]}
@@ -81442,6 +81547,7 @@ new message content.",
81442
81547
  value="url"
81443
81548
  >
81444
81549
  <Input
81550
+ data-testid="cta_btn_link"
81445
81551
  id="rcs-template-Button-link"
81446
81552
  onChange={[Function]}
81447
81553
  placeholder="Enter button link"
@@ -81455,6 +81561,7 @@ new message content.",
81455
81561
  >
81456
81562
  <input
81457
81563
  className="ant-input"
81564
+ data-testid="cta_btn_link"
81458
81565
  id="rcs-template-Button-link"
81459
81566
  onChange={[Function]}
81460
81567
  onKeyDown={[Function]}
@@ -89817,6 +89924,7 @@ new message content.",
89817
89924
  className="ant-col ant-col-14 cap-column-v2"
89818
89925
  >
89819
89926
  <_class
89927
+ data-testid="template_name"
89820
89928
  errorMessage={false}
89821
89929
  id="rcs_template_name_input"
89822
89930
  key=".0"
@@ -89840,6 +89948,7 @@ new message content.",
89840
89948
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
89841
89949
  >
89842
89950
  <CapInput
89951
+ data-testid="template_name"
89843
89952
  errorMessage={false}
89844
89953
  id="rcs_template_name_input"
89845
89954
  onChange={[Function]}
@@ -89847,6 +89956,7 @@ new message content.",
89847
89956
  value="RCS_TEST3"
89848
89957
  >
89849
89958
  <Input
89959
+ data-testid="template_name"
89850
89960
  id="rcs_template_name_input"
89851
89961
  onChange={[Function]}
89852
89962
  size="default"
@@ -89859,6 +89969,7 @@ new message content.",
89859
89969
  >
89860
89970
  <input
89861
89971
  className="ant-input"
89972
+ data-testid="template_name"
89862
89973
  id="rcs_template_name_input"
89863
89974
  onChange={[Function]}
89864
89975
  onKeyDown={[Function]}
@@ -93131,6 +93242,7 @@ new message content.",
93131
93242
  </div>
93132
93243
  </Rcs__RcsLabel>
93133
93244
  <_class
93245
+ data-testid="template_title"
93134
93246
  id="rcs-template-title-input"
93135
93247
  labelPosition="top"
93136
93248
  maxLength={200}
@@ -93159,6 +93271,7 @@ new message content.",
93159
93271
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
93160
93272
  >
93161
93273
  <CapInput
93274
+ data-testid="template_title"
93162
93275
  id="rcs-template-title-input"
93163
93276
  maxLength={200}
93164
93277
  onChange={[Function]}
@@ -93173,6 +93286,7 @@ new message content.",
93173
93286
  value="Rcs title"
93174
93287
  >
93175
93288
  <Input
93289
+ data-testid="template_title"
93176
93290
  id="rcs-template-title-input"
93177
93291
  maxLength={200}
93178
93292
  onChange={[Function]}
@@ -93192,6 +93306,7 @@ new message content.",
93192
93306
  >
93193
93307
  <input
93194
93308
  className="ant-input"
93309
+ data-testid="template_title"
93195
93310
  id="rcs-template-title-input"
93196
93311
  maxLength={200}
93197
93312
  onChange={[Function]}
@@ -93398,6 +93513,7 @@ new message content.",
93398
93513
  "minRows": 3,
93399
93514
  }
93400
93515
  }
93516
+ data-testid="rcs_text_area"
93401
93517
  errorMessage={false}
93402
93518
  id="rcs_template_message_textarea"
93403
93519
  labelPosition="top"
@@ -93426,6 +93542,7 @@ new message content.",
93426
93542
  "minRows": 3,
93427
93543
  }
93428
93544
  }
93545
+ data-testid="rcs_text_area"
93429
93546
  errorMessage={false}
93430
93547
  id="rcs_template_message_textarea"
93431
93548
  maxLength={1000}
@@ -93448,6 +93565,7 @@ new message content.",
93448
93565
  }
93449
93566
  }
93450
93567
  cols={35}
93568
+ data-testid="rcs_text_area"
93451
93569
  errorMessage={false}
93452
93570
  id="rcs_template_message_textarea"
93453
93571
  maxLength={1000}
@@ -93466,6 +93584,7 @@ new message content.",
93466
93584
  }
93467
93585
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
93468
93586
  cols={35}
93587
+ data-testid="rcs_text_area"
93469
93588
  errorMessage={false}
93470
93589
  id="rcs_template_message_textarea"
93471
93590
  maxLength={1000}
@@ -93482,6 +93601,7 @@ new message content.",
93482
93601
  <textarea
93483
93602
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
93484
93603
  cols={35}
93604
+ data-testid="rcs_text_area"
93485
93605
  errorMessage={false}
93486
93606
  id="rcs_template_message_textarea"
93487
93607
  maxLength={1000}
@@ -95990,6 +96110,7 @@ new message content.",
95990
96110
  </div>
95991
96111
  </CapHeading>
95992
96112
  <_class
96113
+ data-testid="cta_btn_link"
95993
96114
  errorMessage={false}
95994
96115
  id="rcs-template-Button-link"
95995
96116
  key=".3"
@@ -96014,6 +96135,7 @@ new message content.",
96014
96135
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
96015
96136
  >
96016
96137
  <CapInput
96138
+ data-testid="cta_btn_link"
96017
96139
  errorMessage={false}
96018
96140
  id="rcs-template-Button-link"
96019
96141
  onChange={[Function]}
@@ -96022,6 +96144,7 @@ new message content.",
96022
96144
  value="url"
96023
96145
  >
96024
96146
  <Input
96147
+ data-testid="cta_btn_link"
96025
96148
  id="rcs-template-Button-link"
96026
96149
  onChange={[Function]}
96027
96150
  placeholder="Enter button link"
@@ -96035,6 +96158,7 @@ new message content.",
96035
96158
  >
96036
96159
  <input
96037
96160
  className="ant-input"
96161
+ data-testid="cta_btn_link"
96038
96162
  id="rcs-template-Button-link"
96039
96163
  onChange={[Function]}
96040
96164
  onKeyDown={[Function]}
@@ -104257,6 +104381,7 @@ new message content.",
104257
104381
  className="ant-col ant-col-14 cap-column-v2"
104258
104382
  >
104259
104383
  <_class
104384
+ data-testid="template_name"
104260
104385
  errorMessage={false}
104261
104386
  id="rcs_template_name_input"
104262
104387
  key=".0"
@@ -104280,6 +104405,7 @@ new message content.",
104280
104405
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
104281
104406
  >
104282
104407
  <CapInput
104408
+ data-testid="template_name"
104283
104409
  errorMessage={false}
104284
104410
  id="rcs_template_name_input"
104285
104411
  onChange={[Function]}
@@ -104287,6 +104413,7 @@ new message content.",
104287
104413
  value=""
104288
104414
  >
104289
104415
  <Input
104416
+ data-testid="template_name"
104290
104417
  id="rcs_template_name_input"
104291
104418
  onChange={[Function]}
104292
104419
  size="default"
@@ -104299,6 +104426,7 @@ new message content.",
104299
104426
  >
104300
104427
  <input
104301
104428
  className="ant-input"
104429
+ data-testid="template_name"
104302
104430
  id="rcs_template_name_input"
104303
104431
  onChange={[Function]}
104304
104432
  onKeyDown={[Function]}
@@ -105082,6 +105210,7 @@ new message content.",
105082
105210
  </div>
105083
105211
  </Rcs__RcsLabel>
105084
105212
  <_class
105213
+ data-testid="template_title"
105085
105214
  id="rcs-template-title-input"
105086
105215
  labelPosition="top"
105087
105216
  maxLength={200}
@@ -105110,6 +105239,7 @@ new message content.",
105110
105239
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
105111
105240
  >
105112
105241
  <CapInput
105242
+ data-testid="template_title"
105113
105243
  id="rcs-template-title-input"
105114
105244
  maxLength={200}
105115
105245
  onChange={[Function]}
@@ -105124,6 +105254,7 @@ new message content.",
105124
105254
  value=""
105125
105255
  >
105126
105256
  <Input
105257
+ data-testid="template_title"
105127
105258
  id="rcs-template-title-input"
105128
105259
  maxLength={200}
105129
105260
  onChange={[Function]}
@@ -105143,6 +105274,7 @@ new message content.",
105143
105274
  >
105144
105275
  <input
105145
105276
  className="ant-input"
105277
+ data-testid="template_title"
105146
105278
  id="rcs-template-title-input"
105147
105279
  maxLength={200}
105148
105280
  onChange={[Function]}
@@ -105335,6 +105467,7 @@ new message content.",
105335
105467
  "minRows": 3,
105336
105468
  }
105337
105469
  }
105470
+ data-testid="rcs_text_area"
105338
105471
  errorMessage={false}
105339
105472
  id="rcs_template_message_textarea"
105340
105473
  labelPosition="top"
@@ -105363,6 +105496,7 @@ new message content.",
105363
105496
  "minRows": 3,
105364
105497
  }
105365
105498
  }
105499
+ data-testid="rcs_text_area"
105366
105500
  errorMessage={false}
105367
105501
  id="rcs_template_message_textarea"
105368
105502
  maxLength={1000}
@@ -105385,6 +105519,7 @@ new message content.",
105385
105519
  }
105386
105520
  }
105387
105521
  cols={35}
105522
+ data-testid="rcs_text_area"
105388
105523
  errorMessage={false}
105389
105524
  id="rcs_template_message_textarea"
105390
105525
  maxLength={1000}
@@ -105403,6 +105538,7 @@ new message content.",
105403
105538
  }
105404
105539
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
105405
105540
  cols={35}
105541
+ data-testid="rcs_text_area"
105406
105542
  errorMessage={false}
105407
105543
  id="rcs_template_message_textarea"
105408
105544
  maxLength={1000}
@@ -105419,6 +105555,7 @@ new message content.",
105419
105555
  <textarea
105420
105556
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
105421
105557
  cols={35}
105558
+ data-testid="rcs_text_area"
105422
105559
  errorMessage={false}
105423
105560
  id="rcs_template_message_textarea"
105424
105561
  maxLength={1000}
@@ -113057,6 +113194,7 @@ new message content.",
113057
113194
  className="ant-col ant-col-14 cap-column-v2"
113058
113195
  >
113059
113196
  <_class
113197
+ data-testid="template_name"
113060
113198
  errorMessage={false}
113061
113199
  id="rcs_template_name_input"
113062
113200
  key=".0"
@@ -113080,6 +113218,7 @@ new message content.",
113080
113218
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
113081
113219
  >
113082
113220
  <CapInput
113221
+ data-testid="template_name"
113083
113222
  errorMessage={false}
113084
113223
  id="rcs_template_name_input"
113085
113224
  onChange={[Function]}
@@ -113087,6 +113226,7 @@ new message content.",
113087
113226
  value="RCS_TEST1"
113088
113227
  >
113089
113228
  <Input
113229
+ data-testid="template_name"
113090
113230
  id="rcs_template_name_input"
113091
113231
  onChange={[Function]}
113092
113232
  size="default"
@@ -113099,6 +113239,7 @@ new message content.",
113099
113239
  >
113100
113240
  <input
113101
113241
  className="ant-input"
113242
+ data-testid="template_name"
113102
113243
  id="rcs_template_name_input"
113103
113244
  onChange={[Function]}
113104
113245
  onKeyDown={[Function]}
@@ -116325,6 +116466,7 @@ new message content.",
116325
116466
  </div>
116326
116467
  </Rcs__RcsLabel>
116327
116468
  <_class
116469
+ data-testid="template_title"
116328
116470
  id="rcs-template-title-input"
116329
116471
  labelPosition="top"
116330
116472
  maxLength={200}
@@ -116353,6 +116495,7 @@ new message content.",
116353
116495
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
116354
116496
  >
116355
116497
  <CapInput
116498
+ data-testid="template_title"
116356
116499
  id="rcs-template-title-input"
116357
116500
  maxLength={200}
116358
116501
  onChange={[Function]}
@@ -116367,6 +116510,7 @@ new message content.",
116367
116510
  value="This is RCS title"
116368
116511
  >
116369
116512
  <Input
116513
+ data-testid="template_title"
116370
116514
  id="rcs-template-title-input"
116371
116515
  maxLength={200}
116372
116516
  onChange={[Function]}
@@ -116386,6 +116530,7 @@ new message content.",
116386
116530
  >
116387
116531
  <input
116388
116532
  className="ant-input"
116533
+ data-testid="template_title"
116389
116534
  id="rcs-template-title-input"
116390
116535
  maxLength={200}
116391
116536
  onChange={[Function]}
@@ -116592,6 +116737,7 @@ new message content.",
116592
116737
  "minRows": 3,
116593
116738
  }
116594
116739
  }
116740
+ data-testid="rcs_text_area"
116595
116741
  errorMessage={false}
116596
116742
  id="rcs_template_message_textarea"
116597
116743
  labelPosition="top"
@@ -116620,6 +116766,7 @@ new message content.",
116620
116766
  "minRows": 3,
116621
116767
  }
116622
116768
  }
116769
+ data-testid="rcs_text_area"
116623
116770
  errorMessage={false}
116624
116771
  id="rcs_template_message_textarea"
116625
116772
  maxLength={1000}
@@ -116642,6 +116789,7 @@ new message content.",
116642
116789
  }
116643
116790
  }
116644
116791
  cols={35}
116792
+ data-testid="rcs_text_area"
116645
116793
  errorMessage={false}
116646
116794
  id="rcs_template_message_textarea"
116647
116795
  maxLength={1000}
@@ -116660,6 +116808,7 @@ new message content.",
116660
116808
  }
116661
116809
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
116662
116810
  cols={35}
116811
+ data-testid="rcs_text_area"
116663
116812
  errorMessage={false}
116664
116813
  id="rcs_template_message_textarea"
116665
116814
  maxLength={1000}
@@ -116676,6 +116825,7 @@ new message content.",
116676
116825
  <textarea
116677
116826
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
116678
116827
  cols={35}
116828
+ data-testid="rcs_text_area"
116679
116829
  errorMessage={false}
116680
116830
  id="rcs_template_message_textarea"
116681
116831
  maxLength={1000}
@@ -119184,6 +119334,7 @@ new message content.",
119184
119334
  </div>
119185
119335
  </CapHeading>
119186
119336
  <_class
119337
+ data-testid="cta_btn_link"
119187
119338
  errorMessage={false}
119188
119339
  id="rcs-template-Button-link"
119189
119340
  key=".3"
@@ -119208,6 +119359,7 @@ new message content.",
119208
119359
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
119209
119360
  >
119210
119361
  <CapInput
119362
+ data-testid="cta_btn_link"
119211
119363
  errorMessage={false}
119212
119364
  id="rcs-template-Button-link"
119213
119365
  onChange={[Function]}
@@ -119216,6 +119368,7 @@ new message content.",
119216
119368
  value="url"
119217
119369
  >
119218
119370
  <Input
119371
+ data-testid="cta_btn_link"
119219
119372
  id="rcs-template-Button-link"
119220
119373
  onChange={[Function]}
119221
119374
  placeholder="Enter button link"
@@ -119229,6 +119382,7 @@ new message content.",
119229
119382
  >
119230
119383
  <input
119231
119384
  className="ant-input"
119385
+ data-testid="cta_btn_link"
119232
119386
  id="rcs-template-Button-link"
119233
119387
  onChange={[Function]}
119234
119388
  onKeyDown={[Function]}
@@ -128017,7 +128171,9 @@ new message content.",
128017
128171
  key="container"
128018
128172
  >
128019
128173
  <CapSlideBox
128174
+ closeIconPosition="right"
128020
128175
  closeIconSize="m"
128176
+ closeIconType="close"
128021
128177
  content={
128022
128178
  <Connect(UserIsAuthenticated(Connect(InjectIntl(Templates))))
128023
128179
  handlePeviewTemplate={[Function]}
@@ -128062,7 +128218,7 @@ new message content.",
128062
128218
  className="cap-slide-box-v2-container size-xl right"
128063
128219
  >
128064
128220
  <div
128065
- className="slidebox-header"
128221
+ className="slidebox-header-icon-right"
128066
128222
  >
128067
128223
  <CapHeading
128068
128224
  type="h1"
@@ -131236,6 +131392,7 @@ new message content.",
131236
131392
  className="ant-col ant-col-14 cap-column-v2"
131237
131393
  >
131238
131394
  <_class
131395
+ data-testid="template_name"
131239
131396
  errorMessage={false}
131240
131397
  id="rcs_template_name_input"
131241
131398
  key=".0"
@@ -131259,6 +131416,7 @@ new message content.",
131259
131416
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
131260
131417
  >
131261
131418
  <CapInput
131419
+ data-testid="template_name"
131262
131420
  errorMessage={false}
131263
131421
  id="rcs_template_name_input"
131264
131422
  onChange={[Function]}
@@ -131266,6 +131424,7 @@ new message content.",
131266
131424
  value=""
131267
131425
  >
131268
131426
  <Input
131427
+ data-testid="template_name"
131269
131428
  id="rcs_template_name_input"
131270
131429
  onChange={[Function]}
131271
131430
  size="default"
@@ -131278,6 +131437,7 @@ new message content.",
131278
131437
  >
131279
131438
  <input
131280
131439
  className="ant-input"
131440
+ data-testid="template_name"
131281
131441
  id="rcs_template_name_input"
131282
131442
  onChange={[Function]}
131283
131443
  onKeyDown={[Function]}
@@ -132061,6 +132221,7 @@ new message content.",
132061
132221
  </div>
132062
132222
  </Rcs__RcsLabel>
132063
132223
  <_class
132224
+ data-testid="template_title"
132064
132225
  id="rcs-template-title-input"
132065
132226
  labelPosition="top"
132066
132227
  maxLength={200}
@@ -132089,6 +132250,7 @@ new message content.",
132089
132250
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
132090
132251
  >
132091
132252
  <CapInput
132253
+ data-testid="template_title"
132092
132254
  id="rcs-template-title-input"
132093
132255
  maxLength={200}
132094
132256
  onChange={[Function]}
@@ -132103,6 +132265,7 @@ new message content.",
132103
132265
  value=""
132104
132266
  >
132105
132267
  <Input
132268
+ data-testid="template_title"
132106
132269
  id="rcs-template-title-input"
132107
132270
  maxLength={200}
132108
132271
  onChange={[Function]}
@@ -132122,6 +132285,7 @@ new message content.",
132122
132285
  >
132123
132286
  <input
132124
132287
  className="ant-input"
132288
+ data-testid="template_title"
132125
132289
  id="rcs-template-title-input"
132126
132290
  maxLength={200}
132127
132291
  onChange={[Function]}
@@ -132314,6 +132478,7 @@ new message content.",
132314
132478
  "minRows": 3,
132315
132479
  }
132316
132480
  }
132481
+ data-testid="rcs_text_area"
132317
132482
  errorMessage={false}
132318
132483
  id="rcs_template_message_textarea"
132319
132484
  labelPosition="top"
@@ -132342,6 +132507,7 @@ new message content.",
132342
132507
  "minRows": 3,
132343
132508
  }
132344
132509
  }
132510
+ data-testid="rcs_text_area"
132345
132511
  errorMessage={false}
132346
132512
  id="rcs_template_message_textarea"
132347
132513
  maxLength={1000}
@@ -132364,6 +132530,7 @@ new message content.",
132364
132530
  }
132365
132531
  }
132366
132532
  cols={35}
132533
+ data-testid="rcs_text_area"
132367
132534
  errorMessage={false}
132368
132535
  id="rcs_template_message_textarea"
132369
132536
  maxLength={1000}
@@ -132382,6 +132549,7 @@ new message content.",
132382
132549
  }
132383
132550
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
132384
132551
  cols={35}
132552
+ data-testid="rcs_text_area"
132385
132553
  errorMessage={false}
132386
132554
  id="rcs_template_message_textarea"
132387
132555
  maxLength={1000}
@@ -132398,6 +132566,7 @@ new message content.",
132398
132566
  <textarea
132399
132567
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
132400
132568
  cols={35}
132569
+ data-testid="rcs_text_area"
132401
132570
  errorMessage={false}
132402
132571
  id="rcs_template_message_textarea"
132403
132572
  maxLength={1000}
@@ -140523,6 +140692,7 @@ new message content.",
140523
140692
  className="ant-col ant-col-14 cap-column-v2"
140524
140693
  >
140525
140694
  <_class
140695
+ data-testid="template_name"
140526
140696
  errorMessage={false}
140527
140697
  id="rcs_template_name_input"
140528
140698
  key=".0"
@@ -140546,6 +140716,7 @@ new message content.",
140546
140716
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
140547
140717
  >
140548
140718
  <CapInput
140719
+ data-testid="template_name"
140549
140720
  errorMessage={false}
140550
140721
  id="rcs_template_name_input"
140551
140722
  onChange={[Function]}
@@ -140553,6 +140724,7 @@ new message content.",
140553
140724
  value=""
140554
140725
  >
140555
140726
  <Input
140727
+ data-testid="template_name"
140556
140728
  id="rcs_template_name_input"
140557
140729
  onChange={[Function]}
140558
140730
  size="default"
@@ -140565,6 +140737,7 @@ new message content.",
140565
140737
  >
140566
140738
  <input
140567
140739
  className="ant-input"
140740
+ data-testid="template_name"
140568
140741
  id="rcs_template_name_input"
140569
140742
  onChange={[Function]}
140570
140743
  onKeyDown={[Function]}
@@ -141348,6 +141521,7 @@ new message content.",
141348
141521
  </div>
141349
141522
  </Rcs__RcsLabel>
141350
141523
  <_class
141524
+ data-testid="template_title"
141351
141525
  id="rcs-template-title-input"
141352
141526
  labelPosition="top"
141353
141527
  maxLength={200}
@@ -141376,6 +141550,7 @@ new message content.",
141376
141550
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
141377
141551
  >
141378
141552
  <CapInput
141553
+ data-testid="template_title"
141379
141554
  id="rcs-template-title-input"
141380
141555
  maxLength={200}
141381
141556
  onChange={[Function]}
@@ -141390,6 +141565,7 @@ new message content.",
141390
141565
  value=""
141391
141566
  >
141392
141567
  <Input
141568
+ data-testid="template_title"
141393
141569
  id="rcs-template-title-input"
141394
141570
  maxLength={200}
141395
141571
  onChange={[Function]}
@@ -141409,6 +141585,7 @@ new message content.",
141409
141585
  >
141410
141586
  <input
141411
141587
  className="ant-input"
141588
+ data-testid="template_title"
141412
141589
  id="rcs-template-title-input"
141413
141590
  maxLength={200}
141414
141591
  onChange={[Function]}
@@ -141601,6 +141778,7 @@ new message content.",
141601
141778
  "minRows": 3,
141602
141779
  }
141603
141780
  }
141781
+ data-testid="rcs_text_area"
141604
141782
  id="rcs_template_message_textarea"
141605
141783
  labelPosition="top"
141606
141784
  maxLength={1000}
@@ -141627,6 +141805,7 @@ new message content.",
141627
141805
  "minRows": 3,
141628
141806
  }
141629
141807
  }
141808
+ data-testid="rcs_text_area"
141630
141809
  id="rcs_template_message_textarea"
141631
141810
  maxLength={1000}
141632
141811
  onChange={[Function]}
@@ -141648,6 +141827,7 @@ new message content.",
141648
141827
  }
141649
141828
  }
141650
141829
  cols={35}
141830
+ data-testid="rcs_text_area"
141651
141831
  id="rcs_template_message_textarea"
141652
141832
  maxLength={1000}
141653
141833
  onChange={[Function]}
@@ -141665,6 +141845,7 @@ new message content.",
141665
141845
  }
141666
141846
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
141667
141847
  cols={35}
141848
+ data-testid="rcs_text_area"
141668
141849
  id="rcs_template_message_textarea"
141669
141850
  maxLength={1000}
141670
141851
  onChange={[Function]}
@@ -141680,6 +141861,7 @@ new message content.",
141680
141861
  <textarea
141681
141862
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
141682
141863
  cols={35}
141864
+ data-testid="rcs_text_area"
141683
141865
  id="rcs_template_message_textarea"
141684
141866
  maxLength={1000}
141685
141867
  onChange={[Function]}
@@ -149228,6 +149410,7 @@ new message content.",
149228
149410
  className="ant-col ant-col-14 cap-column-v2"
149229
149411
  >
149230
149412
  <_class
149413
+ data-testid="template_name"
149231
149414
  errorMessage={false}
149232
149415
  id="rcs_template_name_input"
149233
149416
  key=".0"
@@ -149251,6 +149434,7 @@ new message content.",
149251
149434
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
149252
149435
  >
149253
149436
  <CapInput
149437
+ data-testid="template_name"
149254
149438
  errorMessage={false}
149255
149439
  id="rcs_template_name_input"
149256
149440
  onChange={[Function]}
@@ -149258,6 +149442,7 @@ new message content.",
149258
149442
  value=""
149259
149443
  >
149260
149444
  <Input
149445
+ data-testid="template_name"
149261
149446
  id="rcs_template_name_input"
149262
149447
  onChange={[Function]}
149263
149448
  size="default"
@@ -149270,6 +149455,7 @@ new message content.",
149270
149455
  >
149271
149456
  <input
149272
149457
  className="ant-input"
149458
+ data-testid="template_name"
149273
149459
  id="rcs_template_name_input"
149274
149460
  onChange={[Function]}
149275
149461
  onKeyDown={[Function]}
@@ -150053,6 +150239,7 @@ new message content.",
150053
150239
  </div>
150054
150240
  </Rcs__RcsLabel>
150055
150241
  <_class
150242
+ data-testid="template_title"
150056
150243
  id="rcs-template-title-input"
150057
150244
  labelPosition="top"
150058
150245
  maxLength={200}
@@ -150081,6 +150268,7 @@ new message content.",
150081
150268
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
150082
150269
  >
150083
150270
  <CapInput
150271
+ data-testid="template_title"
150084
150272
  id="rcs-template-title-input"
150085
150273
  maxLength={200}
150086
150274
  onChange={[Function]}
@@ -150095,6 +150283,7 @@ new message content.",
150095
150283
  value=""
150096
150284
  >
150097
150285
  <Input
150286
+ data-testid="template_title"
150098
150287
  id="rcs-template-title-input"
150099
150288
  maxLength={200}
150100
150289
  onChange={[Function]}
@@ -150114,6 +150303,7 @@ new message content.",
150114
150303
  >
150115
150304
  <input
150116
150305
  className="ant-input"
150306
+ data-testid="template_title"
150117
150307
  id="rcs-template-title-input"
150118
150308
  maxLength={200}
150119
150309
  onChange={[Function]}
@@ -150306,6 +150496,7 @@ new message content.",
150306
150496
  "minRows": 3,
150307
150497
  }
150308
150498
  }
150499
+ data-testid="rcs_text_area"
150309
150500
  errorMessage={false}
150310
150501
  id="rcs_template_message_textarea"
150311
150502
  labelPosition="top"
@@ -150334,6 +150525,7 @@ new message content.",
150334
150525
  "minRows": 3,
150335
150526
  }
150336
150527
  }
150528
+ data-testid="rcs_text_area"
150337
150529
  errorMessage={false}
150338
150530
  id="rcs_template_message_textarea"
150339
150531
  maxLength={1000}
@@ -150356,6 +150548,7 @@ new message content.",
150356
150548
  }
150357
150549
  }
150358
150550
  cols={35}
150551
+ data-testid="rcs_text_area"
150359
150552
  errorMessage={false}
150360
150553
  id="rcs_template_message_textarea"
150361
150554
  maxLength={1000}
@@ -150374,6 +150567,7 @@ new message content.",
150374
150567
  }
150375
150568
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
150376
150569
  cols={35}
150570
+ data-testid="rcs_text_area"
150377
150571
  errorMessage={false}
150378
150572
  id="rcs_template_message_textarea"
150379
150573
  maxLength={1000}
@@ -150390,6 +150584,7 @@ new message content.",
150390
150584
  <textarea
150391
150585
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
150392
150586
  cols={35}
150587
+ data-testid="rcs_text_area"
150393
150588
  errorMessage={false}
150394
150589
  id="rcs_template_message_textarea"
150395
150590
  maxLength={1000}
@@ -158216,6 +158411,7 @@ new message content.",
158216
158411
  className="ant-col ant-col-14 cap-column-v2"
158217
158412
  >
158218
158413
  <_class
158414
+ data-testid="template_name"
158219
158415
  errorMessage={false}
158220
158416
  id="rcs_template_name_input"
158221
158417
  key=".0"
@@ -158239,6 +158435,7 @@ new message content.",
158239
158435
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
158240
158436
  >
158241
158437
  <CapInput
158438
+ data-testid="template_name"
158242
158439
  errorMessage={false}
158243
158440
  id="rcs_template_name_input"
158244
158441
  onChange={[Function]}
@@ -158246,6 +158443,7 @@ new message content.",
158246
158443
  value="test_name"
158247
158444
  >
158248
158445
  <Input
158446
+ data-testid="template_name"
158249
158447
  id="rcs_template_name_input"
158250
158448
  onChange={[Function]}
158251
158449
  size="default"
@@ -158258,6 +158456,7 @@ new message content.",
158258
158456
  >
158259
158457
  <input
158260
158458
  className="ant-input"
158459
+ data-testid="template_name"
158261
158460
  id="rcs_template_name_input"
158262
158461
  onChange={[Function]}
158263
158462
  onKeyDown={[Function]}
@@ -159041,6 +159240,7 @@ new message content.",
159041
159240
  </div>
159042
159241
  </Rcs__RcsLabel>
159043
159242
  <_class
159243
+ data-testid="template_title"
159044
159244
  id="rcs-template-title-input"
159045
159245
  labelPosition="top"
159046
159246
  maxLength={200}
@@ -159069,6 +159269,7 @@ new message content.",
159069
159269
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
159070
159270
  >
159071
159271
  <CapInput
159272
+ data-testid="template_title"
159072
159273
  id="rcs-template-title-input"
159073
159274
  maxLength={200}
159074
159275
  onChange={[Function]}
@@ -159083,6 +159284,7 @@ new message content.",
159083
159284
  value=""
159084
159285
  >
159085
159286
  <Input
159287
+ data-testid="template_title"
159086
159288
  id="rcs-template-title-input"
159087
159289
  maxLength={200}
159088
159290
  onChange={[Function]}
@@ -159102,6 +159304,7 @@ new message content.",
159102
159304
  >
159103
159305
  <input
159104
159306
  className="ant-input"
159307
+ data-testid="template_title"
159105
159308
  id="rcs-template-title-input"
159106
159309
  maxLength={200}
159107
159310
  onChange={[Function]}
@@ -159294,6 +159497,7 @@ new message content.",
159294
159497
  "minRows": 3,
159295
159498
  }
159296
159499
  }
159500
+ data-testid="rcs_text_area"
159297
159501
  errorMessage={false}
159298
159502
  id="rcs_template_message_textarea"
159299
159503
  labelPosition="top"
@@ -159322,6 +159526,7 @@ new message content.",
159322
159526
  "minRows": 3,
159323
159527
  }
159324
159528
  }
159529
+ data-testid="rcs_text_area"
159325
159530
  errorMessage={false}
159326
159531
  id="rcs_template_message_textarea"
159327
159532
  maxLength={1000}
@@ -159344,6 +159549,7 @@ new message content.",
159344
159549
  }
159345
159550
  }
159346
159551
  cols={35}
159552
+ data-testid="rcs_text_area"
159347
159553
  errorMessage={false}
159348
159554
  id="rcs_template_message_textarea"
159349
159555
  maxLength={1000}
@@ -159362,6 +159568,7 @@ new message content.",
159362
159568
  }
159363
159569
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
159364
159570
  cols={35}
159571
+ data-testid="rcs_text_area"
159365
159572
  errorMessage={false}
159366
159573
  id="rcs_template_message_textarea"
159367
159574
  maxLength={1000}
@@ -159378,6 +159585,7 @@ new message content.",
159378
159585
  <textarea
159379
159586
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
159380
159587
  cols={35}
159588
+ data-testid="rcs_text_area"
159381
159589
  errorMessage={false}
159382
159590
  id="rcs_template_message_textarea"
159383
159591
  maxLength={1000}
@@ -167491,6 +167699,7 @@ new message content.",
167491
167699
  className="ant-col ant-col-14 cap-column-v2"
167492
167700
  >
167493
167701
  <_class
167702
+ data-testid="template_name"
167494
167703
  id="rcs_template_name_input"
167495
167704
  key=".0"
167496
167705
  labelPosition="top"
@@ -167512,12 +167721,14 @@ new message content.",
167512
167721
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
167513
167722
  >
167514
167723
  <CapInput
167724
+ data-testid="template_name"
167515
167725
  id="rcs_template_name_input"
167516
167726
  onChange={[Function]}
167517
167727
  size="default"
167518
167728
  value=""
167519
167729
  >
167520
167730
  <Input
167731
+ data-testid="template_name"
167521
167732
  id="rcs_template_name_input"
167522
167733
  onChange={[Function]}
167523
167734
  size="default"
@@ -167530,6 +167741,7 @@ new message content.",
167530
167741
  >
167531
167742
  <input
167532
167743
  className="ant-input"
167744
+ data-testid="template_name"
167533
167745
  id="rcs_template_name_input"
167534
167746
  onChange={[Function]}
167535
167747
  onKeyDown={[Function]}
@@ -168313,6 +168525,7 @@ new message content.",
168313
168525
  </div>
168314
168526
  </Rcs__RcsLabel>
168315
168527
  <_class
168528
+ data-testid="template_title"
168316
168529
  id="rcs-template-title-input"
168317
168530
  labelPosition="top"
168318
168531
  maxLength={200}
@@ -168341,6 +168554,7 @@ new message content.",
168341
168554
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
168342
168555
  >
168343
168556
  <CapInput
168557
+ data-testid="template_title"
168344
168558
  id="rcs-template-title-input"
168345
168559
  maxLength={200}
168346
168560
  onChange={[Function]}
@@ -168355,6 +168569,7 @@ new message content.",
168355
168569
  value=""
168356
168570
  >
168357
168571
  <Input
168572
+ data-testid="template_title"
168358
168573
  id="rcs-template-title-input"
168359
168574
  maxLength={200}
168360
168575
  onChange={[Function]}
@@ -168374,6 +168589,7 @@ new message content.",
168374
168589
  >
168375
168590
  <input
168376
168591
  className="ant-input"
168592
+ data-testid="template_title"
168377
168593
  id="rcs-template-title-input"
168378
168594
  maxLength={200}
168379
168595
  onChange={[Function]}
@@ -168566,6 +168782,7 @@ new message content.",
168566
168782
  "minRows": 3,
168567
168783
  }
168568
168784
  }
168785
+ data-testid="rcs_text_area"
168569
168786
  errorMessage={false}
168570
168787
  id="rcs_template_message_textarea"
168571
168788
  labelPosition="top"
@@ -168594,6 +168811,7 @@ new message content.",
168594
168811
  "minRows": 3,
168595
168812
  }
168596
168813
  }
168814
+ data-testid="rcs_text_area"
168597
168815
  errorMessage={false}
168598
168816
  id="rcs_template_message_textarea"
168599
168817
  maxLength={1000}
@@ -168616,6 +168834,7 @@ new message content.",
168616
168834
  }
168617
168835
  }
168618
168836
  cols={35}
168837
+ data-testid="rcs_text_area"
168619
168838
  errorMessage={false}
168620
168839
  id="rcs_template_message_textarea"
168621
168840
  maxLength={1000}
@@ -168634,6 +168853,7 @@ new message content.",
168634
168853
  }
168635
168854
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
168636
168855
  cols={35}
168856
+ data-testid="rcs_text_area"
168637
168857
  errorMessage={false}
168638
168858
  id="rcs_template_message_textarea"
168639
168859
  maxLength={1000}
@@ -168650,6 +168870,7 @@ new message content.",
168650
168870
  <textarea
168651
168871
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
168652
168872
  cols={35}
168873
+ data-testid="rcs_text_area"
168653
168874
  errorMessage={false}
168654
168875
  id="rcs_template_message_textarea"
168655
168876
  maxLength={1000}
@@ -176476,6 +176697,7 @@ new message content.",
176476
176697
  className="ant-col ant-col-14 cap-column-v2"
176477
176698
  >
176478
176699
  <_class
176700
+ data-testid="template_name"
176479
176701
  errorMessage={false}
176480
176702
  id="rcs_template_name_input"
176481
176703
  key=".0"
@@ -176499,6 +176721,7 @@ new message content.",
176499
176721
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
176500
176722
  >
176501
176723
  <CapInput
176724
+ data-testid="template_name"
176502
176725
  errorMessage={false}
176503
176726
  id="rcs_template_name_input"
176504
176727
  onChange={[Function]}
@@ -176506,6 +176729,7 @@ new message content.",
176506
176729
  value=""
176507
176730
  >
176508
176731
  <Input
176732
+ data-testid="template_name"
176509
176733
  id="rcs_template_name_input"
176510
176734
  onChange={[Function]}
176511
176735
  size="default"
@@ -176518,6 +176742,7 @@ new message content.",
176518
176742
  >
176519
176743
  <input
176520
176744
  className="ant-input"
176745
+ data-testid="template_name"
176521
176746
  id="rcs_template_name_input"
176522
176747
  onChange={[Function]}
176523
176748
  onKeyDown={[Function]}
@@ -177301,6 +177526,7 @@ new message content.",
177301
177526
  </div>
177302
177527
  </Rcs__RcsLabel>
177303
177528
  <_class
177529
+ data-testid="template_title"
177304
177530
  id="rcs-template-title-input"
177305
177531
  labelPosition="top"
177306
177532
  maxLength={200}
@@ -177329,6 +177555,7 @@ new message content.",
177329
177555
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
177330
177556
  >
177331
177557
  <CapInput
177558
+ data-testid="template_title"
177332
177559
  id="rcs-template-title-input"
177333
177560
  maxLength={200}
177334
177561
  onChange={[Function]}
@@ -177343,6 +177570,7 @@ new message content.",
177343
177570
  value="test_title"
177344
177571
  >
177345
177572
  <Input
177573
+ data-testid="template_title"
177346
177574
  id="rcs-template-title-input"
177347
177575
  maxLength={200}
177348
177576
  onChange={[Function]}
@@ -177362,6 +177590,7 @@ new message content.",
177362
177590
  >
177363
177591
  <input
177364
177592
  className="ant-input"
177593
+ data-testid="template_title"
177365
177594
  id="rcs-template-title-input"
177366
177595
  maxLength={200}
177367
177596
  onChange={[Function]}
@@ -177554,6 +177783,7 @@ new message content.",
177554
177783
  "minRows": 3,
177555
177784
  }
177556
177785
  }
177786
+ data-testid="rcs_text_area"
177557
177787
  errorMessage={false}
177558
177788
  id="rcs_template_message_textarea"
177559
177789
  labelPosition="top"
@@ -177582,6 +177812,7 @@ new message content.",
177582
177812
  "minRows": 3,
177583
177813
  }
177584
177814
  }
177815
+ data-testid="rcs_text_area"
177585
177816
  errorMessage={false}
177586
177817
  id="rcs_template_message_textarea"
177587
177818
  maxLength={1000}
@@ -177604,6 +177835,7 @@ new message content.",
177604
177835
  }
177605
177836
  }
177606
177837
  cols={35}
177838
+ data-testid="rcs_text_area"
177607
177839
  errorMessage={false}
177608
177840
  id="rcs_template_message_textarea"
177609
177841
  maxLength={1000}
@@ -177622,6 +177854,7 @@ new message content.",
177622
177854
  }
177623
177855
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
177624
177856
  cols={35}
177857
+ data-testid="rcs_text_area"
177625
177858
  errorMessage={false}
177626
177859
  id="rcs_template_message_textarea"
177627
177860
  maxLength={1000}
@@ -177638,6 +177871,7 @@ new message content.",
177638
177871
  <textarea
177639
177872
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
177640
177873
  cols={35}
177874
+ data-testid="rcs_text_area"
177641
177875
  errorMessage={false}
177642
177876
  id="rcs_template_message_textarea"
177643
177877
  maxLength={1000}
@@ -185755,6 +185989,7 @@ new message content.",
185755
185989
  className="ant-col ant-col-14 cap-column-v2"
185756
185990
  >
185757
185991
  <_class
185992
+ data-testid="template_name"
185758
185993
  errorMessage={false}
185759
185994
  id="rcs_template_name_input"
185760
185995
  key=".0"
@@ -185778,6 +186013,7 @@ new message content.",
185778
186013
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
185779
186014
  >
185780
186015
  <CapInput
186016
+ data-testid="template_name"
185781
186017
  errorMessage={false}
185782
186018
  id="rcs_template_name_input"
185783
186019
  onChange={[Function]}
@@ -185785,6 +186021,7 @@ new message content.",
185785
186021
  value=""
185786
186022
  >
185787
186023
  <Input
186024
+ data-testid="template_name"
185788
186025
  id="rcs_template_name_input"
185789
186026
  onChange={[Function]}
185790
186027
  size="default"
@@ -185797,6 +186034,7 @@ new message content.",
185797
186034
  >
185798
186035
  <input
185799
186036
  className="ant-input"
186037
+ data-testid="template_name"
185800
186038
  id="rcs_template_name_input"
185801
186039
  onChange={[Function]}
185802
186040
  onKeyDown={[Function]}
@@ -186580,6 +186818,7 @@ new message content.",
186580
186818
  </div>
186581
186819
  </Rcs__RcsLabel>
186582
186820
  <_class
186821
+ data-testid="template_title"
186583
186822
  id="rcs-template-title-input"
186584
186823
  labelPosition="top"
186585
186824
  maxLength={200}
@@ -186608,6 +186847,7 @@ new message content.",
186608
186847
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
186609
186848
  >
186610
186849
  <CapInput
186850
+ data-testid="template_title"
186611
186851
  id="rcs-template-title-input"
186612
186852
  maxLength={200}
186613
186853
  onChange={[Function]}
@@ -186622,6 +186862,7 @@ new message content.",
186622
186862
  value=""
186623
186863
  >
186624
186864
  <Input
186865
+ data-testid="template_title"
186625
186866
  id="rcs-template-title-input"
186626
186867
  maxLength={200}
186627
186868
  onChange={[Function]}
@@ -186641,6 +186882,7 @@ new message content.",
186641
186882
  >
186642
186883
  <input
186643
186884
  className="ant-input"
186885
+ data-testid="template_title"
186644
186886
  id="rcs-template-title-input"
186645
186887
  maxLength={200}
186646
186888
  onChange={[Function]}
@@ -186833,6 +187075,7 @@ new message content.",
186833
187075
  "minRows": 3,
186834
187076
  }
186835
187077
  }
187078
+ data-testid="rcs_text_area"
186836
187079
  errorMessage={false}
186837
187080
  id="rcs_template_message_textarea"
186838
187081
  labelPosition="top"
@@ -186861,6 +187104,7 @@ new message content.",
186861
187104
  "minRows": 3,
186862
187105
  }
186863
187106
  }
187107
+ data-testid="rcs_text_area"
186864
187108
  errorMessage={false}
186865
187109
  id="rcs_template_message_textarea"
186866
187110
  maxLength={1000}
@@ -186883,6 +187127,7 @@ new message content.",
186883
187127
  }
186884
187128
  }
186885
187129
  cols={35}
187130
+ data-testid="rcs_text_area"
186886
187131
  errorMessage={false}
186887
187132
  id="rcs_template_message_textarea"
186888
187133
  maxLength={1000}
@@ -186901,6 +187146,7 @@ new message content.",
186901
187146
  }
186902
187147
  className="TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
186903
187148
  cols={35}
187149
+ data-testid="rcs_text_area"
186904
187150
  errorMessage={false}
186905
187151
  id="rcs_template_message_textarea"
186906
187152
  maxLength={1000}
@@ -186917,6 +187163,7 @@ new message content.",
186917
187163
  <textarea
186918
187164
  className="ant-input TextArea__StyledTextArea-sc-177dfyt-2 bSaDoB"
186919
187165
  cols={35}
187166
+ data-testid="rcs_text_area"
186920
187167
  errorMessage={false}
186921
187168
  id="rcs_template_message_textarea"
186922
187169
  maxLength={1000}