@vxe-ui/core 3.0.20 → 3.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.
Files changed (61) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +29 -29
  3. package/es/src/core.js +1 -1
  4. package/es/src/log.js +1 -1
  5. package/es/src/mixins.js +2 -2
  6. package/lib/index.umd.js +856 -88
  7. package/lib/index.umd.min.js +1 -1
  8. package/lib/src/core.js +1 -1
  9. package/lib/src/core.min.js +1 -1
  10. package/lib/src/log.js +1 -1
  11. package/lib/src/log.min.js +1 -1
  12. package/lib/src/mixins.js +2 -2
  13. package/lib/src/mixins.min.js +1 -1
  14. package/package.json +80 -80
  15. package/packages/index.ts +115 -115
  16. package/packages/src/clipboard.ts +53 -53
  17. package/packages/src/commands.ts +62 -62
  18. package/packages/src/config.ts +30 -30
  19. package/packages/src/configStore.ts +8 -8
  20. package/packages/src/core.ts +9 -9
  21. package/packages/src/dataStore.ts +4 -4
  22. package/packages/src/event.ts +127 -127
  23. package/packages/src/formats.ts +62 -62
  24. package/packages/src/i18n.ts +46 -46
  25. package/packages/src/i18nStore.ts +16 -16
  26. package/packages/src/icon.ts +16 -16
  27. package/packages/src/iconStore.ts +3 -3
  28. package/packages/src/interceptor.ts +65 -65
  29. package/packages/src/log.ts +19 -19
  30. package/packages/src/menus.ts +62 -62
  31. package/packages/src/mixins.ts +39 -39
  32. package/packages/src/permission.ts +61 -61
  33. package/packages/src/renderer.ts +50 -50
  34. package/packages/src/resize.ts +89 -89
  35. package/packages/src/store.ts +49 -49
  36. package/packages/src/theme.ts +20 -20
  37. package/packages/src/themeStore.ts +7 -7
  38. package/packages/src/validators.ts +9 -9
  39. package/types/core/clipboard.d.ts +13 -13
  40. package/types/core/commands.d.ts +19 -19
  41. package/types/core/components.d.ts +4 -4
  42. package/types/core/formats.d.ts +19 -19
  43. package/types/core/global-config.d.ts +62 -62
  44. package/types/core/global-data.d.ts +7 -7
  45. package/types/core/global-event.d.ts +39 -39
  46. package/types/core/global-icon.d.ts +6 -6
  47. package/types/core/global-lang.d.ts +22 -22
  48. package/types/core/global-resize.d.ts +3 -3
  49. package/types/core/global-theme.d.ts +1 -1
  50. package/types/core/index.d.ts +246 -246
  51. package/types/core/interceptor.d.ts +22 -22
  52. package/types/core/log.d.ts +8 -8
  53. package/types/core/menus.d.ts +19 -19
  54. package/types/core/mixins.d.ts +16 -16
  55. package/types/core/permission.d.ts +10 -10
  56. package/types/core/renderer.d.ts +14 -14
  57. package/types/core/validators.d.ts +19 -19
  58. package/types/index.d.ts +13 -13
  59. package/types/tool/common.d.ts +105 -105
  60. package/types/tool/index.d.ts +2 -2
  61. package/types/tool/util.d.ts +4 -4
