@conduction/nextcloud-vue 2.2.0-vue3.11 → 2.2.0-vue3.12

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.
@@ -3463,6 +3463,37 @@
3463
3463
  z-index: 100001 !important;
3464
3464
  }
3465
3465
 
3466
+ /*
3467
+ * vue-select's search input must not look like a second field.
3468
+ *
3469
+ * `NcSelect` wraps vue-select, whose `.vs__search` is the type-to-filter input
3470
+ * that sits BESIDE the selected value inside one control. Stock vue-select
3471
+ * gives it no border, but Nextcloud's global `input` styling does — so every
3472
+ * single-select rendered an empty bordered box to the right of its own value,
3473
+ * which reads as a second, broken field. Visible on every Provider, Agent and
3474
+ * Execution dropdown in the fleet.
3475
+ *
3476
+ * Unscoped and here rather than in a component, because the control belongs to
3477
+ * @nextcloud/vue: no Conduction component owns the element, and each app
3478
+ * patching it locally is the same rule written sixteen times.
3479
+ *
3480
+ * The input keeps its focus ring — it is a real, typable control, and removing
3481
+ * the visible focus would trade one defect for a WCAG 2.4.7 failure.
3482
+ */
3483
+
3484
+ .v-select .vs__search,
3485
+ .v-select .vs__search:focus {
3486
+ border: none;
3487
+ box-shadow: none;
3488
+ min-height: unset;
3489
+ background-color: transparent;
3490
+ }
3491
+
3492
+ .v-select .vs__search:focus-visible {
3493
+ outline: 2px solid var(--color-primary-element);
3494
+ outline-offset: -2px;
3495
+ }
3496
+
3466
3497
 
3467
3498
  .cn-label-widget[data-v-4dc338aa] {
3468
3499
  width: 100%;
@@ -3463,6 +3463,37 @@
3463
3463
  z-index: 100001 !important;
3464
3464
  }
3465
3465
 
3466
+ /*
3467
+ * vue-select's search input must not look like a second field.
3468
+ *
3469
+ * `NcSelect` wraps vue-select, whose `.vs__search` is the type-to-filter input
3470
+ * that sits BESIDE the selected value inside one control. Stock vue-select
3471
+ * gives it no border, but Nextcloud's global `input` styling does — so every
3472
+ * single-select rendered an empty bordered box to the right of its own value,
3473
+ * which reads as a second, broken field. Visible on every Provider, Agent and
3474
+ * Execution dropdown in the fleet.
3475
+ *
3476
+ * Unscoped and here rather than in a component, because the control belongs to
3477
+ * @nextcloud/vue: no Conduction component owns the element, and each app
3478
+ * patching it locally is the same rule written sixteen times.
3479
+ *
3480
+ * The input keeps its focus ring — it is a real, typable control, and removing
3481
+ * the visible focus would trade one defect for a WCAG 2.4.7 failure.
3482
+ */
3483
+
3484
+ .v-select .vs__search,
3485
+ .v-select .vs__search:focus {
3486
+ border: none;
3487
+ box-shadow: none;
3488
+ min-height: unset;
3489
+ background-color: transparent;
3490
+ }
3491
+
3492
+ .v-select .vs__search:focus-visible {
3493
+ outline: 2px solid var(--color-primary-element);
3494
+ outline-offset: -2px;
3495
+ }
3496
+
3466
3497
 
3467
3498
  .cn-label-widget[data-v-4dc338aa] {
3468
3499
  width: 100%;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/nextcloud-vue",
3
- "version": "2.2.0-vue3.11",
3
+ "version": "2.2.0-vue3.12",
4
4
  "description": "Shared Vue component library for Conduction Nextcloud apps — complements @nextcloud/vue with higher-level components, OpenRegister integration, and NL Design System support",
5
5
  "license": "EUPL-1.2",
6
6
  "author": "Conduction B.V. <info@conduction.nl>",
@@ -217,3 +217,33 @@
217
217
  .vs__dropdown-menu--floating {
218
218
  z-index: 100001 !important;
219
219
  }
220
+
221
+ /*
222
+ * vue-select's search input must not look like a second field.
223
+ *
224
+ * `NcSelect` wraps vue-select, whose `.vs__search` is the type-to-filter input
225
+ * that sits BESIDE the selected value inside one control. Stock vue-select
226
+ * gives it no border, but Nextcloud's global `input` styling does — so every
227
+ * single-select rendered an empty bordered box to the right of its own value,
228
+ * which reads as a second, broken field. Visible on every Provider, Agent and
229
+ * Execution dropdown in the fleet.
230
+ *
231
+ * Unscoped and here rather than in a component, because the control belongs to
232
+ * @nextcloud/vue: no Conduction component owns the element, and each app
233
+ * patching it locally is the same rule written sixteen times.
234
+ *
235
+ * The input keeps its focus ring — it is a real, typable control, and removing
236
+ * the visible focus would trade one defect for a WCAG 2.4.7 failure.
237
+ */
238
+ .v-select .vs__search,
239
+ .v-select .vs__search:focus {
240
+ border: none;
241
+ box-shadow: none;
242
+ min-height: unset;
243
+ background-color: transparent;
244
+ }
245
+
246
+ .v-select .vs__search:focus-visible {
247
+ outline: 2px solid var(--color-primary-element);
248
+ outline-offset: -2px;
249
+ }