@fy-/fws-vue 2.3.73 → 2.3.75

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.
@@ -35,6 +35,7 @@ const props = withDefaults(
35
35
  copyButton?: boolean
36
36
  maxRange?: number
37
37
  minRange?: number
38
+ maxTags?: number
38
39
  }>(),
39
40
  {
40
41
  showLabel: true,
@@ -262,6 +263,7 @@ defineExpose({ focus, blur, getInputRef })
262
263
  :disabled="disabled"
263
264
  :color="color"
264
265
  :error="checkErrors"
266
+ :max-tags="maxTags"
265
267
  :copy-button="copyButton"
266
268
  :help="help"
267
269
  :max-lenght-per-tag="maxLengthPerTag"
@@ -452,7 +452,7 @@ function handleKeyNavigation(e: KeyboardEvent, index: number) {
452
452
 
453
453
  /* Max tags reached state */
454
454
  .tags-input.max-reached {
455
- @apply opacity-80 pointer-events-none bg-fv-neutral-100 dark:bg-fv-neutral-900;
455
+ @apply bg-fv-neutral-50 dark:bg-fv-neutral-900;
456
456
  }
457
457
 
458
458
  /* Error border */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.3.73",
3
+ "version": "2.3.75",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/fy-to/FWJS#readme",