@morghulis/core 1.0.20 → 1.0.22
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,6 +1,6 @@
|
|
|
1
1
|
import type { DTableProps } from "./types";
|
|
2
2
|
import { type Ref } from "vue";
|
|
3
|
-
import { type DataItemId, type Lookup, type Orders, Search } from "@morghulis/lib";
|
|
3
|
+
import { type DataItem, type DataItemId, type Lookup, type Orders, Search } from "@morghulis/lib";
|
|
4
4
|
import type { TableRest } from "../../data/table/types";
|
|
5
5
|
export declare function useDTable(config: Ref<DTableProps>, complete: (keys: DataItemId[]) => void): {
|
|
6
6
|
view: Ref<{
|
|
@@ -179,7 +179,7 @@ export declare function useDTable(config: Ref<DTableProps>, complete: (keys: Dat
|
|
|
179
179
|
ticker: import("vue").ComputedRef<any> | import("vue").ComputedRef<{}>;
|
|
180
180
|
loading: Ref<boolean, boolean> | import("vue").ComputedRef<boolean | undefined>;
|
|
181
181
|
error: Ref<any, any>;
|
|
182
|
-
core: import("vue").ComputedRef<
|
|
182
|
+
core: import("vue").ComputedRef<DataItem>;
|
|
183
183
|
finder: Ref<{
|
|
184
184
|
includes: {
|
|
185
185
|
[prop: string]: import("@morghulis/lib/dist/types/data/query").Lookup;
|
|
@@ -204,7 +204,7 @@ export declare function useDTable(config: Ref<DTableProps>, complete: (keys: Dat
|
|
|
204
204
|
saved?: boolean | undefined;
|
|
205
205
|
name?: string | undefined;
|
|
206
206
|
disabled?: boolean | undefined;
|
|
207
|
-
}[],
|
|
207
|
+
}[], DataItem[] | {
|
|
208
208
|
[x: string]: any;
|
|
209
209
|
id?: DataItemId | undefined;
|
|
210
210
|
sort?: DataItemId | undefined;
|