nexabase-report 0.5.12 → 0.5.13
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/{html2canvas.esm-d2sM-0Wm.js → html2canvas.esm-dgT_1dIT.js} +79 -78
- package/dist/{html2pdf-CyrjNJBM.js → html2pdf-CVyxZKQW.js} +4804 -4794
- package/dist/{index-BvGLpxpz.js → index-DbpCi5uz.js} +69970 -35298
- package/dist/index.es-m9_uegWC.js +6693 -0
- package/dist/{jspdf.es.min-DHE53KpH.js → jspdf.es.min-COMU5-uZ.js} +330 -330
- package/dist/lib/styles/_designer.css +49 -0
- package/dist/nexabase-report.es.js +10 -5
- package/dist/nexabase-report.umd.js +1514 -210
- package/package.json +6 -6
- package/dist/index.es-DLtoK965.js +0 -5646
|
@@ -2291,4 +2291,53 @@
|
|
|
2291
2291
|
font-weight: 600;
|
|
2292
2292
|
color: var(--nd-text-secondary);
|
|
2293
2293
|
line-height: 1.2;
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
/* ── Toolbox Grid ── */
|
|
2297
|
+
.nd-toolbox-panel .nd-widget-category {
|
|
2298
|
+
padding: 0 10px 10px 10px;
|
|
2299
|
+
}
|
|
2300
|
+
.nd-toolbox-grid {
|
|
2301
|
+
display: grid;
|
|
2302
|
+
grid-template-columns: 1fr 1fr;
|
|
2303
|
+
gap: 6px;
|
|
2304
|
+
margin-top: 6px;
|
|
2305
|
+
}
|
|
2306
|
+
.nd-toolbox-item {
|
|
2307
|
+
display: flex;
|
|
2308
|
+
flex-direction: column;
|
|
2309
|
+
align-items: center;
|
|
2310
|
+
justify-content: center;
|
|
2311
|
+
gap: 4px;
|
|
2312
|
+
padding: 10px 6px;
|
|
2313
|
+
border: 1px solid var(--nd-border, #e2e8f0);
|
|
2314
|
+
border-radius: 6px;
|
|
2315
|
+
background: var(--nd-surface, #fff);
|
|
2316
|
+
cursor: grab;
|
|
2317
|
+
transition: all 0.15s;
|
|
2318
|
+
user-select: none;
|
|
2319
|
+
}
|
|
2320
|
+
.nd-toolbox-item:hover {
|
|
2321
|
+
border-color: var(--nd-primary-light, #dbeafe);
|
|
2322
|
+
background: var(--nd-primary-ghost, rgba(37, 99, 235, 0.08));
|
|
2323
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.06);
|
|
2324
|
+
}
|
|
2325
|
+
.nd-toolbox-item:active {
|
|
2326
|
+
cursor: grabbing;
|
|
2327
|
+
transform: scale(0.96);
|
|
2328
|
+
}
|
|
2329
|
+
.nd-toolbox-item i {
|
|
2330
|
+
font-size: 1.2rem;
|
|
2331
|
+
}
|
|
2332
|
+
.nd-toolbox-item span {
|
|
2333
|
+
font-size: 10px;
|
|
2334
|
+
color: var(--nd-text-secondary, #64748b);
|
|
2335
|
+
text-align: center;
|
|
2336
|
+
line-height: 1.2;
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2339
|
+
@media (max-width: 1200px) {
|
|
2340
|
+
.nd-toolbox-grid {
|
|
2341
|
+
grid-template-columns: repeat(3, 1fr) !important;
|
|
2342
|
+
}
|
|
2294
2343
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
import { N as r, S as
|
|
1
|
+
import { D as s, N as r, a as t, S as E, b as m, i, r as l, e as o, t as p } from "./index-DbpCi5uz.js";
|
|
2
2
|
export {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
t as
|
|
6
|
-
|
|
3
|
+
s as DEFAULT_THEME,
|
|
4
|
+
r as NexaDesignerElement,
|
|
5
|
+
t as NexaViewerElement,
|
|
6
|
+
E as SYSTEM_VARIABLES,
|
|
7
|
+
m as applyTheme,
|
|
8
|
+
i as default,
|
|
9
|
+
l as registerNexaReport,
|
|
10
|
+
o as registerNexaReportElements,
|
|
11
|
+
p as themeToVars
|
|
7
12
|
};
|