@fy-/fws-vue 0.3.48 → 0.3.51

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.
@@ -29,6 +29,7 @@ const classes = computed(() => `${baseClasses} ${colorClasses.value}`);
29
29
  @click.prevent="props.handleClick"
30
30
  :class="classes"
31
31
  role="menuitem"
32
+ type="button"
32
33
  >
33
34
  <slot></slot>
34
35
  </button>
@@ -145,6 +145,7 @@ defineExpose({ focus, blur, getInputRef });
145
145
  }"
146
146
  v-model="model"
147
147
  :autocomplete="autocomplete"
148
+ :placeholder="placeholder"
148
149
  :disabled="disabled"
149
150
  :aria-describedby="help ? `${id}-help` : id"
150
151
  class="bg-fv-neutral-50 border border-fv-neutral-300 text-fv-neutral-900 text-sm rounded-lg focus:ring-fv-primary-500 focus:border-fv-primary-500 block w-full p-2.5 dark:bg-fv-neutral-700 dark:border-fv-neutral-600 dark:placeholder-fv-neutral-400 dark:text-white dark:focus:ring-fv-primary-500 dark:focus:border-fv-primary-500"
@@ -71,12 +71,11 @@ onUnmounted(() => {
71
71
  v-if="title"
72
72
  >
73
73
  <slot name="before"></slot>
74
- <DialogTitle
74
+ <h2
75
75
  class="text-xl font-semibold text-fv-neutral-900 dark:text-white"
76
76
  v-if="title"
77
- >
78
- {{ title }}
79
- </DialogTitle>
77
+ v-html="title"
78
+ />
80
79
  <button
81
80
  @click="setModal(false)"
82
81
  class="text-fv-neutral-400 bg-transparent hover:bg-fv-neutral-200 hover:text-fv-neutral-900 rounded-lg text-sm w-8 h-8 ml-auto inline-flex justify-center items-center dark:hover:bg-fv-neutral-600 dark:hover:text-white"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.3.48",
3
+ "version": "0.3.51",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {