@julseb-lib/react 0.1.37 → 0.1.39

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/index.css ADDED
@@ -0,0 +1,539 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
2
+ @import "tailwindcss";
3
+ /* @custom-variant dark (&:where(.dark, .dark *)); */
4
+
5
+ :root {
6
+ --font-lato: "Lato", sans-serif;
7
+ --font-sans: var(--font-lato);
8
+ --font-mono: monospace;
9
+
10
+ --color-primary-50: var(--color-blue-50);
11
+ --color-primary-100: var(--color-blue-100);
12
+ --color-primary-200: var(--color-blue-200);
13
+ --color-primary-300: var(--color-blue-300);
14
+ --color-primary-400: var(--color-blue-400);
15
+ --color-primary-500: var(--color-blue-500);
16
+ --color-primary-600: var(--color-blue-600);
17
+ --color-primary-700: var(--color-blue-700);
18
+ --color-primary-800: var(--color-blue-800);
19
+ --color-primary-900: var(--color-blue-900);
20
+ --color-primary-950: var(--color-blue-950);
21
+ --color-secondary-50: var(--color-cyan-50);
22
+ --color-secondary-100: var(--color-cyan-100);
23
+ --color-secondary-200: var(--color-cyan-200);
24
+ --color-secondary-300: var(--color-cyan-300);
25
+ --color-secondary-400: var(--color-cyan-400);
26
+ --color-secondary-500: var(--color-cyan-500);
27
+ --color-secondary-600: var(--color-cyan-600);
28
+ --color-secondary-700: var(--color-cyan-700);
29
+ --color-secondary-800: var(--color-cyan-800);
30
+ --color-secondary-900: var(--color-cyan-900);
31
+ --color-secondary-950: var(--color-cyan-950);
32
+ --color-success-50: var(--color-green-50);
33
+ --color-success-100: var(--color-green-100);
34
+ --color-success-200: var(--color-green-200);
35
+ --color-success-300: var(--color-green-300);
36
+ --color-success-400: var(--color-green-400);
37
+ --color-success-500: var(--color-green-500);
38
+ --color-success-600: var(--color-green-600);
39
+ --color-success-700: var(--color-green-700);
40
+ --color-success-800: var(--color-green-800);
41
+ --color-success-900: var(--color-green-900);
42
+ --color-success-950: var(--color-green-950);
43
+ --color-danger-50: var(--color-red-50);
44
+ --color-danger-100: var(--color-red-100);
45
+ --color-danger-200: var(--color-red-200);
46
+ --color-danger-300: var(--color-red-300);
47
+ --color-danger-400: var(--color-red-400);
48
+ --color-danger-500: var(--color-red-500);
49
+ --color-danger-600: var(--color-red-600);
50
+ --color-danger-700: var(--color-red-700);
51
+ --color-danger-800: var(--color-red-800);
52
+ --color-danger-900: var(--color-red-900);
53
+ --color-danger-950: var(--color-red-950);
54
+ --color-warning-50: var(--color-amber-50);
55
+ --color-warning-100: var(--color-amber-100);
56
+ --color-warning-200: var(--color-amber-200);
57
+ --color-warning-300: var(--color-amber-300);
58
+ --color-warning-400: var(--color-amber-400);
59
+ --color-warning-500: var(--color-amber-500);
60
+ --color-warning-600: var(--color-amber-600);
61
+ --color-warning-700: var(--color-amber-700);
62
+ --color-warning-800: var(--color-amber-800);
63
+ --color-warning-900: var(--color-amber-900);
64
+ --color-warning-950: var(--color-amber-950);
65
+ --color-gray-50: var(--color-neutral-50);
66
+ --color-gray-100: var(--color-neutral-100);
67
+ --color-gray-200: var(--color-neutral-200);
68
+ --color-gray-300: var(--color-neutral-300);
69
+ --color-gray-400: var(--color-neutral-400);
70
+ --color-gray-500: var(--color-neutral-500);
71
+ --color-gray-600: var(--color-neutral-600);
72
+ --color-gray-700: var(--color-neutral-700);
73
+ --color-gray-800: var(--color-neutral-800);
74
+ --color-gray-900: var(--color-neutral-900);
75
+ --color-gray-950: var(--color-neutral-950);
76
+
77
+ --color-background: var(--color-white);
78
+ --color-font: var(--color-black);
79
+
80
+ --font-weight-thin: 100;
81
+ --font-weight-light: 300;
82
+ --font-weight-normal: 400;
83
+ --font-weight-bold: 700;
84
+ --font-weight-black: 900;
85
+
86
+ --color-overlay-black-50: rgba(0, 0, 0, 0.5);
87
+ --color-overlay-black-80: rgba(0, 0, 0, 0.8);
88
+ --color-overlay-white-50: rgba(255, 255, 255, 0.5);
89
+ --color-overlay-white-80: rgba(255, 255, 255, 0.8);
90
+ --color-overlay-gradient-black: linear-gradient(
91
+ 180deg,
92
+ rgba(255, 255, 255, 0) 0%,
93
+ rgba(0, 0, 0, 0.56) 100%
94
+ );
95
+ --color-overlay-gradient-white: linear-gradient(
96
+ 180deg,
97
+ rgba(0, 0, 0, 0) 0%,
98
+ rgba(255, 255, 255, 0.35) 100%
99
+ );
100
+
101
+ --font-sans: var(--font-lato);
102
+ --font-mono: monospace;
103
+
104
+ --spacer-2xs: 4px;
105
+ --spacer-xs: 8px;
106
+ --spacer-sm: 12px;
107
+ --spacer-md: 16px;
108
+ --spacer-lg: 24px;
109
+ --spacer-xl: 32px;
110
+ --spacer-2xl: 48px;
111
+
112
+ --main-default: 600px;
113
+ --main-large: 800px;
114
+ --main-form: 400px;
115
+ --main-full: 100%;
116
+ --aside-default: 250px;
117
+ --aside-small: 200px;
118
+
119
+ --shadow-2xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
120
+ --shadow-xs:
121
+ 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
122
+ --shadow-sm:
123
+ 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
124
+ --shadow-md:
125
+ 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px rgba(0, 0, 0, 0.3);
126
+ --shadow-lg:
127
+ 0px 6px 10px 4px rgba(0, 0, 0, 0.15), 0px 2px 3px rgba(0, 0, 0, 0.3);
128
+ --shadow-xl:
129
+ 0px 8px 12px 6px rgba(0, 0, 0, 0.15), 0px 4px 4px rgba(0, 0, 0, 0.3);
130
+ --shadow-2xl:
131
+ 0px 10px 14px 8px rgba(0, 0, 0, 0.2), 0px 4px 4px rgba(0, 0, 0, 0.3);
132
+ --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.06);
133
+ --shadow-none: none;
134
+
135
+ --animate-cubic-bezier: cubic-bezier(0.5, 0, 0.5, 1);
136
+
137
+ --transition-short: all 200ms ease;
138
+ --transition-long: all 500ms ease;
139
+ --transition-bezier: all 500ms cubic-bezier(0.25, 0.75, 0, 0.66);
140
+
141
+ --text-display-h1: 5rem;
142
+ --text-display-h2: 4rem;
143
+ --text-display-h3: 3.5rem;
144
+ --text-display-h4: 3rem;
145
+ --text-display-h5: 2.5rem;
146
+ --text-h1: 2.5rem;
147
+ --text-h2: 2rem;
148
+ --text-h3: 1.8rem;
149
+ --text-h4: 1.5rem;
150
+ --text-h5: 1.3rem;
151
+ --text-h6: 1.1rem;
152
+ --text-body: 1rem;
153
+ --text-small: 0.875rem;
154
+ }
155
+
156
+ @theme {
157
+ --color-primary-50: var(--color-blue-50);
158
+ --color-primary-100: var(--color-blue-100);
159
+ --color-primary-200: var(--color-blue-200);
160
+ --color-primary-300: var(--color-blue-300);
161
+ --color-primary-400: var(--color-blue-400);
162
+ --color-primary-500: var(--color-blue-500);
163
+ --color-primary-600: var(--color-blue-600);
164
+ --color-primary-700: var(--color-blue-700);
165
+ --color-primary-800: var(--color-blue-800);
166
+ --color-primary-900: var(--color-blue-900);
167
+ --color-primary-950: var(--color-blue-950);
168
+ --color-secondary-50: var(--color-cyan-50);
169
+ --color-secondary-100: var(--color-cyan-100);
170
+ --color-secondary-200: var(--color-cyan-200);
171
+ --color-secondary-300: var(--color-cyan-300);
172
+ --color-secondary-400: var(--color-cyan-400);
173
+ --color-secondary-500: var(--color-cyan-500);
174
+ --color-secondary-600: var(--color-cyan-600);
175
+ --color-secondary-700: var(--color-cyan-700);
176
+ --color-secondary-800: var(--color-cyan-800);
177
+ --color-secondary-900: var(--color-cyan-900);
178
+ --color-secondary-950: var(--color-cyan-950);
179
+ --color-success-50: var(--color-green-50);
180
+ --color-success-100: var(--color-green-100);
181
+ --color-success-200: var(--color-green-200);
182
+ --color-success-300: var(--color-green-300);
183
+ --color-success-400: var(--color-green-400);
184
+ --color-success-500: var(--color-green-500);
185
+ --color-success-600: var(--color-green-600);
186
+ --color-success-700: var(--color-green-700);
187
+ --color-success-800: var(--color-green-800);
188
+ --color-success-900: var(--color-green-900);
189
+ --color-success-950: var(--color-green-950);
190
+ --color-danger-50: var(--color-red-50);
191
+ --color-danger-100: var(--color-red-100);
192
+ --color-danger-200: var(--color-red-200);
193
+ --color-danger-300: var(--color-red-300);
194
+ --color-danger-400: var(--color-red-400);
195
+ --color-danger-500: var(--color-red-500);
196
+ --color-danger-600: var(--color-red-600);
197
+ --color-danger-700: var(--color-red-700);
198
+ --color-danger-800: var(--color-red-800);
199
+ --color-danger-900: var(--color-red-900);
200
+ --color-danger-950: var(--color-red-950);
201
+ --color-warning-50: var(--color-amber-50);
202
+ --color-warning-100: var(--color-amber-100);
203
+ --color-warning-200: var(--color-amber-200);
204
+ --color-warning-300: var(--color-amber-300);
205
+ --color-warning-400: var(--color-amber-400);
206
+ --color-warning-500: var(--color-amber-500);
207
+ --color-warning-600: var(--color-amber-600);
208
+ --color-warning-700: var(--color-amber-700);
209
+ --color-warning-800: var(--color-amber-800);
210
+ --color-warning-900: var(--color-amber-900);
211
+ --color-warning-950: var(--color-amber-950);
212
+ --color-gray-50: var(--color-neutral-50);
213
+ --color-gray-100: var(--color-neutral-100);
214
+ --color-gray-200: var(--color-neutral-200);
215
+ --color-gray-300: var(--color-neutral-300);
216
+ --color-gray-400: var(--color-neutral-400);
217
+ --color-gray-500: var(--color-neutral-500);
218
+ --color-gray-600: var(--color-neutral-600);
219
+ --color-gray-700: var(--color-neutral-700);
220
+ --color-gray-800: var(--color-neutral-800);
221
+ --color-gray-900: var(--color-neutral-900);
222
+ --color-gray-950: var(--color-neutral-950);
223
+
224
+ --color-background: var(--color-white);
225
+ --color-font: var(--color-black);
226
+
227
+ --font-weight-thin: 100;
228
+ --font-weight-light: 300;
229
+ --font-weight-normal: 400;
230
+ --font-weight-bold: 700;
231
+ --font-weight-black: 900;
232
+
233
+ --color-overlay-black-50: rgba(0, 0, 0, 0.5);
234
+ --color-overlay-black-80: rgba(0, 0, 0, 0.8);
235
+ --color-overlay-white-50: rgba(255, 255, 255, 0.5);
236
+ --color-overlay-white-80: rgba(255, 255, 255, 0.8);
237
+ --color-overlay-gradient-black: linear-gradient(
238
+ 180deg,
239
+ rgba(255, 255, 255, 0) 0%,
240
+ rgba(0, 0, 0, 0.56) 100%
241
+ );
242
+ --color-overlay-gradient-white: linear-gradient(
243
+ 180deg,
244
+ rgba(0, 0, 0, 0) 0%,
245
+ rgba(255, 255, 255, 0.35) 100%
246
+ );
247
+
248
+ --font-sans: var(--font-lato);
249
+ --font-mono: monospace;
250
+
251
+ --spacer-2xs: 4px;
252
+ --spacer-xs: 8px;
253
+ --spacer-sm: 12px;
254
+ --spacer-md: 16px;
255
+ --spacer-lg: 24px;
256
+ --spacer-xl: 32px;
257
+ --spacer-2xl: 48px;
258
+
259
+ --main-default: 600px;
260
+ --main-large: 800px;
261
+ --main-form: 400px;
262
+ --main-full: 100%;
263
+ --aside-default: 250px;
264
+ --aside-small: 200px;
265
+
266
+ --shadow-2xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
267
+ --shadow-xs:
268
+ 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
269
+ --shadow-sm:
270
+ 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
271
+ --shadow-md:
272
+ 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px rgba(0, 0, 0, 0.3);
273
+ --shadow-lg:
274
+ 0px 6px 10px 4px rgba(0, 0, 0, 0.15), 0px 2px 3px rgba(0, 0, 0, 0.3);
275
+ --shadow-xl:
276
+ 0px 8px 12px 6px rgba(0, 0, 0, 0.15), 0px 4px 4px rgba(0, 0, 0, 0.3);
277
+ --shadow-2xl:
278
+ 0px 10px 14px 8px rgba(0, 0, 0, 0.2), 0px 4px 4px rgba(0, 0, 0, 0.3);
279
+ --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.06);
280
+ --shadow-none: none;
281
+
282
+ --animate-cubic-bezier: cubic-bezier(0.5, 0, 0.5, 1);
283
+
284
+ --transition-short: all 200ms ease;
285
+ --transition-long: all 500ms ease;
286
+ --transition-bezier: all 500ms cubic-bezier(0.25, 0.75, 0, 0.66);
287
+
288
+ --text-display-h1: 5rem;
289
+ --text-display-h2: 4rem;
290
+ --text-display-h3: 3.5rem;
291
+ --text-display-h4: 3rem;
292
+ --text-display-h5: 2.5rem;
293
+ --text-h1: 2.5rem;
294
+ --text-h2: 2rem;
295
+ --text-h3: 1.8rem;
296
+ --text-h4: 1.5rem;
297
+ --text-h5: 1.3rem;
298
+ --text-h6: 1.1rem;
299
+ --text-body: 1rem;
300
+ --text-small: 0.875rem;
301
+ }
302
+
303
+ /*====================== Common styles ======================*/
304
+
305
+ html,
306
+ body {
307
+ font-family: var(--font-sans);
308
+ width: 100%;
309
+ min-height: 100vh;
310
+ background-color: var(--color-background);
311
+ color: var(--color-font);
312
+ max-width: 100dvw;
313
+ line-height: var(--leading-normal);
314
+
315
+ &.dark {
316
+ --color-background: var(--color-black);
317
+ --color-font: var(--color-white);
318
+ }
319
+ }
320
+
321
+ .smooth {
322
+ scroll-behavior: smooth;
323
+ }
324
+
325
+ a,
326
+ button {
327
+ cursor: pointer;
328
+ transition: var(--transition-short);
329
+
330
+ &:disabled {
331
+ cursor: not-allowed;
332
+ }
333
+ }
334
+
335
+ img,
336
+ video,
337
+ iframe {
338
+ max-width: 100%;
339
+ }
340
+
341
+ .no-scrollbar {
342
+ -ms-overflow-style: none;
343
+ scrollbar-width: none;
344
+
345
+ &::-webkit-scrollbar {
346
+ display: none;
347
+ }
348
+ }
349
+
350
+ /*====================== Fonts ======================*/
351
+
352
+ .lato-thin {
353
+ font-family: var(--font-sans);
354
+ font-weight: var(--font-weight-thin);
355
+ font-style: normal;
356
+ }
357
+
358
+ .lato-light {
359
+ font-family: var(--font-sans);
360
+ font-weight: var(--font-weight-light);
361
+ font-style: normal;
362
+ }
363
+
364
+ .lato-regular {
365
+ font-family: var(--font-sans);
366
+ font-weight: var(--font-weight-normal);
367
+ font-style: normal;
368
+ }
369
+
370
+ .lato-bold {
371
+ font-family: var(--font-sans);
372
+ font-weight: var(--font-weight-bold);
373
+ font-style: normal;
374
+ }
375
+
376
+ .lato-black {
377
+ font-family: var(--font-sans);
378
+ font-weight: var(--font-weight-black);
379
+ font-style: normal;
380
+ }
381
+
382
+ .lato-thin-italic {
383
+ font-family: var(--font-sans);
384
+ font-weight: var(--font-weight-thin);
385
+ font-style: italic;
386
+ }
387
+
388
+ .lato-light-italic {
389
+ font-family: var(--font-sans);
390
+ font-weight: var(--font-weight-light);
391
+ font-style: italic;
392
+ }
393
+
394
+ .lato-regular-italic {
395
+ font-family: var(--font-sans);
396
+ font-weight: var(--font-weight-normal);
397
+ font-style: italic;
398
+ }
399
+
400
+ .lato-bold-italic {
401
+ font-family: var(--font-sans);
402
+ font-weight: var(--font-weight-bold);
403
+ font-style: italic;
404
+ }
405
+
406
+ .lato-black-italic {
407
+ font-family: var(--font-sans);
408
+ font-weight: var(--font-weight-black);
409
+ font-style: italic;
410
+ }
411
+
412
+ /*====================== Colors ======================*/
413
+
414
+ .text-primary {
415
+ color: var(--color-primary-500);
416
+ }
417
+
418
+ .bg-primary {
419
+ background-color: var(--color-primary-500);
420
+ }
421
+
422
+ .text-secondary {
423
+ color: var(--color-secondary-500);
424
+ }
425
+
426
+ .bg-secondary {
427
+ background-color: var(--color-secondary-500);
428
+ }
429
+
430
+ .text-success {
431
+ color: var(--color-success-500);
432
+ }
433
+
434
+ .bg-success {
435
+ background-color: var(--color-success-500);
436
+ }
437
+
438
+ .text-danger {
439
+ color: var(--color-danger-500);
440
+ }
441
+
442
+ .bg-danger {
443
+ background-color: var(--color-danger-500);
444
+ }
445
+
446
+ .text-warning {
447
+ color: var(--color-warning-500);
448
+ }
449
+
450
+ .bg-warning {
451
+ background-color: var(--color-warning-500);
452
+ }
453
+
454
+ .text-gray {
455
+ color: var(--color-gray-500);
456
+ }
457
+
458
+ .bg-gray {
459
+ background-color: var(--color-gray-500);
460
+ }
461
+
462
+ .text-white {
463
+ color: var(--color-white);
464
+ }
465
+
466
+ .bg-white {
467
+ background-color: var(--color-white);
468
+ }
469
+
470
+ .overlay-black-50 {
471
+ background: var(--color-overlay-black-50);
472
+ }
473
+
474
+ .overlay-black-80 {
475
+ background: var(--color-overlay-black-80);
476
+ }
477
+
478
+ .overlay-white-50 {
479
+ background: var(--color-overlay-white-50);
480
+ }
481
+
482
+ .overlay-white-80 {
483
+ background: var(--color-overlay-white-80);
484
+ }
485
+
486
+ .overlay-gradient-black {
487
+ background: var(--color-overlay-gradient-black);
488
+ }
489
+
490
+ .overlay-gradient-white {
491
+ background: var(--color-overlay-gradient-white);
492
+ }
493
+
494
+ /*====================== Keyframes & animations ======================*/
495
+
496
+ @keyframes shine {
497
+ from {
498
+ left: -150px;
499
+ }
500
+
501
+ to {
502
+ left: 106%;
503
+ }
504
+ }
505
+
506
+ @keyframes spin {
507
+ from {
508
+ transform: rotate(0deg);
509
+ }
510
+
511
+ to {
512
+ transform: rotate(360deg);
513
+ }
514
+ }
515
+
516
+ @keyframes loader-pulse {
517
+ 0%,
518
+ 100% {
519
+ transform: scale(0);
520
+ }
521
+
522
+ 50% {
523
+ transform: scale(1);
524
+ }
525
+ }
526
+
527
+ .Toastify__progress-bar--bg {
528
+ background-color: transparent !important;
529
+ }
530
+
531
+ @keyframes progress-bar {
532
+ 0% {
533
+ width: 0;
534
+ }
535
+
536
+ 100% {
537
+ width: var(--meter-value);
538
+ }
539
+ }
package/dist/index.d.cts CHANGED
@@ -4,7 +4,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import { ClassNameValue } from 'tailwind-merge';
5
5
  import { MarkdownToJSX } from 'markdown-to-jsx';
6
6
  import { LibMdEditorOptions } from './types/components-items-props.cjs';
7
- export { addDay, addMonth, addYear, calculateAverage, calculateTotalSum, capitalize, convertDate, convertDateShort, convertPrice, convertToEmail, convertYoutube, deleteDuplicates, detectLanguage, disableScroll, emailRegex, enableScroll, filterObject, formatDate, formatHour, generateNumbers, getFirstName, getInitials, getLastName, getNextDay, getPercentage, getRandom, getRandomAvatar, getRandomDate, getRandomNumber, getRandomString, getRandomTime, getTimeNow, getToday, getTomorrow, getYesterday, hexToRgb, passwordRegex, rgbToHex, scrollToTop, slugify, sortByFrequency, stringifyPx, toCamelCase, toConstantCase, toDotCase, toKebabCase, toPascalCase, toPathCase, toSentenceCase, toSnakeCase, toTitleCase, unslugify, uuid } from '@julseb-lib/utils';
7
+ export * from '@julseb-lib/utils';
8
8
  import * as react from 'react';
9
9
  import { RefObject, ChangeEvent, RefCallback, Ref, FC as FC$1 } from 'react';
10
10
  import { ILibText, ILibWrapper, ILibMain, ILibAside, ILibSection, ILibGrid, ILibFlexbox, ILibKey, ILibHighlight, ILibLinkify, ILibHr, ILibSkeleton, ILibSkeletonCard, ILibTooltip, ILibImage, ILibMasonry, ILibBadge, ILibAvatar, ILibLoader, ILibBurger, ILibButton, ILibButtonIcon, ILibButtonGroup, ILibTag, ILibInputContainer, ILibInput, ILibInputImage, ILibInputCheck, ILibInputPhone, ILibInputCounter, ILibInputSlider, ILibSelect, ILibAutocomplete, ILibRating, ILibInputPin, ILibFieldset, ILibForm, ILibListGroup, ILibListGroupTitle, ILibListGroupItem, ILibBreadcrumbs, ILibAccordion, ILibAccordionItem, ILibDropdown, ILibDropdownItem, ILibToast, ILibAlert, ILibModal, ILibDragList, ILibDragListItem, ILibPagination, ILibPaginationButton, ILibPaginator, ILibProgressBar, ILibProgressCircle, ILibTabs, ILibTabsContainer, ILibTabsButtonsContainer, ILibTabsButton, ILibTabContent, ILibSlideshow, ILibCover, ILibTable, ILibPageLoading, ILibSticky, ILibMarkdownEditor, ILibMarkdownContainer, ILibFade, ILibBackToTop, ILibDrawer, ILibHeader, ILibFooter, ILibMeta, ILibPageLayout, ILibSrOnly } from './types/components-props.cjs';
package/dist/index.d.ts CHANGED
@@ -4,7 +4,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import { ClassNameValue } from 'tailwind-merge';
5
5
  import { MarkdownToJSX } from 'markdown-to-jsx';
6
6
  import { LibMdEditorOptions } from './types/components-items-props.js';
7
- export { addDay, addMonth, addYear, calculateAverage, calculateTotalSum, capitalize, convertDate, convertDateShort, convertPrice, convertToEmail, convertYoutube, deleteDuplicates, detectLanguage, disableScroll, emailRegex, enableScroll, filterObject, formatDate, formatHour, generateNumbers, getFirstName, getInitials, getLastName, getNextDay, getPercentage, getRandom, getRandomAvatar, getRandomDate, getRandomNumber, getRandomString, getRandomTime, getTimeNow, getToday, getTomorrow, getYesterday, hexToRgb, passwordRegex, rgbToHex, scrollToTop, slugify, sortByFrequency, stringifyPx, toCamelCase, toConstantCase, toDotCase, toKebabCase, toPascalCase, toPathCase, toSentenceCase, toSnakeCase, toTitleCase, unslugify, uuid } from '@julseb-lib/utils';
7
+ export * from '@julseb-lib/utils';
8
8
  import * as react from 'react';
9
9
  import { RefObject, ChangeEvent, RefCallback, Ref, FC as FC$1 } from 'react';
10
10
  import { ILibText, ILibWrapper, ILibMain, ILibAside, ILibSection, ILibGrid, ILibFlexbox, ILibKey, ILibHighlight, ILibLinkify, ILibHr, ILibSkeleton, ILibSkeletonCard, ILibTooltip, ILibImage, ILibMasonry, ILibBadge, ILibAvatar, ILibLoader, ILibBurger, ILibButton, ILibButtonIcon, ILibButtonGroup, ILibTag, ILibInputContainer, ILibInput, ILibInputImage, ILibInputCheck, ILibInputPhone, ILibInputCounter, ILibInputSlider, ILibSelect, ILibAutocomplete, ILibRating, ILibInputPin, ILibFieldset, ILibForm, ILibListGroup, ILibListGroupTitle, ILibListGroupItem, ILibBreadcrumbs, ILibAccordion, ILibAccordionItem, ILibDropdown, ILibDropdownItem, ILibToast, ILibAlert, ILibModal, ILibDragList, ILibDragListItem, ILibPagination, ILibPaginationButton, ILibPaginator, ILibProgressBar, ILibProgressCircle, ILibTabs, ILibTabsContainer, ILibTabsButtonsContainer, ILibTabsButton, ILibTabContent, ILibSlideshow, ILibCover, ILibTable, ILibPageLoading, ILibSticky, ILibMarkdownEditor, ILibMarkdownContainer, ILibFade, ILibBackToTop, ILibDrawer, ILibHeader, ILibFooter, ILibMeta, ILibPageLayout, ILibSrOnly } from './types/components-props.js';
