@mxenabled/connect-widget 2.15.5 → 2.16.1

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/dist/index.es.js CHANGED
@@ -5099,23 +5099,39 @@ function baseFindIndex$2(array, predicate, fromIndex, fromRight) {
5099
5099
  }
5100
5100
  var _baseFindIndex = baseFindIndex$2;
5101
5101
 
5102
- var reWhitespace = /\s/;
5103
- function trimmedEndIndex$1(string) {
5104
- var index = string.length;
5105
- while (index-- && reWhitespace.test(string.charAt(index))) {
5106
- }
5107
- return index;
5102
+ var _trimmedEndIndex;
5103
+ var hasRequired_trimmedEndIndex;
5104
+
5105
+ function require_trimmedEndIndex () {
5106
+ if (hasRequired_trimmedEndIndex) return _trimmedEndIndex;
5107
+ hasRequired_trimmedEndIndex = 1;
5108
+ var reWhitespace = /\s/;
5109
+ function trimmedEndIndex(string) {
5110
+ var index = string.length;
5111
+ while (index-- && reWhitespace.test(string.charAt(index))) {
5112
+ }
5113
+ return index;
5114
+ }
5115
+ _trimmedEndIndex = trimmedEndIndex;
5116
+ return _trimmedEndIndex;
5108
5117
  }
5109
- var _trimmedEndIndex = trimmedEndIndex$1;
5110
5118
 
5111
- var trimmedEndIndex = _trimmedEndIndex;
5112
- var reTrimStart = /^\s+/;
5113
- function baseTrim$1(string) {
5114
- return string ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, "") : string;
5119
+ var _baseTrim;
5120
+ var hasRequired_baseTrim;
5121
+
5122
+ function require_baseTrim () {
5123
+ if (hasRequired_baseTrim) return _baseTrim;
5124
+ hasRequired_baseTrim = 1;
5125
+ var trimmedEndIndex = require_trimmedEndIndex();
5126
+ var reTrimStart = /^\s+/;
5127
+ function baseTrim(string) {
5128
+ return string ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, "") : string;
5129
+ }
5130
+ _baseTrim = baseTrim;
5131
+ return _baseTrim;
5115
5132
  }
5116
- var _baseTrim = baseTrim$1;
5117
5133
 
5118
- var baseTrim = _baseTrim, isObject$7 = isObject_1, isSymbol$1 = isSymbol_1;
5134
+ var baseTrim = require_baseTrim(), isObject$7 = isObject_1, isSymbol$1 = isSymbol_1;
5119
5135
  var NAN = 0 / 0;
5120
5136
  var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
5121
5137
  var reIsBinary = /^0b[01]+$/i;
