@j3m-quantum/ui 0.8.3 → 0.9.0
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/README.md +17 -0
- package/cursor-rules-for-consumers.md +139 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles/index.css +3 -4
- package/package.json +4 -3
package/dist/styles/index.css
CHANGED
|
@@ -652,7 +652,7 @@ textarea,
|
|
|
652
652
|
.glass-context textarea:focus-visible,
|
|
653
653
|
.glass-context [data-slot="textarea"]:focus-visible {
|
|
654
654
|
border-color: var(--j3m-primary-300) !important;
|
|
655
|
-
--
|
|
655
|
+
--color-ring: rgba(243, 108, 33, 0.3);
|
|
656
656
|
}
|
|
657
657
|
|
|
658
658
|
/* --- SELECT TRIGGER --- */
|
|
@@ -670,7 +670,7 @@ textarea,
|
|
|
670
670
|
.glass-context [data-slot="select-trigger"]:focus-visible,
|
|
671
671
|
.glass-context [data-slot="select-trigger"][data-state="open"] {
|
|
672
672
|
border-color: var(--j3m-primary-300) !important;
|
|
673
|
-
--
|
|
673
|
+
--color-ring: rgba(243, 108, 33, 0.3);
|
|
674
674
|
}
|
|
675
675
|
|
|
676
676
|
/* --- NATIVE SELECT --- */
|
|
@@ -685,7 +685,7 @@ textarea,
|
|
|
685
685
|
.glass-context select:focus,
|
|
686
686
|
.glass-context [data-slot="native-select"]:focus {
|
|
687
687
|
border-color: var(--j3m-primary-300) !important;
|
|
688
|
-
--
|
|
688
|
+
--color-ring: rgba(243, 108, 33, 0.3);
|
|
689
689
|
}
|
|
690
690
|
|
|
691
691
|
/* --- BUTTONS --- */
|
|
@@ -1070,7 +1070,6 @@ textarea,
|
|
|
1070
1070
|
border: none !important;
|
|
1071
1071
|
box-shadow: none !important;
|
|
1072
1072
|
outline: none !important;
|
|
1073
|
-
--tw-bg-opacity: 0 !important;
|
|
1074
1073
|
}
|
|
1075
1074
|
|
|
1076
1075
|
.glass-context [data-slot="command-input-wrapper"] {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@j3m-quantum/ui",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "J3M UI Component Library -
|
|
3
|
+
"version": "0.9.0",
|
|
4
|
+
"description": "J3M UI Component Library - React components with J3M design tokens",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"./styles/*": "./dist/styles/*"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
|
-
"dist"
|
|
24
|
+
"dist",
|
|
25
|
+
"cursor-rules-for-consumers.md"
|
|
25
26
|
],
|
|
26
27
|
"scripts": {
|
|
27
28
|
"build": "tsup && npm run copy-styles",
|