@fy-/fws-vue 0.3.31 → 0.3.32

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.
@@ -238,6 +238,8 @@ defineExpose({ focus, blur, getInputRef });
238
238
  <input
239
239
  type="checkbox"
240
240
  v-model="modelCheckbox"
241
+ :true-value="checkboxTrueValue"
242
+ :false-value="checkboxFalseValue"
241
243
  class="sr-only peer"
242
244
  @focus="handleFocus"
243
245
  @blur="handleBlur"
@@ -269,6 +271,8 @@ defineExpose({ focus, blur, getInputRef });
269
271
  :type="type"
270
272
  @focus="handleFocus"
271
273
  @blur="handleBlur"
274
+ :true-value="checkboxTrueValue"
275
+ :false-value="checkboxFalseValue"
272
276
  v-model="modelCheckbox"
273
277
  class="w-4 h-4 text-fv-primary-600 bg-fv-neutral-100 border-fv-neutral-300 rounded focus:ring-fv-primary-500 dark:focus:ring-fv-primary-600 dark:ring-offset-fv-neutral-800 dark:focus:ring-offset-fv-neutral-800 focus:ring-2 dark:bg-fv-neutral-700 dark:border-fv-neutral-600"
274
278
  />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.3.31",
3
+ "version": "0.3.32",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {