@neatui/nuxt 1.5.4 → 1.5.5

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neatui/nuxt",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "NeatUI component library for Nuxt 3",
5
5
  "main": "./src/index.ts",
6
6
  "license": "MIT",
@@ -153,6 +153,7 @@
153
153
  v-bind="{ ...(col.model[1] || {}) }"
154
154
  ></Textarea>
155
155
  <Switch v-else-if="col.model[0] === 'Switch'" v-model="col._data[col.field]" :interacted="interacted" :rules="col.rules" v-bind="{ ...(col.model[1] || {}) }" />
156
+ <Checkbox v-else-if="col.model[0] === 'Checkbox'" v-model="col._data[col.field]" :interacted="interacted" :rules="col.rules" v-bind="{ ...(col.model[1] || {}) }" />
156
157
  <Tree v-else-if="col.model[0] === 'Tree'" v-model="col._data[col.field]" :interacted="interacted" :rules="col.rules" class="mt-sm" v-bind="{ ...(col.model[1] || {}) }" />
157
158
  <Cascader
158
159
  v-else-if="col.model[0] === 'Cascader'"
@@ -187,6 +188,7 @@
187
188
  import {
188
189
  Input,
189
190
  Switch,
191
+ Checkbox,
190
192
  Textarea,
191
193
  Select,
192
194
  SelectList,