@funcho/ui 1.1.31 → 1.1.33
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 +2 -0
- package/dist/cjs/business/DataTable/DataTable.vue.js +16 -2
- package/dist/cjs/business/DataTableDialog/DataTableDialog.vue.js +135 -0
- package/dist/cjs/business/DataTableDialog/DataTableDialog.vue3.js +10 -0
- package/dist/cjs/business/DataTableDialog/index.js +12 -0
- package/dist/cjs/business/TreeCheckFilter/TreeCheckFilter.vue.js +13 -6
- package/dist/cjs/business/TreeTransfer/TreeTransfer.vue.js +2 -2
- package/dist/cjs/business/TreeTransferDialog/TreeTransferDialog.vue.js +121 -0
- package/dist/cjs/business/TreeTransferDialog/TreeTransferDialog.vue3.js +10 -0
- package/dist/cjs/business/TreeTransferDialog/index.js +12 -0
- package/dist/cjs/business/index.js +4 -0
- package/dist/cjs/components/Text/Text.vue.js +2 -20
- package/dist/cjs/index.js +10 -6
- package/dist/cjs/packages/ui/package.json.js +1 -1
- package/dist/esm/business/DataTable/DataTable.vue.mjs +16 -2
- package/dist/esm/business/DataTableDialog/DataTableDialog.vue.mjs +131 -0
- package/dist/esm/business/DataTableDialog/DataTableDialog.vue3.mjs +6 -0
- package/dist/esm/business/DataTableDialog/index.mjs +7 -0
- package/dist/esm/business/TreeCheckFilter/TreeCheckFilter.vue.mjs +13 -6
- package/dist/esm/business/TreeTransfer/TreeTransfer.vue.mjs +2 -2
- package/dist/esm/business/TreeTransferDialog/TreeTransferDialog.vue.mjs +117 -0
- package/dist/esm/business/TreeTransferDialog/TreeTransferDialog.vue3.mjs +6 -0
- package/dist/esm/business/TreeTransferDialog/index.mjs +7 -0
- package/dist/esm/business/index.mjs +2 -0
- package/dist/esm/components/Text/Text.vue.mjs +3 -21
- package/dist/esm/index.mjs +2 -0
- package/dist/esm/packages/ui/package.json.mjs +1 -1
- package/dist/types/business/DataTable/DataTable.types.d.ts +33 -4
- package/dist/types/business/DataTable/DataTable.vue.d.ts +22 -52
- package/dist/types/business/DataTable/index.d.ts +15 -198
- package/dist/types/business/DataTableDialog/DataTableDialog.types.d.ts +1 -0
- package/dist/types/business/DataTableDialog/DataTableDialog.vue.d.ts +1605 -0
- package/dist/types/business/DataTableDialog/index.d.ts +1688 -0
- package/dist/types/business/TreeCheckFilter/TreeCheckFilter.vue.d.ts +22 -19
- package/dist/types/business/TreeCheckFilter/index.d.ts +6 -0
- package/dist/types/business/TreeTransfer/TreeTransfer.vue.d.ts +8 -0
- package/dist/types/business/TreeTransfer/index.d.ts +8 -0
- package/dist/types/business/TreeTransferDialog/TreeTransferDialog.types.d.ts +1 -0
- package/dist/types/business/TreeTransferDialog/TreeTransferDialog.vue.d.ts +10428 -0
- package/dist/types/business/TreeTransferDialog/index.d.ts +10496 -0
- package/dist/types/business/VerticalLayout/VerticalLayout.vue.d.ts +3 -3
- package/dist/types/business/VerticalLayout/index.d.ts +48 -0
- package/dist/types/business/index.d.ts +2 -0
- package/dist/types/components/Text/Text.vue.d.ts +1 -1
- package/dist/types/components/Text/index.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
gap?: number | string;
|
|
3
3
|
full?: boolean;
|
|
4
|
-
}
|
|
4
|
+
};
|
|
5
5
|
declare function __VLS_template(): {
|
|
6
6
|
attrs: Partial<{}>;
|
|
7
7
|
slots: {
|
|
@@ -22,7 +22,7 @@ declare function __VLS_template(): {
|
|
|
22
22
|
rootEl: HTMLDivElement;
|
|
23
23
|
};
|
|
24
24
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
25
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
25
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
26
26
|
full: boolean;
|
|
27
27
|
gap: number | string;
|
|
28
28
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export declare const FcProVerticalLayout: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3
|
+
gap?: number | string;
|
|
4
|
+
full?: boolean;
|
|
5
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
6
|
+
full: boolean;
|
|
7
|
+
gap: number | string;
|
|
8
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
9
|
+
layoutRef: HTMLDivElement;
|
|
10
|
+
headerRef: HTMLDivElement;
|
|
11
|
+
bodyRef: HTMLDivElement;
|
|
12
|
+
footerRef: HTMLDivElement;
|
|
13
|
+
ghostBodyRef: HTMLDivElement;
|
|
14
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
15
|
+
P: {};
|
|
16
|
+
B: {};
|
|
17
|
+
D: {};
|
|
18
|
+
C: {};
|
|
19
|
+
M: {};
|
|
20
|
+
Defaults: {};
|
|
21
|
+
}, Readonly<{
|
|
22
|
+
gap?: number | string;
|
|
23
|
+
full?: boolean;
|
|
24
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {
|
|
25
|
+
full: boolean;
|
|
26
|
+
gap: number | string;
|
|
27
|
+
}>;
|
|
28
|
+
__isFragment?: never;
|
|
29
|
+
__isTeleport?: never;
|
|
30
|
+
__isSuspense?: never;
|
|
31
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
32
|
+
gap?: number | string;
|
|
33
|
+
full?: boolean;
|
|
34
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
35
|
+
full: boolean;
|
|
36
|
+
gap: number | string;
|
|
37
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
38
|
+
$slots: {
|
|
39
|
+
header?(_: {}): any;
|
|
40
|
+
body?(_: {
|
|
41
|
+
width: number;
|
|
42
|
+
height: number;
|
|
43
|
+
}): any;
|
|
44
|
+
footer?(_: {}): any;
|
|
45
|
+
};
|
|
46
|
+
}) & import('vue').Plugin;
|
|
47
|
+
export default FcProVerticalLayout;
|
|
48
|
+
export * from './VerticalLayout.types';
|
|
@@ -105,7 +105,7 @@ declare function __VLS_template(): {
|
|
|
105
105
|
rootEl: any;
|
|
106
106
|
};
|
|
107
107
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
108
|
-
declare const __VLS_component: import('vue').DefineComponent<{},
|
|
108
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
109
109
|
elRef: ({
|
|
110
110
|
$: import('vue').ComponentInternalInstance;
|
|
111
111
|
$data: {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const FcText: {
|
|
2
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>,
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
3
3
|
elRef: ({
|
|
4
4
|
$: import('vue').ComponentInternalInstance;
|
|
5
5
|
$data: {};
|
|
@@ -106,11 +106,11 @@ export declare const FcText: {
|
|
|
106
106
|
C: {};
|
|
107
107
|
M: {};
|
|
108
108
|
Defaults: {};
|
|
109
|
-
}, Readonly<{}> & Readonly<{}>,
|
|
109
|
+
}, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
110
110
|
__isFragment?: never;
|
|
111
111
|
__isTeleport?: never;
|
|
112
112
|
__isSuspense?: never;
|
|
113
|
-
} & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>,
|
|
113
|
+
} & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
114
114
|
$slots: any;
|
|
115
115
|
}) & import('vue').Plugin;
|
|
116
116
|
export default FcText;
|