react-admin-crud-manager 1.0.24 → 1.0.26

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/tailwind.css CHANGED
@@ -527,12 +527,18 @@ body{
527
527
  .left-0{
528
528
  left: 0px;
529
529
  }
530
+ .left-1\/2{
531
+ left: 50%;
532
+ }
530
533
  .left-3{
531
534
  left: 0.75rem;
532
535
  }
533
536
  .right-0{
534
537
  right: 0px;
535
538
  }
539
+ .right-1{
540
+ right: 0.25rem;
541
+ }
536
542
  .right-1\/2{
537
543
  right: 50%;
538
544
  }
@@ -548,6 +554,9 @@ body{
548
554
  .top-0{
549
555
  top: 0px;
550
556
  }
557
+ .top-1{
558
+ top: 0.25rem;
559
+ }
551
560
  .top-1\/2{
552
561
  top: 50%;
553
562
  }
@@ -572,6 +581,9 @@ body{
572
581
  .col-span-12{
573
582
  grid-column: span 12 / span 12;
574
583
  }
584
+ .mb-0{
585
+ margin-bottom: 0px;
586
+ }
575
587
  .mb-1{
576
588
  margin-bottom: 0.25rem;
577
589
  }
@@ -593,8 +605,8 @@ body{
593
605
  .mt-1{
594
606
  margin-top: 0.25rem;
595
607
  }
596
- .block{
597
- display: block;
608
+ .mt-2{
609
+ margin-top: 0.5rem;
598
610
  }
599
611
  .inline{
600
612
  display: inline;
@@ -626,6 +638,9 @@ body{
626
638
  .h-16{
627
639
  height: 4rem;
628
640
  }
641
+ .h-2{
642
+ height: 0.5rem;
643
+ }
629
644
  .h-20{
630
645
  height: 5rem;
631
646
  }
@@ -677,6 +692,9 @@ body{
677
692
  .w-16{
678
693
  width: 4rem;
679
694
  }
695
+ .w-2{
696
+ width: 0.5rem;
697
+ }
680
698
  .w-20{
681
699
  width: 5rem;
682
700
  }
@@ -713,6 +731,10 @@ body{
713
731
  .w-full{
714
732
  width: 100%;
715
733
  }
734
+ .w-max{
735
+ width: -moz-max-content;
736
+ width: max-content;
737
+ }
716
738
  .min-w-0{
717
739
  min-width: 0px;
718
740
  }
@@ -765,6 +787,9 @@ body{
765
787
  .max-w-md{
766
788
  max-width: 28rem;
767
789
  }
790
+ .max-w-xs{
791
+ max-width: 20rem;
792
+ }
768
793
  .flex-1{
769
794
  flex: 1 1 0%;
770
795
  }
@@ -1741,6 +1766,10 @@ body {
1741
1766
  opacity: 0.5;
1742
1767
  }
1743
1768
 
1769
+ .group:hover .group-hover\:opacity-100{
1770
+ opacity: 1;
1771
+ }
1772
+
1744
1773
  .dark\:divide-gray-700:is(.dark *) > :not([hidden]) ~ :not([hidden]){
1745
1774
  --tw-divide-opacity: 1;
1746
1775
  border-color: rgb(55 65 81 / var(--tw-divide-opacity, 1));
@@ -1791,6 +1820,11 @@ body {
1791
1820
  border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
1792
1821
  }
1793
1822
 
1823
+ .dark\:bg-black:is(.dark *){
1824
+ --tw-bg-opacity: 1;
1825
+ background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
1826
+ }
1827
+
1794
1828
  .dark\:bg-black\/80:is(.dark *){
1795
1829
  background-color: rgb(0 0 0 / 0.8);
1796
1830
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-admin-crud-manager",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
4
4
  "description": "A reusable React CRUD admin template with modular components.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",