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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spark-grid-vue3",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "description": "",
5
5
  "files": [
6
6
  "src"
@@ -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 "../enums"
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
@@ -8,6 +8,4 @@ export const SparkGrid: any = {
8
8
  app.component("SparkGrid", SparkGridComponent)
9
9
  EventEmitter.eventProxy = options.eventProxy
10
10
  }
11
- }
12
-
13
- export * from './enums'
11
+ }
@@ -1,2 +1,3 @@
1
1
  export * from './types'
2
- export * from './install'
2
+ export * from './install'
3
+ export * from './enum'
@@ -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 "../enums"
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/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 "../enums"
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