@base-framework/ui 1.2.71 → 1.2.73

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/atoms.es.js CHANGED
@@ -1,4 +1,4 @@
1
- import { c as t, f as e, h as n, i as o, k as l, l as i, m as u, n as r, t as p, w as I, J as g, L as c, M as d, N as m, O as F, P as T, Q as B, R as S, S as b, T as C, U as x, a0 as f, a7 as P, a8 as h, a9 as k, ac as M, ad as U, ae as w, ai as E, an as G, au as L, ax as N, aB as R, aC as Z, aE as D, aF as H, aG as J, aK as Q, aP as V, aQ as W, aS as v, aW as K, aX as O, aY as X, aZ as Y, b0 as j, b1 as q, b2 as y, b5 as z, b6 as A } from "./full-page-Q-0SO6xi.js";
1
+ import { c as t, f as e, h as n, i as o, k as l, l as i, m as u, n as r, t as p, w as I, J as g, L as c, M as d, N as m, O as F, P as T, Q as B, R as S, S as b, T as C, U as x, a0 as f, a7 as P, a8 as h, a9 as k, ac as M, ad as U, ae as w, ai as E, an as G, au as L, ax as N, aB as R, aC as Z, aE as D, aF as H, aG as J, aK as Q, aP as V, aQ as W, aS as v, aW as K, aX as O, aY as X, aZ as Y, b0 as j, b1 as q, b2 as y, b5 as z, b6 as A } from "./full-page-DEY8A6LH.js";
2
2
  import { S as $ } from "./skeleton-5x_geYYP.js";
3
3
  export {
4
4
  t as Badge,
@@ -1,6 +1,6 @@
1
1
  import { Component as d, Html as g, Dom as v, base as T, Data as S, Builder as C, DateTime as f } from "@base-framework/base";
2
2
  import { Li as w, Span as p, Div as a, Ul as D, Button as x, OnState as Y, Time as B } from "@base-framework/atoms";
3
- import { aY as m, f as h, az as k, b8 as y, at as E, F as L } from "./full-page-Q-0SO6xi.js";
3
+ import { aY as m, f as h, az as k, b8 as y, at as E, F as L } from "./full-page-DEY8A6LH.js";
4
4
  import { List as N, DynamicTime as M } from "@base-framework/organisms";
5
5
  class V extends d {
6
6
  /**
@@ -1,8 +1,24 @@
1
1
  import { DateTime as f } from "@base-framework/base";
2
- const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.push(t), n) : {
3
- ...n,
4
- callBack: t
5
- }), m = (n, t = "") => n != null && n !== "" ? n : t, B = {
2
+ const c = (t, n) => {
3
+ if (typeof t == "number" || typeof t == "boolean" || t === null || t === void 0)
4
+ return n(t);
5
+ if (typeof t == "string") {
6
+ const l = /^(.*?)\[\[([^\]]+)\]\](.*?)$/, e = t.match(l);
7
+ if (e) {
8
+ const [, r, a, o] = e;
9
+ if (r || o) {
10
+ const i = n;
11
+ n = (u) => `${r}${i(u)}${o}`;
12
+ }
13
+ t = [a];
14
+ } else
15
+ t = [t];
16
+ }
17
+ return Array.isArray(t) ? (t.push(n), t) : {
18
+ ...t,
19
+ callBack: n
20
+ };
21
+ }, m = (t, n = "") => t != null && t !== "" ? t : n, p = {
6
22
  /**
7
23
  * Formats a number with commas.
8
24
  *
@@ -10,16 +26,16 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
10
26
  * @param {string|null} defaultValue - Value if original is null or undefined.
11
27
  * @returns {object|array}
12
28
  */
13
- number(n, t = null) {
29
+ number(t, n = null) {
14
30
  const l = typeof Intl < "u" ? new Intl.NumberFormat() : null;
15
- return i(n, (r) => {
31
+ return c(t, (r) => {
16
32
  const a = Number(r);
17
33
  if (isNaN(a))
18
- return t || "";
34
+ return n || "";
19
35
  if (l)
20
36
  return l.format(a);
21
- const c = /\B(?=(\d{3})+(?!\d))/g;
22
- return a.toString().replace(c, ",");
37
+ const o = /\B(?=(\d{3})+(?!\d))/g;
38
+ return a.toString().replace(o, ",");
23
39
  });
24
40
  },
25
41
  /**
@@ -30,8 +46,8 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
30
46
  * @param {string} no - Text for false values.
31
47
  * @returns {object|array}
32
48
  */
33
- yesno(n, t = "Yes", l = "No") {
34
- return i(n, (r) => r ? t : l);
49
+ yesno(t, n = "Yes", l = "No") {
50
+ return c(t, (r) => r ? n : l);
35
51
  },
36
52
  /**
37
53
  * Formats a value as money with two decimals.
@@ -42,19 +58,19 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
42
58
  * @param {boolean} round - Whether to round to nearest whole number (no decimals).
43
59
  * @returns {object|array}
44
60
  */
45
- money(n, t = "$", l = null, e = !1) {
61
+ money(t, n = "$", l = null, e = !1) {
46
62
  const r = typeof Intl < "u" ? new Intl.NumberFormat(void 0, {
47
63
  minimumFractionDigits: e ? 0 : 2,
48
64
  maximumFractionDigits: e ? 0 : 2
49
65
  }) : null;
50
- return i(n, (c) => {
51
- const o = parseFloat(c);
52
- if (isNaN(o))
53
- return t + l || "";
66
+ return c(t, (o) => {
67
+ const i = parseFloat(o);
68
+ if (isNaN(i))
69
+ return n + l || "";
54
70
  if (r)
55
- return t + r.format(o);
71
+ return n + r.format(i);
56
72
  const u = /\B(?=(\d{3})+(?!\d))/g;
57
- return t + (e ? Math.round(o) : o.toFixed(2)).toString().replace(u, ",");
73
+ return n + (e ? Math.round(i) : i.toFixed(2)).toString().replace(u, ",");
58
74
  });
59
75
  },
60
76
  /**
@@ -65,19 +81,19 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
65
81
  * @param {*} defaultValue - Value if original is invalid.
66
82
  * @returns {object|array}
67
83
  */
68
- roundMoney(n, t = "$", l = null) {
84
+ roundMoney(t, n = "$", l = null) {
69
85
  const e = typeof Intl < "u" ? new Intl.NumberFormat(void 0, {
70
86
  minimumFractionDigits: 0,
71
87
  maximumFractionDigits: 0
72
88
  }) : null;
73
- return i(n, (a) => {
74
- const c = parseFloat(a);
75
- if (isNaN(c))
76
- return t + l || "";
89
+ return c(t, (a) => {
90
+ const o = parseFloat(a);
91
+ if (isNaN(o))
92
+ return n + l || "";
77
93
  if (e)
78
- return t + e.format(Math.round(c));
79
- const o = /\B(?=(\d{3})+(?!\d))/g;
80
- return t + Math.round(c).toString().replace(o, ",");
94
+ return n + e.format(Math.round(o));
95
+ const i = /\B(?=(\d{3})+(?!\d))/g;
96
+ return n + Math.round(o).toString().replace(i, ",");
81
97
  });
82
98
  },
83
99
  /**
@@ -87,11 +103,11 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
87
103
  * @param {*} defaultValue - Value if original is invalid.
88
104
  * @returns {object|array}
89
105
  */
90
- phone(n, t = null) {
91
- return i(n, (e) => {
106
+ phone(t, n = null) {
107
+ return c(t, (e) => {
92
108
  e = e || "";
93
109
  const r = String(e.toString()).replace(/\D/g, "");
94
- return r.length === 10 ? "(" + r.slice(0, 3) + ") " + r.slice(3, 6) + "-" + r.slice(6) : e || t;
110
+ return r.length === 10 ? "(" + r.slice(0, 3) + ") " + r.slice(3, 6) + "-" + r.slice(6) : e || n;
95
111
  });
96
112
  },
97
113
  /**
@@ -101,11 +117,11 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
101
117
  * @param {*} defaultValue - Value if original is invalid.
102
118
  * @returns {object|array}
103
119
  */
104
- integer(n, t = null) {
105
- return i(n, (e) => {
106
- e = m(e, t);
120
+ integer(t, n = null) {
121
+ return c(t, (e) => {
122
+ e = m(e, n);
107
123
  const r = parseInt(e, 10);
108
- return isNaN(r) ? t : r.toString();
124
+ return isNaN(r) ? n : r.toString();
109
125
  });
110
126
  },
111
127
  /**
@@ -115,13 +131,13 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
115
131
  * @param {*} defaultValue - Value if original is invalid.
116
132
  * @returns {object|array}
117
133
  */
118
- date(n, t = null) {
134
+ date(t, n = null) {
119
135
  const l = typeof Intl < "u" ? new Intl.DateTimeFormat(void 0, {
120
136
  year: "numeric",
121
137
  month: "2-digit",
122
138
  day: "2-digit"
123
139
  }) : null;
124
- return i(n, (r) => r ? l ? l.format(new Date(r)) : f.format("standard", r) : t || "");
140
+ return c(t, (r) => r ? l ? l.format(new Date(r)) : f.format("standard", r) : n || "");
125
141
  },
126
142
  /**
127
143
  * Formats a date and time value to a standard date and time format.
@@ -130,7 +146,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
130
146
  * @param {*} defaultValue - Value if original is invalid.
131
147
  * @returns {object|array}
132
148
  */
133
- dateTime(n, t = null) {
149
+ dateTime(t, n = null) {
134
150
  const l = typeof Intl < "u" ? new Intl.DateTimeFormat(void 0, {
135
151
  year: "numeric",
136
152
  month: "2-digit",
@@ -139,7 +155,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
139
155
  minute: "2-digit",
140
156
  hour12: !0
141
157
  }) : null;
142
- return i(n, (r) => r ? l ? l.format(new Date(r)) : f.format("standard", r) + " " + f.formatTime(r, 12) : t || "");
158
+ return c(t, (r) => r ? l ? l.format(new Date(r)) : f.format("standard", r) + " " + f.formatTime(r, 12) : n || "");
143
159
  },
144
160
  /**
145
161
  * Formats a time value to a standard time format.
@@ -148,13 +164,13 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
148
164
  * @param {*} defaultValue - Value if original is invalid.
149
165
  * @returns {object|array}
150
166
  */
151
- time(n, t = null) {
167
+ time(t, n = null) {
152
168
  const l = typeof Intl < "u" ? new Intl.DateTimeFormat(void 0, {
153
169
  hour: "numeric",
154
170
  minute: "2-digit",
155
171
  hour12: !0
156
172
  }) : null;
157
- return i(n, (r) => r ? l ? l.format(new Date(r)) : f.formatTime(r, 12) : t || "");
173
+ return c(t, (r) => r ? l ? l.format(new Date(r)) : f.formatTime(r, 12) : n || "");
158
174
  },
159
175
  /**
160
176
  * Formats a value with a default value if null or undefined.
@@ -163,8 +179,8 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
163
179
  * @param {string|null} defaultValue - Value if original is null or undefined.
164
180
  * @returns {object|array}
165
181
  */
166
- default(n, t = null) {
167
- return i(n, (e) => m(e, t));
182
+ default(t, n = null) {
183
+ return c(t, (e) => m(e, n));
168
184
  },
169
185
  /**
170
186
  * Formats a number as a percentage.
@@ -175,21 +191,21 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
175
191
  * @param {*} defaultValue - Value if original is invalid.
176
192
  * @returns {object|array}
177
193
  */
178
- percentage(n, t = 0, l = !1, e = null) {
194
+ percentage(t, n = 0, l = !1, e = null) {
179
195
  const r = typeof Intl < "u" ? new Intl.NumberFormat(void 0, {
180
196
  style: "percent",
181
- minimumFractionDigits: t,
182
- maximumFractionDigits: t
197
+ minimumFractionDigits: n,
198
+ maximumFractionDigits: n
183
199
  }) : null;
184
- return i(n, (c) => {
185
- const o = parseFloat(c);
186
- if (isNaN(o))
200
+ return c(t, (o) => {
201
+ const i = parseFloat(o);
202
+ if (isNaN(i))
187
203
  return e || "";
188
204
  if (r) {
189
- const s = l ? o : o / 100;
205
+ const s = l ? i : i / 100;
190
206
  return r.format(s);
191
207
  }
192
- return (l ? o * 100 : o).toFixed(t) + "%";
208
+ return (l ? i * 100 : i).toFixed(n) + "%";
193
209
  });
194
210
  },
195
211
  /**
@@ -200,12 +216,12 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
200
216
  * @param {*} defaultValue - Value if original is invalid.
201
217
  * @returns {object|array}
202
218
  */
203
- capitalize(n, t = !0, l = null) {
204
- return i(n, (r) => {
219
+ capitalize(t, n = !0, l = null) {
220
+ return c(t, (r) => {
205
221
  if (!r)
206
222
  return l || "";
207
223
  const a = String(r);
208
- return t ? a.replace(/\b\w/g, (c) => c.toUpperCase()) : a.charAt(0).toUpperCase() + a.slice(1);
224
+ return n ? a.replace(/\b\w/g, (o) => o.toUpperCase()) : a.charAt(0).toUpperCase() + a.slice(1);
209
225
  });
210
226
  },
211
227
  /**
@@ -215,8 +231,8 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
215
231
  * @param {*} defaultValue - Value if original is invalid.
216
232
  * @returns {object|array}
217
233
  */
218
- uppercase(n, t = null) {
219
- return i(n, (e) => e ? String(e).toUpperCase() : t || "");
234
+ uppercase(t, n = null) {
235
+ return c(t, (e) => e ? String(e).toUpperCase() : n || "");
220
236
  },
221
237
  /**
222
238
  * Converts a string to lowercase.
@@ -225,8 +241,8 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
225
241
  * @param {*} defaultValue - Value if original is invalid.
226
242
  * @returns {object|array}
227
243
  */
228
- lowercase(n, t = null) {
229
- return i(n, (e) => e ? String(e).toLowerCase() : t || "");
244
+ lowercase(t, n = null) {
245
+ return c(t, (e) => e ? String(e).toLowerCase() : n || "");
230
246
  },
231
247
  /**
232
248
  * Truncates a string to a maximum length with ellipsis.
@@ -237,12 +253,12 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
237
253
  * @param {*} defaultValue - Value if original is invalid.
238
254
  * @returns {object|array}
239
255
  */
240
- truncate(n, t = 50, l = "...", e = null) {
241
- return i(n, (a) => {
256
+ truncate(t, n = 50, l = "...", e = null) {
257
+ return c(t, (a) => {
242
258
  if (!a)
243
259
  return e || "";
244
- const c = String(a);
245
- return c.length <= t ? c : c.slice(0, t - l.length) + l;
260
+ const o = String(a);
261
+ return o.length <= n ? o : o.slice(0, n - l.length) + l;
246
262
  });
247
263
  },
248
264
  /**
@@ -253,15 +269,15 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
253
269
  * @param {*} defaultValue - Value if original is invalid.
254
270
  * @returns {object|array}
255
271
  */
256
- fileSize(n, t = 2, l = null) {
257
- return i(n, (r) => {
272
+ fileSize(t, n = 2, l = null) {
273
+ return c(t, (r) => {
258
274
  const a = parseFloat(r);
259
275
  if (isNaN(a) || a < 0)
260
276
  return l || "";
261
277
  if (a === 0)
262
278
  return "0 Bytes";
263
- const c = 1024, o = ["Bytes", "KB", "MB", "GB", "TB", "PB"], u = Math.floor(Math.log(a) / Math.log(c));
264
- return parseFloat((a / Math.pow(c, u)).toFixed(t)) + " " + o[u];
279
+ const o = 1024, i = ["Bytes", "KB", "MB", "GB", "TB", "PB"], u = Math.floor(Math.log(a) / Math.log(o));
280
+ return parseFloat((a / Math.pow(o, u)).toFixed(n)) + " " + i[u];
265
281
  });
266
282
  },
267
283
  /**
@@ -273,18 +289,18 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
273
289
  * @param {boolean} includeCount - Whether to include the count in output.
274
290
  * @returns {object|array}
275
291
  */
276
- plural(n, t, l = null, e = !0) {
292
+ plural(t, n, l = null, e = !0) {
277
293
  const r = typeof Intl < "u" && Intl.PluralRules ? new Intl.PluralRules() : null;
278
- return i(n, (c) => {
279
- const o = parseInt(c, 10);
280
- if (isNaN(o))
294
+ return c(t, (o) => {
295
+ const i = parseInt(o, 10);
296
+ if (isNaN(i))
281
297
  return "";
282
- const s = (r ? r.select(o) === "one" : o === 1) ? t : l || t + "s";
283
- return e ? `${o} ${s}` : s;
298
+ const s = (r ? r.select(i) === "one" : i === 1) ? n : l || n + "s";
299
+ return e ? `${i} ${s}` : s;
284
300
  });
285
301
  }
286
302
  };
287
303
  export {
288
- B as F,
289
- i as c
304
+ p as F,
305
+ c
290
306
  };
@@ -2,7 +2,7 @@ import { I as _, Span as f, Button as v, OnState as M, Div as l, Legend as bt, F
2
2
  import { Atom as i, router as P, Jot as B, Component as S, Html as et, Data as O, Events as E, DateTime as ne, NavLink as $t, DataTracker as tt } from "@base-framework/base";
3
3
  import { Icons as g } from "./icons.es.js";
4
4
  import { Timer as Dt, TableBody as It, DataTableBody as Tt, ScrollableTableBody as Pt, List as Mt } from "@base-framework/organisms";
5
- import { F as W } from "./format-DHJsFMg1.js";
5
+ import { F as W } from "./format-Ct0idMsq.js";
6
6
  import { F as Bt } from "./bside-template-C7AQgQ6H.js";
7
7
  const zt = {
8
8
  xs: "w-4 h-4",
package/dist/index.es.js CHANGED
@@ -1,12 +1,12 @@
1
- import { A as s, a as o, B as t, b as n, c as r, d as l, e as i, f as u, C as p, g as m, h as d, i as g, j as c, k as T, l as b, m as I, n as C, o as S, p as F, q as D, r as B, D as P, s as k, t as M, u as v, v as N, w as f, x, y as h, z as y, E as U, F as W, G as w, H as L, I as H, J as A, K as G, L as R, M as E, N as O, O as V, P as Z, Q as j, R as J, S as _, T as q, U as z, V as K, W as Q, X, Y, Z as $, _ as aa, $ as ea, a0 as sa, a1 as oa, a2 as ta, a3 as na, a4 as ra, a5 as la, a6 as ia, a7 as ua, a8 as pa, a9 as ma, aa as da, ab as ga, ac as ca, ad as Ta, ae as ba, af as Ia, ag as Ca, ah as Sa, ai as Fa, aj as Da, ak as Ba, al as Pa, am as ka, an as Ma, ao as va, ap as Na, aq as fa, ar as xa, as as ha, at as ya, au as Ua, av as Wa, aw as wa, ax as La, ay as Ha, az as Aa, aA as Ga, aB as Ra, aC as Ea, aD as Oa, aE as Va, aF as Za, aG as ja, aH as Ja, aI as _a, aJ as qa, aK as za, aL as Ka, aM as Qa, aN as Xa, aO as Ya, aP as $a, aQ as ae, aR as ee, aS as se, aT as oe, aU as te, aV as ne, aW as re, aX as le, aY as ie, aZ as ue, a_ as pe, a$ as me, b0 as de, b1 as ge, b2 as ce, b3 as Te, b4 as be, b5 as Ie, b6 as Ce, b7 as Se } from "./full-page-Q-0SO6xi.js";
1
+ import { A as s, a as o, B as t, b as n, c as r, d as l, e as i, f as u, C as p, g as m, h as d, i as g, j as c, k as T, l as b, m as I, n as C, o as S, p as F, q as D, r as B, D as P, s as k, t as M, u as v, v as N, w as f, x, y as h, z as y, E as U, F as W, G as w, H as L, I as H, J as A, K as G, L as R, M as E, N as O, O as V, P as Z, Q as j, R as J, S as _, T as q, U as z, V as K, W as Q, X, Y, Z as $, _ as aa, $ as ea, a0 as sa, a1 as oa, a2 as ta, a3 as na, a4 as ra, a5 as la, a6 as ia, a7 as ua, a8 as pa, a9 as ma, aa as da, ab as ga, ac as ca, ad as Ta, ae as ba, af as Ia, ag as Ca, ah as Sa, ai as Fa, aj as Da, ak as Ba, al as Pa, am as ka, an as Ma, ao as va, ap as Na, aq as fa, ar as xa, as as ha, at as ya, au as Ua, av as Wa, aw as wa, ax as La, ay as Ha, az as Aa, aA as Ga, aB as Ra, aC as Ea, aD as Oa, aE as Va, aF as Za, aG as ja, aH as Ja, aI as _a, aJ as qa, aK as za, aL as Ka, aM as Qa, aN as Xa, aO as Ya, aP as $a, aQ as ae, aR as ee, aS as se, aT as oe, aU as te, aV as ne, aW as re, aX as le, aY as ie, aZ as ue, a_ as pe, a$ as me, b0 as de, b1 as ge, b2 as ce, b3 as Te, b4 as be, b5 as Ie, b6 as Ce, b7 as Se } from "./full-page-DEY8A6LH.js";
2
2
  import { S as De } from "./skeleton-5x_geYYP.js";
3
3
  import { Icons as Pe, MaterialSymbols as ke } from "./icons.es.js";
4
- import { C as ve, D as Ne, a as fe, b as xe, c as he, d as ye, e as Ue, M as We, N as we, S as Le, f as He, g as Ae, h as Ge, T as Re, i as Ee } from "./confirmation-CTQad04c.js";
5
- import { B as Ve, I as Ze, N as je, P as Je, S as _e, T as qe, a as ze, b as Ke, U as Qe, c as Xe, d as Ye, e as $e, W as as, f as es, g as ss, h as os, i as ts, j as ns, k as rs, l as ls, m as is, n as us } from "./signature-panel-C70NY5pI.js";
6
- import { S as ms } from "./sidebar-menu-BOz-Ju8B.js";
7
- import { B as gs, C as cs, F as Ts, a as bs, S as Is } from "./sidebar-menu-page-CyjzBKBh.js";
4
+ import { C as ve, D as Ne, a as fe, b as xe, c as he, d as ye, e as Ue, M as We, N as we, S as Le, f as He, g as Ae, h as Ge, T as Re, i as Ee } from "./confirmation-DMrc-cbF.js";
5
+ import { B as Ve, I as Ze, N as je, P as Je, S as _e, T as qe, a as ze, b as Ke, U as Qe, c as Xe, d as Ye, e as $e, W as as, f as es, g as ss, h as os, i as ts, j as ns, k as rs, l as ls, m as is, n as us } from "./signature-panel-BgTzrlv5.js";
6
+ import { S as ms } from "./sidebar-menu-evmeUjjp.js";
7
+ import { B as gs, C as cs, F as Ts, a as bs, S as Is } from "./sidebar-menu-page-UQjweror.js";
8
8
  import { A as Ss, B as Fs, F as Ds, M as Bs, T as Ps, a as ks } from "./bside-template-C7AQgQ6H.js";
9
- import { F as vs, c as Ns } from "./format-DHJsFMg1.js";
9
+ import { F as vs, c as Ns } from "./format-Ct0idMsq.js";
10
10
  import { I as xs } from "./image-scaler-1G-JzJVG.js";
11
11
  export {
12
12
  s as Alert,
@@ -1,5 +1,5 @@
1
- import { A as s, a as t, e, o as r, p as i, q as n, r as m, u as l, v as d, z as C, E as p, F as D, H as S, K as u, V as c, W as g, X as F, Y as T, Z as f, _ as b, $ as w, a1 as A, a2 as I, a3 as M, aa as P, af as y, aj as B, at as R, ay as U, az as k, aM as v, aR as x, aT as E, aV as L, b4 as N } from "./full-page-Q-0SO6xi.js";
2
- import { C as z, D as V, a as _, b as j, c as q, d as G, e as H, M as K, N as O, S as W, f as X, g as Y, h as Z, T as $, i as J } from "./confirmation-CTQad04c.js";
1
+ import { A as s, a as t, e, o as r, p as i, q as n, r as m, u as l, v as d, z as C, E as p, F as D, H as S, K as u, V as c, W as g, X as F, Y as T, Z as f, _ as b, $ as w, a1 as A, a2 as I, a3 as M, aa as P, af as y, aj as B, at as R, ay as U, az as k, aM as v, aR as x, aT as E, aV as L, b4 as N } from "./full-page-DEY8A6LH.js";
2
+ import { C as z, D as V, a as _, b as j, c as q, d as G, e as H, M as K, N as O, S as W, f as X, g as Y, h as Z, T as $, i as J } from "./confirmation-DMrc-cbF.js";
3
3
  export {
4
4
  s as Alert,
5
5
  t as Avatar,
@@ -1,6 +1,6 @@
1
- import { B as s, b as n, C as t, g as r, j as o, D as l, s as i, x as d, y as b, G as u, I as g, a4 as p, a6 as v, ab as D, ag as N, ak as T, al as k, am as C, ao as c, ap as m, aq as y, ar as B, as as S, av as h, aA as M, aD as W, aH as I, aI as U, aJ as H, aL as x, aN as P, aO as L, aU as f, a_ as G, a$ as O, b3 as j, b7 as F } from "./full-page-Q-0SO6xi.js";
2
- import { B as w, I as A, N as J, P as R, S as _, T as $, a as z, b as E, U as K, c as Q, d as V, e as X, W as Y, f as Z, g as aa, h as ea, i as sa, j as na, k as ta, l as ra, m as oa, n as la } from "./signature-panel-C70NY5pI.js";
3
- import { S as da } from "./sidebar-menu-BOz-Ju8B.js";
1
+ import { B as s, b as n, C as t, g as r, j as o, D as l, s as i, x as d, y as b, G as u, I as g, a4 as p, a6 as v, ab as D, ag as N, ak as T, al as k, am as C, ao as c, ap as m, aq as y, ar as B, as as S, av as h, aA as M, aD as W, aH as I, aI as U, aJ as H, aL as x, aN as P, aO as L, aU as f, a_ as G, a$ as O, b3 as j, b7 as F } from "./full-page-DEY8A6LH.js";
2
+ import { B as w, I as A, N as J, P as R, S as _, T as $, a as z, b as E, U as K, c as Q, d as V, e as X, W as Y, f as Z, g as aa, h as ea, i as sa, j as na, k as ta, l as ra, m as oa, n as la } from "./signature-panel-BgTzrlv5.js";
3
+ import { S as da } from "./sidebar-menu-evmeUjjp.js";
4
4
  export {
5
5
  s as BackButton,
6
6
  n as Backdrop,
package/dist/pages.es.js CHANGED
@@ -1,5 +1,5 @@
1
- import { d as s, a5 as g, ah as n, aw as P } from "./full-page-Q-0SO6xi.js";
2
- import { B as r, C as o, F as i, a as t, S as u } from "./sidebar-menu-page-CyjzBKBh.js";
1
+ import { d as s, a5 as g, ah as n, aw as P } from "./full-page-DEY8A6LH.js";
2
+ import { B as r, C as o, F as i, a as t, S as u } from "./sidebar-menu-page-UQjweror.js";
3
3
  export {
4
4
  s as BasicPage,
5
5
  r as BlankPage,
@@ -1,5 +1,5 @@
1
1
  import { Div as r, Header as x, H1 as c } from "@base-framework/atoms";
2
- import { ab as n } from "./full-page-Q-0SO6xi.js";
2
+ import { ab as n } from "./full-page-DEY8A6LH.js";
3
3
  const b = ({ title: l, options: a, class: s = "", mobileBorder: t = !1, sticky: e = !1, topNav: o = null, bottomNav: p = null }) => r({ class: `pb-12 p-4 pt-0 lg:p-6 lg:border-r w-full lg:max-w-[300px] flex-auto flex-col ${s}` }, [
4
4
  o,
5
5
  l && x({ class: "pb-4 md:pb-2 px-6 flex" }, [
@@ -1,7 +1,7 @@
1
1
  import { Div as s } from "@base-framework/atoms";
2
- import { d as a, ah as i, aw as r, al as n } from "./full-page-Q-0SO6xi.js";
2
+ import { d as a, ah as i, aw as r, al as n } from "./full-page-DEY8A6LH.js";
3
3
  import { F as l, A as d } from "./bside-template-C7AQgQ6H.js";
4
- import { S as c } from "./sidebar-menu-BOz-Ju8B.js";
4
+ import { S as c } from "./sidebar-menu-evmeUjjp.js";
5
5
  class f extends a {
6
6
  /**
7
7
  * This will render the page.
@@ -1,6 +1,6 @@
1
1
  import { Div as r, Button as b, On as U, Span as $, Nav as f, Ul as p, Section as y, Li as w, Canvas as R } from "@base-framework/atoms";
2
2
  import { Component as k, Data as F, DateTime as O, router as v, NavLink as C, base as P, Dom as W } from "@base-framework/base";
3
- import { f as N, av as Y, b0 as d, a7 as A } from "./full-page-Q-0SO6xi.js";
3
+ import { f as N, av as Y, b0 as d, a7 as A } from "./full-page-DEY8A6LH.js";
4
4
  import { Icons as B } from "./icons.es.js";
5
5
  import { IntervalTimer as V } from "@base-framework/organisms";
6
6
  class Pt extends k {
package/dist/utils.es.js CHANGED
@@ -1,4 +1,4 @@
1
- import { F as e, c } from "./format-DHJsFMg1.js";
1
+ import { F as e, c } from "./format-Ct0idMsq.js";
2
2
  import { I as t } from "./image-scaler-1G-JzJVG.js";
3
3
  export {
4
4
  e as Format,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/ui",
3
- "version": "1.2.71",
3
+ "version": "1.2.73",
4
4
  "description": "This is a UI package that adds components and atoms that use Tailwind CSS and a theme based on Shadcn.",
5
5
  "main": "./dist/index.es.js",
6
6
  "scripts": {