@telefonica/mistica 16.0.0 → 16.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (152) hide show
  1. package/README.md +11 -9
  2. package/css/mistica.css +1 -1
  3. package/dist/box.d.ts +1 -0
  4. package/dist/box.js +12 -12
  5. package/dist/card.d.ts +14 -2
  6. package/dist/card.js +210 -206
  7. package/dist/credit-card-expiration-field.d.ts +1 -1
  8. package/dist/credit-card-expiration-field.js +53 -52
  9. package/dist/credit-card-number-field.d.ts +1 -1
  10. package/dist/credit-card-number-field.js +47 -45
  11. package/dist/cvv-field.d.ts +1 -1
  12. package/dist/cvv-field.js +38 -37
  13. package/dist/date-field.d.ts +1 -1
  14. package/dist/date-field.js +15 -13
  15. package/dist/date-time-field.d.ts +1 -1
  16. package/dist/date-time-field.js +13 -11
  17. package/dist/decimal-field.d.ts +1 -1
  18. package/dist/decimal-field.js +39 -38
  19. package/dist/email-field.d.ts +1 -1
  20. package/dist/email-field.js +21 -19
  21. package/dist/form-context.d.ts +7 -2
  22. package/dist/form-context.js +69 -62
  23. package/dist/form.d.ts +2 -1
  24. package/dist/form.js +94 -80
  25. package/dist/iban-field.d.ts +1 -1
  26. package/dist/iban-field.js +32 -30
  27. package/dist/index.d.ts +12 -3
  28. package/dist/index.js +19 -8
  29. package/dist/inline.d.ts +2 -1
  30. package/dist/inline.js +16 -15
  31. package/dist/integer-field.d.ts +1 -1
  32. package/dist/integer-field.js +30 -30
  33. package/dist/month-field.d.ts +1 -1
  34. package/dist/month-field.js +15 -13
  35. package/dist/package-version.js +1 -1
  36. package/dist/password-field.d.ts +1 -1
  37. package/dist/password-field.js +24 -22
  38. package/dist/phone-number-field.d.ts +4 -1
  39. package/dist/phone-number-field.js +84 -52
  40. package/dist/pin-field.js +21 -20
  41. package/dist/radio-button.d.ts +1 -0
  42. package/dist/radio-button.js +42 -41
  43. package/dist/rating.css-mistica.js +44 -0
  44. package/dist/rating.css.d.ts +11 -0
  45. package/dist/rating.css.ts.vanilla.css-mistica.js +11 -0
  46. package/dist/rating.d.ts +37 -0
  47. package/dist/rating.js +320 -0
  48. package/dist/search-field.d.ts +1 -0
  49. package/dist/search-field.js +18 -16
  50. package/dist/select.js +36 -33
  51. package/dist/sheet-action-row.css-mistica.js +13 -0
  52. package/dist/sheet-action-row.css.d.ts +1 -0
  53. package/dist/sheet-actions-list.d.ts +26 -0
  54. package/dist/sheet-actions-list.js +147 -0
  55. package/dist/sheet-actions.d.ts +23 -0
  56. package/dist/sheet-actions.js +175 -0
  57. package/dist/{sheet.css-mistica.js → sheet-common.css-mistica.js} +15 -21
  58. package/dist/{sheet.css.d.ts → sheet-common.css.d.ts} +0 -2
  59. package/dist/sheet-common.css.ts.vanilla.css-mistica.js +11 -0
  60. package/dist/sheet-common.d.ts +24 -0
  61. package/dist/sheet-common.js +429 -0
  62. package/dist/sheet-info.css-mistica.js +12 -0
  63. package/dist/sheet-info.css.d.ts +1 -0
  64. package/dist/sheet-info.d.ts +28 -0
  65. package/dist/sheet-info.js +156 -0
  66. package/dist/sheet-native.d.ts +2 -0
  67. package/dist/sheet-native.js +173 -0
  68. package/dist/sheet-radio-list.d.ts +22 -0
  69. package/dist/sheet-radio-list.js +143 -0
  70. package/dist/sheet-root.d.ts +4 -85
  71. package/dist/sheet-root.js +48 -322
  72. package/dist/sheet-types.d.ts +88 -0
  73. package/dist/sheet-web.d.ts +8 -0
  74. package/dist/sheet-web.js +183 -0
  75. package/dist/slider.js +40 -39
  76. package/dist/switch-component.js +18 -17
  77. package/dist/text-field-base.d.ts +3 -1
  78. package/dist/text-field-base.js +74 -66
  79. package/dist/text-field-components.css-mistica.js +14 -14
  80. package/dist/text-field-components.css.d.ts +2 -2
  81. package/dist/text-field-components.js +49 -39
  82. package/dist/text-field.d.ts +1 -0
  83. package/dist/text-field.js +24 -22
  84. package/dist/text-tokens.d.ts +14 -0
  85. package/dist/text-tokens.js +145 -89
  86. package/dist/theme-context-provider.js +6 -5
  87. package/dist/theme.d.ts +2 -0
  88. package/dist/utils/credit-card.d.ts +2 -2
  89. package/dist/utils/credit-card.js +1 -1
  90. package/dist/vivinho-loading-animation/in-lottie.json.js +544 -612
  91. package/dist/vivinho-loading-animation/out-lottie.json.js +828 -896
  92. package/dist/vivinho-loading-animation/pulse-lottie.json.js +798 -866
  93. package/dist/vivinho-loading-animation/wave-lottie.json.js +4303 -4409
  94. package/dist-es/box.js +18 -18
  95. package/dist-es/card.js +305 -301
  96. package/dist-es/credit-card-expiration-field.js +57 -56
  97. package/dist-es/credit-card-number-field.js +74 -72
  98. package/dist-es/cvv-field.js +82 -81
  99. package/dist-es/date-field.js +29 -27
  100. package/dist-es/date-time-field.js +29 -27
  101. package/dist-es/decimal-field.js +46 -45
  102. package/dist-es/email-field.js +26 -24
  103. package/dist-es/form-context.js +70 -63
  104. package/dist-es/form.js +102 -88
  105. package/dist-es/iban-field.js +35 -33
  106. package/dist-es/index.js +1822 -1817
  107. package/dist-es/inline.js +26 -25
  108. package/dist-es/integer-field.js +31 -31
  109. package/dist-es/month-field.js +28 -26
  110. package/dist-es/package-version.js +1 -1
  111. package/dist-es/password-field.js +37 -35
  112. package/dist-es/phone-number-field.js +92 -60
  113. package/dist-es/pin-field.js +32 -31
  114. package/dist-es/radio-button.js +42 -41
  115. package/dist-es/rating.css-mistica.js +6 -0
  116. package/dist-es/rating.css.ts.vanilla.css-mistica.js +2 -0
  117. package/dist-es/rating.js +257 -0
  118. package/dist-es/search-field.js +33 -31
  119. package/dist-es/select.js +49 -46
  120. package/dist-es/sheet-action-row.css-mistica.js +4 -0
  121. package/dist-es/sheet-actions-list.js +92 -0
  122. package/dist-es/sheet-actions.js +125 -0
  123. package/dist-es/sheet-common.css-mistica.js +4 -0
  124. package/dist-es/sheet-common.css.ts.vanilla.css-mistica.js +2 -0
  125. package/dist-es/sheet-common.js +366 -0
  126. package/dist-es/sheet-info.css-mistica.js +3 -0
  127. package/dist-es/sheet-info.js +101 -0
  128. package/dist-es/sheet-native.js +164 -0
  129. package/dist-es/sheet-radio-list.js +88 -0
  130. package/dist-es/sheet-root.js +50 -319
  131. package/dist-es/sheet-web.js +128 -0
  132. package/dist-es/slider.js +49 -48
  133. package/dist-es/style.css +1 -1
  134. package/dist-es/switch-component.js +27 -26
  135. package/dist-es/text-field-base.js +108 -100
  136. package/dist-es/text-field-components.css-mistica.js +2 -2
  137. package/dist-es/text-field-components.js +70 -60
  138. package/dist-es/text-field.js +33 -31
  139. package/dist-es/text-tokens.js +80 -45
  140. package/dist-es/theme-context-provider.js +20 -19
  141. package/dist-es/utils/credit-card.js +1 -1
  142. package/dist-es/vivinho-loading-animation/in-lottie.json.js +534 -599
  143. package/dist-es/vivinho-loading-animation/out-lottie.json.js +821 -886
  144. package/dist-es/vivinho-loading-animation/pulse-lottie.json.js +790 -855
  145. package/dist-es/vivinho-loading-animation/wave-lottie.json.js +4297 -4400
  146. package/package.json +4 -3
  147. package/dist/sheet.d.ts +0 -107
  148. package/dist/sheet.js +0 -642
  149. package/dist-es/sheet.css-mistica.js +0 -4
  150. package/dist-es/sheet.js +0 -567
  151. /package/dist/{sheet.css.ts.vanilla.css-mistica.js → sheet-action-row.css.ts.vanilla.css-mistica.js} +0 -0
  152. /package/dist-es/{sheet.css.ts.vanilla.css-mistica.js → sheet-action-row.css.ts.vanilla.css-mistica.js} +0 -0
