yc-vep-ui 0.0.72 → 0.0.73
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/dist/components/Form/index.vue.d.ts +1 -1
- package/dist/components/Icons/index.d.ts +4 -0
- package/dist/components/Icons/svg/ArrowRight.vue.d.ts +2 -0
- package/dist/components/Icons/svg/ArrowUp.vue.d.ts +2 -0
- package/dist/components/Icons/svg/Promotion.vue.d.ts +2 -0
- package/dist/components/Icons/svg/Refresh.vue.d.ts +2 -0
- package/dist/components/Tree/type.d.ts +5 -1
- package/dist/vep-ui.es.js +763 -654
- package/dist/vep-ui.umd.js +1 -1
- package/dist/yc-vep-ui.css +55 -54
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IFormProps, IFormInstance } from '
|
|
1
|
+
import { IFormProps, IFormInstance } from '../type.d';
|
|
2
2
|
declare const _default: <T extends Record<string, any>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3
3
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
4
4
|
readonly onReset?: ((...args: any[]) => any) | undefined;
|
|
@@ -3,3 +3,7 @@ export { default as Search } from './svg/Search.vue';
|
|
|
3
3
|
export { default as CloseBold } from './svg/CloseBold.vue';
|
|
4
4
|
export { default as User } from './svg/User.vue';
|
|
5
5
|
export { default as Plus } from './svg/Plus.vue';
|
|
6
|
+
export { default as ArrowRight } from './svg/ArrowRight.vue';
|
|
7
|
+
export { default as ArrowUp } from './svg/ArrowUp.vue';
|
|
8
|
+
export { default as Refresh } from './svg/Refresh.vue';
|
|
9
|
+
export { default as Promotion } from './svg/Promotion.vue';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -11,8 +11,12 @@ export interface ITreeProps {
|
|
|
11
11
|
hideNodeEdit?: boolean
|
|
12
12
|
/** 隐藏节点的删除按钮 */
|
|
13
13
|
hideNodeDel?: boolean
|
|
14
|
-
/**
|
|
14
|
+
/** 隐藏所有遇节点操作 */
|
|
15
15
|
hideNodeHandle?: boolean
|
|
16
|
+
onNodeAdd?: (node: any) => void
|
|
17
|
+
onNodeEdit?: (node: any) => void
|
|
18
|
+
onNodeDel?: (node: any) => void
|
|
19
|
+
|
|
16
20
|
nodeKey?: string
|
|
17
21
|
props?: {
|
|
18
22
|
label?: string
|