energy-components 1.22.0 → 1.23.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.
@@ -1,20 +1,22 @@
1
- import { defineComponent as $, toRefs as M, computed as m, createBlock as p, openBlock as s, resolveDynamicComponent as O, unref as e, normalizeStyle as P, normalizeClass as k, withCtx as T, createCommentVNode as d, createElementBlock as I, mergeProps as v, renderSlot as D, createTextVNode as R, toDisplayString as j } from "vue";
2
- import { R as y } from "./icon-svg-K8-vLJgV.js";
3
- import { _ as q } from "./_plugin-vue_export-helper-CHgC5LLL.js";
4
- import './style/link.css';const A = /* @__PURE__ */ $({
1
+ import { defineComponent as D, computed as n, createBlock as l, openBlock as i, resolveDynamicComponent as z, mergeProps as s, withCtx as N, createCommentVNode as o, createElementBlock as g, normalizeClass as d, renderSlot as v, createTextVNode as w, toDisplayString as b, normalizeStyle as j } from "vue";
2
+ import { R as c } from "./icon-svg-K8-vLJgV.js";
3
+ import { _ as A } from "./_plugin-vue_export-helper-CHgC5LLL.js";
4
+ import './style/link.css';const R = /* @__PURE__ */ D({
5
5
  __name: "link",
6
6
  props: {
7
7
  /**
8
8
  * <span>Texto a mostrar en el link</span>
9
9
  */
10
10
  text: {
11
- type: String
11
+ type: String,
12
+ default: void 0
12
13
  },
13
14
  /**
14
- * <span>Url a la que redirige el link</span>
15
+ * <span>Url a la que redirige el link. Acepta string o Location object</span>
15
16
  */
16
17
  to: {
17
- type: String,
18
+ type: [String, Object],
19
+ // Corregido: Permite objetos de ruta sin lanzar warning
18
20
  default: ""
19
21
  },
20
22
  /**
@@ -23,7 +25,7 @@ import './style/link.css';const A = /* @__PURE__ */ $({
23
25
  icon: {
24
26
  type: Object,
25
27
  default: () => ({ name: "", modifier: "" }),
26
- validator: (o) => typeof o.name == "string" && (o.modifier === void 0 || typeof o.modifier == "string") ? !0 : (console.error("El icono debe tener una propiedad name de tipo string y una propiedad modifier opcional de tipo string"), !1)
28
+ validator: (r) => typeof r.name == "string" && (r.modifier === void 0 || typeof r.modifier == "string") ? !0 : (console.error("El icono debe tener una propiedad name de tipo string y una propiedad modifier opcional de tipo string"), !1)
27
29
  },
28
30
  /**
29
31
  * <span>Tag del link</span>
@@ -97,97 +99,94 @@ import './style/link.css';const A = /* @__PURE__ */ $({
97
99
  }
98
100
  },
99
101
  emits: ["click"],
100
- setup(o, { emit: w }) {
101
- const z = o, E = w, {
102
- text: g,
103
- to: h,
104
- icon: r,
105
- tag: u,
106
- disabled: i,
107
- inverse: _,
108
- arrow: c,
109
- right: n,
110
- underline: b,
111
- customClass: x,
112
- color: l,
113
- arrowSmall: S,
114
- id: L
115
- } = M(z), N = m(() => l.value ? { color: l.value } : void 0), V = m(() => {
116
- var t, f;
117
- const a = ["rds-e-link"];
118
- return _.value && a.push("rds-e-link--inverse"), b.value && a.push("rds-e-link--underline"), i.value && a.push("rds-e-style-state-disabled"), ((t = r == null ? void 0 : r.value) == null ? void 0 : t.name) !== "arrow" && a.push("rds-e-arrow-link"), ((f = r == null ? void 0 : r.value) == null ? void 0 : f.name) !== "arrow" && _.value && a.push("rds-e-arrow-link__icon--inverse"), x.value === "rds-e-breadcrumbs__link--text" && a.push("rds-e-link__breadcrumbs"), a.join(" ");
119
- }), C = m(() => {
120
- var t;
121
- const a = ["rds-e-arrow-link__icon--arrow"];
122
- return r != null && r.value && (a.push("rds-e-arrow-link__icon"), i.value && a.push("rds-e-arrow-link__icon--disabled")), ((t = r == null ? void 0 : r.value) == null ? void 0 : t.name) !== "arrow" && _.value && a.push("rds-e-arrow-link__icon--inverse"), a.push(
123
- n.value ? "rds-e-arrow-link__icon--animation-right" : "rds-e-arrow-link__icon--animation-left"
124
- ), a.join(" ");
125
- }), B = m(() => {
102
+ setup(r, { emit: u }) {
103
+ const e = r, h = u, x = (t) => {
104
+ if (e.disabled) {
105
+ t.preventDefault(), t.stopPropagation();
106
+ return;
107
+ }
108
+ h("click", t);
109
+ }, S = n(() => e.disabled ? "span" : e.tag === "a" ? "a" : e.tag), C = n(() => {
110
+ const t = {};
111
+ return e.disabled ? (t.role = "link", t["aria-disabled"] = !0, t) : (e.tag === "router-link" ? t.to = e.to : t.href = typeof e.to == "string" ? e.to : void 0, t);
112
+ }), B = n(() => e.color ? { color: e.color } : void 0), I = n(() => {
126
113
  var a;
127
- return c.value || ((a = r == null ? void 0 : r.value) == null ? void 0 : a.name);
114
+ const t = ((a = e.icon) == null ? void 0 : a.name) === "arrow";
115
+ return {
116
+ "rds-e-link": !0,
117
+ "rds-e-link--inverse": e.inverse,
118
+ "rds-e-link--underline": e.underline,
119
+ "rds-e-style-state-disabled": e.disabled,
120
+ "rds-e-arrow-link": !t,
121
+ "rds-e-arrow-link__icon--inverse": !t && e.inverse,
122
+ "rds-e-link__breadcrumbs": e.customClass === "rds-e-breadcrumbs__link--text"
123
+ };
124
+ }), m = n(() => {
125
+ var k, y;
126
+ const t = ["rds-e-arrow-link__icon--arrow"], a = !!((k = e.icon) != null && k.name), p = ((y = e.icon) == null ? void 0 : y.name) !== "arrow";
127
+ return a && (t.push("rds-e-arrow-link__icon"), e.disabled && t.push("rds-e-arrow-link__icon--disabled")), p && e.inverse && t.push("rds-e-arrow-link__icon--inverse"), t.push(e.right ? "rds-e-arrow-link__icon--animation-right" : "rds-e-arrow-link__icon--animation-left"), t.join(" ");
128
+ }), f = n(() => {
129
+ var t;
130
+ return e.arrow || !!((t = e.icon) != null && t.name);
128
131
  });
129
- return (a, t) => (s(), p(O(e(u) === "a" ? e(u) : "router-link"), {
130
- id: e(L),
131
- class: k(V.value),
132
- to: e(u) === "router-link" ? e(h) : null,
133
- href: e(u) === "a" ? e(h) : null,
134
- disable: e(i),
135
- style: P(N.value),
136
- tabindex: e(i) ? -1 : void 0,
137
- "aria-disabled": e(i),
138
- onClick: t[0] || (t[0] = (f) => E("click", f))
139
- }, {
140
- default: T(() => [
141
- e(r).name && !e(n) && !e(c) ? (s(), p(y, v({
132
+ return (t, a) => (i(), l(z(S.value), s({
133
+ id: r.id,
134
+ class: I.value
135
+ }, C.value, {
136
+ style: B.value,
137
+ tabindex: r.disabled ? -1 : void 0,
138
+ "aria-disabled": r.disabled,
139
+ onClick: x
140
+ }), {
141
+ default: N(() => [
142
+ r.icon.name && !r.right && !r.arrow ? (i(), l(c, s({
142
143
  key: 0,
143
- name: e(r).name
144
- }, {
145
- ...e(r)
146
- }, {
147
- class: ["rds-e-link__icon-left", C.value],
148
- style: e(l) ? { color: e(l) } : void 0
149
- }), null, 16, ["name", "class", "style"])) : d("", !0),
150
- e(n) ? (s(), I("span", {
144
+ name: r.icon.name
145
+ }, { ...r.icon }, {
146
+ class: ["rds-e-link__icon-left", m.value],
147
+ style: e.color ? { color: e.color } : void 0
148
+ }), null, 16, ["name", "class", "style"])) : o("", !0),
149
+ r.right ? (i(), g("span", {
151
150
  key: 1,
152
- class: k(["rds-e-link__text", [e(x), {
153
- "rds-e-mr-xs": B.value,
154
- "rds-e-link__text--underline": e(b)
151
+ class: d(["rds-e-link__text", [r.customClass, {
152
+ "rds-e-mr-xs": f.value,
153
+ "rds-e-link__text--underline": r.underline
155
154
  }]])
156
155
  }, [
157
- D(a.$slots, "default", {}, () => [
158
- R(j(e(g)), 1)
156
+ v(t.$slots, "default", {}, () => [
157
+ w(b(r.text), 1)
159
158
  ], !0)
160
- ], 2)) : d("", !0),
161
- e(c) ? (s(), p(y, v({ key: 2 }, {
162
- name: e(n) ? "arrow_right" : "arrow_left",
163
- size: e(S) ? 16 : void 0
164
- }, {
165
- class: ["rds-e-arrow-link__icon--arrow", [
166
- e(n) ? "rds-e-arrow-link__icon--animation-right" : "rds-e-arrow-link__icon--animation-left",
167
- { "rds-flex rds-flex-center-center": e(S) }
168
- ]],
169
- style: e(l) ? { color: e(l) } : void 0
170
- }), null, 16, ["class", "style"])) : d("", !0),
171
- e(n) ? d("", !0) : (s(), I("span", {
159
+ ], 2)) : o("", !0),
160
+ r.arrow ? (i(), l(c, {
161
+ key: 2,
162
+ name: r.right ? "arrow_right" : "arrow_left",
163
+ size: r.arrowSmall ? 16 : void 0,
164
+ class: d(["rds-e-arrow-link__icon--arrow", [
165
+ r.right ? "rds-e-arrow-link__icon--animation-right" : "rds-e-arrow-link__icon--animation-left",
166
+ { "rds-flex rds-flex-center-center": r.arrowSmall }
167
+ ]]),
168
+ style: j(e.color ? { color: e.color } : void 0)
169
+ }, null, 8, ["name", "size", "class", "style"])) : o("", !0),
170
+ r.right ? o("", !0) : (i(), g("span", {
172
171
  key: 3,
173
- class: k(["rds-e-link__text", { "rds-e-ml-xs": B.value }])
172
+ class: d(["rds-e-link__text", { "rds-e-ml-xs": f.value }])
174
173
  }, [
175
- D(a.$slots, "default", {}, () => [
176
- R(j(e(g)), 1)
174
+ v(t.$slots, "default", {}, () => [
175
+ w(b(r.text), 1)
177
176
  ], !0)
178
177
  ], 2)),
179
- e(r).name && e(n) && !e(c) ? (s(), p(y, v({
178
+ r.icon.name && r.right && !r.arrow ? (i(), l(c, s({
180
179
  key: 4,
181
- name: e(r).name
182
- }, e(r), {
183
- class: ["rds-e-link__icon-right", C.value],
184
- style: e(l) ? { color: e(l) } : void 0
185
- }), null, 16, ["name", "class", "style"])) : d("", !0)
180
+ name: r.icon.name
181
+ }, r.icon, {
182
+ class: ["rds-e-link__icon-right", m.value],
183
+ style: e.color ? { color: e.color } : void 0
184
+ }), null, 16, ["name", "class", "style"])) : o("", !0)
186
185
  ]),
187
186
  _: 3
188
- }, 8, ["id", "class", "to", "href", "disable", "style", "tabindex", "aria-disabled"]));
187
+ }, 16, ["id", "class", "style", "tabindex", "aria-disabled"]));
189
188
  }
190
- }), J = /* @__PURE__ */ q(A, [["__scopeId", "data-v-16fa62ca"]]);
189
+ }), T = /* @__PURE__ */ A(R, [["__scopeId", "data-v-31849beb"]]);
191
190
  export {
192
- J as default
191
+ T as default
193
192
  };
@@ -11,7 +11,7 @@ function M(e, t) {
11
11
  return e === void 0 && (e = "undefined"), e === null && (e = "null"), e === !1 && (e = "false"), e.toString().toLowerCase().indexOf(t.trim()) !== -1;
12
12
  }
13
13
  function E(e, t, i, r) {
14
- return t ? e.filter((n) => M(r(n, i), t)).sort((n, s) => r(n, i).length - r(s, i).length) : e;
14
+ return t ? e.filter((n) => M(r(n, i), t)).sort((n, l) => r(n, i).length - r(l, i).length) : e;
15
15
  }
16
16
  function z(e) {
17
17
  return e.filter((t) => !t.$isLabel);
@@ -23,13 +23,13 @@ function V(e, t) {
23
23
  }), r.concat(n[e])) : r, []);
24
24
  }
25
25
  function j(e, t, i, r, n) {
26
- return (s) => s.map((d) => {
26
+ return (l) => l.map((d) => {
27
27
  if (!d[i])
28
28
  return console.warn("Options passed to vue-multiselect do not contain groups, despite the config."), [];
29
- const l = E(d[i], e, t, n);
30
- return l.length ? {
29
+ const s = E(d[i], e, t, n);
30
+ return s.length ? {
31
31
  [r]: d[r],
32
- [i]: l
32
+ [i]: s
33
33
  } : [];
34
34
  });
35
35
  }
@@ -420,7 +420,7 @@ const G = (...e) => (t) => e.reduce((i, r) => r(i), t), q = {
420
420
  this.$emit("tag", e.label, this.id), this.search = "", this.closeOnSelect && !this.multiple && this.deactivate();
421
421
  else {
422
422
  if (this.isSelected(e)) {
423
- t !== "Tab" && this.removeElement(e);
423
+ this.multiple && t !== "Tab" ? this.removeElement(e) : !this.multiple && this.closeOnSelect && this.deactivate();
424
424
  return;
425
425
  }
426
426
  this.multiple ? this.$emit("update:modelValue", this.internalValue.concat([e])) : this.$emit("update:modelValue", e), this.$emit("select", e, this.id), this.clearOnSelect && (this.search = "");
@@ -898,25 +898,25 @@ const G = (...e) => (t) => e.reduce((i, r) => r(i), t), q = {
898
898
  ref: "tags",
899
899
  class: "multiselect__tags"
900
900
  }, Q = { class: "multiselect__tags-wrap" }, X = ["textContent"], Y = ["onKeypress", "onMousedown"], Z = ["textContent"], _ = { class: "multiselect__spinner" }, ee = ["name", "id", "spellcheck", "placeholder", "required", "value", "disabled", "tabindex", "aria-controls"];
901
- function te(e, t, i, r, n, s) {
901
+ function te(e, t, i, r, n, l) {
902
902
  const d = H("MultiselectContentWrapper");
903
903
  return c(), g("div", {
904
904
  tabindex: e.searchable ? -1 : i.tabindex,
905
- class: P([{ "multiselect--active": e.isOpen, "multiselect--disabled": i.disabled, "multiselect--above": s.isAbove, "multiselect--has-options-group": s.hasOptionGroup }, "multiselect"]),
906
- onFocus: t[11] || (t[11] = (l) => e.activate()),
907
- onBlur: t[12] || (t[12] = (...l) => s.onBlur && s.onBlur(...l)),
905
+ class: P([{ "multiselect--active": e.isOpen, "multiselect--disabled": i.disabled, "multiselect--above": l.isAbove, "multiselect--has-options-group": l.hasOptionGroup }, "multiselect"]),
906
+ onFocus: t[11] || (t[11] = (s) => e.activate()),
907
+ onBlur: t[12] || (t[12] = (...s) => l.onBlur && l.onBlur(...s)),
908
908
  onKeydown: [
909
- t[13] || (t[13] = a(o((l) => e.pointerForward(), ["self", "prevent"]), ["down"])),
910
- t[14] || (t[14] = a(o((l) => e.pointerBackward(), ["self", "prevent"]), ["up"]))
909
+ t[13] || (t[13] = a(o((s) => e.pointerForward(), ["self", "prevent"]), ["down"])),
910
+ t[14] || (t[14] = a(o((s) => e.pointerBackward(), ["self", "prevent"]), ["up"]))
911
911
  ],
912
- onKeypress: t[15] || (t[15] = a(o((l) => e.addPointerElement(l), ["stop", "self"]), ["enter", "tab"])),
913
- onKeyup: t[16] || (t[16] = a((l) => e.deactivate(), ["esc"])),
912
+ onKeypress: t[15] || (t[15] = a(o((s) => e.addPointerElement(s), ["stop", "self"]), ["enter", "tab"])),
913
+ onKeyup: t[16] || (t[16] = a((s) => e.deactivate(), ["esc"])),
914
914
  role: "combobox",
915
915
  "aria-owns": "listbox-" + e.id
916
916
  }, [
917
917
  u(e.$slots, "caret", { toggle: e.toggle }, () => [
918
918
  p("div", {
919
- onMousedown: t[0] || (t[0] = o((l) => e.toggle(), ["prevent", "stop"])),
919
+ onMousedown: t[0] || (t[0] = o((s) => e.toggle(), ["prevent", "stop"])),
920
920
  class: "multiselect__select"
921
921
  }, null, 32)
922
922
  ], !0),
@@ -925,12 +925,12 @@ function te(e, t, i, r, n, s) {
925
925
  u(e.$slots, "selection", {
926
926
  search: e.search,
927
927
  remove: e.removeElement,
928
- values: s.visibleValues,
928
+ values: l.visibleValues,
929
929
  isOpen: e.isOpen
930
930
  }, () => [
931
931
  v(p("div", Q, [
932
- (c(!0), g(N, null, L(s.visibleValues, (l, h) => u(e.$slots, "tag", {
933
- option: l,
932
+ (c(!0), g(N, null, L(l.visibleValues, (s, h) => u(e.$slots, "tag", {
933
+ option: s,
934
934
  search: e.search,
935
935
  remove: e.removeElement
936
936
  }, () => [
@@ -939,18 +939,18 @@ function te(e, t, i, r, n, s) {
939
939
  key: h
940
940
  }, [
941
941
  p("span", {
942
- textContent: w(e.getOptionLabel(l))
942
+ textContent: w(e.getOptionLabel(s))
943
943
  }, null, 8, X),
944
944
  p("i", {
945
945
  tabindex: "1",
946
- onKeypress: a(o((f) => e.removeElement(l), ["prevent"]), ["enter"]),
947
- onMousedown: o((f) => e.removeElement(l), ["prevent"]),
946
+ onKeypress: a(o((f) => e.removeElement(s), ["prevent"]), ["enter"]),
947
+ onMousedown: o((f) => e.removeElement(s), ["prevent"]),
948
948
  class: "multiselect__tag-icon"
949
949
  }, null, 40, Y)
950
950
  ]))
951
951
  ], !0)), 256))
952
952
  ], 512), [
953
- [O, s.visibleValues.length > 0]
953
+ [O, l.visibleValues.length > 0]
954
954
  ]),
955
955
  e.internalValue && e.internalValue.length > i.limit ? u(e.$slots, "limit", { key: 0 }, () => [
956
956
  p("strong", {
@@ -980,30 +980,30 @@ function te(e, t, i, r, n, s) {
980
980
  placeholder: e.placeholder,
981
981
  required: i.required,
982
982
  style: C({
983
- ...s.inputStyle
983
+ ...l.inputStyle
984
984
  }),
985
985
  value: e.search,
986
986
  disabled: i.disabled,
987
987
  tabindex: i.tabindex,
988
- onInput: t[1] || (t[1] = (l) => e.updateSearch(l.target.value)),
989
- onFocus: t[2] || (t[2] = o((l) => e.activate(), ["prevent"])),
990
- onBlur: t[3] || (t[3] = o((l) => e.deactivate(), ["prevent"])),
991
- onKeyup: t[4] || (t[4] = a((l) => e.deactivate(), ["esc"])),
988
+ onInput: t[1] || (t[1] = (s) => e.updateSearch(s.target.value)),
989
+ onFocus: t[2] || (t[2] = o((s) => e.activate(), ["prevent"])),
990
+ onBlur: t[3] || (t[3] = o((s) => e.deactivate(), ["prevent"])),
991
+ onKeyup: t[4] || (t[4] = a((s) => e.deactivate(), ["esc"])),
992
992
  onKeydown: [
993
- t[5] || (t[5] = a(o((l) => e.pointerForward(), ["prevent"]), ["down"])),
994
- t[6] || (t[6] = a(o((l) => e.pointerBackward(), ["prevent"]), ["up"])),
995
- t[8] || (t[8] = a(o((l) => e.removeLastElement(), ["stop"]), ["delete"]))
993
+ t[5] || (t[5] = a(o((s) => e.pointerForward(), ["prevent"]), ["down"])),
994
+ t[6] || (t[6] = a(o((s) => e.pointerBackward(), ["prevent"]), ["up"])),
995
+ t[8] || (t[8] = a(o((s) => e.removeLastElement(), ["stop"]), ["delete"]))
996
996
  ],
997
- onKeypress: t[7] || (t[7] = a(o((l) => e.addPointerElement(l), ["prevent", "stop", "self"]), ["enter"])),
997
+ onKeypress: t[7] || (t[7] = a(o((s) => e.addPointerElement(s), ["prevent", "stop", "self"]), ["enter"])),
998
998
  class: "multiselect__input",
999
999
  "aria-controls": "listbox-" + e.id
1000
1000
  }, null, 44, ee)) : b("", !0),
1001
- s.isSingleLabelVisible ? (c(), g("span", {
1001
+ l.isSingleLabelVisible ? (c(), g("span", {
1002
1002
  key: 1,
1003
1003
  class: "multiselect__single",
1004
- onMousedown: t[9] || (t[9] = o((...l) => e.toggle && e.toggle(...l), ["prevent"]))
1004
+ onMousedown: t[9] || (t[9] = o((...s) => e.toggle && e.toggle(...s), ["prevent"]))
1005
1005
  }, [
1006
- u(e.$slots, "singleLabel", { option: s.singleValue }, () => [
1006
+ u(e.$slots, "singleLabel", { option: l.singleValue }, () => [
1007
1007
  F(w(e.currentOptionLabel), 1)
1008
1008
  ], !0)
1009
1009
  ], 32)) : b("", !0)
@@ -1021,29 +1021,29 @@ function te(e, t, i, r, n, s) {
1021
1021
  optionHighlight: e.optionHighlight,
1022
1022
  select: e.select,
1023
1023
  pointerSet: e.pointerSet,
1024
- selectLabelText: s.selectLabelText,
1025
- selectedLabelText: s.selectedLabelText,
1026
- deselectLabelText: s.deselectLabelText,
1024
+ selectLabelText: l.selectLabelText,
1025
+ selectedLabelText: l.selectedLabelText,
1026
+ deselectLabelText: l.deselectLabelText,
1027
1027
  tagPlaceholder: e.tagPlaceholder,
1028
1028
  groupSelect: e.groupSelect,
1029
- selectGroupLabelText: s.selectGroupLabelText,
1030
- deselectGroupLabelText: s.deselectGroupLabelText,
1029
+ selectGroupLabelText: l.selectGroupLabelText,
1030
+ deselectGroupLabelText: l.deselectGroupLabelText,
1031
1031
  getOptionLabel: e.getOptionLabel,
1032
1032
  groupHighlight: e.groupHighlight,
1033
1033
  selectGroup: e.selectGroup,
1034
1034
  options: e.options,
1035
- hasOptionGroup: s.hasOptionGroup,
1035
+ hasOptionGroup: l.hasOptionGroup,
1036
1036
  search: e.search,
1037
1037
  loading: i.loading,
1038
1038
  showNoResults: i.showNoResults,
1039
1039
  showNoOptions: i.showNoOptions,
1040
1040
  small: i.small,
1041
- contentStyle: s.contentStyle,
1042
- customStyle: s.dropdownStyle,
1041
+ contentStyle: l.contentStyle,
1042
+ customStyle: l.dropdownStyle,
1043
1043
  ref: "list",
1044
1044
  onFocus: e.activate
1045
1045
  }, B({ _: 2 }, [
1046
- L(e.$slots, (l, h) => ({
1046
+ L(e.$slots, (s, h) => ({
1047
1047
  name: h,
1048
1048
  fn: y((f) => [
1049
1049
  u(e.$slots, h, $(D(f)), void 0, !0)
@@ -1070,30 +1070,30 @@ function te(e, t, i, r, n, s) {
1070
1070
  optionHighlight: e.optionHighlight,
1071
1071
  select: e.select,
1072
1072
  pointerSet: e.pointerSet,
1073
- selectLabelText: s.selectLabelText,
1074
- selectedLabelText: s.selectedLabelText,
1075
- deselectLabelText: s.deselectLabelText,
1073
+ selectLabelText: l.selectLabelText,
1074
+ selectedLabelText: l.selectedLabelText,
1075
+ deselectLabelText: l.deselectLabelText,
1076
1076
  tagPlaceholder: e.tagPlaceholder,
1077
1077
  groupSelect: e.groupSelect,
1078
- selectGroupLabelText: s.selectGroupLabelText,
1079
- deselectGroupLabelText: s.deselectGroupLabelText,
1078
+ selectGroupLabelText: l.selectGroupLabelText,
1079
+ deselectGroupLabelText: l.deselectGroupLabelText,
1080
1080
  getOptionLabel: e.getOptionLabel,
1081
1081
  groupHighlight: e.groupHighlight,
1082
1082
  selectGroup: e.selectGroup,
1083
1083
  options: e.options,
1084
- hasOptionGroup: s.hasOptionGroup,
1084
+ hasOptionGroup: l.hasOptionGroup,
1085
1085
  search: e.search,
1086
1086
  loading: i.loading,
1087
1087
  showNoResults: i.showNoResults,
1088
1088
  showNoOptions: i.showNoOptions,
1089
1089
  small: i.small,
1090
- contentStyle: s.contentStyle,
1091
- customStyle: s.teleportedContentStyle,
1090
+ contentStyle: l.contentStyle,
1091
+ customStyle: l.teleportedContentStyle,
1092
1092
  onFocus: e.activate,
1093
1093
  onClick: t[10] || (t[10] = o(() => {
1094
1094
  }, ["stop"]))
1095
1095
  }, B({ _: 2 }, [
1096
- L(e.$slots, (l, h) => ({
1096
+ L(e.$slots, (s, h) => ({
1097
1097
  name: h,
1098
1098
  fn: y((f) => [
1099
1099
  u(e.$slots, h, $(D(f)), void 0, !0)
@@ -1 +1 @@
1
- [data-v-16fa62ca]:root{--rds-caption-01: .875rem/1.125rem RepsolSoleTextRegular;--rds-caption-01-bold: .875rem/1.125rem RepsolSoleTextBold;--rds-caption-01-underline: .875rem/1.125rem RepsolSoleTextRegular;--rds-caption-02: .75rem/1rem RepsolSoleTextRegular;--rds-caption-02-bold: .75rem/1rem RepsolSoleTextBold;--rds-caption-02-underline: .75rem/1rem RepsolSoleTextRegular;--rds-caption-tag: .75rem/1rem RepsolSoleTextRegular;--rds-body-01: 1rem/1.5rem RepsolSoleTextRegular;--rds-body-02: .875rem/1.25rem RepsolSoleTextRegular;--rds-body-01-bold: 1rem/1.5rem RepsolSoleTextBold;--rds-body-01-underline: 1rem/1.3125rem RepsolSoleTextRegular;--rds-body-02-bold: .875rem/1.25rem RepsolSoleTextBold;--rds-body-02-underline: .875rem/1.25rem RepsolSoleTextRegular;--rds-button-01: 1rem/1.5rem RepsolSoleTextBold;--rds-button-02: .875rem/1.25rem RepsolSoleTextBold;--rds-monospaced-body-01: 1rem/1.5rem SourceCodeProRegular;--rds-monospaced-body-01-bold: 1rem/1.5rem SourceCodeProBold;--rds-monospaced-body-02: .875rem/1.25rem SourceCodeProRegular;--rds-monospaced-body-02-bold: .875rem/1.25rem SourceCodeProBold;--rds-monospaced-caption-01: .875rem/1.125rem SourceCodeProRegular;--rds-monospaced-caption-01-bold: .875rem/1.125rem SourceCodeProBold;--rds-monospaced-caption-02: .75rem/1rem SourceCodeProRegular;--rds-monospaced-caption-02-bold: .75rem/1rem SourceCodeProBold;--rds-title-01: 1.125rem/1.625rem RepsolSoleTextBold;--rds-title-02: 1rem/1.5rem RepsolSoleTextBold;--rds-headline-00-sd: 2.5rem/3rem RepsolSoleDisplayRegular;--rds-headline-00-md: 3.5rem/4.25rem RepsolSoleDisplayRegular;--rds-headline-00-ld: 4rem/5rem RepsolSoleDisplayRegular;--rds-headline-00-xd: 4.5rem/5.75rem RepsolSoleDisplayRegular;--rds-headline-01-sd: 2rem/2.5rem RepsolSoleDisplayRegular;--rds-headline-01-md: 2.5rem/3rem RepsolSoleDisplayRegular;--rds-headline-01-ld: 3rem/3.75rem RepsolSoleDisplayRegular;--rds-headline-01-xd: 3.5rem/4.25rem RepsolSoleDisplayRegular;--rds-headline-02-sd: 1.75rem/2.25rem RepsolSoleDisplayRegular;--rds-headline-02-md: 2rem/2.5rem RepsolSoleDisplayRegular;--rds-headline-02-ld: 2.25rem/3rem RepsolSoleDisplayRegular;--rds-headline-02-xd: 2.75rem/3.5rem RepsolSoleDisplayRegular;--rds-headline-03-sd: 1.375rem/1.875rem RepsolSoleDisplayRegular;--rds-headline-03-md: 1.5rem/2rem RepsolSoleDisplayRegular;--rds-headline-03-ld: 1.75rem/2.25rem RepsolSoleDisplayRegular;--rds-headline-03-xd: 2rem/2.5rem RepsolSoleDisplayRegular;--rds-headline-04-sd: 1.125rem/1.625rem RepsolSoleDisplayRegular;--rds-headline-04-md: 1.125rem/1.625rem RepsolSoleDisplayRegular;--rds-headline-04-ld: 1.25rem/1.75rem RepsolSoleDisplayRegular;--rds-headline-04-xd: 1.5rem/2rem RepsolSoleDisplayRegular;--rds-numbers-00-sd: 3.5rem/4.25rem RepsolSoleDisplayRegular;--rds-numbers-00-md: 3.5rem/4.25rem RepsolSoleDisplayRegular;--rds-numbers-00-ld: 7rem/8.5rem RepsolSoleDisplayRegular;--rds-numbers-00-xd: 7rem/8.5rem RepsolSoleDisplayRegular;--rds-numbers-01-sd: 2.25rem/2.75rem RepsolSoleDisplayRegular;--rds-numbers-01-md: 2.25rem/2.75rem RepsolSoleDisplayRegular;--rds-numbers-01-ld: 3rem/3.75rem RepsolSoleDisplayRegular;--rds-numbers-01-xd: 3rem/3.75rem RepsolSoleDisplayRegular;--rds-numbers-02-sd: 1.75rem/2.25rem RepsolSoleDisplayRegular;--rds-numbers-02-md: 1.75rem/2.25rem RepsolSoleDisplayRegular;--rds-numbers-02-ld: 2.5rem/3rem RepsolSoleDisplayRegular;--rds-numbers-02-xd: 2.5rem/3rem RepsolSoleDisplayRegular;--rds-numbers-03-sd: 1.5rem/2rem RepsolSoleDisplayRegular;--rds-numbers-03-md: 1.5rem/2rem RepsolSoleDisplayRegular;--rds-numbers-03-ld: 1.75rem/2.25rem RepsolSoleDisplayRegular;--rds-numbers-03-xd: 1.75rem/2.25rem RepsolSoleDisplayRegular}.rds-e-link[data-v-16fa62ca]{font:1rem/1.5rem RepsolSoleTextBold;align-items:center;color:#006a82;display:inline-flex}.rds-e-link__breadcrumbs[data-v-16fa62ca]:hover{color:#001e37!important}.rds-e-link[data-v-16fa62ca]:hover{color:#009bbe;cursor:pointer}.rds-e-link:hover:not(.rds-e-link--underline) .rds-e-link__text[data-v-16fa62ca]:after{width:100%}.rds-e-link[data-v-16fa62ca]:active{color:#006a8280}.rds-e-link[data-v-16fa62ca]:focus-visible{border-radius:4px;outline:none;outline:2px solid #009BBE}.rds-e-link__icon[data-v-16fa62ca]{padding-right:.5rem}.rds-e-link__icon-left[data-v-16fa62ca]{margin-right:6px}.rds-e-link__icon-right[data-v-16fa62ca]{margin-left:6px}.rds-e-link__text[data-v-16fa62ca]{font:1rem/1.5rem RepsolSoleTextBold;position:relative}.rds-e-link__text[data-v-16fa62ca]:after{background-color:currentColor;bottom:0;content:"";height:1px;left:0;position:absolute;transition:width .2s ease-in-out;width:0}.rds-e-link__text--underline[data-v-16fa62ca]{text-decoration:underline}.rds-e-link__text--underline[data-v-16fa62ca]:after{display:none}.rds-e-link--inverse[data-v-16fa62ca]{color:#fff}.rds-e-link--inverse[data-v-16fa62ca]:hover{color:#fff;opacity:.75}.rds-e-link--inverse[data-v-16fa62ca]:active{color:#fff;opacity:.5}.rds-e-link--grey[data-v-16fa62ca]{color:#006a82}.rds-e-link--grey[data-v-16fa62ca]:hover{color:#006a82;opacity:.75}.rds-e-link--grey[data-v-16fa62ca]:active{color:#006a82;opacity:.5}.rds-e-arrow-link[data-v-16fa62ca]{align-items:center;display:inline-flex}.rds-e-arrow-link__icon[data-v-16fa62ca]{color:inherit;height:.875rem}.rds-e-arrow-link__icon--inverse[data-v-16fa62ca]{fill:#fff}.rds-e-arrow-link__icon--inverse[data-v-16fa62ca]:active{opacity:.5}.rds-e-arrow-link__icon--arrow[data-v-16fa62ca]{color:inherit;height:.875rem;min-height:1.25rem;min-width:1.25rem;width:1.25rem}.rds-e-arrow-link__icon--grey[data-v-16fa62ca]{fill:#fff}.rds-e-arrow-link__icon--grey[data-v-16fa62ca]:active{opacity:.5}
1
+ [data-v-31849beb]:root{--rds-caption-01: .875rem/1.125rem RepsolSoleTextRegular;--rds-caption-01-bold: .875rem/1.125rem RepsolSoleTextBold;--rds-caption-01-underline: .875rem/1.125rem RepsolSoleTextRegular;--rds-caption-02: .75rem/1rem RepsolSoleTextRegular;--rds-caption-02-bold: .75rem/1rem RepsolSoleTextBold;--rds-caption-02-underline: .75rem/1rem RepsolSoleTextRegular;--rds-caption-tag: .75rem/1rem RepsolSoleTextRegular;--rds-body-01: 1rem/1.5rem RepsolSoleTextRegular;--rds-body-02: .875rem/1.25rem RepsolSoleTextRegular;--rds-body-01-bold: 1rem/1.5rem RepsolSoleTextBold;--rds-body-01-underline: 1rem/1.3125rem RepsolSoleTextRegular;--rds-body-02-bold: .875rem/1.25rem RepsolSoleTextBold;--rds-body-02-underline: .875rem/1.25rem RepsolSoleTextRegular;--rds-button-01: 1rem/1.5rem RepsolSoleTextBold;--rds-button-02: .875rem/1.25rem RepsolSoleTextBold;--rds-monospaced-body-01: 1rem/1.5rem SourceCodeProRegular;--rds-monospaced-body-01-bold: 1rem/1.5rem SourceCodeProBold;--rds-monospaced-body-02: .875rem/1.25rem SourceCodeProRegular;--rds-monospaced-body-02-bold: .875rem/1.25rem SourceCodeProBold;--rds-monospaced-caption-01: .875rem/1.125rem SourceCodeProRegular;--rds-monospaced-caption-01-bold: .875rem/1.125rem SourceCodeProBold;--rds-monospaced-caption-02: .75rem/1rem SourceCodeProRegular;--rds-monospaced-caption-02-bold: .75rem/1rem SourceCodeProBold;--rds-title-01: 1.125rem/1.625rem RepsolSoleTextBold;--rds-title-02: 1rem/1.5rem RepsolSoleTextBold;--rds-headline-00-sd: 2.5rem/3rem RepsolSoleDisplayRegular;--rds-headline-00-md: 3.5rem/4.25rem RepsolSoleDisplayRegular;--rds-headline-00-ld: 4rem/5rem RepsolSoleDisplayRegular;--rds-headline-00-xd: 4.5rem/5.75rem RepsolSoleDisplayRegular;--rds-headline-01-sd: 2rem/2.5rem RepsolSoleDisplayRegular;--rds-headline-01-md: 2.5rem/3rem RepsolSoleDisplayRegular;--rds-headline-01-ld: 3rem/3.75rem RepsolSoleDisplayRegular;--rds-headline-01-xd: 3.5rem/4.25rem RepsolSoleDisplayRegular;--rds-headline-02-sd: 1.75rem/2.25rem RepsolSoleDisplayRegular;--rds-headline-02-md: 2rem/2.5rem RepsolSoleDisplayRegular;--rds-headline-02-ld: 2.25rem/3rem RepsolSoleDisplayRegular;--rds-headline-02-xd: 2.75rem/3.5rem RepsolSoleDisplayRegular;--rds-headline-03-sd: 1.375rem/1.875rem RepsolSoleDisplayRegular;--rds-headline-03-md: 1.5rem/2rem RepsolSoleDisplayRegular;--rds-headline-03-ld: 1.75rem/2.25rem RepsolSoleDisplayRegular;--rds-headline-03-xd: 2rem/2.5rem RepsolSoleDisplayRegular;--rds-headline-04-sd: 1.125rem/1.625rem RepsolSoleDisplayRegular;--rds-headline-04-md: 1.125rem/1.625rem RepsolSoleDisplayRegular;--rds-headline-04-ld: 1.25rem/1.75rem RepsolSoleDisplayRegular;--rds-headline-04-xd: 1.5rem/2rem RepsolSoleDisplayRegular;--rds-numbers-00-sd: 3.5rem/4.25rem RepsolSoleDisplayRegular;--rds-numbers-00-md: 3.5rem/4.25rem RepsolSoleDisplayRegular;--rds-numbers-00-ld: 7rem/8.5rem RepsolSoleDisplayRegular;--rds-numbers-00-xd: 7rem/8.5rem RepsolSoleDisplayRegular;--rds-numbers-01-sd: 2.25rem/2.75rem RepsolSoleDisplayRegular;--rds-numbers-01-md: 2.25rem/2.75rem RepsolSoleDisplayRegular;--rds-numbers-01-ld: 3rem/3.75rem RepsolSoleDisplayRegular;--rds-numbers-01-xd: 3rem/3.75rem RepsolSoleDisplayRegular;--rds-numbers-02-sd: 1.75rem/2.25rem RepsolSoleDisplayRegular;--rds-numbers-02-md: 1.75rem/2.25rem RepsolSoleDisplayRegular;--rds-numbers-02-ld: 2.5rem/3rem RepsolSoleDisplayRegular;--rds-numbers-02-xd: 2.5rem/3rem RepsolSoleDisplayRegular;--rds-numbers-03-sd: 1.5rem/2rem RepsolSoleDisplayRegular;--rds-numbers-03-md: 1.5rem/2rem RepsolSoleDisplayRegular;--rds-numbers-03-ld: 1.75rem/2.25rem RepsolSoleDisplayRegular;--rds-numbers-03-xd: 1.75rem/2.25rem RepsolSoleDisplayRegular}.rds-e-link[data-v-31849beb]{font:1rem/1.5rem RepsolSoleTextBold;align-items:center;color:#006a82;display:inline-flex}.rds-e-link__breadcrumbs[data-v-31849beb]:hover{color:#001e37!important}.rds-e-link[data-v-31849beb]:hover{color:#009bbe;cursor:pointer}.rds-e-link:hover:not(.rds-e-link--underline) .rds-e-link__text[data-v-31849beb]:after{width:100%}.rds-e-link[data-v-31849beb]:active{color:#006a8280}.rds-e-link[data-v-31849beb]:focus-visible{border-radius:4px;outline:none;outline:2px solid #009BBE}.rds-e-link__icon[data-v-31849beb]{padding-right:.5rem}.rds-e-link__icon-left[data-v-31849beb]{margin-right:6px}.rds-e-link__icon-right[data-v-31849beb]{margin-left:6px}.rds-e-link__text[data-v-31849beb]{font:1rem/1.5rem RepsolSoleTextBold;position:relative}.rds-e-link__text[data-v-31849beb]:after{background-color:currentColor;bottom:0;content:"";height:1px;left:0;position:absolute;transition:width .2s ease-in-out;width:0}.rds-e-link__text--underline[data-v-31849beb]{text-decoration:underline}.rds-e-link__text--underline[data-v-31849beb]:after{display:none}.rds-e-link--inverse[data-v-31849beb]{color:#fff}.rds-e-link--inverse[data-v-31849beb]:hover{color:#fff;opacity:.75}.rds-e-link--inverse[data-v-31849beb]:active{color:#fff;opacity:.5}.rds-e-link--grey[data-v-31849beb]{color:#006a82}.rds-e-link--grey[data-v-31849beb]:hover{color:#006a82;opacity:.75}.rds-e-link--grey[data-v-31849beb]:active{color:#006a82;opacity:.5}.rds-e-arrow-link[data-v-31849beb]{align-items:center;display:inline-flex}.rds-e-arrow-link__icon[data-v-31849beb]{color:inherit;height:.875rem}.rds-e-arrow-link__icon--inverse[data-v-31849beb]{fill:#fff}.rds-e-arrow-link__icon--inverse[data-v-31849beb]:active{opacity:.5}.rds-e-arrow-link__icon--arrow[data-v-31849beb]{color:inherit;height:.875rem;min-height:1.25rem;min-width:1.25rem;width:1.25rem}.rds-e-arrow-link__icon--grey[data-v-31849beb]{fill:#fff}.rds-e-arrow-link__icon--grey[data-v-31849beb]:active{opacity:.5}