@deep-eye/core 1.2.97 → 1.2.99
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/CHANGELOG.md +20 -0
- package/dist/components/chat/ChatBot.vue.d.ts +4 -6
- package/dist/components/chat/ChatBot.vue.d.ts.map +1 -1
- package/dist/components/chat/components/ChatFileCard.vue.d.ts +2 -2
- package/dist/components/chat/components/ChatFileCard.vue.d.ts.map +1 -1
- package/dist/components/chat/components/ChatSender.vue.d.ts +12 -10
- package/dist/components/chat/components/ChatSender.vue.d.ts.map +1 -1
- package/dist/components/chat/components/ChatSkillEmpty.vue.d.ts +23 -0
- package/dist/components/chat/components/ChatSkillEmpty.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSkillPanel.vue.d.ts +44 -0
- package/dist/components/chat/components/ChatSkillPanel.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatTipMenu.vue.d.ts +35 -0
- package/dist/components/chat/components/ChatTipMenu.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ProcessStepGroup.vue.d.ts.map +1 -1
- package/dist/components/chat/components/document-viewer/DocumentViewer.vue.d.ts.map +1 -1
- package/dist/components/chat/components/document-viewer/ScreenshotCropOverlay.vue.d.ts +7 -3
- package/dist/components/chat/components/document-viewer/ScreenshotCropOverlay.vue.d.ts.map +1 -1
- package/dist/components/chat/components/document-viewer/office/OfficeDocumentViewer.vue.d.ts.map +1 -1
- package/dist/components/chat/components/document-viewer/screenshotCapture.d.ts +26 -13
- package/dist/components/chat/components/document-viewer/screenshotCapture.d.ts.map +1 -1
- package/dist/components/chat/components/index.d.ts +5 -0
- package/dist/components/chat/components/index.d.ts.map +1 -1
- package/dist/components/chat/composables/fetchModelList.d.ts +10 -4
- package/dist/components/chat/composables/fetchModelList.d.ts.map +1 -1
- package/dist/components/chat/composables/index.d.ts +2 -0
- package/dist/components/chat/composables/index.d.ts.map +1 -1
- package/dist/components/chat/composables/useChatSkillTipMenu.d.ts +37 -0
- package/dist/components/chat/composables/useChatSkillTipMenu.d.ts.map +1 -0
- package/dist/components/chat/composables/useChatTipMenu.d.ts +46 -0
- package/dist/components/chat/composables/useChatTipMenu.d.ts.map +1 -0
- package/dist/components/chat/harness/Tooltip.vue.d.ts +1 -1
- package/dist/components/chat/harness/Tooltip.vue.d.ts.map +1 -1
- package/dist/components/chat/index.d.ts +4 -1
- package/dist/components/chat/index.d.ts.map +1 -1
- package/dist/components/chat/types.d.ts +15 -13
- package/dist/components/chat/types.d.ts.map +1 -1
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/skill/api/index.d.ts +7 -0
- package/dist/components/skill/api/index.d.ts.map +1 -0
- package/dist/components/skill/api/skillApi.d.ts +9 -0
- package/dist/components/skill/api/skillApi.d.ts.map +1 -0
- package/dist/components/skill/api/skillApiPaths.d.ts +12 -0
- package/dist/components/skill/api/skillApiPaths.d.ts.map +1 -0
- package/dist/components/skill/api/skillAuth.d.ts +16 -0
- package/dist/components/skill/api/skillAuth.d.ts.map +1 -0
- package/dist/components/skill/api/skillAxios.d.ts +5 -0
- package/dist/components/skill/api/skillAxios.d.ts.map +1 -0
- package/dist/components/skill/api/skillCloudUrl.d.ts +15 -0
- package/dist/components/skill/api/skillCloudUrl.d.ts.map +1 -0
- package/dist/components/skill/components/ChatSkillCard.vue.d.ts +19 -0
- package/dist/components/skill/components/ChatSkillCard.vue.d.ts.map +1 -0
- package/dist/components/skill/components/ChatSkillCardSkeleton.vue.d.ts +4 -0
- package/dist/components/skill/components/ChatSkillCardSkeleton.vue.d.ts.map +1 -0
- package/dist/components/skill/components/ChatSkillDetailDialog.vue.d.ts +26 -0
- package/dist/components/skill/components/ChatSkillDetailDialog.vue.d.ts.map +1 -0
- package/dist/components/skill/components/index.d.ts +4 -0
- package/dist/components/skill/components/index.d.ts.map +1 -0
- package/dist/components/skill/composables/index.d.ts +3 -0
- package/dist/components/skill/composables/index.d.ts.map +1 -0
- package/dist/components/skill/composables/useChatSkills.d.ts +127 -0
- package/dist/components/skill/composables/useChatSkills.d.ts.map +1 -0
- package/dist/components/skill/index.d.ts +6 -0
- package/dist/components/skill/index.d.ts.map +1 -0
- package/dist/components/skill/skillCardModel.d.ts +11 -0
- package/dist/components/skill/skillCardModel.d.ts.map +1 -0
- package/dist/components/skill/types.d.ts +199 -0
- package/dist/components/skill/types.d.ts.map +1 -0
- package/dist/components/ui/components/UiDialog.vue.d.ts +46 -0
- package/dist/components/ui/components/UiDialog.vue.d.ts.map +1 -0
- package/dist/components/ui/components/UiImage.vue.d.ts +32 -0
- package/dist/components/ui/components/UiImage.vue.d.ts.map +1 -0
- package/dist/components/ui/components/UiMenu.vue.d.ts +71 -0
- package/dist/components/ui/components/UiMenu.vue.d.ts.map +1 -0
- package/dist/components/ui/components/UiMenuColumn.vue.d.ts +24 -0
- package/dist/components/ui/components/UiMenuColumn.vue.d.ts.map +1 -0
- package/dist/components/ui/components/UiMenuSubmenuColumn.vue.d.ts +29 -0
- package/dist/components/ui/components/UiMenuSubmenuColumn.vue.d.ts.map +1 -0
- package/dist/components/ui/components/UiMenuSubmenuSkeleton.vue.d.ts +9 -0
- package/dist/components/ui/components/UiMenuSubmenuSkeleton.vue.d.ts.map +1 -0
- package/dist/components/ui/components/UiSearchInput.vue.d.ts +17 -0
- package/dist/components/ui/components/UiSearchInput.vue.d.ts.map +1 -0
- package/dist/components/ui/components/UiSkeleton.vue.d.ts +23 -0
- package/dist/components/ui/components/UiSkeleton.vue.d.ts.map +1 -0
- package/dist/components/ui/components/UiSkeletonItem.vue.d.ts +9 -0
- package/dist/components/ui/components/UiSkeletonItem.vue.d.ts.map +1 -0
- package/dist/components/ui/components/UiTabs.vue.d.ts +16 -0
- package/dist/components/ui/components/UiTabs.vue.d.ts.map +1 -0
- package/dist/components/ui/components/index.d.ts +17 -0
- package/dist/components/ui/components/index.d.ts.map +1 -0
- package/dist/components/ui/composables/index.d.ts +3 -0
- package/dist/components/ui/composables/index.d.ts.map +1 -0
- package/dist/components/ui/composables/useUiMenuPanel.d.ts +25 -0
- package/dist/components/ui/composables/useUiMenuPanel.d.ts.map +1 -0
- package/dist/components/ui/index.d.ts +4 -0
- package/dist/components/ui/index.d.ts.map +1 -0
- package/dist/components/ui/types.d.ts +55 -0
- package/dist/components/ui/types.d.ts.map +1 -0
- package/dist/components/ui/uiImageLazy.d.ts +14 -0
- package/dist/components/ui/uiImageLazy.d.ts.map +1 -0
- package/dist/{index--usqMy3P.js → index-BMtOprb0.js} +1 -1
- package/dist/{index-BcY_pGht.js → index-BdKHWE9q.js} +1 -1
- package/dist/{index-u3KUewpU.js → index-Cfa1rWQg.js} +34273 -29426
- package/dist/{index-WKjS1fUz.cjs → index-D-sSuThI.cjs} +214 -185
- package/dist/{index--riJVrgq.cjs → index-DBs0MjQj.cjs} +1 -1
- package/dist/{index-BA8BlDhT.cjs → index-xHxkbtlb.cjs} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +277 -224
- package/dist/style.css +2 -2
- package/package.json +2 -1
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
import type { Component } from 'vue';
|
|
2
|
+
export declare const CHAT_SKILL_ALL: "all";
|
|
3
|
+
/** 发布渠道:首页 */
|
|
4
|
+
export declare const CHAT_SKILL_CHANNEL_HOME: "HOME";
|
|
5
|
+
/** 发布渠道:技能广场 */
|
|
6
|
+
export declare const CHAT_SKILL_CHANNEL_PLAZA: "SKILL_PLAZA";
|
|
7
|
+
/** 渠道子选项:热门常用 */
|
|
8
|
+
export declare const CHAT_SKILL_OPTION_HOT_DAILY: "HOT_DAILY";
|
|
9
|
+
/** TipMenu 专家/技能全量拉取条数(宿主显式传 size 时用) */
|
|
10
|
+
export declare const CHAT_SKILL_MENU_PAGE_SIZE = 99999;
|
|
11
|
+
/** TipMenu 懒加载分页默认每页条数 */
|
|
12
|
+
export declare const CHAT_SKILL_MENU_LAZY_PAGE_SIZE = 20;
|
|
13
|
+
export type ChatSkillDisplayCategory = 'TOP' | 'FEATURED' | 'DAILY';
|
|
14
|
+
export type ChatSkillCategory = typeof CHAT_SKILL_ALL | string;
|
|
15
|
+
export interface ChatSkillType {
|
|
16
|
+
id: string;
|
|
17
|
+
name: string;
|
|
18
|
+
delFlag?: boolean;
|
|
19
|
+
createDate?: string;
|
|
20
|
+
lastModifiedDate?: string;
|
|
21
|
+
}
|
|
22
|
+
export interface ChatSkillTab {
|
|
23
|
+
key: string;
|
|
24
|
+
label: string;
|
|
25
|
+
}
|
|
26
|
+
export interface ChatSkillPublishedSearchParams {
|
|
27
|
+
page?: number;
|
|
28
|
+
size?: number;
|
|
29
|
+
/** 发布渠道,如 `HOME`(首页)、`SKILL_PLAZA`(技能广场) */
|
|
30
|
+
channelCode?: string | string[];
|
|
31
|
+
/** 渠道子选项数组,如 `['HOT_DAILY']`;axios 默认序列化为 `optionCodes[]=HOT_DAILY` */
|
|
32
|
+
optionCodes?: string[];
|
|
33
|
+
/** 展示子分类,仅热门常用渠道生效 */
|
|
34
|
+
displayCategory?: ChatSkillDisplayCategory;
|
|
35
|
+
type?: string;
|
|
36
|
+
name?: string;
|
|
37
|
+
tags?: string | string[];
|
|
38
|
+
services?: string | string[];
|
|
39
|
+
skillKind?: 'FILE' | 'API';
|
|
40
|
+
}
|
|
41
|
+
/** 底部面板 getPublishedSkillsAndScenes 默认 query */
|
|
42
|
+
export declare const CHAT_SKILL_PANEL_DEFAULT_PARAMS: {
|
|
43
|
+
readonly channelCode: "SKILL_PLAZA";
|
|
44
|
+
readonly optionCodes: ["HOT_DAILY"];
|
|
45
|
+
readonly size: 6;
|
|
46
|
+
readonly page: 1;
|
|
47
|
+
};
|
|
48
|
+
/** TipMenu getPublishedSkills / getPublishedScenes 默认 query(不含 optionCodes) */
|
|
49
|
+
export declare const CHAT_SKILL_MENU_DEFAULT_PARAMS: {
|
|
50
|
+
readonly channelCode: "SKILL_PLAZA";
|
|
51
|
+
readonly page: 1;
|
|
52
|
+
readonly size: 20;
|
|
53
|
+
};
|
|
54
|
+
export interface ChatSkillPublishedResourceBase {
|
|
55
|
+
id: string;
|
|
56
|
+
projectId?: string;
|
|
57
|
+
name: string;
|
|
58
|
+
description?: string;
|
|
59
|
+
avatar?: string | null;
|
|
60
|
+
tags?: string[];
|
|
61
|
+
shortcuts?: string[];
|
|
62
|
+
type?: string | null;
|
|
63
|
+
publishChannels?: Array<{
|
|
64
|
+
channelCode: string;
|
|
65
|
+
optionCodes?: string[];
|
|
66
|
+
}>;
|
|
67
|
+
homePageDisplayCategory?: ChatSkillDisplayCategory | null;
|
|
68
|
+
homePageDisplayCategoryOrder?: number;
|
|
69
|
+
slug?: string;
|
|
70
|
+
services?: string[];
|
|
71
|
+
createdBy?: string;
|
|
72
|
+
createdAt?: string;
|
|
73
|
+
updatedAt?: string;
|
|
74
|
+
}
|
|
75
|
+
export interface ChatPublishedSkill extends ChatSkillPublishedResourceBase {
|
|
76
|
+
moduleId?: string;
|
|
77
|
+
skillKind?: string;
|
|
78
|
+
metadataName?: string;
|
|
79
|
+
metadataDescription?: string | null;
|
|
80
|
+
status?: string;
|
|
81
|
+
latestApprovedVersionId?: string;
|
|
82
|
+
latestVersionId?: string;
|
|
83
|
+
downloadCount?: number;
|
|
84
|
+
}
|
|
85
|
+
export interface ChatPublishedScene extends ChatSkillPublishedResourceBase {
|
|
86
|
+
sortOrder?: number;
|
|
87
|
+
}
|
|
88
|
+
export type ChatPublishedSkillOrScene = ChatPublishedSkill | ChatPublishedScene;
|
|
89
|
+
export interface ChatSkillsAndScenesData {
|
|
90
|
+
skill: ChatPublishedSkill[];
|
|
91
|
+
scenes: ChatPublishedScene[];
|
|
92
|
+
}
|
|
93
|
+
export interface ChatSkillsAndScenesResult {
|
|
94
|
+
data: ChatSkillsAndScenesData;
|
|
95
|
+
total: number;
|
|
96
|
+
page: number;
|
|
97
|
+
size: number;
|
|
98
|
+
}
|
|
99
|
+
export interface ChatSkillPageResponse<T> {
|
|
100
|
+
items: T[];
|
|
101
|
+
total: number;
|
|
102
|
+
page: number;
|
|
103
|
+
size: number;
|
|
104
|
+
}
|
|
105
|
+
export interface ChatSkillCardModel {
|
|
106
|
+
id?: string;
|
|
107
|
+
/** 面板 Card 来源:场景进 quick-action,技能进 @ mention */
|
|
108
|
+
kind?: 'skill' | 'scene';
|
|
109
|
+
title: string;
|
|
110
|
+
description?: string;
|
|
111
|
+
avatar?: string;
|
|
112
|
+
/** 右上角角标,如「AI助手」 */
|
|
113
|
+
badge?: string;
|
|
114
|
+
tags?: string[];
|
|
115
|
+
/** 详情弹窗「专家帮你做」快捷提示 */
|
|
116
|
+
shortcuts?: string[];
|
|
117
|
+
}
|
|
118
|
+
export interface ChatKnowledgeListParams {
|
|
119
|
+
type?: number;
|
|
120
|
+
typeId?: string;
|
|
121
|
+
search?: string;
|
|
122
|
+
}
|
|
123
|
+
export interface ChatKnowledgeItem {
|
|
124
|
+
id: string;
|
|
125
|
+
name: string;
|
|
126
|
+
avatar: string;
|
|
127
|
+
}
|
|
128
|
+
export interface ChatSkillFetchConfig {
|
|
129
|
+
/**
|
|
130
|
+
* 可选:覆盖云网关前缀。
|
|
131
|
+
* 默认本地 localhost → `/cloud-prod`,线上 → `/cloud`(运行时解析,npm 发布后仍有效)。
|
|
132
|
+
*/
|
|
133
|
+
cloudPrefix?: string;
|
|
134
|
+
/** 鉴权,对齐 basicagentweb axios 拦截器 */
|
|
135
|
+
token: string;
|
|
136
|
+
userId: string;
|
|
137
|
+
schoolCode: string;
|
|
138
|
+
appid?: string;
|
|
139
|
+
/**
|
|
140
|
+
* 底部卡片面板 getPublishedSkillsAndScenes 的 query。
|
|
141
|
+
* 未传字段用库内默认:`SKILL_PLAZA` + `HOT_DAILY` + `size=6` + `page=1`;
|
|
142
|
+
* 传入的字段覆盖对应默认(可只传部分)。
|
|
143
|
+
*/
|
|
144
|
+
params?: ChatSkillPublishedSearchParams;
|
|
145
|
+
/**
|
|
146
|
+
* TipMenu 技能 getPublishedSkills 的 query。
|
|
147
|
+
* 未传字段用库内默认:`channelCode=SKILL_PLAZA`、`page=1`、`size=99999`(无 optionCodes);
|
|
148
|
+
* 传入的字段覆盖对应默认(可只传部分)。
|
|
149
|
+
*/
|
|
150
|
+
skillParams?: ChatSkillPublishedSearchParams;
|
|
151
|
+
/**
|
|
152
|
+
* TipMenu 专家 getPublishedScenes 的 query。
|
|
153
|
+
* 未传字段用库内默认:`channelCode=SKILL_PLAZA`、`page=1`、`size=99999`(无 optionCodes);
|
|
154
|
+
* 传入的字段覆盖对应默认(可只传部分)。
|
|
155
|
+
*/
|
|
156
|
+
sceneParams?: ChatSkillPublishedSearchParams;
|
|
157
|
+
/** 知识库简表 findSimpleKnowledgeBaseList */
|
|
158
|
+
knowledgeParams?: ChatKnowledgeListParams;
|
|
159
|
+
}
|
|
160
|
+
/** TipMenu 子菜单模式:lazy 与 virtualScroll 互斥,默认均为 false */
|
|
161
|
+
export interface ChatTipMenuSubmenuOptions {
|
|
162
|
+
/** 触底分页加载 */
|
|
163
|
+
lazy?: boolean;
|
|
164
|
+
/** 虚拟滚动(与 lazy 互斥) */
|
|
165
|
+
virtualScroll?: boolean;
|
|
166
|
+
}
|
|
167
|
+
export type ChatTipMenuItemConfig = boolean | ChatTipMenuSubmenuOptions;
|
|
168
|
+
export interface ChatTipMenuItems {
|
|
169
|
+
upload?: boolean;
|
|
170
|
+
expert?: ChatTipMenuItemConfig;
|
|
171
|
+
skill?: ChatTipMenuItemConfig;
|
|
172
|
+
knowledge?: ChatTipMenuItemConfig;
|
|
173
|
+
screenshot?: boolean;
|
|
174
|
+
}
|
|
175
|
+
export declare function isTipMenuItemVisible(value: ChatTipMenuItemConfig | undefined, defaultVisible?: boolean): boolean;
|
|
176
|
+
export declare function resolveTipMenuSubmenuOptions(value: ChatTipMenuItemConfig | undefined): {
|
|
177
|
+
lazy: boolean;
|
|
178
|
+
virtualScroll: boolean;
|
|
179
|
+
};
|
|
180
|
+
export type ChatTipMenuKind = 'expert' | 'skill' | 'knowledge';
|
|
181
|
+
export interface ChatTipMenuSubItem {
|
|
182
|
+
id: string;
|
|
183
|
+
label: string;
|
|
184
|
+
avatar?: string;
|
|
185
|
+
description?: string;
|
|
186
|
+
}
|
|
187
|
+
export interface ChatTipMenuCustomItem {
|
|
188
|
+
id: string;
|
|
189
|
+
label: string;
|
|
190
|
+
icon: Component;
|
|
191
|
+
disabled?: boolean;
|
|
192
|
+
children?: readonly ChatTipMenuSubItem[];
|
|
193
|
+
}
|
|
194
|
+
export interface ChatApiResponse<T> {
|
|
195
|
+
status: number;
|
|
196
|
+
message?: string;
|
|
197
|
+
result?: T;
|
|
198
|
+
}
|
|
199
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/skill/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
title?: string;
|
|
3
|
+
width?: string;
|
|
4
|
+
closeOnClickModal?: boolean;
|
|
5
|
+
closeOnPressEscape?: boolean;
|
|
6
|
+
showClose?: boolean;
|
|
7
|
+
lockScroll?: boolean;
|
|
8
|
+
zIndex?: number;
|
|
9
|
+
/** 弹窗圆角,默认 16px */
|
|
10
|
+
radius?: string;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_ModelProps = {
|
|
13
|
+
modelValue?: boolean;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
16
|
+
declare var __VLS_13: {}, __VLS_20: {}, __VLS_22: {};
|
|
17
|
+
type __VLS_Slots = {} & {
|
|
18
|
+
header?: (props: typeof __VLS_13) => any;
|
|
19
|
+
} & {
|
|
20
|
+
default?: (props: typeof __VLS_20) => any;
|
|
21
|
+
} & {
|
|
22
|
+
footer?: (props: typeof __VLS_22) => any;
|
|
23
|
+
};
|
|
24
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
|
+
"update:modelValue": (value: boolean) => any;
|
|
26
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
27
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
28
|
+
}>, {
|
|
29
|
+
width: string;
|
|
30
|
+
title: string;
|
|
31
|
+
zIndex: number;
|
|
32
|
+
closeOnClickModal: boolean;
|
|
33
|
+
closeOnPressEscape: boolean;
|
|
34
|
+
showClose: boolean;
|
|
35
|
+
lockScroll: boolean;
|
|
36
|
+
radius: string;
|
|
37
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
38
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
39
|
+
declare const _default: typeof __VLS_export;
|
|
40
|
+
export default _default;
|
|
41
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
42
|
+
new (): {
|
|
43
|
+
$slots: S;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
//# sourceMappingURL=UiDialog.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UiDialog.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/components/UiDialog.vue"],"names":[],"mappings":"AAmMA,KAAK,WAAW,GAAG;IACf,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,mBAAmB;IACnB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB,CAAC;AAmCJ,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAeF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAwIxD,QAAA,IAAI,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AACpE,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC5C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAK/C,QAAA,MAAM,UAAU;;;;;WA7MJ,MAAM;WADN,MAAM;YAML,MAAM;uBAJK,OAAO;wBACN,OAAO;eAChB,OAAO;gBACN,OAAO;YAGX,MAAM;6EA0MjB,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { type UiImageFit } from '../uiImageLazy';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
src?: string;
|
|
4
|
+
alt?: string;
|
|
5
|
+
fit?: UiImageFit;
|
|
6
|
+
/** 开启懒加载(对齐 Element Plus Image.lazy) */
|
|
7
|
+
lazy?: boolean;
|
|
8
|
+
/** 原生 loading 属性,lazy 时优先于 lazy 走浏览器原生懒加载 */
|
|
9
|
+
loading?: 'eager' | 'lazy';
|
|
10
|
+
/** 懒加载滚动容器(选择器或 HTMLElement) */
|
|
11
|
+
scrollContainer?: string | HTMLElement;
|
|
12
|
+
};
|
|
13
|
+
declare var __VLS_1: {}, __VLS_3: {};
|
|
14
|
+
type __VLS_Slots = {} & {
|
|
15
|
+
placeholder?: (props: typeof __VLS_1) => any;
|
|
16
|
+
} & {
|
|
17
|
+
error?: (props: typeof __VLS_3) => any;
|
|
18
|
+
};
|
|
19
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
20
|
+
fit: UiImageFit;
|
|
21
|
+
lazy: boolean;
|
|
22
|
+
alt: string;
|
|
23
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
25
|
+
declare const _default: typeof __VLS_export;
|
|
26
|
+
export default _default;
|
|
27
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
28
|
+
new (): {
|
|
29
|
+
$slots: S;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
//# sourceMappingURL=UiImage.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UiImage.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/components/UiImage.vue"],"names":[],"mappings":"AAqMA,OAAO,EAIL,KAAK,UAAU,EAChB,MAAM,gBAAgB,CAAA;AAIvB,KAAK,WAAW,GAAG;IACf,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,UAAU,CAAA;IAChB,wCAAwC;IACxC,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,6CAA6C;IAC7C,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,CAAA;IAC1B,gCAAgC;IAChC,eAAe,CAAC,EAAE,MAAM,GAAG,WAAW,CAAA;CACvC,CAAC;AA2KJ,QAAA,IAAI,OAAO,IAAU,EAAE,OAAO,IAAW,CAAE;AAC3C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAChD;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAO7C,QAAA,MAAM,UAAU;SA5LN,UAAU;UAET,OAAO;SAHR,MAAM;6EAgMd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import type { UiMenuItem, UiMenuSubItem } from '../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
anchor: HTMLElement | null;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
items?: readonly UiMenuItem[];
|
|
6
|
+
};
|
|
7
|
+
type __VLS_ModelProps = {
|
|
8
|
+
'open'?: boolean;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
11
|
+
declare var __VLS_22: {
|
|
12
|
+
item: UiMenuItem;
|
|
13
|
+
}, __VLS_41: {
|
|
14
|
+
item: UiMenuItem;
|
|
15
|
+
};
|
|
16
|
+
type __VLS_Slots = {} & {
|
|
17
|
+
'item-icon'?: (props: typeof __VLS_22) => any;
|
|
18
|
+
} & {
|
|
19
|
+
'submenu-footer'?: (props: typeof __VLS_41) => any;
|
|
20
|
+
};
|
|
21
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
|
+
search: (payload: {
|
|
23
|
+
item: UiMenuItem;
|
|
24
|
+
keyword: string;
|
|
25
|
+
}) => any;
|
|
26
|
+
select: (payload: {
|
|
27
|
+
item: UiMenuItem;
|
|
28
|
+
subItem: UiMenuSubItem;
|
|
29
|
+
}) => any;
|
|
30
|
+
click: (payload: {
|
|
31
|
+
item: UiMenuItem;
|
|
32
|
+
}) => any;
|
|
33
|
+
"load-more": (payload: {
|
|
34
|
+
item: UiMenuItem;
|
|
35
|
+
}) => any;
|
|
36
|
+
"submenu-open": (payload: {
|
|
37
|
+
item: UiMenuItem;
|
|
38
|
+
}) => any;
|
|
39
|
+
"update:open": (value: boolean) => any;
|
|
40
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
41
|
+
onSearch?: ((payload: {
|
|
42
|
+
item: UiMenuItem;
|
|
43
|
+
keyword: string;
|
|
44
|
+
}) => any) | undefined;
|
|
45
|
+
onSelect?: ((payload: {
|
|
46
|
+
item: UiMenuItem;
|
|
47
|
+
subItem: UiMenuSubItem;
|
|
48
|
+
}) => any) | undefined;
|
|
49
|
+
onClick?: ((payload: {
|
|
50
|
+
item: UiMenuItem;
|
|
51
|
+
}) => any) | undefined;
|
|
52
|
+
"onLoad-more"?: ((payload: {
|
|
53
|
+
item: UiMenuItem;
|
|
54
|
+
}) => any) | undefined;
|
|
55
|
+
"onSubmenu-open"?: ((payload: {
|
|
56
|
+
item: UiMenuItem;
|
|
57
|
+
}) => any) | undefined;
|
|
58
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
59
|
+
}>, {
|
|
60
|
+
disabled: boolean;
|
|
61
|
+
items: readonly UiMenuItem[];
|
|
62
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
63
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
64
|
+
declare const _default: typeof __VLS_export;
|
|
65
|
+
export default _default;
|
|
66
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
67
|
+
new (): {
|
|
68
|
+
$slots: S;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
//# sourceMappingURL=UiMenu.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UiMenu.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/components/UiMenu.vue"],"names":[],"mappings":"AA+NA,OAAO,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAMzD,KAAK,WAAW,GAAG;IACf,MAAM,EAAE,WAAW,GAAG,IAAI,CAAA;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,KAAK,CAAC,EAAE,SAAS,UAAU,EAAE,CAAA;CAC9B,CAAC;AAwHJ,KAAK,gBAAgB,GAAG;IACxB,MAAM,CAAC,EAAE,OAAO,CAAC;CAChB,CAAC;AASF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA8LxD,QAAA,IAAI,QAAQ;;CAAW,EAAE,QAAQ;;CAAY,CAAE;AAC/C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GACjD;IAAE,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAMzD,QAAA,MAAM,UAAU;;cA9TY,UAAU;iBAAW,MAAM;;;cAD3B,UAAU;iBAAW,aAAa;;;cADnC,UAAU;;;cAIJ,UAAU;;;cADP,UAAU;;;;;cADlB,UAAU;iBAAW,MAAM;;;cAD3B,UAAU;iBAAW,aAAa;;;cADnC,UAAU;;;cAIJ,UAAU;;;cADP,UAAU;;;;cAf/B,OAAO;WACV,SAAS,UAAU,EAAE;6EA+U/B,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { UiMenuItem } from '../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
items: readonly UiMenuItem[];
|
|
4
|
+
};
|
|
5
|
+
declare var __VLS_1: {
|
|
6
|
+
item: UiMenuItem;
|
|
7
|
+
};
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
9
|
+
'item-icon'?: (props: typeof __VLS_1) => any;
|
|
10
|
+
};
|
|
11
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
+
click: (item: UiMenuItem) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
|
+
onClick?: ((item: UiMenuItem) => any) | undefined;
|
|
15
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
17
|
+
declare const _default: typeof __VLS_export;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=UiMenuColumn.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UiMenuColumn.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/components/UiMenuColumn.vue"],"names":[],"mappings":"AAqHA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAA;AAI1C,KAAK,WAAW,GAAG;IACjB,KAAK,EAAE,SAAS,UAAU,EAAE,CAAA;CAC7B,CAAC;AAiIF,QAAA,IAAI,OAAO;;CAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAKnD,QAAA,MAAM,UAAU;;;;kFAGd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AACzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { UiMenuItem, UiMenuSubItem } from '../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
item: UiMenuItem;
|
|
4
|
+
keyword: string;
|
|
5
|
+
};
|
|
6
|
+
declare var __VLS_37: {
|
|
7
|
+
item: UiMenuItem;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_Slots = {} & {
|
|
10
|
+
footer?: (props: typeof __VLS_37) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
+
select: (subItem: UiMenuSubItem) => any;
|
|
14
|
+
"update:keyword": (value: string) => any;
|
|
15
|
+
"load-more": () => any;
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
17
|
+
onSelect?: ((subItem: UiMenuSubItem) => any) | undefined;
|
|
18
|
+
"onUpdate:keyword"?: ((value: string) => any) | undefined;
|
|
19
|
+
"onLoad-more"?: (() => any) | undefined;
|
|
20
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
22
|
+
declare const _default: typeof __VLS_export;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
//# sourceMappingURL=UiMenuSubmenuColumn.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UiMenuSubmenuColumn.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/components/UiMenuSubmenuColumn.vue"],"names":[],"mappings":"AAwYA,OAAO,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAOzD,KAAK,WAAW,GAAG;IACjB,IAAI,EAAE,UAAU,CAAA;IAChB,OAAO,EAAE,MAAM,CAAA;CAChB,CAAC;AAubF,QAAA,IAAI,QAAQ;;CAAY,CAAE;AAC1B,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAK/C,QAAA,MAAM,UAAU;;;;;;;;kFAGd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AACzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
rows?: number;
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
+
rows: number;
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
8
|
+
export default _default;
|
|
9
|
+
//# sourceMappingURL=UiMenuSubmenuSkeleton.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UiMenuSubmenuSkeleton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/components/UiMenuSubmenuSkeleton.vue"],"names":[],"mappings":"AA4DA,KAAK,WAAW,GAAG;IACf,IAAI,CAAC,EAAE,MAAM,CAAA;CACd,CAAC;AAqFJ,QAAA,MAAM,YAAY;UAtFP,MAAM;6EAyFf,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
placeholder?: string;
|
|
3
|
+
};
|
|
4
|
+
type __VLS_ModelProps = {
|
|
5
|
+
modelValue?: string;
|
|
6
|
+
};
|
|
7
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (value: string) => any;
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
11
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
12
|
+
}>, {
|
|
13
|
+
placeholder: string;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
16
|
+
export default _default;
|
|
17
|
+
//# sourceMappingURL=UiSearchInput.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UiSearchInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/components/UiSearchInput.vue"],"names":[],"mappings":"AAyGA,KAAK,WAAW,GAAG;IACf,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB,CAAC;AAkBJ,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAQF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAsFxD,QAAA,MAAM,YAAY;;;;;iBAnHA,MAAM;6EAuHtB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
animated?: boolean;
|
|
3
|
+
tag?: string;
|
|
4
|
+
};
|
|
5
|
+
declare var __VLS_8: {}, __VLS_10: {};
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
7
|
+
template?: (props: typeof __VLS_8) => any;
|
|
8
|
+
} & {
|
|
9
|
+
default?: (props: typeof __VLS_10) => any;
|
|
10
|
+
};
|
|
11
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
12
|
+
animated: boolean;
|
|
13
|
+
tag: string;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=UiSkeleton.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UiSkeleton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/components/UiSkeleton.vue"],"names":[],"mappings":"AA+CA,KAAK,WAAW,GAAG;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,GAAG,CAAC,EAAE,MAAM,CAAA;CACb,CAAC;AAwDJ,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAW,CAAE;AAC5C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAKhD,QAAA,MAAM,UAAU;cAlED,OAAO;SACZ,MAAM;6EAoEd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
variant?: 'text' | 'circle' | 'rect' | 'image' | 'h1' | 'h3' | 'p' | 'button';
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
+
variant: "text" | "circle" | "rect" | "image" | "h1" | "h3" | "p" | "button";
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
8
|
+
export default _default;
|
|
9
|
+
//# sourceMappingURL=UiSkeletonItem.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UiSkeletonItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/components/UiSkeletonItem.vue"],"names":[],"mappings":"AA4EA,KAAK,WAAW,GAAG;IACf,OAAO,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,GAAG,IAAI,GAAG,GAAG,GAAG,QAAQ,CAAA;CAC9E,CAAC;AA4CJ,QAAA,MAAM,YAAY;aA7CJ,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,GAAG,IAAI,GAAG,GAAG,GAAG,QAAQ;6EAgD/E,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { UiTab } from '../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
tabs: readonly UiTab[];
|
|
4
|
+
};
|
|
5
|
+
type __VLS_ModelProps = {
|
|
6
|
+
'activeCategory': string;
|
|
7
|
+
};
|
|
8
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
9
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
"update:activeCategory": (value: string) => any;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
12
|
+
"onUpdate:activeCategory"?: ((value: string) => any) | undefined;
|
|
13
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
15
|
+
export default _default;
|
|
16
|
+
//# sourceMappingURL=UiTabs.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UiTabs.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/components/UiTabs.vue"],"names":[],"mappings":"AA4PA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,UAAU,CAAA;AAIrC,KAAK,WAAW,GAAG;IACjB,IAAI,EAAE,SAAS,KAAK,EAAE,CAAA;CACvB,CAAC;AAkFF,KAAK,gBAAgB,GAAG;IACxB,gBAAgB,EAAE,MAAM,CAAC;CACxB,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAoHxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export { default as UiDialog } from './UiDialog.vue';
|
|
2
|
+
export { default as UiTabs } from './UiTabs.vue';
|
|
3
|
+
export { default as UiSkeleton } from './UiSkeleton.vue';
|
|
4
|
+
export { default as UiSkeletonItem } from './UiSkeletonItem.vue';
|
|
5
|
+
export { default as UiMenuSubmenuSkeleton } from './UiMenuSubmenuSkeleton.vue';
|
|
6
|
+
export { default as UiSearchInput } from './UiSearchInput.vue';
|
|
7
|
+
export { default as UiImage } from './UiImage.vue';
|
|
8
|
+
export { default as UiMenu } from './UiMenu.vue';
|
|
9
|
+
export { default as UiMenuColumn } from './UiMenuColumn.vue';
|
|
10
|
+
export { default as UiMenuSubmenuColumn } from './UiMenuSubmenuColumn.vue';
|
|
11
|
+
/** @deprecated 使用 UiDialog */
|
|
12
|
+
export { default as ChatDialog } from './UiDialog.vue';
|
|
13
|
+
/** @deprecated 使用 UiTabs */
|
|
14
|
+
export { default as ChatSkillTabs } from './UiTabs.vue';
|
|
15
|
+
/** @deprecated 使用 UiSkeleton */
|
|
16
|
+
export { default as ChatSkeletonItem } from './UiSkeleton.vue';
|
|
17
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,cAAc,CAAA;AAChD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAA;AACxD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAChE,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,6BAA6B,CAAA;AAC9E,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAC9D,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,eAAe,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,cAAc,CAAA;AAChD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAC5D,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,2BAA2B,CAAA;AAE1E,8BAA8B;AAC9B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,gBAAgB,CAAA;AACtD,4BAA4B;AAC5B,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,cAAc,CAAA;AACvD,gCAAgC;AAChC,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,kBAAkB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/composables/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAA;AACzF,YAAY,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAA"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { type InjectionKey, type Ref } from 'vue';
|
|
2
|
+
import type { UiMenuItem } from '../types';
|
|
3
|
+
export interface UiMenuPanelContext {
|
|
4
|
+
disabled: Ref<boolean>;
|
|
5
|
+
expandingItemId: Ref<string | null>;
|
|
6
|
+
expandItem: (item: UiMenuItem, row: HTMLElement) => void;
|
|
7
|
+
collapseSubmenu: () => void;
|
|
8
|
+
isFocusInSubmenu: () => boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare const UI_MENU_PANEL_KEY: InjectionKey<UiMenuPanelContext>;
|
|
11
|
+
export declare function useUiMenuPanel(options: {
|
|
12
|
+
disabled: Ref<boolean>;
|
|
13
|
+
hoveredRowRef: Ref<HTMLElement | null>;
|
|
14
|
+
isFocusInSubmenu: () => boolean;
|
|
15
|
+
onExpandChange?: (item: UiMenuItem | null) => void;
|
|
16
|
+
}): {
|
|
17
|
+
expandingItemId: Ref<string | null, string | null>;
|
|
18
|
+
expandItem: (item: UiMenuItem, row: HTMLElement) => void;
|
|
19
|
+
collapseSubmenu: () => void;
|
|
20
|
+
createContext: () => UiMenuPanelContext;
|
|
21
|
+
};
|
|
22
|
+
export declare function useUiMenuPanelInject(): UiMenuPanelContext;
|
|
23
|
+
export declare function useUiMenuPanelProvide(context: UiMenuPanelContext): void;
|
|
24
|
+
export declare function useExpandingItem(items: Ref<readonly UiMenuItem[]>, expandingItemId: Ref<string | null>): import("vue").ComputedRef<UiMenuItem | null>;
|
|
25
|
+
//# sourceMappingURL=useUiMenuPanel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useUiMenuPanel.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/composables/useUiMenuPanel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkC,KAAK,YAAY,EAAE,KAAK,GAAG,EAAE,MAAM,KAAK,CAAA;AACjF,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAA;AAE1C,MAAM,WAAW,kBAAkB;IACjC,QAAQ,EAAE,GAAG,CAAC,OAAO,CAAC,CAAA;IACtB,eAAe,EAAE,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,CAAA;IACnC,UAAU,EAAE,CAAC,IAAI,EAAE,UAAU,EAAE,GAAG,EAAE,WAAW,KAAK,IAAI,CAAA;IACxD,eAAe,EAAE,MAAM,IAAI,CAAA;IAC3B,gBAAgB,EAAE,MAAM,OAAO,CAAA;CAChC;AAED,eAAO,MAAM,iBAAiB,EAAE,YAAY,CAAC,kBAAkB,CAAyB,CAAA;AAExF,wBAAgB,cAAc,CAAC,OAAO,EAAE;IACtC,QAAQ,EAAE,GAAG,CAAC,OAAO,CAAC,CAAA;IACtB,aAAa,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,CAAA;IACtC,gBAAgB,EAAE,MAAM,OAAO,CAAA;IAC/B,cAAc,CAAC,EAAE,CAAC,IAAI,EAAE,UAAU,GAAG,IAAI,KAAK,IAAI,CAAA;CACnD;;uBAG2B,UAAU,OAAO,WAAW;;yBAmB5B,kBAAkB;EAgB7C;AAED,wBAAgB,oBAAoB,uBAInC;AAED,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,kBAAkB,QAEhE;AAED,wBAAgB,gBAAgB,CAC9B,KAAK,EAAE,GAAG,CAAC,SAAS,UAAU,EAAE,CAAC,EACjC,eAAe,EAAE,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,gDAOpC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ui/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,cAAc,CAAA"}
|