yc-vep-ui 0.0.15 → 0.0.17
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/Card/{index.d.ts → index.vue.d.ts} +1 -2
- package/dist/components/Chart/Bar.vue.d.ts +3 -0
- package/dist/components/Chart/Pie.vue.d.ts +3 -0
- package/dist/components/Chart/Series.vue.d.ts +9 -0
- package/dist/components/Chart/index.d.ts +3 -3
- package/dist/components/Descriptions/{index.d.ts → index.vue.d.ts} +3 -4
- package/dist/components/Dialog/{index.d.ts → index.vue.d.ts} +4 -4
- package/dist/components/Editor/{index.d.ts → index.vue.d.ts} +4 -5
- package/dist/components/Filter/{index.d.ts → index.vue.d.ts} +6 -8
- package/dist/components/Form/{index.d.ts → index.vue.d.ts} +5 -7
- package/dist/components/InfiniteScroll/{index.d.ts → index.vue.d.ts} +3 -4
- package/dist/components/Table/{UiColumn.d.ts → UiColumn.vue.d.ts} +4 -5
- package/dist/components/Table/{index.d.ts → index.vue.d.ts} +3 -4
- package/dist/components/Tree/{index.d.ts → index.vue.d.ts} +3 -4
- package/dist/components/index.d.ts +9 -9
- package/dist/components/utils/render.d.ts +14 -15
- package/dist/entry.d.ts +10 -11
- package/dist/vep-ui.es.js +195 -317
- package/dist/vep-ui.umd.js +1 -1
- package/package.json +1 -3
- package/dist/components/Chart/Bar.d.ts +0 -4
- package/dist/components/Chart/Pie.d.ts +0 -4
- package/dist/components/Chart/Series.d.ts +0 -10
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ICardProps } from './type.d';
|
|
2
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
2
|
declare function __VLS_template(): {
|
|
4
3
|
attrs: Partial<{}>;
|
|
5
4
|
slots: {
|
|
@@ -9,7 +8,7 @@ declare function __VLS_template(): {
|
|
|
9
8
|
rootEl: any;
|
|
10
9
|
};
|
|
11
10
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
-
declare const __VLS_component: DefineComponent<ICardProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ICardProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<ICardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ICardProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13
12
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
14
13
|
export default _default;
|
|
15
14
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IBarProps } from './type.d';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<IBarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<IBarProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IPieProps } from './type.d';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<IPieProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<IPieProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { EChartsOption } from 'echarts';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
option: EChartsOption;
|
|
4
|
+
height?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
7
|
+
chartRef: HTMLDivElement;
|
|
8
|
+
}, HTMLDivElement>;
|
|
9
|
+
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { default as UiPie } from './Pie';
|
|
2
|
-
import { default as UiSeries } from './Series';
|
|
3
|
-
import { default as UiBar } from './Bar';
|
|
1
|
+
import { default as UiPie } from './Pie.vue';
|
|
2
|
+
import { default as UiSeries } from './Series.vue';
|
|
3
|
+
import { default as UiBar } from './Bar.vue';
|
|
4
4
|
export { UiPie, UiSeries, UiBar };
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { IDescriptionsProps } from './type.d';
|
|
2
|
-
import { VNodeProps, AllowedComponentProps, ComponentCustomProps, PublicProps, ShallowUnwrapRef, VNode } from 'vue';
|
|
3
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<{
|
|
4
|
-
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & IDescriptionsProps<T> & Partial<{}>> & PublicProps;
|
|
5
|
-
expose(exposed: ShallowUnwrapRef<{}>): void;
|
|
3
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, never> & IDescriptionsProps<T> & Partial<{}>> & import('vue').PublicProps;
|
|
4
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
6
5
|
attrs: any;
|
|
7
6
|
slots: {
|
|
8
7
|
title?(_: {}): any;
|
|
9
8
|
};
|
|
10
9
|
emit: {};
|
|
11
|
-
}>) => VNode & {
|
|
10
|
+
}>) => import('vue').VNode & {
|
|
12
11
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
13
12
|
};
|
|
14
13
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component
|
|
1
|
+
import { Component } from 'vue';
|
|
2
2
|
interface IProps {
|
|
3
3
|
visible: boolean;
|
|
4
4
|
width?: string;
|
|
@@ -6,15 +6,15 @@ interface IProps {
|
|
|
6
6
|
component: Component;
|
|
7
7
|
componentProps?: Record<string, any>;
|
|
8
8
|
}
|
|
9
|
-
declare const _default: DefineComponent<IProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
9
|
+
declare const _default: import('vue').DefineComponent<IProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
10
|
submit: (...args: any[]) => void;
|
|
11
11
|
close: (...args: any[]) => void;
|
|
12
12
|
"update:visible": (...args: any[]) => void;
|
|
13
|
-
}, string, PublicProps, Readonly<IProps> & Readonly<{
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<IProps> & Readonly<{
|
|
14
14
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
15
15
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
16
16
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
17
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
17
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
18
18
|
slotRef: unknown;
|
|
19
19
|
}, any>;
|
|
20
20
|
export default _default;
|
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
import { IEditorProps } from './type.d';
|
|
2
|
-
import { ModelRef, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
2
|
type __VLS_Props = IEditorProps;
|
|
4
|
-
declare const modelValue: ModelRef<string, string, string, string>;
|
|
3
|
+
declare const modelValue: import('vue').ModelRef<string, string, string, string>;
|
|
5
4
|
type __VLS_PublicProps = {
|
|
6
5
|
modelValue?: typeof modelValue['value'];
|
|
7
6
|
} & __VLS_Props;
|
|
8
|
-
declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
8
|
change: (...args: any[]) => void;
|
|
10
9
|
"update:modelValue": (value: string) => void;
|
|
11
|
-
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
10
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
12
11
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
13
12
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
14
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
13
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
15
14
|
editorRef: HTMLDivElement;
|
|
16
15
|
}, HTMLDivElement>;
|
|
17
16
|
export default _default;
|
|
@@ -1,27 +1,25 @@
|
|
|
1
1
|
import { IFilterProps } from './type.d';
|
|
2
|
-
import { VNodeProps, AllowedComponentProps, ComponentCustomProps, PublicProps, ShallowUnwrapRef, Reactive, VNode } from 'vue';
|
|
3
|
-
import { DistributeRef } from '@vue/reactivity';
|
|
4
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<{
|
|
5
3
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
6
4
|
readonly onSubmit?: ((...args: any[]) => any) | undefined;
|
|
7
5
|
readonly onReset?: ((...args: any[]) => any) | undefined;
|
|
8
6
|
readonly onSearch?: ((...args: any[]) => any) | undefined;
|
|
9
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onReset" | "onSubmit" | "onSearch"> & IFilterProps<T> & Partial<{}>> & PublicProps;
|
|
10
|
-
expose(exposed: ShallowUnwrapRef<{}>): void;
|
|
7
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onReset" | "onSubmit" | "onSearch"> & IFilterProps<T> & Partial<{}>> & import('vue').PublicProps;
|
|
8
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
11
9
|
attrs: any;
|
|
12
10
|
slots: {
|
|
13
11
|
left?(_: {
|
|
14
|
-
form: DistributeRef<Reactive<T>>;
|
|
12
|
+
form: import('@vue/reactivity').DistributeRef<import('vue').Reactive<T>>;
|
|
15
13
|
}): any;
|
|
16
14
|
handle?(_: {
|
|
17
|
-
form: DistributeRef<Reactive<T>>;
|
|
15
|
+
form: import('@vue/reactivity').DistributeRef<import('vue').Reactive<T>>;
|
|
18
16
|
}): any;
|
|
19
17
|
right?(_: {
|
|
20
|
-
form: DistributeRef<Reactive<T>>;
|
|
18
|
+
form: import('@vue/reactivity').DistributeRef<import('vue').Reactive<T>>;
|
|
21
19
|
}): any;
|
|
22
20
|
};
|
|
23
21
|
emit: (event: "submit" | "reset" | "search", ...args: any[]) => void;
|
|
24
|
-
}>) => VNode & {
|
|
22
|
+
}>) => import('vue').VNode & {
|
|
25
23
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
26
24
|
};
|
|
27
25
|
export default _default;
|
|
@@ -1,23 +1,21 @@
|
|
|
1
1
|
import { IFormProps, IFormInstance } from '../type';
|
|
2
|
-
import { VNodeProps, AllowedComponentProps, ComponentCustomProps, PublicProps, ShallowUnwrapRef, Reactive, VNode } from 'vue';
|
|
3
|
-
import { DistributeRef } from '@vue/reactivity';
|
|
4
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<{
|
|
5
3
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
6
4
|
readonly onSubmit?: ((...args: any[]) => any) | undefined;
|
|
7
5
|
readonly onReset?: ((...args: any[]) => any) | undefined;
|
|
8
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onReset" | "onSubmit"> & IFormProps<T> & Partial<{}>> & PublicProps;
|
|
9
|
-
expose(exposed: ShallowUnwrapRef<IFormInstance>): void;
|
|
6
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onReset" | "onSubmit"> & IFormProps<T> & Partial<{}>> & import('vue').PublicProps;
|
|
7
|
+
expose(exposed: import('vue').ShallowUnwrapRef<IFormInstance>): void;
|
|
10
8
|
attrs: any;
|
|
11
9
|
slots: {
|
|
12
10
|
default?(_: {
|
|
13
|
-
form: DistributeRef<Reactive<T>>;
|
|
11
|
+
form: import('@vue/reactivity').DistributeRef<import('vue').Reactive<T>>;
|
|
14
12
|
}): any;
|
|
15
13
|
handle?(_: {
|
|
16
|
-
form: DistributeRef<Reactive<T>>;
|
|
14
|
+
form: import('@vue/reactivity').DistributeRef<import('vue').Reactive<T>>;
|
|
17
15
|
}): any;
|
|
18
16
|
};
|
|
19
17
|
emit: (event: "submit" | "reset", ...args: any[]) => void;
|
|
20
|
-
}>) => VNode & {
|
|
18
|
+
}>) => import('vue').VNode & {
|
|
21
19
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
22
20
|
};
|
|
23
21
|
export default _default;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { IInfiniteScrollProps } from './type.d';
|
|
2
|
-
import { VNodeProps, AllowedComponentProps, ComponentCustomProps, PublicProps, ShallowUnwrapRef, VNode } from 'vue';
|
|
3
2
|
declare const _default: <T>(__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<{
|
|
4
3
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
4
|
readonly "onNode-click"?: ((...args: any[]) => any) | undefined;
|
|
6
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onNode-click"> & IInfiniteScrollProps<T> & Partial<{}>> & PublicProps;
|
|
7
|
-
expose(exposed: ShallowUnwrapRef<{}>): void;
|
|
5
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onNode-click"> & IInfiniteScrollProps<T> & Partial<{}>> & import('vue').PublicProps;
|
|
6
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
8
7
|
attrs: any;
|
|
9
8
|
slots: {
|
|
10
9
|
plus?(_: {}): any;
|
|
@@ -14,7 +13,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
14
13
|
}): any;
|
|
15
14
|
};
|
|
16
15
|
emit: (event: "node-click", ...args: any[]) => void;
|
|
17
|
-
}>) => VNode & {
|
|
16
|
+
}>) => import('vue').VNode & {
|
|
18
17
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
19
18
|
};
|
|
20
19
|
export default _default;
|
|
@@ -1,20 +1,19 @@
|
|
|
1
1
|
import { IColumn } from './type.d';
|
|
2
|
-
import { VNodeProps, AllowedComponentProps, ComponentCustomProps, PublicProps, ShallowUnwrapRef, VNode } from 'vue';
|
|
3
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<{
|
|
4
3
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
4
|
readonly "onUpdate:data"?: ((...args: any[]) => any) | undefined;
|
|
6
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onUpdate:data"> & {
|
|
5
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:data"> & {
|
|
7
6
|
key?: string;
|
|
8
7
|
data: T[];
|
|
9
8
|
column: IColumn<T>;
|
|
10
9
|
align?: "center" | "left" | "right";
|
|
11
10
|
size?: "large" | "default" | "small";
|
|
12
|
-
} & Partial<{}>> & PublicProps;
|
|
13
|
-
expose(exposed: ShallowUnwrapRef<{}>): void;
|
|
11
|
+
} & Partial<{}>> & import('vue').PublicProps;
|
|
12
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
14
13
|
attrs: any;
|
|
15
14
|
slots: {};
|
|
16
15
|
emit: (event: "update:data", ...args: any[]) => void;
|
|
17
|
-
}>) => VNode & {
|
|
16
|
+
}>) => import('vue').VNode & {
|
|
18
17
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
19
18
|
};
|
|
20
19
|
export default _default;
|
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
import { ITableProps } from './type';
|
|
2
|
-
import { VNodeProps, AllowedComponentProps, ComponentCustomProps, PublicProps, ShallowUnwrapRef, VNode } from 'vue';
|
|
3
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<{
|
|
4
3
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
4
|
readonly onPagination?: ((...args: any[]) => any) | undefined;
|
|
6
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onPagination"> & ITableProps<T> & Partial<{}>> & PublicProps;
|
|
7
|
-
expose(exposed: ShallowUnwrapRef<{}>): void;
|
|
5
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onPagination"> & ITableProps<T> & Partial<{}>> & import('vue').PublicProps;
|
|
6
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
8
7
|
attrs: any;
|
|
9
8
|
slots: {
|
|
10
9
|
default?(_: {}): any;
|
|
11
10
|
};
|
|
12
11
|
emit: (event: "pagination", ...args: any[]) => void;
|
|
13
|
-
}>) => VNode & {
|
|
12
|
+
}>) => import('vue').VNode & {
|
|
14
13
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
15
14
|
};
|
|
16
15
|
export default _default;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ITreeProps } from './type';
|
|
2
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
2
|
declare function __VLS_template(): {
|
|
4
3
|
attrs: Partial<{}>;
|
|
5
4
|
slots: {
|
|
@@ -16,11 +15,11 @@ declare function __VLS_template(): {
|
|
|
16
15
|
rootEl: HTMLDivElement;
|
|
17
16
|
};
|
|
18
17
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
|
-
declare const __VLS_component: DefineComponent<ITreeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
18
|
+
declare const __VLS_component: import('vue').DefineComponent<ITreeProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
19
|
change: (...args: any[]) => void;
|
|
21
|
-
}, string, PublicProps, Readonly<ITreeProps> & Readonly<{
|
|
20
|
+
}, string, import('vue').PublicProps, Readonly<ITreeProps> & Readonly<{
|
|
22
21
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
23
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
22
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
24
23
|
treeRef: unknown;
|
|
25
24
|
}, HTMLDivElement>;
|
|
26
25
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { default as UiCard } from './Card/index';
|
|
2
|
-
import { default as UiTable } from './Table/index';
|
|
3
|
-
import { default as UiFilter } from './Filter/index';
|
|
4
|
-
import { default as UiForm } from './Form/index';
|
|
5
|
-
import { default as UiEditor } from './Editor/index';
|
|
6
|
-
import { default as UiTree } from './Tree/index';
|
|
7
|
-
import { default as UiInfiniteScroll } from './InfiniteScroll/index';
|
|
8
|
-
import { default as UiDescriptions } from './Descriptions/index';
|
|
9
|
-
import { default as UiDialog } from './Dialog/index';
|
|
1
|
+
import { default as UiCard } from './Card/index.vue';
|
|
2
|
+
import { default as UiTable } from './Table/index.vue';
|
|
3
|
+
import { default as UiFilter } from './Filter/index.vue';
|
|
4
|
+
import { default as UiForm } from './Form/index.vue';
|
|
5
|
+
import { default as UiEditor } from './Editor/index.vue';
|
|
6
|
+
import { default as UiTree } from './Tree/index.vue';
|
|
7
|
+
import { default as UiInfiniteScroll } from './InfiniteScroll/index.vue';
|
|
8
|
+
import { default as UiDescriptions } from './Descriptions/index.vue';
|
|
9
|
+
import { default as UiDialog } from './Dialog/index.vue';
|
|
10
10
|
export { UiCard, UiTable, UiFilter, UiForm, UiEditor, UiTree, UiInfiniteScroll, UiDescriptions, UiDialog };
|
|
@@ -1,55 +1,54 @@
|
|
|
1
1
|
import { LinkProps, TagProps, SwitchProps, SelectProps, DatePickerProps, InputProps, InputTagProps, TimeSelectProps, ButtonProps, InputNumberProps, RadioGroupProps, TextProps } from 'element-plus';
|
|
2
|
-
|
|
3
|
-
declare function button(props: ButtonProps | ButtonProps[]): VNode<RendererNode, RendererElement, {
|
|
2
|
+
declare function button(props: ButtonProps | ButtonProps[]): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
4
3
|
[key: string]: any;
|
|
5
4
|
}>;
|
|
6
5
|
declare function link(props: LinkProps & {
|
|
7
6
|
prop: string;
|
|
8
7
|
lineClamp?: number;
|
|
9
8
|
type?: 'primary' | 'success' | 'warning' | 'info' | 'danger';
|
|
10
|
-
}): VNode<RendererNode, RendererElement, {
|
|
9
|
+
}): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
11
10
|
[key: string]: any;
|
|
12
11
|
}>;
|
|
13
12
|
declare function tag(props: TagProps & {
|
|
14
13
|
prop: string;
|
|
15
|
-
}): VNode<RendererNode, RendererElement, {
|
|
14
|
+
}): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
16
15
|
[key: string]: any;
|
|
17
16
|
}>;
|
|
18
|
-
declare function _switch(props: SwitchProps): VNode<RendererNode, RendererElement, {
|
|
17
|
+
declare function _switch(props: SwitchProps): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
19
18
|
[key: string]: any;
|
|
20
19
|
}>;
|
|
21
|
-
declare function select(props: SelectProps): VNode<RendererNode, RendererElement, {
|
|
20
|
+
declare function select(props: SelectProps): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
22
21
|
[key: string]: any;
|
|
23
22
|
}>;
|
|
24
23
|
declare function datePicker(props: DatePickerProps & {
|
|
25
24
|
onChange?: (val: string) => void;
|
|
26
|
-
}): VNode<RendererNode, RendererElement, {
|
|
25
|
+
}): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
27
26
|
[key: string]: any;
|
|
28
27
|
}>;
|
|
29
|
-
declare function timeSelect(props: TimeSelectProps): VNode<RendererNode, RendererElement, {
|
|
28
|
+
declare function timeSelect(props: TimeSelectProps): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
30
29
|
[key: string]: any;
|
|
31
30
|
}>;
|
|
32
|
-
declare function input(props: InputProps): VNode<RendererNode, RendererElement, {
|
|
31
|
+
declare function input(props: InputProps): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
33
32
|
[key: string]: any;
|
|
34
33
|
}>;
|
|
35
|
-
declare function inputNumber(props: InputNumberProps): VNode<RendererNode, RendererElement, {
|
|
34
|
+
declare function inputNumber(props: InputNumberProps): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
36
35
|
[key: string]: any;
|
|
37
36
|
}>;
|
|
38
|
-
declare function textarea(props: InputProps): VNode<RendererNode, RendererElement, {
|
|
37
|
+
declare function textarea(props: InputProps): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
39
38
|
[key: string]: any;
|
|
40
39
|
}>;
|
|
41
|
-
declare function inputTag(props: InputTagProps): VNode<RendererNode, RendererElement, {
|
|
40
|
+
declare function inputTag(props: InputTagProps): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
42
41
|
[key: string]: any;
|
|
43
42
|
}>;
|
|
44
|
-
declare function editor(props: any): VNode<RendererNode, RendererElement, {
|
|
43
|
+
declare function editor(props: any): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
45
44
|
[key: string]: any;
|
|
46
45
|
}>;
|
|
47
|
-
declare function radio(props: RadioGroupProps): VNode<RendererNode, RendererElement, {
|
|
46
|
+
declare function radio(props: RadioGroupProps): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
48
47
|
[key: string]: any;
|
|
49
48
|
}>;
|
|
50
49
|
declare function text(props: TextProps & {
|
|
51
50
|
prop: string;
|
|
52
|
-
}): VNode<RendererNode, RendererElement, {
|
|
51
|
+
}): import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
53
52
|
[key: string]: any;
|
|
54
53
|
}>;
|
|
55
54
|
declare const _default: {
|
package/dist/entry.d.ts
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
|
-
import { default as UiCard } from './components/Card/index';
|
|
3
|
-
import { default as UiTable } from './components/Table/index';
|
|
4
|
-
import { default as UiFilter } from './components/Filter/index';
|
|
5
|
-
import { default as UiForm } from './components/Form/index';
|
|
6
|
-
import { default as UiEditor } from './components/Editor/index';
|
|
7
|
-
import { default as UiTree } from './components/Tree/index';
|
|
8
|
-
import { default as UiInfiniteScroll } from './components/InfiniteScroll/index';
|
|
9
|
-
import { default as UiDescriptions } from './components/Descriptions/index';
|
|
10
|
-
import { default as UiDialog } from './components/Dialog/index';
|
|
11
|
-
|
|
12
|
-
export { UiCard, UiTable, UiFilter, UiForm, UiEditor, UiTree, UiInfiniteScroll, UiDescriptions, UiDialog, UiPie, UiSeries, UiBar, };
|
|
2
|
+
import { default as UiCard } from './components/Card/index.vue';
|
|
3
|
+
import { default as UiTable } from './components/Table/index.vue';
|
|
4
|
+
import { default as UiFilter } from './components/Filter/index.vue';
|
|
5
|
+
import { default as UiForm } from './components/Form/index.vue';
|
|
6
|
+
import { default as UiEditor } from './components/Editor/index.vue';
|
|
7
|
+
import { default as UiTree } from './components/Tree/index.vue';
|
|
8
|
+
import { default as UiInfiniteScroll } from './components/InfiniteScroll/index.vue';
|
|
9
|
+
import { default as UiDescriptions } from './components/Descriptions/index.vue';
|
|
10
|
+
import { default as UiDialog } from './components/Dialog/index.vue';
|
|
11
|
+
export { UiCard, UiTable, UiFilter, UiForm, UiEditor, UiTree, UiInfiniteScroll, UiDescriptions, UiDialog, };
|
|
13
12
|
declare const _default: {
|
|
14
13
|
install(app: App): void;
|
|
15
14
|
};
|