@capillarytech/creatives-library 7.14.36 → 7.14.37

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capillarytech/creatives-library",
3
3
  "author": "meharaj",
4
- "version": "7.14.36",
4
+ "version": "7.14.37",
5
5
  "description": "Capillary creatives ui",
6
6
  "main": "./index.js",
7
7
  "module": "./index.es.js",
package/services/api.js CHANGED
@@ -498,12 +498,4 @@ export const getCdnTransformationConfig = () => {
498
498
  export const getS3UrlFileSizes = (data) => {
499
499
  const url = `${API_ENDPOINT}/assets/files/metadata`;
500
500
  return request(url, getAPICallObject('POST', data));
501
- }
502
-
503
- // TODO: Update this url with Aira node API
504
- export const getAiSuggestions = (data) => {
505
- const url = `https://capgpt.chinmayjain.live/chat-completion`;
506
- return request(url, getAPICallObject('POST', {...data,
507
- "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoiY2hpbm1heWphaW4wOEBnbWFpbC5jb20iLCJpYXQiOjE2ODE3OTc5NzN9.-o_9fiZqvrdx_prcW0Qicu1fKVJU2ysO5t4g9HkYb2M"
508
- }));
509
- };
501
+ }
@@ -11,11 +11,9 @@ import PropTypes from 'prop-types';
11
11
  import React from 'react';
12
12
  import _ from 'lodash';
13
13
  import { Tabs, Table, Modal} from 'antd';
14
- import { connect } from 'react-redux';
15
- import { CapSpin, CapDrawer, CapButton, CapInput, CapPopover, CapImage, CapCheckbox, CapRadio, CapSelect, CapTable, CapRow, CapColumn, CapNotification, CapUploader, CapHeading, CapIcon, CapTooltip, CapAiSuggestions} from '@capillarytech/cap-ui-library';
14
+ import { CapSpin, CapDrawer, CapButton, CapInput, CapPopover, CapImage, CapCheckbox, CapRadio, CapSelect, CapTable, CapRow, CapColumn, CapNotification, CapUploader, CapHeading, CapIcon, CapTooltip} from '@capillarytech/cap-ui-library';
16
15
  import { injectIntl, intlShape, FormattedMessage } from 'react-intl';
17
16
  import LabelHOC from '@capillarytech/cap-ui-library/assets/HOCs/ComponentWithLabelHOC';
18
- import { createStructuredSelector } from 'reselect';
19
17
  import { CAP_SPACE_12, CAP_SPACE_08, FONT_COLOR_05, FONT_COLOR_04 } from '@capillarytech/cap-ui-library/styled/variables';
20
18
  import TemplatePreview from '../TemplatePreview';
21
19
  import TagList from '../../v2Containers/TagList';
@@ -26,10 +24,9 @@ import EDMEditor from "../Edmeditor";
26
24
  import BeeEditor from '../../v2Containers/BeeEditor';
27
25
  import CustomPopOver from '../CustomPopOver';
28
26
  import messages from './messages';
29
- import { selectCurrentOrgDetails } from "../../v2Containers/Cap/selectors";
30
27
  import './_formBuilder.scss';
31
28
  import {updateCharCount, checkUnicode} from "../../utils/smsCharCountV2";
32
- import { SMS, LINE, ENABLE_AI_SUGGESTIONS } from '../../v2Containers/CreativesContainer/constants';
29
+ import { SMS, LINE } from '../../v2Containers/CreativesContainer/constants';
33
30
  import { validateIfTagClosed } from '../../utils/tagValidations';
34
31
  import globalMessages from '../../v2Containers/Cap/messages';
35
32
  import { convert } from 'html-to-text';
@@ -2281,12 +2278,6 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
2281
2278
  const messageContent = isVersionEnable ? formData[`${currentTab - 1}`][val.id] : formData[val.id];
2282
2279
  const { MISSING_TAG_ERROR, UNSUPPORTED_TAG_ERROR, TAG_BRACKET_COUNT_MISMATCH_ERROR } = errorMessageForTags;
2283
2280
  const { formatMessage } = this.props.intl;
2284
-
2285
- const { accessibleFeatures = [] } = this.props.currentOrgDetails || {};
2286
- const hasAiSuggestionsEnabled = accessibleFeatures.includes(
2287
- ENABLE_AI_SUGGESTIONS
2288
- );
2289
-
2290
2281
  let errorMessageText = false;
