@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
|
|
455
|
+
@apply bg-fv-neutral-50 dark:bg-fv-neutral-900;
|
|
456
456
|
}
|
|
457
457
|
|
|
458
458
|
/* Error border */
|