@idooel/components 0.0.2-beta.18 → 0.0.2-beta.19

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": "@idooel/components",
3
- "version": "0.0.2-beta.18",
3
+ "version": "0.0.2-beta.19",
4
4
  "description": "",
5
5
  "private": false,
6
6
  "main": "dist/@idooel/components.umd.js",
@@ -206,6 +206,7 @@ export default {
206
206
  currentTableSelection: this.currentTableSelection,
207
207
  currentTreeNode: this.currentTreeNodeData,
208
208
  requestTableData: this.requestTableData,
209
+ keepAliveRefresh: this.keepAliveRefresh,
209
210
  refreshTreeData: this.refreshTreeData,
210
211
  querys: this.tableQuerys,
211
212
  currentRowData: this.getCurrentRowData(),
package/vitest.config.js CHANGED
@@ -1,17 +1,17 @@
1
- import { defineConfig } from 'vitest/config'
2
- import vue from '@vitejs/plugin-vue2'
3
- import path from 'path'
4
-
5
- export default defineConfig({
6
- plugins: [vue()],
7
- resolve: {
8
- alias: {
9
- '@': path.resolve(__dirname, 'packages')
10
- }
11
- },
12
- test: {
13
- environment: 'jsdom',
14
- globals: true,
15
- setupFiles: ['__tests__/setup.js']
16
- }
17
- })
1
+ import { defineConfig } from 'vitest/config'
2
+ import vue from '@vitejs/plugin-vue2'
3
+ import path from 'path'
4
+
5
+ export default defineConfig({
6
+ plugins: [vue()],
7
+ resolve: {
8
+ alias: {
9
+ '@': path.resolve(__dirname, 'packages')
10
+ }
11
+ },
12
+ test: {
13
+ environment: 'jsdom',
14
+ globals: true,
15
+ setupFiles: ['__tests__/setup.js']
16
+ }
17
+ })