@fy-/fws-vue 2.0.56 → 2.0.58
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.
|
@@ -40,6 +40,7 @@ const props = withDefaults(
|
|
|
40
40
|
disabled?: boolean;
|
|
41
41
|
maxLengthPerTag?: number;
|
|
42
42
|
disableDatesUnder18?: boolean;
|
|
43
|
+
copyButton?: boolean;
|
|
43
44
|
}>(),
|
|
44
45
|
{
|
|
45
46
|
showLabel: true,
|
|
@@ -51,6 +52,7 @@ const props = withDefaults(
|
|
|
51
52
|
disabled: false,
|
|
52
53
|
maxLengthPerTag: 0,
|
|
53
54
|
disableDatesUnder18: false,
|
|
55
|
+
copyButton: false,
|
|
54
56
|
dpOptions: () => ({}),
|
|
55
57
|
},
|
|
56
58
|
);
|
|
@@ -221,6 +223,7 @@ defineExpose({ focus, blur, getInputRef });
|
|
|
221
223
|
:disabled="disabled"
|
|
222
224
|
:color="color"
|
|
223
225
|
:error="checkErrors"
|
|
226
|
+
:copyButton="copyButton"
|
|
224
227
|
:help="help"
|
|
225
228
|
:max-lenght-per-tag="maxLengthPerTag"
|
|
226
229
|
/>
|