@evercam/ui 1.0.0-preview-missing-types-cf2d2fa52 → 1.0.0-preview-test-ids-b5f7f0bc5
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/attributes.json +20 -0
- package/dist/components/ECheckbox.vue.d.ts +1 -0
- package/dist/components/ECopyToClipboardBtn.vue.d.ts +1 -0
- package/dist/components/EDialog.vue.d.ts +1 -0
- package/dist/components/EPopover.vue.d.ts +1 -0
- package/dist/components/ETabs.vue.d.ts +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.mjs +41 -11
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +5 -5
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/tags.json +8 -4
- package/dist/web-types.json +37 -1
- package/package.json +1 -1
package/dist/attributes.json
CHANGED
|
@@ -1184,6 +1184,11 @@
|
|
|
1184
1184
|
"description": "",
|
|
1185
1185
|
"default": true
|
|
1186
1186
|
},
|
|
1187
|
+
"ECopyToClipboardBtn/test-id": {
|
|
1188
|
+
"type": "string",
|
|
1189
|
+
"description": "",
|
|
1190
|
+
"default": ""
|
|
1191
|
+
},
|
|
1187
1192
|
"EPopover/dark": {
|
|
1188
1193
|
"type": "boolean",
|
|
1189
1194
|
"description": "",
|
|
@@ -1208,6 +1213,11 @@
|
|
|
1208
1213
|
"description": "",
|
|
1209
1214
|
"default": false
|
|
1210
1215
|
},
|
|
1216
|
+
"EPopover/test-id": {
|
|
1217
|
+
"type": "string",
|
|
1218
|
+
"description": "",
|
|
1219
|
+
"default": ""
|
|
1220
|
+
},
|
|
1211
1221
|
"EVoiceRecorderToText/value": {
|
|
1212
1222
|
"type": "string",
|
|
1213
1223
|
"description": "",
|
|
@@ -1423,6 +1433,11 @@
|
|
|
1423
1433
|
"description": "",
|
|
1424
1434
|
"default": null
|
|
1425
1435
|
},
|
|
1436
|
+
"ETabs/test-id": {
|
|
1437
|
+
"type": "string",
|
|
1438
|
+
"description": "",
|
|
1439
|
+
"default": ""
|
|
1440
|
+
},
|
|
1426
1441
|
"ECard/title": {
|
|
1427
1442
|
"type": "string|any",
|
|
1428
1443
|
"description": ""
|
|
@@ -1463,6 +1478,11 @@
|
|
|
1463
1478
|
"description": "",
|
|
1464
1479
|
"default": false
|
|
1465
1480
|
},
|
|
1481
|
+
"ECard/test-id": {
|
|
1482
|
+
"type": "string",
|
|
1483
|
+
"description": "",
|
|
1484
|
+
"default": ""
|
|
1485
|
+
},
|
|
1466
1486
|
"ESchedulePicker/schedule-type": {
|
|
1467
1487
|
"type": "string",
|
|
1468
1488
|
"description": "",
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import Vue from "vue";
|
|
2
2
|
declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, unknown, unknown, unknown, {
|
|
3
3
|
checked: boolean;
|
|
4
|
+
testId: string;
|
|
4
5
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
5
6
|
export default _default;
|
|
@@ -16,6 +16,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
16
16
|
iconType: string;
|
|
17
17
|
textOnlyButton: boolean;
|
|
18
18
|
dark: boolean;
|
|
19
|
+
testId: string;
|
|
19
20
|
}, {}, import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
20
21
|
eventListeners: import("../mixins/event-listeners").IEventListener[];
|
|
21
22
|
}, {
|
|
@@ -24,6 +24,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
24
24
|
width: string | number;
|
|
25
25
|
height: string | number;
|
|
26
26
|
closeWithEscape: boolean;
|
|
27
|
+
testId: string;
|
|
27
28
|
}, {}, import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
28
29
|
eventListeners: import("../mixins/event-listeners").IEventListener[];
|
|
29
30
|
}, {
|
|
@@ -14,6 +14,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
14
14
|
panelSide: string;
|
|
15
15
|
panelClasses: {};
|
|
16
16
|
autoPosition: boolean;
|
|
17
|
+
testId: string;
|
|
17
18
|
}, {}, import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
18
19
|
isOpen: boolean;
|
|
19
20
|
selectId: string;
|
|
@@ -12,6 +12,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
12
12
|
dark: boolean;
|
|
13
13
|
vertical: boolean;
|
|
14
14
|
activeClass: string;
|
|
15
|
+
testId: string;
|
|
15
16
|
}, {}, import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
16
17
|
currentValue: any;
|
|
17
18
|
}, unknown, unknown, {
|
package/dist/index.d.ts
CHANGED
|
@@ -986,6 +986,7 @@ export declare const components: {
|
|
|
986
986
|
iconType: string;
|
|
987
987
|
textOnlyButton: boolean;
|
|
988
988
|
dark: boolean;
|
|
989
|
+
testId: string;
|
|
989
990
|
}, {}, import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
990
991
|
eventListeners: import("./mixins/event-listeners").IEventListener[];
|
|
991
992
|
}, {
|
|
@@ -1013,6 +1014,7 @@ export declare const components: {
|
|
|
1013
1014
|
panelSide: string;
|
|
1014
1015
|
panelClasses: {};
|
|
1015
1016
|
autoPosition: boolean;
|
|
1017
|
+
testId: string;
|
|
1016
1018
|
}, {}, import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
1017
1019
|
isOpen: boolean;
|
|
1018
1020
|
selectId: string;
|
|
@@ -1182,6 +1184,7 @@ export declare const components: {
|
|
|
1182
1184
|
dark: boolean;
|
|
1183
1185
|
vertical: boolean;
|
|
1184
1186
|
activeClass: string;
|
|
1187
|
+
testId: string;
|
|
1185
1188
|
}, {}, import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
1186
1189
|
currentValue: any;
|
|
1187
1190
|
}, unknown, unknown, {
|
package/dist/index.mjs
CHANGED
|
@@ -16838,6 +16838,10 @@ const mu = fu.exports, gu = F.extend({
|
|
|
16838
16838
|
autoPosition: {
|
|
16839
16839
|
type: Boolean,
|
|
16840
16840
|
default: !1
|
|
16841
|
+
},
|
|
16842
|
+
testId: {
|
|
16843
|
+
type: String,
|
|
16844
|
+
default: ""
|
|
16841
16845
|
}
|
|
16842
16846
|
},
|
|
16843
16847
|
data() {
|
|
@@ -16891,10 +16895,10 @@ const mu = fu.exports, gu = F.extend({
|
|
|
16891
16895
|
var yu = function() {
|
|
16892
16896
|
var e = this, r = e._self._c;
|
|
16893
16897
|
return r("div", e._b({ directives: [{ name: "click-outside", rawName: "v-click-outside", value: e.closePopover, expression: "closePopover" }], ref: "popoverWrapper", staticClass: "e-popover__wrapper e-relative e-w-full" }, "div", e.$attrs, !1), [e._t("trigger", function() {
|
|
16894
|
-
return [r("div", e._g(e._b({ ref: "triggerButton", staticClass: "e-popover__trigger-button e-relative e-w-full e-rounded e-py-2 e-leading-5 e-cursor-pointer e-h-[40px] e-flex e-justify-center e-items-center", attrs: { role: "button" }, on: { click: e.toggleOpen } }, "div", e.$attrs, !1), e.$listeners), [e._t("trigger-button-content", function() {
|
|
16898
|
+
return [r("div", e._g(e._b({ ref: "triggerButton", staticClass: "e-popover__trigger-button e-relative e-w-full e-rounded e-py-2 e-leading-5 e-cursor-pointer e-h-[40px] e-flex e-justify-center e-items-center", attrs: { role: "button", "data-test-id": e.testId ? `${e.testId}-trigger` : void 0 }, on: { click: e.toggleOpen } }, "div", e.$attrs, !1), e.$listeners), [e._t("trigger-button-content", function() {
|
|
16895
16899
|
return [r("span", [e._v(" " + e._s(e.label) + " ")])];
|
|
16896
16900
|
})], 2)];
|
|
16897
|
-
}, { toggle: e.toggleOpen, isOpen: e.isOpen }), e.isOpen ? r("div", e._b({ ref: "panelMenu", staticClass: "e-popover__menu-wrapper e-absolute e-bg-gray-800 e-z-[5] e-min-w-[160px] e-w-full e-min-h-12 e-max-h-72 e-overflow-auto e-text-sm e-rounded-md e-scrollbar-thin e-scrollbar-thumb-rounded-full e-scrollbar-track-rounded-full e-scrollbar-thumb-gray-400 shadow-2xl focus:e-outline-none sm:e-text-sm", class: [e.panelThemeClasses, e.panelClasses, e.panelPositionClass] }, "div", e.$attrs, !1), [e._t("panel", function() {
|
|
16901
|
+
}, { toggle: e.toggleOpen, isOpen: e.isOpen }), e.isOpen ? r("div", e._b({ ref: "panelMenu", staticClass: "e-popover__menu-wrapper e-absolute e-bg-gray-800 e-z-[5] e-min-w-[160px] e-w-full e-min-h-12 e-max-h-72 e-overflow-auto e-text-sm e-rounded-md e-scrollbar-thin e-scrollbar-thumb-rounded-full e-scrollbar-track-rounded-full e-scrollbar-thumb-gray-400 shadow-2xl focus:e-outline-none sm:e-text-sm", class: [e.panelThemeClasses, e.panelClasses, e.panelPositionClass], attrs: { "data-test-id": e.testId ? `${e.testId}-panel` : void 0 } }, "div", e.$attrs, !1), [e._t("panel", function() {
|
|
16898
16902
|
return [e._t("default")];
|
|
16899
16903
|
}, { toggleOpen: e.toggleOpen, isOpen: e.isOpen })], 2) : e._e()], 2);
|
|
16900
16904
|
}, _u = [], Cu = /* @__PURE__ */ A(
|
|
@@ -16903,7 +16907,7 @@ var yu = function() {
|
|
|
16903
16907
|
_u,
|
|
16904
16908
|
!1,
|
|
16905
16909
|
null,
|
|
16906
|
-
"
|
|
16910
|
+
"cc8fde1c",
|
|
16907
16911
|
null,
|
|
16908
16912
|
null
|
|
16909
16913
|
);
|
|
@@ -16916,6 +16920,10 @@ const sn = Cu.exports, bu = F.extend({
|
|
|
16916
16920
|
checked: {
|
|
16917
16921
|
type: Boolean,
|
|
16918
16922
|
default: !1
|
|
16923
|
+
},
|
|
16924
|
+
testId: {
|
|
16925
|
+
type: String,
|
|
16926
|
+
default: ""
|
|
16919
16927
|
}
|
|
16920
16928
|
}
|
|
16921
16929
|
});
|
|
@@ -16924,14 +16932,14 @@ var xu = function() {
|
|
|
16924
16932
|
return e._self._setupProxy, r("div", e._g(e._b({ staticClass: "e-select-checkbox e-box-border e-w-4 e-h-4 e-rounded e-flex e-items-center e-justify-center e-align-middle e-border-solid e-border-2", class: {
|
|
16925
16933
|
"e-border-gray-500": !e.checked,
|
|
16926
16934
|
"e-bg-[#1976d2] e-border-[#1976d2]": e.checked
|
|
16927
|
-
}, staticStyle: { "border-radius": "2px" } }, "div", e.$attrs, !1), e.$listeners), [e.checked ? r("EIcon", { attrs: { icon: "far fa-check", color: "e-text-white", size: "xs" } }) : e._e()], 1);
|
|
16935
|
+
}, staticStyle: { "border-radius": "2px" }, attrs: { "data-test-id": e.testId || void 0 } }, "div", e.$attrs, !1), e.$listeners), [e.checked ? r("EIcon", { attrs: { icon: "far fa-check", color: "e-text-white", size: "xs" } }) : e._e()], 1);
|
|
16928
16936
|
}, wu = [], Su = /* @__PURE__ */ A(
|
|
16929
16937
|
bu,
|
|
16930
16938
|
xu,
|
|
16931
16939
|
wu,
|
|
16932
16940
|
!1,
|
|
16933
16941
|
null,
|
|
16934
|
-
"
|
|
16942
|
+
"7e31e3f2",
|
|
16935
16943
|
null,
|
|
16936
16944
|
null
|
|
16937
16945
|
);
|
|
@@ -20329,6 +20337,10 @@ const l7 = o7.exports, c7 = F.extend({
|
|
|
20329
20337
|
dark: {
|
|
20330
20338
|
type: Boolean,
|
|
20331
20339
|
default: !0
|
|
20340
|
+
},
|
|
20341
|
+
testId: {
|
|
20342
|
+
type: String,
|
|
20343
|
+
default: ""
|
|
20332
20344
|
}
|
|
20333
20345
|
},
|
|
20334
20346
|
data() {
|
|
@@ -20386,14 +20398,14 @@ const l7 = o7.exports, c7 = F.extend({
|
|
|
20386
20398
|
});
|
|
20387
20399
|
var u7 = function() {
|
|
20388
20400
|
var e = this, r = e._self._c;
|
|
20389
|
-
return r("EActionButton", e._g(e._b({ attrs: { "tooltip-text": e.tooltipText, "tooltip-position": "top", icon: e.iconType, "icon-size": "Lg", dark: e.dark, "button-classes": e.copyButtonClasses }, on: { click: e.copyTextToClipboard } }, "EActionButton", e.$attrs, !1), e.$listeners), [e._v(" " + e._s(e.buttonText) + " "), r("textarea", { ref: "copyToClipboard", staticClass: "copy-to-clipboard", attrs: { readonly: "" } })]);
|
|
20401
|
+
return r("EActionButton", e._g(e._b({ attrs: { "tooltip-text": e.tooltipText, "tooltip-position": "top", icon: e.iconType, "icon-size": "Lg", dark: e.dark, "button-classes": e.copyButtonClasses, "data-test-id": e.testId || void 0 }, on: { click: e.copyTextToClipboard } }, "EActionButton", e.$attrs, !1), e.$listeners), [e._v(" " + e._s(e.buttonText) + " "), r("textarea", { ref: "copyToClipboard", staticClass: "copy-to-clipboard", attrs: { readonly: "" } })]);
|
|
20390
20402
|
}, d7 = [], h7 = /* @__PURE__ */ A(
|
|
20391
20403
|
c7,
|
|
20392
20404
|
u7,
|
|
20393
20405
|
d7,
|
|
20394
20406
|
!1,
|
|
20395
20407
|
null,
|
|
20396
|
-
"
|
|
20408
|
+
"3822caa0",
|
|
20397
20409
|
null,
|
|
20398
20410
|
null
|
|
20399
20411
|
);
|
|
@@ -20435,6 +20447,10 @@ const li = h7.exports, p7 = F.extend({
|
|
|
20435
20447
|
closeWithEscape: {
|
|
20436
20448
|
type: Boolean,
|
|
20437
20449
|
default: !0
|
|
20450
|
+
},
|
|
20451
|
+
testId: {
|
|
20452
|
+
type: String,
|
|
20453
|
+
default: ""
|
|
20438
20454
|
}
|
|
20439
20455
|
},
|
|
20440
20456
|
computed: {
|
|
@@ -20533,11 +20549,11 @@ const li = h7.exports, p7 = F.extend({
|
|
|
20533
20549
|
});
|
|
20534
20550
|
var f7 = function() {
|
|
20535
20551
|
var e = this, r = e._self._c;
|
|
20536
|
-
return r("EFadeTransition", { attrs: { duration: 100 } }, [e.visible ? r("dialog", { ref: "dialog", staticClass: "e-dialog e-p-0 e-m-auto e-border-none e-rounded-lg", on: { click: e.handleBackdropClick, close: e.onClose, cancel: e.onClose } }, [r("div", { class: e.panelClasses, style: e.panelStyles }, [r("div", { class: e.headerContainerClasses }, [e._t("header", function() {
|
|
20552
|
+
return r("EFadeTransition", { attrs: { duration: 100 } }, [e.visible ? r("dialog", { ref: "dialog", staticClass: "e-dialog e-p-0 e-m-auto e-border-none e-rounded-lg", attrs: { "data-test-id": e.testId || void 0 }, on: { click: e.handleBackdropClick, close: e.onClose, cancel: e.onClose } }, [r("div", { class: e.panelClasses, style: e.panelStyles }, [r("div", { class: e.headerContainerClasses }, [e._t("header", function() {
|
|
20537
20553
|
return [e.title ? r("div", { staticClass: "e-text-lg e-font-bold" }, [e._v(" " + e._s(e.title) + " ")]) : e._e()];
|
|
20538
20554
|
}, { dark: e.dark })], 2), r("div", { class: e.bodyContainerClasses }, [e._t("default", null, { dark: e.dark })], 2), r("div", { class: e.footerContainerClasses }, [e._t("footer", function() {
|
|
20539
20555
|
return e._l(e.actions, function(n, s) {
|
|
20540
|
-
return r("button", { key: s, class: e.getButtonClasses(n.color), on: { click: function(i) {
|
|
20556
|
+
return r("button", { key: s, class: e.getButtonClasses(n.color), attrs: { "data-test-id": e.testId ? `${e.testId}-action-${s}` : void 0 }, on: { click: function(i) {
|
|
20541
20557
|
return i.stopPropagation(), e.onActionClick(n);
|
|
20542
20558
|
} } }, [e._v(" " + e._s(n.label) + " ")]);
|
|
20543
20559
|
});
|
|
@@ -21823,6 +21839,10 @@ const vd = gd.exports, yd = F.extend({
|
|
|
21823
21839
|
activeClass: {
|
|
21824
21840
|
type: String,
|
|
21825
21841
|
default: null
|
|
21842
|
+
},
|
|
21843
|
+
testId: {
|
|
21844
|
+
type: String,
|
|
21845
|
+
default: ""
|
|
21826
21846
|
}
|
|
21827
21847
|
},
|
|
21828
21848
|
methods: {
|
|
@@ -21873,6 +21893,7 @@ const vd = gd.exports, yd = F.extend({
|
|
|
21873
21893
|
href: n,
|
|
21874
21894
|
target: "_blank",
|
|
21875
21895
|
rel: "noopener noreferrer",
|
|
21896
|
+
"data-test-id": this.testId ? `${this.testId}-tab-${r}` : void 0,
|
|
21876
21897
|
...(l = e.data) == null ? void 0 : l.attrs
|
|
21877
21898
|
}
|
|
21878
21899
|
},
|
|
@@ -21884,6 +21905,7 @@ const vd = gd.exports, yd = F.extend({
|
|
|
21884
21905
|
class: s,
|
|
21885
21906
|
attrs: {
|
|
21886
21907
|
to: n,
|
|
21908
|
+
"data-test-id": this.testId ? `${this.testId}-tab-${r}` : void 0,
|
|
21887
21909
|
...(d = e.data) == null ? void 0 : d.attrs
|
|
21888
21910
|
}
|
|
21889
21911
|
},
|
|
@@ -21897,6 +21919,7 @@ const vd = gd.exports, yd = F.extend({
|
|
|
21897
21919
|
class: s,
|
|
21898
21920
|
attrs: {
|
|
21899
21921
|
href: n,
|
|
21922
|
+
"data-test-id": this.testId ? `${this.testId}-tab-${r}` : void 0,
|
|
21900
21923
|
...(h = e.data) == null ? void 0 : h.attrs
|
|
21901
21924
|
}
|
|
21902
21925
|
},
|
|
@@ -21908,7 +21931,10 @@ const vd = gd.exports, yd = F.extend({
|
|
|
21908
21931
|
{
|
|
21909
21932
|
key: r,
|
|
21910
21933
|
class: s,
|
|
21911
|
-
attrs:
|
|
21934
|
+
attrs: {
|
|
21935
|
+
"data-test-id": this.testId ? `${this.testId}-tab-${r}` : void 0,
|
|
21936
|
+
...(m = e.data) == null ? void 0 : m.attrs
|
|
21937
|
+
},
|
|
21912
21938
|
on: {
|
|
21913
21939
|
click: () => this.onTabSelected(r)
|
|
21914
21940
|
}
|
|
@@ -22022,6 +22048,10 @@ const xd = bd.exports, wd = F.extend({
|
|
|
22022
22048
|
dark: {
|
|
22023
22049
|
type: Boolean,
|
|
22024
22050
|
default: !1
|
|
22051
|
+
},
|
|
22052
|
+
testId: {
|
|
22053
|
+
type: String,
|
|
22054
|
+
default: ""
|
|
22025
22055
|
}
|
|
22026
22056
|
},
|
|
22027
22057
|
data() {
|
|
@@ -22117,7 +22147,7 @@ const xd = bd.exports, wd = F.extend({
|
|
|
22117
22147
|
});
|
|
22118
22148
|
var Sd = function() {
|
|
22119
22149
|
var e = this, r = e._self._c;
|
|
22120
|
-
return r("div", e._g(e._b({ staticClass: "e-card e-rounded-lg e-p-3 e-relative", class: e.containerClasses, style: e.containerStyle }, "div", e.$attrs, !1), e.$listeners), [e.image ? r("div", { staticClass: "e-card__img__container e-absolute e-overflow-hidden e-rounded-lg e-flex e-justify-center e-items-center e-z-0", class: e.imageContainerClasses, style: e.imageContainerStyle }, [e.blurBackground ? r("img", { staticClass: "e-card__image--bg e-absolute", style: e.imageStyle, attrs: { src: e.image, alt: "card image" } }) : e._e(), r("img", { staticClass: "e-card__image e-absolute", style: e.imageStyle, attrs: { src: e.image, alt: "card image" } })]) : e._e(), r("div", { staticClass: "e-card__body e-relative e-z-1" }, [e.title ? r("div", { staticClass: "e-card__title e-font-bold e-text-lg e-mb-2", style: e.titleStyle }, [e._t("title", function() {
|
|
22150
|
+
return r("div", e._g(e._b({ staticClass: "e-card e-rounded-lg e-p-3 e-relative", class: e.containerClasses, style: e.containerStyle, attrs: { "data-test-id": e.testId || void 0 } }, "div", e.$attrs, !1), e.$listeners), [e.image ? r("div", { staticClass: "e-card__img__container e-absolute e-overflow-hidden e-rounded-lg e-flex e-justify-center e-items-center e-z-0", class: e.imageContainerClasses, style: e.imageContainerStyle }, [e.blurBackground ? r("img", { staticClass: "e-card__image--bg e-absolute", style: e.imageStyle, attrs: { src: e.image, alt: "card image" } }) : e._e(), r("img", { staticClass: "e-card__image e-absolute", style: e.imageStyle, attrs: { src: e.image, alt: "card image" } })]) : e._e(), r("div", { staticClass: "e-card__body e-relative e-z-1" }, [e.title ? r("div", { staticClass: "e-card__title e-font-bold e-text-lg e-mb-2", style: e.titleStyle }, [e._t("title", function() {
|
|
22121
22151
|
return [e._v(" " + e._s(e.title) + " ")];
|
|
22122
22152
|
})], 2) : e._e(), r("div", { staticClass: "e-card__content", style: e.contentStyle }, [e._t("default")], 2)])]);
|
|
22123
22153
|
}, Td = [], kd = /* @__PURE__ */ A(
|