linkedunion-design-kit 0.1.3 → 0.1.5

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.
Files changed (85) hide show
  1. package/dist/.next/types/app/page.d.ts +8 -0
  2. package/dist/.next/types/app/page.js +22 -0
  3. package/dist/app/layout.d.ts +1 -1
  4. package/dist/app/layout.jsx +1 -1
  5. package/dist/components/Border/BorderRadius/BorderRadius.d.ts +2 -0
  6. package/dist/components/Border/BorderRadius/BorderRadius.jsx +12 -0
  7. package/dist/components/Border/BorderRadius/BorderRadius.stories.d.ts +4 -0
  8. package/dist/components/Border/BorderRadius/BorderRadius.stories.jsx +17 -0
  9. package/dist/components/Border/BorderRadius/BorderRadiusTable.d.ts +1 -0
  10. package/dist/components/Border/BorderRadius/BorderRadiusTable.jsx +61 -0
  11. package/dist/components/Border/BorderRadius/BorderRadiusView.d.ts +2 -0
  12. package/dist/components/Border/BorderRadius/BorderRadiusView.jsx +8 -0
  13. package/dist/components/Border/BorderWidth/BorderWidth.d.ts +2 -0
  14. package/dist/components/Border/BorderWidth/BorderWidth.jsx +12 -0
  15. package/dist/components/Border/BorderWidth/BorderWidth.stories.d.ts +4 -0
  16. package/dist/components/Border/BorderWidth/BorderWidth.stories.jsx +17 -0
  17. package/dist/components/Border/BorderWidth/BorderWidthTable.d.ts +1 -0
  18. package/dist/components/Border/BorderWidth/BorderWidthTable.jsx +36 -0
  19. package/dist/components/Border/BorderWidth/ViewBorderWidth.d.ts +2 -0
  20. package/dist/components/Border/BorderWidth/ViewBorderWidth.jsx +8 -0
  21. package/dist/components/Button/Button.d.ts +2 -0
  22. package/dist/components/Button/Button.jsx +16 -0
  23. package/dist/components/Button/Button.stories.d.ts +4 -0
  24. package/dist/components/Button/Button.stories.jsx +109 -0
  25. package/dist/components/Icons/IconView.d.ts +1 -0
  26. package/dist/components/Icons/IconView.jsx +23 -0
  27. package/dist/components/Icons/IconView.stories.d.ts +4 -0
  28. package/dist/components/Icons/IconView.stories.jsx +8 -0
  29. package/dist/components/Icons/LUIcon.d.ts +2 -0
  30. package/dist/components/Icons/LUIcon.jsx +20 -0
  31. package/dist/components/Icons/LUIcon.stories.d.ts +4 -0
  32. package/dist/components/Icons/LUIcon.stories.jsx +29 -0
  33. package/dist/components/Images/LuImage.d.ts +2 -0
  34. package/dist/components/Images/LuImage.jsx +6 -0
  35. package/dist/components/Images/LuImage.stories.d.ts +4 -0
  36. package/dist/components/Images/LuImage.stories.jsx +37 -0
  37. package/dist/components/Size/MinWidthHeight.d.ts +2 -0
  38. package/dist/components/Size/MinWidthHeight.jsx +8 -0
  39. package/dist/components/Size/MinWidthHeight.stories.d.ts +5 -0
  40. package/dist/components/Size/MinWidthHeight.stories.jsx +22 -0
  41. package/dist/components/Size/WidthHeight.d.ts +2 -0
  42. package/dist/components/Size/{Resizable.jsx → WidthHeight.jsx} +3 -3
  43. package/dist/components/Size/WidthHeight.stories.d.ts +5 -0
  44. package/dist/components/Size/{Resizable.stories.jsx → WidthHeight.stories.jsx} +9 -9
  45. package/dist/components/Spacing/Margin/Margin.d.ts +1 -0
  46. package/dist/components/Spacing/Margin/Margin.jsx +86 -0
  47. package/dist/components/Spacing/Margin/MarginBottom.d.ts +1 -0
  48. package/dist/components/Spacing/Margin/MarginBottom.jsx +86 -0
  49. package/dist/components/Spacing/Margin/MarginLeft.d.ts +1 -0
  50. package/dist/components/Spacing/Margin/MarginLeft.jsx +86 -0
  51. package/dist/components/Spacing/Margin/MarginRight.d.ts +1 -0
  52. package/dist/components/Spacing/Margin/MarginRight.jsx +86 -0
  53. package/dist/components/Spacing/Margin/MarginToken.d.ts +1 -0
  54. package/dist/components/Spacing/Margin/MarginToken.jsx +27 -0
  55. package/dist/components/Spacing/Margin/MarginToken.stories.d.ts +4 -0
  56. package/dist/components/Spacing/Margin/MarginToken.stories.jsx +7 -0
  57. package/dist/components/Spacing/Margin/MarginTop.d.ts +1 -0
  58. package/dist/components/Spacing/Margin/MarginTop.jsx +87 -0
  59. package/dist/components/Spacing/Padding/Padding.d.ts +1 -0
  60. package/dist/components/Spacing/Padding/Padding.jsx +87 -0
  61. package/dist/components/Spacing/Padding/PaddingBottom.d.ts +1 -0
  62. package/dist/components/Spacing/Padding/PaddingBottom.jsx +86 -0
  63. package/dist/components/Spacing/Padding/PaddingLeft.d.ts +1 -0
  64. package/dist/components/Spacing/Padding/PaddingLeft.jsx +86 -0
  65. package/dist/components/Spacing/Padding/PaddingRight.d.ts +1 -0
  66. package/dist/components/Spacing/Padding/PaddingRight.jsx +87 -0
  67. package/dist/components/Spacing/Padding/PaddingToken.d.ts +1 -0
  68. package/dist/components/Spacing/Padding/PaddingToken.jsx +27 -0
  69. package/dist/components/Spacing/Padding/PaddingToken.stories.d.ts +4 -0
  70. package/dist/components/Spacing/Padding/PaddingToken.stories.jsx +7 -0
  71. package/dist/components/Spacing/Padding/PaddingTop.d.ts +1 -0
  72. package/dist/components/Spacing/Padding/PaddingTop.jsx +87 -0
  73. package/dist/global.css +2094 -5489
  74. package/dist/index.d.ts +4 -2
  75. package/dist/index.js +4 -2
  76. package/dist/tailwind.config.js +42 -10
  77. package/dist/utils/enum.d.ts +13 -0
  78. package/dist/utils/enum.js +13 -0
  79. package/dist/utils/iconList.d.ts +5 -0
  80. package/dist/utils/iconList.js +807 -0
  81. package/dist/utils/index.d.ts +1082 -45
  82. package/dist/utils/index.js +1127 -90
  83. package/package.json +5 -2
  84. package/dist/components/Size/Resizable.d.ts +0 -2
  85. package/dist/components/Size/Resizable.stories.d.ts +0 -5
