jett.admin.npmpackage 1.0.90 → 1.0.92

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 (4) hide show
  1. package/dist/index.css +12 -0
  2. package/dist/index.js +1292 -1182
  3. package/dist/index.mjs +1262 -1152
  4. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -49,6 +49,8 @@
49
49
  --text-xs--line-height: calc(1 / 0.75);
50
50
  --text-sm: 0.875rem;
51
51
  --text-sm--line-height: calc(1.25 / 0.875);
52
+ --text-base: 1rem;
53
+ --text-base--line-height: calc(1.5 / 1);
52
54
  --text-lg: 1.125rem;
53
55
  --text-lg--line-height: calc(1.75 / 1.125);
54
56
  --font-weight-medium: 500;
@@ -412,6 +414,9 @@
412
414
  .max-h-\[100vh\] {
413
415
  max-height: 100vh;
414
416
  }
417
+ .max-h-\[1000px\] {
418
+ max-height: 1000px;
419
+ }
415
420
  .min-h-10 {
416
421
  min-height: calc(var(--spacing) * 10);
417
422
  }
@@ -642,6 +647,9 @@
642
647
  .bg-\[\#ef4444\] {
643
648
  background-color: #ef4444;
644
649
  }
650
+ .bg-\[\#f4f4f5\] {
651
+ background-color: #f4f4f5;
652
+ }
645
653
  .bg-\[\#fafafa\] {
646
654
  background-color: #fafafa;
647
655
  }
@@ -753,6 +761,10 @@
753
761
  .text-right {
754
762
  text-align: right;
755
763
  }
764
+ .text-base {
765
+ font-size: var(--text-base);
766
+ line-height: var(--tw-leading, var(--text-base--line-height));
767
+ }
756
768
  .text-lg {
757
769
  font-size: var(--text-lg);
758
770
  line-height: var(--tw-leading, var(--text-lg--line-height));