@base-framework/ui 1.2.71 → 1.2.72

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-CDqQw8Gr.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-CDqQw8Gr.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,22 @@
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 o = (n, t) => {
3
+ if (typeof n == "string") {
4
+ const l = /^(.*?)\[\[([^\]]+)\]\](.*?)$/, e = n.match(l);
5
+ if (e) {
6
+ const [, r, a, c] = e;
7
+ if (r || c) {
8
+ const i = t;
9
+ t = (u) => `${r}${i(u)}${c}`;
10
+ }
11
+ n = [a];
12
+ } else
13
+ n = [n];
14
+ }
15
+ return Array.isArray(n) ? (n.push(t), n) : {
16
+ ...n,
17
+ callBack: t
18
+ };
19
+ }, m = (n, t = "") => n != null && n !== "" ? n : t, p = {
6
20
  /**
7
21
  * Formats a number with commas.
8
22
  *
@@ -12,7 +26,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
12
26
  */
13
27
  number(n, t = null) {
14
28
  const l = typeof Intl < "u" ? new Intl.NumberFormat() : null;
15
- return i(n, (r) => {
29
+ return o(n, (r) => {
16
30
  const a = Number(r);
17
31
  if (isNaN(a))
18
32
  return t || "";
@@ -31,7 +45,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
31
45
  * @returns {object|array}
32
46
  */
33
47
  yesno(n, t = "Yes", l = "No") {
34
- return i(n, (r) => r ? t : l);
48
+ return o(n, (r) => r ? t : l);
35
49
  },
36
50
  /**
37
51
  * Formats a value as money with two decimals.
@@ -47,14 +61,14 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
47
61
  minimumFractionDigits: e ? 0 : 2,
48
62
  maximumFractionDigits: e ? 0 : 2
49
63
  }) : null;
50
- return i(n, (c) => {
51
- const o = parseFloat(c);
52
- if (isNaN(o))
64
+ return o(n, (c) => {
65
+ const i = parseFloat(c);
66
+ if (isNaN(i))
53
67
  return t + l || "";
54
68
  if (r)
55
- return t + r.format(o);
69
+ return t + r.format(i);
56
70
  const u = /\B(?=(\d{3})+(?!\d))/g;
57
- return t + (e ? Math.round(o) : o.toFixed(2)).toString().replace(u, ",");
71
+ return t + (e ? Math.round(i) : i.toFixed(2)).toString().replace(u, ",");
58
72
  });
59
73
  },
60
74
  /**
@@ -70,14 +84,14 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
70
84
  minimumFractionDigits: 0,
71
85
  maximumFractionDigits: 0
72
86
  }) : null;
73
- return i(n, (a) => {
87
+ return o(n, (a) => {
74
88
  const c = parseFloat(a);
75
89
  if (isNaN(c))
76
90
  return t + l || "";
77
91
  if (e)
78
92
  return t + e.format(Math.round(c));
79
- const o = /\B(?=(\d{3})+(?!\d))/g;
80
- return t + Math.round(c).toString().replace(o, ",");
93
+ const i = /\B(?=(\d{3})+(?!\d))/g;
94
+ return t + Math.round(c).toString().replace(i, ",");
81
95
  });
82
96
  },
83
97
  /**
@@ -88,7 +102,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
88
102
  * @returns {object|array}
89
103
  */
90
104
  phone(n, t = null) {
91
- return i(n, (e) => {
105
+ return o(n, (e) => {
92
106
  e = e || "";
93
107
  const r = String(e.toString()).replace(/\D/g, "");
94
108
  return r.length === 10 ? "(" + r.slice(0, 3) + ") " + r.slice(3, 6) + "-" + r.slice(6) : e || t;
@@ -102,7 +116,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
102
116
  * @returns {object|array}
103
117
  */
104
118
  integer(n, t = null) {
105
- return i(n, (e) => {
119
+ return o(n, (e) => {
106
120
  e = m(e, t);
107
121
  const r = parseInt(e, 10);
108
122
  return isNaN(r) ? t : r.toString();
@@ -121,7 +135,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
121
135
  month: "2-digit",
122
136
  day: "2-digit"
123
137
  }) : null;
124
- return i(n, (r) => r ? l ? l.format(new Date(r)) : f.format("standard", r) : t || "");
138
+ return o(n, (r) => r ? l ? l.format(new Date(r)) : f.format("standard", r) : t || "");
125
139
  },
126
140
  /**
127
141
  * Formats a date and time value to a standard date and time format.
@@ -139,7 +153,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
139
153
  minute: "2-digit",
140
154
  hour12: !0
141
155
  }) : null;
142
- return i(n, (r) => r ? l ? l.format(new Date(r)) : f.format("standard", r) + " " + f.formatTime(r, 12) : t || "");
156
+ return o(n, (r) => r ? l ? l.format(new Date(r)) : f.format("standard", r) + " " + f.formatTime(r, 12) : t || "");
143
157
  },
144
158
  /**
145
159
  * Formats a time value to a standard time format.
@@ -154,7 +168,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
154
168
  minute: "2-digit",
155
169
  hour12: !0
156
170
  }) : null;
157
- return i(n, (r) => r ? l ? l.format(new Date(r)) : f.formatTime(r, 12) : t || "");
171
+ return o(n, (r) => r ? l ? l.format(new Date(r)) : f.formatTime(r, 12) : t || "");
158
172
  },
159
173
  /**
160
174
  * Formats a value with a default value if null or undefined.
@@ -164,7 +178,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
164
178
  * @returns {object|array}
165
179
  */
166
180
  default(n, t = null) {
167
- return i(n, (e) => m(e, t));
181
+ return o(n, (e) => m(e, t));
168
182
  },
169
183
  /**
170
184
  * Formats a number as a percentage.
@@ -181,15 +195,15 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
181
195
  minimumFractionDigits: t,
182
196
  maximumFractionDigits: t
183
197
  }) : null;
184
- return i(n, (c) => {
185
- const o = parseFloat(c);
186
- if (isNaN(o))
198
+ return o(n, (c) => {
199
+ const i = parseFloat(c);
200
+ if (isNaN(i))
187
201
  return e || "";
188
202
  if (r) {
189
- const s = l ? o : o / 100;
203
+ const s = l ? i : i / 100;
190
204
  return r.format(s);
191
205
  }
192
- return (l ? o * 100 : o).toFixed(t) + "%";
206
+ return (l ? i * 100 : i).toFixed(t) + "%";
193
207
  });
194
208
  },
195
209
  /**
@@ -201,7 +215,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
201
215
  * @returns {object|array}
202
216
  */
203
217
  capitalize(n, t = !0, l = null) {
204
- return i(n, (r) => {
218
+ return o(n, (r) => {
205
219
  if (!r)
206
220
  return l || "";
207
221
  const a = String(r);
@@ -216,7 +230,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
216
230
  * @returns {object|array}
217
231
  */
218
232
  uppercase(n, t = null) {
219
- return i(n, (e) => e ? String(e).toUpperCase() : t || "");
233
+ return o(n, (e) => e ? String(e).toUpperCase() : t || "");
220
234
  },
221
235
  /**
222
236
  * Converts a string to lowercase.
@@ -226,7 +240,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
226
240
  * @returns {object|array}
227
241
  */
228
242
  lowercase(n, t = null) {
229
- return i(n, (e) => e ? String(e).toLowerCase() : t || "");
243
+ return o(n, (e) => e ? String(e).toLowerCase() : t || "");
230
244
  },
231
245
  /**
232
246
  * Truncates a string to a maximum length with ellipsis.
@@ -238,7 +252,7 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
238
252
  * @returns {object|array}
239
253
  */
240
254
  truncate(n, t = 50, l = "...", e = null) {
241
- return i(n, (a) => {
255
+ return o(n, (a) => {
242
256
  if (!a)
243
257
  return e || "";
244
258
  const c = String(a);
@@ -254,14 +268,14 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
254
268
  * @returns {object|array}
255
269
  */
256
270
  fileSize(n, t = 2, l = null) {
257
- return i(n, (r) => {
271
+ return o(n, (r) => {
258
272
  const a = parseFloat(r);
259
273
  if (isNaN(a) || a < 0)
260
274
  return l || "";
261
275
  if (a === 0)
262
276
  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];
277
+ const c = 1024, i = ["Bytes", "KB", "MB", "GB", "TB", "PB"], u = Math.floor(Math.log(a) / Math.log(c));
278
+ return parseFloat((a / Math.pow(c, u)).toFixed(t)) + " " + i[u];
265
279
  });
266
280
  },
267
281
  /**
@@ -275,16 +289,16 @@ const i = (n, t) => (typeof n == "string" && (n = [n]), Array.isArray(n) ? (n.pu
275
289
  */
276
290
  plural(n, t, l = null, e = !0) {
277
291
  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))
292
+ return o(n, (c) => {
293
+ const i = parseInt(c, 10);
294
+ if (isNaN(i))
281
295
  return "";
282
- const s = (r ? r.select(o) === "one" : o === 1) ? t : l || t + "s";
283
- return e ? `${o} ${s}` : s;
296
+ const s = (r ? r.select(i) === "one" : i === 1) ? t : l || t + "s";
297
+ return e ? `${i} ${s}` : s;
284
298
  });
285
299
  }
286
300
  };
287
301
  export {
288
- B as F,
289
- i as c
302
+ p as F,
303
+ o as c
290
304
  };
@@ -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-C4gsKP6K.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-CDqQw8Gr.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-DTzNbFV1.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-XoBr_zOW.js";
6
+ import { S as ms } from "./sidebar-menu-DdI_jGrT.js";
7
+ import { B as gs, C as cs, F as Ts, a as bs, S as Is } from "./sidebar-menu-page-BU-UqkRQ.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-C4gsKP6K.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-CDqQw8Gr.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-DTzNbFV1.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-CDqQw8Gr.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-XoBr_zOW.js";
3
+ import { S as da } from "./sidebar-menu-DdI_jGrT.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-CDqQw8Gr.js";
2
+ import { B as r, C as o, F as i, a as t, S as u } from "./sidebar-menu-page-BU-UqkRQ.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-CDqQw8Gr.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-CDqQw8Gr.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-DdI_jGrT.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-CDqQw8Gr.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-C4gsKP6K.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.72",
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": {