framepexls-ui-lib 0.3.21 → 0.3.23

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.
@@ -5,6 +5,7 @@ import React__default from 'react';
5
5
  type TopbarAction = {
6
6
  label: string;
7
7
  onClick?: () => void;
8
+ badge?: number | string;
8
9
  };
9
10
  type ButtonColor = NonNullable<React__default.ComponentProps<typeof Button>["color"]>;
10
11
  type Props = {
@@ -5,6 +5,7 @@ import React__default from 'react';
5
5
  type TopbarAction = {
6
6
  label: string;
7
7
  onClick?: () => void;
8
+ badge?: number | string;
8
9
  };
9
10
  type ButtonColor = NonNullable<React__default.ComponentProps<typeof Button>["color"]>;
10
11
  type Props = {
package/dist/AppTopbar.js CHANGED
@@ -34,6 +34,7 @@ __export(AppTopbar_exports, {
34
34
  module.exports = __toCommonJS(AppTopbar_exports);
35
35
  var import_jsx_runtime = require("react/jsx-runtime");
36
36
  var import_Button = __toESM(require("./Button"));
37
+ var import_Badge = __toESM(require("./Badge"));
37
38
  function AppTopbar({ title, subtitle, secondary, primary, actions, color }) {
38
39
  return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "sticky top-0 z-30 border-b border-black/5 bg-[var(--fx-surface)] backdrop-blur-xl dark:bg-[var(--fx-surface)]/60", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "px-4 sm:px-6 xl:px-8 xl:pl-20", children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "flex h-16 items-center justify-between", children: [
39
40
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "flex items-center gap-3", children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { children: [
@@ -49,6 +50,7 @@ function AppTopbar({ title, subtitle, secondary, primary, actions, color }) {
49
50
  color,
50
51
  size: "sm",
51
52
  className: "shadow-sm",
53
+ rightIcon: a.badge != null && a.badge !== 0 ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_Badge.default, { tone: "rose", size: "sm", className: "ml-1", children: a.badge }) : void 0,
52
54
  children: a.label
53
55
  },
54
56
  `action-${idx}-${a.label}`
@@ -1,6 +1,7 @@
1
1
  "use client";
2
2
  import { jsx, jsxs } from "react/jsx-runtime";
3
3
  import Button from "./Button";
4
+ import Badge from "./Badge";
4
5
  function AppTopbar({ title, subtitle, secondary, primary, actions, color }) {
5
6
  return /* @__PURE__ */ jsx("div", { className: "sticky top-0 z-30 border-b border-black/5 bg-[var(--fx-surface)] backdrop-blur-xl dark:bg-[var(--fx-surface)]/60", children: /* @__PURE__ */ jsx("div", { className: "px-4 sm:px-6 xl:px-8 xl:pl-20", children: /* @__PURE__ */ jsxs("div", { className: "flex h-16 items-center justify-between", children: [
6
7
  /* @__PURE__ */ jsx("div", { className: "flex items-center gap-3", children: /* @__PURE__ */ jsxs("div", { children: [
@@ -16,6 +17,7 @@ function AppTopbar({ title, subtitle, secondary, primary, actions, color }) {
16
17
  color,
17
18
  size: "sm",
18
19
  className: "shadow-sm",
20
+ rightIcon: a.badge != null && a.badge !== 0 ? /* @__PURE__ */ jsx(Badge, { tone: "rose", size: "sm", className: "ml-1", children: a.badge }) : void 0,
19
21
  children: a.label
20
22
  },
21
23
  `action-${idx}-${a.label}`
@@ -12,7 +12,7 @@ type RechartsBarCardProps = {
12
12
  subtitle?: React__default.ReactNode;
13
13
  data: any[];
14
14
  xKey: string;
15
- xTickFormatter?: (value: any) => string;
15
+ xTickFormatter?: (value: any, index?: number, payload?: any) => string;
16
16
  bars: BarSeries[];
17
17
  };
18
18
  declare function RechartsBarCard({ title, subtitle, data, xKey, xTickFormatter, bars, }: RechartsBarCardProps): react_jsx_runtime.JSX.Element;
@@ -12,7 +12,7 @@ type RechartsBarCardProps = {
12
12
  subtitle?: React__default.ReactNode;
13
13
  data: any[];
14
14
  xKey: string;
15
- xTickFormatter?: (value: any) => string;
15
+ xTickFormatter?: (value: any, index?: number, payload?: any) => string;
16
16
  bars: BarSeries[];
17
17
  };
18
18
  declare function RechartsBarCard({ title, subtitle, data, xKey, xTickFormatter, bars, }: RechartsBarCardProps): react_jsx_runtime.JSX.Element;
@@ -0,0 +1,15 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import React__default from 'react';
3
+
4
+ type RechartsDonutCardProps = {
5
+ title: React__default.ReactNode;
6
+ subtitle?: React__default.ReactNode;
7
+ data: any[];
8
+ nameKey: string;
9
+ valueKey: string;
10
+ colors?: string[];
11
+ valueFormatter?: (value: number) => string;
12
+ };
13
+ declare function RechartsDonutCard({ title, subtitle, data, nameKey, valueKey, colors, valueFormatter, }: RechartsDonutCardProps): react_jsx_runtime.JSX.Element;
14
+
15
+ export { type RechartsDonutCardProps, RechartsDonutCard as default };
@@ -0,0 +1,15 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import React__default from 'react';
3
+
4
+ type RechartsDonutCardProps = {
5
+ title: React__default.ReactNode;
6
+ subtitle?: React__default.ReactNode;
7
+ data: any[];
8
+ nameKey: string;
9
+ valueKey: string;
10
+ colors?: string[];
11
+ valueFormatter?: (value: number) => string;
12
+ };
13
+ declare function RechartsDonutCard({ title, subtitle, data, nameKey, valueKey, colors, valueFormatter, }: RechartsDonutCardProps): react_jsx_runtime.JSX.Element;
14
+
15
+ export { type RechartsDonutCardProps, RechartsDonutCard as default };
@@ -0,0 +1,90 @@
1
+ "use strict";
2
+ "use client";
3
+ var __create = Object.create;
4
+ var __defProp = Object.defineProperty;
5
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
+ var __getOwnPropNames = Object.getOwnPropertyNames;
7
+ var __getProtoOf = Object.getPrototypeOf;
8
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
9
+ var __export = (target, all) => {
10
+ for (var name in all)
11
+ __defProp(target, name, { get: all[name], enumerable: true });
12
+ };
13
+ var __copyProps = (to, from, except, desc) => {
14
+ if (from && typeof from === "object" || typeof from === "function") {
15
+ for (let key of __getOwnPropNames(from))
16
+ if (!__hasOwnProp.call(to, key) && key !== except)
17
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
18
+ }
19
+ return to;
20
+ };
21
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
22
+ // If the importer is in node compatibility mode or this is not an ESM
23
+ // file that has been converted to a CommonJS file using a Babel-
24
+ // compatible transform (i.e. "__esModule" has not been set), then set
25
+ // "default" to the CommonJS "module.exports" for node compatibility.
26
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
27
+ mod
28
+ ));
29
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
30
+ var RechartsDonutCard_exports = {};
31
+ __export(RechartsDonutCard_exports, {
32
+ default: () => RechartsDonutCard
33
+ });
34
+ module.exports = __toCommonJS(RechartsDonutCard_exports);
35
+ var import_jsx_runtime = require("react/jsx-runtime");
36
+ var import_ChartCard = __toESM(require("./ChartCard"));
37
+ var import_recharts = require("recharts");
38
+ const DEFAULT_COLORS = [
39
+ "#0ea5e9",
40
+ "#6366f1",
41
+ "#22c55e",
42
+ "#ec4899",
43
+ "#f97316",
44
+ "#a855f7",
45
+ "#f97373",
46
+ "#10b981"
47
+ ];
48
+ function RechartsDonutCard({
49
+ title,
50
+ subtitle,
51
+ data,
52
+ nameKey,
53
+ valueKey,
54
+ colors = DEFAULT_COLORS,
55
+ valueFormatter
56
+ }) {
57
+ const safeData = Array.isArray(data) ? data : [];
58
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ChartCard.default, { title, subtitle, children: !safeData.length ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "flex h-[220px] items-center justify-center text-xs text-slate-500 dark:text-slate-400", children: "Sin datos para los filtros seleccionados." }) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "flex h-[240px] w-full items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_recharts.PieChart, { width: 260, height: 220, children: [
59
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
60
+ import_recharts.Pie,
61
+ {
62
+ data: safeData,
63
+ dataKey: valueKey,
64
+ nameKey,
65
+ innerRadius: 50,
66
+ outerRadius: 80,
67
+ paddingAngle: 2,
68
+ children: safeData.map((entry, index) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
69
+ import_recharts.Cell,
70
+ {
71
+ fill: colors[index % colors.length]
72
+ },
73
+ `slice-${index}`
74
+ ))
75
+ }
76
+ ),
77
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
78
+ import_recharts.Tooltip,
79
+ {
80
+ formatter: (value, name, props) => {
81
+ const v = typeof value === "number" ? valueFormatter ? valueFormatter(value) : value.toLocaleString("es-MX", {
82
+ maximumFractionDigits: 2
83
+ }) : value;
84
+ const label = (props == null ? void 0 : props.payload) && props.payload[nameKey] || name;
85
+ return [v, label];
86
+ }
87
+ }
88
+ )
89
+ ] }) }) });
90
+ }
@@ -0,0 +1,60 @@
1
+ "use client";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import ChartCard from "./ChartCard";
4
+ import { PieChart, Pie, Cell, Tooltip } from "recharts";
5
+ const DEFAULT_COLORS = [
6
+ "#0ea5e9",
7
+ "#6366f1",
8
+ "#22c55e",
9
+ "#ec4899",
10
+ "#f97316",
11
+ "#a855f7",
12
+ "#f97373",
13
+ "#10b981"
14
+ ];
15
+ function RechartsDonutCard({
16
+ title,
17
+ subtitle,
18
+ data,
19
+ nameKey,
20
+ valueKey,
21
+ colors = DEFAULT_COLORS,
22
+ valueFormatter
23
+ }) {
24
+ const safeData = Array.isArray(data) ? data : [];
25
+ return /* @__PURE__ */ jsx(ChartCard, { title, subtitle, children: !safeData.length ? /* @__PURE__ */ jsx("div", { className: "flex h-[220px] items-center justify-center text-xs text-slate-500 dark:text-slate-400", children: "Sin datos para los filtros seleccionados." }) : /* @__PURE__ */ jsx("div", { className: "flex h-[240px] w-full items-center justify-center", children: /* @__PURE__ */ jsxs(PieChart, { width: 260, height: 220, children: [
26
+ /* @__PURE__ */ jsx(
27
+ Pie,
28
+ {
29
+ data: safeData,
30
+ dataKey: valueKey,
31
+ nameKey,
32
+ innerRadius: 50,
33
+ outerRadius: 80,
34
+ paddingAngle: 2,
35
+ children: safeData.map((entry, index) => /* @__PURE__ */ jsx(
36
+ Cell,
37
+ {
38
+ fill: colors[index % colors.length]
39
+ },
40
+ `slice-${index}`
41
+ ))
42
+ }
43
+ ),
44
+ /* @__PURE__ */ jsx(
45
+ Tooltip,
46
+ {
47
+ formatter: (value, name, props) => {
48
+ const v = typeof value === "number" ? valueFormatter ? valueFormatter(value) : value.toLocaleString("es-MX", {
49
+ maximumFractionDigits: 2
50
+ }) : value;
51
+ const label = (props == null ? void 0 : props.payload) && props.payload[nameKey] || name;
52
+ return [v, label];
53
+ }
54
+ }
55
+ )
56
+ ] }) }) });
57
+ }
58
+ export {
59
+ RechartsDonutCard as default
60
+ };
package/dist/index.d.mts CHANGED
@@ -18,6 +18,7 @@ export { default as ChartCard } from './ChartCard.mjs';
18
18
  export { CtrHorizontalBar, DestinoDonut, TopImpresionesBar } from './AnalyticsCharts.mjs';
19
19
  export { BarSeries, default as RechartsBarCard, RechartsBarCardProps } from './RechartsBarCard.mjs';
20
20
  export { LineSeries, default as RechartsTimeSeriesCard, RechartsTimeSeriesCardProps } from './RechartsTimeSeriesCard.mjs';
21
+ export { default as RechartsDonutCard, RechartsDonutCardProps } from './RechartsDonutCard.mjs';
21
22
  export { default as UploadCard, UploadCardProps, UploadItem } from './UploadCard.mjs';
22
23
  export { default as MediaCard, MediaCardProps } from './MediaCard.mjs';
23
24
  export { default as MediaTile, MediaTileProps } from './MediaTile.mjs';
package/dist/index.d.ts CHANGED
@@ -18,6 +18,7 @@ export { default as ChartCard } from './ChartCard.js';
18
18
  export { CtrHorizontalBar, DestinoDonut, TopImpresionesBar } from './AnalyticsCharts.js';
19
19
  export { BarSeries, default as RechartsBarCard, RechartsBarCardProps } from './RechartsBarCard.js';
20
20
  export { LineSeries, default as RechartsTimeSeriesCard, RechartsTimeSeriesCardProps } from './RechartsTimeSeriesCard.js';
21
+ export { default as RechartsDonutCard, RechartsDonutCardProps } from './RechartsDonutCard.js';
21
22
  export { default as UploadCard, UploadCardProps, UploadItem } from './UploadCard.js';
22
23
  export { default as MediaCard, MediaCardProps } from './MediaCard.js';
23
24
  export { default as MediaTile, MediaTileProps } from './MediaTile.js';
package/dist/index.js CHANGED
@@ -70,6 +70,7 @@ __export(index_exports, {
70
70
  OrderButton: () => import_OrderButton.default,
71
71
  Pagination: () => import_Pagination.default,
72
72
  RechartsBarCard: () => import_RechartsBarCard.default,
73
+ RechartsDonutCard: () => import_RechartsDonutCard.default,
73
74
  RechartsTimeSeriesCard: () => import_RechartsTimeSeriesCard.default,
74
75
  ReviewHistory: () => import_ReviewHistory.default,
75
76
  ReviewHistoryDialog: () => import_ReviewHistory2.ReviewHistoryDialog,
@@ -125,6 +126,7 @@ var import_ChartCard = __toESM(require("./ChartCard"));
125
126
  var import_AnalyticsCharts = require("./AnalyticsCharts");
126
127
  var import_RechartsBarCard = __toESM(require("./RechartsBarCard"));
127
128
  var import_RechartsTimeSeriesCard = __toESM(require("./RechartsTimeSeriesCard"));
129
+ var import_RechartsDonutCard = __toESM(require("./RechartsDonutCard"));
128
130
  var import_UploadCard = __toESM(require("./UploadCard"));
129
131
  var import_MediaCard = __toESM(require("./MediaCard"));
130
132
  var import_MediaTile = __toESM(require("./MediaTile"));
@@ -212,6 +214,7 @@ var import_ThemeToggle = __toESM(require("./theme/ThemeToggle"));
212
214
  OrderButton,
213
215
  Pagination,
214
216
  RechartsBarCard,
217
+ RechartsDonutCard,
215
218
  RechartsTimeSeriesCard,
216
219
  ReviewHistory,
217
220
  ReviewHistoryDialog,
package/dist/index.mjs CHANGED
@@ -20,120 +20,122 @@ import { default as default18 } from "./ChartCard";
20
20
  import { TopImpresionesBar, CtrHorizontalBar, DestinoDonut } from "./AnalyticsCharts";
21
21
  import { default as default19 } from "./RechartsBarCard";
22
22
  import { default as default20 } from "./RechartsTimeSeriesCard";
23
- import { default as default21 } from "./UploadCard";
24
- import { default as default22 } from "./MediaCard";
25
- import { default as default23 } from "./MediaTile";
26
- import { default as default24 } from "./Skeleton";
27
- import { default as default25 } from "./MediaSelector";
28
- import { default as default26 } from "./StatCard";
29
- import { default as default27 } from "./KpiCard";
30
- import { default as default28 } from "./Badge";
31
- import { default as default29 } from "./BadgeCluster";
32
- import { default as default30 } from "./Breadcrumb";
33
- import { default as default31 } from "./EmptyState";
34
- import { default as default32 } from "./Money";
35
- import { default as default33 } from "./TimeAgo";
36
- import { default as default34 } from "./AvatarSquare";
37
- import { default as default35 } from "./AvatarGroup";
38
- import { default as default36 } from "./AppTopbar";
39
- import { default as default37 } from "./OrderButton";
40
- import { default as default38 } from "./SearchInput";
41
- import { default as default39 } from "./ReviewHistory";
23
+ import { default as default21 } from "./RechartsDonutCard";
24
+ import { default as default22 } from "./UploadCard";
25
+ import { default as default23 } from "./MediaCard";
26
+ import { default as default24 } from "./MediaTile";
27
+ import { default as default25 } from "./Skeleton";
28
+ import { default as default26 } from "./MediaSelector";
29
+ import { default as default27 } from "./StatCard";
30
+ import { default as default28 } from "./KpiCard";
31
+ import { default as default29 } from "./Badge";
32
+ import { default as default30 } from "./BadgeCluster";
33
+ import { default as default31 } from "./Breadcrumb";
34
+ import { default as default32 } from "./EmptyState";
35
+ import { default as default33 } from "./Money";
36
+ import { default as default34 } from "./TimeAgo";
37
+ import { default as default35 } from "./AvatarSquare";
38
+ import { default as default36 } from "./AvatarGroup";
39
+ import { default as default37 } from "./AppTopbar";
40
+ import { default as default38 } from "./OrderButton";
41
+ import { default as default39 } from "./SearchInput";
42
+ import { default as default40 } from "./ReviewHistory";
42
43
  import { ReviewHistoryDialog } from "./ReviewHistory";
43
- import { default as default40 } from "./MultiComboSelect";
44
- import { default as default41 } from "./Sidebar";
45
- import { default as default42 } from "./Card";
46
- import { default as default43 } from "./Drawer";
47
- import { default as default44 } from "./Tooltip";
48
- import { default as default45 } from "./Link";
44
+ import { default as default41 } from "./MultiComboSelect";
45
+ import { default as default42 } from "./Sidebar";
46
+ import { default as default43 } from "./Card";
47
+ import { default as default44 } from "./Drawer";
48
+ import { default as default45 } from "./Tooltip";
49
+ import { default as default46 } from "./Link";
49
50
  import { ToastProvider, useToast } from "./Toast";
50
- import { default as default46 } from "./StorageUsage";
51
- import { default as default47 } from "./FileButton";
52
- import { default as default48 } from "./SegmentedTabs";
51
+ import { default as default47 } from "./StorageUsage";
52
+ import { default as default48 } from "./FileButton";
53
+ import { default as default49 } from "./SegmentedTabs";
53
54
  import * as Animations from "./animations";
54
- import { default as default49 } from "./MotionProvider";
55
- import { default as default50 } from "./CalendarPanel";
56
- import { default as default51 } from "./TimePopover";
55
+ import { default as default50 } from "./MotionProvider";
56
+ import { default as default51 } from "./CalendarPanel";
57
+ import { default as default52 } from "./TimePopover";
57
58
  import { WeekPopover, MonthPopover } from "./TimePopover";
58
- import { default as default52 } from "./TimePanel";
59
- import { default as default53 } from "./TimeRangeField";
60
- import { default as default54 } from "./Steps";
59
+ import { default as default53 } from "./TimePanel";
60
+ import { default as default54 } from "./TimeRangeField";
61
+ import { default as default55 } from "./Steps";
61
62
  import { StepsNav } from "./Steps";
62
63
  export * from "./iconos";
63
- import { default as default55 } from "./ColorPicker";
64
- import { default as default56, useTheme } from "./theme/ThemeProvider";
65
- import { default as default57 } from "./theme/ThemeScript";
66
- import { default as default58 } from "./theme/ThemeToggle";
64
+ import { default as default56 } from "./ColorPicker";
65
+ import { default as default57, useTheme } from "./theme/ThemeProvider";
66
+ import { default as default58 } from "./theme/ThemeScript";
67
+ import { default as default59 } from "./theme/ThemeToggle";
67
68
  export {
68
69
  default3 as ActionIconButton,
69
70
  AnimatedBody,
70
71
  Animations,
71
- default36 as AppTopbar,
72
- default35 as AvatarGroup,
73
- default34 as AvatarSquare,
74
- default28 as Badge,
75
- default29 as BadgeCluster,
76
- default30 as Breadcrumb,
72
+ default37 as AppTopbar,
73
+ default36 as AvatarGroup,
74
+ default35 as AvatarSquare,
75
+ default29 as Badge,
76
+ default30 as BadgeCluster,
77
+ default31 as Breadcrumb,
77
78
  default2 as Button,
78
- default50 as CalendarPanel,
79
- default42 as Card,
79
+ default51 as CalendarPanel,
80
+ default43 as Card,
80
81
  default18 as ChartCard,
81
82
  default6 as Checkbox,
82
83
  default7 as CheckboxPillsGroup,
83
- default55 as ColorPicker,
84
+ default56 as ColorPicker,
84
85
  default11 as ColumnSelector,
85
86
  default10 as ComboSelect,
86
87
  CtrHorizontalBar,
87
88
  default12 as DateTimeField,
88
89
  DestinoDonut,
89
90
  default13 as Dialog,
90
- default43 as Drawer,
91
+ default44 as Drawer,
91
92
  default14 as Dropdown,
92
- default31 as EmptyState,
93
- default47 as FileButton,
93
+ default32 as EmptyState,
94
+ default48 as FileButton,
94
95
  default8 as FiltersMultiSelect,
95
96
  default17 as InfoGrid,
96
97
  default4 as Input,
97
- default27 as KpiCard,
98
- default45 as Link,
99
- default22 as MediaCard,
100
- default25 as MediaSelector,
101
- default23 as MediaTile,
102
- default32 as Money,
98
+ default28 as KpiCard,
99
+ default46 as Link,
100
+ default23 as MediaCard,
101
+ default26 as MediaSelector,
102
+ default24 as MediaTile,
103
+ default33 as Money,
103
104
  MonthPopover,
104
- default49 as MotionProvider,
105
- default40 as MultiComboSelect,
106
- default37 as OrderButton,
105
+ default50 as MotionProvider,
106
+ default41 as MultiComboSelect,
107
+ default38 as OrderButton,
107
108
  default16 as Pagination,
108
109
  default19 as RechartsBarCard,
110
+ default21 as RechartsDonutCard,
109
111
  default20 as RechartsTimeSeriesCard,
110
- default39 as ReviewHistory,
112
+ default40 as ReviewHistory,
111
113
  ReviewHistoryDialog,
112
- default38 as SearchInput,
113
- default48 as SegmentedTabs,
114
+ default39 as SearchInput,
115
+ default49 as SegmentedTabs,
114
116
  default9 as Select,
115
- default41 as Sidebar,
116
- default24 as Skeleton,
117
+ default42 as Sidebar,
118
+ default25 as Skeleton,
117
119
  SortTh,
118
- default26 as StatCard,
119
- default54 as Steps,
120
+ default27 as StatCard,
121
+ default55 as Steps,
120
122
  StepsNav,
121
- default46 as StorageUsage,
123
+ default47 as StorageUsage,
122
124
  default15 as Table,
123
125
  Td,
124
126
  default5 as Textarea,
125
127
  Th,
126
- default56 as ThemeProvider,
127
- default57 as ThemeScript,
128
- default58 as ThemeToggle,
129
- default33 as TimeAgo,
130
- default52 as TimePanel,
131
- default51 as TimePopover,
132
- default53 as TimeRangeField,
128
+ default57 as ThemeProvider,
129
+ default58 as ThemeScript,
130
+ default59 as ThemeToggle,
131
+ default34 as TimeAgo,
132
+ default53 as TimePanel,
133
+ default52 as TimePopover,
134
+ default54 as TimeRangeField,
133
135
  ToastProvider,
134
- default44 as Tooltip,
136
+ default45 as Tooltip,
135
137
  TopImpresionesBar,
136
- default21 as UploadCard,
138
+ default22 as UploadCard,
137
139
  WeekPopover,
138
140
  useTheme,
139
141
  useToast
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "framepexls-ui-lib",
3
- "version": "0.3.21",
3
+ "version": "0.3.23",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "description": "Componentes UI de Framepexls para React/Next.",