@@ -47,10 +47,58 @@ export declare const heights: {
47
47
  key: string;
48
48
  label: string;
49
49
  }[];
50
+ export declare const minWidths: {
51
+ key: string;
52
+ label: string;
53
+ }[];
54
+ export declare const minHeights: {
55
+ key: string;
56
+ label: string;
57
+ }[];
50
58
  export declare const spacings: {
51
59
  key: string;
52
60
  label: string;
53
61
  }[];
62
+ export declare const borderRadiusList: {
63
+ key: string;
64
+ label: string;
65
+ }[];
66
+ export declare const borderWidthList: {
67
+ key: string;
68
+ label: string;
69
+ }[];
70
+ export declare const iconSizeList: {
71
+ key: string;
72
+ label: string;
73
+ }[];
74
+ export declare const buttonIconSizeList: {
75
+ key: string;
76
+ label: string;
77
+ }[];
78
+ export declare const iconColorList: {
79
+ key: string;
80
+ label: string;
81
+ }[];
82
+ export declare const buttonColorsList: {
83
+ key: string;
84
+ label: string;
85
+ }[];
86
+ export declare const butttonSizeList: {
87
+ key: string;
88
+ label: string;
89
+ }[];
90
+ export declare const buttonWithIconList: {
91
+ key: string;
92
+ label: string;
93
+ }[];
94
+ export declare const portraitaspectRatioList: {
95
+ key: string;
96
+ label: string;
97
+ }[];
98
+ export declare const landscapeaspectRatioList: {
99
+ key: string;
100
+ label: string;
101
+ }[];
54
102
  export default function generateUtilities(property: string, theme: (property: string) => Record<string, string>): Record<string, Record<string, string>>;
55
103
  export declare const customColors: {
56
104
  white: string;
@@ -202,6 +250,7 @@ export declare const customSize: {
202
250
  'lu-size-2500': string;
203
251
  };
204
252
  export declare const customWidth: {
253
+ 'lu-width-5': string;
205
254
  'lu-width-10': string;
206
255
  'lu-width-25': string;
207
256
  'lu-width-50': string;
@@ -209,6 +258,7 @@ export declare const customWidth: {
209
258
  'lu-width-100': string;
210
259
  };
211
260
  export declare const customHeight: {
261
+ 'lu-height-5': string;
212
262
  'lu-height-10': string;
213
263
  'lu-height-25': string;
214
264
  'lu-height-50': string;
@@ -216,6 +266,9 @@ export declare const customHeight: {
216
266
  'lu-height-100': string;
217
267
  };
218
268
  export declare const customMinWidth: {
269
+ 'lu-min-width-100': string;
270
+ 'lu-min-width-200': string;
271
+ 'lu-min-width-300': string;
219
272
  'lu-min-width-400': string;
220
273
  'lu-min-width-500': string;
221
274
  'lu-min-width-600': string;
@@ -227,6 +280,9 @@ export declare const customMinWidth: {
227
280
  'lu-min-width-3000': string;
228
281
  };
229
282
  export declare const customMinHeight: {
283
+ 'lu-min-height-100': string;
284
+ 'lu-min-height-200': string;
285
+ 'lu-min-height-300': string;
230
286
  'lu-min-height-400': string;
231
287
  'lu-min-height-500': string;
232
288
  'lu-min-height-600': string;
@@ -242,23 +298,89 @@ export declare const customLogoSize: {
242
298
  'lu-secondary-logo': string;
243
299
  'lu-favicon-logo': string;
244
300
  };
245
- export declare const customSpacing: {
246
- 'lu-space-0': string;
247
- 'lu-space-050': string;
248
- 'lu-space-100': string;
249
- 'lu-space-150': string;
250
- 'lu-space-200': string;
251
- 'lu-space-250': string;
252
- 'lu-space-300': string;
253
- 'lu-space-400': string;
254
- 'lu-space-500': string;
255
- 'lu-space-600': string;
256
- 'lu-space-800': string;
257
- 'lu-space-1000': string;
258
- 'lu-space-1500': string;
259
- 'lu-space-2000': string;
260
- 'lu-space-2500': string;
261
- 'lu-space-3000': string;
301
+ export declare const customIconSize: {
302
+ '.lu-icon-xx-small': {
303
+ width: string;
304
+ height: string;
305
+ };
306
+ '.lu-icon-x-small': {
307
+ width: string;
308
+ height: string;
309
+ };
310
+ '.lu-icon-small': {
311
+ width: string;
312
+ height: string;
313
+ };
314
+ '.lu-icon-medium': {
315
+ width: string;
316
+ height: string;
317
+ };
318
+ '.lu-icon-large': {
319
+ width: string;
320
+ height: string;
321
+ };
322
+ '.lu-icon-x-large': {
323
+ width: string;
324
+ height: string;
325
+ };
326
+ '.lu-icon-2x-large': {
327
+ width: string;
328
+ height: string;
329
+ };
330
+ '.lu-icon-3x-large': {
331
+ width: string;
332
+ height: string;
333
+ };
334
+ '.lu-icon-4x-large': {
335
+ width: string;
336
+ height: string;
337
+ };
338
+ '.lu-icon-5x-large': {
339
+ width: string;
340
+ height: string;
341
+ };
342
+ '.lu-icon-6x-large': {
343
+ width: string;
344
+ height: string;
345
+ };
346
+ '.lu-icon-7x-large': {
347
+ width: string;
348
+ height: string;
349
+ };
350
+ '.lu-icon-huge': {
351
+ width: string;
352
+ height: string;
353
+ };
354
+ '.lu-icon-massive': {
355
+ width: string;
356
+ height: string;
357
+ };
358
+ };
359
+ export declare const customButtonIconSize: {
360
+ '.lu-icon-xx-small': {
361
+ width: string;
362
+ height: string;
363
+ };
364
+ '.lu-icon-x-small': {
365
+ width: string;
366
+ height: string;
367
+ };
368
+ '.lu-icon-small': {
369
+ width: string;
370
+ height: string;
371
+ };
372
+ '.lu-icon-medium': {
373
+ width: string;
374
+ height: string;
375
+ };
376
+ '.lu-icon-large': {
377
+ width: string;
378
+ height: string;
379
+ };
380
+ '.lu-icon-x-large': {
381
+ width: string;
382
+ height: string;
383
+ };
262
384
  };
263
385
  export declare const customOpacity: {
264
386
  'lu-opacity-0': string;
@@ -279,38 +401,94 @@ export declare const customOpacity: {
279
401
  'lu-opacity-100': string;
280
402
  };
281
403
  export declare const customBorderWidth: {
282
- 'lu-border-width-0125': string;
283
- 'lu-border-width-025': string;
284
- 'lu-border-width-050': string;
285
- 'lu-border-width-100': string;
404
+ '.lu-border-width-025': {
405
+ borderWidth: string;
406
+ };
407
+ '.lu-border-width-050': {
408
+ borderWidth: string;
409
+ };
410
+ '.lu-border-width-100': {
411
+ borderWidth: string;
412
+ };
413
+ '.lu-border-width-125': {
414
+ borderWidth: string;
415
+ };
286
416
  };
287
417
  export declare const customBorderRadius: {
288
- 'lu-border-rounded-none': string;
289
- 'lu-border-rounded-xs': string;
290
- 'lu-border-rounded-sm': string;
291
- 'lu-border-rounded-md': string;
292
- 'lu-border-rounded-lg': string;
293
- 'lu-border-rounded-xl': string;
294
- 'lu-border-rounded-2xl': string;
295
- 'lu-border-rounded-3xl': string;
296
- 'lu-border-rounded-full': string;
418
+ '.lu-border-rounded-none': {
419
+ borderRadius: string;
420
+ };
421
+ '.lu-border-rounded-xs': {
422
+ borderRadius: string;
423
+ };
424
+ '.lu-border-rounded-sm': {
425
+ borderRadius: string;
426
+ };
427
+ '.lu-border-rounded-md': {
428
+ borderRadius: string;
429
+ };
430
+ '.lu-border-rounded-lg': {
431
+ borderRadius: string;
432
+ };
433
+ '.lu-border-rounded-xl': {
434
+ borderRadius: string;
435
+ };
436
+ '.lu-border-rounded-2xl': {
437
+ borderRadius: string;
438
+ };
439
+ '.lu-border-rounded-3xl': {
440
+ borderRadius: string;
441
+ };
442
+ '.lu-border-rounded-full': {
443
+ borderRadius: string;
444
+ };
297
445
  };
298
446
  export declare const customAspectRatio: {
299
- 'lu-aspect-square': string;
300
- 'lu-aspect-2/1-landsc': string;
301
- 'lu-aspect-1/2-por': string;
302
- 'lu-aspect-3/2-landsc': string;
303
- 'lu-aspect-2/3-por': string;
304
- 'lu-aspect-4/3-landsc': string;
305
- 'lu-aspect-3/4-por': string;
306
- 'lu-aspect-5/4-landsc': string;
307
- 'lu-aspect-4/5-por': string;
308
- 'lu-aspect-7/5-landsc': string;
309
- 'lu-aspect-5/7-por': string;
310
- 'lu-aspect-16/9-landsc': string;
311
- 'lu-aspect-9/16-por': string;
312
- 'lu-aspect-21/9-landscape': string;
313
- 'lu-aspect-9/21-por': string;
447
+ '.lu-aspect-square': {
448
+ aspectRatio: string;
449
+ };
450
+ '.lu-aspect-2-1-landsc': {
451
+ aspectRatio: string;
452
+ };
453
+ '.lu-aspect-1-2-por': {
454
+ aspectRatio: string;
455
+ };
456
+ '.lu-aspect-3-2-landsc': {
457
+ aspectRatio: string;
458
+ };
459
+ '.lu-aspect-2-3-por': {
460
+ aspectRatio: string;
461
+ };
462
+ '.lu-aspect-4-3-landsc': {
463
+ aspectRatio: string;
464
+ };
465
+ '.lu-aspect-3-4-por': {
466
+ aspectRatio: string;
467
+ };
468
+ '.lu-aspect-5-4-landsc': {
469
+ aspectRatio: string;
470
+ };
471
+ '.lu-aspect-4-5-por': {
472
+ aspectRatio: string;
473
+ };
474
+ '.lu-aspect-7-5-landsc': {
475
+ aspectRatio: string;
476
+ };
477
+ '.lu-aspect-5-7-por': {
478
+ aspectRatio: string;
479
+ };
480
+ '.lu-aspect-16-9-landsc': {
481
+ aspectRatio: string;
482
+ };
483
+ '.lu-aspect-9-16-por': {
484
+ aspectRatio: string;
485
+ };
486
+ '.lu-aspect-21-9-landscape': {
487
+ aspectRatio: string;
488
+ };
489
+ '.lu-aspect-9-21-por': {
490
+ aspectRatio: string;
491
+ };
314
492
  };
315
493
  export declare const customBoxShadow: {
316
494
  'lu-shadow-xs': string;
@@ -319,3 +497,862 @@ export declare const customBoxShadow: {
319
497
  'lu-shadow-lg': string;
320
498
  'lu-shadow-xl': string;
321
499
  };
500
+ export declare const customIconColors: {
501
+ '.lu-disabled-icon-light': {
502
+ fill: string;
503
+ };
504
+ '.lu-disabled-icon-dark': {
505
+ fill: string;
506
+ };
507
+ '.lu-primary-icon-default': {
508
+ fill: string;
509
+ };
510
+ '.lu-primary-icon-midtone': {
511
+ fill: string;
512
+ };
513
+ '.lu-primary-icon-light': {
514
+ fill: string;
515
+ };
516
+ '.lu-success-icon-default': {
517
+ fill: string;
518
+ };
519
+ '.lu-success-icon-midtone': {
520
+ fill: string;
521
+ };
522
+ '.lu-success-icon-light': {
523
+ fill: string;
524
+ };
525
+ '.lu-warning-icon-default': {
526
+ fill: string;
527
+ };
528
+ '.lu-warning-icon-midtone': {
529
+ fill: string;
530
+ };
531
+ '.lu-warning-icon-dark': {
532
+ fill: string;
533
+ };
534
+ '.lu-danger-icon-default': {
535
+ fill: string;
536
+ };
537
+ '.lu-danger-icon-midtone': {
538
+ fill: string;
539
+ };
540
+ '.lu-danger-icon-light': {
541
+ fill: string;
542
+ };
543
+ '.lu-info-icon-default': {
544
+ fill: string;
545
+ };
546
+ '.lu-info-icon-midtone': {
547
+ fill: string;
548
+ };
549
+ '.lu-info-icon-light': {
550
+ fill: string;
551
+ };
552
+ '.lu-neutral-icon-light': {
553
+ fill: string;
554
+ };
555
+ '.lu-neutral-icon-dark': {
556
+ fill: string;
557
+ };
558
+ };
559
+ export declare const customButtonColors: {
560
+ '.lu-btn-primary': {
561
+ color: string;
562
+ backgroundColor: string;
563
+ fill: string;
564
+ '&:hover': {
565
+ backgroundColor: string;
566
+ color: string;
567
+ fill: string;
568
+ '.icon': {
569
+ color: string;
570
+ fill: string;
571
+ };
572
+ };
573
+ '&:focus': {
574
+ backgroundColor: string;
575
+ color: string;
576
+ fill: string;
577
+ };
578
+ '&:active': {
579
+ backgroundColor: string;
580
+ color: string;
581
+ fill: string;
582
+ };
583
+ };
584
+ '.lu-btn-primary-light': {
585
+ color: string;
586
+ backgroundColor: string;
587
+ fill: string;
588
+ '&:hover': {
589
+ backgroundColor: string;
590
+ color: string;
591
+ fill: string;
592
+ '.icon': {
593
+ color: string;
594
+ fill: string;
595
+ };
596
+ };
597
+ '&:focus': {
598
+ backgroundColor: string;
599
+ color: string;
600
+ fill: string;
601
+ '.icon': {
602
+ color: string;
603
+ fill: string;
604
+ };
605
+ };
606
+ '&:active': {
607
+ backgroundColor: string;
608
+ color: string;
609
+ fill: string;
610
+ '.icon': {
611
+ color: string;
612
+ fill: string;
613
+ };
614
+ };
615
+ };
616
+ '.lu-btn-success': {
617
+ color: string;
618
+ backgroundColor: string;
619
+ fill: string;
620
+ '&:hover': {
621
+ backgroundColor: string;
622
+ color: string;
623
+ fill: string;
624
+ '.icon': {
625
+ color: string;
626
+ fill: string;
627
+ };
628
+ };
629
+ '&:focus': {
630
+ backgroundColor: string;
631
+ color: string;
632
+ fill: string;
633
+ };
634
+ '&:active': {
635
+ backgroundColor: string;
636
+ color: string;
637
+ fill: string;
638
+ };
639
+ };
640
+ '.lu-btn-success-light': {
641
+ color: string;
642
+ backgroundColor: string;
643
+ fill: string;
644
+ '&:hover': {
645
+ backgroundColor: string;
646
+ color: string;
647
+ fill: string;
648
+ '.icon': {
649
+ color: string;
650
+ fill: string;
651
+ };
652
+ };
653
+ '&:focus': {
654
+ backgroundColor: string;
655
+ color: string;
656
+ fill: string;
657
+ '.icon': {
658
+ color: string;
659
+ fill: string;
660
+ };
661
+ };
662
+ '&:active': {
663
+ backgroundColor: string;
664
+ color: string;
665
+ fill: string;
666
+ '.icon': {
667
+ color: string;
668
+ fill: string;
669
+ };
670
+ };
671
+ };
672
+ '.lu-btn-warning': {
673
+ color: string;
674
+ backgroundColor: string;
675
+ fill: string;
676
+ '&:hover': {
677
+ backgroundColor: string;
678
+ color: string;
679
+ fill: string;
680
+ '.icon': {
681
+ color: string;
682
+ fill: string;
683
+ };
684
+ };
685
+ '&:focus': {
686
+ backgroundColor: string;
687
+ color: string;
688
+ fill: string;
689
+ };
690
+ '&:active': {
691
+ backgroundColor: string;
692
+ color: string;
693
+ fill: string;
694
+ };
695
+ };
696
+ '.lu-btn-warning-light': {
697
+ color: string;
698
+ backgroundColor: string;
699
+ fill: string;
700
+ '&:hover': {
701
+ backgroundColor: string;
702
+ color: string;
703
+ fill: string;
704
+ '.icon': {
705
+ color: string;
706
+ fill: string;
707
+ };
708
+ };
709
+ '&:focus': {
710
+ backgroundColor: string;
711
+ color: string;
712
+ fill: string;
713
+ '.icon': {
714
+ color: string;
715
+ fill: string;
716
+ };
717
+ };
718
+ '&:active': {
719
+ backgroundColor: string;
720
+ color: string;
721
+ fill: string;
722
+ '.icon': {
723
+ color: string;
724
+ fill: string;
725
+ };
726
+ };
727
+ };
728
+ '.lu-btn-danger': {
729
+ color: string;
730
+ backgroundColor: string;
731
+ fill: string;
732
+ '&:hover': {
733
+ backgroundColor: string;
734
+ color: string;
735
+ fill: string;
736
+ '.icon': {
737
+ color: string;
738
+ fill: string;
739
+ };
740
+ };
741
+ '&:focus': {
742
+ backgroundColor: string;
743
+ color: string;
744
+ fill: string;
745
+ };
746
+ '&:active': {
747
+ backgroundColor: string;
748
+ color: string;
749
+ fill: string;
750
+ };
751
+ };
752
+ '.lu-btn-danger-light': {
753
+ color: string;
754
+ backgroundColor: string;
755
+ fill: string;
756
+ '&:hover': {
757
+ backgroundColor: string;
758
+ color: string;
759
+ fill: string;
760
+ '.icon': {
761
+ color: string;
762
+ fill: string;
763
+ };
764
+ };
765
+ '&:focus': {
766
+ backgroundColor: string;
767
+ color: string;
768
+ fill: string;
769
+ '.icon': {
770
+ color: string;
771
+ fill: string;
772
+ };
773
+ };
774
+ '&:active': {
775
+ backgroundColor: string;
776
+ color: string;
777
+ fill: string;
778
+ '.icon': {
779
+ color: string;
780
+ fill: string;
781
+ };
782
+ };
783
+ };
784
+ '.lu-btn-info': {
785
+ color: string;
786
+ backgroundColor: string;
787
+ fill: string;
788
+ '&:hover': {
789
+ backgroundColor: string;
790
+ color: string;
791
+ fill: string;
792
+ '.icon': {
793
+ color: string;
794
+ fill: string;
795
+ };
796
+ };
797
+ '&:focus': {
798
+ backgroundColor: string;
799
+ color: string;
800
+ fill: string;
801
+ };
802
+ '&:active': {
803
+ backgroundColor: string;
804
+ color: string;
805
+ fill: string;
806
+ };
807
+ };
808
+ '.lu-btn-info-light': {
809
+ color: string;
810
+ backgroundColor: string;
811
+ fill: string;
812
+ '&:hover': {
813
+ backgroundColor: string;
814
+ color: string;
815
+ fill: string;
816
+ '.icon': {
817
+ color: string;
818
+ fill: string;
819
+ };
820
+ };
821
+ '&:focus': {
822
+ backgroundColor: string;
823
+ color: string;
824
+ fill: string;
825
+ '.icon': {
826
+ color: string;
827
+ fill: string;
828
+ };
829
+ };
830
+ '&:active': {
831
+ backgroundColor: string;
832
+ color: string;
833
+ fill: string;
834
+ '.icon': {
835
+ color: string;
836
+ fill: string;
837
+ };
838
+ };
839
+ };
840
+ '.lu-btn-gray': {
841
+ color: string;
842
+ backgroundColor: string;
843
+ fill: string;
844
+ '&:hover': {
845
+ backgroundColor: string;
846
+ color: string;
847
+ fill: string;
848
+ '.icon': {
849
+ color: string;
850
+ fill: string;
851
+ };
852
+ };
853
+ '&:focus': {
854
+ backgroundColor: string;
855
+ color: string;
856
+ fill: string;
857
+ };
858
+ '&:active': {
859
+ backgroundColor: string;
860
+ color: string;
861
+ fill: string;
862
+ };
863
+ };
864
+ '.lu-btn-gray-light': {
865
+ color: string;
866
+ backgroundColor: string;
867
+ fill: string;
868
+ '&:hover': {
869
+ backgroundColor: string;
870
+ color: string;
871
+ fill: string;
872
+ '.icon': {
873
+ color: string;
874
+ fill: string;
875
+ };
876
+ };
877
+ '&:focus': {
878
+ backgroundColor: string;
879
+ color: string;
880
+ fill: string;
881
+ '.icon': {
882
+ color: string;
883
+ fill: string;
884
+ };
885
+ };
886
+ '&:active': {
887
+ backgroundColor: string;
888
+ color: string;
889
+ fill: string;
890
+ '.icon': {
891
+ color: string;
892
+ fill: string;
893
+ };
894
+ };
895
+ };
896
+ '.lu-btn-disabled': {
897
+ color: string;
898
+ backgroundColor: string;
899
+ fill: string;
900
+ };
901
+ };
902
+ export declare const customButtonOutlineColors: {
903
+ '.outline-button.lu-btn-primary-light': {
904
+ color: string;
905
+ borderColor: string;
906
+ fill: string;
907
+ backgroundColor: string;
908
+ border: string;
909
+ '&:hover': {
910
+ borderColor: string;
911
+ color: string;
912
+ fill: string;
913
+ '.icon': {
914
+ color: string;
915
+ fill: string;
916
+ };
917
+ };
918
+ '&:focus': {
919
+ borderColor: string;
920
+ color: string;
921
+ fill: string;
922
+ '.icon': {
923
+ color: string;
924
+ fill: string;
925
+ };
926
+ };
927
+ '&:active': {
928
+ borderColor: string;
929
+ color: string;
930
+ fill: string;
931
+ '.icon': {
932
+ color: string;
933
+ fill: string;
934
+ };
935
+ };
936
+ };
937
+ '.outline-button.lu-btn-primary': {
938
+ color: string;
939
+ borderColor: string;
940
+ fill: string;
941
+ backgroundColor: string;
942
+ border: string;
943
+ '&:hover': {
944
+ borderColor: string;
945
+ color: string;
946
+ fill: string;
947
+ '.icon': {
948
+ color: string;
949
+ fill: string;
950
+ };
951
+ };
952
+ '&:focus': {
953
+ borderColor: string;
954
+ color: string;
955
+ fill: string;
956
+ '.icon': {
957
+ color: string;
958
+ fill: string;
959
+ };
960
+ };
961
+ '&:active': {
962
+ borderColor: string;
963
+ color: string;
964
+ fill: string;
965
+ '.icon': {
966
+ color: string;
967
+ fill: string;
968
+ };
969
+ };
970
+ };
971
+ '.outline-button.lu-btn-success': {
972
+ color: string;
973
+ borderColor: string;
974
+ fill: string;
975
+ backgroundColor: string;
976
+ border: string;
977
+ '&:hover': {
978
+ borderColor: string;
979
+ color: string;
980
+ fill: string;
981
+ '.icon': {
982
+ color: string;
983
+ fill: string;
984
+ };
985
+ };
986
+ '&:focus': {
987
+ borderColor: string;
988
+ color: string;
989
+ fill: string;
990
+ '.icon': {
991
+ color: string;
992
+ fill: string;
993
+ };
994
+ };
995
+ '&:active': {
996
+ borderColor: string;
997
+ color: string;
998
+ fill: string;
999
+ '.icon': {
1000
+ color: string;
1001
+ fill: string;
1002
+ };
1003
+ };
1004
+ };
1005
+ '.outline-button.lu-btn-success-light': {
1006
+ color: string;
1007
+ borderColor: string;
1008
+ fill: string;
1009
+ backgroundColor: string;
1010
+ border: string;
1011
+ '&:hover': {
1012
+ borderColor: string;
1013
+ color: string;
1014
+ fill: string;
1015
+ '.icon': {
1016
+ color: string;
1017
+ fill: string;
1018
+ };
1019
+ };
1020
+ '&:focus': {
1021
+ borderColor: string;
1022
+ color: string;
1023
+ fill: string;
1024
+ '.icon': {
1025
+ color: string;
1026
+ fill: string;
1027
+ };
1028
+ };
1029
+ '&:active': {
1030
+ borderColor: string;
1031
+ color: string;
1032
+ fill: string;
1033
+ '.icon': {
1034
+ color: string;
1035
+ fill: string;
1036
+ };
1037
+ };
1038
+ };
1039
+ '.outline-button.lu-btn-warning': {
1040
+ color: string;
1041
+ borderColor: string;
1042
+ fill: string;
1043
+ backgroundColor: string;
1044
+ border: string;
1045
+ '&:hover': {
1046
+ borderColor: string;
1047
+ color: string;
1048
+ fill: string;
1049
+ '.icon': {
1050
+ fill: string;
1051
+ color: string;
1052
+ };
1053
+ };
1054
+ '&:focus': {
1055
+ borderColor: string;
1056
+ color: string;
1057
+ fill: string;
1058
+ '.icon': {
1059
+ color: string;
1060
+ fill: string;
1061
+ };
1062
+ };
1063
+ '&:active': {
1064
+ borderColor: string;
1065
+ color: string;
1066
+ fill: string;
1067
+ '.icon': {
1068
+ color: string;
1069
+ fill: string;
1070
+ };
1071
+ };
1072
+ };
1073
+ '.outline-button.lu-btn-warning-light': {
1074
+ color: string;
1075
+ borderColor: string;
1076
+ fill: string;
1077
+ backgroundColor: string;
1078
+ border: string;
1079
+ '&:hover': {
1080
+ borderColor: string;
1081
+ color: string;
1082
+ fill: string;
1083
+ '.icon': {
1084
+ fill: string;
1085
+ color: string;
1086
+ };
1087
+ };
1088
+ '&:focus': {
1089
+ borderColor: string;
1090
+ color: string;
1091
+ fill: string;
1092
+ '.icon': {
1093
+ color: string;
1094
+ fill: string;
1095
+ };
1096
+ };
1097
+ '&:active': {
1098
+ borderColor: string;
1099
+ color: string;
1100
+ fill: string;
1101
+ '.icon': {
1102
+ color: string;
1103
+ fill: string;
1104
+ };
1105
+ };
1106
+ };
1107
+ '.outline-button.lu-btn-danger': {
1108
+ color: string;
1109
+ borderColor: string;
1110
+ fill: string;
1111
+ backgroundColor: string;
1112
+ border: string;
1113
+ '&:hover': {
1114
+ borderColor: string;
1115
+ color: string;
1116
+ fill: string;
1117
+ '.icon': {
1118
+ color: string;
1119
+ fill: string;
1120
+ };
1121
+ };
1122
+ '&:focus': {
1123
+ borderColor: string;
1124
+ color: string;
1125
+ fill: string;
1126
+ '.icon': {
1127
+ color: string;
1128
+ fill: string;
1129
+ };
1130
+ };
1131
+ '&:active': {
1132
+ borderColor: string;
1133
+ color: string;
1134
+ fill: string;
1135
+ '.icon': {
1136
+ color: string;
1137
+ fill: string;
1138
+ };
1139
+ };
1140
+ };
1141
+ '.outline-button.lu-btn-danger-light': {
1142
+ color: string;
1143
+ borderColor: string;
1144
+ fill: string;
1145
+ backgroundColor: string;
1146
+ border: string;
1147
+ '&:hover': {
1148
+ borderColor: string;
1149
+ color: string;
1150
+ fill: string;
1151
+ '.icon': {
1152
+ color: string;
1153
+ fill: string;
1154
+ };
1155
+ };
1156
+ '&:focus': {
1157
+ borderColor: string;
1158
+ color: string;
1159
+ fill: string;
1160
+ '.icon': {
1161
+ color: string;
1162
+ fill: string;
1163
+ };
1164
+ };
1165
+ '&:active': {
1166
+ borderColor: string;
1167
+ color: string;
1168
+ fill: string;
1169
+ '.icon': {
1170
+ color: string;
1171
+ fill: string;
1172
+ };
1173
+ };
1174
+ };
1175
+ '.outline-button.lu-btn-info': {
1176
+ color: string;
1177
+ borderColor: string;
1178
+ fill: string;
1179
+ backgroundColor: string;
1180
+ border: string;
1181
+ '&:hover': {
1182
+ borderColor: string;
1183
+ color: string;
1184
+ fill: string;
1185
+ '.icon': {
1186
+ color: string;
1187
+ fill: string;
1188
+ };
1189
+ };
1190
+ '&:focus': {
1191
+ borderColor: string;
1192
+ color: string;
1193
+ fill: string;
1194
+ '.icon': {
1195
+ color: string;
1196
+ fill: string;
1197
+ };
1198
+ };
1199
+ '&:active': {
1200
+ borderColor: string;
1201
+ color: string;
1202
+ fill: string;
1203
+ '.icon': {
1204
+ color: string;
1205
+ fill: string;
1206
+ };
1207
+ };
1208
+ };
1209
+ '.outline-button.lu-btn-info-light': {
1210
+ color: string;
1211
+ borderColor: string;
1212
+ fill: string;
1213
+ backgroundColor: string;
1214
+ border: string;
1215
+ '&:hover': {
1216
+ borderColor: string;
1217
+ color: string;
1218
+ fill: string;
1219
+ '.icon': {
1220
+ color: string;
1221
+ fill: string;
1222
+ };
1223
+ };
1224
+ '&:focus': {
1225
+ borderColor: string;
1226
+ color: string;
1227
+ fill: string;
1228
+ '.icon': {
1229
+ color: string;
1230
+ fill: string;
1231
+ };
1232
+ };
1233
+ '&:active': {
1234
+ borderColor: string;
1235
+ color: string;
1236
+ fill: string;
1237
+ '.icon': {
1238
+ color: string;
1239
+ fill: string;
1240
+ };
1241
+ };
1242
+ };
1243
+ '.outline-button.lu-btn-gray': {
1244
+ color: string;
1245
+ borderColor: string;
1246
+ fill: string;
1247
+ backgroundColor: string;
1248
+ border: string;
1249
+ '&:hover': {
1250
+ borderColor: string;
1251
+ color: string;
1252
+ fill: string;
1253
+ '.icon': {
1254
+ color: string;
1255
+ fill: string;
1256
+ };
1257
+ };
1258
+ '&:focus': {
1259
+ borderColor: string;
1260
+ color: string;
1261
+ fill: string;
1262
+ '.icon': {
1263
+ color: string;
1264
+ fill: string;
1265
+ };
1266
+ };
1267
+ '&:active': {
1268
+ borderColor: string;
1269
+ color: string;
1270
+ fill: string;
1271
+ '.icon': {
1272
+ color: string;
1273
+ fill: string;
1274
+ };
1275
+ };
1276
+ };
1277
+ '.outline-button.lu-btn-gray-light': {
1278
+ color: string;
1279
+ borderColor: string;
1280
+ fill: string;
1281
+ backgroundColor: string;
1282
+ border: string;
1283
+ '&:hover': {
1284
+ borderColor: string;
1285
+ color: string;
1286
+ fill: string;
1287
+ '.icon': {
1288
+ color: string;
1289
+ fill: string;
1290
+ };
1291
+ };
1292
+ '&:focus': {
1293
+ borderColor: string;
1294
+ color: string;
1295
+ fill: string;
1296
+ '.icon': {
1297
+ color: string;
1298
+ fill: string;
1299
+ };
1300
+ };
1301
+ '&:active': {
1302
+ borderColor: string;
1303
+ color: string;
1304
+ fill: string;
1305
+ '.icon': {
1306
+ color: string;
1307
+ fill: string;
1308
+ };
1309
+ };
1310
+ };
1311
+ '.outline-button.lu-btn-disabled': {
1312
+ color: string;
1313
+ borderColor: string;
1314
+ fill: string;
1315
+ backgroundColor: string;
1316
+ border: string;
1317
+ };
1318
+ };
1319
+ export declare const customButtonSize: {
1320
+ '.lu-btn-xl': {
1321
+ padding: string;
1322
+ fontSize: string;
1323
+ fontWeight: string;
1324
+ };
1325
+ '.lu-btn-lg': {
1326
+ padding: string;
1327
+ fontSize: string;
1328
+ fontWeight: string;
1329
+ };
1330
+ '.lu-btn-md': {
1331
+ padding: string;
1332
+ fontSize: string;
1333
+ fontWeight: string;
1334
+ };
1335
+ '.lu-btn-sm': {
1336
+ padding: string;
1337
+ fontSize: string;
1338
+ fontWeight: string;
1339
+ };
1340
+ };
1341
+ export declare const customIconButtonSize: {
1342
+ '.icon-only.lu-btn-xl': {
1343
+ padding: string;
1344
+ };
1345
+ '.icon-only.lu-btn-lg': {
1346
+ padding: string;
1347
+ };
1348
+ '.icon-only.lu-btn-md': {
1349
+ padding: string;
1350
+ };
1351
+ '.icon-only.lu-btn-sm': {
1352
+ padding: string;
1353
+ };
1354
+ };
1355
+ export declare const table_data_className = "bg-gray-100 lu-pt-050 lu-pr-100 lu-pb-050 lu-pl-100 rounded gap-2.5";
1356
+ export declare const table_header_className = "lu-pd-200";
1357
+ export declare const table_sub_heading_className = "lu-text-center lu-text-uppercase lu-font-weight-semibold lu-font-size-large lu-pd-200";
1358
+ export declare const table_row_className = "lu-pd-200";