keli-ui 0.0.1 → 0.0.2
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/LICENSE +201 -0
- package/dist/keli-ui.css +1 -1
- package/dist/keli-ui.js +41806 -2942
- package/dist/keli-ui.umd.cjs +1 -1
- package/dist/types/lib/modeControl.d.ts +4 -0
- package/dist/types/lib/useButtonExec.d.ts +8 -0
- package/dist/types/packages/QueryComponents/QueryBar/QueryBarClient.vue.d.ts +43 -0
- package/dist/types/packages/QueryComponents/QueryBar/QueryBarMobile.vue.d.ts +40 -0
- package/dist/types/packages/QueryComponents/QueryBar/hooks/index.d.ts +6 -0
- package/dist/types/packages/QueryComponents/QueryBar/index.d.ts +78 -0
- package/dist/types/packages/QueryComponents/QueryDateTime/QueryDateTimeClient.vue.d.ts +16 -0
- package/dist/types/packages/QueryComponents/QueryDateTime/index.d.ts +2 -0
- package/dist/types/packages/QueryComponents/QueryInput/QueryInput.vue.d.ts +16 -0
- package/dist/types/packages/QueryComponents/QueryInput/index.d.ts +2 -0
- package/dist/types/packages/QueryComponents/QueryInputLike/QueryInputLike.vue.d.ts +16 -0
- package/dist/types/packages/QueryComponents/QueryInputLike/index.d.ts +2 -0
- package/dist/types/packages/QueryComponents/QuerySelect/QuerySelectClient.vue.d.ts +30 -0
- package/dist/types/packages/QueryComponents/QuerySelect/index.d.ts +2 -0
- package/dist/types/packages/TableComponents/TableCardRender/TableCardRenderClient.vue.d.ts +120 -0
- package/dist/types/packages/TableComponents/TableCardRender/TableCardRenderMobile.vue.d.ts +120 -0
- package/dist/types/packages/TableComponents/TableCardRender/index.d.ts +115 -0
- package/dist/types/packages/TableComponents/TableCheckBoxAsync/TableCheckBoxAsync.vue.d.ts +63 -0
- package/dist/types/packages/TableComponents/TableCheckBoxAsync/index.d.ts +2 -0
- package/dist/types/packages/TableComponents/TableInput/TableInput.vue.d.ts +57 -0
- package/dist/types/packages/TableComponents/TableInput/index.d.ts +2 -0
- package/dist/types/packages/TableComponents/TableInputNumber/TableInputNumber.vue.d.ts +57 -0
- package/dist/types/packages/TableComponents/TableInputNumber/index.d.ts +2 -0
- package/dist/types/packages/TableComponents/TableRender/TableRenderClient.vue.d.ts +132 -0
- package/dist/types/packages/TableComponents/TableRender/TableRenderMobile.vue.d.ts +120 -0
- package/dist/types/packages/TableComponents/TableRender/common/tableFrameFilterUtil.d.ts +2 -0
- package/dist/types/packages/TableComponents/TableRender/hooks/tableRender.hook.d.ts +0 -0
- package/dist/types/packages/TableComponents/TableRender/hooks/useCopyPaste.hook.d.ts +28 -0
- package/dist/types/packages/TableComponents/TableRender/index.d.ts +115 -0
- package/dist/types/packages/TableComponents/TableSelect/TableSelect.vue.d.ts +39 -0
- package/dist/types/packages/TableComponents/TableSelect/index.d.ts +2 -0
- package/dist/types/packages/TableComponents/TableSelectAsync/TableSelectAsync.vue.d.ts +39 -0
- package/dist/types/packages/TableComponents/TableSelectAsync/index.d.ts +2 -0
- package/dist/types/packages/TableComponents/TableSwitch/TableSwitch.vue.d.ts +39 -0
- package/dist/types/packages/TableComponents/TableSwitch/index.d.ts +2 -0
- package/dist/types/packages/TableComponents/TableTreeRender/TableTreeRender.vue.d.ts +130 -0
- package/dist/types/packages/TableComponents/TableTreeRender/index.d.ts +2 -0
- package/dist/types/packages/TableComponents/utils/dataFormatter.d.ts +20 -0
- package/dist/types/packages/ToolBar/ToolBarClient.vue.d.ts +24 -0
- package/dist/types/packages/ToolBar/ToolBarMobile.vue.d.ts +14 -0
- package/dist/types/packages/ToolBar/ToolBarProxy.vue.d.ts +14 -0
- package/dist/types/packages/ToolBar/index.d.ts +2 -0
- package/dist/types/packages/index.d.ts +16 -0
- package/dist/types/utils/base.d.ts +2 -0
- package/dist/types/utils/dataFormatter.d.ts +49 -0
- package/dist/types/utils/index.d.ts +4 -0
- package/dist/types/utils/msgTips.d.ts +26 -0
- package/dist/types/utils/sleep.d.ts +6 -0
- package/package.json +12 -9
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { TableComponentFrame } from '@/packages/types/tableFrame';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
value: {
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
detail: {
|
|
9
|
+
required: true;
|
|
10
|
+
type: PropType<TableComponentFrame>;
|
|
11
|
+
};
|
|
12
|
+
rowData: {
|
|
13
|
+
required: false;
|
|
14
|
+
default: () => {};
|
|
15
|
+
};
|
|
16
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
+
valueChange: (...args: any[]) => void;
|
|
18
|
+
"update:value": (...args: any[]) => void;
|
|
19
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
value: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
detail: {
|
|
25
|
+
required: true;
|
|
26
|
+
type: PropType<TableComponentFrame>;
|
|
27
|
+
};
|
|
28
|
+
rowData: {
|
|
29
|
+
required: false;
|
|
30
|
+
default: () => {};
|
|
31
|
+
};
|
|
32
|
+
}>> & Readonly<{
|
|
33
|
+
onValueChange?: (...args: any[]) => any;
|
|
34
|
+
"onUpdate:value"?: (...args: any[]) => any;
|
|
35
|
+
}>, {
|
|
36
|
+
value: boolean;
|
|
37
|
+
rowData: {};
|
|
38
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
39
|
+
export default _default;
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
import type { TableConfigInterface } from '@/packages/types/tableFrame';
|
|
3
|
+
import type { VxeGridProps } from 'vxe-table';
|
|
4
|
+
import type { TableQueryFrame } from '@/packages/types/queryFrame';
|
|
5
|
+
import type { KeliButton } from '@/packages/types/button';
|
|
6
|
+
import type { Pagination } from '@/packages/TableComponents/type';
|
|
7
|
+
declare var __VLS_13: {};
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
9
|
+
'tool-bar'?: (props: typeof __VLS_13) => any;
|
|
10
|
+
};
|
|
11
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
12
|
+
tableId: {
|
|
13
|
+
required: true;
|
|
14
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
15
|
+
};
|
|
16
|
+
tableConfig: {
|
|
17
|
+
required: true;
|
|
18
|
+
type: PropType<TableConfigInterface>;
|
|
19
|
+
};
|
|
20
|
+
vxeGridOptions: {
|
|
21
|
+
required: false;
|
|
22
|
+
type: PropType<VxeGridProps>;
|
|
23
|
+
};
|
|
24
|
+
columns: {
|
|
25
|
+
required: true;
|
|
26
|
+
type: PropType<any[]>;
|
|
27
|
+
};
|
|
28
|
+
queryConfig: {
|
|
29
|
+
required: false;
|
|
30
|
+
type: PropType<TableQueryFrame[]>;
|
|
31
|
+
default: any[];
|
|
32
|
+
};
|
|
33
|
+
tableToolButtons: {
|
|
34
|
+
required: false;
|
|
35
|
+
default: () => any[];
|
|
36
|
+
type: PropType<KeliButton[]>;
|
|
37
|
+
};
|
|
38
|
+
tableRowButtons: {
|
|
39
|
+
required: false;
|
|
40
|
+
default: () => any[];
|
|
41
|
+
type: PropType<KeliButton[]>;
|
|
42
|
+
};
|
|
43
|
+
tableData: {
|
|
44
|
+
required: true;
|
|
45
|
+
type: ArrayConstructor;
|
|
46
|
+
default(): any[];
|
|
47
|
+
};
|
|
48
|
+
tablePagination: {
|
|
49
|
+
required: false;
|
|
50
|
+
type: PropType<Pagination>;
|
|
51
|
+
default: () => {
|
|
52
|
+
currentPage: number;
|
|
53
|
+
pageSize: number;
|
|
54
|
+
total: number;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
58
|
+
getTableConfig: (...args: any[]) => void;
|
|
59
|
+
btnClick: (...args: any[]) => void;
|
|
60
|
+
queryClick: (...args: any[]) => void;
|
|
61
|
+
valueChange: (...args: any[]) => void;
|
|
62
|
+
treeLazyLoad: (...args: any[]) => void;
|
|
63
|
+
onSelection: (...args: any[]) => void;
|
|
64
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
65
|
+
tableId: {
|
|
66
|
+
required: true;
|
|
67
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
68
|
+
};
|
|
69
|
+
tableConfig: {
|
|
70
|
+
required: true;
|
|
71
|
+
type: PropType<TableConfigInterface>;
|
|
72
|
+
};
|
|
73
|
+
vxeGridOptions: {
|
|
74
|
+
required: false;
|
|
75
|
+
type: PropType<VxeGridProps>;
|
|
76
|
+
};
|
|
77
|
+
columns: {
|
|
78
|
+
required: true;
|
|
79
|
+
type: PropType<any[]>;
|
|
80
|
+
};
|
|
81
|
+
queryConfig: {
|
|
82
|
+
required: false;
|
|
83
|
+
type: PropType<TableQueryFrame[]>;
|
|
84
|
+
default: any[];
|
|
85
|
+
};
|
|
86
|
+
tableToolButtons: {
|
|
87
|
+
required: false;
|
|
88
|
+
default: () => any[];
|
|
89
|
+
type: PropType<KeliButton[]>;
|
|
90
|
+
};
|
|
91
|
+
tableRowButtons: {
|
|
92
|
+
required: false;
|
|
93
|
+
default: () => any[];
|
|
94
|
+
type: PropType<KeliButton[]>;
|
|
95
|
+
};
|
|
96
|
+
tableData: {
|
|
97
|
+
required: true;
|
|
98
|
+
type: ArrayConstructor;
|
|
99
|
+
default(): any[];
|
|
100
|
+
};
|
|
101
|
+
tablePagination: {
|
|
102
|
+
required: false;
|
|
103
|
+
type: PropType<Pagination>;
|
|
104
|
+
default: () => {
|
|
105
|
+
currentPage: number;
|
|
106
|
+
pageSize: number;
|
|
107
|
+
total: number;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
}>> & Readonly<{
|
|
111
|
+
onGetTableConfig?: (...args: any[]) => any;
|
|
112
|
+
onBtnClick?: (...args: any[]) => any;
|
|
113
|
+
onQueryClick?: (...args: any[]) => any;
|
|
114
|
+
onValueChange?: (...args: any[]) => any;
|
|
115
|
+
onTreeLazyLoad?: (...args: any[]) => any;
|
|
116
|
+
onOnSelection?: (...args: any[]) => any;
|
|
117
|
+
}>, {
|
|
118
|
+
queryConfig: TableQueryFrame[];
|
|
119
|
+
tableToolButtons: KeliButton[];
|
|
120
|
+
tableRowButtons: KeliButton[];
|
|
121
|
+
tableData: unknown[];
|
|
122
|
+
tablePagination: Pagination;
|
|
123
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
124
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
125
|
+
export default _default;
|
|
126
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
127
|
+
new (): {
|
|
128
|
+
$slots: S;
|
|
129
|
+
};
|
|
130
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { translateJSON, translateObj } from '@/packages/types/translate';
|
|
2
|
+
interface FormatterOptions {
|
|
3
|
+
/** 表格数据 */
|
|
4
|
+
cellValue: any;
|
|
5
|
+
tabObj?: translateObj;
|
|
6
|
+
translateJson: translateJSON;
|
|
7
|
+
fieldName: string;
|
|
8
|
+
/**
|
|
9
|
+
* 翻译后的数据缓存 // 配合formatterData.array食用
|
|
10
|
+
*/
|
|
11
|
+
translateObject?: any;
|
|
12
|
+
/**
|
|
13
|
+
* 循环索引
|
|
14
|
+
*/
|
|
15
|
+
translateIndexArray?: {
|
|
16
|
+
[propName: string]: any;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
export declare const customFormatter: (options: FormatterOptions) => any;
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { KeliButton } from '@/packages/types/button';
|
|
3
|
+
declare var __VLS_6: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
'custom-button'?: (props: typeof __VLS_6) => any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8
|
+
toolButtons: {
|
|
9
|
+
required: true;
|
|
10
|
+
type: PropType<KeliButton[]>;
|
|
11
|
+
};
|
|
12
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
toolButtons: {
|
|
14
|
+
required: true;
|
|
15
|
+
type: PropType<KeliButton[]>;
|
|
16
|
+
};
|
|
17
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
21
|
+
new (): {
|
|
22
|
+
$slots: S;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
import type { KeliButton } from '@/packages/types/button';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
toolButtons: {
|
|
5
|
+
required: true;
|
|
6
|
+
type: PropType<KeliButton[]>;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
+
toolButtons: {
|
|
10
|
+
required: true;
|
|
11
|
+
type: PropType<KeliButton[]>;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
import type { KeliButton } from '@/packages/types/button';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
toolButtons: {
|
|
5
|
+
required: true;
|
|
6
|
+
type: PropType<KeliButton[]>;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
+
toolButtons: {
|
|
10
|
+
required: true;
|
|
11
|
+
type: PropType<KeliButton[]>;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { App } from 'vue';
|
|
2
|
+
import "../style.css";
|
|
3
|
+
import KeliTableRender from "./TableComponents/TableRender";
|
|
4
|
+
import KeliTableCardRender from "./TableComponents/TableCardRender";
|
|
5
|
+
import KeliTableTreeRender from "./TableComponents/TableTreeRender";
|
|
6
|
+
import KeliTableCheckBoxAsync from "./TableComponents/TableCheckBoxAsync";
|
|
7
|
+
import KeliTableInput from '@/packages/TableComponents/TableInput/TableInput.vue';
|
|
8
|
+
import KeliTableInputNumber from '@/packages/TableComponents/TableInputNumber';
|
|
9
|
+
import KeliTableSelect from '@/packages/TableComponents/TableSelect';
|
|
10
|
+
import KeliTableSelectAsync from '@/packages/TableComponents/TableSelectAsync';
|
|
11
|
+
import KeliTableSwitch from '@/packages/TableComponents/TableSwitch';
|
|
12
|
+
export { KeliTableRender, KeliTableCardRender, KeliTableTreeRender, KeliTableCheckBoxAsync, KeliTableInput, KeliTableInputNumber, KeliTableSelect, KeliTableSelectAsync, KeliTableSwitch };
|
|
13
|
+
declare const _default: {
|
|
14
|
+
install(app: App): void;
|
|
15
|
+
};
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 格式化时间戳
|
|
3
|
+
*
|
|
4
|
+
* @param t
|
|
5
|
+
* @param f
|
|
6
|
+
*/
|
|
7
|
+
export declare const timestamp: (t: string, f?: string) => any;
|
|
8
|
+
export declare const stringList: (s: any) => string;
|
|
9
|
+
interface FormatterArray {
|
|
10
|
+
/**
|
|
11
|
+
* cellValue
|
|
12
|
+
*/
|
|
13
|
+
value: any;
|
|
14
|
+
/**
|
|
15
|
+
* 翻译的数组
|
|
16
|
+
*/
|
|
17
|
+
array: {
|
|
18
|
+
label: any;
|
|
19
|
+
value: any;
|
|
20
|
+
}[];
|
|
21
|
+
/**
|
|
22
|
+
* 字段名
|
|
23
|
+
*/
|
|
24
|
+
fieldName: string;
|
|
25
|
+
/**
|
|
26
|
+
* 已经循环过存放的数据
|
|
27
|
+
* {
|
|
28
|
+
* field1: {
|
|
29
|
+
* value: label,
|
|
30
|
+
* value2: label2
|
|
31
|
+
* },
|
|
32
|
+
* field2: {
|
|
33
|
+
* value: label
|
|
34
|
+
* }
|
|
35
|
+
* }
|
|
36
|
+
*/
|
|
37
|
+
translateObject: any;
|
|
38
|
+
/**
|
|
39
|
+
* 存放已循环过的索引
|
|
40
|
+
*/
|
|
41
|
+
translateIndexArray: any;
|
|
42
|
+
}
|
|
43
|
+
export declare const formatterData: {
|
|
44
|
+
toString: (value: any) => any;
|
|
45
|
+
parseInt: (value: any) => number;
|
|
46
|
+
array: (params: FormatterArray) => any;
|
|
47
|
+
};
|
|
48
|
+
declare const dataFormatter: any;
|
|
49
|
+
export default dataFormatter;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
type TipsType = 'error' | 'info' | 'success' | 'warning';
|
|
2
|
+
interface MsgParams {
|
|
3
|
+
title?: string;
|
|
4
|
+
msg: string;
|
|
5
|
+
/**
|
|
6
|
+
* 确定回调
|
|
7
|
+
*/
|
|
8
|
+
callback?: Function;
|
|
9
|
+
/**
|
|
10
|
+
* 取消回调
|
|
11
|
+
*/
|
|
12
|
+
catch?: Function;
|
|
13
|
+
/**
|
|
14
|
+
* 消息持续时间
|
|
15
|
+
*/
|
|
16
|
+
duration?: number;
|
|
17
|
+
}
|
|
18
|
+
interface MsgParamsTips extends MsgParams {
|
|
19
|
+
type: TipsType;
|
|
20
|
+
}
|
|
21
|
+
declare const msgTips: {
|
|
22
|
+
alert: (params: MsgParamsTips) => void;
|
|
23
|
+
elNotification: (params: MsgParamsTips) => void;
|
|
24
|
+
tips: (params: MsgParamsTips) => void;
|
|
25
|
+
};
|
|
26
|
+
export default msgTips;
|
package/package.json
CHANGED
|
@@ -1,21 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "keli-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.2",
|
|
5
5
|
"author": "Luv Letter",
|
|
6
6
|
"description": "配置化组件库",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"license": "Apache-2.0",
|
|
9
9
|
"files": [
|
|
10
|
-
"dist"
|
|
10
|
+
"dist",
|
|
11
|
+
"dist/types"
|
|
11
12
|
],
|
|
13
|
+
"types": "./dist/types/packages/index.d.ts",
|
|
12
14
|
"main": "./dist/keli-ui.umd.cjs",
|
|
13
15
|
"module": "./dist/keli-ui.js",
|
|
14
16
|
"exports": {
|
|
15
17
|
"./dist/keli-ui.css": "./dist/keli-ui.css",
|
|
16
18
|
".": {
|
|
17
19
|
"import": "./dist/keli-ui.js",
|
|
18
|
-
"require": "./dist/keli-ui.umd.cjs"
|
|
20
|
+
"require": "./dist/keli-ui.umd.cjs",
|
|
21
|
+
"types": "./dist/types/packages/index.d.ts"
|
|
19
22
|
}
|
|
20
23
|
},
|
|
21
24
|
"scripts": {
|
|
@@ -24,20 +27,20 @@
|
|
|
24
27
|
"preview": "vite preview"
|
|
25
28
|
},
|
|
26
29
|
"dependencies": {
|
|
30
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
27
31
|
"@vueuse/core": "^13.1.0",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
32
|
+
"element-plus": "^2.9.9",
|
|
33
|
+
"vant": "^4.9.19",
|
|
34
|
+
"vue": "^3.5.13",
|
|
35
|
+
"vxe-table": "^4.13.15"
|
|
30
36
|
},
|
|
31
37
|
"devDependencies": {
|
|
32
|
-
"@inspira-ui/plugins": "^0.0.1",
|
|
33
38
|
"@types/node": "^22.15.3",
|
|
34
39
|
"@vitejs/plugin-vue": "^5.2.2",
|
|
35
40
|
"@vue/tsconfig": "^0.7.0",
|
|
36
41
|
"class-variance-authority": "^0.7.1",
|
|
37
42
|
"clsx": "^2.1.1",
|
|
38
|
-
"
|
|
39
|
-
"tailwindcss": "^4.1.4",
|
|
40
|
-
"tailwindcss-animate": "^1.0.7",
|
|
43
|
+
"sass-embedded": "^1.87.0",
|
|
41
44
|
"terser": "^5.39.0",
|
|
42
45
|
"typescript": "~5.7.2",
|
|
43
46
|
"vite": "^6.3.1",
|