@vxe-ui/core 1.0.12 → 3.0.0-alpha.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.
Files changed (73) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +29 -31
  3. package/es/src/core.js +4 -4
  4. package/es/src/i18nStore.js +2 -3
  5. package/es/src/log.js +1 -1
  6. package/es/src/mixins.js +35 -0
  7. package/es/src/permission.js +36 -14
  8. package/lib/index.umd.js +187 -132
  9. package/lib/index.umd.min.js +1 -1
  10. package/lib/src/core.js +6 -6
  11. package/lib/src/core.min.js +1 -1
  12. package/lib/src/i18n.min.js +1 -1
  13. package/lib/src/i18nStore.js +2 -3
  14. package/lib/src/i18nStore.min.js +1 -1
  15. package/lib/src/log.js +1 -1
  16. package/lib/src/log.min.js +1 -1
  17. package/lib/src/mixins.js +44 -0
  18. package/lib/src/mixins.min.js +1 -0
  19. package/lib/src/permission.js +37 -15
  20. package/lib/src/permission.min.js +1 -1
  21. package/lib/src/resize.min.js +1 -1
  22. package/package.json +77 -78
  23. package/packages/index.ts +4 -4
  24. package/packages/src/clipboard.ts +53 -53
  25. package/packages/src/commands.ts +62 -62
  26. package/packages/src/core.ts +167 -167
  27. package/packages/src/event.ts +113 -113
  28. package/packages/src/formats.ts +62 -62
  29. package/packages/src/globalStore.ts +8 -8
  30. package/packages/src/hooks.ts +5 -5
  31. package/packages/src/i18n.ts +19 -19
  32. package/packages/src/i18nStore.ts +9 -11
  33. package/packages/src/iconStore.ts +3 -3
  34. package/packages/src/interceptor.ts +65 -65
  35. package/packages/src/log.ts +19 -19
  36. package/packages/src/menus.ts +62 -62
  37. package/packages/src/mixins.ts +38 -0
  38. package/packages/src/permission.ts +61 -39
  39. package/packages/src/renderer.ts +50 -50
  40. package/packages/src/resize.ts +89 -89
  41. package/packages/src/store.ts +49 -49
  42. package/packages/src/themeStore.ts +7 -7
  43. package/packages/src/validators.ts +9 -9
  44. package/types/core/clipboard.d.ts +13 -13
  45. package/types/core/commands.d.ts +19 -19
  46. package/types/core/components.d.ts +4 -4
  47. package/types/core/formats.d.ts +19 -19
  48. package/types/core/global-config.d.ts +55 -55
  49. package/types/core/global-event.d.ts +39 -39
  50. package/types/core/global-icon.d.ts +6 -6
  51. package/types/core/global-lang.d.ts +14 -1
  52. package/types/core/global-resize.d.ts +3 -3
  53. package/types/core/global-theme.d.ts +1 -1
  54. package/types/core/hooks.d.ts +14 -14
  55. package/types/core/index.d.ts +224 -224
  56. package/types/core/interceptor.d.ts +22 -22
  57. package/types/core/log.d.ts +8 -8
  58. package/types/core/menus.d.ts +19 -19
  59. package/types/core/mixins.d.ts +7 -0
  60. package/types/core/permission.d.ts +10 -10
  61. package/types/core/renderer.d.ts +14 -14
  62. package/types/core/validators.d.ts +19 -19
  63. package/types/index.d.ts +10 -10
  64. package/types/tool/common.d.ts +99 -99
  65. package/types/tool/index.d.ts +2 -2
  66. package/types/tool/util.d.ts +4 -4
  67. package/README.en.md +0 -31
  68. package/README.zh-TW.md +0 -31
  69. package/es/src/useFns.js +0 -23
  70. package/lib/src/useFns.js +0 -33
  71. package/lib/src/useFns.min.js +0 -1
  72. package/packages/src/useFns.ts +0 -34
  73. package/types/core/useFn.d.ts +0 -27
@@ -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
@@ -1,19 +1,19 @@
1
- /* eslint-disable no-use-before-define */
2
-
3
- export namespace VxeGlobalFormatsHandles {
4
- export interface FormatsOptions {}
5
- }
6
-
7
- /**
8
- * 全局格式化
9
- */
10
- export interface VxeGlobalFormats {
11
- mixin(opts: {
12
- [name: string]: VxeGlobalFormatsHandles.FormatsOptions | ((params: any, ...args: any[]) => string | number)
13
- }): VxeGlobalFormats
14
- has(name: string): boolean
15
- get(name: string): VxeGlobalFormatsHandles.FormatsOptions
16
- add(name: string, options: VxeGlobalFormatsHandles.FormatsOptions | ((params: any, ...args: any[]) => string | number)): VxeGlobalFormats
17
- delete(name: string): void
18
- forEach(callback: (options: VxeGlobalFormatsHandles.FormatsOptions, name: string) => void): void
19
- }
1
+ /* eslint-disable no-use-before-define */
2
+
3
+ export namespace VxeGlobalFormatsHandles {
4
+ export interface FormatsOptions {}
5
+ }
6
+
7
+ /**
8
+ * 全局格式化
9
+ */
10
+ export interface VxeGlobalFormats {
11
+ mixin(opts: {
12
+ [name: string]: VxeGlobalFormatsHandles.FormatsOptions | ((params: any, ...args: any[]) => string | number)
13
+ }): VxeGlobalFormats
14
+ has(name: string): boolean
15
+ get(name: string): VxeGlobalFormatsHandles.FormatsOptions
16
+ add(name: string, options: VxeGlobalFormatsHandles.FormatsOptions | ((params: any, ...args: any[]) => string | number)): VxeGlobalFormats
17
+ delete(name: string): void
18
+ forEach(callback: (options: VxeGlobalFormatsHandles.FormatsOptions, name: string) => void): void
19
+ }
@@ -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,14 @@
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 = '' |
2
+ 'zh-CN' |
3
+ 'zh-TC' |
4
+ 'zh-HK' |
5
+ 'zh-MO' |
6
+ 'zh-TW' |
7
+ 'en-US' |
8
+ 'ja-JP' |
9
+ 'es-ES' |
10
+ 'pt-BR' |
11
+ 'vi-VN' |
12
+ 'ru-RU' |
13
+ 'ko-KR' |
14
+ 'hu-HU'
@@ -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'
@@ -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
+ }