@trinityui/design-system 1.0.7 → 1.0.9
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/CHANGELOG.md +36 -0
- package/dist/Legend.js +17 -18
- package/dist/app-shell.js +9103 -0
- package/dist/charts.js +1 -1
- package/dist/data-table.js +1 -1
- package/dist/data-table2.js +1250 -0
- package/dist/data.js +122 -1366
- package/dist/essentials.js +2 -2
- package/dist/index.js +104 -105
- package/dist/theme.js +2 -2
- package/dist/tokens.js +2 -2
- package/package.json +1 -1
- package/dist/ai.js +0 -4466
- package/dist/navigation.js +0 -4661
package/dist/charts.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsxs as s, jsx as t, Fragment as bt } from "react/jsx-runtime";
|
|
|
2
2
|
import $t, { useId as Ft, useMemo as Q, useState as It, useCallback as pt } from "react";
|
|
3
3
|
import { ResponsiveContainer as Z, LineChart as xt, CartesianGrid as lt, XAxis as at, YAxis as et, Tooltip as nt, Legend as st, ReferenceLine as tt, Area as dt, Line as yt, BarChart as vt, Bar as kt, AreaChart as St, PieChart as Kt, Pie as Rt, Cell as gt, Sector as Dt, ScatterChart as Tt, ZAxis as Ot, Scatter as Bt, RadialBarChart as Ct, RadialBar as zt, PolarAngleAxis as Et, ComposedChart as jt } from "recharts";
|
|
4
4
|
import { Box as l, Skeleton as ut, Typography as z, useTheme as _t } from "@mui/material";
|
|
5
|
-
import { b as K, a as wt, s as V } from "./
|
|
5
|
+
import { b as K, a as wt, s as V } from "./app-shell.js";
|
|
6
6
|
const H = wt.colors.gray, M = [
|
|
7
7
|
K.primary.light,
|
|
8
8
|
// Purple (#7841C9)
|
package/dist/data-table.js
CHANGED