vue3-element-dict 3.1.8 → 3.2.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vue3-element-dict",
3
3
  "private": false,
4
- "version": "3.1.8",
4
+ "version": "3.2.0",
5
5
  "author": {
6
6
  "name": "shenxiaobu",
7
7
  "url": "https://shenxiaobu.github.io"
package/types/index.d.ts CHANGED
@@ -50,6 +50,7 @@ export type DynamicComponentsConfig = {
50
50
 
51
51
  /** 字典配置 (完整) */
52
52
  export type DictConfig = {
53
+ timeout: number | null
53
54
  delayTime: number | null
54
55
  getDictCodeApi: any
55
56
  version?: string
@@ -79,6 +80,7 @@ export type DictConfig = {
79
80
 
80
81
  /** 字典配置 (可选字段) */
81
82
  export type OptionalDictConfig = {
83
+ timeout?: number | null
82
84
  delayTime?: number | null
83
85
  getDictCodeApi: any
84
86
  version?: string