nicklabs-ui 1.0.53 → 1.0.55
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/README.md +1 -1
- package/dist/index.mjs +390 -346
- package/dist/nicklabs-ui.css +1 -1
- package/dist/src/components/NList.vue.d.ts +1 -0
- package/dist/src/layouts/NPaginate.vue.d.ts +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -337,7 +337,7 @@ Checkbox input supporting both single and multi-option modes.
|
|
|
337
337
|
| `inline` | `boolean` | `false` | Display title and options on the same line |
|
|
338
338
|
| `direction` | `"row" \| "column"` | `"row"` | Layout direction for options |
|
|
339
339
|
| `autofocus` | `boolean` | `false` | Auto-focus on mount |
|
|
340
|
-
| `allowDeselect` | `boolean` | `true` | Allow deselecting in single
|
|
340
|
+
| `allowDeselect` | `boolean` | `true` | Allow deselecting the current choice in both single-checkbox and single-select (options without `multiple`) modes; set to `false` to require a selection at all times |
|
|
341
341
|
| `formatLabel` | `(option: any) => string` | `(opt) => opt.label` | Function to extract display text from an option |
|
|
342
342
|
| `formatValue` | `(option: any) => any` | `(opt) => opt.value` | Function to extract the value from an option |
|
|
343
343
|
|