@@ -51,104 +51,114 @@ function _object_spread_props(target, source) {
51
51
  }
52
52
  return target;
53
53
  }
54
- import { jsxs as d, jsx as t, Fragment as N } from "react/jsx-runtime";
55
- import * as p from "react";
56
- import c from "classnames";
57
- import { useIsInverseOrMediaVariant as C } from "./theme-variant-context.js";
54
+ import { jsxs as c, jsx as o, Fragment as C } from "react/jsx-runtime";
55
+ import * as g from "react";
56
+ import m from "classnames";
57
+ import { useIsInverseOrMediaVariant as I } from "./theme-variant-context.js";
58
58
  import { useTheme as S } from "./hooks.js";
59
- import { Text1 as v } from "./text.js";
60
- import { labelContainer as k, shrinked as E, labelText as F, helperText as b, leftText as I, rightText as L, fieldContainer as O, fullWidth as P, normalWidth as W, disabled as j, field as w, helperContainer as A } from "./text-field-components.css-mistica.js";
61
- import { sprinkles as T } from "./sprinkles.css-mistica.js";
62
- import { vars as e } from "./skins/skin-contract.css-mistica.js";
59
+ import { Text1 as x } from "./text.js";
60
+ import { labelContainer as T, shrinked as k, labelText as E, helperText as b, leftHelperText as F, warnIcon as L, fieldContainer as O, fullWidth as W, normalWidth as w, disabled as A, field as P, helperContainer as j } from "./text-field-components.css-mistica.js";
61
+ import { sprinkles as v } from "./sprinkles.css-mistica.js";
62
+ import { vars as r } from "./skins/skin-contract.css-mistica.js";
63
63
  import { getPrefixedDataAttributes as D } from "./utils/dom.js";
