@tak-ps/vue-tabler 4.29.2 → 4.29.3

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/CHANGELOG.md CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  ## Version History
12
12
 
13
+ ### v4.29.3
14
+
15
+ - :bug: Fix incorrect border when using pre or post icons in TablerInput
16
+
13
17
  ### v4.29.2
14
18
 
15
19
  - :bug: Upstream styling of label dropdowns
@@ -341,6 +341,32 @@ input:autofill {
341
341
  background-color: var(--tabler-input-bg, var(--tblr-bg-forms, var(--tblr-bg-surface, var(--tblr-body-bg))));
342
342
  }
343
343
 
344
+ /*
345
+ * Tabler's input-group-flat strips the seam borders from the .form-control but
346
+ * not from the .input-group-text spans (icon, clear button, end adornment), so
347
+ * their inner borders survive as dividers - and get repainted blue by
348
+ * `.input-group-flat:focus-within .input-group-text` on focus. Drop every
349
+ * inner-facing span border, keeping only the group's outer outline.
350
+ */
351
+ .input-group :deep(.input-group-text:not(:last-child)) {
352
+ border-right: 0;
353
+ }
354
+
355
+ .input-group :deep(.input-group-text:not(:first-child)) {
356
+ border-left: 0;
357
+ }
358
+
359
+ /*
360
+ * The .form-control also carries the standard 1px input drop shadow
361
+ * (--tblr-shadow-input) which the spans lack, leaving a faint horizontal line
362
+ * that starts only where the input does. A flat group should be flat - remove
363
+ * it inside the group entirely.
364
+ */
365
+ .input-group :deep(.form-control),
366
+ .input-group :deep(.input-group-text) {
367
+ box-shadow: none;
368
+ }
369
+
344
370
  .tabler-input-with-end {
345
371
  padding-right: 3rem;
346
372
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/vue-tabler",
3
3
  "type": "module",
4
- "version": "4.29.2",
4
+ "version": "4.29.3",
5
5
  "lib": "lib.ts",
6
6
  "main": "lib.ts",
7
7
  "module": "lib.ts",