@vxe-ui/core 1.0.12 → 4.0.0
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/LICENSE +21 -21
- package/README.en.md +31 -31
- package/README.md +31 -31
- package/README.zh-TW.md +31 -31
- package/es/src/core.js +1 -1
- package/es/src/log.js +1 -1
- package/es/src/permission.js +36 -14
- package/lib/index.umd.js +59 -34
- package/lib/index.umd.min.js +1 -1
- package/lib/src/clipboard.min.js +1 -1
- package/lib/src/commands.min.js +1 -1
- package/lib/src/core.js +1 -1
- package/lib/src/core.min.js +1 -1
- package/lib/src/event.min.js +1 -1
- package/lib/src/formats.min.js +1 -1
- package/lib/src/globalStore.min.js +1 -1
- package/lib/src/hooks.min.js +1 -1
- package/lib/src/i18n.min.js +1 -1
- package/lib/src/i18nStore.min.js +1 -1
- package/lib/src/iconStore.min.js +1 -1
- package/lib/src/interceptor.min.js +1 -1
- package/lib/src/log.js +1 -1
- package/lib/src/log.min.js +1 -1
- package/lib/src/menus.min.js +1 -1
- package/lib/src/permission.js +37 -15
- package/lib/src/permission.min.js +1 -1
- package/lib/src/renderer.min.js +1 -1
- package/lib/src/resize.min.js +1 -1
- package/lib/src/store.min.js +1 -1
- package/lib/src/themeStore.min.js +1 -1
- package/lib/src/useFns.min.js +1 -1
- package/lib/src/validators.min.js +1 -1
- package/package.json +78 -78
- package/packages/index.ts +4 -4
- package/packages/src/clipboard.ts +53 -53
- package/packages/src/commands.ts +62 -62
- package/packages/src/core.ts +167 -167
- package/packages/src/event.ts +113 -113
- package/packages/src/formats.ts +62 -62
- package/packages/src/globalStore.ts +8 -8
- package/packages/src/hooks.ts +5 -5
- package/packages/src/i18n.ts +19 -19
- package/packages/src/i18nStore.ts +11 -11
- package/packages/src/iconStore.ts +3 -3
- package/packages/src/interceptor.ts +65 -65
- package/packages/src/log.ts +19 -19
- package/packages/src/menus.ts +62 -62
- package/packages/src/permission.ts +61 -39
- package/packages/src/renderer.ts +50 -50
- package/packages/src/resize.ts +89 -89
- package/packages/src/store.ts +49 -49
- package/packages/src/themeStore.ts +7 -7
- package/packages/src/useFns.ts +34 -34
- package/packages/src/validators.ts +9 -9
- package/types/core/clipboard.d.ts +13 -13
- package/types/core/commands.d.ts +19 -19
- package/types/core/components.d.ts +4 -4
- package/types/core/formats.d.ts +19 -19
- package/types/core/global-config.d.ts +55 -55
- package/types/core/global-event.d.ts +39 -39
- package/types/core/global-icon.d.ts +6 -6
- package/types/core/global-lang.d.ts +1 -1
- package/types/core/global-resize.d.ts +3 -3
- package/types/core/global-theme.d.ts +1 -1
- package/types/core/hooks.d.ts +14 -14
- package/types/core/index.d.ts +224 -224
- package/types/core/interceptor.d.ts +22 -22
- package/types/core/log.d.ts +8 -8
- package/types/core/menus.d.ts +19 -19
- package/types/core/permission.d.ts +10 -10
- package/types/core/renderer.d.ts +14 -14
- package/types/core/useFn.d.ts +27 -27
- package/types/core/validators.d.ts +19 -19
- package/types/index.d.ts +10 -10
- package/types/tool/common.d.ts +99 -99
- package/types/tool/index.d.ts +2 -2
- package/types/tool/util.d.ts +4 -4
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
import { VxeComponentSizeType } from '../tool'
|
|
2
|
-
|
|
3
|
-
import { VxeGlobalThemeName, VxeComponentPermissionCodeType, VxeComponentPermissionResult } from '../../types'
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* 全局参数对象
|
|
7
|
-
*/
|
|
8
|
-
export interface VxeGlobalConfig {
|
|
9
|
-
/**
|
|
10
|
-
* 企业版 - 设置授权 ID
|
|
11
|
-
*/
|
|
12
|
-
authId?: string
|
|
13
|
-
/**
|
|
14
|
-
* 企业版 - 是否在控制台打印授权信息
|
|
15
|
-
*/
|
|
16
|
-
showAuthLog?: boolean
|
|
17
|
-
/**
|
|
18
|
-
* 企业版 - 授权状态监听
|
|
19
|
-
*/
|
|
20
|
-
onAuth?(params: {
|
|
21
|
-
status: boolean
|
|
22
|
-
code: number
|
|
23
|
-
msg: string
|
|
24
|
-
}): void
|
|
25
|
-
|
|
26
|
-
/**
|
|
27
|
-
* 权限码全局判断方法
|
|
28
|
-
*/
|
|
29
|
-
permissionMethod?:(params: {
|
|
30
|
-
code: VxeComponentPermissionCodeType
|
|
31
|
-
}) => VxeComponentPermissionResult
|
|
32
|
-
/**
|
|
33
|
-
* 全局默认 z-index
|
|
34
|
-
*/
|
|
35
|
-
zIndex?: number
|
|
36
|
-
/**
|
|
37
|
-
* 全局组件尺寸
|
|
38
|
-
*/
|
|
39
|
-
size?: VxeComponentSizeType
|
|
40
|
-
version?: string | number
|
|
41
|
-
resizeInterval?: number
|
|
42
|
-
/**
|
|
43
|
-
* 支持对组件中特定的字段进行翻译
|
|
44
|
-
* @param key
|
|
45
|
-
* @param args
|
|
46
|
-
* @returns
|
|
47
|
-
*/
|
|
48
|
-
translate?:(key: string, args?: any) => string
|
|
49
|
-
|
|
50
|
-
/**
|
|
51
|
-
* 已废弃,请使用 setTheme('dark')
|
|
52
|
-
* @deprecated
|
|
53
|
-
*/
|
|
54
|
-
theme?: VxeGlobalThemeName
|
|
55
|
-
}
|
|
1
|
+
import { VxeComponentSizeType } from '../tool'
|
|
2
|
+
|
|
3
|
+
import { VxeGlobalThemeName, VxeComponentPermissionCodeType, VxeComponentPermissionResult } from '../../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* 全局参数对象
|
|
7
|
+
*/
|
|
8
|
+
export interface VxeGlobalConfig {
|
|
9
|
+
/**
|
|
10
|
+
* 企业版 - 设置授权 ID
|
|
11
|
+
*/
|
|
12
|
+
authId?: string
|
|
13
|
+
/**
|
|
14
|
+
* 企业版 - 是否在控制台打印授权信息
|
|
15
|
+
*/
|
|
16
|
+
showAuthLog?: boolean
|
|
17
|
+
/**
|
|
18
|
+
* 企业版 - 授权状态监听
|
|
19
|
+
*/
|
|
20
|
+
onAuth?(params: {
|
|
21
|
+
status: boolean
|
|
22
|
+
code: number
|
|
23
|
+
msg: string
|
|
24
|
+
}): void
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* 权限码全局判断方法
|
|
28
|
+
*/
|
|
29
|
+
permissionMethod?:(params: {
|
|
30
|
+
code: VxeComponentPermissionCodeType
|
|
31
|
+
}) => VxeComponentPermissionResult
|
|
32
|
+
/**
|
|
33
|
+
* 全局默认 z-index
|
|
34
|
+
*/
|
|
35
|
+
zIndex?: number
|
|
36
|
+
/**
|
|
37
|
+
* 全局组件尺寸
|
|
38
|
+
*/
|
|
39
|
+
size?: VxeComponentSizeType
|
|
40
|
+
version?: string | number
|
|
41
|
+
resizeInterval?: number
|
|
42
|
+
/**
|
|
43
|
+
* 支持对组件中特定的字段进行翻译
|
|
44
|
+
* @param key
|
|
45
|
+
* @param args
|
|
46
|
+
* @returns
|
|
47
|
+
*/
|
|
48
|
+
translate?:(key: string, args?: any) => string
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* 已废弃,请使用 setTheme('dark')
|
|
52
|
+
* @deprecated
|
|
53
|
+
*/
|
|
54
|
+
theme?: VxeGlobalThemeName
|
|
55
|
+
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import { VxeComponentBaseOptions, VxeComponentEvent } from '../tool'
|
|
2
|
-
|
|
3
|
-
export type VxeGlobalEventType = 'copy' | 'cut' | 'paste' | 'keydown' | 'contextmenu' | 'mousedown' | 'blur' | 'resize' | 'mousewheel'
|
|
4
|
-
|
|
5
|
-
export type VxeGlobalEventKey = {
|
|
6
|
-
F2: 'F2'
|
|
7
|
-
ESCAPE: 'Escape'
|
|
8
|
-
ENTER: 'Enter'
|
|
9
|
-
TAB: 'Tab'
|
|
10
|
-
DELETE: 'Delete'
|
|
11
|
-
BACKSPACE: 'Backspace'
|
|
12
|
-
SPACEBAR: ' '
|
|
13
|
-
CONTEXT_MENU: 'ContextMenu'
|
|
14
|
-
ARROW_UP: 'ArrowUp'
|
|
15
|
-
ARROW_DOWN: 'ArrowDown'
|
|
16
|
-
ARROW_LEFT: 'ArrowLeft'
|
|
17
|
-
ARROW_RIGHT: 'ArrowRight'
|
|
18
|
-
PAGE_UP: 'PageUp'
|
|
19
|
-
PAGE_DOWN: 'PageDown'
|
|
20
|
-
R: 'R'
|
|
21
|
-
P: 'P'
|
|
22
|
-
Z: 'Z'
|
|
23
|
-
X: 'X'
|
|
24
|
-
C: 'C'
|
|
25
|
-
V: 'V'
|
|
26
|
-
M: 'M'
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
export const GLOBAL_EVENT_KEYS: VxeGlobalEventKey
|
|
30
|
-
|
|
31
|
-
export type VxeGlobalCreateEventMethod = (evnt: Event | null, params1: any, params2?: any) => VxeComponentEvent
|
|
32
|
-
|
|
33
|
-
export const createEvent: VxeGlobalCreateEventMethod
|
|
34
|
-
|
|
35
|
-
export interface VxeGlobalEvents {
|
|
36
|
-
on (comp: VxeComponentBaseOptions, type: VxeGlobalEventType, cb: (evnt: any) => void): void
|
|
37
|
-
off (comp: VxeComponentBaseOptions, type: VxeGlobalEventType): void
|
|
38
|
-
hasKey(evnt: KeyboardEvent, targetKey: string): boolean,
|
|
39
|
-
}
|
|
1
|
+
import { VxeComponentBaseOptions, VxeComponentEvent } from '../tool'
|
|
2
|
+
|
|
3
|
+
export type VxeGlobalEventType = 'copy' | 'cut' | 'paste' | 'keydown' | 'contextmenu' | 'mousedown' | 'blur' | 'resize' | 'mousewheel'
|
|
4
|
+
|
|
5
|
+
export type VxeGlobalEventKey = {
|
|
6
|
+
F2: 'F2'
|
|
7
|
+
ESCAPE: 'Escape'
|
|
8
|
+
ENTER: 'Enter'
|
|
9
|
+
TAB: 'Tab'
|
|
10
|
+
DELETE: 'Delete'
|
|
11
|
+
BACKSPACE: 'Backspace'
|
|
12
|
+
SPACEBAR: ' '
|
|
13
|
+
CONTEXT_MENU: 'ContextMenu'
|
|
14
|
+
ARROW_UP: 'ArrowUp'
|
|
15
|
+
ARROW_DOWN: 'ArrowDown'
|
|
16
|
+
ARROW_LEFT: 'ArrowLeft'
|
|
17
|
+
ARROW_RIGHT: 'ArrowRight'
|
|
18
|
+
PAGE_UP: 'PageUp'
|
|
19
|
+
PAGE_DOWN: 'PageDown'
|
|
20
|
+
R: 'R'
|
|
21
|
+
P: 'P'
|
|
22
|
+
Z: 'Z'
|
|
23
|
+
X: 'X'
|
|
24
|
+
C: 'C'
|
|
25
|
+
V: 'V'
|
|
26
|
+
M: 'M'
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export const GLOBAL_EVENT_KEYS: VxeGlobalEventKey
|
|
30
|
+
|
|
31
|
+
export type VxeGlobalCreateEventMethod = (evnt: Event | null, params1: any, params2?: any) => VxeComponentEvent
|
|
32
|
+
|
|
33
|
+
export const createEvent: VxeGlobalCreateEventMethod
|
|
34
|
+
|
|
35
|
+
export interface VxeGlobalEvents {
|
|
36
|
+
on (comp: VxeComponentBaseOptions, type: VxeGlobalEventType, cb: (evnt: any) => void): void
|
|
37
|
+
off (comp: VxeComponentBaseOptions, type: VxeGlobalEventType): void
|
|
38
|
+
hasKey(evnt: KeyboardEvent, targetKey: string): boolean,
|
|
39
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 全局图标参数
|
|
3
|
-
*/
|
|
4
|
-
export interface VxeGlobalIcon {
|
|
5
|
-
LOGO?: string
|
|
6
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* 全局图标参数
|
|
3
|
+
*/
|
|
4
|
+
export interface VxeGlobalIcon {
|
|
5
|
+
LOGO?: string
|
|
6
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type VxeGlobalI18nLocale= '' | 'zh-CN' | 'zh-TC' | 'zh-HK' | 'zh-MO' | 'zh-TW' | 'en-US' | 'ja-JP' | 'es-ES' | 'pt-BR'
|
|
1
|
+
export type VxeGlobalI18nLocale= '' | 'zh-CN' | 'zh-TC' | 'zh-HK' | 'zh-MO' | 'zh-TW' | 'en-US' | 'ja-JP' | 'es-ES' | 'pt-BR'
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export interface VxeGlobalResize {
|
|
2
|
-
create (callback: (...args: any[]) => void): ResizeObserver
|
|
3
|
-
}
|
|
1
|
+
export interface VxeGlobalResize {
|
|
2
|
+
create (callback: (...args: any[]) => void): ResizeObserver
|
|
3
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type VxeGlobalThemeName = null | '' | 'default' | 'light' | 'dark'
|
|
1
|
+
export type VxeGlobalThemeName = null | '' | 'default' | 'light' | 'dark'
|
package/types/core/hooks.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export namespace VxeGlobalHooksHandles {
|
|
2
|
-
export interface HookOptions {}
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
export interface VxeGlobalHooks {
|
|
6
|
-
mixin(options: {
|
|
7
|
-
[type: string]: VxeGlobalHooksHandles.HookOptions
|
|
8
|
-
}): VxeGlobalHooks
|
|
9
|
-
has(type: string): boolean
|
|
10
|
-
get(type: string): VxeGlobalHooksHandles.HookOptions
|
|
11
|
-
add(type: string, options: VxeGlobalHooksHandles.HookOptions): VxeGlobalHooks
|
|
12
|
-
delete(type: string): void
|
|
13
|
-
forEach(callback: (options: VxeGlobalHooksHandles.HookOptions, type: string) => void): void
|
|
14
|
-
}
|
|
1
|
+
export namespace VxeGlobalHooksHandles {
|
|
2
|
+
export interface HookOptions {}
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
export interface VxeGlobalHooks {
|
|
6
|
+
mixin(options: {
|
|
7
|
+
[type: string]: VxeGlobalHooksHandles.HookOptions
|
|
8
|
+
}): VxeGlobalHooks
|
|
9
|
+
has(type: string): boolean
|
|
10
|
+
get(type: string): VxeGlobalHooksHandles.HookOptions
|
|
11
|
+
add(type: string, options: VxeGlobalHooksHandles.HookOptions): VxeGlobalHooks
|
|
12
|
+
delete(type: string): void
|
|
13
|
+
forEach(callback: (options: VxeGlobalHooksHandles.HookOptions, type: string) => void): void
|
|
14
|
+
}
|