energy-components 1.14.0 → 1.14.2
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/components/dropdown.es.js +94 -95
- package/dist/components/modal.es.js +2 -2
- package/dist/components/style/dropdown.css +1 -1
- package/dist/components/style/modal.css +1 -1
- package/dist/components/style/textArea.css +1 -1
- package/dist/components/textArea.es.js +57 -57
- package/dist/energy-components.es.js +133 -134
- package/dist/energy-components.umd.js +2 -2
- package/dist/style.css +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as fe, mergeModels as J, toRefs as ve, useModel as ye, ref as
|
|
1
|
+
import { defineComponent as fe, mergeModels as J, toRefs as ve, useModel as ye, ref as D, computed as i, provide as U, onMounted as be, nextTick as R, onBeforeUnmount as we, createElementBlock as w, openBlock as u, normalizeClass as T, unref as a, createVNode as O, mergeProps as Q, withModifiers as n, createSlots as X, withCtx as d, createElementVNode as c, createCommentVNode as S, createBlock as K, renderSlot as v, Fragment as ge, toDisplayString as E } from "vue";
|
|
2
2
|
import he from "./multiselect.es.js";
|
|
3
3
|
import ke from "./checkbox.es.js";
|
|
4
4
|
import { _ as $e } from "./radio-group.vue_vue_type_script_setup_true_lang-DpguLlRK.js";
|
|
@@ -186,19 +186,19 @@ import './style/dropdown.css';const Oe = ["id"], Se = { class: "rds-e-dropdown__
|
|
|
186
186
|
emits: /* @__PURE__ */ J(["open", "close", "select", "change"], ["update:modelValue"]),
|
|
187
187
|
setup(o, { expose: L, emit: ee }) {
|
|
188
188
|
const s = o, k = ee, {
|
|
189
|
-
disabled:
|
|
189
|
+
disabled: x,
|
|
190
190
|
limit: M,
|
|
191
|
-
multiple:
|
|
191
|
+
multiple: $,
|
|
192
192
|
options: h,
|
|
193
193
|
textOnly: j
|
|
194
|
-
} = ve(s), r = ye(o, "modelValue"), p =
|
|
194
|
+
} = ve(s), r = ye(o, "modelValue"), p = D([]), m = D(), y = D(), I = D(""), _ = D(!1);
|
|
195
195
|
let V = !1;
|
|
196
|
-
const
|
|
196
|
+
const te = () => {
|
|
197
197
|
_.value = !0;
|
|
198
|
-
},
|
|
198
|
+
}, le = i(() => {
|
|
199
199
|
var e;
|
|
200
200
|
return ((e = m.value) == null ? void 0 : e.isOpen) ?? !1;
|
|
201
|
-
}),
|
|
201
|
+
}), C = i(() => s.autocomplete && Object.keys(s.autocomplete).length > 0), oe = i(() => ({
|
|
202
202
|
id: s.autocomplete.id || `autocomplete-${s.id}`,
|
|
203
203
|
label: s.autocomplete.label || s.label,
|
|
204
204
|
icon: s.autocomplete.icon || "",
|
|
@@ -213,24 +213,24 @@ import './style/dropdown.css';const Oe = ["id"], Se = { class: "rds-e-dropdown__
|
|
|
213
213
|
U("registerDropdownFocusElement", (e) => {
|
|
214
214
|
e && !p.value.includes(e) && p.value.push(e);
|
|
215
215
|
}), U("unregisterDropdownFocusElement", (e) => {
|
|
216
|
-
const
|
|
217
|
-
|
|
216
|
+
const t = p.value.findIndex((l) => l === e);
|
|
217
|
+
t > -1 && p.value.splice(t, 1);
|
|
218
218
|
}), U("isFocusWithinDropdown", (e) => {
|
|
219
|
-
const
|
|
220
|
-
return
|
|
219
|
+
const t = p.value.some((f) => f === e || f.contains(e)), l = e.classList && (e.classList.contains("rds-e-dropdown__before-list") || e.closest(".rds-e-dropdown__before-list") || e.classList.contains("multiselect") || e.closest(".multiselect"));
|
|
220
|
+
return t || l;
|
|
221
221
|
});
|
|
222
222
|
const H = i({
|
|
223
223
|
get: () => r.value && typeof r.value == "object" && !Array.isArray(r.value) ? r.value.id : typeof r.value == "string" || typeof r.value == "number" ? r.value : null,
|
|
224
224
|
set: (e) => {
|
|
225
|
-
const
|
|
226
|
-
r.value =
|
|
225
|
+
const t = h.value.find((l) => typeof l == "object" ? l.id === e : l === e);
|
|
226
|
+
r.value = t || null;
|
|
227
227
|
}
|
|
228
|
-
}), se = i(() => (h.value ?? []).every((e) => typeof e == "object" && (e == null ? void 0 : e.id) && (e == null ? void 0 : e.label))), re = i(() =>
|
|
228
|
+
}), se = i(() => (h.value ?? []).every((e) => typeof e == "object" && (e == null ? void 0 : e.id) && (e == null ? void 0 : e.label))), re = i(() => !$.value || s.closeOnSelect), q = i({
|
|
229
229
|
get: () => r.value ? s.multiple ? Array.isArray(r.value) ? r.value.length > M.value ? s.limitText(M.value) : r.value.map((e) => typeof e == "string" ? e : e.label).join(", ") : "" : typeof r.value == "object" ? r.value.label : typeof r.value == "string" ? r.value : "" : "",
|
|
230
230
|
set: () => null
|
|
231
231
|
}), ne = i(() => ({
|
|
232
232
|
"rds-e-dropdown-input": !0,
|
|
233
|
-
"rds-e-dropdown--disabled":
|
|
233
|
+
"rds-e-dropdown--disabled": x.value,
|
|
234
234
|
"rds-e-dropdown--small": s.small
|
|
235
235
|
})), ae = i(() => s.openDirection !== "auto" ? s.openDirection : ""), N = i(() => {
|
|
236
236
|
const e = {};
|
|
@@ -238,12 +238,12 @@ import './style/dropdown.css';const Oe = ["id"], Se = { class: "rds-e-dropdown__
|
|
|
238
238
|
"track-by": "id",
|
|
239
239
|
label: "label"
|
|
240
240
|
}), e;
|
|
241
|
-
}), de = i(() =>
|
|
241
|
+
}), de = i(() => C.value && s.autocomplete.autocompleteFilter ? h.value.filter((e) => s.autocomplete.autocompleteFilter(e, I.value)) : h.value), B = (e) => {
|
|
242
242
|
if (r.value === e) return !0;
|
|
243
243
|
if (Array.isArray(r.value)) {
|
|
244
244
|
if (typeof e == "string") return r.value.includes(e);
|
|
245
245
|
if (N.value.label)
|
|
246
|
-
return r.value.some((
|
|
246
|
+
return r.value.some((t) => t.id === e.id);
|
|
247
247
|
}
|
|
248
248
|
return !1;
|
|
249
249
|
}, ie = (e) => {
|
|
@@ -256,14 +256,14 @@ import './style/dropdown.css';const Oe = ["id"], Se = { class: "rds-e-dropdown__
|
|
|
256
256
|
});
|
|
257
257
|
}, pe = () => {
|
|
258
258
|
R(() => {
|
|
259
|
-
if (
|
|
259
|
+
if ($.value) {
|
|
260
260
|
const e = h.value.filter(
|
|
261
|
-
(
|
|
261
|
+
(t) => B(t)
|
|
262
262
|
) || [];
|
|
263
263
|
k("change", e);
|
|
264
264
|
} else {
|
|
265
265
|
const e = h.value.find(
|
|
266
|
-
(
|
|
266
|
+
(t) => B(t)
|
|
267
267
|
);
|
|
268
268
|
k("change", [e]);
|
|
269
269
|
}
|
|
@@ -277,9 +277,9 @@ import './style/dropdown.css';const Oe = ["id"], Se = { class: "rds-e-dropdown__
|
|
|
277
277
|
}, W = () => {
|
|
278
278
|
m.value.toggle(), V = !0;
|
|
279
279
|
}, z = () => {
|
|
280
|
-
|
|
280
|
+
le.value ? F() : A();
|
|
281
281
|
}, me = () => {
|
|
282
|
-
|
|
282
|
+
C.value && y.value && (te(), A(), R(() => {
|
|
283
283
|
y.value.focus();
|
|
284
284
|
}));
|
|
285
285
|
}, G = (e) => {
|
|
@@ -288,20 +288,20 @@ import './style/dropdown.css';const Oe = ["id"], Se = { class: "rds-e-dropdown__
|
|
|
288
288
|
V = !1;
|
|
289
289
|
return;
|
|
290
290
|
}
|
|
291
|
-
const
|
|
291
|
+
const t = e.target, l = !((g = (f = m.value) == null ? void 0 : f.$el) != null && g.contains(t));
|
|
292
292
|
if (_.value) {
|
|
293
|
-
const b = y.value && !y.value.$el.contains(
|
|
294
|
-
|
|
295
|
-
} else
|
|
293
|
+
const b = y.value && !y.value.$el.contains(t) && !t.closest(".rds-e-dropdown__before-list");
|
|
294
|
+
l && b && (_.value = !1, F());
|
|
295
|
+
} else l && F();
|
|
296
296
|
};
|
|
297
297
|
return be(() => {
|
|
298
298
|
var e;
|
|
299
299
|
(e = m.value) != null && e.$el && p.value.push(m.value.$el), R(() => {
|
|
300
|
-
var
|
|
301
|
-
if (
|
|
300
|
+
var t;
|
|
301
|
+
if (C.value && ((t = y.value) != null && t.$el)) {
|
|
302
302
|
p.value.push(y.value.$el);
|
|
303
|
-
const
|
|
304
|
-
|
|
303
|
+
const l = y.value.$el.closest(".rds-e-dropdown__before-list");
|
|
304
|
+
l && !p.value.includes(l) && p.value.push(l);
|
|
305
305
|
}
|
|
306
306
|
}), document.addEventListener("click", G);
|
|
307
307
|
}), we(() => {
|
|
@@ -315,77 +315,76 @@ import './style/dropdown.css';const Oe = ["id"], Se = { class: "rds-e-dropdown__
|
|
|
315
315
|
* Cierra el dropdown
|
|
316
316
|
*/
|
|
317
317
|
deactivate: F
|
|
318
|
-
}), (e,
|
|
318
|
+
}), (e, t) => (u(), w("div", {
|
|
319
319
|
class: T(["rds-e-dropdown", {
|
|
320
|
-
"rds-e-dropdown--text-only":
|
|
320
|
+
"rds-e-dropdown--text-only": a(j),
|
|
321
321
|
"rds-e-dropdown--inverse": o.inverse
|
|
322
322
|
}])
|
|
323
323
|
}, [
|
|
324
|
-
|
|
324
|
+
O(he, Q({
|
|
325
325
|
ref_key: "multiselect",
|
|
326
326
|
ref: m,
|
|
327
327
|
modelValue: r.value,
|
|
328
|
-
"onUpdate:modelValue":
|
|
328
|
+
"onUpdate:modelValue": t[12] || (t[12] = (l) => r.value = l),
|
|
329
329
|
class: ne.value,
|
|
330
330
|
options: de.value,
|
|
331
331
|
"close-on-select": re.value,
|
|
332
332
|
"show-labels": !1,
|
|
333
|
-
disabled:
|
|
334
|
-
multiple:
|
|
333
|
+
disabled: a(x),
|
|
334
|
+
multiple: a($),
|
|
335
335
|
"max-height": o.maxHeight,
|
|
336
336
|
searchable: !1,
|
|
337
337
|
small: o.small,
|
|
338
338
|
"open-direction": ae.value,
|
|
339
|
-
limit:
|
|
339
|
+
limit: a(M),
|
|
340
340
|
"limit-text": o.limitText
|
|
341
341
|
}, N.value, {
|
|
342
342
|
"append-to-body": o.appendToBody,
|
|
343
|
-
"text-only":
|
|
343
|
+
"text-only": a(j),
|
|
344
344
|
onOpen: ie,
|
|
345
345
|
onClose: ue,
|
|
346
346
|
onSelect: ce,
|
|
347
347
|
"onUpdate:modelValue": pe,
|
|
348
|
-
onFocus:
|
|
349
|
-
onBlur:
|
|
348
|
+
onFocus: t[13] || (t[13] = n(() => A(), ["prevent"])),
|
|
349
|
+
onBlur: n(() => null, ["prevent"])
|
|
350
350
|
}), X({
|
|
351
|
-
selection: d(({ isOpen:
|
|
352
|
-
|
|
351
|
+
selection: d(({ isOpen: l }) => [
|
|
352
|
+
a(j) ? (u(), w("div", {
|
|
353
353
|
key: 0,
|
|
354
354
|
id: `multiselect-dropdown-${o.id}`,
|
|
355
355
|
class: T([o.customTriggerClass, "rds-e-dropdown__text-only"]),
|
|
356
|
-
onMousedown:
|
|
356
|
+
onMousedown: n(z, ["prevent", "stop"])
|
|
357
357
|
}, [
|
|
358
358
|
c("span", null, E(q.value || o.label), 1),
|
|
359
|
-
|
|
359
|
+
O(a(Y), {
|
|
360
360
|
name: "arrow_down",
|
|
361
361
|
"aria-hidden": "true",
|
|
362
362
|
class: T(["rds-e-dropdown__input-caret", {
|
|
363
|
-
"rds-e-dropdown__input-caret--open":
|
|
363
|
+
"rds-e-dropdown__input-caret--open": l
|
|
364
364
|
}]),
|
|
365
|
-
onMousedown:
|
|
365
|
+
onMousedown: n(z, ["prevent", "stop"])
|
|
366
366
|
}, null, 8, ["class"])
|
|
367
|
-
], 42, Oe)) : (u(), K(
|
|
367
|
+
], 42, Oe)) : (u(), K(a(Z), {
|
|
368
368
|
key: 1,
|
|
369
369
|
id: `multiselect-dropdown-${o.id}`,
|
|
370
370
|
modelValue: q.value,
|
|
371
|
-
"onUpdate:modelValue":
|
|
371
|
+
"onUpdate:modelValue": t[0] || (t[0] = (f) => q.value = f),
|
|
372
372
|
class: "rds-e-dropdown__input",
|
|
373
|
-
disabled: n($),
|
|
374
373
|
label: o.label,
|
|
375
374
|
error: o.error,
|
|
376
375
|
helper: o.helper,
|
|
377
376
|
"helper-text": o.helperText,
|
|
378
377
|
readonly: "",
|
|
379
|
-
onMousedown:
|
|
378
|
+
onMousedown: n(W, ["prevent"])
|
|
380
379
|
}, X({
|
|
381
380
|
"right-icon": d(() => [
|
|
382
|
-
|
|
381
|
+
O(a(Y), {
|
|
383
382
|
name: "arrow_down",
|
|
384
383
|
"aria-hidden": "true",
|
|
385
384
|
class: T(["rds-e-dropdown__input-caret", {
|
|
386
|
-
"rds-e-dropdown__input-caret--open":
|
|
385
|
+
"rds-e-dropdown__input-caret--open": l
|
|
387
386
|
}]),
|
|
388
|
-
onMousedown:
|
|
387
|
+
onMousedown: n(W, ["prevent", "stop"])
|
|
389
388
|
}, null, 8, ["class"])
|
|
390
389
|
]),
|
|
391
390
|
_: 2
|
|
@@ -397,60 +396,60 @@ import './style/dropdown.css';const Oe = ["id"], Se = { class: "rds-e-dropdown__
|
|
|
397
396
|
]),
|
|
398
397
|
key: "0"
|
|
399
398
|
} : void 0
|
|
400
|
-
]), 1032, ["id", "modelValue", "
|
|
399
|
+
]), 1032, ["id", "modelValue", "label", "error", "helper", "helper-text"]))
|
|
401
400
|
]),
|
|
402
401
|
placeholder: d(() => [
|
|
403
|
-
|
|
402
|
+
t[14] || (t[14] = c("span", null, null, -1))
|
|
404
403
|
]),
|
|
405
|
-
option: d(({ option:
|
|
404
|
+
option: d(({ option: l, search: f, index: g }) => [
|
|
406
405
|
c("div", Se, [
|
|
407
406
|
c("div", xe, [
|
|
408
407
|
c("div", Ve, [
|
|
409
|
-
|
|
408
|
+
a($) ? (u(), K(a(ke), {
|
|
410
409
|
key: 0,
|
|
411
|
-
id: `${g}-${
|
|
410
|
+
id: `${g}-${l.id}`,
|
|
412
411
|
small: o.small,
|
|
413
|
-
"is-checked": B(
|
|
414
|
-
disabled:
|
|
415
|
-
onClick:
|
|
416
|
-
}, null, 8, ["id", "small", "is-checked", "disabled", "onClick"])) : !
|
|
412
|
+
"is-checked": B(l),
|
|
413
|
+
disabled: a(x) || (l == null ? void 0 : l.$isDisabled) || !1,
|
|
414
|
+
onClick: n((b) => P(l), ["prevent", "stop"])
|
|
415
|
+
}, null, 8, ["id", "small", "is-checked", "disabled", "onClick"])) : !a($) && o.showRadio ? (u(), K(a($e), {
|
|
417
416
|
key: 1,
|
|
418
417
|
modelValue: H.value,
|
|
419
|
-
"onUpdate:modelValue":
|
|
418
|
+
"onUpdate:modelValue": t[1] || (t[1] = (b) => H.value = b),
|
|
420
419
|
"group-name": `group-${o.id}`
|
|
421
420
|
}, {
|
|
422
421
|
default: d(() => [
|
|
423
|
-
|
|
424
|
-
id: `${g}-${typeof
|
|
422
|
+
O(a(Ce), {
|
|
423
|
+
id: `${g}-${typeof l == "object" ? l.id : g}`,
|
|
425
424
|
small: o.small,
|
|
426
|
-
option: typeof
|
|
427
|
-
checked: B(
|
|
428
|
-
disabled:
|
|
429
|
-
onClick:
|
|
425
|
+
option: typeof l == "object" ? l.id : l,
|
|
426
|
+
checked: B(l),
|
|
427
|
+
disabled: a(x) || (l == null ? void 0 : l.$isDisabled) || !1,
|
|
428
|
+
onClick: n((b) => P(l), ["prevent", "stop"])
|
|
430
429
|
}, null, 8, ["id", "small", "option", "checked", "disabled", "onClick"])
|
|
431
430
|
]),
|
|
432
431
|
_: 2
|
|
433
|
-
}, 1032, ["modelValue", "group-name"])) :
|
|
432
|
+
}, 1032, ["modelValue", "group-name"])) : S("", !0)
|
|
434
433
|
]),
|
|
435
434
|
c("div", Be, [
|
|
436
|
-
v(e.$slots, "singleLabel", { option:
|
|
435
|
+
v(e.$slots, "singleLabel", { option: l }, () => {
|
|
437
436
|
var b;
|
|
438
437
|
return [
|
|
439
438
|
(b = N.value) != null && b.label ? (u(), w(ge, { key: 0 }, [
|
|
440
|
-
c("span", null, E(
|
|
441
|
-
|
|
442
|
-
], 64)) : (u(), w("span", Fe, E(
|
|
439
|
+
c("span", null, E(l.label), 1),
|
|
440
|
+
l != null && l.detail ? (u(), w("span", Ae, E(l.detail), 1)) : S("", !0)
|
|
441
|
+
], 64)) : (u(), w("span", Fe, E(l), 1))
|
|
443
442
|
];
|
|
444
443
|
}, !0)
|
|
445
444
|
])
|
|
446
445
|
]),
|
|
447
446
|
e.$slots.optionAppend ? (u(), w("div", Re, [
|
|
448
447
|
v(e.$slots, "optionAppend", {
|
|
449
|
-
option:
|
|
448
|
+
option: l,
|
|
450
449
|
search: f,
|
|
451
450
|
index: g
|
|
452
451
|
}, void 0, !0)
|
|
453
|
-
])) :
|
|
452
|
+
])) : S("", !0)
|
|
454
453
|
])
|
|
455
454
|
]),
|
|
456
455
|
_: 2
|
|
@@ -471,8 +470,8 @@ import './style/dropdown.css';const Oe = ["id"], Se = { class: "rds-e-dropdown__
|
|
|
471
470
|
} : void 0,
|
|
472
471
|
e.$slots.noResult ? {
|
|
473
472
|
name: "noResult",
|
|
474
|
-
fn: d(({ search:
|
|
475
|
-
v(e.$slots, "noResult", { search:
|
|
473
|
+
fn: d(({ search: l }) => [
|
|
474
|
+
v(e.$slots, "noResult", { search: l }, void 0, !0)
|
|
476
475
|
]),
|
|
477
476
|
key: "2"
|
|
478
477
|
} : void 0,
|
|
@@ -483,48 +482,48 @@ import './style/dropdown.css';const Oe = ["id"], Se = { class: "rds-e-dropdown__
|
|
|
483
482
|
]),
|
|
484
483
|
key: "3"
|
|
485
484
|
} : void 0,
|
|
486
|
-
|
|
485
|
+
C.value || e.$slots.beforeList ? {
|
|
487
486
|
name: "beforeList",
|
|
488
487
|
fn: d(() => [
|
|
489
|
-
|
|
488
|
+
C.value ? (u(), w("div", {
|
|
490
489
|
key: 0,
|
|
491
490
|
class: "rds-e-dropdown__before-list",
|
|
492
|
-
onMousedown:
|
|
491
|
+
onMousedown: t[5] || (t[5] = n(() => {
|
|
493
492
|
}, ["stop"])),
|
|
494
|
-
onClick:
|
|
495
|
-
onBlur:
|
|
493
|
+
onClick: n(me, ["stop"]),
|
|
494
|
+
onBlur: t[6] || (t[6] = n(() => {
|
|
496
495
|
}, ["stop"])),
|
|
497
|
-
onFocus:
|
|
496
|
+
onFocus: t[7] || (t[7] = n(() => {
|
|
498
497
|
}, ["stop"])),
|
|
499
|
-
onKeydown:
|
|
498
|
+
onKeydown: t[8] || (t[8] = n(() => {
|
|
500
499
|
}, ["stop"])),
|
|
501
|
-
onKeyup:
|
|
500
|
+
onKeyup: t[9] || (t[9] = n(() => {
|
|
502
501
|
}, ["stop"])),
|
|
503
|
-
onKeypress:
|
|
502
|
+
onKeypress: t[10] || (t[10] = n(() => {
|
|
504
503
|
}, ["stop"])),
|
|
505
|
-
onChange:
|
|
504
|
+
onChange: t[11] || (t[11] = n(() => {
|
|
506
505
|
}, ["stop"]))
|
|
507
506
|
}, [
|
|
508
507
|
c("div", Te, [
|
|
509
|
-
|
|
508
|
+
O(a(Z), Q({
|
|
510
509
|
ref_key: "textFieldInput",
|
|
511
510
|
ref: y,
|
|
512
511
|
modelValue: I.value,
|
|
513
|
-
"onUpdate:modelValue":
|
|
512
|
+
"onUpdate:modelValue": t[2] || (t[2] = (l) => I.value = l)
|
|
514
513
|
}, oe.value, {
|
|
515
514
|
"full-width": "",
|
|
516
|
-
onMousedown:
|
|
515
|
+
onMousedown: t[3] || (t[3] = n(() => {
|
|
517
516
|
}, ["stop", "prevent"])),
|
|
518
|
-
onFocus:
|
|
517
|
+
onFocus: t[4] || (t[4] = n(() => {
|
|
519
518
|
}, ["stop"]))
|
|
520
519
|
}), null, 16, ["modelValue"])
|
|
521
520
|
])
|
|
522
|
-
], 32)) :
|
|
521
|
+
], 32)) : S("", !0),
|
|
523
522
|
e.$slots.beforeList ? (u(), w("div", Ee, [
|
|
524
523
|
c("div", Le, [
|
|
525
524
|
v(e.$slots, "beforeList", {}, void 0, !0)
|
|
526
525
|
])
|
|
527
|
-
])) :
|
|
526
|
+
])) : S("", !0)
|
|
528
527
|
]),
|
|
529
528
|
key: "4"
|
|
530
529
|
} : void 0,
|
|
@@ -542,7 +541,7 @@ import './style/dropdown.css';const Oe = ["id"], Se = { class: "rds-e-dropdown__
|
|
|
542
541
|
]), 1040, ["modelValue", "class", "options", "close-on-select", "disabled", "multiple", "max-height", "small", "open-direction", "limit", "limit-text", "append-to-body", "text-only"])
|
|
543
542
|
], 2));
|
|
544
543
|
}
|
|
545
|
-
}), ze = /* @__PURE__ */ De(Ie, [["__scopeId", "data-v-
|
|
544
|
+
}), ze = /* @__PURE__ */ De(Ie, [["__scopeId", "data-v-571e3275"]]);
|
|
546
545
|
export {
|
|
547
546
|
ze as default
|
|
548
547
|
};
|
|
@@ -3,7 +3,7 @@ import x from "./overlay.es.js";
|
|
|
3
3
|
import S from "./card.es.js";
|
|
4
4
|
import { R as b } from "./icon-svg-DuzOdbk1.js";
|
|
5
5
|
import { _ as q } from "./_plugin-vue_export-helper-CHgC5LLL.js";
|
|
6
|
-
import './style/modal.css';const $ = { class: "rds-e-modal__container" }, B = { class: "rds-e-modal__header" }, O = { class: "rds-e-
|
|
6
|
+
import './style/modal.css';const $ = { class: "rds-e-modal__container" }, B = { class: "rds-e-modal__header" }, O = { class: "rds-e-modal__header-text" }, M = {
|
|
7
7
|
key: 0,
|
|
8
8
|
class: "rds-e-modal__section-spacer"
|
|
9
9
|
}, N = { class: "rds-e-modal__body" }, W = {
|
|
@@ -145,7 +145,7 @@ import './style/modal.css';const $ = { class: "rds-e-modal__container" }, B = {
|
|
|
145
145
|
_: 3
|
|
146
146
|
}, 8, ["teleport"])) : l("", !0);
|
|
147
147
|
}
|
|
148
|
-
}), A = /* @__PURE__ */ q(V, [["__scopeId", "data-v-
|
|
148
|
+
}), A = /* @__PURE__ */ q(V, [["__scopeId", "data-v-53dfc378"]]);
|
|
149
149
|
export {
|
|
150
150
|
A as default
|
|
151
151
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
[data-v-
|
|
1
|
+
[data-v-571e3275]: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-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-dropdown__text-only[data-v-571e3275]{align-items:center;border-radius:8px;cursor:pointer;display:flex;justify-content:space-between;max-width:100%;overflow:hidden;padding:4px;transition:background-color .2s ease-in-out;width:100%}.rds-e-dropdown__text-only span[data-v-571e3275]{font:1rem/1.5rem RepsolSoleTextRegular;color:#43637d;margin-right:8px;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rds-e-dropdown__text-only[data-v-571e3275]:hover{background-color:#f4f8fa}.rds-e-dropdown__text-only:hover span[data-v-571e3275]{color:#009bbe}.rds-e-dropdown__text-only.active[data-v-571e3275]{background-color:#f4f8fa}.rds-e-dropdown__text-only .rds-e-dropdown__input-caret[data-v-571e3275]{flex-shrink:0;margin-left:auto}.rds-e-dropdown--inverse.rds-e-dropdown--text-only .rds-e-dropdown__text-only span[data-v-571e3275],.rds-e-dropdown--inverse.rds-e-dropdown--text-only .rds-e-dropdown__text-only .rds-e-icon-svg[data-v-571e3275]{color:#fff}.rds-e-dropdown--inverse.rds-e-dropdown--text-only .rds-e-dropdown__text-only[data-v-571e3275]:hover{background-color:#ffffff80}.rds-e-dropdown--disabled[data-v-571e3275]{opacity:.3;cursor:not-allowed;pointer-events:none}.rds-e-dropdown__option[data-v-571e3275]{align-content:center;align-items:center;display:grid;grid-template-columns:1fr auto;justify-content:space-between;padding:4px 0;width:100%}.rds-e-dropdown__option--content[data-v-571e3275]{align-content:flex-start;align-items:flex-start;display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:space-around;min-width:0;width:100%}.rds-e-dropdown__option--content>span[data-v-571e3275]:first-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.rds-e-dropdown__option-detail[data-v-571e3275]{font:.875rem/1.25rem RepsolSoleTextRegular;-webkit-box-orient:vertical;color:#43637d;display:-webkit-box;-webkit-line-clamp:2;overflow:hidden;text-overflow:ellipsis;white-space:normal}.rds-e-dropdown__option-container[data-v-571e3275]{align-content:center;align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;overflow:hidden;white-space:normal}.rds-e-dropdown__option--append[data-v-571e3275]{align-content:center}.rds-e-dropdown__option--prepend[data-v-571e3275] .rds-e-checkbox__container{padding-top:9px}.rds-e-dropdown__option--prepend[data-v-571e3275] .rds-e-radio__container{padding:7px 0 0}.rds-e-dropdown__option--prepend[data-v-571e3275] .rds-e-radio__label{margin:0}.rds-e-dropdown__before-list[data-v-571e3275]{background:linear-gradient(0deg,#fff0,#fff 20%);display:block;padding:16px 0;position:relative;top:0;width:100%}.rds-e-dropdown__before-list-container[data-v-571e3275]{align-content:center;align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-around;width:100%}.rds-e-dropdown__before-list-container .rds-e-textfield[data-v-571e3275]{width:100%;z-index:6}.rds-e-dropdown__after-list[data-v-571e3275]{background:linear-gradient(180deg,#fff0,#fff 20%);bottom:-16px;display:block;padding:16px;position:sticky}.rds-e-dropdown__after-list-container[data-v-571e3275]{align-content:center;align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-around}.rds-e-dropdown__input-caret[data-v-571e3275]{transition:transform .2s ease}.rds-e-dropdown__input-caret--open[data-v-571e3275]{transform:rotate(-180deg)}.rds-e-dropdown[data-v-571e3275] .multiselect__select{display:none}.rds-e-dropdown[data-v-571e3275] .multiselect__tags{background:transparent;border:none;border-radius:none;display:block;font-size:unset;min-height:unset;padding:0}.rds-e-dropdown[data-v-571e3275] .multiselect__single{display:none}.rds-e-dropdown[data-v-571e3275] .multiselect__option{align-content:center;align-items:center;border-radius:12px;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;line-height:unset;padding:8px}.rds-e-dropdown[data-v-571e3275] .multiselect__option--highlight{background-color:#f4f8fa!important;color:#009bbe!important}.rds-e-dropdown[data-v-571e3275] .multiselect__option--selected{color:#001e37;font-weight:400}.rds-e-dropdown[data-v-571e3275] .multiselect__option--disabled{opacity:.3}.rds-e-dropdown[data-v-571e3275] .multiselect__content-wrapper{box-shadow:0 4px 16px #00132414;border:none;border-radius:16px;margin-top:.5rem;padding:16px}.rds-e-dropdown[data-v-571e3275] .multiselect__content-wrapper--small{padding:8px}.rds-e-dropdown[data-v-571e3275] .multiselect__content-wrapper--teleported{box-shadow:0 4px 16px #00132414;border:none;border-radius:16px;padding:16px}.rds-e-dropdown[data-v-571e3275] .multiselect__content-wrapper--teleported .multiselect__option{align-content:center;align-items:center;border-radius:12px;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;line-height:unset;padding:8px}.rds-e-dropdown[data-v-571e3275] .multiselect__content-wrapper--teleported .multiselect__option--highlight{background-color:#f4f8fa!important;color:#009bbe!important}.rds-e-dropdown[data-v-571e3275] .multiselect__content-wrapper--teleported .multiselect__option--selected{color:#001e37;font-weight:400}.rds-e-dropdown[data-v-571e3275] .multiselect__content-wrapper--teleported .multiselect__option--disabled{opacity:.3}.rds-e-dropdown[data-v-571e3275] .multiselect__content-wrapper--teleported.multiselect__content-wrapper--small{padding:8px}.rds-e-dropdown[data-v-571e3275] .multiselect__content-wrapper--teleported.multiselect__content-wrapper--small .multiselect__option,.rds-e-dropdown--small[data-v-571e3275] .multiselect__option{padding:4px}.rds-e-dropdown--small[data-v-571e3275] .rds-e-checkbox__container{padding:0}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
[data-v-
|
|
1
|
+
[data-v-53dfc378]: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-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-modal__card[data-v-53dfc378]{border-bottom-left-radius:0;border-bottom-right-radius:0}@media (min-width: 720px){.rds-e-modal__card[data-v-53dfc378]{border-radius:16px;max-width:var(--rds-modal-max-width);width:var(--rds-modal-width)}}.rds-e-modal__container[data-v-53dfc378]{display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:space-between;max-height:50vh}@media (min-width: 720px){.rds-e-modal__container[data-v-53dfc378]{height:fit-content;max-height:calc(100vh - 128px)}}.rds-e-modal__container .rds-e-modal__section-spacer[data-v-53dfc378]{display:block;margin-top:24px;width:100%}.rds-e-modal__container .rds-e-modal__header[data-v-53dfc378]{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;position:relative;width:100%}.rds-e-modal__container .rds-e-modal__header-text[data-v-53dfc378]{width:100%}.rds-e-modal__container .rds-e-modal__header-close[data-v-53dfc378]{cursor:pointer;margin-left:auto}.rds-e-modal__container .rds-e-modal__body[data-v-53dfc378]{display:block;overflow-x:hidden;overflow-y:auto;width:100%}.rds-e-modal__container .rds-e-modal__footer[data-v-53dfc378]{align-items:flex-end;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;width:100%}@media (min-width: 1280px){.rds-e-modal__container .rds-e-modal__footer[data-v-53dfc378]{display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:flex-end;width:100%}}: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-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-overlay.rds-e-modal__overlay>.rds-e-overlay__content{left:unset;top:unset;transform:unset;bottom:0;width:100%;display:flex;justify-content:center}@media (min-width: 720px){.rds-e-overlay.rds-e-modal__overlay>.rds-e-overlay__content{left:50%;top:50%;transform:translate(-50%,-50%);bottom:unset}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
[data-v-
|
|
1
|
+
[data-v-b6c3c9f8]: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-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-textarea--disabled[data-v-b6c3c9f8]{opacity:.3;cursor:not-allowed;pointer-events:none}.rds-e-textarea__container[data-v-b6c3c9f8]{background-color:#fff;border:solid 1px #95b0c6;border-radius:.75rem;box-sizing:border-box;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;min-width:18.25rem;position:relative}.rds-e-textarea:not(.rds-e-textarea--disabled):hover .rds-e-textarea__container[data-v-b6c3c9f8]{border:solid 1px #001e37;cursor:pointer}.rds-e-textarea__container--keyboard-focus[data-v-b6c3c9f8]{border:solid 1px #009BBE;box-shadow:inset 0 0 0 1px #009bbe}.rds-e-textarea__container--active[data-v-b6c3c9f8]{border:solid 1px #001e37;color:#001e37;outline:none}.rds-e-textarea--error .rds-e-textarea__container[data-v-b6c3c9f8]{border:solid 1px #dE1c2e}.rds-e-textarea__input-container[data-v-b6c3c9f8]{display:flex;flex-direction:column;overflow:hidden;padding-top:30px;position:relative;width:100%}.rds-e-textarea[data-v-b6c3c9f8] .rds-e-textarea__label>.rds-e-icon{margin-right:8px}.rds-e-textarea__label[data-v-b6c3c9f8]{font:.875rem/1.25rem RepsolSoleTextRegular;align-items:center;color:#43637d;display:flex;left:1rem;pointer-events:none;position:absolute;top:.75rem;transition:all .2s ease-in-out}.rds-e-textarea--error .rds-e-textarea__label[data-v-b6c3c9f8]{color:#de1c2e}.rds-e-textarea__counter[data-v-b6c3c9f8]{font:.875rem/1.25rem RepsolSoleTextRegular;color:#43637d;display:flex;gap:20px;position:absolute;right:1rem;top:.75rem;transition:all .2s ease-in-out}.rds-e-textarea__counter--clearable[data-v-b6c3c9f8]{pointer-events:auto}.rds-e-textarea--error .rds-e-textarea__counter[data-v-b6c3c9f8]{color:#de1c2e}.rds-e-textarea__input[data-v-b6c3c9f8]{font:.875rem/1.25rem RepsolSoleTextRegular;border:none;border-radius:.75rem;color:#001e37;min-width:fit-content;overflow:auto;padding:1rem;padding-top:4px;resize:vertical;text-overflow:ellipsis}.rds-e-textarea__input--active[data-v-b6c3c9f8]{background-color:transparent}.rds-e-textarea__input[data-v-b6c3c9f8]::-webkit-resizer{background:none;border:0}.rds-e-textarea__input[data-v-b6c3c9f8]:hover,.rds-e-textarea__input[data-v-b6c3c9f8]:focus,.rds-e-textarea__input[data-v-b6c3c9f8]:active,.rds-e-textarea__input[data-v-b6c3c9f8]:disabled{border:0!important;box-shadow:none;cursor:pointer;outline:0!important}.rds-e-textarea__input[data-v-b6c3c9f8]:active{border:solid 1px #005870;color:#005870;outline:none}.rds-e-textarea__input--error[data-v-b6c3c9f8]{border:solid 1px #dE1c2e}.rds-e-textarea__input__textarea[data-v-b6c3c9f8]{height:8.625rem;resize:vertical}.rds-e-textarea__icon[data-v-b6c3c9f8]{margin-right:8px}.rds-e-textarea__icon--right[data-v-b6c3c9f8]{cursor:pointer;margin-right:0;position:absolute;right:0;top:0;width:auto}.rds-e-textarea__input:focus+.rds-e-textarea__icon[data-v-b6c3c9f8]{color:#006a82}.rds-e-textarea--error .rds-e-textarea__icon[data-v-b6c3c9f8]{color:#de1c2e}.rds-e-textarea__helper[data-v-b6c3c9f8]{font:.875rem/1.125rem RepsolSoleTextRegular;color:#43637d;padding-top:8px;text-align:left}.rds-e-textarea__helper--error[data-v-b6c3c9f8]{color:#de1c2e}.rds-e-textarea__resize-handle[data-v-b6c3c9f8]{border-bottom-right-radius:.75rem;bottom:0rem;display:flex;height:1rem;justify-content:center;pointer-events:none;position:absolute;right:0rem;width:1rem}.rds-e-textarea__resize-handle path[data-v-b6c3c9f8]{stroke:#95b0c6}.rds-e-textarea:hover .rds-e-textarea__resize-handle path[data-v-b6c3c9f8]{stroke:#43637d}.rds-e-textarea:focus-within .rds-e-textarea__resize-handle path[data-v-b6c3c9f8]{stroke:#95b0c6}.rds-e-textarea:active .rds-e-textarea__resize-handle path[data-v-b6c3c9f8]{stroke:#006a82}.rds-e-textarea--error .rds-e-textarea__resize-handle path[data-v-b6c3c9f8]{stroke:#de1c2e}
|