package/dist/index.js CHANGED
@@ -2081,61 +2081,7 @@ var genRingColorChildren = {
2081
2081
  };
2082
2082
 
2083
2083
  // src/lib/index.ts
2084
- import {
2085
- addDay,
2086
- addMonth,
2087
- addYear,
2088
- calculateAverage,
2089
- calculateTotalSum,
2090
- capitalize,
2091
- convertDate,
2092
- convertDateShort,
2093
- convertPrice,
2094
- convertToEmail,
2095
- convertYoutube,
2096
- deleteDuplicates,
2097
- detectLanguage as detectLanguage2,
2098
- disableScroll as disableScroll4,
2099
- enableScroll as enableScroll4,
2100
- filterObject,
2101
- formatDate,
2102
- formatHour,
2103
- generateNumbers as generateNumbers3,
2104
- getFirstName,
2105
- getInitials,
2106
- getLastName,
2107
- getNextDay,
2108
- getPercentage as getPercentage2,
2109
- getRandom,
2110
- getRandomAvatar,
2111
- getRandomDate,
2112
- getRandomNumber,
2113
- getRandomString,
2114
- getRandomTime,
2115
- getTimeNow,
2116
- getToday,
2117
- getTomorrow,
2118
- getYesterday,
2119
- hexToRgb,
2120
- emailRegex,
2121
- passwordRegex,
2122
- rgbToHex,
2123
- scrollToTop as scrollToTop3,
2124
- slugify as slugify2,
2125
- sortByFrequency,
2126
- stringifyPx as stringifyPx3,
2127
- toCamelCase,
2128
- toConstantCase,
2129
- toDotCase,
2130
- toKebabCase,
2131
- toPascalCase,
2132
- toPathCase,
2133
- toSentenceCase as toSentenceCase3,
2134
- toSnakeCase,
2135
- toTitleCase,
2136
- unslugify,
2137
- uuid as uuid15
2138
- } from "@julseb-lib/utils";
2084
+ export * from "@julseb-lib/utils";
2139
2085
 
