spark-grid-vue3 0.0.21 → 0.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.
package/package.json
CHANGED
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
<script setup lang="ts">
|
|
43
43
|
import _ from "lodash"
|
|
44
44
|
import {computed, onMounted, onUnmounted, ref, watch} from "vue"
|
|
45
|
-
import {GridSearchType} from "../
|
|
45
|
+
import type {GridSearchType} from "../types"
|
|
46
46
|
import {EventEmitter} from "../utils/EventEmitter";
|
|
47
47
|
|
|
48
48
|
const filterValue = ref<any>(null)
|
package/src/index.ts
CHANGED
package/src/types/index.d.ts
CHANGED
package/src/types/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type {Component} from "@vue/runtime-core"
|
|
2
2
|
import {ComponentPublicInstance} from "@vue/runtime-core";
|
|
3
|
-
import {GridColumnType, GridSearchType} from "../
|
|
3
|
+
import type {GridColumnType, GridSearchType} from "../types"
|
|
4
4
|
|
|
5
5
|
export type OrderBy = {
|
|
6
6
|
name: string,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type {Column, GridComponent, OrderBy, Row} from "../types
|
|
1
|
+
import type {Column, GridComponent, OrderBy, Row} from "../types"
|
|
2
2
|
import {UuidMapper} from "./UuidMapper"
|
|
3
3
|
// @ts-ignore
|
|
4
4
|
import {v4 as uuid} from "uuid"
|
|
5
5
|
import {isEmpty} from "./Conditionals"
|
|
6
6
|
import {CheckboxSelectedMapper} from "./CheckboxSelectedMapper"
|
|
7
|
-
import {GridColumnType} from "../
|
|
7
|
+
import {GridColumnType} from "../types"
|
|
8
8
|
// @ts-ignore
|
|
9
9
|
import getValue from 'get-value'
|
|
10
10
|
import type {ComponentPublicInstance} from "@vue/runtime-core";
|
|
File without changes
|