64
- import { formFieldOptionalLabelSuffix as V } from "./text-tokens.js";
65
- const Q = (param)=>{
66
- let { shrinkLabel: o, forId: s, inputState: r, error: l, children: i, style: a, optional: n } = param;
67
- const f = o || r === "focused" || r === "filled", [u, x] = p.useState("initial"), { texts: m, t: g } = S();
68
- p.useEffect(()=>{
64
+ import { formFieldOptionalLabelSuffix as H } from "./text-tokens.js";
65
+ import R from "./generated/mistica-icons/icon-warning-regular.js";
66
+ const X = (param)=>{
67
+ let { shrinkLabel: t, forId: l, inputState: e, error: s, children: i, style: n, optional: a } = param;
68
+ const f = t || e === "focused" || e === "filled", [u, p] = g.useState("initial"), { texts: d, t: N } = S();
69
+ g.useEffect(()=>{
69
70
  const y = setTimeout(()=>{
70
- process.env.NODE_ENV !== "test" && x("transform 150ms, width 150ms");
71
+ process.env.NODE_ENV !== "test" && p("transform 150ms, width 150ms");
71
72
  });
72
73
  return ()=>{
73
74
  clearTimeout(y);
74
75
  };
75
76
  }, []);
76
- let h = e.colors.textSecondary;
77
- return l && r !== "default" ? h = e.colors.textError : r === "focused" && (h = e.colors.textActivated), /* @__PURE__ */ d("label", {
78
- className: c(k, {
79
- [E]: f
80
- }, T({
77
+ let h = r.colors.textSecondary;
78
+ return s && e !== "default" ? h = r.colors.textError : e === "focused" && (h = r.colors.textActivated), /* @__PURE__ */ c("label", {
79
+ className: m(T, {
80
+ [k]: f
81
+ }, v({
81
82
  color: h
82
83
  })),
83
- htmlFor: s,
84
- style: _object_spread_props(_object_spread({}, a), {
84
+ htmlFor: l,
85
+ style: _object_spread_props(_object_spread({}, n), {
85
86
  transition: u
86
87
  }),
87
88
  children: [
88
- /* @__PURE__ */ t("span", {
89
- className: F,
89
+ /* @__PURE__ */ o("span", {
90
+ className: E,
90
91
  children: i
91
92
  }),
92
- n ? /* @__PURE__ */ d("span", {
93
+ a ? /* @__PURE__ */ c("span", {
93
94
  children: [
94
95
  "\xa0(",
95
- m.formFieldOptionalLabelSuffix || g(V),
96
+ d.formFieldOptionalLabelSuffix || N(H),
96
97
  ")"
97
98
  ]
98
99
  }) : null
99
100
  ]
100
101
  });
101
- }, U = (param)=>{
102
- let { leftText: o, rightText: s, error: r, id: l } = param;
103
- const i = C(), a = i ? e.colors.textPrimaryInverse : r ? e.colors.textError : e.colors.textSecondary, n = i ? e.colors.textPrimaryInverse : e.colors.textSecondary;
104
- return /* @__PURE__ */ d(N, {
102
+ }, Y = (param)=>{
103
+ let { leftText: t, rightText: l, error: e, id: s } = param;
104
+ const i = I(), n = i ? r.colors.textPrimaryInverse : e ? r.colors.textError : r.colors.textSecondary, a = i ? r.colors.textPrimaryInverse : r.colors.textSecondary;
105
+ return /* @__PURE__ */ c(C, {
105
106
  children: [
106
- o && /* @__PURE__ */ t("div", {
107
- className: c(b, I),
108
- children: /* @__PURE__ */ t(v, {
109
- color: a,
110
- regular: !0,
111
- as: "p",
112
- id: l,
113
- children: o
114
- })
107
+ t && /* @__PURE__ */ c("p", {
108
+ className: m(b, F),
109
+ children: [
110
+ e && /* @__PURE__ */ o(x, {
111
+ regular: !0,
112
+ children: /* @__PURE__ */ o(R, {
113
+ color: n,
114
+ className: L
115
+ })
116
+ }),
117
+ /* @__PURE__ */ o(x, {
118
+ color: n,
119
+ regular: !0,
120
+ id: s,
121
+ children: t
122
+ })
123
+ ]
115
124
  }),
116
- s && /* @__PURE__ */ t("div", {
117
- className: c(b, L),
118
- children: /* @__PURE__ */ t(v, {
119
- color: n,
125
+ l && /* @__PURE__ */ o("div", {
126
+ className: m(b),
127
+ children: /* @__PURE__ */ o(x, {
128
+ color: a,
120
129
  regular: !0,
121
130
  as: "p",
122
- children: s
131
+ textAlign: "right",
132
+ children: l
123
133
  })
124
134
  })
125
135
  ]
126
136
  });
127
- }, X = (param)=>{
128
- let { multiline: o, disabled: s, children: r, helperText: l, className: i, fieldRef: a, fullWidth: n, readOnly: f, dataAttributes: u } = param;
137
+ }, Z = (param)=>{
138
+ let { multiline: t, disabled: l, children: e, helperText: s, className: i, fieldRef: n, fullWidth: a, readOnly: f, dataAttributes: u } = param;
129
139
  return(// eslint-disable-next-line jsx-a11y/no-static-element-interactions
130
- /* @__PURE__ */ d("div", _object_spread_props(_object_spread({
131
- className: c(O, n ? P : W, {
132
- [j]: s
140
+ /* @__PURE__ */ c("div", _object_spread_props(_object_spread({
141
+ className: m(O, a ? W : w, {
142
+ [A]: l
133
143
  }),
134
- onClick: (x)=>{
135
- var m;
136
- (m = x.currentTarget.querySelector(o ? "textarea" : "input")) == null || m.focus();
144
+ onClick: (p)=>{
145
+ var d;
146
+ (d = p.currentTarget.querySelector(t ? "textarea" : "input")) == null || d.focus();
137
147
  }
138
148
  }, D(u)), {
139
149
  children: [
140
- /* @__PURE__ */ t("div", {
141
- className: c(w, T({
142
- background: f ? e.colors.neutralLow : e.colors.backgroundContainer
150
+ /* @__PURE__ */ o("div", {
151
+ className: m(P, v({
152
+ background: f ? r.colors.neutralLow : r.colors.backgroundContainer
143
153
  }), i),
144
- ref: a,
145
- children: r
154
+ ref: n,
155
+ children: e
146
156
  }),
147
- l && /* @__PURE__ */ t("div", {
148
- className: A,
149
- children: l
157
+ s && /* @__PURE__ */ o("div", {
158
+ className: j,
159
+ children: s
150
160
  })
151
161
  ]
152
162
  })));
153
163
  };
154
- export { X as FieldContainer, U as HelperText, Q as Label };
164
+ export { Z as FieldContainer, Y as HelperText, X as Label };
@@ -78,28 +78,29 @@ function _object_without_properties_loose(source, excluded) {
78
78
  }
79
79
  return target;
80
80
  }
81
- import { jsx as A } from "react/jsx-runtime";
81
+ import { jsx as E } from "react/jsx-runtime";
82
82
  import * as f from "react";
83
- import { useFieldProps as E } from "./form-context.js";
84
- import { TextFieldBaseAutosuggest as j } from "./text-field-base.js";
85
- import { combineRefs as k } from "./utils/common.js";
86
- import { createChangeEvent as w } from "./utils/dom.js";
87
- import { useIsomorphicLayoutEffect as C } from "./hooks.js";
88
- const H = (i, t, r, c)=>{
89
- C(()=>{
90
- i && t && r && t.length > r && c && c(w(i, t.slice(0, r)));
83
+ import { useFieldProps as j } from "./form-context.js";
84
+ import { TextFieldBaseAutosuggest as k } from "./text-field-base.js";
85
+ import { combineRefs as w } from "./utils/common.js";
86
+ import { createChangeEvent as C } from "./utils/dom.js";
87
+ import { useIsomorphicLayoutEffect as H } from "./hooks.js";
88
+ const I = (i, t, r, c)=>{
89
+ H(()=>{
90
+ i && t && r && t.length > r && c && c(C(i, t.slice(0, r)));
91
91
  }, [
92
92
  c,
93
93
  t,
94
94
  r,
95
95
  i
96
96
  ]);
97
- }, I = /*#__PURE__*/ f.forwardRef((_param, v)=>{
98
- var { disabled: i, error: t, helperText: r, name: c, optional: m, validate: a, onChangeValue: p, onChange: d, value: R, defaultValue: T, onBlur: l, onFocus: u, onPress: x, dataAttributes: g } = _param, s = _object_without_properties(_param, [
97
+ }, K = /*#__PURE__*/ f.forwardRef((_param, F)=>{
98
+ var { disabled: i, error: t, helperText: r, name: c, label: m, optional: a, validate: p, onChangeValue: d, onChange: R, value: T, defaultValue: x, onBlur: l, onFocus: u, onPress: g, dataAttributes: v } = _param, s = _object_without_properties(_param, [
99
99
  "disabled",
100
100
  "error",
101
101
  "helperText",
102
102
  "name",
103
+ "label",
103
104
  "optional",
104
105
  "validate",
105
106
  "onChangeValue",
@@ -111,37 +112,38 @@ const H = (i, t, r, c)=>{
111
112
  "onPress",
112
113
  "dataAttributes"
113
114
  ]);
114
- const e = f.useRef(null), F = (o)=>o, b = (o)=>{
115
+ const e = f.useRef(null), b = (o)=>o, h = (o)=>{
115
116
  s.multiline && e.current && (e.current.scrollTop = 0), l == null || l(o);
116
- }, h = (o)=>{
117
+ }, y = (o)=>{
117
118
  s.multiline && setTimeout(()=>{
118
119
  if (e.current) {
119
- const y = e.current.value;
120
- e.current.value = "", e.current.value = y, e.current.scrollTop = e.current.scrollHeight;
120
+ const A = e.current.value;
121
+ e.current.value = "", e.current.value = A, e.current.scrollTop = e.current.scrollHeight;
121
122
  }
122
123
  }, 0), u == null || u(o);
123
- }, n = E({
124
+ }, n = j({
124
125
  name: c,
125
- value: R,
126
- defaultValue: T,
127
- processValue: F,
126
+ label: m,
127
+ value: T,
128
+ defaultValue: x,
129
+ processValue: b,
128
130
  helperText: r,
129
- optional: m,
131
+ optional: a,
130
132
  error: t,
131
133
  disabled: i,
132
- onBlur: b,
133
- validate: a,
134
- onChange: d,
135
- onChangeValue: p
134
+ onBlur: h,
135
+ validate: p,
136
+ onChange: R,
137
+ onChangeValue: d
136
138
  });
137
- return H(e.current, n.value, s.maxLength, n.onChange), /* @__PURE__ */ A(j, _object_spread_props(_object_spread({}, s, n), {
138
- onClick: x,
139
- inputRef: k(e, n.inputRef, v),
140
- onFocus: h,
139
+ return I(e.current, n.value, s.maxLength, n.onChange), /* @__PURE__ */ E(k, _object_spread_props(_object_spread({}, s, n), {
140
+ onClick: g,
141
+ inputRef: w(e, n.inputRef, F),
142
+ onFocus: y,
141
143
  type: "text",
142
144
  dataAttributes: _object_spread({
143
145
  "component-name": "TextField"
144
- }, g)
146
+ }, v)
145
147
  }));
146
- }), D = I;
147
- export { D as default };
148
+ }), G = K;
149
+ export { G as default };
@@ -18,17 +18,17 @@ const e = {
18
18
  en: "Loading",
19
19
  de: "Wird gespeichert",
20
20
  pt: "Carregando"
21
- }, a = {
21
+ }, s = {
22
22
  es: "Se abre en ventana nueva",
23
23
  en: "Opens in a new window",
24
24
  de: "Wird in neuem Fenster ge\xf6ffnet",
25
25
  pt: "Abre em nova janela"
26
- }, s = {
26
+ }, r = {
27
27
  es: "P\xe1gina actual",
28
28
  en: "Current page",
29
29
  de: "Aktuelle Seite",
30
30
  pt: "P\xe1gina atual"
31
- }, r = {
31
+ }, a = {
32
32
  es: "Cerrar",
33
33
  en: "Close",
34
34
  de: "Schlie\xdfen",
@@ -44,26 +44,31 @@ const e = {
44
44
  de: "Akzeptieren",
45
45
  pt: "Aceitar"
46
46
  }, c = {
47
+ es: "Revisa los siguientes errores:",
48
+ en: "Check the following errors:",
49
+ de: "Pr\xfcfe folgende Fehler:",
50
+ pt: "Confira os seguintes erros:"
51
+ }, l = {
47
52
  es: "opcional",
48
53
  en: "optional",
49
54
  de: "optional",
50
55
  pt: "opcional"
51
- }, l = {
56
+ }, u = {
52
57
  es: "Este campo es obligatorio",
53
58
  en: "This field is required",
54
59
  de: "Das ist ein Pflichtfeld",
55
60
  pt: "Este campo \xe9 obrigat\xf3rio"
56
- }, u = {
61
+ }, m = {
57
62
  es: "N\xfamero de tarjeta",
58
63
  en: "Card number",
59
64
  de: "Kartennummer",
60
65
  pt: "N\xfamero de cart\xe3o"
61
- }, m = {
66
+ }, p = {
62
67
  es: "Caducidad",
63
68
  en: "Expiry",
64
69
  de: "Ablaufdatum",
65
70
  pt: "Expira\xe7\xe3o"
66
- }, p = {
71
+ }, g = {
67
72
  es: "CVV",
68
73
  en: "CVV",
69
74
  de: "CVV",
@@ -73,12 +78,12 @@ const e = {
73
78
  en: "Incorrect CVV",
74
79
  de: "Falsche CVV",
75
80
  pt: "CVV incorreto"
76
- }, g = {
81
+ }, b = {
77
82
  es: "Mostrar ayuda CVV",
78
83
  en: "Show CVV help",
79
84
  de: "CVV-Hilfe anzeigen",
80
85
  pt: "Exibir ajuda CVV"
81
- }, b = {
86
+ }, h = {
82
87
  es: "Ocultar ayuda CVV",
83
88
  en: "Hide CVV help",
84
89
  de: "CVV-Hilfe ausblenden",
@@ -88,42 +93,42 @@ const e = {
88
93
  en: "The CVV is the 3 digits of the back of your card",
89
94
  de: "Der CVV-Code besteht aus den 3 Ziffern auf der Kartenr\xfcckseite",
90
95
  pt: "O CVV s\xe3o os 3 d\xedgitos do reverso de seu cart\xe3o"
91
- }, h = {
96
+ }, f = {
92
97
  es: "Si es American Express, a\xf1ade los 4 d\xedgitos del anverso",
93
98
  en: "If it's American Express, add the 4-digit number on the front of the card",
94
99
  de: "Bei American Express 4-stelligen Code auf der R\xfcckseite hinzuf\xfcgen",
95
100
  pt: "Se for American Express, adicione os 4 d\xedgitos do anverso"
96
- }, f = {
101
+ }, V = {
97
102
  es: "Fecha no v\xe1lida",
98
103
  en: "Invalid date",
99
104
  de: "Datum ung\xfcltig",
100
105
  pt: "Data inv\xe1lida"
101
- }, V = {
106
+ }, L = {
102
107
  es: "No es un n\xfamero de tarjeta v\xe1lido",
103
108
  en: "The card number is not valid",
104
109
  de: "Kartennummer ung\xfcltig",
105
110
  pt: "N\xe3o \xe9 um n\xfamero de cart\xe3o v\xe1lido"
106
- }, L = {
111
+ }, A = {
107
112
  es: "Fecha no permitida",
108
113
  en: "Invalid date",
109
114
  de: "Unzul\xe4ssiges Datum",
110
115
  pt: "Data n\xe3o permitida"
111
- }, A = {
116
+ }, S = {
112
117
  es: "Email incorrecto",
113
118
  en: "Invalid email",
114
119
  de: "Falsche E-Mail-Adresse",
115
120
  pt: "Email incorreto"
116
- }, S = {
121
+ }, M = {
117
122
  es: "IBAN incorrecto",
118
123
  en: "Incorrect IBAN",
119
124
  de: "Falsche IBAN",
120
125
  pt: "IBAN incorreto"
121
- }, M = {
126
+ }, E = {
122
127
  es: "Cerrar",
123
128
  en: "Close",
124
129
  de: "Schlie\xdfen",
125
130
  pt: "Fechar"
126
- }, E = {
131
+ }, y = {
127
132
  es: "Borrar b\xfasqueda",
128
133
  en: "Clear search",
129
134
  de: "Suche l\xf6schen",
@@ -133,12 +138,12 @@ const e = {
133
138
  en: "menu",
134
139
  de: "Men\xfc",
135
140
  pt: "menu"
136
- }, x = {
141
+ }, $ = {
137
142
  es: "Abrir men\xfa de navegaci\xf3n",
138
143
  en: "Open navigation menu",
139
144
  de: "Navigationsmen\xfc \xf6ffnen",
140
145
  pt: "Abrir menu de navega\xe7\xe3o"
141
- }, y = {
146
+ }, x = {
142
147
  es: "Cerrar men\xfa de navegaci\xf3n",
143
148
  en: "Close navigation menu",
144
149
  de: "Navigationsmen\xfc schlie\xdfen",
@@ -163,32 +168,32 @@ const e = {
163
168
  en: "previous",
164
169
  de: "vorherige",
165
170
  pt: "anterior"
166
- }, $ = {
171
+ }, k = {
167
172
  es: "Reproducir",
168
173
  en: "Play",
169
174
  de: "Abspielen",
170
175
  pt: "Reproduzir"
171
- }, k = {
176
+ }, F = {
172
177
  es: "Pausar",
173
178
  en: "Pause",
174
179
  de: "Pausieren",
175
180
  pt: "Pausar"
176
- }, F = {
181
+ }, w = {
177
182
  es: "Continuar",
178
183
  en: "Continue",
179
184
  de: "Fortfahren",
180
185
  pt: "Continuar"
181
- }, w = {
186
+ }, O = {
182
187
  es: "completo",
183
188
  en: "completed",
184
189
  de: "vollendet",
185
190
  pt: "conclu\xeddo"
186
- }, O = {
191
+ }, T = {
187
192
  es: "Paso 1$s de 2$s",
188
193
  en: "Step 1$s of 2$s",
189
194
  de: "Schritt 1$s von 2$s",
190
195
  pt: "Etapa 1$s de 2$s"
191
- }, T = {
196
+ }, R = {
192
197
  es: "D\xedgito 1$s de 2$s",
193
198
  en: "Digit 1$s of 2$s",
194
199
  de: "Ziffer 1$s von 2$s",
@@ -198,37 +203,37 @@ const e = {
198
203
  en: "Remove element",
199
204
  de: "Element entfernen",
200
205
  pt: "Remover elemento"
201
- }, R = {
206
+ }, j = {
202
207
  es: "Aumentar valor",
203
208
  en: "Increase value",
204
209
  de: "Wert steigern",
205
210
  pt: "aumentar valor"
206
- }, j = {
211
+ }, z = {
207
212
  es: "Disminuir valor",
208
213
  en: "Decrease value",
209
214
  de: "Wert verringern",
210
215
  pt: "diminuir valor"
211
- }, z = {
216
+ }, q = {
212
217
  es: "cantidad",
213
218
  en: "quantity",
214
219
  de: "menge",
215
220
  pt: "quantidade"
216
- }, q = {
221
+ }, W = {
217
222
  es: "m\xednimo",
218
223
  en: "minimum of",
219
224
  de: "minimal",
220
225
  pt: "m\xednimo"
221
- }, W = {
226
+ }, K = {
222
227
  es: "m\xe1ximo",
223
228
  en: "maximum of",
224
229
  de: "maximal",
225
230
  pt: "m\xe1ximo"
226
- }, K = {
231
+ }, Z = {
227
232
  es: "d",
228
233
  en: "d",
229
234
  de: "Tg.",
230
235
  pt: "d"
231
- }, Z = {
236
+ }, G = {
232
237
  es: "h",
233
238
  en: "h",
234
239
  de: "Std.",
@@ -238,12 +243,12 @@ const e = {
238
243
  en: "min",
239
244
  de: "Min.",
240
245
  pt: "min"
241
- }, Y = {
246
+ }, Q = {
242
247
  es: "s",
243
248
  en: "s",
244
249
  de: "Sek.",
245
250
  pt: "s"
246
- }, Q = {
251
+ }, Y = {
247
252
  es: "y",
248
253
  en: "and",
249
254
  de: "und",
@@ -253,55 +258,85 @@ const e = {
253
258
  en: "day",
254
259
  de: "Tag",
255
260
  pt: "dia"
256
- }, G = {
261
+ }, X = {
257
262
  es: "d\xedas",
258
263
  en: "days",
259
264
  de: "Tage",
260
265
  pt: "dias"
261
- }, X = {
266
+ }, _ = {
262
267
  es: "hora",
263
268
  en: "hour",
264
269
  de: "Stunde",
265
270
  pt: "hora"
266
- }, _ = {
271
+ }, ee = {
267
272
  es: "horas",
268
273
  en: "hours",
269
274
  de: "Stunden",
270
275
  pt: "horas"
271
- }, ee = {
276
+ }, ne = {
272
277
  es: "minuto",
273
278
  en: "minute",
274
279
  de: "Minute",
275
280
  pt: "minuto"
276
- }, ne = {
281
+ }, te = {
277
282
  es: "minutos",
278
283
  en: "minutes",
279
284
  de: "Minuten",
280
285
  pt: "minutos"
281
- }, te = {
286
+ }, oe = {
282
287
  es: "segundo",
283
288
  en: "second",
284
289
  de: "Sekunde",
285
290
  pt: "segundo"
286
- }, oe = {
291
+ }, se = {
287
292
  es: "segundos",
288
293
  en: "seconds",
289
294
  de: "Sekunden",
290
295
  pt: "segundos"
291
- }, ae = {
296
+ }, re = {
292
297
  es: "min",
293
298
  en: "min",
294
299
  de: "Min.",
295
300
  pt: "min"
296
- }, se = {
301
+ }, ae = {
297
302
  es: "seg",
298
303
  en: "sec",
299
304
  de: "Sek.",
300
305
  pt: "seg"
301
- }, re = {
306
+ }, ie = {
302
307
  es: "Acciones",
303
308
  en: "Actions",
304
309
  de: "Aktionen",
305
310
  pt: "A\xe7\xf5es"
311
+ }, de = {
312
+ es: "muy malo",
313
+ en: "very bad",
314
+ de: "sehr schlecht",
315
+ pt: "muito ruim"
316
+ }, ce = {
317
+ es: "malo",
318
+ en: "bad",
319
+ de: "schlecht",
320
+ pt: "ruim"
321
+ }, le = {
322
+ es: "regular",
323
+ en: "regular",
324
+ de: "regular",
325
+ pt: "regular"
326
+ }, ue = {
327
+ es: "bueno",
328
+ en: "good",
329
+ de: "gut",
330
+ pt: "bom"
331
+ }, me = {
332
+ es: "muy bueno",
333
+ en: "very good",
334
+ de: "sehr gut",
335
+ pt: "muito bom"
336
+ }, pe = {
337
+ es: "1$s de 2$s",
338
+ en: "1$s out of 2$s",
339
+ de: "1$s von 2$s",
340
+ pt: "1$s de 2$s"
306
341
  };
307
- export { D as backNavigationBar, N as carouselNextButton, P as carouselPrevButton, I as clearButton, M as closeButtonLabel, y as closeNavigationMenu, j as counterDecreaseLabel, R as counterIncreaseLabel, W as counterMaxValue, q as counterMinValue, z as counterQuantity, H as counterRemoveLabel, d as dialogAcceptButton, i as dialogCancelButton, t as disablePasswordVisibility, n as enablePasswordVisibility, e as expirationDatePlaceholder, C as formCreditCardCvvError, p as formCreditCardCvvLabel, h as formCreditCardCvvTooltipAmex, v as formCreditCardCvvTooltipVisaMc, b as formCreditCardCvvTooltipVisaMcButtonClose, g as formCreditCardCvvTooltipVisaMcButtonOpen, f as formCreditCardExpirationError, m as formCreditCardExpirationLabel, V as formCreditCardNumberError, u as formCreditCardNumberLabel, L as formDateOutOfRangeError, A as formEmailError, l as formFieldErrorIsMandatory, c as formFieldOptionalLabelSuffix, S as formIbanError, E as formSearchClear, s as linkOpensInCurrentPage, a as linkOpensInNewTab, o as loading, B as menuLabelSuffix, r as modalClose, x as openNavigationMenu, k as pauseIconButtonLabel, T as pinFieldInputLabel, $ as playIconButtonLabel, w as progressBarCompletedLabel, O as progressBarStepLabel, F as sheetConfirmButton, re as tableActionsHeaderLabel, Q as timerAnd, U as timerDayLongLabel, G as timerDaysLongLabel, K as timerDaysShortLabel, ae as timerDisplayMinutesLabel, se as timerDisplaySecondsLabel, X as timerHourLongLabel, _ as timerHoursLongLabel, Z as timerHoursShortLabel, ee as timerMinuteLongLabel, ne as timerMinutesLongLabel, J as timerMinutesShortLabel, te as timerSecondLongLabel, oe as timerSecondsLongLabel, Y as timerSecondsShortLabel };
342
+ export { D as backNavigationBar, N as carouselNextButton, P as carouselPrevButton, I as clearButton, E as closeButtonLabel, x as closeNavigationMenu, z as counterDecreaseLabel, j as counterIncreaseLabel, K as counterMaxValue, W as counterMinValue, q as counterQuantity, H as counterRemoveLabel, d as dialogAcceptButton, i as dialogCancelButton, t as disablePasswordVisibility, n as enablePasswordVisibility, e as expirationDatePlaceholder, C as formCreditCardCvvError, g as formCreditCardCvvLabel, f as formCreditCardCvvTooltipAmex, v as formCreditCardCvvTooltipVisaMc, h as formCreditCardCvvTooltipVisaMcButtonClose, b as formCreditCardCvvTooltipVisaMcButtonOpen, V as formCreditCardExpirationError, p as formCreditCardExpirationLabel, L as formCreditCardNumberError, m as formCreditCardNumberLabel, A as formDateOutOfRangeError, S as formEmailError, c as formErrorsAlertMessage, u as formFieldErrorIsMandatory, l as formFieldOptionalLabelSuffix, M as formIbanError, y as formSearchClear, r as linkOpensInCurrentPage, s as linkOpensInNewTab, o as loading, B as menuLabelSuffix, a as modalClose, $ as openNavigationMenu, F as pauseIconButtonLabel, R as pinFieldInputLabel, k as playIconButtonLabel, O as progressBarCompletedLabel, T as progressBarStepLabel, ce as ratingBadLabel, ue as ratingGoodLabel, pe as ratingQuantitativeLabel, le as ratingRegularLabel, de as ratingVeryBadLabel, me as ratingVeryGoodLabel, w as sheetConfirmButton, ie as tableActionsHeaderLabel, Y as timerAnd, U as timerDayLongLabel, X as timerDaysLongLabel, Z as timerDaysShortLabel, re as timerDisplayMinutesLabel, ae as timerDisplaySecondsLabel, _ as timerHourLongLabel, ee as timerHoursLongLabel, G as timerHoursShortLabel, ne as timerMinuteLongLabel, te as timerMinutesLongLabel, J as timerMinutesShortLabel, oe as timerSecondLongLabel, se as timerSecondsLongLabel, Q as timerSecondsShortLabel };