@fy-/fws-vue 0.0.928 → 0.0.930

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.
@@ -15,9 +15,11 @@ const props = withDefaults(
15
15
  onOpen?: Function;
16
16
  onClose?: Function;
17
17
  closeIcon?: Object;
18
+ mSize?: string;
18
19
  }>(),
19
20
  {
20
21
  closeIcon: () => h(XCircleIcon),
22
+ mSize: "w-full",
21
23
  },
22
24
  );
23
25
 
@@ -61,7 +63,7 @@ onUnmounted(() => {
61
63
  style="z-index: 41"
62
64
  >
63
65
  <div
64
- class="relative w-full max-w-2xl max-h-full bg-white rounded-lg shadow dark:bg-fv-neutral-800"
66
+ :class="`relative ${mSize} max-w-6xl max-h-full overflow-y-auto bg-white rounded-lg shadow dark:bg-fv-neutral-800`"
65
67
  style="z-index: 42"
66
68
  >
67
69
  <div
@@ -9,7 +9,7 @@
9
9
  >
10
10
  <span v-for="(tag, index) in tags" :key="index" :class="`tag ${color}`">
11
11
  {{ tag }}
12
- <button @click.stop="removeTag(index)">
12
+ <button @click.stop="removeTag(index)" type="button">
13
13
  <svg
14
14
  xmlns="http://www.w3.org/2000/svg"
15
15
  fill="none"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.0.928",
3
+ "version": "0.0.930",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {