@nexxtmove/ui 0.1.5 → 0.1.7

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@nexxtmove/ui",
3
3
  "type": "module",
4
- "version": "0.1.5",
4
+ "version": "0.1.7",
5
5
  "exports": {
6
6
  ".": {
7
7
  "types": "./dist/index.d.ts",
@@ -113,4 +113,8 @@
113
113
  @apply border-b-header-border-bottom h-(--header-height) px-(--header-padding-x) gap-(--header-gap) border-b border-solid;
114
114
  }
115
115
 
116
+ .info-block {
117
+ @apply border-info-block-border p-(--info-block-padding) border border-solid;
118
+ }
119
+
116
120
  }
@@ -152,6 +152,7 @@
152
152
  --color-progress-bar-bg-bar: var(--color-gray-50);
153
153
  --color-progress-bar-border: var(--color-gray-200);
154
154
  --color-header-border-bottom: var(--color-gray-200);
155
+ --color-info-block-border: var(--color-green-500);
155
156
  --text-xs: 0.75rem;
156
157
  --text-base: 1rem;
157
158
  --text-lg: 1.125rem;
@@ -218,6 +219,7 @@
218
219
  --header-height: var(--spacing-24);
219
220
  --header-padding-x: var(--spacing-10);
220
221
  --header-gap: var(--spacing-6);
222
+ --info-block-padding: var(--spacing-1);
221
223
  --font-sans: 'Poppins', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
222
224
  --font-serif: 'Playfair Display', ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
223
225
  --font-mono: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
@@ -22,6 +22,10 @@
22
22
  @apply font-sans text-base;
23
23
  }
24
24
 
25
+ @utility body-semibold {
26
+ @apply font-sans font-semibold text-base;
27
+ }
28
+
25
29
  @utility body-link {
26
30
  @apply font-sans text-base underline;
27
31
  }
@@ -34,6 +38,10 @@
34
38
  @apply font-sans text-sm;
35
39
  }
36
40
 
41
+ @utility small-semibold {
42
+ @apply font-sans text-sm;
43
+ }
44
+
37
45
  @utility small-link {
38
46
  @apply font-sans text-sm underline;
39
47
  }
@@ -46,6 +54,10 @@
46
54
  @apply font-sans text-xs;
47
55
  }
48
56
 
57
+ @utility extra-small-semibold {
58
+ @apply font-sans font-semibold text-xs;
59
+ }
60
+
49
61
  @utility extra-small-link {
50
62
  @apply font-sans text-xs underline;
51
63
  }
@@ -74,6 +86,10 @@
74
86
  @apply font-serif text-base;
75
87
  }
76
88
 
89
+ @utility body-semibold-serif {
90
+ @apply font-serif font-semibold text-base;
91
+ }
92
+
77
93
  @utility body-link-serif {
78
94
  @apply font-serif text-base underline;
79
95
  }
@@ -86,6 +102,10 @@
86
102
  @apply font-serif text-sm;
87
103
  }
88
104
 
105
+ @utility small-semibold-serif {
106
+ @apply font-serif font-semibold text-sm;
107
+ }
108
+
89
109
  @utility small-link-serif {
90
110
  @apply font-serif text-sm underline;
91
111
  }
@@ -98,6 +118,10 @@
98
118
  @apply font-serif text-xs;
99
119
  }
100
120
 
121
+ @utility extra-small-semibold-serif {
122
+ @apply font-serif font-semibold text-xs;
123
+ }
124
+
101
125
  @utility extra-small-link-serif {
102
126
  @apply font-serif text-xs underline;
103
127
  }
@@ -126,6 +150,10 @@
126
150
  @apply font-mono text-base;
127
151
  }
128
152
 
153
+ @utility body-semibold-mono {
154
+ @apply font-mono font-bold text-base;
155
+ }
156
+
129
157
  @utility body-link-mono {
130
158
  @apply font-mono text-base underline;
131
159
  }
@@ -138,6 +166,10 @@
138
166
  @apply font-mono text-sm;
139
167
  }
140
168
 
169
+ @utility small-semibold-mono {
170
+ @apply font-mono font-bold text-sm;
171
+ }
172
+
141
173
  @utility small-link-mono {
142
174
  @apply font-mono text-sm underline;
143
175
  }
@@ -150,6 +182,10 @@
150
182
  @apply font-mono text-xs;
151
183
  }
152
184
 
185
+ @utility extra-small-semibold-mono {
186
+ @apply font-mono font-bold text-xs;
187
+ }
188
+
153
189
  @utility extra-small-link-mono {
154
190
  @apply font-mono text-xs underline;
155
191
  }