@j3m-quantum/ui 0.9.0 → 0.9.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.
@@ -634,6 +634,7 @@ textarea,
634
634
  background: rgba(255, 255, 255, 0.8) !important;
635
635
  border-color: rgba(0, 0, 0, 0.15) !important;
636
636
  color: rgba(0, 0, 0, 0.85) !important;
637
+ transition: border-color 0.2s ease, box-shadow 0.2s ease;
637
638
  }
638
639
 
639
640
  .glass-context input::placeholder,
@@ -653,6 +654,7 @@ textarea,
653
654
  .glass-context [data-slot="textarea"]:focus-visible {
654
655
  border-color: var(--j3m-primary-300) !important;
655
656
  --color-ring: rgba(243, 108, 33, 0.3);
657
+ box-shadow: 0 0 0 3px rgba(243, 108, 33, 0.3) !important;
656
658
  }
657
659
 
658
660
  /* --- SELECT TRIGGER --- */
@@ -660,6 +662,7 @@ textarea,
660
662
  background: rgba(255, 255, 255, 0.8) !important;
661
663
  border-color: rgba(0, 0, 0, 0.15) !important;
662
664
  color: rgba(0, 0, 0, 0.85) !important;
665
+ transition: border-color 0.2s ease, box-shadow 0.2s ease;
663
666
  }
664
667
 
665
668
  .glass-context [data-slot="select-trigger"] [data-slot="select-value"] {
@@ -671,6 +674,7 @@ textarea,
671
674
  .glass-context [data-slot="select-trigger"][data-state="open"] {
672
675
  border-color: var(--j3m-primary-300) !important;
673
676
  --color-ring: rgba(243, 108, 33, 0.3);
677
+ box-shadow: 0 0 0 3px rgba(243, 108, 33, 0.3) !important;
674
678
  }
675
679
 
676
680
  /* --- NATIVE SELECT --- */
@@ -680,12 +684,14 @@ textarea,
680
684
  border-color: rgba(0, 0, 0, 0.15) !important;
681
685
  border-radius: 9999px !important;
682
686
  color: rgba(0, 0, 0, 0.85) !important;
687
+ transition: border-color 0.2s ease, box-shadow 0.2s ease;
683
688
  }
684
689
 
685
690
  .glass-context select:focus,
686
691
  .glass-context [data-slot="native-select"]:focus {
687
692
  border-color: var(--j3m-primary-300) !important;
688
693
  --color-ring: rgba(243, 108, 33, 0.3);
694
+ box-shadow: 0 0 0 3px rgba(243, 108, 33, 0.3) !important;
689
695
  }
690
696
 
691
697
  /* --- BUTTONS --- */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@j3m-quantum/ui",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "J3M UI Component Library - React components with J3M design tokens",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",