@@ -8597,7 +8613,7 @@ var hasRequiredTrim;
8597
8613
  function requireTrim () {
8598
8614
  if (hasRequiredTrim) return trim_1;
8599
8615
  hasRequiredTrim = 1;
8600
- var baseToString = _baseToString, baseTrim = _baseTrim, castSlice = require_castSlice(), charsEndIndex = require_charsEndIndex(), charsStartIndex = require_charsStartIndex(), stringToArray = require_stringToArray(), toString = toString_1;
8616
+ var baseToString = _baseToString, baseTrim = require_baseTrim(), castSlice = require_castSlice(), charsEndIndex = require_charsEndIndex(), charsStartIndex = require_charsStartIndex(), stringToArray = require_stringToArray(), toString = toString_1;
8601
8617
  function trim(string, chars, guard) {
8602
8618
  string = toString(string);
8603
8619
  if (string && (guard || chars === void 0)) {
@@ -14469,7 +14485,7 @@ const Spinner = ({ bgColor, fgColor, size = 64 }) => {
14469
14485
  const tokens = useTokens();
14470
14486
  const bg = bgColor || "transparent";
14471
14487
  const fg = fgColor || tokens.TextColor.Default;
14472
- const styles = getStyles$1L(bg, fg, size);
14488
+ const styles = getStyles$1K(bg, fg, size);
14473
14489
  const RANDOM_NUMBER = Math.random();
14474
14490
  const idCutOff = `cut-off-${RANDOM_NUMBER}`;
14475
14491
  const idSpinGradient = `spin-gradient-${RANDOM_NUMBER}`;
@@ -14516,7 +14532,7 @@ const animationModulate = dist.keyframes("modulate", {
14516
14532
  "30%": { strokeDashoffset: 160 },
14517
14533
  "100%": { strokeDashoffset: 270 }
14518
14534
  });
14519
- const getStyles$1L = (bgColor, fgColor, size) => ({
14535
+ const getStyles$1K = (bgColor, fgColor, size) => ({
14520
14536
  ring: {
14521
14537
  animation: `1.6s linear infinite ${animationRotate}`,
14522
14538
  width: size,
@@ -14574,7 +14590,7 @@ dist.keyframes("pulse", {
14574
14590
 
14575
14591
  const LoadingSpinner = ({ showText = false, size = 48 }) => {
14576
14592
  const tokens = useTokens();
14577
- const styles = getStyles$1K(tokens);
14593
+ const styles = getStyles$1J(tokens);
14578
14594
  return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { style: styles.container, children: [
14579
14595
  /* @__PURE__ */ jsxRuntimeExports.jsx(
14580
14596
  Spinner,
@@ -14587,7 +14603,7 @@ const LoadingSpinner = ({ showText = false, size = 48 }) => {
14587
14603
  showText && /* @__PURE__ */ jsxRuntimeExports.jsx("div", { style: styles.text, children: __("Loading ...") })
14588
14604
  ] });
14589
14605
  };
14590
- const getStyles$1K = (tokens) => {
14606
+ const getStyles$1J = (tokens) => {
14591
14607
  return {
14592
14608
  container: {
14593
14609
  backgroundColor: tokens.BackgroundColor.Container,
@@ -54656,7 +54672,7 @@ const AuthenticationMethods = {
54656
54672
 
54657
54673
  const GenericError = ({ loadError, onAnalyticPageview, subtitle, title }) => {
54658
54674
  const tokens = useTokens();
54659
- const styles = getStyles$1J(tokens);
54675
+ const styles = getStyles$1I(tokens);
54660
54676
  useEffect(() => {
54661
54677
  if (!isRunningE2ETests())
54662
54678
  onAnalyticPageview(
@@ -54682,7 +54698,7 @@ const GenericError = ({ loadError, onAnalyticPageview, subtitle, title }) => {
54682
54698
  subtitle && /* @__PURE__ */ jsxRuntimeExports.jsx(D, { component: "h2", truncate: false, variant: "Paragraph", children: subtitle })
54683
54699
  ] });
54684
54700
  };
54685
- function getStyles$1J(tokens) {
54701
+ function getStyles$1I(tokens) {
54686
54702
  return {
54687
54703
  container: {
54688
54704
  backgroundColor: tokens.BackgroundColor.Container,
@@ -60850,10 +60866,10 @@ const fadeOut = (el, direction = "up", duration = 500) => {
60850
60866
  };
60851
60867
 
60852
60868
  const SlideDown = ({ delay = 0, duration = 300, children }) => {
60853
- const styles = getStyles$1I(delay, duration);
60869
+ const styles = getStyles$1H(delay, duration);
60854
60870
  return /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: styles, children });
60855
60871
  };
60856
- const getStyles$1I = (delay, duration) => {
60872
+ const getStyles$1H = (delay, duration) => {
60857
60873
  const slideAnimation = dist.keyframes({
60858
60874
  from: {
60859
60875
  opacity: 0,
@@ -60940,14 +60956,14 @@ const propTypes$2 = {
60940
60956
  const ConnectInstitutionHeader = (props) => {
60941
60957
  const colorScheme = useSelector(selectColorScheme);
60942
60958
  useTokens();
60943
- const styles = getStyles$1H();
60959
+ const styles = getStyles$1G();
60944
60960
  return /* @__PURE__ */ jsxRuntimeExports.jsx("div", { "data-test": "disclosure-svg-header", style: styles.container, children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { style: styles.backdropImage, children: [
60945
60961
  colorScheme === COLOR_SCHEME.LIGHT ? /* @__PURE__ */ jsxRuntimeExports.jsx(SvgHeaderBackdropLight, {}) : /* @__PURE__ */ jsxRuntimeExports.jsx(SvgHeaderBackdropDark, {}),
60946
60962
  /* @__PURE__ */ jsxRuntimeExports.jsx("div", { style: styles.device, children: /* @__PURE__ */ jsxRuntimeExports.jsx(SvgHeaderDevice, {}) }),
60947
60963
  /* @__PURE__ */ jsxRuntimeExports.jsx("div", { style: styles.institutionLogo, children: props.institutionGuid ? /* @__PURE__ */ jsxRuntimeExports.jsx(InstitutionLogo, { alt: "", institutionGuid: props.institutionGuid, size: 64 }) : /* @__PURE__ */ jsxRuntimeExports.jsx(SvgHeaderDefaultInstitution, {}) })
60948
60964
  ] }) });
60949
60965
  };
60950
- function getStyles$1H() {
60966
+ function getStyles$1G() {
60951
60967
  const maxHeight = "64px";
60952
60968
  const maxWidth = "240px";
60953
60969
  return {
@@ -60994,7 +61010,7 @@ const GoBackButton = forwardRef((props, ref) => {
60994
61010
  const defaultRef = useRef(null);
60995
61011
  const { handleGoBack } = props;
60996
61012
  const tokens = useTokens();
60997
- const styles = getStyles$1G(tokens);
61013
+ const styles = getStyles$1F(tokens);
60998
61014
  return /* @__PURE__ */ jsxRuntimeExports.jsx(
60999
61015
  IconButton$1,
61000
61016
  {
@@ -61014,7 +61030,7 @@ const GoBackButton = forwardRef((props, ref) => {
61014
61030
  }
61015
61031
  );
61016
61032
  });
61017
- const getStyles$1G = (tokens) => ({
61033
+ const getStyles$1F = (tokens) => ({
61018
61034
  height: "44px",
61019
61035
  margin: `0px ${tokens.Spacing.XSmall}px ${tokens.Spacing.XSmall}px -${tokens.Spacing.Medium}px`,
61020
61036
  padding: `0px 8px`,
@@ -61027,7 +61043,7 @@ GoBackButton.displayName = "GoBackButton";
61027
61043
 
61028
61044
  const LeavingNoticeFlat = ({ onContinue, onCancel, portalTo = "connect-wrapper" }) => {
61029
61045
  const tokens = useTokens();
61030
- const styles = getStyles$1F(tokens);
61046
+ const styles = getStyles$1E(tokens);
61031
61047
  const getNextDelay = getDelay();
61032
61048
  return createPortal(
61033
61049
  /* @__PURE__ */ jsxRuntimeExports.jsx("div", { role: "alert", style: styles.container, children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { style: styles.content, children: [
@@ -61089,7 +61105,7 @@ const LeavingNoticeFlat = ({ onContinue, onCancel, portalTo = "connect-wrapper"
61089
61105
  document.getElementById(portalTo)
61090
61106
  );
61091
61107
  };
61092
- const getStyles$1F = (tokens) => {
61108
+ const getStyles$1E = (tokens) => {
61093
61109
  return {
61094
61110
  container: {
61095
61111
  top: 0,
@@ -61153,7 +61169,6 @@ const urlWithHttps = (url) => {
61153
61169
  return `https://${url}`;
61154
61170
  }
61155
61171
  };
61156
- const isScrollableUrl = (url) => /^#/.test(url);
61157
61172
  const getEnvironment = () => {
61158
61173
  if (/\bsand\b/.test(window.location.host) || /\blocalhost\b/.test(window.location.host))
61159
61174
  return Environments.SANDBOX;
@@ -61168,1847 +61183,30 @@ const Environments = Object.freeze({
61168
61183
  PRODUCTION: "production"
61169
61184
  });
61170
61185
 
61171
- const title = "MX Privacy Statement";
61172
- const updatedOn = "Last Updated: April 3, 2024";
61173
- const body = [
61174
- {
61175
- tag: "p",
61176
- style: "paragraph",
61177
- text: [
61178
- "This Privacy Statement is provided by MX Technologies, Inc., and our controlled affiliates and subsidiaries (“MX”, “we”, “us”, and/or “our”)."
61179
- ]
61180
- },
61181
- {
61182
- tag: "p",
61183
- style: "paragraph",
61184
- text: [
61185
- "This Privacy Statement is divided into the following sections:"
61186
- ]
61187
- },
61188
- {
61189
- tag: "ol",
61190
- style: "list",
61191
- text: [
61192
- {
61193
- tag: "li",
61194
- style: "listItem",
61195
- text: [
61196
- {
61197
- tag: "a",
61198
- href: "#scope",
61199
- style: "link",
61200
- text: [
61201
- "Scope"
61202
- ]
61203
- }
61204
- ]
61205
- },
61206
- {
61207
- tag: "li",
61208
- style: "listItem",
61209
- text: [
61210
- {
61211
- tag: "a",
61212
- href: "#data-collect",
61213
- style: "link",
61214
- text: [
61215
- "Personal Data We May Collect and Its Sources"
61216
- ]
61217
- }
61218
- ]
61219
- },
61220
- {
61221
- tag: "li",
61222
- style: "listItem",
61223
- text: [
61224
- {
61225
- tag: "a",
61226
- href: "#personal-data",
61227
- style: "link",
61228
- text: [
61229
- "How We Use Your Personal Data"
61230
- ]
61231
- }
61232
- ]
61233
- },
61234
- {
61235
- tag: "li",
61236
- style: "listItem",
61237
- text: [
61238
- {
61239
- tag: "a",
61240
- href: "#disclose",
61241
- style: "link",
61242
- text: [
61243
- "How We Disclose Your Personal Data"
61244
- ]
61245
- }
61246
- ]
61247
- },
61248
- {
61249
- tag: "li",
61250
- style: "listItem",
61251
- text: [
61252
- {
61253
- tag: "a",
61254
- href: "#rights",
61255
- style: "link",
61256
- text: [
61257
- "Your Rights and Choices with Your Personal Data"
61258
- ]
61259
- }
61260
- ]
61261
- },
61262
- {
61263
- tag: "li",
61264
- style: "listItem",
61265
- text: [
61266
- {
61267
- tag: "a",
61268
- href: "#location",
61269
- style: "link",
61270
- text: [
61271
- "Location of Personal Data"
61272
- ]
61273
- }
61274
- ]
61275
- },
61276
- {
61277
- tag: "li",
61278
- style: "listItem",
61279
- text: [
61280
- {
61281
- tag: "a",
61282
- href: "#security",
61283
- style: "link",
61284
- text: [
61285
- "Security of Personal Data"
61286
- ]
61287
- }
61288
- ]
61289
- },
61290
- {
61291
- tag: "li",
61292
- style: "listItem",
61293
- text: [
61294
- {
61295
- tag: "a",
61296
- href: "#retention",
61297
- style: "link",
61298
- text: [
61299
- "Retention of Personal Data"
61300
- ]
61301
- }
61302
- ]
61303
- },
61304
- {
61305
- tag: "li",
61306
- style: "listItem",
61307
- text: [
61308
- {
61309
- tag: "a",
61310
- href: "#gdpr",
61311
- style: "link",
61312
- text: [
61313
- "European Data Protection Rights"
61314
- ]
61315
- }
61316
- ]
61317
- },
61318
- {
61319
- tag: "li",
61320
- style: "listItem",
61321
- text: [
61322
- {
61323
- tag: "a",
61324
- href: "#ccpa",
61325
- style: "link",
61326
- text: [
61327
- "California Privacy Rights"
61328
- ]
61329
- }
61330
- ]
61331
- },
61332
- {
61333
- tag: "li",
61334
- style: "listItem",
61335
- text: [
61336
- {
61337
- tag: "a",
61338
- href: "#changes",
61339
- style: "link",
61340
- text: [
61341
- "Changes to This Privacy Statement"
61342
- ]
61343
- }
61344
- ]
61345
- },
61346
- {
61347
- tag: "li",
61348
- style: "listItem",
61349
- text: [
61350
- {
61351
- tag: "a",
61352
- href: "#contact",
61353
- style: "link",
61354
- text: [
61355
- "How to Contact Us"
61356
- ]
61357
- }
61358
- ]
61359
- }
61360
- ]
61361
- },
61362
- {
61363
- tag: "p",
61364
- style: "paragraph",
61365
- text: [
61366
- {
61367
- tag: "a",
61368
- href: "https://www.mx.com/cookie-policy/",
61369
- style: "link",
61370
- text: [
61371
- "Click here"
61372
- ]
61373
- },
61374
- " to view our Cookie Policy."
61375
- ]
61376
- },
61377
- {
61378
- tag: "h2",
61379
- id: "scope",
61380
- style: "title",
61381
- text: [
61382
- "A. Scope"
61383
- ]
61384
- },
61385
- {
61386
- tag: "h3",
61387
- style: "subTitle",
61388
- text: [
61389
- "When does this Privacy Statement apply?"
61390
- ]
61391
- },
61392
- {
61393
- tag: "p",
61394
- style: "paragraph",
61395
- text: [
61396
- "This Privacy Statement applies to our collection, use, and disclosure of personal data where such activities display or reference this Privacy Statement, such as when (i) accessing or using our website(s); (ii) entering information into an online form which contains a link to this Privacy Statement; (iii) providing your personal data to an MX representative, such as when you request support or visit us at an event or tradeshow; or (iv) personal data you otherwise provide or disclose to us in a manner described in this Privacy Statement."
61397
- ]
61398
- },
61399
- {
61400
- tag: "p",
61401
- style: "paragraph",
61402
- text: [
61403
- "California consumers can find specific disclosures regarding how we collect, use, retain, disclose, and sell or share personal information In the ",
61404
- {
61405
- tag: "a",
61406
- href: "#ccpa",
61407
- style: "link",
61408
- text: [
61409
- "California Privacy Rights"
61410
- ]
61411
- },
61412
- " section of this Privacy Statement."
61413
- ]
61414
- },
61415
- {
61416
- tag: "h3",
61417
- style: "subTitle",
61418
- text: [
61419
- "When does this Privacy Statement ",
61420
- {
61421
- tag: "u",
61422
- text: [
61423
- "not"
61424
- ]
61425
- },
61426
- " apply?"
61427
- ]
61428
- },
61429
- {
61430
- tag: "p",
61431
- style: "paragraph",
61432
- text: [
61433
- "Most MX Services are intended for and provided to businesses and other organizations, and not individual consumers or end-users. In some cases, in providing those services, we process personal data of consumers or end-users at the direction of our customers. When we do, we do so as a service provider or a “data processor” to those organizations. We do not control and are not responsible for the privacy practices of our customers",
61434
- "’",
61435
- " organizations. This privacy statement does not apply to personal data we process as a service provider or data processor on behalf of our customers. If you are an end-user of one of those organizations, please review that organization",
61436
- "’",
61437
- "s privacy statement and direct any privacy inquiries to that organization."
61438
- ]
61439
- },
61440
- {
61441
- tag: "p",
61442
- style: "paragraph",
61443
- text: [
61444
- "This Privacy Statement does not apply to any job applicants. When you submit an application for a job with us, we collect, use, and otherwise process your personal data in accordance with our",
61445
- " ",
61446
- {
61447
- tag: "a",
61448
- href: "/recruitment-privacy/",
61449
- style: "link",
61450
- text: [
61451
- "Applicant Privacy Notice."
61452
- ]
61453
- }
61454
- ]
61455
- },
61456
- {
61457
- tag: "p",
61458
- style: "paragraph",
61459
- text: [
61460
- "Finally, this Privacy Statement does not apply to any activities that display or reference a different privacy statement or notice."
61461
- ]
61462
- },
61463
- {
61464
- tag: "h2",
61465
- id: "data-collect",
61466
- style: "title",
61467
- text: [
61468
- "B. Personal Data We May Collect and Its Sources"
61469
- ]
61470
- },
61471
- {
61472
- tag: "p",
61473
- style: "paragraph",
61474
- text: [
61475
- "The personal data we collect depends on how you interact with us, the sites and forms you access and use, and the",
61476
- " ",
61477
- {
61478
- tag: "a",
61479
- href: "#rights",
61480
- style: "link",
61481
- text: [
61482
- "choices"
61483
- ]
61484
- },
61485
- " you make."
61486
- ]
61487
- },
61488
- {
61489
- tag: "p",
61490
- style: "paragraph",
61491
- text: [
61492
- "We collect information about you from difference sources and in various ways when you access our sites or otherwise provide or disclose personal data to us, including information you provide directly, information collected automatically, information from third-party data sources, and data we infer or generate from other data."
61493
- ]
61494
- },
61495
- {
61496
- tag: "ol",
61497
- style: "list",
61498
- text: [
61499
- {
61500
- tag: "li",
61501
- style: "listItem",
61502
- text: [
61503
- {
61504
- tag: "p",
61505
- style: "paragraph",
61506
- text: [
61507
- {
61508
- tag: "u",
61509
- text: [
61510
- "Information you provide directly."
61511
- ]
61512
- },
61513
- " We collect personal data you provide to us. For example:"
61514
- ]
61515
- },
61516
- {
61517
- tag: "ul",
61518
- style: "list",
61519
- text: [
61520
- {
61521
- tag: "li",
61522
- style: "listItem",
61523
- text: [
61524
- {
61525
- tag: "p",
61526
- style: "paragraph",
61527
- text: [
61528
- {
61529
- tag: "b",
61530
- text: [
61531
- "Name and contact information."
61532
- ]
61533
- },
61534
- " When you request information using our chat feature or online forms, request support, sign up for or attend events, download content, or otherwise engage with us, we collect name, username or alias, and contact details such as email address, postal address, and phone number."
61535
- ]
61536
- }
61537
- ]
61538
- },
61539
- {
61540
- tag: "li",
61541
- style: "listItem",
61542
- text: [
61543
- {
61544
- tag: "p",
61545
- style: "paragraph",
61546
- text: [
61547
- {
61548
- tag: "b",
61549
- text: [
61550
- "Demographic data."
61551
- ]
61552
- },
61553
- " In some cases, such as when you register or participate in surveys, we request that you provide certain information such as your occupation, industry, education, and similar demographic details."
61554
- ]
61555
- }
61556
- ]
61557
- },
61558
- {
61559
- tag: "li",
61560
- style: "listItem",
61561
- text: [
61562
- {
61563
- tag: "p",
61564
- style: "paragraph",
61565
- text: [
61566
- {
61567
- tag: "b",
61568
- text: [
61569
- "Financial information."
61570
- ]
61571
- },
61572
- " If you make a purchase or other financial transaction for an MX related event or webinar, we collect credit card numbers, financial account information, and other payment details through a third party."
61573
- ]
61574
- }
61575
- ]
61576
- },
61577
- {
61578
- tag: "li",
61579
- style: "listItem",
61580
- text: [
61581
- {
61582
- tag: "p",
61583
- style: "paragraph",
61584
- text: [
61585
- {
61586
- tag: "b",
61587
- text: [
61588
- "Content and files."
61589
- ]
61590
- },
61591
- " Where applicable, we may collect screenshots, documents, or other files you upload to our sites or otherwise provide to us. If you send us email messages or other communications, we collect and retain those communications (or records relating to those communications, including voice or video recordings and chat transcripts). If you submit information via webform or participate in a survey, we will collect and retain information you submit to us."
61592
- ]
61593
- }
61594
- ]
61595
- },
61596
- {
61597
- tag: "li",
61598
- style: "listItem",
61599
- text: [
61600
- {
61601
- tag: "p",
61602
- style: "paragraph",
61603
- text: [
61604
- {
61605
- tag: "b",
61606
- text: [
61607
- "Account access information."
61608
- ]
61609
- },
61610
- " If you have a web-based account with us (i.e. for access to our client dashboard, etc.), we collect information such as a username or account number in combination with a password, security or access code, or other credential to allow access to your account. This data may be considered “sensitive personal data” in certain states or countries."
61611
- ]
61612
- }
61613
- ]
61614
- }
61615
- ]
61616
- }
61617
- ]
61618
- },
61619
- {
61620
- tag: "li",
61621
- style: "listItem",
61622
- text: [
61623
- {
61624
- tag: "p",
61625
- style: "paragraph",
61626
- text: [
61627
- {
61628
- tag: "u",
61629
- text: [
61630
- "Information we collect automatically."
61631
- ]
61632
- },
61633
- " When you access or use our websites, we collect some information automatically. For example:"
61634
- ]
61635
- },
61636
- {
61637
- tag: "ul",
61638
- style: "list",
61639
- text: [
61640
- {
61641
- tag: "li",
61642
- style: "listItem",
61643
- text: [
61644
- {
61645
- tag: "p",
61646
- style: "paragraph",
61647
- text: [
61648
- {
61649
- tag: "b",
61650
- text: [
61651
- "Identifiers and device information."
61652
- ]
61653
- },
61654
- " When you visit our websites, our web servers automatically log your Internet Protocol (IP) address and information about your device, including device identifiers (such as MAC address); device type; and your device",
61655
- "’",
61656
- "s operating system, browser, and other software including type, version, language, settings, and configuration. As further described in our",
61657
- " ",
61658
- {
61659
- tag: "a",
61660
- href: "https://www.mx.com/cookie-policy/",
61661
- style: "link",
61662
- text: [
61663
- "Cookie Policy"
61664
- ]
61665
- },
61666
- ", our websites store and retrieve cookie identifiers, mobile IDs, and other data."
61667
- ]
61668
- }
61669
- ]
61670
- },
61671
- {
61672
- tag: "li",
61673
- style: "listItem",
61674
- text: [
61675
- {
61676
- tag: "p",
61677
- style: "paragraph",
61678
- text: [
61679
- {
61680
- tag: "b",
61681
- text: [
61682
- "Geolocation data."
61683
- ]
61684
- },
61685
- " Depending on your device and app settings, we collect geolocation data when you use our websites."
61686
- ]
61687
- }
61688
- ]
61689
- },
61690
- {
61691
- tag: "li",
61692
- style: "listItem",
61693
- text: [
61694
- {
61695
- tag: "p",
61696
- style: "paragraph",
61697
- text: [
61698
- {
61699
- tag: "b",
61700
- text: [
61701
- "Usage data."
61702
- ]
61703
- },
61704
- " We automatically log your activity on our websites, including the URL of the website from which you came to our sites, pages you viewed, how long you spent on a page, access times, and other details about your use of and actions on our website."
61705
- ]
61706
- }
61707
- ]
61708
- }
61709
- ]
61710
- }
61711
- ]
61712
- },
61713
- {
61714
- tag: "li",
61715
- style: "listItem",
61716
- text: [
61717
- {
61718
- tag: "p",
61719
- style: "paragraph",
61720
- text: [
61721
- {
61722
- tag: "u",
61723
- text: [
61724
- "Information we create or generate."
61725
- ]
61726
- },
61727
- " We infer new information from other data we collect, including using automated means to generate information about your likely preferences or other characteristics (“",
61728
- {
61729
- tag: "b",
61730
- text: [
61731
- "inferences”"
61732
- ]
61733
- },
61734
- "). For example, we infer your general geographic location (such as city, state, and country) based on your IP address or your likely preferences or interests related to our products and services based on your browsing activities on our website or information you provide to us in a survey or form."
61735
- ]
61736
- }
61737
- ]
61738
- },
61739
- {
61740
- tag: "li",
61741
- style: "listItem",
61742
- text: [
61743
- {
61744
- tag: "p",
61745
- style: "paragraph",
61746
- text: [
61747
- {
61748
- tag: "u",
61749
- text: [
61750
- "Information we obtain from other sources."
61751
- ]
61752
- },
61753
- " In addition to the personal data that you provide directly or that we generate automatically or infer, we may also collect personal data (such as the categories described above) from other sources. These sources include, for example:"
61754
- ]
61755
- },
61756
- {
61757
- tag: "ul",
61758
- style: "list",
61759
- text: [
61760
- {
61761
- tag: "li",
61762
- style: "listItem",
61763
- text: [
61764
- {
61765
- tag: "p",
61766
- style: "paragraph",
61767
- text: [
61768
- {
61769
- tag: "b",
61770
- text: [
61771
- "Third-party partners."
61772
- ]
61773
- },
61774
- " Third-party applications and services, including social networks you choose to connect with or interact with through our sites."
61775
- ]
61776
- }
61777
- ]
61778
- },
61779
- {
61780
- tag: "li",
61781
- style: "listItem",
61782
- text: [
61783
- {
61784
- tag: "p",
61785
- style: "paragraph",
61786
- text: [
61787
- {
61788
- tag: "b",
61789
- text: [
61790
- "Co-branding/marketing partners."
61791
- ]
61792
- },
61793
- " Partners with which we offer co-branded services or engage in joint marketing activities."
61794
- ]
61795
- }
61796
- ]
61797
- },
61798
- {
61799
- tag: "li",
61800
- style: "listItem",
61801
- text: [
61802
- {
61803
- tag: "p",
61804
- style: "paragraph",
61805
- text: [
61806
- {
61807
- tag: "b",
61808
- text: [
61809
- "Service providers."
61810
- ]
61811
- },
61812
- " Third parties that collect or provide data in connection with work they do on our behalf, for example companies that determine your device",
61813
- "’",
61814
- "s location based on its IP address."
61815
- ]
61816
- }
61817
- ]
61818
- },
61819
- {
61820
- tag: "li",
61821
- style: "listItem",
61822
- text: [
61823
- {
61824
- tag: "p",
61825
- style: "paragraph",
61826
- text: [
61827
- {
61828
- tag: "b",
61829
- text: [
61830
- "Publicly available sources."
61831
- ]
61832
- },
61833
- " Public sources of information such as open government databases."
61834
- ]
61835
- }
61836
- ]
61837
- }
61838
- ]
61839
- }
61840
- ]
61841
- }
61842
- ]
61843
- },
61844
- {
61845
- tag: "p",
61846
- style: "paragraph",
61847
- text: [
61848
- "When you are asked to provide personal data, you may decline. And you may use web browser or operating system controls to prevent certain types of automatic data collection. But if you choose not to provide or allow information that is necessary for certain services or features to operate on our sites or to provide our forms, those services or features may not be available or fully functional."
61849
- ]
61850
- },
61851
- {
61852
- tag: "h2",
61853
- id: "personal-data",
61854
- style: "title",
61855
- text: [
61856
- "C. How We Use Your Personal Data"
61857
- ]
61858
- },
61859
- {
61860
- tag: "p",
61861
- style: "paragraph",
61862
- text: [
61863
- "We may use the personal data we collect for the following purposes:"
61864
- ]
61865
- },
61866
- {
61867
- tag: "ul",
61868
- style: "list",
61869
- text: [
61870
- {
61871
- tag: "li",
61872
- style: "listItem",
61873
- text: [
61874
- {
61875
- tag: "p",
61876
- style: "paragraph",
61877
- text: [
61878
- "To improve and develop our products;"
61879
- ]
61880
- }
61881
- ]
61882
- },
61883
- {
61884
- tag: "li",
61885
- style: "listItem",
61886
- text: [
61887
- {
61888
- tag: "p",
61889
- style: "paragraph",
61890
- text: [
61891
- "To conduct research;"
61892
- ]
61893
- }
61894
- ]
61895
- },
61896
- {
61897
- tag: "li",
61898
- style: "listItem",
61899
- text: [
61900
- {
61901
- tag: "p",
61902
- style: "paragraph",
61903
- text: [
61904
- "To develop new sites or features;"
61905
- ]
61906
- }
61907
- ]
61908
- },
61909
- {
61910
- tag: "li",
61911
- style: "listItem",
61912
- text: [
61913
- {
61914
- tag: "p",
61915
- style: "paragraph",
61916
- text: [
61917
- "To understand you and your preferences to enhance your experience and enjoyment using our website;"
61918
- ]
61919
- }
61920
- ]
61921
- },
61922
- {
61923
- tag: "li",
61924
- style: "listItem",
61925
- text: [
61926
- {
61927
- tag: "p",
61928
- style: "paragraph",
61929
- text: [
61930
- "To communicate with you about new sites, offers, promotions, rewards, contests, upcoming events, and other information about our sites and those of our selected partners (see the “",
61931
- {
61932
- tag: "a",
61933
- href: "#rights",
61934
- style: "link",
61935
- text: [
61936
- "Your Rights and Choices with Your Personal Data"
61937
- ]
61938
- },
61939
- "” section of this statement for information about how to change your preferences for promotional communications);"
61940
- ]
61941
- }
61942
- ]
61943
- },
61944
- {
61945
- tag: "li",
61946
- style: "listItem",
61947
- text: [
61948
- {
61949
- tag: "p",
61950
- style: "paragraph",
61951
- text: [
61952
- "To plan and host events, conferences, or webinars, including related communications with you;"
61953
- ]
61954
- }
61955
- ]
61956
- },
61957
- {
61958
- tag: "li",
61959
- style: "listItem",
61960
- text: [
61961
- {
61962
- tag: "p",
61963
- style: "paragraph",
61964
- text: [
61965
- "To detect fraudulent or illegal activity and manage the security of our websites and offices;"
61966
- ]
61967
- }
61968
- ]
61969
- },
61970
- {
61971
- tag: "li",
61972
- style: "listItem",
61973
- text: [
61974
- {
61975
- tag: "p",
61976
- style: "paragraph",
61977
- text: [
61978
- "To maintain our list of prospective and actual clients, partners, and service providers;"
61979
- ]
61980
- }
61981
- ]
61982
- },
61983
- {
61984
- tag: "li",
61985
- style: "listItem",
61986
- text: [
61987
- {
61988
- tag: "p",
61989
- style: "paragraph",
61990
- text: [
61991
- "To respond to inquiries made subject to this Privacy Statement; and"
61992
- ]
61993
- }
61994
- ]
61995
- },
61996
- {
61997
- tag: "li",
61998
- style: "listItem",
61999
- text: [
62000
- {
62001
- tag: "p",
62002
- style: "paragraph",
62003
- text: [
62004
- "To enable us to comply with applicable laws."
62005
- ]
62006
- }
62007
- ]
62008
- }
62009
- ]
62010
- },
62011
- {
62012
- tag: "h2",
62013
- id: "disclose",
62014
- style: "title",
62015
- text: [
62016
- "D. How We Disclose Your Personal Data"
62017
- ]
62018
- },
62019
- {
62020
- tag: "p",
62021
- style: "paragraph",
62022
- text: [
62023
- "We disclose personal data with your consent or as we determine necessary to complete your transactions or provide the sites you have requested or authorized. In addition, we disclose each of the categories of personal data described above, to the types of third parties described below, for the following business purposes:"
62024
- ]
62025
- },
62026
- {
62027
- tag: "ul",
62028
- style: "list",
62029
- text: [
62030
- {
62031
- tag: "li",
62032
- style: "listItem",
62033
- text: [
62034
- {
62035
- tag: "p",
62036
- style: "paragraph",
62037
- text: [
62038
- {
62039
- tag: "b",
62040
- text: [
62041
- "Public information."
62042
- ]
62043
- },
62044
- " You may select options available through our sites to publicly display and disclose your name and/or username and certain other information, such as your profile, demographic data, content and files, or geolocation data."
62045
- ]
62046
- }
62047
- ]
62048
- },
62049
- {
62050
- tag: "li",
62051
- style: "listItem",
62052
- text: [
62053
- {
62054
- tag: "p",
62055
- style: "paragraph",
62056
- text: [
62057
- {
62058
- tag: "b",
62059
- text: [
62060
- "Service providers."
62061
- ]
62062
- },
62063
- " We provide personal data to vendors or agents working on our behalf for the purposes described in this Privacy Statement. For example, companies we",
62064
- "’",
62065
- "ve hired to provide customer service support or assist in protecting and securing our systems and sites and companies we",
62066
- "’",
62067
- "ve hired to provide electronic communications systems and support, including those that record or store communications, may need access to personal data to provide those functions."
62068
- ]
62069
- }
62070
- ]
62071
- },
62072
- {
62073
- tag: "li",
62074
- style: "listItem",
62075
- text: [
62076
- {
62077
- tag: "p",
62078
- style: "paragraph",
62079
- text: [
62080
- {
62081
- tag: "b",
62082
- text: [
62083
- "Financial services and payment processing."
62084
- ]
62085
- },
62086
- " When you provide payment data, for example to register for an event, we will disclose payment and transactional data to banks and other entities as necessary for payment processing, fraud prevention, credit risk reduction, analytics, or other related financial services."
62087
- ]
62088
- }
62089
- ]
62090
- },
62091
- {
62092
- tag: "li",
62093
- style: "listItem",
62094
- text: [
62095
- {
62096
- tag: "p",
62097
- style: "paragraph",
62098
- text: [
62099
- {
62100
- tag: "b",
62101
- text: [
62102
- "Affiliates."
62103
- ]
62104
- },
62105
- " We enable access to personal data across our subsidiaries, affiliates, and related companies. For example, where we share common data systems or where access helps us to provide our sites and operate our business."
62106
- ]
62107
- }
62108
- ]
62109
- },
62110
- {
62111
- tag: "li",
62112
- style: "listItem",
62113
- text: [
62114
- {
62115
- tag: "p",
62116
- style: "paragraph",
62117
- text: [
62118
- {
62119
- tag: "b",
62120
- text: [
62121
- "Corporate transactions."
62122
- ]
62123
- },
62124
- " We may disclose personal data as part of a corporate transaction or proceeding such as a merger, financing, acquisition, bankruptcy, dissolution, or a transfer, divestiture, or sale of all or a portion of our business or assets."
62125
- ]
62126
- }
62127
- ]
62128
- },
62129
- {
62130
- tag: "li",
62131
- style: "listItem",
62132
- text: [
62133
- {
62134
- tag: "p",
62135
- style: "paragraph",
62136
- text: [
62137
- {
62138
- tag: "b",
62139
- text: [
62140
- "Legal and law enforcement."
62141
- ]
62142
- },
62143
- " We will access, disclose, and preserve personal data when we believe doing so is necessary to comply with applicable law or respond to valid legal process, including from regulatory or other public authorities, law enforcement, national security, or other government agencies."
62144
- ]
62145
- }
62146
- ]
62147
- },
62148
- {
62149
- tag: "li",
62150
- style: "listItem",
62151
- text: [
62152
- {
62153
- tag: "p",
62154
- style: "paragraph",
62155
- text: [
62156
- {
62157
- tag: "b",
62158
- text: [
62159
- "Security, safety, and protecting rights."
62160
- ]
62161
- },
62162
- " We will disclose personal data if we believe it is necessary to:"
62163
- ]
62164
- },
62165
- {
62166
- tag: "ul",
62167
- style: "list",
62168
- text: [
62169
- {
62170
- tag: "li",
62171
- style: "listItem",
62172
- text: [
62173
- {
62174
- tag: "p",
62175
- style: "paragraph",
62176
- text: [
62177
- "protect our customers and others, for example to prevent spam or attempts to commit fraud, or to help prevent loss of life or serious injury;"
62178
- ]
62179
- }
62180
- ]
62181
- },
62182
- {
62183
- tag: "li",
62184
- style: "listItem",
62185
- text: [
62186
- {
62187
- tag: "p",
62188
- style: "paragraph",
62189
- text: [
62190
- "operate and maintain the security of our sites, including to prevent or stop an attack on our computer systems or networks; or"
62191
- ]
62192
- }
62193
- ]
62194
- },
62195
- {
62196
- tag: "li",
62197
- style: "listItem",
62198
- text: [
62199
- {
62200
- tag: "p",
62201
- style: "paragraph",
62202
- text: [
62203
- "protect the rights or property of ourselves or others, including enforcing our agreements, terms, and policies."
62204
- ]
62205
- }
62206
- ]
62207
- }
62208
- ]
62209
- }
62210
- ]
62211
- }
62212
- ]
62213
- },
62214
- {
62215
- tag: "p",
62216
- style: "paragraph",
62217
- text: [
62218
- "Analytics and advertising companies also collect personal data through our website and apps, including identifiers and device information (such as cookie IDs, device IDs, and IP address), geolocation data, usage data, and inferences based on and associated with that data, as described in our ",
62219
- {
62220
- tag: "a",
62221
- href: "https://www.mx.com/cookie-policy/",
62222
- style: "link",
62223
- text: [
62224
- "Cookie Policy"
62225
- ]
62226
- },
62227
- ". These vendors may combine this data across multiple sites to improve analytics for their own purpose and others. For example, we use Google Analytics on our website to help us understand how users interact with our website. You can learn how Google collects and uses information at",
62228
- " ",
62229
- {
62230
- tag: "a",
62231
- href: "https://www.google.com/policies/privacy/partners",
62232
- style: "link",
62233
- text: [
62234
- "www.google.com/policies/privacy/partners"
62235
- ]
62236
- },
62237
- "."
62238
- ]
62239
- },
62240
- {
62241
- tag: "p",
62242
- style: "paragraph",
62243
- text: [
62244
- "Some of the data disclosures to these vendors may be considered a “sale” or “sharing” of personal data as defined under the laws of California and other U.S. states. Please see the “California Privacy Rights” sections below for more details. "
62245
- ]
62246
- },
62247
- {
62248
- tag: "p",
62249
- style: "paragraph",
62250
- text: [
62251
- "Please note that some of our sites also include integrations, references, or links to services provided by third parties whose privacy practices differ from ours. If you provide personal data to any of those third parties, or if you allow us to share personal data with them, the relevant third parties",
62252
- "’",
62253
- " privacy statements apply to that shared personal data."
62254
- ]
62255
- },
62256
- {
62257
- tag: "p",
62258
- style: "paragraph",
62259
- text: [
62260
- "Finally, we may disclose de-identified information, from which a person",
62261
- "’",
62262
- "s identity is no longer apparent or readily ascertainable, in accordance with applicable law."
62263
- ]
62264
- },
62265
- {
62266
- tag: "h2",
62267
- id: "rights",
62268
- style: "title",
62269
- text: [
62270
- "E. Your Rights and Choices with Your Personal Data"
62271
- ]
62272
- },
62273
- {
62274
- tag: "p",
62275
- style: "paragraph",
62276
- text: [
62277
- "We provide a variety of ways for you to control the personal data we hold about you, including choices about how we use that data. In some jurisdictions, these choices may be enforceable as rights under applicable law. Options we offer include:"
62278
- ]
62279
- },
62280
- {
62281
- tag: "ul",
62282
- style: "list",
62283
- text: [
62284
- {
62285
- tag: "li",
62286
- style: "listItem",
62287
- text: [
62288
- {
62289
- tag: "p",
62290
- style: "paragraph",
62291
- text: [
62292
- {
62293
- tag: "b",
62294
- text: [
62295
- "Modification, removal, and access."
62296
- ]
62297
- },
62298
- " If you would like to modify or remove personal data we have about you or request a copy of your personal data (to the extent these rights are provided by law), you may contact us directly via the contact information provided in the ",
62299
- {
62300
- tag: "a",
62301
- href: "#contact",
62302
- style: "link",
62303
- text: [
62304
- "“How to Contact Us”"
62305
- ]
62306
- },
62307
- " section of this Privacy Statement. For your protection, we may need to verify your identity before fulfilling your request. We will respond as soon as reasonably practical and within the time frame specified by applicable law. We reserve the right to deny your request based on applicable law and will inform you if we do so."
62308
- ]
62309
- }
62310
- ]
62311
- },
62312
- {
62313
- tag: "li",
62314
- style: "listItem",
62315
- text: [
62316
- {
62317
- tag: "p",
62318
- style: "paragraph",
62319
- text: [
62320
- {
62321
- tag: "b",
62322
- text: [
62323
- "Communications preferences."
62324
- ]
62325
- },
62326
- " You can choose whether to receive promotional communications from us by email and direct mail. If you receive promotional email from us and would like to stop, you can do so by following the directions in that message or by contacting us as described in the",
62327
- " ",
62328
- {
62329
- tag: "a",
62330
- href: "#contact",
62331
- style: "link",
62332
- text: [
62333
- "“How to Contact Us”"
62334
- ]
62335
- },
62336
- " section below. If you would like to stop receiving direct mail from us, contact us as described in the ",
62337
- {
62338
- tag: "a",
62339
- href: "#contact",
62340
- style: "link",
62341
- text: [
62342
- "“How to Contact Us”"
62343
- ]
62344
- },
62345
- " ",
62346
- "section below. These choices do not apply to certain informational communications including surveys and mandatory service communications."
62347
- ]
62348
- }
62349
- ]
62350
- },
62351
- {
62352
- tag: "li",
62353
- style: "listItem",
62354
- text: [
62355
- {
62356
- tag: "p",
62357
- style: "paragraph",
62358
- text: [
62359
- {
62360
- tag: "b",
62361
- text: [
62362
- "Global Privacy Control."
62363
- ]
62364
- },
62365
- " Some browsers and browser extensions support the “Global Privacy Control” (GPC) or similar controls that can send a signal to the websites you visit indicating your choice to opt-out from certain types of data processing, including data sales and/or targeted advertising, as specified by applicable law. When we detect such a signal, we will make reasonable efforts to respect your choices indicated by a GPC setting or similar control that is recognized by regulation or otherwise widely acknowledged as a valid opt-out preference signal."
62366
- ]
62367
- }
62368
- ]
62369
- }
62370
- ]
62371
- },
62372
- {
62373
- tag: "p",
62374
- style: "paragraph",
62375
- text: [
62376
- "Your browser or device may have additional options that you can use, as described below. These options are specific to the device or browser you are using. If you access our sites from other devices or browsers, you should use these options from those devices or browsers as well."
62377
- ]
62378
- },
62379
- {
62380
- tag: "ul",
62381
- style: "list",
62382
- text: [
62383
- {
62384
- tag: "li",
62385
- style: "listItem",
62386
- text: [
62387
- {
62388
- tag: "p",
62389
- style: "paragraph",
62390
- text: [
62391
- {
62392
- tag: "b",
62393
- text: [
62394
- "Cookie controls."
62395
- ]
62396
- },
62397
- " Most web browsers are set to accept cookies by default. If you prefer, you can go to your browser settings to learn how to delete or reject cookies. If you choose to delete or reject cookies, this could affect certain features or services of our website. If you choose to delete cookies, settings and preferences controlled by those cookies, including advertising preferences, may be deleted and may need to be recreated."
62398
- ]
62399
- }
62400
- ]
62401
- },
62402
- {
62403
- tag: "li",
62404
- style: "listItem",
62405
- text: [
62406
- {
62407
- tag: "b",
62408
- text: [
62409
- "Do Not Track."
62410
- ]
62411
- },
62412
- " Some browsers include a \"Do Not Track\" (DNT) setting that can send a signal to the websites you visit indicating you do not wish to be tracked. Unlike the GPC described above, there is not a common understanding of how to interpret the DNT signal; therefore, our websites do not respond to browser DNT signals. Instead, you can use the range of other tools to control data collection and use, including the GPC, cookie controls, and advertising controls described above."
62413
- ]
62414
- },
62415
- {
62416
- tag: "li",
62417
- style: "listItem",
62418
- text: [
62419
- {
62420
- tag: "b",
62421
- text: [
62422
- "Email web beacons."
62423
- ]
62424
- },
62425
- " Most email clients have settings that allow you to prevent the automatic downloading of images, including web beacons, and the automatic connection to the web servers that host those images."
62426
- ]
62427
- }
62428
- ]
62429
- },
62430
- {
62431
- tag: "h2",
62432
- id: "location",
62433
- style: "title",
62434
- text: [
62435
- "F. Location of Personal Data"
62436
- ]
62437
- },
62438
- {
62439
- tag: "p",
62440
- style: "paragraph",
62441
- text: [
62442
- "The personal data we collect may be stored and processed in your country or region, or in any other country where we or our affiliates, subsidiaries, or service providers process data, in accordance with applicable law. Currently, we primarily use data centers in the United States of America. The storage location(s) are chosen to operate efficiently and improve performance. We take steps to process and protect personal data as described in this Privacy Statement wherever the data is located, however, some countries where we store data may have laws that offer a different level of data protection than the country in which you reside."
62443
- ]
62444
- },
62445
- {
62446
- tag: "p",
62447
- style: "paragraph",
62448
- text: [
62449
- {
62450
- tag: "b",
62451
- text: [
62452
- "Location of Processing European Personal Data."
62453
- ]
62454
- },
62455
- " We transfer personal data from the European Economic Area (EEA), United Kingdom (UK), and Switzerland to other countries, some of which have not been determined by the European Commission to have an adequate level of data protection. When we do so, we use legal mechanisms, including contracts, to help ensure your rights and protections. To learn more about the European Commission",
62456
- "’",
62457
- "s decisions on the adequacy of personal data protections, please visit:",
62458
- " ",
62459
- {
62460
- tag: "a",
62461
- href: "https://commission.europa.eu/law/law-topic/data-protection/international-dimension-data-protection/adequacy-decisions_en",
62462
- style: "link",
62463
- text: [
62464
- "https://commission.europa.eu/law/law-topic/data-protection/international-dimension-data-protection/adequacy-decisions_en"
62465
- ]
62466
- },
62467
- "."
62468
- ]
62469
- },
62470
- {
62471
- tag: "p",
62472
- style: "paragraph",
62473
- text: [
62474
- {
62475
- tag: "b",
62476
- text: [
62477
- "EU-U.S. Privacy Shield Framework."
62478
- ]
62479
- }
62480
- ]
62481
- },
62482
- {
62483
- tag: "p",
62484
- style: "paragraph",
62485
- text: [
62486
- "Based on subsequent court and regulator decisions, MX no longer relies on the EU-U.S. and Swiss-U.S. Privacy Shield Frameworks as a legal basis for transfers of personal data from the European Union and Switzerland, and instead relies on Standard Contractual Clauses (SCC). For more information on Standard Contractual Clauses, please visit",
62487
- " ",
62488
- {
62489
- tag: "a",
62490
- href: "https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection/standard-contractual-clauses-scc_en",
62491
- style: "link",
62492
- text: [
62493
- "https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection/standard-contractual-clauses-scc_en"
62494
- ]
62495
- },
62496
- ". However, because MX remains committed to the underlying privacy principles, MX continues to comply with the EU-U.S. Privacy Shield Framework and Swiss-U.S. Privacy Shield Framework as set forth by the U.S. Department of Commerce. If there is any conflict between the terms in this Privacy Policy and the Privacy Shield Principles, the Privacy Shield Principles shall govern."
62497
- ]
62498
- },
62499
- {
62500
- tag: "h2",
62501
- id: "security",
62502
- style: "title",
62503
- text: [
62504
- "G. Security of Personal Data"
62505
- ]
62506
- },
62507
- {
62508
- tag: "p",
62509
- style: "paragraph",
62510
- text: [
62511
- "We take reasonable and appropriate steps to help protect personal data from unauthorized access, use, disclosure, alteration, and destruction."
62512
- ]
62513
- },
62514
- {
62515
- tag: "p",
62516
- style: "paragraph",
62517
- text: [
62518
- "To help us protect your personal data, we request that you use a strong password and never share your password with anyone or use the same password with other sites or accounts."
62519
- ]
62520
- },
62521
- {
62522
- tag: "h2",
62523
- id: "retention",
62524
- style: "title",
62525
- text: [
62526
- "H. Retention of Personal Data"
62527
- ]
62528
- },
62529
- {
62530
- tag: "p",
62531
- style: "paragraph",
62532
- text: [
62533
- "We retain personal data for as long as reasonably necessary to provide the features and functionality of our sites, communicate with you, fulfill the transactions you have requested, comply with our legal obligations, resolve disputes, enforce our agreements, and for other legitimate and lawful business purposes. Because these needs can vary for different data types in the context of different services, actual retention periods can vary significantly based on criteria such as user expectations or consent, the sensitivity of the data, the availability of automated controls that enable users to delete data, and our legal and contractual obligations."
62534
- ]
62535
- },
62536
- {
62537
- tag: "h2",
62538
- id: "gdpr",
62539
- style: "title",
62540
- text: [
62541
- "I. European Data Protection Rights"
62542
- ]
62543
- },
62544
- {
62545
- tag: "p",
62546
- style: "paragraph",
62547
- text: [
62548
- "We retain personal data for as long as reasonably necessary to provide the features and functionality of our sites, communicate with you, fulfill the transactions you have requested, comply with our legal obligations, resolve disputes, enforce our agreements, and for other legitimate and lawful business purposes. Because these needs can vary for different data types in the context of different services, actual retention periods can vary significantly based on criteria such as user expectations or consent, the sensitivity of the data, the availability of automated controls that enable users to delete data, and our legal and contractual obligations."
62549
- ]
62550
- },
62551
- {
62552
- tag: "h2",
62553
- id: "ccpa",
62554
- style: "title",
62555
- text: [
62556
- "J. California Privacy Rights"
62557
- ]
62558
- },
62559
- {
62560
- tag: "p",
62561
- style: "paragraph",
62562
- text: [
62563
- "If you are a California resident and the processing of personal data (also referred to in this section as “personal information”) about you is subject to the California Consumer Privacy Act (CCPA), you have certain rights with respect to that information."
62564
- ]
62565
- },
62566
- {
62567
- tag: "p",
62568
- style: "paragraph",
62569
- text: [
62570
- {
62571
- tag: "b",
62572
- text: [
62573
- "Notice at Collection."
62574
- ]
62575
- },
62576
- " At or before the time of collection, you have a right to receive notice of our practices, including the",
62577
- " ",
62578
- {
62579
- tag: "a",
62580
- href: "#data-collect",
62581
- style: "link",
62582
- text: [
62583
- "categories"
62584
- ]
62585
- },
62586
- " of personal data and sensitive personal data to be collected, the",
62587
- " ",
62588
- {
62589
- tag: "a",
62590
- href: "#personal-data",
62591
- style: "link",
62592
- text: [
62593
- "purposes"
62594
- ]
62595
- },
62596
- " for which such information is collected or used, whether such information is",
62597
- {
62598
- tag: "a",
62599
- href: "#disclose",
62600
- style: "link",
62601
- text: [
62602
- " sold or shared"
62603
- ]
62604
- },
62605
- ", and how long such information is ",
62606
- {
62607
- tag: "a",
62608
- href: "#retention",
62609
- style: "link",
62610
- text: [
62611
- "retained"
62612
- ]
62613
- },
62614
- ". You can find those details within this Privacy Statement."
62615
- ]
62616
- },
62617
- {
62618
- tag: "p",
62619
- style: "paragraph",
62620
- text: [
62621
- {
62622
- tag: "b",
62623
- text: [
62624
- "Right to Know."
62625
- ]
62626
- },
62627
- " You have the right to request that we disclose to you the personal data we have collected about you. You also have a right to request additional information about our collection, use, disclosure, or sale of such personal data. Note that we have provided much of this information in this Privacy Statement. Please review the section below titled ",
62628
- {
62629
- tag: "a",
62630
- href: "#contact",
62631
- style: "link",
62632
- text: [
62633
- "“How to Contact Us”"
62634
- ]
62635
- },
62636
- " to submit a “request to know.”"
62637
- ]
62638
- },
62639
- {
62640
- tag: "p",
62641
- style: "paragraph",
62642
- text: [
62643
- {
62644
- tag: "b",
62645
- text: [
62646
- "Rights to Request Correction or Deletion."
62647
- ]
62648
- },
62649
- " You also have the right to request that we correct inaccurate personal data and that we delete personal data under certain circumstances, subject to a number of exceptions. Please review the section below titled",
62650
- " ",
62651
- {
62652
- tag: "a",
62653
- href: "#contact",
62654
- style: "link",
62655
- text: [
62656
- "“How to Contact Us”"
62657
- ]
62658
- },
62659
- " to make a request to correct or delete."
62660
- ]
62661
- },
62662
- {
62663
- tag: "p",
62664
- style: "paragraph",
62665
- text: [
62666
- {
62667
- tag: "b",
62668
- text: [
62669
- "Right to Opt-Out / “Do Not Sell or Share My Personal Information”."
62670
- ]
62671
- },
62672
- " ",
62673
- "You have a right to opt-out from future “sales” or “sharing” of personal data as those terms are defined by the CCPA."
62674
- ]
62675
- },
62676
- {
62677
- tag: "p",
62678
- style: "paragraph",
62679
- text: [
62680
- "Note that the CCPA defines “sell,” “share,” and “personal information” very broadly, and some of our data sharing described in this Privacy Statement may be considered a “sale” or “sharing” under those definitions. In particular, we let advertising and analytics providers collect identifiers (IP addresses, cookie IDs, and mobile IDs), activity data (browsing, clicks, and app usage), device data, and geolocation data on our websites, but do not “sell” or “share” any other types of personal information . If you do not wish for us to “sell” or “share” (for certain advertising purposes) personal information relating to your visits to our sites, you should make your request to opt-out by: (1) using the Global Privacy Control (as described above) or by",
62681
- " ",
62682
- {
62683
- tag: "span",
62684
- text: [
62685
- "clicking here"
62686
- ]
62687
- },
62688
- "; and (2) emailing us through the contact information at the bottom of this Privacy Statement. Note that you must do both (1) and (2) for us to be able to honor your request, and for (1) you must take that step for each device and browser you use to access our site. Note, if you choose to delete cookies on your computer, and you do not use the Global Privacy Control, you will also need to make your request by",
62689
- " ",
62690
- {
62691
- tag: "span",
62692
- text: [
62693
- "clicking here"
62694
- ]
62695
- },
62696
- " ",
62697
- "again, as this approach requires an opt-out cookie to be maintained on your computer. If you opt-out using these choices, we will not share or make available such personal information in ways that are considered a “sale” or “sharing” under the CCPA. However, we will continue to make available to our partners (acting as our service providers) some personal information to help us perform advertising-related functions. Further, using these choices will not opt you out of the use of previously “sold” or “shared” personal information or stop all interest-based advertising."
62698
- ]
62699
- },
62700
- {
62701
- tag: "p",
62702
- style: "paragraph",
62703
- text: [
62704
- "We do not knowingly sell or share the personal information of minors under 16 years of age."
62705
- ]
62706
- },
62707
- {
62708
- tag: "p",
62709
- style: "paragraph",
62710
- text: [
62711
- {
62712
- tag: "b",
62713
- text: [
62714
- "Right to Limit Use and Disclosure of Sensitive Personal Data."
62715
- ]
62716
- },
62717
- " ",
62718
- "You have a right to limit our use of sensitive personal information for any purposes other than to provide the services or goods you request or as otherwise permitted by law."
62719
- ]
62720
- },
62721
- {
62722
- tag: "p",
62723
- style: "paragraph",
62724
- text: [
62725
- "Note that we do not use or disclose sensitive personal information for any such additional purposes."
62726
- ]
62727
- },
62728
- {
62729
- tag: "p",
62730
- style: "paragraph",
62731
- text: [
62732
- {
62733
- tag: "b",
62734
- text: [
62735
- "Non-discrimination."
62736
- ]
62737
- },
62738
- " Finally, you have a right to not be discriminated against for exercising these rights set out in the CCPA."
62739
- ]
62740
- },
62741
- {
62742
- tag: "p",
62743
- style: "paragraph",
62744
- text: [
62745
- {
62746
- tag: "b",
62747
- text: [
62748
- "Exercising Your Rights."
62749
- ]
62750
- },
62751
- " You may designate, in writing or through a power of attorney, an authorized agent to make requests on your behalf to exercise your rights under the CCPA. Before accepting such a request from an agent, we will require the agent to provide proof you have authorized it to act on your behalf, and we may need you to verify your identity directly with us."
62752
- ]
62753
- },
62754
- {
62755
- tag: "p",
62756
- style: "paragraph",
62757
- text: [
62758
- "Further, to provide, correct, or delete specific pieces of personal information we will need to verify your identity to the degree of certainty required by law. We will verify your request by asking you to send it from the email address associated with your account or interactions with us, or by requiring you to provide information necessary to verify your identity."
62759
- ]
62760
- },
62761
- {
62762
- tag: "p",
62763
- style: "paragraph",
62764
- text: [
62765
- "Except for the automated controls described above, if you send us a request to exercise your rights or these choices, to the extent permitted by applicable law, we may decline requests in certain cases. For example, we may decline requests where granting the request would be prohibited by law, could adversely affect the privacy or other rights of another person, would reveal a trade secret or other confidential information, or would interfere with a legal or business obligation that requires retention or use of the data. Further, we may decline a request where we are unable to authenticate you as the person to whom the data relates, the request is unreasonable or excessive, or where otherwise permitted by applicable law."
62766
- ]
62767
- },
62768
- {
62769
- tag: "h2",
62770
- id: "changes",
62771
- style: "title",
62772
- text: [
62773
- "K. Changes to this Privacy Statement"
62774
- ]
62775
- },
62776
- {
62777
- tag: "p",
62778
- style: "paragraph",
62779
- text: [
62780
- "We will update this Privacy Statement when necessary to reflect changes in how we use personal data or in the applicable law. When we post changes to the Privacy Statement, we will revise the \"Last Updated\" date at the top of the Privacy Statement. If we make material changes to the Privacy Statement, we will provide notice or obtain consent regarding such changes as may be required by law."
62781
- ]
62782
- },
62783
- {
62784
- tag: "h2",
62785
- id: "contact",
62786
- style: "title",
62787
- text: [
62788
- "L. How to Contact Us"
62789
- ]
62790
- },
62791
- {
62792
- tag: "p",
62793
- style: "paragraph",
62794
- text: [
62795
- "If you have a privacy concern, complaint, or question, please send your inquiries to:"
62796
- ]
62797
- },
62798
- {
62799
- tag: "p",
62800
- style: "paragraph",
62801
- text: [
62802
- {
62803
- tag: "b",
62804
- text: [
62805
- "Organization:"
62806
- ]
62807
- },
62808
- " MX Technologies, Inc."
62809
- ]
62810
- },
62811
- {
62812
- tag: "p",
62813
- style: "paragraph",
62814
- text: [
62815
- {
62816
- tag: "b",
62817
- text: [
62818
- "Contact:"
62819
- ]
62820
- },
62821
- " Data Privacy Team"
62822
- ]
62823
- },
62824
- {
62825
- tag: "p",
62826
- style: "paragraph",
62827
- text: [
62828
- {
62829
- tag: "b",
62830
- text: [
62831
- "Address:"
62832
- ]
62833
- },
62834
- " 3401 North Thanksgiving Way Suite 500 Lehi, UT 84043"
62835
- ]
62836
- },
62837
- {
62838
- tag: "p",
62839
- style: "paragraph",
62840
- text: [
62841
- {
62842
- tag: "b",
62843
- text: [
62844
- "E-mail:"
62845
- ]
62846
- },
62847
- " ",
62848
- {
62849
- tag: "a",
62850
- href: "mailto:termsofuse@mx.com",
62851
- style: "link",
62852
- text: [
62853
- "termsofuse@mx.com"
62854
- ]
62855
- }
62856
- ]
62857
- }
62858
- ];
62859
- const privacyData = {
62860
- title: title,
62861
- updatedOn: updatedOn,
62862
- body: body
62863
- };
62864
-
62865
- const BOLD_TAG = "b";
62866
- const H2_TAG = "h2";
62867
- const A_TAG = "a";
62868
- const LI_TAG = "li";
62869
- const NON_KYPER_TAGS = ["ul", "ol", LI_TAG, "u"];
62870
- const TEXT_TAGS$1 = ["h1", "h2", "h3", "h4", "h5", "h6", "p", "span", BOLD_TAG];
62871
- const PrivacyPolicy = () => {
61186
+ const PRIVACY_POLICY_URL = "https://www.mx.com/privacy/";
61187
+ const PrivacyPolicy = ({ onCancel } = {}) => {
62872
61188
  useAnalyticsPath(...PageviewInfo.CONNECT_DISCLOSURE_PRIVACY_POLICY);
62873
- const [showLeavingNotice, setShowLeavingNotice] = useState(false);
62874
- const showExternalLinkPopup = useSelector(
62875
- (state) => state.profiles.clientProfile.show_external_link_popup
62876
- );
62877
- const [currentUrl, setCurrentUrl] = useState(null);
61189
+ const [isLeavingUrl, setIsLeavingUrl] = useState(null);
62878
61190
  const getNextDelay = getDelay();
62879
- const tokens = useTokens();
62880
- const styles = getStyles$1E(tokens);
62881
- const handleLinkClick = (url, isExternalUrl = true) => {
62882
- const newUrl = { url, isExternalUrl };
62883
- if (showExternalLinkPopup) {
62884
- setShowLeavingNotice(true);
62885
- setCurrentUrl(newUrl);
62886
- } else {
62887
- goToUrlLink(url, isExternalUrl);
62888
- }
62889
- };
62890
- const buildElementJSX = (el, i) => {
62891
- const tag = el.tag;
62892
- const style = el.style;
62893
- const children = el.text;
62894
- const buildChildrenJSX = (children2) => {
62895
- return children2.map((child, i2) => {
62896
- if (typeof child === "string") {
62897
- return child;
62898
- }
62899
- return buildElementJSX(child, i2);
62900
- });
62901
- };
62902
- if (typeof el === "string") {
62903
- return el;
62904
- } else if (tag === A_TAG) {
62905
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
62906
- Link$1,
62907
- {
62908
- onClick: () => {
62909
- if (isScrollableUrl(el.href)) {
62910
- document.getElementById(el.href.split("#")[1]).scrollIntoView(true);
62911
- } else {
62912
- handleLinkClick(el.href);
62913
- }
62914
- },
62915
- role: "link",
62916
- style: styles.link,
62917
- children: buildChildrenJSX(children)
62918
- },
62919
- i
62920
- );
62921
- } else if (NON_KYPER_TAGS.includes(tag)) {
62922
- const NonKyperTag = tag;
62923
- if (tag === LI_TAG) {
62924
- return /* @__PURE__ */ jsxRuntimeExports.jsx(NonKyperTag, { className: dist.css(styles[style]), children: buildChildrenJSX(children) }, i);
62925
- }
62926
- return /* @__PURE__ */ jsxRuntimeExports.jsx(NonKyperTag, { style: style ? styles[style] : void 0, children: buildChildrenJSX(children) }, i);
62927
- } else if (TEXT_TAGS$1.includes(tag)) {
62928
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
62929
- D,
62930
- {
62931
- bold: tag === BOLD_TAG ? true : void 0,
62932
- component: tag === BOLD_TAG ? void 0 : tag,
62933
- id: tag === H2_TAG ? el.id : void 0,
62934
- style: style ? styles[style] : void 0,
62935
- truncate: false,
62936
- variant: tag === BOLD_TAG ? "Paragraph" : void 0,
62937
- children: buildChildrenJSX(children)
61191
+ useEffect(() => {
61192
+ setIsLeavingUrl(PRIVACY_POLICY_URL);
61193
+ }, []);
61194
+ if (isLeavingUrl) {
61195
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(SlideDown, { delay: getNextDelay(), children: /* @__PURE__ */ jsxRuntimeExports.jsx(
61196
+ LeavingNoticeFlat,
61197
+ {
61198
+ onCancel: () => {
61199
+ setIsLeavingUrl(null);
61200
+ onCancel?.();
62938
61201
  },
62939
- i
62940
- );
62941
- }
62942
- return null;
62943
- };
62944
- return /* @__PURE__ */ jsxRuntimeExports.jsx("div", { children: showLeavingNotice ? /* @__PURE__ */ jsxRuntimeExports.jsx(SlideDown, { delay: getNextDelay(), children: /* @__PURE__ */ jsxRuntimeExports.jsx(
62945
- LeavingNoticeFlat,
62946
- {
62947
- onCancel: () => {
62948
- setShowLeavingNotice(false);
62949
- setCurrentUrl(null);
62950
- },
62951
- onContinue: () => {
62952
- goToUrlLink(currentUrl.url, currentUrl.isExternalUrl);
62953
- setCurrentUrl(null);
62954
- setShowLeavingNotice(false);
61202
+ onContinue: () => {
61203
+ goToUrlLink(isLeavingUrl, true);
61204
+ }
62955
61205
  }
62956
- }
62957
- ) }) : /* @__PURE__ */ jsxRuntimeExports.jsxs(React__default.Fragment, { children: [
62958
- /* @__PURE__ */ jsxRuntimeExports.jsx(SlideDown, { delay: getNextDelay(), children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { style: styles.header, children: [
62959
- /* @__PURE__ */ jsxRuntimeExports.jsx(D, { component: "h2", "data-test": "privacy-policy-header", truncate: false, variant: "H2", children: privacyData.title }),
62960
- /* @__PURE__ */ jsxRuntimeExports.jsx(D, { style: styles.lastUpdatedDate, truncate: false, children: privacyData.updatedOn })
62961
- ] }) }),
62962
- /* @__PURE__ */ jsxRuntimeExports.jsx(SlideDown, { delay: getNextDelay(), children: privacyData.body.map((el, i) => buildElementJSX(el, i)) })
62963
- ] }) });
62964
- };
62965
- const getStyles$1E = (tokens) => ({
62966
- header: {
62967
- display: "flex",
62968
- flexDirection: "column"
62969
- },
62970
- lastUpdatedDate: {
62971
- color: tokens.TextColor.Secondary,
62972
- fontWeight: tokens.FontWeight.Normal,
62973
- fontSize: tokens.FontSize.XSmall,
62974
- lineHeight: tokens.LineHeight.Small,
62975
- marginTop: tokens.Spacing.XSmall,
62976
- marginBottom: tokens.Spacing.Medium
62977
- },
62978
- title: {
62979
- marginBottom: tokens.Spacing.XSmall
62980
- },
62981
- subTitle: {
62982
- marginBottom: tokens.Spacing.Medium,
62983
- fontSize: tokens.FontSize.Body,
62984
- lineHeight: tokens.LineHeight.Body
62985
- },
62986
- paragraph: {
62987
- marginBottom: tokens.Spacing.XSmall,
62988
- fontSize: tokens.FontSize.ParagraphSmall,
62989
- lineHeight: tokens.LineHeight.ParagraphSmall
62990
- },
62991
- link: {
62992
- display: "inline",
62993
- whiteSpace: "normal",
62994
- height: "auto",
62995
- fontSize: tokens.FontSize.Small,
62996
- textAlign: "left"
62997
- },
62998
- list: {
62999
- listStylePosition: "outside",
63000
- marginTop: tokens.Spacing.Small
63001
- },
63002
- listItem: {
63003
- color: tokens.TextColor.Default,
63004
- marginLeft: tokens.Spacing.XLarge,
63005
- marginBottom: tokens.Spacing.XSmall,
63006
- "& span": {
63007
- fontSize: tokens.FontSize.ParagraphSmall,
63008
- lineHeight: tokens.LineHeight.ParagraphSmall
63009
- }
61206
+ ) });
63010
61207
  }
63011
- });
61208
+ return null;
61209
+ };
63012
61210
 
63013
61211
  const MXLogo = createSvgIcon$2(({ color }) => /* @__PURE__ */ jsxRuntimeExports.jsxs(React__default.Fragment, { children: [
63014
61212
  /* @__PURE__ */ jsxRuntimeExports.jsx(
@@ -63090,6 +61288,9 @@ const Disclosure = React__default.forwardRef((_, disclosureRef) => {
63090
61288
  const { isInAggMode, isInTaxMode, isInVerifyMode } = useSelector(selectCurrentMode);
63091
61289
  const connectConfig = useSelector(selectConnectConfig);
63092
61290
  const size = useSelector(getSize);
61291
+ const showExternalLinkPopup = useSelector(
61292
+ (state) => state.profiles.clientProfile.show_external_link_popup
61293
+ );
63093
61294
  const dispatch = useDispatch();
63094
61295
  useImperativeHandle(disclosureRef, () => {
63095
61296
  return {
@@ -63106,7 +61307,7 @@ const Disclosure = React__default.forwardRef((_, disclosureRef) => {
63106
61307
  {
63107
61308
  id: "mx-connect-disclosure",
63108
61309
  ref: containerRef,
63109
- children: showPrivacyPolicy ? /* @__PURE__ */ jsxRuntimeExports.jsx(SlideDown, { delay: getNextDelay(), children: /* @__PURE__ */ jsxRuntimeExports.jsx(PrivacyPolicy, {}) }) : /* @__PURE__ */ jsxRuntimeExports.jsxs(Fragment, { children: [
61310
+ children: showPrivacyPolicy ? /* @__PURE__ */ jsxRuntimeExports.jsx(SlideDown, { delay: getNextDelay(), children: /* @__PURE__ */ jsxRuntimeExports.jsx(PrivacyPolicy, { onCancel: () => setShowPrivacyPolicy(false) }) }) : /* @__PURE__ */ jsxRuntimeExports.jsxs(Fragment, { children: [
63110
61311
  /* @__PURE__ */ jsxRuntimeExports.jsx(SlideDown, { delay: getNextDelay(), children: /* @__PURE__ */ jsxRuntimeExports.jsx(ConnectInstitutionHeader, {}) }),
63111
61312
  /* @__PURE__ */ jsxRuntimeExports.jsx(SlideDown, { delay: getNextDelay(), children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { style: styles.flexGroup, children: [
63112
61313
  /* @__PURE__ */ jsxRuntimeExports.jsx(D, { "data-test": "disclosure-title", style: styles.title, truncate: false, variant: "H2", children: _p("connect/disclosure/title", "Connect your account") }),
@@ -63163,8 +61364,12 @@ const Disclosure = React__default.forwardRef((_, disclosureRef) => {
63163
61364
  {
63164
61365
  "data-test": "disclosure-privacy-policy-link",
63165
61366
  onClick: () => {
63166
- scrollToTop(containerRef);
63167
- setShowPrivacyPolicy(true);
61367
+ if (showExternalLinkPopup) {
61368
+ scrollToTop(containerRef);
61369
+ setShowPrivacyPolicy(true);
61370
+ } else {
61371
+ goToUrlLink("https://www.mx.com/privacy/", true);
61372
+ }
63168
61373
  },
63169
61374
  style: styles.link,
63170
61375
  children: _p("connect/disclosure/policy/link", "MX Privacy Policy.")
@@ -72640,7 +70845,10 @@ const useForm = (submitCallback, formSchema, initialValues) => {
72640
70845
  if (event.persist) {
72641
70846
  event.persist();
72642
70847
  }
72643
- setValues((values2) => ({ ...values2, [event.target.name]: event.target.value }));
70848
+ setValues((values2) => ({
70849
+ ...values2,
70850
+ [event.target.name || event.target.id]: event.target.value
70851
+ }));
72644
70852
  };
72645
70853
  return {
72646
70854
  // Function to handle your form input onChange event
@@ -77532,6 +75740,9 @@ const DisclosureInterstitial = React__default.forwardRef((props, interstitialNav
77532
75740
  const getNextDelay = getDelay();
77533
75741
  const institution = useSelector(getSelectedInstitution);
77534
75742
  const appName = useSelector((state) => state.profiles.client.oauth_app_name || null);
75743
+ const showExternalLinkPopup = useSelector(
75744
+ (state) => state.profiles.clientProfile.show_external_link_popup
75745
+ );
77535
75746
  const [currentView, setCurrentView] = useState(VIEWS$1.INTERSTITIAL_DISCLOSURE);
77536
75747
  useImperativeHandle(interstitialNavRef, () => {
77537
75748
  return {
@@ -77550,7 +75761,7 @@ const DisclosureInterstitial = React__default.forwardRef((props, interstitialNav
77550
75761
  }
77551
75762
  };
77552
75763
  if (currentView === VIEWS$1.PRIVACY_POLICY) {
77553
- return /* @__PURE__ */ jsxRuntimeExports.jsx(PrivacyPolicy, {});
75764
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(PrivacyPolicy, { onCancel: () => setCurrentView(VIEWS$1.INTERSTITIAL_DISCLOSURE) });
77554
75765
  } else if (currentView === VIEWS$1.DATA_REQUESTED) {
77555
75766
  return /* @__PURE__ */ jsxRuntimeExports.jsx(DataRequested, { setCurrentView });
77556
75767
  } else if (currentView === VIEWS$1.AVAILABLE_DATA) {
@@ -77669,8 +75880,12 @@ const DisclosureInterstitial = React__default.forwardRef((props, interstitialNav
77669
75880
  {
77670
75881
  "data-test": "privacy-policy-button",
77671
75882
  onClick: () => {
77672
- scrollToTop();
77673
- setCurrentView(VIEWS$1.PRIVACY_POLICY);
75883
+ if (showExternalLinkPopup) {
75884
+ scrollToTop();
75885
+ setCurrentView(VIEWS$1.PRIVACY_POLICY);
75886
+ } else {
75887
+ goToUrlLink("https://www.mx.com/privacy/", true);
75888
+ }
77674
75889
  },
77675
75890
  style: styles.link,
77676
75891
  variant: "ParagraphSmall",
@@ -78521,7 +76736,7 @@ const Credentials = React__default.forwardRef(
78521
76736
  {
78522
76737
  InputProps: { endAdornment: /* @__PURE__ */ jsxRuntimeExports.jsx(PasswordShowButton, {}) },
78523
76738
  autoCapitalize: "none",
78524
- autoComplete: "new-password",
76739
+ autoComplete: "off",
78525
76740
  disabled: isProcessingMember,
78526
76741
  error: validations.isError || !!errors[field.field_name],
78527
76742
  fullWidth: true,
@@ -78533,7 +76748,6 @@ const Credentials = React__default.forwardRef(
78533
76748
  },
78534
76749
  inputRef: (el) => inputRefs.current[field.field_name] = el,
78535
76750
  label: field.label,
78536
- name: field.field_name,
78537
76751
  onBlur: handleBlur,
78538
76752
  onChange: (e) => {
78539
76753
  handleSpaceValidation(e);
@@ -78546,11 +76760,11 @@ const Credentials = React__default.forwardRef(
78546
76760
  type: validations.showPassword ? "text" : "password",
78547
76761
  value: values[field.field_name] || ""
78548
76762
  }
78549
- ) }) : /* @__PURE__ */ jsxRuntimeExports.jsx("div", { style: errors[field.field_name] ? styles.inputError : styles.input, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
76763
+ ) }) : /* @__PURE__ */ jsxRuntimeExports.jsx("div", { style: errors[field.field_name] && styles.inputError, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
78550
76764
  ProtectedTextField,
78551
76765
  {
78552
76766
  autoCapitalize: "none",
78553
- autoComplete: "new-password",
76767
+ autoComplete: "off",
78554
76768
  disabled: isProcessingMember,
78555
76769
  error: !!errors[field.field_name],
78556
76770
  fullWidth: true,
@@ -78562,14 +76776,13 @@ const Credentials = React__default.forwardRef(
78562
76776
  },
78563
76777
  inputRef: (el) => inputRefs.current[field.field_name] = el,
78564
76778
  label: field.label,
78565
- name: field.field_name,
78566
76779
  onChange: handleUserNameTextChange,
78567
76780
  required: true,
78568
76781
  spellCheck: "false",
78569
76782
  value: values[field.field_name] || ""
78570
76783
  }
78571
76784
  ) }) }, field.guid)),
78572
- /* @__PURE__ */ jsxRuntimeExports.jsx(RequiredFieldNote, {}),
76785
+ /* @__PURE__ */ jsxRuntimeExports.jsx(RequiredFieldNote, { styles: { marginTop: "0px", marginBottom: "12px" } }),
78573
76786
  /* @__PURE__ */ jsxRuntimeExports.jsx(SlideDown, { delay: getNextDelay(), children: /* @__PURE__ */ jsxRuntimeExports.jsx(
78574
76787
  Button$2,
78575
76788
  {
@@ -78633,10 +76846,10 @@ const getStyles$L = (tokens) => {
78633
76846
  paddingBottom: tokens.Spacing.XSmall
78634
76847
  },
78635
76848
  form: {
78636
- paddingTop: tokens.Spacing.Medium
78637
- },
78638
- input: {
78639
- marginBottom: tokens.Spacing.Large
76849
+ paddingTop: tokens.Spacing.Large,
76850
+ flexDirection: "column",
76851
+ gap: tokens.Spacing.Large,
76852
+ display: "flex"
78640
76853
  },
78641
76854
  inputError: {
78642
76855
  marginBottom: tokens.Spacing.Large,
@@ -82345,7 +80558,7 @@ AccountInfo.propTypes = {
82345
80558
  onContinue: PropTypes$1.func.isRequired
82346
80559
  };
82347
80560
 
82348
- const ProtectedText = withProtection(Text);
80561
+ const ProtectedText = withProtection(D);
82349
80562
 
82350
80563
  const Edit = createSvgIcon$2(({ color }) => /* @__PURE__ */ jsxRuntimeExports.jsx(
82351
80564
  "path",
@@ -82367,17 +80580,18 @@ const DetailReviewItem = (props) => {
82367
80580
  "data-test": `${props.label.replace(/\s+/g, "-")}-row`,
82368
80581
  style: styles.rowHeader,
82369
80582
  truncate: false,
82370
- variant: "Small",
80583
+ variant: "body2",
82371
80584
  children: props.label
82372
80585
  }
82373
80586
  ),
82374
80587
  /* @__PURE__ */ jsxRuntimeExports.jsx(
82375
80588
  ProtectedText,
82376
80589
  {
80590
+ bold: true,
82377
80591
  "data-test": `${props.value.replace(/\s+/g, "-")}-row`,
82378
- style: styles.bold,
80592
+ style: styles.rowValue,
82379
80593
  truncate: false,
82380
- variant: "Body",
80594
+ variant: "body1",
82381
80595
  children: props.value
82382
80596
  }
82383
80597
  )
@@ -82418,8 +80632,7 @@ const getStyles$n = (tokens) => ({
82418
80632
  rowHeader: {
82419
80633
  color: tokens.TextColor.InputLabel
82420
80634
  },
82421
- bold: {
82422
- fontWeight: tokens.FontWeight.Bold,
80635
+ rowValue: {
82423
80636
  overflowWrap: "anywhere"
82424
80637
  },
82425
80638
  editIcon: {
@@ -82672,17 +80885,18 @@ const ComeBack = ({ microdeposit, onDone }) => {
82672
80885
  "data-test": "title-header",
82673
80886
  style: styles.title,
82674
80887
  truncate: false,
82675
- variant: "H2",
80888
+ variant: "h2",
82676
80889
  children: __("Check back soon")
82677
80890
  }
82678
80891
  ),
82679
80892
  /* @__PURE__ */ jsxRuntimeExports.jsx(
82680
80893
  ProtectedText,
82681
80894
  {
80895
+ component: "p",
82682
80896
  "data-test": "thanks-paragraph",
82683
80897
  role: "text",
82684
80898
  truncate: false,
82685
- variant: "Paragraph",
80899
+ variant: "subtitle1",
82686
80900
  /* --TR: Full string "Thanks for submitting your account info. Check back soon! In the next few days you should find two small deposits less than a dollar each in your {accountName} account. When you see them, come back here and enter the amounts." */
82687
80901
  children: __(
82688
80902
  "Thanks for submitting your account info. Check back soon! In the next few days you should find two small deposits less than a dollar each in your %1 account. When you see them, come back here and enter the amounts.",
@@ -82808,7 +81022,7 @@ const VerifyDeposits = ({ microdeposit, onSuccess }) => {
82808
81022
  "data-test": "title-header",
82809
81023
  style: styles.title,
82810
81024
  truncate: false,
82811
- variant: "H2",
81025
+ variant: "h2",
82812
81026
  children: __("Enter deposit amounts")
82813
81027
  }
82814
81028
  ),
@@ -82819,7 +81033,7 @@ const VerifyDeposits = ({ microdeposit, onSuccess }) => {
82819
81033
  "data-test": "deposit-paragraph",
82820
81034
  style: styles.subtitle,
82821
81035
  truncate: false,
82822
- variant: "Paragraph",
81036
+ variant: "subtitle1",
82823
81037
  /* --TR: Full string "Please find the two small deposits less than a dollar each in your {accountName} account, and enter the amounts here." */
82824
81038
  children: __(
82825
81039
  "Please find the two small deposits less than a dollar each in your %1 account, and enter the amounts here.",
@@ -82835,7 +81049,7 @@ const VerifyDeposits = ({ microdeposit, onSuccess }) => {
82835
81049
  role: "alert",
82836
81050
  style: styles.messageBox,
82837
81051
  variant: "error",
82838
- children: /* @__PURE__ */ jsxRuntimeExports.jsx(D, { "data-test": "input-error-text", truncate: false, variant: "ParagraphSmall", children: state.submittingError ? __("We're unable to submit your deposit amounts. Please try again.") : __("One or more of the amounts was incorrect. Please try again.") })
81052
+ children: /* @__PURE__ */ jsxRuntimeExports.jsx(D, { "data-test": "input-error-text", truncate: false, variant: "subtitle1", children: state.submittingError ? __("We're unable to submit your deposit amounts. Please try again.") : __("One or more of the amounts was incorrect. Please try again.") })
82839
81053
  }
82840
81054
  ) }),
82841
81055
  /* @__PURE__ */ jsxRuntimeExports.jsxs("form", { onSubmit: (e) => e.preventDefault(), children: [
@@ -82991,21 +81205,21 @@ const MicrodepositErrors = ({
82991
81205
  };
82992
81206
  return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { ref: containerRef, children: [
82993
81207
  /* @__PURE__ */ jsxRuntimeExports.jsxs(SlideDown, { children: [
82994
- /* @__PURE__ */ jsxRuntimeExports.jsx("div", { style: styles.header, children: /* @__PURE__ */ jsxRuntimeExports.jsx(D, { component: "h2", style: styles.title, truncate: false, variant: "H2", children: getTitle() }) }),
82995
- /* @__PURE__ */ jsxRuntimeExports.jsx(MessageBox, { style: styles.messageBox, variant: "error", children: /* @__PURE__ */ jsxRuntimeExports.jsx(D, { component: "p", role: "alert", truncate: false, variant: "ParagraphSmall", children: getMessage() }) })
81208
+ /* @__PURE__ */ jsxRuntimeExports.jsx("div", { style: styles.header, children: /* @__PURE__ */ jsxRuntimeExports.jsx(D, { component: "h2", style: styles.title, truncate: false, variant: "h2", children: getTitle() }) }),
81209
+ /* @__PURE__ */ jsxRuntimeExports.jsx(MessageBox, { style: styles.messageBox, variant: "error", children: /* @__PURE__ */ jsxRuntimeExports.jsx(D, { component: "p", role: "alert", truncate: false, variant: "subtitle1", children: getMessage() }) })
82996
81210
  ] }),
82997
81211
  /* @__PURE__ */ jsxRuntimeExports.jsxs(SlideDown, { delay: 100, children: [
82998
81212
  /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: dist.css(styles.infoRow), children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { style: styles.textGroup, children: [
82999
- /* @__PURE__ */ jsxRuntimeExports.jsx(D, { style: styles.rowHeader, truncate: false, variant: "Small", children: __("Account type") }),
83000
- /* @__PURE__ */ jsxRuntimeExports.jsx(D, { style: styles.bold, truncate: false, variant: "Body", children: accountType ? AccountTypeLabels[accountType] : "-" })
81213
+ /* @__PURE__ */ jsxRuntimeExports.jsx(D, { style: styles.rowHeader, truncate: false, variant: "body2", children: __("Account type") }),
81214
+ /* @__PURE__ */ jsxRuntimeExports.jsx(D, { bold: true, style: styles.rowValue, truncate: false, variant: "body1", children: accountType ? AccountTypeLabels[accountType] : "-" })
83001
81215
  ] }) }),
83002
81216
  /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: dist.css(styles.infoRow), children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { style: styles.textGroup, children: [
83003
- /* @__PURE__ */ jsxRuntimeExports.jsx(D, { style: styles.rowHeader, truncate: false, variant: "Small", children: __("Routing number") }),
83004
- /* @__PURE__ */ jsxRuntimeExports.jsx(ProtectedText, { style: styles.bold, truncate: false, variant: "Body", children: routingNumber || "-" })
81217
+ /* @__PURE__ */ jsxRuntimeExports.jsx(D, { style: styles.rowHeader, truncate: false, variant: "body2", children: __("Routing number") }),
81218
+ /* @__PURE__ */ jsxRuntimeExports.jsx(ProtectedText, { bold: true, style: styles.rowValue, truncate: false, variant: "body1", children: routingNumber || "-" })
83005
81219
  ] }) }),
83006
81220
  /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: dist.css(styles.infoRow), children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { style: styles.textGroup, children: [
83007
- /* @__PURE__ */ jsxRuntimeExports.jsx(D, { style: styles.rowHeader, truncate: false, variant: "Small", children: __("Account number") }),
83008
- /* @__PURE__ */ jsxRuntimeExports.jsx(ProtectedText, { style: styles.bold, truncate: false, variant: "Body", children: accountNumber ? `•••• ${accountNumber.substr(-4)}` : "-" })
81221
+ /* @__PURE__ */ jsxRuntimeExports.jsx(D, { style: styles.rowHeader, truncate: false, variant: "body2", children: __("Account number") }),
81222
+ /* @__PURE__ */ jsxRuntimeExports.jsx(ProtectedText, { bold: true, style: styles.rowValue, truncate: false, variant: "body1", children: accountNumber ? `•••• ${accountNumber.substr(-4)}` : "-" })
83009
81223
  ] }) })
83010
81224
  ] }),
83011
81225
  /* @__PURE__ */ jsxRuntimeExports.jsxs(SlideDown, { delay: 200, children: [
@@ -83052,8 +81266,7 @@ const getStyles$j = (tokens) => ({
83052
81266
  rowHeader: {
83053
81267
  color: tokens.TextColor.InputLabel
83054
81268
  },
83055
- bold: {
83056
- fontWeight: tokens.FontWeight.Bold,
81269
+ rowValue: {
83057
81270
  overflowWrap: "anywhere"
83058
81271
  },
83059
81272
  button: {