@fastkit/vui 0.7.24 → 0.7.25

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/dist/vui.d.ts CHANGED
@@ -901,7 +901,7 @@ declare const DATA_TABLE_DEFAULTS: {
901
901
  limits: number[];
902
902
  limitDefault: number;
903
903
  contorolThreshold: number;
904
- searchQuery: never[];
904
+ searchQuery: string | string[];
905
905
  };
906
906
 
907
907
  export declare interface DataTableCellSlotPayload<T extends DataTableItem = DataTableItem> {
@@ -3901,7 +3901,7 @@ export declare const VDataTable: DefineComponent<{
3901
3901
  */
3902
3902
  searchQuery: {
3903
3903
  type: PropType<string | string[]>;
3904
- default: () => never[];
3904
+ default: () => string | string[];
3905
3905
  };
3906
3906
  /**
3907
3907
  * リミット件数クエリ名
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastkit/vui",
3
- "version": "0.7.24",
3
+ "version": "0.7.25",
4
4
  "description": "@fastkit/vui",
5
5
  "buildOptions": {
6
6
  "name": "Vui",
@@ -32,11 +32,11 @@
32
32
  "vue": "^3.2.26"
33
33
  },
34
34
  "dependencies": {
35
- "@fastkit/color-scheme": "0.7.24",
36
- "@fastkit/icon-font": "0.7.24",
37
- "@fastkit/tiny-logger": "0.7.24",
38
- "@fastkit/vite-kit": "0.7.24",
39
- "@fastkit/vue-kit": "0.7.24",
35
+ "@fastkit/color-scheme": "0.7.25",
36
+ "@fastkit/icon-font": "0.7.25",
37
+ "@fastkit/tiny-logger": "0.7.25",
38
+ "@fastkit/vite-kit": "0.7.25",
39
+ "@fastkit/vue-kit": "0.7.25",
40
40
  "@tiptap/extension-link": "^2.0.0-beta.35",
41
41
  "@tiptap/extension-underline": "^2.0.0-beta.22",
42
42
  "@tiptap/starter-kit": "^2.0.0-beta.168",
@@ -38,7 +38,7 @@ const DATA_TABLE_DEFAULTS = {
38
38
  limits: [5, 10, 20, 50, 100],
39
39
  limitDefault: 20,
40
40
  contorolThreshold: 10,
41
- searchQuery: [],
41
+ searchQuery: [] as string | string[],
42
42
  };
43
43
 
44
44
  export type DataTableDefaults = typeof DATA_TABLE_DEFAULTS;