2291
2282
  switch (errorType) {
2292
2283
  case MISSING_TAG_ERROR:
@@ -2322,16 +2313,6 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
2322
2313
  disabled={val.disabled}
2323
2314
  cols={cols}
2324
2315
  />
2325
- {this.props.schema.channel === "SMS" && this.props.fetchAiSuggestions && hasAiSuggestionsEnabled && (
2326
- <CapAiSuggestions
2327
- style={{ bottom: "1rem" }}
2328
- text={messageContent || ""}
2329
- setText={(x) => {
2330
- this.updateFormData(x, val);
2331
- }}
2332
- getCompletions={this.props.fetchAiSuggestions}
2333
- />
2334
- )}
2335
2316
  </CapColumn>
2336
2317
  );
2337
2318
  }
@@ -3636,12 +3617,7 @@ FormBuilder.propTypes = {
3636
3617
  setDrawerVisibility: PropTypes.bool,
3637
3618
  capDrawerContent: PropTypes.array,
3638
3619
  isFullMode: PropTypes.bool,
3639
- fetchAiSuggestions: PropTypes.func,
3640
- currentOrgDetails: PropTypes.object,
3641
- };
3642
3620
 
3643
- const mapStateToProps = createStructuredSelector({
3644
- currentOrgDetails: selectCurrentOrgDetails(),
3645
- });
3621
+ };
3646
3622
 
3647
- export default connect(mapStateToProps)(injectIntl(FormBuilder));
3623
+ export default injectIntl(FormBuilder);
@@ -23,5 +23,3 @@ export const SHOW_CONTANER_LOADER = "app/CreativesContainer/SHOW_CONTANER_LOADER
23
23
  export const HIDE_CONTAINER_LOADER = "app/CreativesContainer/HIDE_CONTAINER_LOADER";
24
24
 
25
25
  export const WHATSAPP_HELP_DOC_LINK = "https://docs.capillarytech.com/docs/create-whatsapp-template";
