rayyy-vue-table-components 2.0.39 → 2.0.40

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.
@@ -1,5 +1,5 @@
1
1
  import { ElOptions } from '../../types/OptionDto.ts';
2
- export type Selection = string | string[];
2
+ export type Selection = string | string[] | null;
3
3
  type __VLS_Props = {
4
4
  modelValue?: Selection;
5
5
  options?: ElOptions[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rayyy-vue-table-components",
3
- "version": "2.0.39",
3
+ "version": "2.0.40",
4
4
  "description": "Vue 3 + Element Plus 表格組件庫",
5
5
  "type": "module",
6
6
  "main": "./dist/index.umd.js",
@@ -1,7 +1,7 @@
1
1
  <script lang="ts" setup>
2
2
  import type { ElOptions } from '@/types/OptionDto.ts'
3
3
 
4
- export type Selection = string | string[]
4
+ export type Selection = string | string[] | null
5
5
 
6
6
  const props = withDefaults(
7
7
  defineProps<{