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.
@@ -1,4 +1,4 @@
1
- import { IFormProps, IFormInstance } from './type';
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