26
-
27
- export const ENABLE_AI_SUGGESTIONS = "ENABLE_AI_SUGGESTIONS";
@@ -5,9 +5,7 @@ exports[`Test SlideBoxContent container campaign message, add creative click rcs
5
5
  className="add-creatives-section creatives-library-mode "
6
6
  >
7
7
  <CapSlideBox
8
- closeIconPosition="right"
9
8
  closeIconSize="m"
10
- closeIconType="close"
11
9
  content={
12
10
  <SlideBoxContent
13
11
  currentChannel="RCS"
@@ -78,9 +76,7 @@ exports[`Test SlideBoxContent container campaign message, add creative click wha
78
76
  className="add-creatives-section creatives-library-mode "
79
77
  >
80
78
  <CapSlideBox
81
- closeIconPosition="right"
82
79
  closeIconSize="m"
83
- closeIconType="close"
84
80
  content={
85
81
  <SlideBoxContent
86
82
  currentChannel="WHATSAPP"
@@ -151,9 +147,7 @@ exports[`Test SlideBoxContent container campaign message, whatsapp edit all data
151
147
  className="add-creatives-section creatives-library-mode "
152
148
  >
153
149
  <CapSlideBox
154
- closeIconPosition="right"
155
150
  closeIconSize="m"
156
- closeIconType="close"
157
151
  content={
158
152
  <SlideBoxContent
159
153
  currentChannel="WHATSAPP"
@@ -226,9 +220,7 @@ exports[`Test SlideBoxContent container campaign message, whatsapp edit min data
226
220
  className="add-creatives-section creatives-library-mode "
227
221
  >
228
222
  <CapSlideBox
229
- closeIconPosition="right"
230
223
  closeIconSize="m"
231
- closeIconType="close"
232
224
  content={
233
225
  <SlideBoxContent
234
226
  currentChannel="WHATSAPP"
@@ -2806,7 +2806,6 @@ new message content.",
2806
2806
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
2807
2807
  >
2808
2808
  <CapSelect
2809
- getMenuOptionsProps={[Function]}
2810
2809
  onChange={[Function]}
2811
2810
  options={
2812
2811
  Array [
@@ -6331,7 +6330,6 @@ new message content.",
6331
6330
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
6332
6331
  >
6333
6332
  <CapSelect
6334
- getMenuOptionsProps={[Function]}
6335
6333
  onChange={[Function]}
6336
6334
  options={
6337
6335
  Array [
@@ -9840,7 +9838,6 @@ new message content.",
9840
9838
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
9841
9839
  >
9842
9840
  <CapSelect
9843
- getMenuOptionsProps={[Function]}
9844
9841
  onChange={[Function]}
9845
9842
  options={
9846
9843
  Array [
@@ -10104,9 +10104,7 @@ new message content.",
10104
10104
  </Rcs__RcsFooter>
10105
10105
  <CapSlideBox
10106
10106
  className="rcs-fallback-preview"
10107
- closeIconPosition="right"
10108
10107
  closeIconSize="m"
10109
- closeIconType="close"
10110
10108
  content={
10111
10109
  <React.Fragment>
10112
10110
  <InjectIntl(TemplatePreview)
@@ -10152,7 +10150,7 @@ new message content.",
10152
10150
  className="cap-slide-box-v2-container size-r right"
10153
10151
  >
10154
10152
  <div
10155
- className="slidebox-header-icon-right"
10153
+ className="slidebox-header"
10156
10154
  >
10157
10155
  <CapHeading
10158
10156
  type="h1"
@@ -22891,9 +22889,7 @@ new message content.",
22891
22889
  </Rcs__RcsFooter>
22892
22890
  <CapSlideBox
22893
22891
  className="rcs-fallback-preview"
22894
- closeIconPosition="right"
22895
22892
  closeIconSize="m"
22896
- closeIconType="close"
22897
22893
  content={
22898
22894
  <React.Fragment>
22899
22895
  <InjectIntl(TemplatePreview)
@@ -22939,7 +22935,7 @@ new message content.",
22939
22935
  className="cap-slide-box-v2-container size-r right"
22940
22936
  >
22941
22937
  <div
22942
- className="slidebox-header-icon-right"
22938
+ className="slidebox-header"
22943
22939
  >
22944
22940
  <CapHeading
22945
22941
  type="h1"
@@ -128021,9 +128017,7 @@ new message content.",
128021
128017
  key="container"
128022
128018
  >
128023
128019
  <CapSlideBox
128024
- closeIconPosition="right"
128025
128020
  closeIconSize="m"
128026
- closeIconType="close"
128027
128021
  content={
128028
128022
  <Connect(UserIsAuthenticated(Connect(InjectIntl(Templates))))
128029
128023
  handlePeviewTemplate={[Function]}
@@ -128068,7 +128062,7 @@ new message content.",
128068
128062
  className="cap-slide-box-v2-container size-xl right"
128069
128063
  >
128070
128064
  <div
128071
- className="slidebox-header-icon-right"
128065
+ className="slidebox-header"
128072
128066
  >
128073
128067
  <CapHeading
128074
128068
  type="h1"
@@ -25,12 +25,3 @@ export function defaultAction() {
25
25
  type: types.DEFAULT_ACTION,
26
26
  };
27
27
  }
28
-
29
- export function getAiSuggestions(prompt, successCallback, failureCallback) {
30
- return {
31
- type: types.GET_AI_SUGGESTIONS,
32
- prompt,
33
- successCallback,
34
- failureCallback,
35
- };
36
- }
@@ -14,5 +14,3 @@ export const CREATE_TEMPLATE_FAILURE = 'app/v2Containers/Sms/Create/CREATE_TEMPL
14
14
  export const CLEAR_CREATE_RESPONSE_REQUEST = 'app/v2Containers/Sms/Create/CLEAR_CREATE_RESPONSE_REQUEST';
15
15
  export const CLEAR_CREATE_RESPONSE_SUCCESS = 'app/v2Containers/Sms/Create/CLEAR_CREATE_RESPONSE_SUCCESS';
16
16
  export const CLEAR_CREATE_RESPONSE_FAILURE = 'app/v2Containers/Sms/Create/CLEAR_CREATE_RESPONSE_FAILURE';
17
-
18
- export const GET_AI_SUGGESTIONS = 'app/v2Containers/Sms/Create/GET_AI_SUGGESTIONS';
@@ -900,17 +900,6 @@ export class Create extends React.Component { // eslint-disable-line react/prefe
900
900
  stopValidation = () => {
901
901
  this.setState({startValidation: false});
902
902
  }
903
-
904
- getAiSuggestions = (prompt) => {
905
- return new Promise((resolve, reject) => {
906
- this.props.actions.getAiSuggestions(prompt, (result) => {
907
- resolve(result);
908
- }, (error) => {
909
- reject(error);
910
- })
911
- })
912
- }
913
-
914
903
  saveFormData() {
915
904
  //Logic to save in db etc
916
905
  const formData = _.cloneDeep(this.state.formData);
@@ -1000,7 +989,6 @@ export class Create extends React.Component { // eslint-disable-line react/prefe
1000
989
  selectedOfferDetails={this.props.selectedOfferDetails}
1001
990
  onTestContentClicked={this.props.onTestContentClicked}
1002
991
  onPreviewContentClicked={this.props.onPreviewContentClicked}
1003
- fetchAiSuggestions={this.getAiSuggestions}
1004
992
  />
1005
993
  </CapColumn>
1006
994
  </CapRow>
@@ -29,23 +29,7 @@ function* watchCreateTemplate() {
29
29
  yield cancel(watcher);
30
30
  }
31
31
 
32
- export function* getAiSuggestions({ prompt, successCallback, failureCallback }) {
33
- try {
34
- const result = yield call(Api.getAiSuggestions, {prompt});
35
- yield successCallback(result);
36
- } catch (error) {
37
- yield failureCallback(error);
38
- }
39
- }
40
-
41
- export function* watchAiSuggestions() {
42
- const watcher = yield takeLatest(
43
- types.GET_AI_SUGGESTIONS,
44
- getAiSuggestions
45
- );
46
- yield take(LOCATION_CHANGE);
47
- yield cancel(watcher);
48
- }
49
-
50
32
  // All sagas to be loaded
51
- export default [watchCreateTemplate, watchAiSuggestions];
33
+ export default [
34
+ watchCreateTemplate,
35
+ ];
@@ -219,9 +219,7 @@ exports[`Test Templates container Should render temlates when whatsapp templates
219
219
  <CapRow />
220
220
  <CapRow>
221
221
  <CapSlideBox
222
- closeIconPosition="right"
223
222
  closeIconSize="m"
224
- closeIconType="close"
225
223
  content={
226
224
  <CardGrid
227
225
  className=""
@@ -513,9 +511,7 @@ exports[`Test Templates container Should render temlates when whatsapp templates
513
511
  <CapRow />
514
512
  <CapRow>
515
513
  <CapSlideBox
516
- closeIconPosition="right"
517
514
  closeIconSize="m"
518
- closeIconType="close"
519
515
  content={
520
516
  <CardGrid
521
517
  className=""
@@ -982,9 +978,7 @@ Click {{3}} to unsubscribe",
982
978
  <CapRow />
983
979
  <CapRow>
984
980
  <CapSlideBox
985
- closeIconPosition="right"
986
981
  closeIconSize="m"
987
- closeIconType="close"
988
982
  content={
989
983
  <CardGrid
990
984
  className=""
@@ -1419,9 +1413,7 @@ Click {{3}} to unsubscribe",
1419
1413
  <CapRow />
1420
1414
  <CapRow>
1421
1415
  <CapSlideBox
1422
- closeIconPosition="right"
1423
1416
  closeIconSize="m"
1424
- closeIconType="close"
1425
1417
  content={
1426
1418
  <CardGrid
1427
1419
  className=""
@@ -1856,9 +1848,7 @@ Click {{3}} to unsubscribe",
1856
1848
  <CapRow />
1857
1849
  <CapRow>
1858
1850
  <CapSlideBox
1859
- closeIconPosition="right"
1860
1851
  closeIconSize="m"
1861
- closeIconType="close"
1862
1852
  content={
1863
1853
  <CardGrid
1864
1854
  className=""
@@ -2120,9 +2110,7 @@ exports[`Test Templates container Test removing all whatsapp filterss 1`] = `
2120
2110
  <CapRow />
2121
2111
  <CapRow>
2122
2112
  <CapSlideBox
2123
- closeIconPosition="right"
2124
2113
  closeIconSize="m"
2125
- closeIconType="close"
2126
2114
  content={
2127
2115
  <CardGrid
2128
2116
  className=""
@@ -2358,9 +2346,7 @@ exports[`Test Templates container Test removing all whatsapp filterss 2`] = `
2358
2346
  <CapRow />
2359
2347
  <CapRow>
2360
2348
  <CapSlideBox
2361
- closeIconPosition="right"
2362
2349
  closeIconSize="m"
2363
- closeIconType="close"
2364
2350
  content={
2365
2351
  <CardGrid
2366
2352
  className=""
@@ -2596,9 +2582,7 @@ exports[`Test Templates container Test removing single filter 1`] = `
2596
2582
  <CapRow />
2597
2583
  <CapRow>
2598
2584
  <CapSlideBox
2599
- closeIconPosition="right"
2600
2585
  closeIconSize="m"
2601
- closeIconType="close"
2602
2586
  content={
2603
2587
  <CardGrid
2604
2588
  className=""
@@ -3959,7 +3959,6 @@ new message content.",
3959
3959
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
3960
3960
  >
3961
3961
  <CapSelect
3962
- getMenuOptionsProps={[Function]}
3963
3962
  id="select-whatsapp-category"
3964
3963
  onChange={[Function]}
3965
3964
  options={
@@ -5062,7 +5061,6 @@ new message content.",
5062
5061
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
5063
5062
  >
5064
5063
  <CapSelect
5065
- getMenuOptionsProps={[Function]}
5066
5064
  id="select-whatsapp-language"
5067
5065
  onChange={[Function]}
5068
5066
  options={
@@ -17650,7 +17648,6 @@ new message content.",
17650
17648
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
17651
17649
  >
17652
17650
  <CapSelect
17653
- getMenuOptionsProps={[Function]}
17654
17651
  id="select-whatsapp-category"
17655
17652
  onChange={[Function]}
17656
17653
  options={
@@ -18753,7 +18750,6 @@ new message content.",
18753
18750
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
18754
18751
  >
18755
18752
  <CapSelect
18756
- getMenuOptionsProps={[Function]}
18757
18753
  id="select-whatsapp-language"
18758
18754
  onChange={[Function]}
18759
18755
  options={
@@ -31738,7 +31734,6 @@ new message content.",
31738
31734
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
31739
31735
  >
31740
31736
  <CapSelect
31741
- getMenuOptionsProps={[Function]}
31742
31737
  id="select-whatsapp-category"
31743
31738
  onChange={[Function]}
31744
31739
  options={
@@ -32841,7 +32836,6 @@ new message content.",
32841
32836
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
32842
32837
  >
32843
32838
  <CapSelect
32844
- getMenuOptionsProps={[Function]}
32845
32839
  id="select-whatsapp-language"
32846
32840
  onChange={[Function]}
32847
32841
  options={
@@ -45018,7 +45012,6 @@ new message content.",
45018
45012
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
45019
45013
  >
45020
45014
  <CapSelect
45021
- getMenuOptionsProps={[Function]}
45022
45015
  id="select-whatsapp-category"
45023
45016
  onChange={[Function]}
45024
45017
  options={
@@ -46121,7 +46114,6 @@ new message content.",
46121
46114
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
46122
46115
  >
46123
46116
  <CapSelect
46124
- getMenuOptionsProps={[Function]}
46125
46117
  id="select-whatsapp-language"
46126
46118
  onChange={[Function]}
46127
46119
  options={
@@ -58944,7 +58936,6 @@ new message content.",
58944
58936
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
58945
58937
  >
58946
58938
  <CapSelect
58947
- getMenuOptionsProps={[Function]}
58948
58939
  id="select-whatsapp-category"
58949
58940
  onChange={[Function]}
58950
58941
  options={
@@ -59975,7 +59966,6 @@ new message content.",
59975
59966
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
59976
59967
  >
59977
59968
  <CapSelect
59978
- getMenuOptionsProps={[Function]}
59979
59969
  id="select-whatsapp-language"
59980
59970
  onChange={[Function]}
59981
59971
  options={
@@ -73172,7 +73162,6 @@ new message content.",
73172
73162
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
73173
73163
  >
73174
73164
  <CapSelect
73175
- getMenuOptionsProps={[Function]}
73176
73165
  id="select-whatsapp-category"
73177
73166
  onChange={[Function]}
73178
73167
  options={
@@ -74203,7 +74192,6 @@ new message content.",
74203
74192
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
74204
74193
  >
74205
74194
  <CapSelect
74206
- getMenuOptionsProps={[Function]}
74207
74195
  id="select-whatsapp-language"
74208
74196
  onChange={[Function]}
74209
74197
  options={
@@ -88125,7 +88113,6 @@ new message content.",
88125
88113
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
88126
88114
  >
88127
88115
  <CapSelect
88128
- getMenuOptionsProps={[Function]}
88129
88116
  id="select-whatsapp-category"
88130
88117
  onChange={[Function]}
88131
88118
  options={
@@ -89156,7 +89143,6 @@ new message content.",
89156
89143
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
89157
89144
  >
89158
89145
  <CapSelect
89159
- getMenuOptionsProps={[Function]}
89160
89146
  id="select-whatsapp-language"
89161
89147
  onChange={[Function]}
89162
89148
  options={
@@ -103430,7 +103416,6 @@ new message content.",
103430
103416
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
103431
103417
  >
103432
103418
  <CapSelect
103433
- getMenuOptionsProps={[Function]}
103434
103419
  id="select-whatsapp-category"
103435
103420
  onChange={[Function]}
103436
103421
  options={
@@ -104461,7 +104446,6 @@ new message content.",
104461
104446
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
104462
104447
  >
104463
104448
  <CapSelect
104464
- getMenuOptionsProps={[Function]}
104465
104449
  id="select-whatsapp-language"
104466
104450
  onChange={[Function]}
104467
104451
  options={
@@ -188600,7 +188584,6 @@ new message content.",
188600
188584
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
188601
188585
  >
188602
188586
  <CapSelect
188603
- getMenuOptionsProps={[Function]}
188604
188587
  id="select-whatsapp-category"
188605
188588
  onChange={[Function]}
188606
188589
  options={
@@ -189703,7 +189686,6 @@ new message content.",
189703
189686
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
189704
189687
  >
189705
189688
  <CapSelect
189706
- getMenuOptionsProps={[Function]}
189707
189689
  id="select-whatsapp-language"
189708
189690
  onChange={[Function]}
189709
189691
  options={
@@ -203278,7 +203260,6 @@ new message content.",
203278
203260
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
203279
203261
  >
203280
203262
  <CapSelect
203281
- getMenuOptionsProps={[Function]}
203282
203263
  id="select-whatsapp-category"
203283
203264
  onChange={[Function]}
203284
203265
  options={
@@ -204309,7 +204290,6 @@ new message content.",
204309
204290
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
204310
204291
  >
204311
204292
  <CapSelect
204312
- getMenuOptionsProps={[Function]}
204313
204293
  id="select-whatsapp-language"
204314
204294
  onChange={[Function]}
204315
204295
  options={
@@ -216891,7 +216871,6 @@ new message content.",
216891
216871
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
216892
216872
  >
216893
216873
  <CapSelect
216894
- getMenuOptionsProps={[Function]}
216895
216874
  id="select-whatsapp-category"
216896
216875
  onChange={[Function]}
216897
216876
  options={
@@ -217994,7 +217973,6 @@ new message content.",
217994
217973
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
217995
217974
  >
217996
217975
  <CapSelect
217997
- getMenuOptionsProps={[Function]}
217998
217976
  id="select-whatsapp-language"
217999
217977
  onChange={[Function]}
218000
217978
  options={
@@ -230568,7 +230546,6 @@ new message content.",
230568
230546
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
230569
230547
  >
230570
230548
  <CapSelect
230571
- getMenuOptionsProps={[Function]}
230572
230549
  id="select-whatsapp-category"
230573
230550
  onChange={[Function]}
230574
230551
  options={
@@ -231671,7 +231648,6 @@ new message content.",
231671
231648
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
231672
231649
  >
231673
231650
  <CapSelect
231674
- getMenuOptionsProps={[Function]}
231675
231651
  id="select-whatsapp-language"
231676
231652
  onChange={[Function]}
231677
231653
  options={
@@ -244626,7 +244602,6 @@ new message content.",
244626
244602
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
244627
244603
  >
244628
244604
  <CapSelect
244629
- getMenuOptionsProps={[Function]}
244630
244605
  id="select-whatsapp-category"
244631
244606
  onChange={[Function]}
244632
244607
  options={
@@ -245729,7 +245704,6 @@ new message content.",
245729
245704
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
245730
245705
  >
245731
245706
  <CapSelect
245732
- getMenuOptionsProps={[Function]}
245733
245707
  id="select-whatsapp-language"
245734
245708
  onChange={[Function]}
245735
245709
  options={
@@ -259097,7 +259071,6 @@ new message content.",
259097
259071
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
259098
259072
  >
259099
259073
  <CapSelect
259100
- getMenuOptionsProps={[Function]}
259101
259074
  id="select-whatsapp-category"
259102
259075
  onChange={[Function]}
259103
259076
  options={
@@ -260200,7 +260173,6 @@ new message content.",
260200
260173
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
260201
260174
  >
260202
260175
  <CapSelect
260203
- getMenuOptionsProps={[Function]}
260204
260176
  id="select-whatsapp-language"
260205
260177
  onChange={[Function]}
260206
260178
  options={
@@ -273959,7 +273931,6 @@ new message content.",
273959
273931
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
273960
273932
  >
273961
273933
  <CapSelect
273962
- getMenuOptionsProps={[Function]}
273963
273934
  id="select-whatsapp-category"
273964
273935
  onChange={[Function]}
273965
273936
  options={
@@ -275062,7 +275033,6 @@ new message content.",
275062
275033
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
275063
275034
  >
275064
275035
  <CapSelect
275065
- getMenuOptionsProps={[Function]}
275066
275036
  id="select-whatsapp-language"
275067
275037
  onChange={[Function]}
275068
275038
  options={
@@ -289222,7 +289192,6 @@ new message content.",
289222
289192
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
289223
289193
  >
289224
289194
  <CapSelect
289225
- getMenuOptionsProps={[Function]}
289226
289195
  id="select-whatsapp-category"
289227
289196
  onChange={[Function]}
289228
289197
  options={
@@ -290325,7 +290294,6 @@ new message content.",
290325
290294
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
290326
290295
  >
290327
290296
  <CapSelect
290328
- getMenuOptionsProps={[Function]}
290329
290297
  id="select-whatsapp-language"
290330
290298
  onChange={[Function]}
290331
290299
  options={
@@ -304886,7 +304854,6 @@ new message content.",
304886
304854
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
304887
304855
  >
304888
304856
  <CapSelect
304889
- getMenuOptionsProps={[Function]}
304890
304857
  id="select-whatsapp-category"
304891
304858
  onChange={[Function]}
304892
304859
  options={
@@ -305989,7 +305956,6 @@ new message content.",
305989
305956
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
305990
305957
  >
305991
305958
  <CapSelect
305992
- getMenuOptionsProps={[Function]}
305993
305959
  id="select-whatsapp-language"
305994
305960
  onChange={[Function]}
305995
305961
  options={
@@ -320951,7 +320917,6 @@ new message content.",
320951
320917
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
320952
320918
  >
320953
320919
  <CapSelect
320954
- getMenuOptionsProps={[Function]}
320955
320920
  id="select-whatsapp-category"
320956
320921
  onChange={[Function]}
320957
320922
  options={
@@ -322054,7 +322019,6 @@ new message content.",
322054
322019
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
322055
322020
  >
322056
322021
  <CapSelect
322057
- getMenuOptionsProps={[Function]}
322058
322022
  id="select-whatsapp-language"
322059
322023
  onChange={[Function]}
322060
322024
  options={
@@ -337407,7 +337371,6 @@ new message content.",
337407
337371
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
337408
337372
  >
337409
337373
  <CapSelect
337410
- getMenuOptionsProps={[Function]}
337411
337374
  id="select-whatsapp-category"
337412
337375
  onChange={[Function]}
337413
337376
  options={
@@ -338510,7 +338473,6 @@ new message content.",
338510
338473
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
338511
338474
  >
338512
338475
  <CapSelect
338513
- getMenuOptionsProps={[Function]}
338514
338476
  id="select-whatsapp-language"
338515
338477
  onChange={[Function]}
338516
338478
  options={
@@ -351096,7 +351058,6 @@ new message content.",
351096
351058
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
351097
351059
  >
351098
351060
  <CapSelect
351099
- getMenuOptionsProps={[Function]}
351100
351061
  id="select-whatsapp-category"
351101
351062
  onChange={[Function]}
351102
351063
  options={
@@ -352199,7 +352160,6 @@ new message content.",
352199
352160
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
352200
352161
  >
352201
352162
  <CapSelect
352202
- getMenuOptionsProps={[Function]}
352203
352163
  id="select-whatsapp-language"
352204
352164
  onChange={[Function]}
352205
352165
  options={
@@ -365181,7 +365141,6 @@ new message content.",
365181
365141
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
365182
365142
  >
365183
365143
  <CapSelect
365184
- getMenuOptionsProps={[Function]}
365185
365144
  id="select-whatsapp-category"
365186
365145
  onChange={[Function]}
365187
365146
  options={
@@ -366284,7 +366243,6 @@ new message content.",
366284
366243
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
366285
366244
  >
366286
366245
  <CapSelect
366287
- getMenuOptionsProps={[Function]}
366288
366246
  id="select-whatsapp-language"
366289
366247
  onChange={[Function]}
366290
366248
  options={
@@ -379687,7 +379645,6 @@ new message content.",
379687
379645
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
379688
379646
  >
379689
379647
  <CapSelect
379690
- getMenuOptionsProps={[Function]}
379691
379648
  id="select-whatsapp-category"
379692
379649
  onChange={[Function]}
379693
379650
  options={
@@ -380790,7 +380747,6 @@ new message content.",
380790
380747
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
380791
380748
  >
380792
380749
  <CapSelect
380793
- getMenuOptionsProps={[Function]}
380794
380750
  id="select-whatsapp-language"
380795
380751
  onChange={[Function]}
380796
380752
  options={
@@ -394136,7 +394092,6 @@ new message content.",
394136
394092
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
394137
394093
  >
394138
394094
  <CapSelect
394139
- getMenuOptionsProps={[Function]}
394140
394095
  id="select-whatsapp-category"
394141
394096
  onChange={[Function]}
394142
394097
  options={
@@ -395239,7 +395194,6 @@ new message content.",
395239
395194
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
395240
395195
  >
395241
395196
  <CapSelect
395242
- getMenuOptionsProps={[Function]}
395243
395197
  id="select-whatsapp-language"
395244
395198
  onChange={[Function]}
395245
395199
  options={
@@ -409996,7 +409950,6 @@ new message content.",
409996
409950
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
409997
409951
  >
409998
409952
  <CapSelect
409999
- getMenuOptionsProps={[Function]}
410000
409953
  id="select-whatsapp-category"
410001
409954
  onChange={[Function]}
410002
409955
  options={
@@ -411057,7 +411010,6 @@ new message content.",
411057
411010
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
411058
411011
  >
411059
411012
  <CapSelect
411060
- getMenuOptionsProps={[Function]}
411061
411013
  id="select-whatsapp-language"
411062
411014
  onChange={[Function]}
411063
411015
  options={
@@ -429060,7 +429012,6 @@ undefined",
429060
429012
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
429061
429013
  >
429062
429014
  <CapSelect
429063
- getMenuOptionsProps={[Function]}
429064
429015
  id="select-whatsapp-category"
429065
429016
  onChange={[Function]}
429066
429017
  options={
@@ -430121,7 +430072,6 @@ undefined",
430121
430072
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
430122
430073
  >
430123
430074
  <CapSelect
430124
- getMenuOptionsProps={[Function]}
430125
430075
  id="select-whatsapp-language"
430126
430076
  onChange={[Function]}
430127
430077
  options={
@@ -449211,7 +449161,6 @@ undefined",
449211
449161
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
449212
449162
  >
449213
449163
  <CapSelect
449214
- getMenuOptionsProps={[Function]}
449215
449164
  id="select-whatsapp-category"
449216
449165
  onChange={[Function]}
449217
449166
  options={
@@ -450272,7 +450221,6 @@ undefined",
450272
450221
  className="ComponentWithLabelHOC__ComponentWithLabelWrapper-sc-1qk6bpg-1 evSAae"
450273
450222
  >
450274
450223
  <CapSelect
450275
- getMenuOptionsProps={[Function]}
450276
450224
  id="select-whatsapp-language"
450277
450225
  onChange={[Function]}
450278
450226
  options={