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/README.md +15 -0
- package/lib/style.css +1 -1
- package/lib/vue3-element-dict.js +1932 -1665
- package/package.json +1 -1
- package/types/index.d.ts +2 -0
package/package.json
CHANGED
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
|