admesh-ui-sdk 0.10.0 → 0.10.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.
- package/dist/index.js +25 -25
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +133 -133
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -458,28 +458,28 @@ React keys must be passed directly to JSX without using spread:
|
|
|
458
458
|
}
|
|
459
459
|
}
|
|
460
460
|
|
|
461
|
-
/* Essential Utility Classes for Self-Contained SDK */
|
|
462
|
-
.admesh-component .relative { position: relative; }
|
|
463
|
-
.admesh-component .absolute { position: absolute; }
|
|
464
|
-
.admesh-component .flex { display: flex; }
|
|
465
|
-
.admesh-component .inline-flex { display: inline-flex; }
|
|
466
|
-
.admesh-component .grid { display: grid; }
|
|
467
|
-
.admesh-component .hidden { display: none; }
|
|
468
|
-
.admesh-component .block { display: block; }
|
|
469
|
-
.admesh-component .inline-block { display: inline-block; }
|
|
461
|
+
/* Essential Utility Classes for Self-Contained SDK - High Specificity */
|
|
462
|
+
.admesh-component .relative { position: relative !important; }
|
|
463
|
+
.admesh-component .absolute { position: absolute !important; }
|
|
464
|
+
.admesh-component .flex { display: flex !important; }
|
|
465
|
+
.admesh-component .inline-flex { display: inline-flex !important; }
|
|
466
|
+
.admesh-component .grid { display: grid !important; }
|
|
467
|
+
.admesh-component .hidden { display: none !important; }
|
|
468
|
+
.admesh-component .block { display: block !important; }
|
|
469
|
+
.admesh-component .inline-block { display: inline-block !important; }
|
|
470
470
|
|
|
471
471
|
/* Flexbox utilities */
|
|
472
|
-
.admesh-component .flex-col { flex-direction: column; }
|
|
473
|
-
.admesh-component .flex-row { flex-direction: row; }
|
|
474
|
-
.admesh-component .flex-wrap { flex-wrap: wrap; }
|
|
475
|
-
.admesh-component .items-center { align-items: center; }
|
|
476
|
-
.admesh-component .items-start { align-items: flex-start; }
|
|
477
|
-
.admesh-component .items-end { align-items: flex-end; }
|
|
478
|
-
.admesh-component .justify-center { justify-content: center; }
|
|
479
|
-
.admesh-component .justify-between { justify-content: space-between; }
|
|
480
|
-
.admesh-component .justify-end { justify-content: flex-end; }
|
|
481
|
-
.admesh-component .flex-1 { flex: 1 1 0
|
|
482
|
-
.admesh-component .flex-shrink-0 { flex-shrink: 0; }
|
|
472
|
+
.admesh-component .flex-col { flex-direction: column !important; }
|
|
473
|
+
.admesh-component .flex-row { flex-direction: row !important; }
|
|
474
|
+
.admesh-component .flex-wrap { flex-wrap: wrap !important; }
|
|
475
|
+
.admesh-component .items-center { align-items: center !important; }
|
|
476
|
+
.admesh-component .items-start { align-items: flex-start !important; }
|
|
477
|
+
.admesh-component .items-end { align-items: flex-end !important; }
|
|
478
|
+
.admesh-component .justify-center { justify-content: center !important; }
|
|
479
|
+
.admesh-component .justify-between { justify-content: space-between !important; }
|
|
480
|
+
.admesh-component .justify-end { justify-content: flex-end !important; }
|
|
481
|
+
.admesh-component .flex-1 { flex: 1 1 0% !important; }
|
|
482
|
+
.admesh-component .flex-shrink-0 { flex-shrink: 0 !important; }
|
|
483
483
|
|
|
484
484
|
/* Grid utilities */
|
|
485
485
|
.admesh-component .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
|
|
@@ -554,11 +554,11 @@ React keys must be passed directly to JSX without using spread:
|
|
|
554
554
|
.admesh-component .border-green-200 { border-color: #bbf7d0; }
|
|
555
555
|
|
|
556
556
|
/* Border radius utilities */
|
|
557
|
-
.admesh-component .rounded { border-radius: 0.25rem; }
|
|
558
|
-
.admesh-component .rounded-md { border-radius: 0.375rem; }
|
|
559
|
-
.admesh-component .rounded-lg { border-radius: 0.5rem; }
|
|
560
|
-
.admesh-component .rounded-xl { border-radius: 0.75rem; }
|
|
561
|
-
.admesh-component .rounded-full { border-radius: 9999px; }
|
|
557
|
+
.admesh-component .rounded { border-radius: 0.25rem !important; }
|
|
558
|
+
.admesh-component .rounded-md { border-radius: 0.375rem !important; }
|
|
559
|
+
.admesh-component .rounded-lg { border-radius: 0.5rem !important; }
|
|
560
|
+
.admesh-component .rounded-xl { border-radius: 0.75rem !important; }
|
|
561
|
+
.admesh-component .rounded-full { border-radius: 9999px !important; }
|
|
562
562
|
|
|
563
563
|
/* Background utilities */
|
|
564
564
|
.admesh-component .bg-white { background-color: #ffffff; }
|