2140
2086
  // src/lib/hooks/useClickOutside.tsx
2141
2087
  import { useEffect } from "react";
@@ -11548,27 +11494,8 @@ export {
11548
11494
  Tooltip,
11549
11495
  URL_REGEX,
11550
11496
  Wrapper,
11551
- addDay,
11552
- addMonth,
11553
- addYear,
11554
- calculateAverage,
11555
- calculateTotalSum,
11556
- capitalize,
11557
11497
  clsx,
11558
- convertDate,
11559
- convertDateShort,
11560
- convertPrice,
11561
- convertToEmail,
11562
- convertYoutube,
11563
- deleteDuplicates,
11564
11498
  designTokens,
11565
- detectLanguage2 as detectLanguage,
11566
- disableScroll4 as disableScroll,
11567
- emailRegex,
11568
- enableScroll4 as enableScroll,
11569
- filterObject,
11570
- formatDate,
11571
- formatHour,
11572
11499
  genAlignContent,
11573
11500
  genAlignItems,
11574
11501
  genBgAllColors,
@@ -11603,43 +11530,10 @@ export {
11603
11530
  genTextColorHover,
11604
11531
  genTextColorShort,
11605
11532
  genVAlign,
11606
- generateNumbers3 as generateNumbers,
11607
- getFirstName,
11608
- getInitials,
11609
- getLastName,
11610
- getNextDay,
11611
- getPercentage2 as getPercentage,
11612
- getRandom,
11613
- getRandomAvatar,
11614
- getRandomDate,
11615
- getRandomNumber,
11616
- getRandomString,
11617
- getRandomTime,
11618
- getTimeNow,
11619
- getToday,
11620
- getTomorrow,
11621
- getYesterday,
11622
- hexToRgb,
11623
11533
  libMarkdownEditorOptions,
11624
11534
  libOptionsMarkdown,
11625
11535
  linkifyText,
11626
- passwordRegex,
11627
- rgbToHex,
11628
- scrollToTop3 as scrollToTop,
11629
- slugify2 as slugify,
11630
- sortByFrequency,
11631
- stringifyPx3 as stringifyPx,
11632
- toCamelCase,
11633
- toConstantCase,
11634
- toDotCase,
11635
- toKebabCase,
11636
- toPascalCase,
11637
- toPathCase,
11638
- toSentenceCase3 as toSentenceCase,
11639
- toSnakeCase,
11640
- toTitleCase,
11641
11536
  toast,
11642
- unslugify,
11643
11537
  useClickOutside,
11644
11538
  useCopyToClipboard,
11645
11539
  useDebounce,
@@ -11655,7 +11549,6 @@ export {
11655
11549
  usePaginatedData,
11656
11550
  usePagination,
11657
11551
  useTouchScreen,
11658
- useTranslation,
11659
- uuid15 as uuid
11552
+ useTranslation
11660
11553
  };
11661
11554
  //# sourceMappingURL=index.js.map