@wise/dynamic-flow-client-internal 5.18.1 → 5.19.3

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/build/main.mjs CHANGED
@@ -34,7 +34,11 @@ var __objRest = (source, exclude) => {
34
34
  return target;
35
35
  };
36
36
  var __commonJS = (cb, mod) => function __require() {
37
- return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
37
+ try {
38
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
39
+ } catch (e) {
40
+ throw mod = 0, e;
41
+ }
38
42
  };
39
43
  var __copyProps = (to, from, except, desc) => {
40
44
  if (from && typeof from === "object" || typeof from === "function") {
@@ -123,7 +127,7 @@ import { useDynamicFlow } from "@wise/dynamic-flow-client";
123
127
  // src/dynamicFlow/telemetry/app-version.ts
124
128
  var appVersion = (
125
129
  // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
126
- typeof process !== "undefined" ? "5.18.1" : "0.0.0"
130
+ typeof process !== "undefined" ? "5.19.3" : "0.0.0"
127
131
  );
128
132
 
129
133
  // src/dynamicFlow/context-menu/useContextMenu.tsx
@@ -361,10 +365,10 @@ var AlertRenderer = {
361
365
  };
362
366
  var mapCtaToAlertAction = (callToAction) => {
363
367
  if (callToAction) {
364
- return __spreadValues(__spreadValues({
368
+ return __spreadValues({
365
369
  text: callToAction.title,
366
370
  "aria-label": callToAction.accessibilityDescription
367
- }, "onClick" in callToAction ? { onClick: callToAction.onClick } : {}), callToAction.href ? { href: callToAction.href, target: "_blank" } : {});
371
+ }, callToAction.getAnchorProps());
368
372
  }
369
373
  return void 0;
370
374
  };
@@ -513,25 +517,25 @@ var isNamedIcon = (name) => {
513
517
  const iconName = toCapitalisedCamelCase(name);
514
518
  return Object.keys(icons).includes(iconName);
515
519
  };
516
- function NamedIcon({ name, size = 24 }) {
520
+ function NamedIcon({ name }) {
517
521
  if (!isNamedIcon(name)) {
518
522
  return null;
519
523
  }
520
524
  const iconName = toCapitalisedCamelCase(name);
521
525
  const Icon = icons[iconName];
522
- return /* @__PURE__ */ jsx7(Icon, { size });
526
+ return /* @__PURE__ */ jsx7(Icon, { size: 24 });
523
527
  }
524
528
  var toCapitalisedCamelCase = (value) => value.split("-").map(capitaliseFirstChar).join("");
525
529
  var capitaliseFirstChar = (value) => value.length === 0 ? "" : `${value[0].toUpperCase()}${value.slice(1)}`;
526
530
 
527
531
  // ../renderers/src/components/icon/DynamicIcon.tsx
528
532
  import { jsx as jsx8 } from "react/jsx-runtime";
529
- function DynamicIcon({ name, size }) {
533
+ function DynamicIcon({ name }) {
530
534
  if (isFlagIcon(name)) {
531
535
  return /* @__PURE__ */ jsx8(FlagIcon, { name });
532
536
  }
533
537
  if (isNamedIcon(name)) {
534
- return /* @__PURE__ */ jsx8(NamedIcon, { name, size });
538
+ return /* @__PURE__ */ jsx8(NamedIcon, { name });
535
539
  }
536
540
  return null;
537
541
  }
@@ -567,7 +571,7 @@ import { jsx as jsx9 } from "react/jsx-runtime";
567
571
  var resolveMediaFromUri = (uri, size) => {
568
572
  const { name, qComponents } = stringToURN(uri);
569
573
  if (isValidIconUrn(name)) {
570
- const icon = /* @__PURE__ */ jsx9(DynamicIcon_default, { name: name.replace("urn:wise:icons:", ""), size: size === 48 ? 32 : size });
574
+ const icon = /* @__PURE__ */ jsx9(DynamicIcon_default, { name: name.replace("urn:wise:icons:", "") });
571
575
  return {
572
576
  icon,
573
577
  color: formatColor(qComponents["foreground-color"]),
@@ -858,7 +862,7 @@ var scrollToIfNotVisible = (ref) => {
858
862
  return;
859
863
  }
860
864
  if (rect.bottom > window.innerHeight || rect.top < 0) {
861
- ref.scrollIntoView({ behavior: "smooth" });
865
+ ref.scrollIntoView({ behavior: "instant" });
862
866
  }
863
867
  };
864
868
 
@@ -1233,6 +1237,7 @@ import { ListItem as ListItem5 } from "@transferwise/components";
1233
1237
  import { ListItem as ListItem4 } from "@transferwise/components";
1234
1238
  import { jsx as jsx27 } from "react/jsx-runtime";
1235
1239
  var getAdditionalInfo = (additionalInfo) => {
1240
+ var _a, _b;
1236
1241
  if (!additionalInfo) {
1237
1242
  return void 0;
1238
1243
  }
@@ -1241,12 +1246,9 @@ var getAdditionalInfo = (additionalInfo) => {
1241
1246
  return /* @__PURE__ */ jsx27(
1242
1247
  ListItem4.AdditionalInfo,
1243
1248
  {
1244
- action: {
1245
- label: text,
1246
- href,
1247
- onClick,
1248
- target: "_blank"
1249
- }
1249
+ action: __spreadValues({
1250
+ label: text
1251
+ }, (_b = (_a = additionalInfo.getAnchorProps) == null ? void 0 : _a.call(additionalInfo)) != null ? _b : { onClick })
1250
1252
  }
1251
1253
  );
1252
1254
  }
@@ -1449,7 +1451,7 @@ var renderDecisionList = ({ options, control }) => {
1449
1451
  disabled,
1450
1452
  media,
1451
1453
  title: itemTitle,
1452
- href,
1454
+ getAnchorProps,
1453
1455
  additionalText,
1454
1456
  inlineAlert,
1455
1457
  supportingValues,
@@ -1467,7 +1469,7 @@ var renderDecisionList = ({ options, control }) => {
1467
1469
  media: getMedia(media, shouldUseAvatar(control, tags)),
1468
1470
  prompt: getInlineAlert(inlineAlert),
1469
1471
  additionalInfo: additionalText ? getAdditionalInfo({ text: additionalText }) : void 0,
1470
- control: href ? /* @__PURE__ */ jsx30(ListItem5.Navigation, { href, target: "_blank" }) : /* @__PURE__ */ jsx30(ListItem5.Navigation, { onClick })
1472
+ control: /* @__PURE__ */ jsx30(ListItem5.Navigation, __spreadValues({}, getAnchorProps()))
1471
1473
  },
1472
1474
  JSON.stringify(rest)
1473
1475
  );
@@ -1945,33 +1947,17 @@ var getCTAControl = (callToAction, { ctaSecondary, fullyInteractive }) => {
1945
1947
  if (!callToAction) {
1946
1948
  return void 0;
1947
1949
  }
1948
- const { accessibilityDescription, href, title, context, onClick } = callToAction;
1950
+ const { accessibilityDescription, title, context } = callToAction;
1949
1951
  const { priority, sentiment } = getPriorityAndSentiment(ctaSecondary, context);
1950
- if (href) {
1951
- return /* @__PURE__ */ jsx44(
1952
- ListItem6.Button,
1953
- {
1954
- href,
1955
- target: "_blank",
1956
- rel: "noopener noreferrer",
1957
- partiallyInteractive: !fullyInteractive,
1958
- priority,
1959
- "aria-description": accessibilityDescription,
1960
- sentiment,
1961
- children: title
1962
- }
1963
- );
1964
- }
1965
1952
  return /* @__PURE__ */ jsx44(
1966
1953
  ListItem6.Button,
1967
- {
1968
- "aria-description": accessibilityDescription,
1954
+ __spreadProps(__spreadValues({}, callToAction.getAnchorProps()), {
1969
1955
  partiallyInteractive: !fullyInteractive,
1970
1956
  priority,
1957
+ "aria-description": accessibilityDescription,
1971
1958
  sentiment,
1972
- onClick,
1973
1959
  children: title
1974
- }
1960
+ })
1975
1961
  );
1976
1962
  };
1977
1963
  var getPriorityAndSentiment = (ctaSecondary, context) => {
@@ -1989,20 +1975,10 @@ var getHeaderAction = (callToAction) => {
1989
1975
  if (!callToAction) {
1990
1976
  return void 0;
1991
1977
  }
1992
- const { accessibilityDescription, href, title, onClick } = callToAction;
1993
- return href ? {
1994
- "aria-label": accessibilityDescription,
1995
- text: title,
1996
- href,
1997
- target: "_blank"
1998
- } : {
1999
- "aria-label": accessibilityDescription,
2000
- text: title,
2001
- onClick: (event) => {
2002
- event.preventDefault();
2003
- onClick();
2004
- }
2005
- };
1978
+ return __spreadValues({
1979
+ "aria-label": callToAction.accessibilityDescription,
1980
+ text: callToAction.title
1981
+ }, callToAction.getAnchorProps());
2006
1982
  };
2007
1983
 
2008
1984
  // ../renderers/src/ListRenderer.tsx
@@ -3623,7 +3599,7 @@ var StatusListRenderer = {
3623
3599
  render: ({ margin, items, title }) => /* @__PURE__ */ jsxs25("div", { className: getMargin(margin), children: [
3624
3600
  title ? /* @__PURE__ */ jsx76(Header9, { title }) : null,
3625
3601
  items.map((item) => {
3626
- const { callToAction, description, icon, status, title: itemTitle } = item;
3602
+ const { callToAction, description, title: itemTitle } = item;
3627
3603
  return /* @__PURE__ */ jsx76(
3628
3604
  ListItem12,
3629
3605
  {
@@ -3633,12 +3609,9 @@ var StatusListRenderer = {
3633
3609
  additionalInfo: callToAction ? /* @__PURE__ */ jsx76(
3634
3610
  ListItem12.AdditionalInfo,
3635
3611
  {
3636
- action: {
3637
- href: callToAction.href,
3638
- onClick: callToAction.href ? void 0 : callToAction.onClick,
3639
- label: callToAction.title,
3640
- target: "_blank"
3641
- }
3612
+ action: __spreadValues({
3613
+ label: callToAction.title
3614
+ }, callToAction.getAnchorProps())
3642
3615
  }
3643
3616
  ) : void 0
3644
3617
  },
@@ -4255,12 +4228,9 @@ function UpsellRendererComponent(props) {
4255
4228
  className: getMargin(margin),
4256
4229
  mediaName: getMediaName(media),
4257
4230
  title: text,
4258
- action: {
4259
- href: callToAction.href,
4260
- onClick: callToAction.href ? void 0 : callToAction.onClick,
4261
- target: callToAction.href ? "_blank" : void 0,
4231
+ action: __spreadValues({
4262
4232
  text: callToAction.title
4263
- },
4233
+ }, callToAction.getAnchorProps()),
4264
4234
  onDismiss: onDismiss ? () => {
4265
4235
  setIsVisible(false);
4266
4236
  onDismiss();
@@ -4270,7 +4240,7 @@ function UpsellRendererComponent(props) {
4270
4240
  }
4271
4241
  var urnPrefix2 = "urn:wise:illustrations:";
4272
4242
  var getMediaName = (media) => {
4273
- if (media && media.type === "image" && media.uri.startsWith(urnPrefix2)) {
4243
+ if ((media == null ? void 0 : media.type) === "image" && media.uri.startsWith(urnPrefix2)) {
4274
4244
  const mediaName = media.uri.substring(urnPrefix2.length);
4275
4245
  if (supportedMediaNames.includes(mediaName)) {
4276
4246
  return mediaName;
@@ -4460,13 +4430,26 @@ var logToRollbar = (level, message, extra) => {
4460
4430
 
4461
4431
  // src/dynamicFlow/telemetry/getTrackEvent.ts
4462
4432
  import { eventNames } from "@wise/dynamic-flow-client";
4463
- var prefix = "Dynamic Flow - ";
4464
- var getTrackEvent = (onEvent, onAnalytics) => (name, properties) => {
4465
- onEvent == null ? void 0 : onEvent(name, properties);
4466
- if (includeInAnalytics(name)) {
4467
- onAnalytics == null ? void 0 : onAnalytics(name, properties);
4433
+
4434
+ // src/dynamicFlow/telemetry/dispatchAnalyticsEvent.ts
4435
+ var dispatchAnalyticsEvent = (eventName, properties) => {
4436
+ const props = __spreadValues({ dfFallbackAnalytics: true }, properties);
4437
+ if (typeof window !== "undefined" && window.mixpanel && typeof window.mixpanel.track === "function") {
4438
+ window.mixpanel.track(eventName, props);
4468
4439
  }
4469
4440
  };
4441
+
4442
+ // src/dynamicFlow/telemetry/getTrackEvent.ts
4443
+ var prefix = "Dynamic Flow - ";
4444
+ var getTrackEvent = (onEvent, onAnalytics) => {
4445
+ const dispatchAnalytics = !onAnalytics && !onEvent ? dispatchAnalyticsEvent : onAnalytics;
4446
+ return (name, properties) => {
4447
+ onEvent == null ? void 0 : onEvent(name, properties);
4448
+ if (includeInAnalytics(name)) {
4449
+ dispatchAnalytics == null ? void 0 : dispatchAnalytics(name, properties);
4450
+ }
4451
+ };
4452
+ };
4470
4453
  var includeInAnalytics = (name) => {
4471
4454
  const eventName = name.startsWith(prefix) ? name.slice(prefix.length) : name;
4472
4455
  if (isCoreEventName(eventName)) {
@@ -4665,7 +4648,7 @@ var cs_default = {
4665
4648
  "df.wise.ControlFeedback.minimum": "Zadejte \u010D\xEDslo, kter\xE9 je {minimum} nebo vy\u0161\u0161\xED.",
4666
4649
  "df.wise.ControlFeedback.minimumDate": "Zadejte datum, kter\xE9 je {minimum} nebo potom.",
4667
4650
  "df.wise.ControlFeedback.pattern": "Zadejte to pros\xEDm ve spr\xE1vn\xE9m form\xE1tu.",
4668
- "df.wise.ControlFeedback.patternDate": "Zadejte pros\xEDm datum ve spr\xE1vn\xE9m form\xE1tu.",
4651
+ "df.wise.ControlFeedback.patternDate": "Zadejte datum ve spr\xE1vn\xE9m form\xE1tu.",
4669
4652
  "df.wise.ControlFeedback.required": "Vypl\u0148te pros\xEDm toto pole.",
4670
4653
  "df.wise.ControlFeedback.type": "Nespr\xE1vn\xFD typ",
4671
4654
  "df.wise.CopyFeedback.copy": "Zkop\xEDrov\xE1no do schr\xE1nky",
@@ -4759,7 +4742,7 @@ var en_default = {
4759
4742
  "df.wise.ControlFeedback.minimum": "Please enter a number that's {minimum} or more.",
4760
4743
  "df.wise.ControlFeedback.minimumDate": "Please enter a date that's on or after {minimum}.",
4761
4744
  "df.wise.ControlFeedback.pattern": "Please enter this in the correct format.",
4762
- "df.wise.ControlFeedback.patternDate": "Please enter a date in the corrrect format.",
4745
+ "df.wise.ControlFeedback.patternDate": "Please enter a date in the correct format.",
4763
4746
  "df.wise.ControlFeedback.required": "Please fill out this field.",
4764
4747
  "df.wise.ControlFeedback.type": "Incorrect type",
4765
4748
  "df.wise.CopyFeedback.copy": "Copied to clipboard",
@@ -4806,7 +4789,7 @@ var es_default = {
4806
4789
  "df.wise.ControlFeedback.minimum": "Introduce una cifra igual o inferior a {minimum}.",
4807
4790
  "df.wise.ControlFeedback.minimumDate": "Introduce una fecha que sea igual o posterior al {minimum}.",
4808
4791
  "df.wise.ControlFeedback.pattern": "Utiliza el formato correcto.",
4809
- "df.wise.ControlFeedback.patternDate": "Introduce la fecha en un formato correcto.",
4792
+ "df.wise.ControlFeedback.patternDate": "Introduce la fecha en el formato correcto.",
4810
4793
  "df.wise.ControlFeedback.required": "Completa este campo.",
4811
4794
  "df.wise.ControlFeedback.type": "Tipo incorrecto",
4812
4795
  "df.wise.CopyFeedback.copy": "Copiado al portapapeles",
@@ -4947,7 +4930,7 @@ var id_default = {
4947
4930
  "df.wise.ControlFeedback.minimum": "Harap masukkan angka paling kecil {minimum} atau lebih dari itu.",
4948
4931
  "df.wise.ControlFeedback.minimumDate": "Harap masukkan tanggal pada atau setelah {minimum}.",
4949
4932
  "df.wise.ControlFeedback.pattern": "Mohon masukkan ini dalam format yang benar.",
4950
- "df.wise.ControlFeedback.patternDate": "Harap masukkan tanggal dalam format yang benar.",
4933
+ "df.wise.ControlFeedback.patternDate": "Mohon masukkan tanggal dengan format yang benar.",
4951
4934
  "df.wise.ControlFeedback.required": "Harap isi kolom ini.",
4952
4935
  "df.wise.ControlFeedback.type": "Tipe salah",
4953
4936
  "df.wise.CopyFeedback.copy": "Disalin ke clipboard",
@@ -5088,7 +5071,7 @@ var nl_default = {
5088
5071
  "df.wise.ControlFeedback.minimum": "Voer een getal in dat {minimum} of hoger is.",
5089
5072
  "df.wise.ControlFeedback.minimumDate": "Voer een datum in die op of na {minimum} is.",
5090
5073
  "df.wise.ControlFeedback.pattern": "Voer dit in de juiste indeling in.",
5091
- "df.wise.ControlFeedback.patternDate": "Voer een datum in de juiste indeling in.",
5074
+ "df.wise.ControlFeedback.patternDate": "Voer een datum in met de juiste notatie.",
5092
5075
  "df.wise.ControlFeedback.required": "Vul dit veld in.",
5093
5076
  "df.wise.ControlFeedback.type": "Onjuist type",
5094
5077
  "df.wise.CopyFeedback.copy": "Naar klembord gekopieerd",
@@ -5323,7 +5306,7 @@ var th_default = {
5323
5306
  "df.wise.ControlFeedback.minimum": "\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02 {minimum} \u0E2B\u0E23\u0E37\u0E2D\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32",
5324
5307
  "df.wise.ControlFeedback.minimumDate": "\u0E42\u0E1B\u0E23\u0E14\u0E43\u0E2A\u0E48\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E40\u0E1B\u0E47\u0E19 {minimum} \u0E2B\u0E23\u0E37\u0E2D\u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E19\u0E31\u0E49\u0E19",
5325
5308
  "df.wise.ControlFeedback.pattern": "\u0E42\u0E1B\u0E23\u0E14\u0E43\u0E2A\u0E48\u0E43\u0E19\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07",
5326
- "df.wise.ControlFeedback.patternDate": "\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E43\u0E19\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07",
5309
+ "df.wise.ControlFeedback.patternDate": "\u0E42\u0E1B\u0E23\u0E14\u0E43\u0E2A\u0E48\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E43\u0E19\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07",
5327
5310
  "df.wise.ControlFeedback.required": "\u0E42\u0E1B\u0E23\u0E14\u0E43\u0E2A\u0E48\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E43\u0E19\u0E0A\u0E48\u0E2D\u0E07\u0E19\u0E35\u0E49",
5328
5311
  "df.wise.ControlFeedback.type": "\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07",
5329
5312
  "df.wise.CopyFeedback.copy": "\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E04\u0E25\u0E34\u0E1B\u0E1A\u0E2D\u0E23\u0E4C\u0E14",
@@ -5417,11 +5400,11 @@ var zh_CN_default = {
5417
5400
  "df.wise.ControlFeedback.minimum": "\u8BF7\u8F93\u5165\u4E00\u4E2A\u5927\u4E8E\u6216\u7B49\u4E8E {minimum} \u7684\u6570\u5B57",
5418
5401
  "df.wise.ControlFeedback.minimumDate": "\u8BF7\u8F93\u5165 {minimum} \u6216\u4E4B\u540E\u7684\u65E5\u671F",
5419
5402
  "df.wise.ControlFeedback.pattern": "\u8BF7\u4EE5\u6B63\u786E\u7684\u683C\u5F0F\u8F93\u5165",
5420
- "df.wise.ControlFeedback.patternDate": "\u8BF7\u4EE5\u6B63\u786E\u7684\u683C\u5F0F\u8F93\u5165\u65E5\u671F",
5403
+ "df.wise.ControlFeedback.patternDate": "\u8BF7\u4EE5\u6B63\u786E\u7684\u683C\u5F0F\u8F93\u5165\u65E5\u671F\u3002",
5421
5404
  "df.wise.ControlFeedback.required": "\u8BF7\u586B\u5199\u6B64\u5B57\u6BB5\u3002",
5422
5405
  "df.wise.ControlFeedback.type": "\u7C7B\u578B\u9519\u8BEF",
5423
5406
  "df.wise.CopyFeedback.copy": "\u5DF2\u590D\u5236\u5230\u526A\u8D34\u677F",
5424
- "df.wise.CopyFeedback.copyFailed": "\u590D\u5236\u5230\u526A\u8D34\u677F\u5931\u8D25",
5407
+ "df.wise.CopyFeedback.copyFailed": "\u65E0\u6CD5\u590D\u5236\u5230\u526A\u8D34\u677F",
5425
5408
  "df.wise.DynamicParagraph.copied": "\u5DF2\u590D\u5236\u5230\u526A\u8D34\u677F",
5426
5409
  "df.wise.DynamicParagraph.copy": "\u590D\u5236",
5427
5410
  "df.wise.ErrorBoundary.errorAlert": "\u51FA\u9519\u4E86\u3002",
@@ -5436,7 +5419,7 @@ var zh_CN_default = {
5436
5419
  "df.wise.MultipleFileUploadSchema.maxItemsError": "\u8BF7\u4E0A\u4F20\u4E0D\u8D85\u8FC7 {maxItems} \u4E2A\u6587\u4EF6\u3002",
5437
5420
  "df.wise.MultipleFileUploadSchema.minItemsError": "\u8BF7\u4E0A\u4F20\u81F3\u5C11 {minItems} \u4E2A\u6587\u4EF6\u3002",
5438
5421
  "df.wise.PersistAsyncSchema.genericError": "\u51FA\u9519\u4E86\uFF0C\u8BF7\u91CD\u8BD5\u3002",
5439
- "df.wise.SearchLayout.loading": "\u6B63\u5728\u52A0\u8F7D\u2026",
5422
+ "df.wise.SearchLayout.loading": "\u6B63\u5728\u52A0\u8F7D\u2026\u2026",
5440
5423
  "df.wise.back.label": "\u8FD4\u56DE",
5441
5424
  "df.wise.filter.noResults": "\u6682\u65E0\u7ED3\u679C",
5442
5425
  "df.wise.filter.placeholder": "\u5F00\u59CB\u8F93\u5165\u4EE5\u641C\u7D22",
@@ -5464,7 +5447,7 @@ var zh_HK_default = {
5464
5447
  "df.wise.ControlFeedback.minimum": "\u8ACB\u8F38\u5165\u4E00\u500B\u5927\u65BC\u6216\u7B49\u65BC{minimum}\u7684\u6578\u5B57\u3002",
5465
5448
  "df.wise.ControlFeedback.minimumDate": "\u8ACB\u8F38\u5165{minimum}\u6216\u4E4B\u5F8C\u7684\u65E5\u671F\u3002",
5466
5449
  "df.wise.ControlFeedback.pattern": "\u8ACB\u4EE5\u6B63\u78BA\u683C\u5F0F\u8F38\u5165\u5185\u5BB9\u3002",
5467
- "df.wise.ControlFeedback.patternDate": "\u8ACB\u4EE5\u6B63\u78BA\u683C\u5F0F\u8F38\u5165\u65E5\u671F\u3002",
5450
+ "df.wise.ControlFeedback.patternDate": "\u8ACB\u4EE5\u6B63\u78BA\u7684\u683C\u5F0F\u8F38\u5165\u65E5\u671F\u3002",
5468
5451
  "df.wise.ControlFeedback.required": "\u8ACB\u586B\u5BEB\u6B64\u6B04\u4F4D\u3002",
5469
5452
  "df.wise.ControlFeedback.type": "\u932F\u8AA4\u7684\u985E\u578B",
5470
5453
  "df.wise.CopyFeedback.copy": "\u8907\u88FD\u5230\u526A\u8CBC\u677F",