zhytech-ui 1.1.21 → 1.1.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.
- package/README.md +6 -0
- package/dist/src/hooks/useUtils.d.ts +2 -2
- package/dist/style.css +1 -1
- package/dist/zhytech-ui.es.js +1358 -1358
- package/dist/zhytech-ui.umd.js +2 -2
- package/package.json +1 -3
package/README.md
CHANGED
|
@@ -56,11 +56,11 @@ export declare function useUtils(): {
|
|
|
56
56
|
* @param selectVale 级联选择器选择的值
|
|
57
57
|
* @param options 级联选择器的所有数据
|
|
58
58
|
* @param valueName 级联选择器的数据类型value名字
|
|
59
|
-
* @param
|
|
59
|
+
* @param childName 级联选择器的数据类型children名字
|
|
60
60
|
* @param multipleFlag 是否是多选
|
|
61
61
|
* @returns
|
|
62
62
|
*/
|
|
63
|
-
getCascaderFullValue<V, L>(selectVale: V | V[], options: L[], valueName: string,
|
|
63
|
+
getCascaderFullValue<V, L>(selectVale: V | V[], options: L[], valueName: string, childName: string, multipleFlag?: boolean): (L | V[] | L[] | V[][])[];
|
|
64
64
|
/**
|
|
65
65
|
* 存储/读取localStorage数据
|
|
66
66
|
* name: localStorage的key
|