analytica-frontend-lib 1.0.80 → 1.0.82
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/Accordation/index.js +106 -0
- package/dist/Accordation/index.js.map +1 -1
- package/dist/Accordation/index.mjs +106 -0
- package/dist/Accordation/index.mjs.map +1 -1
- package/dist/Card/index.d.mts +16 -1
- package/dist/Card/index.d.ts +16 -1
- package/dist/Card/index.js +108 -0
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +107 -0
- package/dist/Card/index.mjs.map +1 -1
- package/dist/CheckBox/index.d.mts +1 -1
- package/dist/CheckBox/index.d.ts +1 -1
- package/dist/Radio/index.d.mts +2 -2
- package/dist/Radio/index.d.ts +2 -2
- package/dist/index.css +32 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +108 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +107 -0
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +32 -0
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/Card/index.js
CHANGED
|
@@ -30,6 +30,7 @@ __export(Card_exports, {
|
|
|
30
30
|
CardResults: () => CardResults,
|
|
31
31
|
CardSettings: () => CardSettings,
|
|
32
32
|
CardSimulado: () => CardSimulado,
|
|
33
|
+
CardSimulationHistory: () => CardSimulationHistory,
|
|
33
34
|
CardStatus: () => CardStatus,
|
|
34
35
|
CardSupport: () => CardSupport,
|
|
35
36
|
CardTest: () => CardTest,
|
|
@@ -1719,6 +1720,112 @@ var CardTest = (0, import_react.forwardRef)(
|
|
|
1719
1720
|
);
|
|
1720
1721
|
}
|
|
1721
1722
|
);
|
|
1723
|
+
var SIMULATION_TYPE_STYLES = {
|
|
1724
|
+
enem: {
|
|
1725
|
+
background: "bg-exam-1",
|
|
1726
|
+
badge: "exam1",
|
|
1727
|
+
text: "Enem"
|
|
1728
|
+
},
|
|
1729
|
+
prova: {
|
|
1730
|
+
background: "bg-exam-2",
|
|
1731
|
+
badge: "exam2",
|
|
1732
|
+
text: "Prova"
|
|
1733
|
+
},
|
|
1734
|
+
simulado: {
|
|
1735
|
+
background: "bg-exam-3",
|
|
1736
|
+
badge: "exam3",
|
|
1737
|
+
text: "Simulado"
|
|
1738
|
+
},
|
|
1739
|
+
vestibular: {
|
|
1740
|
+
background: "bg-exam-4",
|
|
1741
|
+
badge: "exam4",
|
|
1742
|
+
text: "Vestibular"
|
|
1743
|
+
}
|
|
1744
|
+
};
|
|
1745
|
+
var CardSimulationHistory = (0, import_react.forwardRef)(({ data, onSimulationClick, className, ...props }, ref) => {
|
|
1746
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1747
|
+
"div",
|
|
1748
|
+
{
|
|
1749
|
+
ref,
|
|
1750
|
+
className: `w-full max-w-[992px] h-auto ${className}`,
|
|
1751
|
+
...props,
|
|
1752
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { className: "flex flex-col gap-0", children: [
|
|
1753
|
+
data.map((section, sectionIndex) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { className: "flex flex-col", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
1754
|
+
"div",
|
|
1755
|
+
{
|
|
1756
|
+
className: `
|
|
1757
|
+
flex flex-row justify-center items-start px-4 py-6 gap-2 w-full bg-white
|
|
1758
|
+
${sectionIndex === 0 ? "rounded-t-3xl" : ""}
|
|
1759
|
+
`,
|
|
1760
|
+
children: [
|
|
1761
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1762
|
+
Text_default,
|
|
1763
|
+
{
|
|
1764
|
+
size: "xs",
|
|
1765
|
+
weight: "bold",
|
|
1766
|
+
className: "text-text-800 w-11 flex-shrink-0",
|
|
1767
|
+
children: section.date
|
|
1768
|
+
}
|
|
1769
|
+
),
|
|
1770
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { className: "flex flex-col gap-2 flex-1", children: section.simulations.map((simulation) => {
|
|
1771
|
+
const typeStyles = SIMULATION_TYPE_STYLES[simulation.type];
|
|
1772
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1773
|
+
CardBase,
|
|
1774
|
+
{
|
|
1775
|
+
layout: "horizontal",
|
|
1776
|
+
padding: "medium",
|
|
1777
|
+
minHeight: "none",
|
|
1778
|
+
cursor: "pointer",
|
|
1779
|
+
className: `
|
|
1780
|
+
${typeStyles.background} rounded-xl hover:shadow-soft-shadow-2
|
|
1781
|
+
transition-shadow duration-200 h-auto min-h-[61px]
|
|
1782
|
+
`,
|
|
1783
|
+
onClick: () => onSimulationClick?.(simulation),
|
|
1784
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { className: "flex justify-between items-center w-full gap-2", children: [
|
|
1785
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { className: "flex flex-col gap-2 flex-1 min-w-0", children: [
|
|
1786
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1787
|
+
Text_default,
|
|
1788
|
+
{
|
|
1789
|
+
size: "lg",
|
|
1790
|
+
weight: "bold",
|
|
1791
|
+
className: "text-text-950 truncate",
|
|
1792
|
+
children: simulation.title
|
|
1793
|
+
}
|
|
1794
|
+
),
|
|
1795
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { className: "flex items-center gap-2", children: [
|
|
1796
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1797
|
+
Badge_default,
|
|
1798
|
+
{
|
|
1799
|
+
variant: "examsOutlined",
|
|
1800
|
+
action: typeStyles.badge,
|
|
1801
|
+
size: "medium",
|
|
1802
|
+
children: typeStyles.text
|
|
1803
|
+
}
|
|
1804
|
+
),
|
|
1805
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Text_default, { size: "sm", className: "text-text-800 truncate", children: simulation.info })
|
|
1806
|
+
] })
|
|
1807
|
+
] }),
|
|
1808
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1809
|
+
import_phosphor_react2.CaretRight,
|
|
1810
|
+
{
|
|
1811
|
+
size: 24,
|
|
1812
|
+
className: "text-text-800 flex-shrink-0",
|
|
1813
|
+
"data-testid": "caret-icon"
|
|
1814
|
+
}
|
|
1815
|
+
)
|
|
1816
|
+
] })
|
|
1817
|
+
},
|
|
1818
|
+
simulation.id
|
|
1819
|
+
);
|
|
1820
|
+
}) })
|
|
1821
|
+
]
|
|
1822
|
+
}
|
|
1823
|
+
) }, section.date)),
|
|
1824
|
+
data.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { className: "w-full h-6 bg-white rounded-b-3xl" })
|
|
1825
|
+
] })
|
|
1826
|
+
}
|
|
1827
|
+
);
|
|
1828
|
+
});
|
|
1722
1829
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1723
1830
|
0 && (module.exports = {
|
|
1724
1831
|
CardActivitiesResults,
|
|
@@ -1731,6 +1838,7 @@ var CardTest = (0, import_react.forwardRef)(
|
|
|
1731
1838
|
CardResults,
|
|
1732
1839
|
CardSettings,
|
|
1733
1840
|
CardSimulado,
|
|
1841
|
+
CardSimulationHistory,
|
|
1734
1842
|
CardStatus,
|
|
1735
1843
|
CardSupport,
|
|
1736
1844
|
CardTest,
|