@databrainhq/plugin 0.14.8 → 0.14.10
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/webcomponents.es.js +76 -41
- package/dist/webcomponents.umd.js +3 -3
- package/package.json +1 -1
package/dist/webcomponents.es.js
CHANGED
|
@@ -27329,31 +27329,38 @@ const Eq = ({
|
|
|
27329
27329
|
}, vq = (t) => {
|
|
27330
27330
|
De.useEffect(() => {
|
|
27331
27331
|
var n, r, M, a, u, o, s, N, D, g, l, j;
|
|
27332
|
-
const i = !!(document.querySelector("dbn-dashboard") || document.querySelector("dbn-metric"));
|
|
27332
|
+
const i = !!(document.querySelector("dbn-dashboard") || document.querySelector("dbn-metric") || document.querySelector("dbn-create-metric"));
|
|
27333
27333
|
if (!t) {
|
|
27334
27334
|
if (i) {
|
|
27335
27335
|
const T = document.querySelectorAll("dbn-dashboard");
|
|
27336
|
-
T.length && T.forEach((
|
|
27337
|
-
if (
|
|
27338
|
-
const
|
|
27339
|
-
`#dbn-dashboard-${
|
|
27336
|
+
T.length && T.forEach((h, x) => {
|
|
27337
|
+
if (h && h.shadowRoot) {
|
|
27338
|
+
const O = document.querySelector(
|
|
27339
|
+
`#dbn-dashboard-${x}-admin-styles`
|
|
27340
27340
|
);
|
|
27341
|
-
|
|
27341
|
+
O && h.shadowRoot.removeChild(O);
|
|
27342
27342
|
}
|
|
27343
27343
|
});
|
|
27344
27344
|
const y = document.querySelectorAll("dbn-metric");
|
|
27345
|
-
y.length && y.forEach((
|
|
27346
|
-
const
|
|
27347
|
-
`#dbn-metric-${
|
|
27345
|
+
y.length && y.forEach((h, x) => {
|
|
27346
|
+
const O = document.querySelector(
|
|
27347
|
+
`#dbn-metric-${x}-admin-styles`
|
|
27348
27348
|
);
|
|
27349
|
-
|
|
27349
|
+
O && h.shadowRoot && h.shadowRoot.removeChild(O);
|
|
27350
27350
|
});
|
|
27351
|
-
const z = document.
|
|
27352
|
-
|
|
27353
|
-
const
|
|
27351
|
+
const z = document.querySelectorAll("dbn-create-metric");
|
|
27352
|
+
z.length && z.forEach((h, x) => {
|
|
27353
|
+
const O = document.querySelector(
|
|
27354
|
+
`#dbn-create-metric-${x}-admin-styles`
|
|
27355
|
+
);
|
|
27356
|
+
O && h.shadowRoot && h.shadowRoot.removeChild(O);
|
|
27357
|
+
});
|
|
27358
|
+
const A = document.querySelector("#dbn-portal");
|
|
27359
|
+
if (A && A.shadowRoot) {
|
|
27360
|
+
const h = document.querySelector(
|
|
27354
27361
|
"#dbn-portal-admin-styles"
|
|
27355
27362
|
);
|
|
27356
|
-
|
|
27363
|
+
h && A.shadowRoot.removeChild(h);
|
|
27357
27364
|
}
|
|
27358
27365
|
} else {
|
|
27359
27366
|
const T = document.querySelector("#dbn-admin-styles");
|
|
@@ -27403,43 +27410,60 @@ const Eq = ({
|
|
|
27403
27410
|
padding: ${t.cardCustomization.padding} !important;
|
|
27404
27411
|
}`), i) {
|
|
27405
27412
|
const T = document.querySelectorAll("dbn-dashboard");
|
|
27406
|
-
T.length && T.forEach((
|
|
27407
|
-
if (
|
|
27408
|
-
const
|
|
27409
|
-
`#dbn-dashboard-${
|
|
27413
|
+
T.length && T.forEach((h, x) => {
|
|
27414
|
+
if (h && h.shadowRoot) {
|
|
27415
|
+
const O = document.querySelector(
|
|
27416
|
+
`#dbn-dashboard-${x}-admin-styles`
|
|
27410
27417
|
);
|
|
27411
|
-
if (
|
|
27412
|
-
|
|
27418
|
+
if (O)
|
|
27419
|
+
O.innerHTML = e;
|
|
27413
27420
|
else {
|
|
27414
|
-
const
|
|
27415
|
-
|
|
27421
|
+
const d = document.createElement("style");
|
|
27422
|
+
d.setAttribute(
|
|
27416
27423
|
"id",
|
|
27417
|
-
`dbn-dashboard-${
|
|
27418
|
-
),
|
|
27424
|
+
`dbn-dashboard-${x}-admin-styles`
|
|
27425
|
+
), d.innerHTML = e, h.shadowRoot.appendChild(d);
|
|
27419
27426
|
}
|
|
27420
27427
|
}
|
|
27421
27428
|
});
|
|
27422
27429
|
const y = document.querySelectorAll("dbn-metric");
|
|
27423
|
-
y.length && y.forEach((
|
|
27424
|
-
if (
|
|
27425
|
-
const
|
|
27426
|
-
`#dbn-metric-${
|
|
27430
|
+
y.length && y.forEach((h, x) => {
|
|
27431
|
+
if (h.shadowRoot) {
|
|
27432
|
+
const O = document.querySelector(
|
|
27433
|
+
`#dbn-metric-${x}-admin-styles`
|
|
27434
|
+
);
|
|
27435
|
+
if (O)
|
|
27436
|
+
O.innerHTML = e;
|
|
27437
|
+
else {
|
|
27438
|
+
const d = document.createElement("style");
|
|
27439
|
+
d.setAttribute(
|
|
27440
|
+
"id",
|
|
27441
|
+
`dbn-metric-${x}-admin-styles`
|
|
27442
|
+
), d.innerHTML = e, h.shadowRoot.appendChild(d);
|
|
27443
|
+
}
|
|
27444
|
+
}
|
|
27445
|
+
});
|
|
27446
|
+
const z = document.querySelectorAll("dbn-create-metric");
|
|
27447
|
+
z.length && z.forEach((h, x) => {
|
|
27448
|
+
if (h.shadowRoot) {
|
|
27449
|
+
const O = document.querySelector(
|
|
27450
|
+
`#dbn-create-metric-${x}-admin-styles`
|
|
27427
27451
|
);
|
|
27428
|
-
if (
|
|
27429
|
-
|
|
27452
|
+
if (O)
|
|
27453
|
+
O.innerHTML = e;
|
|
27430
27454
|
else {
|
|
27431
|
-
const
|
|
27432
|
-
|
|
27455
|
+
const d = document.createElement("style");
|
|
27456
|
+
d.setAttribute(
|
|
27433
27457
|
"id",
|
|
27434
|
-
`dbn-metric-${
|
|
27435
|
-
),
|
|
27458
|
+
`dbn-create-metric-${x}-admin-styles`
|
|
27459
|
+
), d.innerHTML = e, h.shadowRoot.appendChild(d);
|
|
27436
27460
|
}
|
|
27437
27461
|
}
|
|
27438
27462
|
});
|
|
27439
|
-
const
|
|
27440
|
-
if (
|
|
27441
|
-
const
|
|
27442
|
-
|
|
27463
|
+
const A = document.querySelector("#dbn-portal");
|
|
27464
|
+
if (A && A.shadowRoot) {
|
|
27465
|
+
const h = document.querySelector("#dbn-portal-admin-styles");
|
|
27466
|
+
h && A.shadowRoot.removeChild(h);
|
|
27443
27467
|
}
|
|
27444
27468
|
} else {
|
|
27445
27469
|
const T = document.querySelector("#dbn-admin-styles") || document.createElement("style");
|
|
@@ -121178,7 +121202,7 @@ const lat = "_container_tcaud_1", cat = "_label_tcaud_9", jat = "_textarea_tcaud
|
|
|
121178
121202
|
const [i, e] = De.useState();
|
|
121179
121203
|
return De.useEffect(() => {
|
|
121180
121204
|
const n = document.querySelector("#dbn-portal") || document.createElement("div");
|
|
121181
|
-
if (n.setAttribute("id", "dbn-portal"), document.body.querySelector("#dbn-portal") || document.body.appendChild(n), document.querySelector("dbn-dashboard") || document.querySelector("dbn-metric")) {
|
|
121205
|
+
if (n.setAttribute("id", "dbn-portal"), document.body.querySelector("#dbn-portal") || document.body.appendChild(n), document.querySelector("dbn-dashboard") || document.querySelector("dbn-metric") || document.querySelector("dbn-create-metric")) {
|
|
121182
121206
|
const r = document.querySelector("#dbn-styles"), M = n.shadowRoot || n.attachShadow({ mode: "open" });
|
|
121183
121207
|
if (r && !M.querySelector("#dbn-portal-style")) {
|
|
121184
121208
|
const a = document.createElement("style");
|
|
@@ -121959,7 +121983,9 @@ const WA = {
|
|
|
121959
121983
|
e == null ? void 0 : e.clientId
|
|
121960
121984
|
]
|
|
121961
121985
|
);
|
|
121962
|
-
return
|
|
121986
|
+
return De.useEffect(() => {
|
|
121987
|
+
h != null && h.length || j(void 0);
|
|
121988
|
+
}, [h]), /* @__PURE__ */ v.jsx(v.Fragment, { children: /* @__PURE__ */ v.jsxs("div", { className: `${cA["embedDashboard-container"]} dbn-dashboard`, children: [
|
|
121963
121989
|
((k = e == null ? void 0 : e.externalDashboard) == null ? void 0 : k.id) && !n && /* @__PURE__ */ v.jsxs(v.Fragment, { children: [
|
|
121964
121990
|
/* @__PURE__ */ v.jsxs("div", { className: cA["embedDashboard-header"], children: [
|
|
121965
121991
|
/* @__PURE__ */ v.jsx(Pe, { variant: "heading-lg", children: e.externalDashboard.name || "Dashboard" }),
|
|
@@ -122454,7 +122480,16 @@ const Aut = ({
|
|
|
122454
122480
|
] }) : /* @__PURE__ */ v.jsx(m5, { text: n || "Create metric is not enabled" }),
|
|
122455
122481
|
e ? /* @__PURE__ */ v.jsx("div", { className: "dbn-w-full dbn-h-full dbn-flex dbn-items-center dbn-justify-center", children: /* @__PURE__ */ v.jsx(a1, {}) }) : null
|
|
122456
122482
|
] });
|
|
122457
|
-
}, xut = (t) =>
|
|
122483
|
+
}, xut = (t) => {
|
|
122484
|
+
const i = De.useId(), [e, n] = De.useState("");
|
|
122485
|
+
return De.useEffect(() => {
|
|
122486
|
+
const r = document.querySelector("#dbn-styles");
|
|
122487
|
+
r && n(r.innerHTML);
|
|
122488
|
+
}, []), /* @__PURE__ */ v.jsxs(v.Fragment, { children: [
|
|
122489
|
+
/* @__PURE__ */ v.jsx("style", { id: `dbn-create-metric-${i}-style`, children: e }),
|
|
122490
|
+
/* @__PURE__ */ v.jsx(k7, { theme: t.theme, children: /* @__PURE__ */ v.jsx(INe, { token: t.token, dashboardId: t.dashboardId, children: /* @__PURE__ */ v.jsx(Lut, { ...t }) }) })
|
|
122491
|
+
] });
|
|
122492
|
+
}, put = l3(Aut, {
|
|
122458
122493
|
props: {
|
|
122459
122494
|
token: "string",
|
|
122460
122495
|
dashboardId: "string",
|