@the12company/ui 0.1.3 → 0.1.6

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/package.json CHANGED
@@ -1,11 +1,16 @@
1
1
  {
2
2
  "name": "@the12company/ui",
3
- "version": "0.1.3",
3
+ "version": "0.1.6",
4
4
  "description": "UI Kit para projetos Capivara",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
7
- "sideEffects": ["**/*.css"],
8
- "files": ["dist", "src/tokens"],
7
+ "sideEffects": [
8
+ "**/*.css"
9
+ ],
10
+ "files": [
11
+ "dist",
12
+ "src/tokens"
13
+ ],
9
14
  "main": "./dist/index.js",
10
15
  "module": "./dist/index.js",
11
16
  "types": "./dist/index.d.ts",
@@ -71,20 +76,46 @@
71
76
  "recharts": ">=2.0.0",
72
77
  "sonner": ">=1.0.0",
73
78
  "tailwind-merge": ">=2.0.0",
74
- "vaul": ">=0.9.0"
79
+ "vaul": ">=0.9.0",
80
+ "ogl": ">=1.0.0"
75
81
  },
76
82
  "peerDependenciesMeta": {
77
- "@hookform/resolvers": { "optional": true },
78
- "cmdk": { "optional": true },
79
- "embla-carousel-react": { "optional": true },
80
- "input-otp": { "optional": true },
81
- "next-themes": { "optional": true },
82
- "react-day-picker": { "optional": true },
83
- "react-hook-form": { "optional": true },
84
- "react-resizable-panels": { "optional": true },
85
- "recharts": { "optional": true },
86
- "sonner": { "optional": true },
87
- "vaul": { "optional": true }
83
+ "@hookform/resolvers": {
84
+ "optional": true
85
+ },
86
+ "cmdk": {
87
+ "optional": true
88
+ },
89
+ "embla-carousel-react": {
90
+ "optional": true
91
+ },
92
+ "input-otp": {
93
+ "optional": true
94
+ },
95
+ "next-themes": {
96
+ "optional": true
97
+ },
98
+ "ogl": {
99
+ "optional": true
100
+ },
101
+ "react-day-picker": {
102
+ "optional": true
103
+ },
104
+ "react-hook-form": {
105
+ "optional": true
106
+ },
107
+ "react-resizable-panels": {
108
+ "optional": true
109
+ },
110
+ "recharts": {
111
+ "optional": true
112
+ },
113
+ "sonner": {
114
+ "optional": true
115
+ },
116
+ "vaul": {
117
+ "optional": true
118
+ }
88
119
  },
89
120
  "devDependencies": {
90
121
  "@types/react": "^18.3.31",
@@ -8,3 +8,35 @@
8
8
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 24px;
9
9
  border: 1px solid rgba(255, 255, 255, 0.08);
10
10
  }
11
+
12
+ .hover-underline {
13
+ position: relative;
14
+ display: inline-block;
15
+ }
16
+
17
+ .hover-underline::after {
18
+ content: "";
19
+ position: absolute;
20
+ width: 0;
21
+ height: 1px;
22
+ bottom: 0px;
23
+ left: 0;
24
+ background-color: currentColor;
25
+ transition:
26
+ width 0.3s ease-in-out,
27
+ left 0.3s ease-in-out;
28
+ }
29
+
30
+ .hover-underline:hover::after {
31
+ width: 100%;
32
+ }
33
+
34
+ .hover-underline:not(:hover)::after {
35
+ width: 0;
36
+ left: auto;
37
+ right: 0;
38
+ }
39
+
40
+ .transparent-scrollbar {
41
+ scrollbar-color: hsl(var(--muted-foreground) / 0.2) transparent;
42
+ }