orion-design 0.1.58 → 0.1.59
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +5 -5
- package/dist/Throne/hooks/use-throne-context.js.map +1 -1
- package/dist/components/Button/index.d.ts +2 -41
- package/dist/components/Button/index.js.map +1 -1
- package/dist/components/Card/index.d.ts +1 -3
- package/dist/components/Form/FileInput/FileInput.vue.d.ts +4 -101
- package/dist/components/Form/Form.vue.d.ts +2 -70
- package/dist/components/Form/LovInput/LovInput.vue.d.ts +10 -284
- package/dist/components/Form/TableSelect/TableSelect.vue.d.ts +10 -284
- package/dist/components/Form/index.d.ts +2 -38
- package/dist/components/Form/index.js +27 -27
- package/dist/components/Icon/Icon.vue.d.ts +15 -1
- package/dist/components/Icon/index.d.ts +22 -4
- package/dist/components/Icon/index.js +24 -15
- package/dist/components/Icon/index.js.map +1 -1
- package/dist/components/LovTable/LovPagetable.vue.d.ts +2 -154
- package/dist/components/LovTable/LovQuerytable.vue.d.ts +2 -98
- package/dist/components/LovTable/index.d.ts +4 -139
- package/dist/components/Pagetable/hooks/useColumns.js +33 -29
- package/dist/components/Pagetable/hooks/useColumns.js.map +1 -1
- package/dist/components/Pagetable/index.js +347 -314
- package/dist/components/Pagetable/index.js.map +1 -1
- package/dist/components/Querytable/hooks/useColumns.js +12 -8
- package/dist/components/Querytable/hooks/useColumns.js.map +1 -1
- package/dist/components/Querytable/index.js +276 -243
- package/dist/components/Querytable/index.js.map +1 -1
- package/dist/components/TableSelectPagetable/TableSelectPagetable.vue.d.ts +2 -154
- package/dist/components/TableSelectPagetable/index.d.ts +2 -82
- package/dist/components/TableSelectPagetable/index.js +7 -7
- package/dist/components/Tabs/index.js +2 -2
- package/dist/components/Tooltip/index.d.ts +8993 -0
- package/dist/components/Tooltip/index.js +12 -0
- package/dist/components/Tooltip/index.js.map +1 -0
- package/dist/components/Tree/Tree.vue.d.ts +2 -160
- package/dist/components/Tree/index.d.ts +2 -84
- package/dist/components/_util/dom/element.js +1 -1
- package/dist/components/_util/dom/style.js +1 -1
- package/dist/components/_util/error.js +1 -1
- package/dist/components/_util/functions.js +1 -1
- package/dist/components/_util/index.js +1 -1
- package/dist/components/_util/objects.js +1 -1
- package/dist/components/_util/strings.js +2 -2
- package/dist/components/_util/types.js +2 -2
- package/dist/components/_util/vue/icon.js +10 -10
- package/dist/components/_util/vue/install.js +1 -1
- package/dist/components/_util/vue/props/runtime.js +1 -1
- package/dist/components/_util/vue/refs.js +1 -1
- package/dist/components/_util/vue/vnode.js +1 -1
- package/dist/components/components.d.ts +1 -0
- package/dist/components/components.js +31 -29
- package/dist/components/components.js.map +1 -1
- package/dist/components/index.js +41 -39
- package/dist/components/index.js.map +1 -1
- package/dist/components-DqItbXAG.js +56 -0
- package/dist/components-DqItbXAG.js.map +1 -0
- package/dist/{functions-DzLqXvGt.js → functions-LOH6x_02.js} +2 -2
- package/dist/functions-LOH6x_02.js.map +1 -0
- package/dist/icon/index.d.ts +1 -0
- package/dist/icon/index.js +297 -0
- package/dist/icon/index.js.map +1 -0
- package/dist/index-CIR6wX_E.js +4885 -0
- package/dist/{index-Bm0F5NQQ.js.map → index-CIR6wX_E.js.map} +1 -1
- package/dist/index.js +46 -44
- package/dist/index.js.map +1 -1
- package/dist/utils/functions.js +1 -1
- package/dist/version/version.d.ts +1 -1
- package/dist/version/version.js +1 -1
- package/dist/version/version.js.map +1 -1
- package/package.json +1 -1
- package/dist/components-BZKLgLQx.js +0 -54
- package/dist/components-BZKLgLQx.js.map +0 -1
- package/dist/functions-DzLqXvGt.js.map +0 -1
- package/dist/index-Bm0F5NQQ.js +0 -224
@@ -1,6 +1,20 @@
|
|
1
|
-
declare
|
1
|
+
declare function __VLS_template(): {
|
2
|
+
slots: {
|
3
|
+
default?(_: {}): any;
|
4
|
+
};
|
5
|
+
refs: {};
|
6
|
+
attrs: Partial<{}>;
|
7
|
+
};
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
9
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
2
10
|
name: string;
|
3
11
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
4
12
|
name: string;
|
5
13
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
14
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
6
15
|
export default _default;
|
16
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
17
|
+
new (): {
|
18
|
+
$slots: S;
|
19
|
+
};
|
20
|
+
};
|
@@ -1,6 +1,24 @@
|
|
1
|
-
declare const _default: import('../_util').SFCWithInstall<
|
1
|
+
declare const _default: import('../_util').SFCWithInstall<{
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
3
|
+
name: string;
|
4
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
5
|
+
P: {};
|
6
|
+
B: {};
|
7
|
+
D: {};
|
8
|
+
C: {};
|
9
|
+
M: {};
|
10
|
+
Defaults: {};
|
11
|
+
}, Readonly<{
|
12
|
+
name: string;
|
13
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
14
|
+
__isFragment?: never;
|
15
|
+
__isTeleport?: never;
|
16
|
+
__isSuspense?: never;
|
17
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
2
18
|
name: string;
|
3
|
-
}
|
4
|
-
|
5
|
-
|
19
|
+
}> & 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 () => {
|
20
|
+
$slots: {
|
21
|
+
default?(_: {}): any;
|
22
|
+
};
|
23
|
+
})> & {};
|
6
24
|
export default _default;
|
@@ -1,34 +1,43 @@
|
|
1
1
|
import "lodash-es";
|
2
|
-
import { defineComponent as
|
3
|
-
import { withInstall as
|
4
|
-
import "element-plus";
|
5
|
-
const
|
2
|
+
import { defineComponent as a, useAttrs as i, computed as c, useSlots as m, unref as t, openBlock as o, createBlock as u, normalizeStyle as r, withCtx as f, renderSlot as d, createElementBlock as p, normalizeClass as h, createElementVNode as y } from "vue";
|
3
|
+
import { withInstall as _ } from "../_util/vue/install.js";
|
4
|
+
import { ElIcon as k } from "element-plus";
|
5
|
+
const v = ["xlink:href"], x = /* @__PURE__ */ a({
|
6
6
|
name: "OIcon",
|
7
7
|
inheritAttrs: !1,
|
8
8
|
__name: "Icon",
|
9
9
|
props: {
|
10
10
|
name: {}
|
11
11
|
},
|
12
|
-
setup(
|
13
|
-
const e =
|
12
|
+
setup(C) {
|
13
|
+
const e = i(), l = c(() => {
|
14
14
|
if (e.style)
|
15
15
|
return e.style;
|
16
|
-
});
|
17
|
-
return (
|
16
|
+
}), n = m();
|
17
|
+
return (s, I) => t(n).default ? (o(), u(t(k), {
|
18
|
+
key: 0,
|
19
|
+
style: r(l.value)
|
20
|
+
}, {
|
21
|
+
default: f(() => [
|
22
|
+
d(s.$slots, "default")
|
23
|
+
]),
|
24
|
+
_: 3
|
25
|
+
}, 8, ["style"])) : (o(), p("svg", {
|
26
|
+
key: 1,
|
18
27
|
"aria-hidden": "true",
|
19
28
|
width: "1em",
|
20
29
|
height: "1em",
|
21
|
-
style:
|
22
|
-
class:
|
30
|
+
style: r(l.value),
|
31
|
+
class: h(t(e).class)
|
23
32
|
}, [
|
24
|
-
|
25
|
-
"xlink:href": `#${
|
33
|
+
y("use", {
|
34
|
+
"xlink:href": `#${s.name}`,
|
26
35
|
fill: "currentColor"
|
27
|
-
}, null, 8,
|
36
|
+
}, null, 8, v)
|
28
37
|
], 6));
|
29
38
|
}
|
30
|
-
}),
|
39
|
+
}), g = _(x, {});
|
31
40
|
export {
|
32
|
-
|
41
|
+
g as default
|
33
42
|
};
|
34
43
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../src/components/Icon/Icon.vue","../../../src/components/Icon/index.ts"],"sourcesContent":["<template>\r\n <svg aria-hidden=\"true\" width=\"1em\" height=\"1em\" :style=\"style\" :class=\"attrs.class\">\r\n <use :xlink:href=\"`#${name}`\" fill=\"currentColor\" />\r\n </svg>\r\n</template>\r\n<script setup lang=\"ts\">\r\nimport { computed, useAttrs, type CSSProperties } from 'vue'\r\n\r\ndefineOptions({ name: 'OIcon', inheritAttrs: false })\r\n\r\nconst { name } = defineProps<{ name: string }>()\r\nconst attrs = useAttrs()\r\nconst style = computed(() => {\r\n if (attrs.style) {\r\n return attrs.style as CSSProperties\r\n }\r\n return undefined\r\n})\r\n</script>","import { withInstall } from '../_util'\r\n\r\nimport Icon from './Icon.vue'\r\nexport default withInstall<typeof Icon, {}>(Icon, {})\r\n"],"names":["attrs","useAttrs","style","computed","index","withInstall","Icon"],"mappings":";;;;;;;;;;;;
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/components/Icon/Icon.vue","../../../src/components/Icon/index.ts"],"sourcesContent":["<template>\r\n <el-icon v-if=\"slots.default\" :style=\"style\">\r\n <slot></slot>\r\n </el-icon>\r\n <svg v-else aria-hidden=\"true\" width=\"1em\" height=\"1em\" :style=\"style\" :class=\"attrs.class\">\r\n <use :xlink:href=\"`#${name}`\" fill=\"currentColor\" />\r\n </svg>\r\n</template>\r\n<script setup lang=\"ts\">\r\nimport { computed, useAttrs, useSlots, type CSSProperties } from 'vue'\r\nimport { ElIcon } from 'element-plus';\r\n\r\ndefineOptions({ name: 'OIcon', inheritAttrs: false })\r\n\r\nconst { name } = defineProps<{ name: string }>()\r\nconst attrs = useAttrs()\r\nconst style = computed(() => {\r\n if (attrs.style) {\r\n return attrs.style as CSSProperties\r\n }\r\n return undefined\r\n})\r\nconst slots = useSlots()\r\n</script>","import { withInstall } from '../_util'\r\n\r\nimport Icon from './Icon.vue'\r\nexport default withInstall<typeof Icon, {}>(Icon, {})\r\n"],"names":["attrs","useAttrs","style","computed","slots","useSlots","index","withInstall","Icon"],"mappings":";;;;;;;;;;;;AAeA,UAAMA,IAAQC,KACRC,IAAQC,EAAS,MAAM;AACzB,UAAIH,EAAM;AACN,eAAOA,EAAM;AAAA,IAEV,CACV,GACKI,IAAQC;;;;;;;;;;;;;;;;;;;;;;;ICnBdC,IAAeC,EAA6BC,GAAM,EAAE;"}
|
@@ -79,83 +79,7 @@ declare function __VLS_template(): {
|
|
79
79
|
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
80
80
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
81
81
|
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
82
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').
|
83
|
-
data: ArrayConstructor;
|
84
|
-
tailData: ObjectConstructor;
|
85
|
-
pagination: import('vue').PropType<{
|
86
|
-
currentPage?: number;
|
87
|
-
pageSize?: number;
|
88
|
-
pageSizes?: number[];
|
89
|
-
total?: number;
|
90
|
-
}>;
|
91
|
-
paginationTeleported: {
|
92
|
-
type: BooleanConstructor;
|
93
|
-
default: boolean;
|
94
|
-
};
|
95
|
-
paginationPagerCount: NumberConstructor;
|
96
|
-
paginationShowTotal: {
|
97
|
-
type: BooleanConstructor;
|
98
|
-
default: boolean;
|
99
|
-
};
|
100
|
-
paginationShowSizes: {
|
101
|
-
type: BooleanConstructor;
|
102
|
-
default: boolean;
|
103
|
-
};
|
104
|
-
paginationShowJumber: {
|
105
|
-
type: BooleanConstructor;
|
106
|
-
default: boolean;
|
107
|
-
};
|
108
|
-
showRowNumber: {
|
109
|
-
type: BooleanConstructor;
|
110
|
-
default: boolean;
|
111
|
-
};
|
112
|
-
selectionMode: {
|
113
|
-
type: BooleanConstructor;
|
114
|
-
default: boolean;
|
115
|
-
};
|
116
|
-
currentRowMode: {
|
117
|
-
type: BooleanConstructor;
|
118
|
-
default: boolean;
|
119
|
-
};
|
120
|
-
size: import('vue').PropType<"" | "large" | "default" | "small">;
|
121
|
-
rowClassName: import('vue').PropType<string | ((data: {
|
122
|
-
rowData: any;
|
123
|
-
rowIndex: number;
|
124
|
-
}) => string)>;
|
125
|
-
rowStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
126
|
-
rowData: any;
|
127
|
-
rowIndex: number;
|
128
|
-
}) => import('vue').CSSProperties)>;
|
129
|
-
cellClassName: import('vue').PropType<string | ((data: {
|
130
|
-
rowData: any;
|
131
|
-
column: {
|
132
|
-
name: string;
|
133
|
-
head: string;
|
134
|
-
};
|
135
|
-
rowIndex: number;
|
136
|
-
columnIndex: number;
|
137
|
-
}) => string)>;
|
138
|
-
cellStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
139
|
-
rowData: any;
|
140
|
-
column: {
|
141
|
-
name: string;
|
142
|
-
head: string;
|
143
|
-
};
|
144
|
-
rowIndex: number;
|
145
|
-
columnIndex: number;
|
146
|
-
}) => import('vue').CSSProperties)>;
|
147
|
-
}>> & Readonly<{
|
148
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
149
|
-
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
150
|
-
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
151
|
-
onCurrentRowChange?: ((...args: any[]) => any) | undefined;
|
152
|
-
"onUpdate:pagination"?: ((...args: any[]) => any) | undefined;
|
153
|
-
onPaginationChange?: ((...args: any[]) => any) | undefined;
|
154
|
-
onRowClick?: ((...args: any[]) => any) | undefined;
|
155
|
-
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
156
|
-
onCellClick?: ((...args: any[]) => any) | undefined;
|
157
|
-
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
158
|
-
}>, {
|
82
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').PublicProps, {
|
159
83
|
paginationTeleported: boolean;
|
160
84
|
paginationShowTotal: boolean;
|
161
85
|
paginationShowSizes: boolean;
|
@@ -354,83 +278,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
354
278
|
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
355
279
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
356
280
|
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
357
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').
|
358
|
-
data: ArrayConstructor;
|
359
|
-
tailData: ObjectConstructor;
|
360
|
-
pagination: import('vue').PropType<{
|
361
|
-
currentPage?: number;
|
362
|
-
pageSize?: number;
|
363
|
-
pageSizes?: number[];
|
364
|
-
total?: number;
|
365
|
-
}>;
|
366
|
-
paginationTeleported: {
|
367
|
-
type: BooleanConstructor;
|
368
|
-
default: boolean;
|
369
|
-
};
|
370
|
-
paginationPagerCount: NumberConstructor;
|
371
|
-
paginationShowTotal: {
|
372
|
-
type: BooleanConstructor;
|
373
|
-
default: boolean;
|
374
|
-
};
|
375
|
-
paginationShowSizes: {
|
376
|
-
type: BooleanConstructor;
|
377
|
-
default: boolean;
|
378
|
-
};
|
379
|
-
paginationShowJumber: {
|
380
|
-
type: BooleanConstructor;
|
381
|
-
default: boolean;
|
382
|
-
};
|
383
|
-
showRowNumber: {
|
384
|
-
type: BooleanConstructor;
|
385
|
-
default: boolean;
|
386
|
-
};
|
387
|
-
selectionMode: {
|
388
|
-
type: BooleanConstructor;
|
389
|
-
default: boolean;
|
390
|
-
};
|
391
|
-
currentRowMode: {
|
392
|
-
type: BooleanConstructor;
|
393
|
-
default: boolean;
|
394
|
-
};
|
395
|
-
size: import('vue').PropType<"" | "large" | "default" | "small">;
|
396
|
-
rowClassName: import('vue').PropType<string | ((data: {
|
397
|
-
rowData: any;
|
398
|
-
rowIndex: number;
|
399
|
-
}) => string)>;
|
400
|
-
rowStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
401
|
-
rowData: any;
|
402
|
-
rowIndex: number;
|
403
|
-
}) => import('vue').CSSProperties)>;
|
404
|
-
cellClassName: import('vue').PropType<string | ((data: {
|
405
|
-
rowData: any;
|
406
|
-
column: {
|
407
|
-
name: string;
|
408
|
-
head: string;
|
409
|
-
};
|
410
|
-
rowIndex: number;
|
411
|
-
columnIndex: number;
|
412
|
-
}) => string)>;
|
413
|
-
cellStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
414
|
-
rowData: any;
|
415
|
-
column: {
|
416
|
-
name: string;
|
417
|
-
head: string;
|
418
|
-
};
|
419
|
-
rowIndex: number;
|
420
|
-
columnIndex: number;
|
421
|
-
}) => import('vue').CSSProperties)>;
|
422
|
-
}>> & Readonly<{
|
423
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
424
|
-
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
425
|
-
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
426
|
-
onCurrentRowChange?: ((...args: any[]) => any) | undefined;
|
427
|
-
"onUpdate:pagination"?: ((...args: any[]) => any) | undefined;
|
428
|
-
onPaginationChange?: ((...args: any[]) => any) | undefined;
|
429
|
-
onRowClick?: ((...args: any[]) => any) | undefined;
|
430
|
-
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
431
|
-
onCellClick?: ((...args: any[]) => any) | undefined;
|
432
|
-
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
433
|
-
}>, {
|
281
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').PublicProps, {
|
434
282
|
paginationTeleported: boolean;
|
435
283
|
paginationShowTotal: boolean;
|
436
284
|
paginationShowSizes: boolean;
|
@@ -51,55 +51,7 @@ declare function __VLS_template(): {
|
|
51
51
|
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
52
52
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
53
53
|
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
54
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("selectionChange" | "currentRowChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').
|
55
|
-
data: ArrayConstructor;
|
56
|
-
showRowNumber: {
|
57
|
-
type: BooleanConstructor;
|
58
|
-
default: boolean;
|
59
|
-
};
|
60
|
-
selectionMode: {
|
61
|
-
type: BooleanConstructor;
|
62
|
-
default: boolean;
|
63
|
-
};
|
64
|
-
currentRowMode: {
|
65
|
-
type: BooleanConstructor;
|
66
|
-
default: boolean;
|
67
|
-
};
|
68
|
-
size: import('vue').PropType<"" | "large" | "default" | "small">;
|
69
|
-
rowClassName: import('vue').PropType<string | ((data: {
|
70
|
-
rowData: any;
|
71
|
-
rowIndex: number;
|
72
|
-
}) => string)>;
|
73
|
-
rowStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
74
|
-
rowData: any;
|
75
|
-
rowIndex: number;
|
76
|
-
}) => import('vue').CSSProperties)>;
|
77
|
-
cellClassName: import('vue').PropType<string | ((data: {
|
78
|
-
rowData: any;
|
79
|
-
column: {
|
80
|
-
name: string;
|
81
|
-
head: string;
|
82
|
-
};
|
83
|
-
rowIndex: number;
|
84
|
-
columnIndex: number;
|
85
|
-
}) => string)>;
|
86
|
-
cellStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
87
|
-
rowData: any;
|
88
|
-
column: {
|
89
|
-
name: string;
|
90
|
-
head: string;
|
91
|
-
};
|
92
|
-
rowIndex: number;
|
93
|
-
columnIndex: number;
|
94
|
-
}) => import('vue').CSSProperties)>;
|
95
|
-
}>> & Readonly<{
|
96
|
-
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
97
|
-
onCurrentRowChange?: ((...args: any[]) => any) | undefined;
|
98
|
-
onRowClick?: ((...args: any[]) => any) | undefined;
|
99
|
-
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
100
|
-
onCellClick?: ((...args: any[]) => any) | undefined;
|
101
|
-
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
102
|
-
}>, {
|
54
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("selectionChange" | "currentRowChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').PublicProps, {
|
103
55
|
showRowNumber: boolean;
|
104
56
|
selectionMode: boolean;
|
105
57
|
currentRowMode: boolean;
|
@@ -220,55 +172,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
220
172
|
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
221
173
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
222
174
|
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
223
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("selectionChange" | "currentRowChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').
|
224
|
-
data: ArrayConstructor;
|
225
|
-
showRowNumber: {
|
226
|
-
type: BooleanConstructor;
|
227
|
-
default: boolean;
|
228
|
-
};
|
229
|
-
selectionMode: {
|
230
|
-
type: BooleanConstructor;
|
231
|
-
default: boolean;
|
232
|
-
};
|
233
|
-
currentRowMode: {
|
234
|
-
type: BooleanConstructor;
|
235
|
-
default: boolean;
|
236
|
-
};
|
237
|
-
size: import('vue').PropType<"" | "large" | "default" | "small">;
|
238
|
-
rowClassName: import('vue').PropType<string | ((data: {
|
239
|
-
rowData: any;
|
240
|
-
rowIndex: number;
|
241
|
-
}) => string)>;
|
242
|
-
rowStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
243
|
-
rowData: any;
|
244
|
-
rowIndex: number;
|
245
|
-
}) => import('vue').CSSProperties)>;
|
246
|
-
cellClassName: import('vue').PropType<string | ((data: {
|
247
|
-
rowData: any;
|
248
|
-
column: {
|
249
|
-
name: string;
|
250
|
-
head: string;
|
251
|
-
};
|
252
|
-
rowIndex: number;
|
253
|
-
columnIndex: number;
|
254
|
-
}) => string)>;
|
255
|
-
cellStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
256
|
-
rowData: any;
|
257
|
-
column: {
|
258
|
-
name: string;
|
259
|
-
head: string;
|
260
|
-
};
|
261
|
-
rowIndex: number;
|
262
|
-
columnIndex: number;
|
263
|
-
}) => import('vue').CSSProperties)>;
|
264
|
-
}>> & Readonly<{
|
265
|
-
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
266
|
-
onCurrentRowChange?: ((...args: any[]) => any) | undefined;
|
267
|
-
onRowClick?: ((...args: any[]) => any) | undefined;
|
268
|
-
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
269
|
-
onCellClick?: ((...args: any[]) => any) | undefined;
|
270
|
-
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
271
|
-
}>, {
|
175
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("selectionChange" | "currentRowChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').PublicProps, {
|
272
176
|
showRowNumber: boolean;
|
273
177
|
selectionMode: boolean;
|
274
178
|
currentRowMode: boolean;
|
@@ -1,9 +1,7 @@
|
|
1
1
|
export declare const LovQuerytable: import('../_util').SFCWithInstall<{
|
2
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
3
3
|
data: any[];
|
4
|
-
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').
|
5
|
-
data: any[];
|
6
|
-
}> & Readonly<{}>, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
4
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
7
5
|
table: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
8
6
|
data: ArrayConstructor;
|
9
7
|
showRowNumber: {
|
@@ -52,55 +50,7 @@ export declare const LovQuerytable: import('../_util').SFCWithInstall<{
|
|
52
50
|
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
53
51
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
54
52
|
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
55
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("selectionChange" | "currentRowChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').
|
56
|
-
data: ArrayConstructor;
|
57
|
-
showRowNumber: {
|
58
|
-
type: BooleanConstructor;
|
59
|
-
default: boolean;
|
60
|
-
};
|
61
|
-
selectionMode: {
|
62
|
-
type: BooleanConstructor;
|
63
|
-
default: boolean;
|
64
|
-
};
|
65
|
-
currentRowMode: {
|
66
|
-
type: BooleanConstructor;
|
67
|
-
default: boolean;
|
68
|
-
};
|
69
|
-
size: import('vue').PropType<"" | "large" | "default" | "small">;
|
70
|
-
rowClassName: import('vue').PropType<string | ((data: {
|
71
|
-
rowData: any;
|
72
|
-
rowIndex: number;
|
73
|
-
}) => string)>;
|
74
|
-
rowStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
75
|
-
rowData: any;
|
76
|
-
rowIndex: number;
|
77
|
-
}) => import('vue').CSSProperties)>;
|
78
|
-
cellClassName: import('vue').PropType<string | ((data: {
|
79
|
-
rowData: any;
|
80
|
-
column: {
|
81
|
-
name: string;
|
82
|
-
head: string;
|
83
|
-
};
|
84
|
-
rowIndex: number;
|
85
|
-
columnIndex: number;
|
86
|
-
}) => string)>;
|
87
|
-
cellStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
88
|
-
rowData: any;
|
89
|
-
column: {
|
90
|
-
name: string;
|
91
|
-
head: string;
|
92
|
-
};
|
93
|
-
rowIndex: number;
|
94
|
-
columnIndex: number;
|
95
|
-
}) => import('vue').CSSProperties)>;
|
96
|
-
}>> & Readonly<{
|
97
|
-
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
98
|
-
onCurrentRowChange?: ((...args: any[]) => any) | undefined;
|
99
|
-
onRowClick?: ((...args: any[]) => any) | undefined;
|
100
|
-
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
101
|
-
onCellClick?: ((...args: any[]) => any) | undefined;
|
102
|
-
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
103
|
-
}>, {
|
53
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("selectionChange" | "currentRowChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').PublicProps, {
|
104
54
|
showRowNumber: boolean;
|
105
55
|
selectionMode: boolean;
|
106
56
|
currentRowMode: boolean;
|
@@ -196,16 +146,7 @@ export declare const LovPagetable: import('../_util').SFCWithInstall<{
|
|
196
146
|
"onUpdate:pagination"?: ((...args: any[]) => any) | undefined;
|
197
147
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
198
148
|
"update:pagination": (...args: any[]) => void;
|
199
|
-
}, import('vue').
|
200
|
-
data: any[];
|
201
|
-
pagination: {
|
202
|
-
currentPage?: number;
|
203
|
-
pageSize?: number;
|
204
|
-
total?: number;
|
205
|
-
};
|
206
|
-
}> & Readonly<{
|
207
|
-
"onUpdate:pagination"?: ((...args: any[]) => any) | undefined;
|
208
|
-
}>, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
149
|
+
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
209
150
|
table: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
210
151
|
data: ArrayConstructor;
|
211
152
|
tailData: ObjectConstructor;
|
@@ -282,83 +223,7 @@ export declare const LovPagetable: import('../_util').SFCWithInstall<{
|
|
282
223
|
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
283
224
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
284
225
|
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
285
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').
|
286
|
-
data: ArrayConstructor;
|
287
|
-
tailData: ObjectConstructor;
|
288
|
-
pagination: import('vue').PropType<{
|
289
|
-
currentPage?: number;
|
290
|
-
pageSize?: number;
|
291
|
-
pageSizes?: number[];
|
292
|
-
total?: number;
|
293
|
-
}>;
|
294
|
-
paginationTeleported: {
|
295
|
-
type: BooleanConstructor;
|
296
|
-
default: boolean;
|
297
|
-
};
|
298
|
-
paginationPagerCount: NumberConstructor;
|
299
|
-
paginationShowTotal: {
|
300
|
-
type: BooleanConstructor;
|
301
|
-
default: boolean;
|
302
|
-
};
|
303
|
-
paginationShowSizes: {
|
304
|
-
type: BooleanConstructor;
|
305
|
-
default: boolean;
|
306
|
-
};
|
307
|
-
paginationShowJumber: {
|
308
|
-
type: BooleanConstructor;
|
309
|
-
default: boolean;
|
310
|
-
};
|
311
|
-
showRowNumber: {
|
312
|
-
type: BooleanConstructor;
|
313
|
-
default: boolean;
|
314
|
-
};
|
315
|
-
selectionMode: {
|
316
|
-
type: BooleanConstructor;
|
317
|
-
default: boolean;
|
318
|
-
};
|
319
|
-
currentRowMode: {
|
320
|
-
type: BooleanConstructor;
|
321
|
-
default: boolean;
|
322
|
-
};
|
323
|
-
size: import('vue').PropType<"" | "large" | "default" | "small">;
|
324
|
-
rowClassName: import('vue').PropType<string | ((data: {
|
325
|
-
rowData: any;
|
326
|
-
rowIndex: number;
|
327
|
-
}) => string)>;
|
328
|
-
rowStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
329
|
-
rowData: any;
|
330
|
-
rowIndex: number;
|
331
|
-
}) => import('vue').CSSProperties)>;
|
332
|
-
cellClassName: import('vue').PropType<string | ((data: {
|
333
|
-
rowData: any;
|
334
|
-
column: {
|
335
|
-
name: string;
|
336
|
-
head: string;
|
337
|
-
};
|
338
|
-
rowIndex: number;
|
339
|
-
columnIndex: number;
|
340
|
-
}) => string)>;
|
341
|
-
cellStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
342
|
-
rowData: any;
|
343
|
-
column: {
|
344
|
-
name: string;
|
345
|
-
head: string;
|
346
|
-
};
|
347
|
-
rowIndex: number;
|
348
|
-
columnIndex: number;
|
349
|
-
}) => import('vue').CSSProperties)>;
|
350
|
-
}>> & Readonly<{
|
351
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
352
|
-
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
353
|
-
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
354
|
-
onCurrentRowChange?: ((...args: any[]) => any) | undefined;
|
355
|
-
"onUpdate:pagination"?: ((...args: any[]) => any) | undefined;
|
356
|
-
onPaginationChange?: ((...args: any[]) => any) | undefined;
|
357
|
-
onRowClick?: ((...args: any[]) => any) | undefined;
|
358
|
-
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
359
|
-
onCellClick?: ((...args: any[]) => any) | undefined;
|
360
|
-
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
361
|
-
}>, {
|
226
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').PublicProps, {
|
362
227
|
paginationTeleported: boolean;
|
363
228
|
paginationShowTotal: boolean;
|
364
229
|
paginationShowSizes: boolean;
|