@versini/ui-truncate 3.0.0 → 3.0.1

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.
@@ -1,120 +1,116 @@
1
1
  import { jsx as h, jsxs as B } from "react/jsx-runtime";
2
- import o from "clsx";
3
- import f, { useState as C } from "react";
4
- const w = "av-button", p = "icon", x = "button", v = "link", S = ({
2
+ import i from "clsx";
3
+ import y, { useState as C } from "react";
4
+ const w = "av-button", p = "icon", x = "button", f = "link", S = ({
5
5
  type: e,
6
- size: t,
6
+ size: a,
7
7
  labelRight: r,
8
- labelLeft: a,
9
- align: i
8
+ labelLeft: t,
9
+ align: o
10
10
  }) => {
11
- const d = "max-h-8 py-0 px-2", l = "max-h-9 py-1 px-3", n = "max-h-12 py-2 px-4";
11
+ const d = "max-h-8 py-0 px-2", s = "max-h-9 py-1 px-3", n = "max-h-12 py-2 px-4";
12
12
  switch (e) {
13
13
  case x:
14
- case v:
15
- return o({
16
- [d]: t === "small",
17
- [l]: t === "medium",
18
- [n]: t === "large"
14
+ case f:
15
+ return i({
16
+ [d]: a === "small",
17
+ [s]: a === "medium",
18
+ [n]: a === "large"
19
19
  });
20
20
  case p:
21
- return o("inline-flex items-center", {
22
- "justify-center": i === "center",
23
- "justify-start": i === "left",
24
- "justify-end": i === "right",
25
- "h-6 w-6 p-0": t === "small" && !(r || a),
26
- "h-6 px-2": t === "small" && (r || a),
27
- "h-8 w-8 p-1": t === "medium" && !(r || a),
28
- "h-8 px-3": t === "medium" && (r || a),
29
- "h-12 w-12 p-2": t === "large" && !(r || a),
30
- "h-12 px-4": t === "large" && (r || a)
21
+ return i("inline-flex items-center", {
22
+ "justify-center": o === "center",
23
+ "justify-start": o === "left",
24
+ "justify-end": o === "right",
25
+ "h-6 w-6 p-0": a === "small" && !(r || t),
26
+ "h-6 px-2": a === "small" && (r || t),
27
+ "h-8 w-8 p-1": a === "medium" && !(r || t),
28
+ "h-8 px-3": a === "medium" && (r || t),
29
+ "h-12 w-12 p-2": a === "large" && !(r || t),
30
+ "h-12 px-4": a === "large" && (r || t)
31
31
  });
32
32
  }
33
33
  }, U = ({
34
34
  type: e,
35
- size: t,
35
+ size: a,
36
36
  labelRight: r,
37
- labelLeft: a
37
+ labelLeft: t
38
38
  }) => {
39
- const i = "text-sm font-medium", d = "text-base font-medium", l = "text-lg font-medium";
39
+ const o = "text-sm font-medium", d = "text-base font-medium", s = "text-lg font-medium";
40
40
  switch (e) {
41
41
  case x:
42
- case v:
43
- return o({
44
- "text-center": e === v,
45
- [i]: t === "small",
46
- [d]: t === "medium",
47
- [l]: t === "large"
42
+ case f:
43
+ return i({
44
+ "text-center": e === f,
45
+ [o]: a === "small",
46
+ [d]: a === "medium",
47
+ [s]: a === "large"
48
48
  });
49
49
  case p:
50
- return o({
51
- [i]: t === "small" && (r || a),
52
- [d]: t === "medium" && (r || a),
53
- [l]: t === "large" && (r || a)
50
+ return i({
51
+ [o]: a === "small" && (r || t),
52
+ [d]: a === "medium" && (r || t),
53
+ [s]: a === "large" && (r || t)
54
54
  });
55
55
  }
56
56
  }, W = ({
57
57
  mode: e,
58
- noBackground: t,
58
+ noBackground: a,
59
59
  noTruncate: r,
60
- variant: a
60
+ variant: t
61
61
  }) => {
62
- if (t)
62
+ if (a)
63
63
  return "not-prose";
64
- if (a === "primary")
65
- return o("not-prose", {
64
+ if (t === "primary")
65
+ return i("not-prose", {
66
66
  truncate: !r,
67
- "text-copy-light": e === "dark",
68
- "text-copy-lighter": e === "light",
69
- "text-copy-light dark:text-copy-lighter": e === "system",
70
- "text-copy-lighter dark:text-copy-light": e === "alt-system"
67
+ "text-copy-light": e === "dark" || e === "system",
68
+ "text-copy-lighter": e === "light" || e === "alt-system",
69
+ "dark:text-copy-lighter": e === "system",
70
+ "dark:text-copy-light": e === "alt-system"
71
71
  });
72
- if (a === "secondary")
73
- return o("not-prose", {
72
+ if (t === "secondary")
73
+ return i("not-prose", {
74
74
  truncate: !r,
75
- "text-copy-light": e === "light",
76
- "text-copy-lighter": e === "dark",
77
- "text-copy-light dark:text-copy-lighter": e === "alt-system",
78
- "text-copy-lighter dark:text-copy-light": e === "system"
75
+ "text-copy-light": e === "light" || e === "system",
76
+ "text-copy-lighter": e === "dark" || e === "alt-system",
77
+ "dark:text-copy-lighter": e === "alt-system",
78
+ "dark:text-copy-light": e === "system"
79
79
  });
80
- if (a === "danger")
81
- return o("not-prose", {
80
+ if (t === "danger")
81
+ return i("not-prose", {
82
82
  truncate: !r,
83
- "text-copy-light": e === "dark",
84
- "text-copy-lighter": e === "light",
85
- "text-copy-light dark:text-copy-lighter": e === "system",
86
- "text-copy-lighter dark:text-copy-light": e === "alt-system"
83
+ "text-copy-light": e === "dark" || e === "system",
84
+ "text-copy-lighter": e === "light" || e === "alt-system",
85
+ "dark:text-copy-lighter": e === "system",
86
+ "dark:text-copy-light": e === "alt-system"
87
87
  });
88
- if (a === "selected")
89
- return o("not-prose", {
90
- truncate: !r,
91
- "text-copy-light": e === "dark",
92
- "text-copy-lighter": e === "light",
93
- "text-copy-light dark:text-copy-lighter": e === "system",
94
- "text-copy-lighter dark:text-copy-light": e === "alt-system"
88
+ if (t === "selected")
89
+ return i("not-prose text-copy-lighter", {
90
+ truncate: !r
95
91
  });
96
92
  }, A = ({
97
93
  mode: e,
98
- noBackground: t,
94
+ noBackground: a,
99
95
  variant: r
100
96
  }) => {
101
- if (!t) {
97
+ if (!a) {
102
98
  if (r === "primary")
103
- return o({
99
+ return i({
104
100
  "bg-action-dark": e === "dark",
105
101
  "bg-action-light": e === "light",
106
102
  "bg-action-dark dark:bg-action-light": e === "system",
107
103
  "bg-action-light dark:bg-action-dark": e === "alt-system"
108
104
  });
109
105
  if (r === "secondary")
110
- return o({
106
+ return i({
111
107
  "bg-action-dark": e === "light",
112
108
  "bg-action-light": e === "dark",
113
109
  "bg-action-dark dark:bg-action-light": e === "alt-system",
114
110
  "bg-action-light dark:bg-action-dark": e === "system"
115
111
  });
116
112
  if (r === "danger")
117
- return o({
113
+ return i({
118
114
  "bg-action-danger-dark": e === "dark",
119
115
  "bg-action-danger-light": e === "light",
120
116
  "bg-action-danger-dark dark:bg-action-danger-light": e === "system",
@@ -125,33 +121,33 @@ const w = "av-button", p = "icon", x = "button", v = "link", S = ({
125
121
  }
126
122
  }, O = ({
127
123
  radius: e
128
- }) => o({
124
+ }) => i({
129
125
  "rounded-full": e === "large",
130
126
  "rounded-md": e === "medium",
131
127
  "rounded-sm": e === "small"
132
128
  }), D = ({
133
129
  mode: e,
134
- disabled: t,
130
+ disabled: a,
135
131
  variant: r
136
132
  }) => {
137
- if (t)
133
+ if (a)
138
134
  return "";
139
135
  if (r === "primary")
140
- return o("hover:text-copy-light-hover", {
136
+ return i("hover:text-copy-light-hover", {
141
137
  "hover:bg-action-dark-hover": e === "dark",
142
138
  "hover:bg-action-light-hover": e === "light",
143
139
  "hover:bg-action-dark-hover dark:hover:bg-action-light-hover": e === "system",
144
140
  "hover:bg-action-light-hover dark:hover:bg-action-dark-hover": e === "alt-system"
145
141
  });
146
142
  if (r === "secondary")
147
- return o("hover:text-copy-light-hover", {
143
+ return i("hover:text-copy-light-hover", {
148
144
  "hover:bg-action-dark-hover": e === "light",
149
145
  "hover:bg-action-light-hover": e === "dark",
150
146
  "hover:bg-action-dark-hover dark:hover:bg-action-light-hover": e === "alt-system",
151
147
  "hover:bg-action-light-hover dark:hover:bg-action-dark-hover": e === "system"
152
148
  });
153
149
  if (r === "danger")
154
- return o("hover:text-copy-light-hover", {
150
+ return i("hover:text-copy-light-hover", {
155
151
  "hover:bg-action-danger-dark-hover": e === "dark",
156
152
  "hover:bg-action-danger-light-hover": e === "light",
157
153
  "hover:bg-action-danger-dark-hover dark:hover:bg-action-danger-light-hover": e === "system",
@@ -161,27 +157,27 @@ const w = "av-button", p = "icon", x = "button", v = "link", S = ({
161
157
  return "hover:text-copy-light-hover hover:bg-action-selected-dark-hover";
162
158
  }, V = ({
163
159
  mode: e,
164
- disabled: t,
160
+ disabled: a,
165
161
  variant: r
166
162
  }) => {
167
- if (t)
163
+ if (a)
168
164
  return "";
169
165
  if (r === "primary")
170
- return o("active:text-copy-light-active", {
166
+ return i("active:text-copy-light-active", {
171
167
  "active:bg-action-dark-active": e === "dark",
172
168
  "active:bg-action-light-active": e === "light",
173
169
  "active:bg-action-dark-active dark:active:bg-action-light-active": e === "system",
174
170
  "active:bg-action-light-active dark:active:bg-action-dark-active": e === "alt-system"
175
171
  });
176
172
  if (r === "secondary")
177
- return o("active:text-copy-light-active", {
173
+ return i("active:text-copy-light-active", {
178
174
  "active:bg-action-dark-active": e === "light",
179
175
  "active:bg-action-light-active": e === "dark",
180
176
  "active:bg-action-dark-active dark:active:bg-action-light-active": e === "alt-system",
181
177
  "active:bg-action-light-active dark:active:bg-action-dark-active": e === "system"
182
178
  });
183
179
  if (r === "danger")
184
- return o("active:text-copy-lighter-active", {
180
+ return i("active:text-copy-lighter-active", {
185
181
  "active:bg-action-danger-dark-active": e === "dark",
186
182
  "active:bg-action-danger-light-active": e === "light",
187
183
  "active:bg-action-danger-dark-active dark:active:bg-action-danger-light-active": e === "system",
@@ -191,27 +187,27 @@ const w = "av-button", p = "icon", x = "button", v = "link", S = ({
191
187
  return "active:text-copy-lighter-active active:bg-action-selected-dark-active";
192
188
  }, F = ({
193
189
  mode: e,
194
- noBorder: t,
190
+ noBorder: a,
195
191
  variant: r
196
192
  }) => {
197
- if (t)
193
+ if (a)
198
194
  return "border border-transparent";
199
195
  if (r === "primary")
200
- return o("border", {
196
+ return i("border", {
201
197
  "border-border-dark": e === "dark",
202
198
  "border-border-accent": e === "light",
203
199
  "border-border-dark dark:border-border-accent": e === "system",
204
200
  "border-border-accent dark:border-border-dark": e === "alt-system"
205
201
  });
206
202
  if (r === "secondary")
207
- return o("border", {
203
+ return i("border", {
208
204
  "border-border-dark": e === "light",
209
205
  "border-border-accent": e === "dark",
210
206
  "border-border-dark dark:border-border-accent": e === "alt-system",
211
207
  "border-border-accent dark:border-border-dark": e === "system"
212
208
  });
213
209
  if (r === "danger")
214
- return o("border", {
210
+ return i("border", {
215
211
  "border-border-danger-dark": e === "dark",
216
212
  "border-border-danger-medium": e === "light",
217
213
  "border-border-danger-dark dark:border-border-danger-medium": e === "system",
@@ -221,99 +217,99 @@ const w = "av-button", p = "icon", x = "button", v = "link", S = ({
221
217
  return "border border-border-selected-dark";
222
218
  }, G = ({
223
219
  focusMode: e
224
- }) => o("focus:outline", "focus:outline-2", "focus:outline-offset-2", {
220
+ }) => i("focus:outline", "focus:outline-2", "focus:outline-offset-2", {
225
221
  "focus:outline-focus-dark": e === "dark",
226
222
  "focus:outline-focus-light": e === "light",
227
223
  "focus:outline-focus-light dark:focus:outline-focus-dark": e === "alt-system",
228
224
  "focus:outline-focus-dark dark:focus:outline-focus-light": e === "system"
229
225
  }), N = ({
230
226
  type: e,
231
- className: t,
227
+ className: a,
232
228
  raw: r,
233
- mode: a,
234
- focusMode: i,
229
+ mode: t,
230
+ focusMode: o,
235
231
  disabled: d,
236
- fullWidth: l,
232
+ fullWidth: s,
237
233
  size: n,
238
234
  noBorder: b,
239
- labelRight: s,
235
+ labelRight: l,
240
236
  labelLeft: u,
241
237
  noBackground: m,
242
238
  variant: c,
243
239
  noTruncate: g,
244
- align: y,
240
+ align: v,
245
241
  radius: k
246
- }) => (c || (c = "primary"), r ? o(w, t) : o(
242
+ }) => (c || (c = "primary"), r ? i(w, a) : i(
247
243
  w,
248
244
  W({
249
- mode: a,
245
+ mode: t,
250
246
  variant: c,
251
247
  noBackground: m,
252
248
  noTruncate: g
253
249
  }),
254
- A({ mode: a, noBackground: m, variant: c }),
250
+ A({ mode: t, noBackground: m, variant: c }),
255
251
  O({ radius: k }),
256
252
  S({
257
253
  type: e,
258
254
  size: n,
259
- labelRight: s,
255
+ labelRight: l,
260
256
  labelLeft: u,
261
- align: y
257
+ align: v
262
258
  }),
263
- U({ type: e, size: n, labelRight: s, labelLeft: u }),
264
- F({ mode: a, variant: c, noBorder: b }),
265
- G({ focusMode: i }),
266
- D({ mode: a, variant: c, disabled: d }),
267
- V({ mode: a, variant: c, disabled: d }),
259
+ U({ type: e, size: n, labelRight: l, labelLeft: u }),
260
+ F({ mode: t, variant: c, noBorder: b }),
261
+ G({ focusMode: o }),
262
+ D({ mode: t, variant: c, disabled: d }),
263
+ V({ mode: t, variant: c, disabled: d }),
268
264
  {
269
- "w-full": l,
265
+ "w-full": s,
270
266
  "disabled:cursor-not-allowed disabled:opacity-50": d
271
267
  },
272
- t
273
- )), H = (e, t, r) => {
274
- var a;
275
- !t && (!document.activeElement || document.activeElement !== e.currentTarget) && typeof ((a = e == null ? void 0 : e.currentTarget) == null ? void 0 : a.focus) == "function" && e.currentTarget.focus(), typeof r == "function" && r(e);
276
- }, T = f.forwardRef((e, t) => {
277
- const { onClick: r, noInternalClick: a = !1, ...i } = e;
268
+ a
269
+ )), H = (e, a, r) => {
270
+ var t;
271
+ !a && (!document.activeElement || document.activeElement !== e.currentTarget) && typeof ((t = e == null ? void 0 : e.currentTarget) == null ? void 0 : t.focus) == "function" && e.currentTarget.focus(), typeof r == "function" && r(e);
272
+ }, T = y.forwardRef((e, a) => {
273
+ const { onClick: r, noInternalClick: t = !1, ...o } = e;
278
274
  return /* @__PURE__ */ h(
279
275
  "button",
280
276
  {
281
- ref: t,
277
+ ref: a,
282
278
  onClick: (d) => {
283
- H(d, a, r);
279
+ H(d, t, r);
284
280
  },
285
- ...i
281
+ ...o
286
282
  }
287
283
  );
288
284
  });
289
285
  T.displayName = "BaseButton";
290
- const _ = f.forwardRef(
286
+ const _ = y.forwardRef(
291
287
  ({
292
288
  children: e,
293
- disabled: t = !1,
289
+ disabled: a = !1,
294
290
  mode: r = "system",
295
- focusMode: a = "system",
296
- fullWidth: i = !1,
291
+ focusMode: t = "system",
292
+ fullWidth: o = !1,
297
293
  className: d,
298
- size: l = "medium",
294
+ size: s = "medium",
299
295
  raw: n = !1,
300
296
  noBorder: b = !1,
301
- variant: s = "primary",
297
+ variant: l = "primary",
302
298
  noTruncate: u = !1,
303
299
  radius: m = "large",
304
300
  ...c
305
301
  }, g) => {
306
- const y = N({
302
+ const v = N({
307
303
  type: x,
308
304
  mode: r,
309
- focusMode: a,
310
- fullWidth: i,
311
- disabled: t,
305
+ focusMode: t,
306
+ fullWidth: o,
307
+ disabled: a,
312
308
  raw: n,
313
309
  className: d,
314
- size: l,
310
+ size: s,
315
311
  noBorder: b,
316
- variant: s,
312
+ variant: l,
317
313
  noTruncate: u,
318
314
  radius: m
319
315
  });
@@ -321,8 +317,8 @@ const _ = f.forwardRef(
321
317
  T,
322
318
  {
323
319
  ref: g,
324
- className: y,
325
- disabled: t,
320
+ className: v,
321
+ disabled: a,
326
322
  ...c,
327
323
  children: e
328
324
  }
@@ -331,35 +327,35 @@ const _ = f.forwardRef(
331
327
  );
332
328
  _.displayName = "Button";
333
329
  /*!
334
- @versini/ui-button v4.0.0
330
+ @versini/ui-button v4.0.1
335
331
  © 2025 gizmette.com
336
332
  */
337
333
  try {
338
334
  window.__VERSINI_UI_BUTTON__ || (window.__VERSINI_UI_BUTTON__ = {
339
- version: "4.0.0",
340
- buildTime: "01/03/2025 10:45 AM EST",
335
+ version: "4.0.1",
336
+ buildTime: "01/04/2025 10:02 AM EST",
341
337
  homepage: "https://github.com/aversini/ui-components",
342
338
  license: "MIT"
343
339
  });
344
340
  } catch {
345
341
  }
346
- const $ = f.forwardRef(
342
+ const $ = y.forwardRef(
347
343
  ({
348
344
  children: e,
349
- disabled: t = !1,
345
+ disabled: a = !1,
350
346
  mode: r = "system",
351
- focusMode: a = "system",
352
- fullWidth: i = !1,
347
+ focusMode: t = "system",
348
+ fullWidth: o = !1,
353
349
  className: d,
354
- type: l = "button",
350
+ type: s = "button",
355
351
  raw: n = !1,
356
352
  noBorder: b = !1,
357
- "aria-label": s,
353
+ "aria-label": l,
358
354
  label: u,
359
355
  size: m = "medium",
360
356
  labelRight: c,
361
357
  labelLeft: g,
362
- noBackground: y = !1,
358
+ noBackground: v = !1,
363
359
  align: k = "center",
364
360
  active: E = !1,
365
361
  radius: R = "large",
@@ -368,24 +364,24 @@ const $ = f.forwardRef(
368
364
  const M = N({
369
365
  type: p,
370
366
  mode: r,
371
- focusMode: a,
372
- fullWidth: i,
373
- disabled: t,
367
+ focusMode: t,
368
+ fullWidth: o,
369
+ disabled: a,
374
370
  raw: n,
375
371
  className: d,
376
372
  noBorder: b,
377
373
  size: m,
378
374
  labelRight: c,
379
375
  labelLeft: g,
380
- noBackground: y,
376
+ noBackground: v,
381
377
  align: k,
382
378
  radius: R
383
- }), L = o({
379
+ }), L = i({
384
380
  "text-copy-accent-dark": r === "light" && !n,
385
381
  "text-copy-light": r === "dark" && !n,
386
382
  "text-copy-accent-dark dark:text-copy-light": r === "alt-system" && !n,
387
383
  "text-copy-light dark:text-copy-accent-dark": r === "system" && !n
388
- }), j = E ? o(
384
+ }), j = E ? i(
389
385
  "relative",
390
386
  "focus-within:static",
391
387
  "focus-within:after:border-transparent",
@@ -407,9 +403,9 @@ const $ = f.forwardRef(
407
403
  {
408
404
  ref: I,
409
405
  className: M,
410
- disabled: t,
411
- type: l,
412
- "aria-label": s || u,
406
+ disabled: a,
407
+ type: s,
408
+ "aria-label": l || u,
413
409
  ...z,
414
410
  children: [
415
411
  g && /* @__PURE__ */ h("span", { className: "pr-2", children: g }),
@@ -423,43 +419,43 @@ const $ = f.forwardRef(
423
419
  $.displayName = "ButtonSort";
424
420
  const q = 200, J = ({
425
421
  string: e,
426
- idealLength: t = q
422
+ idealLength: a = q
427
423
  }) => {
428
- if (e.length <= t)
424
+ if (e.length <= a)
429
425
  return { string: e, isTruncated: !1 };
430
- if (e.charAt(t) === " ")
431
- return { string: e.slice(0, t), isTruncated: !0 };
432
- const i = e.slice(t).search(" ");
426
+ if (e.charAt(a) === " ")
427
+ return { string: e.slice(0, a), isTruncated: !0 };
428
+ const o = e.slice(a).search(" ");
433
429
  return {
434
- string: e.slice(0, t + i),
430
+ string: e.slice(0, a + o),
435
431
  isTruncated: !0
436
432
  };
437
433
  }, X = ({
438
434
  children: e,
439
- length: t = 200,
435
+ length: a = 200,
440
436
  mode: r = "system",
441
- focusMode: a = "system"
437
+ focusMode: t = "system"
442
438
  }) => {
443
- const [i, d] = C(!1);
439
+ const [o, d] = C(!1);
444
440
  if (typeof e != "string")
445
441
  return e;
446
- const { string: l, isTruncated: n } = J({
442
+ const { string: s, isTruncated: n } = J({
447
443
  string: e,
448
- idealLength: t
444
+ idealLength: a
449
445
  });
450
446
  return /* @__PURE__ */ B("span", { style: { wordBreak: "break-word" }, children: [
451
- i ? e : l,
447
+ o ? e : s,
452
448
  n && /* @__PURE__ */ h(
453
449
  _,
454
450
  {
455
451
  mode: r,
456
- focusMode: a,
452
+ focusMode: t,
457
453
  className: "ml-2",
458
454
  size: "small",
459
- onClick: (s) => {
460
- s.preventDefault(), d(!i);
455
+ onClick: (l) => {
456
+ l.preventDefault(), d(!o);
461
457
  },
462
- children: i ? "less..." : "more..."
458
+ children: o ? "less..." : "more..."
463
459
  }
464
460
  )
465
461
  ] });
package/dist/index.js CHANGED
@@ -1,12 +1,12 @@
1
1
  import { Truncate as o } from "./components/Truncate/Truncate.js";
2
2
  /*!
3
- @versini/ui-truncate v3.0.0
3
+ @versini/ui-truncate v3.0.1
4
4
  © 2025 gizmette.com
5
5
  */
6
6
  try {
7
7
  window.__VERSINI_UI_TRUNCATE__ || (window.__VERSINI_UI_TRUNCATE__ = {
8
- version: "3.0.0",
9
- buildTime: "01/03/2025 10:45 AM EST",
8
+ version: "3.0.1",
9
+ buildTime: "01/04/2025 10:03 AM EST",
10
10
  homepage: "https://github.com/aversini/ui-components",
11
11
  license: "MIT"
12
12
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versini/ui-truncate",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "license": "MIT",
5
5
  "author": "Arno Versini",
6
6
  "publishConfig": {
@@ -39,11 +39,11 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "@tailwindcss/typography": "0.5.15",
42
- "@versini/ui-button": "4.0.0",
42
+ "@versini/ui-button": "4.0.1",
43
43
  "tailwindcss": "3.4.17"
44
44
  },
45
45
  "sideEffects": [
46
46
  "**/*.css"
47
47
  ],
48
- "gitHead": "406bf426c5b3186ef7197e0b51d83ec0de689cde"
48
+ "gitHead": "8d426172a7405edff487d08c0fae260d4df0b56e"
49
49
  }