srcdev-nuxt-components 9.1.45 → 9.1.46

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.
@@ -172,72 +172,80 @@ onUnmounted(stop);
172
172
  src: url("/fonts/monoMMM_5.ttf") format("truetype");
173
173
  font-weight: normal;
174
174
  font-style: normal;
175
- font-display: swap;
175
+ font-display: optional;
176
176
  }
177
177
 
178
- .samaritan-prompt {
179
- --_font-size: var(--samaritan-font-size, 2rem);
180
- --_color-text: var(--samaritan-color-text, #ffffff);
181
- --_color-underline: var(--samaritan-color-underline, #ffffff);
182
- --_color-cursor: var(--samaritan-color-cursor, #cc0000);
183
- --_color-cursor-off: var(--samaritan-color-cursor-off, transparent);
184
- --_font-family: var(--samaritan-font-family, "Mono MMM 5", "Nova Mono", "Courier New", monospace);
185
- --_letter-spacing: var(--samaritan-letter-spacing, 0.08em);
186
-
178
+ .samaritan-stage {
187
179
  display: flex;
188
- flex-direction: column;
189
180
  align-items: center;
190
- row-gap: 0.6rem;
191
- font-family: var(--_font-family);
192
- font-size: var(--_font-size);
193
- letter-spacing: var(--_letter-spacing);
181
+ justify-content: center;
182
+ min-block-size: 100dvh;
183
+ width: 100%;
184
+
185
+ .samaritan-prompt {
186
+ --_font-size: var(--samaritan-font-size, 2rem);
187
+ --_color-text: var(--samaritan-color-text, #ffffff);
188
+ --_color-underline: var(--samaritan-color-underline, #ffffff);
189
+ --_color-cursor: var(--samaritan-color-cursor, #cc0000);
190
+ --_color-cursor-off: var(--samaritan-color-cursor-off, transparent);
191
+ --_font-family: var(--samaritan-font-family, "Mono MMM 5", "Nova Mono", "Courier New", monospace);
192
+ --_letter-spacing: var(--samaritan-letter-spacing, 0.08em);
194
193
 
195
- .samaritan-prompt__content {
196
194
  display: flex;
197
195
  flex-direction: column;
198
196
  align-items: center;
199
197
  row-gap: 0.6rem;
200
- width: 100%;
201
- transition: opacity v-bind(fadeDurationCss) ease;
198
+ font-family: var(--_font-family);
199
+ font-size: var(--_font-size);
200
+ letter-spacing: var(--_letter-spacing);
202
201
 
203
- .samaritan-prompt__stage {
202
+ .samaritan-prompt__content {
204
203
  display: flex;
205
- justify-content: center;
206
- min-height: 1.2em;
204
+ flex-direction: column;
205
+ align-items: center;
206
+ row-gap: 0.6rem;
207
+ width: 100%;
208
+ transition: opacity v-bind(fadeDurationCss) ease;
209
+
210
+ .samaritan-prompt__stage {
211
+ display: flex;
212
+ justify-content: center;
213
+ min-height: 1.2em;
207
214
 
208
- .samaritan-prompt__text {
209
- color: var(--_color-text);
210
- white-space: nowrap;
211
- text-transform: uppercase;
215
+ .samaritan-prompt__text {
216
+ color: var(--_color-text);
217
+ white-space: nowrap;
218
+ text-transform: uppercase;
219
+ }
212
220
  }
213
- }
214
221
 
215
- .samaritan-prompt__underline {
216
- width: 100%;
217
- min-width: 4ch;
218
- height: 0.15rem;
219
- background: var(--_color-underline);
222
+ .samaritan-prompt__underline {
223
+ width: 100%;
224
+ min-width: 4ch;
225
+ height: 0.15rem;
226
+ background: var(--_color-underline);
227
+ }
220
228
  }
221
- }
222
229
 
223
- .samaritan-prompt__cursor {
224
- color: var(--_color-cursor);
225
- font-size: 2.4rem;
226
- line-height: 1;
227
- animation: samaritan-pulse 2.5s ease-in-out infinite;
228
- transition: opacity 400ms ease;
229
- }
230
+ .samaritan-prompt__cursor {
231
+ color: var(--_color-cursor);
232
+ font-size: 2.4rem;
233
+ line-height: 1;
234
+ animation: samaritan-pulse 2.5s ease-in-out infinite;
235
+ transition: opacity 400ms ease;
236
+ }
230
237
 
231
- .samaritan-prompt__sr-text {
232
- position: absolute;
233
- width: 1px;
234
- height: 1px;
235
- padding: 0;
236
- margin: -1px;
237
- overflow: hidden;
238
- clip: rect(0, 0, 0, 0);
239
- white-space: nowrap;
240
- border: 0;
238
+ .samaritan-prompt__sr-text {
239
+ position: absolute;
240
+ width: 1px;
241
+ height: 1px;
242
+ padding: 0;
243
+ margin: -1px;
244
+ overflow: hidden;
245
+ clip: rect(0, 0, 0, 0);
246
+ white-space: nowrap;
247
+ border: 0;
248
+ }
241
249
  }
242
250
  }
243
251
 
@@ -230,11 +230,6 @@ const qaHideCursorInCycle = ref(true);
230
230
  --samaritan-letter-spacing: 0.14em;
231
231
 
232
232
  .samaritan-stage {
233
- display: flex;
234
- align-items: center;
235
- justify-content: center;
236
- min-block-size: 100dvh;
237
-
238
233
  .samaritan-stage--mixed {
239
234
  border-top: 1px solid oklch(100% 0 0 / 0.08);
240
235
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "srcdev-nuxt-components",
3
3
  "type": "module",
4
- "version": "9.1.45",
4
+ "version": "9.1.46",
5
5
  "main": "nuxt.config.ts",
6
6
  "types": "types.d.ts",
7
7
  "license": "MIT",