srcdev-nuxt-components 9.1.40 → 9.1.41

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.
@@ -156,7 +156,7 @@ onMounted(startEffect);
156
156
  onUnmounted(stop);
157
157
  </script>
158
158
 
159
- <style scoped>
159
+ <style lang="css">
160
160
  @font-face {
161
161
  font-family: "Mono MMM 5";
162
162
  src: url("/fonts/monoMMM_5.ttf") format("truetype");
@@ -170,6 +170,7 @@ onUnmounted(stop);
170
170
  --_color-text: var(--samaritan-color-text, #ffffff);
171
171
  --_color-underline: var(--samaritan-color-underline, #ffffff);
172
172
  --_color-cursor: var(--samaritan-color-cursor, #cc0000);
173
+ --_color-cursor-off: var(--samaritan-color-cursor-off, transparent);
173
174
  --_font-family: var(--samaritan-font-family, "Mono MMM 5", "Nova Mono", "Courier New", monospace);
174
175
  --_letter-spacing: var(--samaritan-letter-spacing, 0.08em);
175
176
 
@@ -224,7 +225,7 @@ onUnmounted(stop);
224
225
  color: var(--_color-cursor);
225
226
  }
226
227
  50% {
227
- color: #330000;
228
+ color: var(--_color-cursor-off);
228
229
  }
229
230
  }
230
231
  </style>
@@ -160,7 +160,7 @@ onMounted(startLoop);
160
160
  onUnmounted(stop);
161
161
  </script>
162
162
 
163
- <style scoped>
163
+ <style lang="css">
164
164
  @font-face {
165
165
  font-family: "Mono MMM 5";
166
166
  src: url("/fonts/monoMMM_5.ttf") format("truetype");
@@ -174,6 +174,7 @@ onUnmounted(stop);
174
174
  --_color-text: var(--samaritan-color-text, #ffffff);
175
175
  --_color-underline: var(--samaritan-color-underline, #ffffff);
176
176
  --_color-cursor: var(--samaritan-color-cursor, #cc0000);
177
+ --_color-cursor-off: var(--samaritan-color-cursor-off, transparent);
177
178
  --_font-family: var(--samaritan-font-family, "Mono MMM 5", "Nova Mono", "Courier New", monospace);
178
179
  --_letter-spacing: var(--samaritan-letter-spacing, 0.08em);
179
180
 
@@ -228,7 +229,7 @@ onUnmounted(stop);
228
229
  color: var(--_color-cursor);
229
230
  }
230
231
  50% {
231
- color: #330000;
232
+ color: var(--_color-cursor-off);
232
233
  }
233
234
  }
234
235
  </style>
@@ -224,8 +224,8 @@ const qaHideCursorInCycle = ref(true);
224
224
 
225
225
  <style lang="css">
226
226
  .samaritan-page {
227
- background: #0a0a0a;
228
-
227
+ --samaritan-color-text: light-dark(black, white);
228
+ --samaritan-color-underline: light-dark(black, white);
229
229
  --samaritan-font-size: clamp(1.4rem, 2.5vw, 2.8rem);
230
230
  --samaritan-letter-spacing: 0.14em;
231
231
 
@@ -235,7 +235,7 @@ const qaHideCursorInCycle = ref(true);
235
235
  justify-content: center;
236
236
  min-block-size: 100dvh;
237
237
 
238
- &--mixed {
238
+ .samaritan-stage--mixed {
239
239
  border-top: 1px solid oklch(100% 0 0 / 0.08);
240
240
  }
241
241
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "srcdev-nuxt-components",
3
3
  "type": "module",
4
- "version": "9.1.40",
4
+ "version": "9.1.41",
5
5
  "main": "nuxt.config.ts",
6
6
  "types": "types.d.ts",
7
7
  "license": "MIT",