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

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.
@@ -3468,11 +3468,24 @@
3468
3468
  *
3469
3469
  * `NcSelect` wraps vue-select, whose `.vs__search` is the type-to-filter input
3470
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
3471
+ * gives it a transparent border; the LA SUITE theme sets
3472
+ *
3473
+ * input[type="text"], input[type="search"], {
3474
+ * border: 1px solid var(--lasuite-color-gray-300) !important;
3475
+ * }
3476
+ *
3477
+ * which lands on it and draws an empty bordered box to the right of the
3478
+ * selected value — a second, broken-looking field on every Provider, Agent and
3474
3479
  * Execution dropdown in the fleet.
3475
3480
  *
3481
+ * `!important` is REQUIRED here and not laziness: the theme's rule carries it,
3482
+ * so no amount of specificity can win. The override is narrow — `.vs__search`
3483
+ * is never a standalone input, always the inner field of a composite control —
3484
+ * so this cannot reach a real text box the theme meant to style.
3485
+ *
3486
+ * The root cause is the theme reaching into a composite control it does not
3487
+ * own; fixing it there would be better, and this stays until it does.
3488
+ *
3476
3489
  * Unscoped and here rather than in a component, because the control belongs to
3477
3490
  * @nextcloud/vue: no Conduction component owns the element, and each app
3478
3491
  * patching it locally is the same rule written sixteen times.
@@ -3483,8 +3496,8 @@
3483
3496
 
3484
3497
  .v-select .vs__search,
3485
3498
  .v-select .vs__search:focus {
3486
- border: none;
3487
- box-shadow: none;
3499
+ border: none !important;
3500
+ box-shadow: none !important;
3488
3501
  min-height: unset;
3489
3502
  background-color: transparent;
3490
3503
  }
@@ -3468,11 +3468,24 @@
3468
3468
  *
3469
3469
  * `NcSelect` wraps vue-select, whose `.vs__search` is the type-to-filter input
3470
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
3471
+ * gives it a transparent border; the LA SUITE theme sets
3472
+ *
3473
+ * input[type="text"], input[type="search"], {
3474
+ * border: 1px solid var(--lasuite-color-gray-300) !important;
3475
+ * }
3476
+ *
3477
+ * which lands on it and draws an empty bordered box to the right of the
3478
+ * selected value — a second, broken-looking field on every Provider, Agent and
3474
3479
  * Execution dropdown in the fleet.
3475
3480
  *
3481
+ * `!important` is REQUIRED here and not laziness: the theme's rule carries it,
3482
+ * so no amount of specificity can win. The override is narrow — `.vs__search`
3483
+ * is never a standalone input, always the inner field of a composite control —
3484
+ * so this cannot reach a real text box the theme meant to style.
3485
+ *
3486
+ * The root cause is the theme reaching into a composite control it does not
3487
+ * own; fixing it there would be better, and this stays until it does.
3488
+ *
3476
3489
  * Unscoped and here rather than in a component, because the control belongs to
3477
3490
  * @nextcloud/vue: no Conduction component owns the element, and each app
3478
3491
  * patching it locally is the same rule written sixteen times.
@@ -3483,8 +3496,8 @@
3483
3496
 
3484
3497
  .v-select .vs__search,
3485
3498
  .v-select .vs__search:focus {
3486
- border: none;
3487
- box-shadow: none;
3499
+ border: none !important;
3500
+ box-shadow: none !important;
3488
3501
  min-height: unset;
3489
3502
  background-color: transparent;
3490
3503
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/nextcloud-vue",
3
- "version": "2.2.0-vue3.12",
3
+ "version": "2.2.0-vue3.13",
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>",
@@ -223,11 +223,24 @@
223
223
  *
224
224
  * `NcSelect` wraps vue-select, whose `.vs__search` is the type-to-filter input
225
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
226
+ * gives it a transparent border; the LA SUITE theme sets
227
+ *
228
+ * input[type="text"], input[type="search"], {
229
+ * border: 1px solid var(--lasuite-color-gray-300) !important;
230
+ * }
231
+ *
232
+ * which lands on it and draws an empty bordered box to the right of the
233
+ * selected value — a second, broken-looking field on every Provider, Agent and
229
234
  * Execution dropdown in the fleet.
230
235
  *
236
+ * `!important` is REQUIRED here and not laziness: the theme's rule carries it,
237
+ * so no amount of specificity can win. The override is narrow — `.vs__search`
238
+ * is never a standalone input, always the inner field of a composite control —
239
+ * so this cannot reach a real text box the theme meant to style.
240
+ *
241
+ * The root cause is the theme reaching into a composite control it does not
242
+ * own; fixing it there would be better, and this stays until it does.
243
+ *
231
244
  * Unscoped and here rather than in a component, because the control belongs to
232
245
  * @nextcloud/vue: no Conduction component owns the element, and each app
233
246
  * patching it locally is the same rule written sixteen times.
@@ -237,8 +250,8 @@
237
250
  */
238
251
  .v-select .vs__search,
239
252
  .v-select .vs__search:focus {
240
- border: none;
241
- box-shadow: none;
253
+ border: none !important;
254
+ box-shadow: none !important;
242
255
  min-height: unset;
243
256
  background-color: transparent;
244
257
  }