react-admin-crud-manager 1.0.24 → 1.0.25

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,6 +527,9 @@ 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
  }
@@ -593,8 +596,8 @@ body{
593
596
  .mt-1{
594
597
  margin-top: 0.25rem;
595
598
  }
596
- .block{
597
- display: block;
599
+ .mt-2{
600
+ margin-top: 0.5rem;
598
601
  }
599
602
  .inline{
600
603
  display: inline;
@@ -713,6 +716,10 @@ body{
713
716
  .w-full{
714
717
  width: 100%;
715
718
  }
719
+ .w-max{
720
+ width: -moz-max-content;
721
+ width: max-content;
722
+ }
716
723
  .min-w-0{
717
724
  min-width: 0px;
718
725
  }
@@ -765,6 +772,9 @@ body{
765
772
  .max-w-md{
766
773
  max-width: 28rem;
767
774
  }
775
+ .max-w-xs{
776
+ max-width: 20rem;
777
+ }
768
778
  .flex-1{
769
779
  flex: 1 1 0%;
770
780
  }
@@ -1741,6 +1751,10 @@ body {
1741
1751
  opacity: 0.5;
1742
1752
  }
1743
1753
 
1754
+ .group:hover .group-hover\:opacity-100{
1755
+ opacity: 1;
1756
+ }
1757
+
1744
1758
  .dark\:divide-gray-700:is(.dark *) > :not([hidden]) ~ :not([hidden]){
1745
1759
  --tw-divide-opacity: 1;
1746
1760
  border-color: rgb(55 65 81 / var(--tw-divide-opacity, 1));
@@ -1791,6 +1805,11 @@ body {
1791
1805
  border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
1792
1806
  }
1793
1807
 
1808
+ .dark\:bg-black:is(.dark *){
1809
+ --tw-bg-opacity: 1;
1810
+ background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
1811
+ }
1812
+
1794
1813
  .dark\:bg-black\/80:is(.dark *){
1795
1814
  background-color: rgb(0 0 0 / 0.8);
1796
1815
  }
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.25",
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",