@@ -1,61 +1,61 @@
1
- import { globalConfigStore } from './configStore'
2
- import XEUtils from 'xe-utils'
3
-
4
- import type { VxeGlobalPermission, VxeComponentPermissionCodeType, VxeComponentPermissionInfo, VxeComponentPermissionMethod } from '../../types'
5
-
6
- export function handleCheckInfo (permissionCode?: VxeComponentPermissionCodeType, permissionMethod?: VxeComponentPermissionMethod) {
7
- let checkVisible = true
8
- let checkDisabled = false
9
- const checkMethod = permissionMethod || globalConfigStore.permissionMethod
10
- if (permissionCode && checkMethod) {
11
- checkVisible = false
12
- checkDisabled = true
13
- let vDone = false
14
- let dDone = false
15
- // 或 使用 | 隔开:任意一个为可视,则可视;任意一个禁用,则禁用
16
- const codeList = String(permissionCode).split('|')
17
- for (let i = 0; i < codeList.length; i++) {
18
- const code = codeList[i]
19
- let visible = true
20
- let disabled = false
21
- const rest = checkMethod({ code })
22
- if (XEUtils.isBoolean(rest)) {
23
- visible = rest
24
- } else if (rest) {
25
- visible = !!rest.visible
26
- disabled = !!rest.disabled
27
- }
28
- if (!disabled && !dDone) {
29
- dDone = true
30
- checkDisabled = disabled
31
- }
32
- if (visible && !vDone) {
33
- vDone = true
34
- checkVisible = visible
35
- }
36
- if (vDone && dDone) {
37
- break
38
- }
39
- }
40
- }
41
- const info: VxeComponentPermissionInfo = {
42
- code: permissionCode,
43
- visible: checkVisible,
44
- disabled: checkDisabled
45
- }
46
- return info
47
- }
48
-
49
- export const permission: VxeGlobalPermission = {
50
- getCheckInfo (code) {
51
- return handleCheckInfo(code)
52
- },
53
- checkVisible (code) {
54
- const permissionInfo = handleCheckInfo(code)
55
- return permissionInfo.visible
56
- },
57
- checkDisable (code) {
58
- const permissionInfo = handleCheckInfo(code)
59
- return permissionInfo.disabled
60
- }
61
- }
1
+ import { globalConfigStore } from './configStore'
2
+ import XEUtils from 'xe-utils'
3
+
4
+ import type { VxeGlobalPermission, VxeComponentPermissionCodeType, VxeComponentPermissionInfo, VxeComponentPermissionMethod } from '../../types'
5
+
6
+ export function handleCheckInfo (permissionCode?: VxeComponentPermissionCodeType, permissionMethod?: VxeComponentPermissionMethod) {
7
+ let checkVisible = true
8
+ let checkDisabled = false
9
+ const checkMethod = permissionMethod || globalConfigStore.permissionMethod
10
+ if (permissionCode && checkMethod) {
11
+ checkVisible = false
12
+ checkDisabled = true
13
+ let vDone = false
14
+ let dDone = false
15
+ // 或 使用 | 隔开:任意一个为可视,则可视;任意一个禁用,则禁用
16
+ const codeList = String(permissionCode).split('|')
17
+ for (let i = 0; i < codeList.length; i++) {
18
+ const code = codeList[i]
19
+ let visible = true
20
+ let disabled = false
21
+ const rest = checkMethod({ code })
22
+ if (XEUtils.isBoolean(rest)) {
23
+ visible = rest
24
+ } else if (rest) {
25
+ visible = !!rest.visible
26
+ disabled = !!rest.disabled
27
+ }
28
+ if (!disabled && !dDone) {
29
+ dDone = true
30
+ checkDisabled = disabled
31
+ }
32
+ if (visible && !vDone) {
33
+ vDone = true
34
+ checkVisible = visible
35
+ }
36
+ if (vDone && dDone) {
37
+ break
38
+ }
39
+ }
40
+ }
41
+ const info: VxeComponentPermissionInfo = {
42
+ code: permissionCode,
43
+ visible: checkVisible,
44
+ disabled: checkDisabled
45
+ }
46
+ return info
47
+ }
48
+
49
+ export const permission: VxeGlobalPermission = {
50
+ getCheckInfo (code) {
51
+ return handleCheckInfo(code)
52
+ },
53
+ checkVisible (code) {
54
+ const permissionInfo = handleCheckInfo(code)
55
+ return permissionInfo.visible
56
+ },
57
+ checkDisable (code) {
58
+ const permissionInfo = handleCheckInfo(code)
59
+ return permissionInfo.disabled
60
+ }
61
+ }
@@ -1,50 +1,50 @@
1
- import XEUtils from 'xe-utils'
2
- import { log } from './log'
3
-
4
- import { VxeGlobalRenderer, VxeGlobalRendererOptions } from '../../types'
5
-
6
- /**
7
- * 内置的组件渲染
8
- */
9
- const renderMap: Record<string, VxeGlobalRendererOptions> = {}
10
-
11
- /**
12
- * 全局渲染器
13
- */
14
- export const renderer: VxeGlobalRenderer = {
15
- mixin (opts) {
16
- XEUtils.each(opts, (options, name) => renderer.add(name, options))
17
- return renderer
18
- },
19
- get (name: string) {
20
- return renderMap[name] || null
21
- },
22
- add (name, options) {
23
- if (name && options) {
24
- const renders: any = renderMap[name]
25
- if (renders) {
26
- // 检测是否覆盖
27
- if (process.env.VUE_APP_VXE_ENV === 'development') {
28
- XEUtils.each(options, (val, key) => {
29
- if (!XEUtils.eqNull(renders[key]) && renders[key] !== val) {
30
- log.warn('vxe.error.coverProp', [`Renderer.${name}`, key])
31
- }
32
- })
33
- }
34
-
35
- Object.assign(renders, options)
36
- } else {
37
- renderMap[name] = options
38
- }
39
- }
40
- return renderer
41
- },
42
- forEach (callback) {
43
- XEUtils.objectEach(renderMap, callback)
44
- return renderer
45
- },
46
- delete (name) {
47
- delete renderMap[name]
48
- return renderer
49
- }
50
- }
1
+ import XEUtils from 'xe-utils'
2
+ import { log } from './log'
3
+
4
+ import { VxeGlobalRenderer, VxeGlobalRendererOptions } from '../../types'
5
+
6
+ /**
7
+ * 内置的组件渲染
8
+ */
9
+ const renderMap: Record<string, VxeGlobalRendererOptions> = {}
10
+
11
+ /**
12
+ * 全局渲染器
13
+ */
14
+ export const renderer: VxeGlobalRenderer = {
15
+ mixin (opts) {
16
+ XEUtils.each(opts, (options, name) => renderer.add(name, options))
17
+ return renderer
18
+ },
19
+ get (name: string) {
20
+ return renderMap[name] || null
21
+ },
22
+ add (name, options) {
23
+ if (name && options) {
24
+ const renders: any = renderMap[name]
25
+ if (renders) {
26
+ // 检测是否覆盖
27
+ if (process.env.VUE_APP_VXE_ENV === 'development') {
28
+ XEUtils.each(options, (val, key) => {
29
+ if (!XEUtils.eqNull(renders[key]) && renders[key] !== val) {
30
+ log.warn('vxe.error.coverProp', [`Renderer.${name}`, key])
31
+ }
32
+ })
33
+ }
34
+
35
+ Object.assign(renders, options)
36
+ } else {
37
+ renderMap[name] = options
38
+ }
39
+ }
40
+ return renderer
41
+ },
42
+ forEach (callback) {
43
+ XEUtils.objectEach(renderMap, callback)
44
+ return renderer
45
+ },
46
+ delete (name) {
47
+ delete renderMap[name]
48
+ return renderer
49
+ }
50
+ }
@@ -1,89 +1,89 @@
1
- import XEUtils from 'xe-utils'
2
- import { globalConfigStore } from './configStore'
3
-
4
- import { VxeGlobalResize } from '../../types'
5
-
6
- /**
7
- * 监听 resize 事件
8
- * 如果项目中已使用了 resize-observer-polyfill,那么只需要将方法定义全局,该组件就会自动使用
9
- */
10
- let resizeTimeout: any
11
- /* eslint-disable no-use-before-define */
12
- const eventStore: XEResizeObserver[] = []
13
- const defaultInterval = 500
14
-
15
- function eventHandle () {
16
- if (eventStore.length) {
17
- eventStore.forEach((item) => {
18
- item.tarList.forEach((observer) => {
19
- const { target, width, heighe } = observer
20
- const clientWidth = target.clientWidth
21
- const clientHeight = target.clientHeight
22
- const rWidth = clientWidth && width !== clientWidth
23
- const rHeight = clientHeight && heighe !== clientHeight
24
- if (rWidth || rHeight) {
25
- observer.width = clientWidth
26
- observer.heighe = clientHeight
27
- setTimeout(item.callback)
28
- }
29
- })
30
- })
31
- /* eslint-disable @typescript-eslint/no-use-before-define */
32
- eventListener()
33
- }
34
- }
35
-
36
- function eventListener () {
37
- clearTimeout(resizeTimeout)
38
- resizeTimeout = setTimeout(eventHandle, globalConfigStore.resizeInterval || defaultInterval)
39
- }
40
-
41
- class XEResizeObserver {
42
- tarList: {
43
- target: Element;
44
- width: number;
45
- heighe: number;
46
- }[] = []
47
-
48
- callback: (...args: any[]) => void
49
-
50
- constructor (callback: (...args: any[]) => void) {
51
- this.callback = callback
52
- }
53
-
54
- observe (target: Element): void {
55
- if (target) {
56
- const { tarList } = this
57
- if (!tarList.some(observer => observer.target === target)) {
58
- tarList.push({
59
- target,
60
- width: target.clientWidth,
61
- heighe: target.clientHeight
62
- })
63
- }
64
- if (!eventStore.length) {
65
- eventListener()
66
- }
67
- if (!eventStore.some((item) => item === this)) {
68
- eventStore.push(this)
69
- }
70
- }
71
- }
72
-
73
- unobserve (target: Element): void {
74
- XEUtils.remove(eventStore, item => item.tarList.some(observer => observer.target === target))
75
- }
76
-
77
- disconnect (): void {
78
- XEUtils.remove(eventStore, item => item === this)
79
- }
80
- }
81
-
82
- export const globalResize: VxeGlobalResize = {
83
- create (callback: (...args: any[]) => void) {
84
- if (window.ResizeObserver) {
85
- return new window.ResizeObserver(callback)
86
- }
87
- return new XEResizeObserver(callback)
88
- }
89
- }
1
+ import XEUtils from 'xe-utils'
2
+ import { globalConfigStore } from './configStore'
3
+
4
+ import { VxeGlobalResize } from '../../types'
5
+
6
+ /**
7
+ * 监听 resize 事件
8
+ * 如果项目中已使用了 resize-observer-polyfill,那么只需要将方法定义全局,该组件就会自动使用
9
+ */
10
+ let resizeTimeout: any
11
+ /* eslint-disable no-use-before-define */
12
+ const eventStore: XEResizeObserver[] = []
13
+ const defaultInterval = 500
14
+
15
+ function eventHandle () {
16
+ if (eventStore.length) {
17
+ eventStore.forEach((item) => {
18
+ item.tarList.forEach((observer) => {
19
+ const { target, width, heighe } = observer
20
+ const clientWidth = target.clientWidth
21
+ const clientHeight = target.clientHeight
22
+ const rWidth = clientWidth && width !== clientWidth
23
+ const rHeight = clientHeight && heighe !== clientHeight
24
+ if (rWidth || rHeight) {
25
+ observer.width = clientWidth
26
+ observer.heighe = clientHeight
27
+ setTimeout(item.callback)
28
+ }
29
+ })
30
+ })
31
+ /* eslint-disable @typescript-eslint/no-use-before-define */
32
+ eventListener()
33
+ }
34
+ }
35
+
36
+ function eventListener () {
37
+ clearTimeout(resizeTimeout)
38
+ resizeTimeout = setTimeout(eventHandle, globalConfigStore.resizeInterval || defaultInterval)
39
+ }
40
+
41
+ class XEResizeObserver {
42
+ tarList: {
43
+ target: Element;
44
+ width: number;
45
+ heighe: number;
46
+ }[] = []
47
+
48
+ callback: (...args: any[]) => void
49
+
50
+ constructor (callback: (...args: any[]) => void) {
51
+ this.callback = callback
52
+ }
53
+
54
+ observe (target: Element): void {
55
+ if (target) {
56
+ const { tarList } = this
57
+ if (!tarList.some(observer => observer.target === target)) {
58
+ tarList.push({
59
+ target,
60
+ width: target.clientWidth,
61
+ heighe: target.clientHeight
62
+ })
63
+ }
64
+ if (!eventStore.length) {
65
+ eventListener()
66
+ }
67
+ if (!eventStore.some((item) => item === this)) {
68
+ eventStore.push(this)
69
+ }
70
+ }
71
+ }
72
+
73
+ unobserve (target: Element): void {
74
+ XEUtils.remove(eventStore, item => item.tarList.some(observer => observer.target === target))
75
+ }
76
+
77
+ disconnect (): void {
78
+ XEUtils.remove(eventStore, item => item === this)
79
+ }
80
+ }
81
+
82
+ export const globalResize: VxeGlobalResize = {
83
+ create (callback: (...args: any[]) => void) {
84
+ if (window.ResizeObserver) {
85
+ return new window.ResizeObserver(callback)
86
+ }
87
+ return new XEResizeObserver(callback)
88
+ }
89
+ }
@@ -1,49 +1,49 @@
1
- import { log } from './log'
2
- import XEUtils from 'xe-utils'
3
-
4
- /**
5
- * 创建数据仓库
6
- */
7
- export class Store {
8
- private store: any = {}
9
-
10
- mixin (options: any): Store {
11
- XEUtils.each(options, (item, key) => {
12
- this.add(key, item)
13
- })
14
- return this
15
- }
16
-
17
- has (name: string): boolean {
18
- return !!this.get(name)
19
- }
20
-
21
- get (name: string): any {
22
- return this.store[name]
23
- }
24
-
25
- add (name: string, options: any): Store {
26
- const conf = this.store[name]
27
- // 检测是否覆盖
28
- if (process.env.VUE_APP_VXE_ENV === 'development') {
29
- const confKeys = XEUtils.keys(conf)
30
- XEUtils.each(options, (item, key) => {
31
- if (confKeys.includes(key)) {
32
- log.warn('vxe.error.coverProp', [name, key])
33
- }
34
- })
35
- }
36
- this.store[name] = conf ? XEUtils.merge(conf, options) : options
37
- return this
38
- }
39
-
40
- delete (name: string): void {
41
- delete this.store[name]
42
- }
43
-
44
- forEach (callback: any): void {
45
- XEUtils.objectEach(this.store, callback)
46
- }
47
- }
48
-
49
- export default Store
1
+ import { log } from './log'
2
+ import XEUtils from 'xe-utils'
3
+
4
+ /**
5
+ * 创建数据仓库
6
+ */
7
+ export class Store {
8
+ private store: any = {}
9
+
10
+ mixin (options: any): Store {
11
+ XEUtils.each(options, (item, key) => {
12
+ this.add(key, item)
13
+ })
14
+ return this
15
+ }
16
+
17
+ has (name: string): boolean {
18
+ return !!this.get(name)
19
+ }
20
+
21
+ get (name: string): any {
22
+ return this.store[name]
23
+ }
24
+
25
+ add (name: string, options: any): Store {
26
+ const conf = this.store[name]
27
+ // 检测是否覆盖
28
+ if (process.env.VUE_APP_VXE_ENV === 'development') {
29
+ const confKeys = XEUtils.keys(conf)
30
+ XEUtils.each(options, (item, key) => {
31
+ if (confKeys.includes(key)) {
32
+ log.warn('vxe.error.coverProp', [name, key])
33
+ }
34
+ })
35
+ }
36
+ this.store[name] = conf ? XEUtils.merge(conf, options) : options
37
+ return this
38
+ }
39
+
40
+ delete (name: string): void {
41
+ delete this.store[name]
42
+ }
43
+
44
+ forEach (callback: any): void {
45
+ XEUtils.objectEach(this.store, callback)
46
+ }
47
+ }
48
+
49
+ export default Store
@@ -1,20 +1,20 @@
1
- import { VxeCore } from './core'
2
- import { themeConfigStore } from './themeStore'
3
-
4
- import { VxeGlobalThemeName } from '../../types'
5
-
6
- export function setTheme (name?: VxeGlobalThemeName) {
7
- const theme = !name || name === 'default' ? 'light' : name
8
- themeConfigStore.theme = theme
9
- if (typeof document !== 'undefined') {
10
- const documentElement = document.documentElement
11
- if (documentElement) {
12
- documentElement.setAttribute('data-vxe-ui-theme', theme)
13
- }
14
- }
15
- return VxeCore
16
- }
17
-
18
- export function getTheme () {
19
- return themeConfigStore.theme
20
- }
1
+ import { VxeCore } from './core'
2
+ import { themeConfigStore } from './themeStore'
3
+
4
+ import { VxeGlobalThemeName } from '../../types'
5
+
6
+ export function setTheme (name?: VxeGlobalThemeName) {
7
+ const theme = !name || name === 'default' ? 'light' : name
8
+ themeConfigStore.theme = theme
9
+ if (typeof document !== 'undefined') {
10
+ const documentElement = document.documentElement
11
+ if (documentElement) {
12
+ documentElement.setAttribute('data-vxe-ui-theme', theme)
13
+ }
14
+ }
15
+ return VxeCore
16
+ }
17
+
18
+ export function getTheme () {
19
+ return themeConfigStore.theme
20
+ }
@@ -1,7 +1,7 @@
1
- import { VxeGlobalThemeName } from '../../types'
2
-
3
- export const themeConfigStore: {
4
- theme: VxeGlobalThemeName
5
- } = {
6
- theme: ''
7
- }
1
+ import { VxeGlobalThemeName } from '../../types'
2
+
3
+ export const themeConfigStore: {
4
+ theme: VxeGlobalThemeName
5
+ } = {
6
+ theme: ''
7
+ }
@@ -1,9 +1,9 @@
1
- import VXEStore from './store'
2
-
3
- import { VxeGlobalValidators } from '../../types'
4
-
5
- export const validators = new VXEStore() as VxeGlobalValidators
6
-
7
- if (process.env.VUE_APP_VXE_ENV === 'development') {
8
- Object.assign(validators, { _name: 'Validators' })
9
- }
1
+ import VXEStore from './store'
2
+
3
+ import { VxeGlobalValidators } from '../../types'
4
+
5
+ export const validators = new VXEStore() as VxeGlobalValidators
6
+
7
+ if (process.env.VUE_APP_VXE_ENV === 'development') {
8
+ Object.assign(validators, { _name: 'Validators' })
9
+ }
@@ -1,13 +1,13 @@
1
- export interface VxeGlobalClipboardCopyObj {
2
- text: string
3
- html: string
4
- }
5
-
6
- /**
7
- * 全局剪贴板
8
- */
9
- export interface VxeGlobalClipboard {
10
- getStore(): VxeGlobalClipboardCopyObj
11
- setStore(data: VxeGlobalClipboardCopyObj): void
12
- copy(content: string | number | VxeGlobalClipboardCopyObj): boolean
13
- }
1
+ export interface VxeGlobalClipboardCopyObj {
2
+ text: string
3
+ html: string
4
+ }
5
+
6
+ /**
7
+ * 全局剪贴板
8
+ */
9
+ export interface VxeGlobalClipboard {
10
+ getStore(): VxeGlobalClipboardCopyObj
11
+ setStore(data: VxeGlobalClipboardCopyObj): void
12
+ copy(content: string | number | VxeGlobalClipboardCopyObj): boolean
13
+ }
@@ -1,19 +1,19 @@
1
- /* eslint-disable no-use-before-define */
2
-
3
- export namespace VxeGlobalCommandsHandles {
4
- export interface CommandsOptions {}
5
- }
6
-
7
- /**
8
- * 全局格式化
9
- */
10
- export interface VxeGlobalCommands {
11
- mixin(opts: {
12
- [name: string]: VxeGlobalCommandsHandles.CommandsOptions | ((params: any, ...args: any[]) => void)
13
- }): VxeGlobalCommands
14
- has(name: string): boolean
15
- get(name: string): VxeGlobalCommandsHandles.CommandsOptions
16
- add(name: string, options: VxeGlobalCommandsHandles.CommandsOptions | ((params: any, ...args: any[]) => void)): VxeGlobalCommands
17
- delete(name: string): void
18
- forEach(callback: (options: VxeGlobalCommandsHandles.CommandsOptions, name: string) => void): void
19
- }
1
+ /* eslint-disable no-use-before-define */
2
+
3
+ export namespace VxeGlobalCommandsHandles {
4
+ export interface CommandsOptions {}
5
+ }
6
+
7
+ /**
8
+ * 全局格式化
9
+ */
10
+ export interface VxeGlobalCommands {
11
+ mixin(opts: {
12
+ [name: string]: VxeGlobalCommandsHandles.CommandsOptions | ((params: any, ...args: any[]) => void)
13
+ }): VxeGlobalCommands
14
+ has(name: string): boolean
15
+ get(name: string): VxeGlobalCommandsHandles.CommandsOptions
16
+ add(name: string, options: VxeGlobalCommandsHandles.CommandsOptions | ((params: any, ...args: any[]) => void)): VxeGlobalCommands
17
+ delete(name: string): void
18
+ forEach(callback: (options: VxeGlobalCommandsHandles.CommandsOptions, name: string) => void): void
19
+ }
@@ -1,4 +1,4 @@
1
- export interface VxeGlobalComponents {}
2
-
3
- export type VxeGlobalComponentMethod = (comp: any) => void
4
- export type VxeGlobalGetComponentMethod = <T = any>(name: keyof VxeGlobalComponents) => T
1
+ export interface VxeGlobalComponents {}
2
+
3
+ export type VxeGlobalComponentMethod = (comp: any) => void
4
+ export type VxeGlobalGetComponentMethod = <T = any>(name: keyof VxeGlobalComponents) => T