@lark-apaas/client-toolkit-lite 0.0.1

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.
@@ -0,0 +1,415 @@
1
+ import * as React from 'react';
2
+ import React__default from 'react';
3
+ import { QueryClient } from '@tanstack/react-query';
4
+ import { NavLinkProps } from 'react-router-dom';
5
+ import { ClassValue } from 'clsx';
6
+ import { AxiosInstance } from 'axios';
7
+ import * as _data_loom_js from '@data-loom/js';
8
+
9
+ /**
10
+ * Inject minimal __REACT_DEVTOOLS_GLOBAL_HOOK__ before React loads.
11
+ * React checks for this hook during module initialization and registers its
12
+ * renderer via hook.inject(). This gives us access to renderer.overrideProps()
13
+ * for live component prop modification in the inspector.
14
+ *
15
+ * Must execute before React's module-level code runs.
16
+ *
17
+ * When react-refresh-runtime runs first (as an rspack runtime module),
18
+ * it may create __REACT_DEVTOOLS_GLOBAL_HOOK__ with an inject() that
19
+ * doesn't populate the renderers Map. We patch the existing hook to
20
+ * ensure renderers are always tracked.
21
+ */
22
+
23
+ declare global {
24
+ interface Window {
25
+ __REACT_DEVTOOLS_GLOBAL_HOOK__?: any;
26
+ }
27
+ }
28
+
29
+ /**
30
+ * Client Toolkit Lite Runtime
31
+ *
32
+ * 精简版全局初始化逻辑,可通过构建工具自动注入或 AppContainer 导入触发
33
+ *
34
+ * 执行顺序:
35
+ * 1. React DevTools Hook(必须在 React 加载之前)
36
+ * 2. 全局样式
37
+ * 3. Axios 配置(仅 CSRF token 注入)
38
+ *
39
+ * 不包含:Observable、Server Log SSE、Iframe Bridge、Dayjs 插件
40
+ */
41
+
42
+ declare global {
43
+ interface Window {
44
+ __FULLSTACK_RUNTIME_INITIALIZED__?: boolean;
45
+ }
46
+ }
47
+
48
+ interface AppContainerProps {
49
+ children: React__default.ReactNode;
50
+ }
51
+ declare const AppContainer: React__default.FC<AppContainerProps>;
52
+
53
+ type QueryProviderProps = {
54
+ children: React__default.ReactNode;
55
+ client?: QueryClient;
56
+ };
57
+ declare const QueryProvider: React__default.FC<QueryProviderProps>;
58
+
59
+ interface ActiveLinkProps extends Omit<NavLinkProps, 'to'> {
60
+ to: string;
61
+ }
62
+ /**
63
+ * ActiveLink 组件
64
+ *
65
+ * 替换 react-router-dom 的 NavLink,扩展支持 hash 路由跳转和激活态功能
66
+ *
67
+ * @example
68
+ * // 普通路由跳转
69
+ * <ActiveLink to="/dashboard">Dashboard</ActiveLink>
70
+ *
71
+ * // hash 路由跳转
72
+ * <ActiveLink to="#section1">Section 1</ActiveLink>
73
+ *
74
+ * // 使用函数式 className 显示激活态
75
+ * <ActiveLink
76
+ * to="#features"
77
+ * className={({isActive}) => isActive ? 'active' : ''}
78
+ * >
79
+ * Features
80
+ * </ActiveLink>
81
+ */
82
+ declare const ActiveLink: React__default.ForwardRefExoticComponent<ActiveLinkProps & React__default.RefAttributes<HTMLAnchorElement>>;
83
+
84
+ /**
85
+ * Enhanced NavLink component that extends react-router-dom's NavLink
86
+ * with support for hash links (anchor navigation) and smooth scrolling.
87
+ */
88
+ declare const NavLink: React.ForwardRefExoticComponent<NavLinkProps & React.RefAttributes<HTMLAnchorElement>>;
89
+
90
+ interface UniversalLinkProps extends Omit<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, 'href'> {
91
+ /** 链接目标:内部路由、hash 锚点或外部 URL */
92
+ to: string;
93
+ }
94
+ /**
95
+ * 统一的链接组件,用于替换原生 <a> 标签
96
+ * - 内部路由(/dashboard)→ react-router Link
97
+ * - Hash 锚点(#section)→ <a>
98
+ * - 外链(https://...)→ <a target="_blank">
99
+ */
100
+ declare const UniversalLink: React__default.ForwardRefExoticComponent<UniversalLinkProps & React__default.RefAttributes<HTMLAnchorElement>>;
101
+
102
+ declare const useAppInfo: () => {
103
+ appName: string | undefined;
104
+ appLogo: string | undefined;
105
+ name?: string | undefined;
106
+ avatar?: string | undefined;
107
+ description?: string | undefined;
108
+ };
109
+
110
+ type IJson = object;
111
+ type IUserProfile = {
112
+ user_id: string;
113
+ email: string;
114
+ name: string;
115
+ avatar: string;
116
+ /**
117
+ * @default active 1
118
+ * inactive 2
119
+ */
120
+ status?: number;
121
+ };
122
+ type IFileAttachment = {
123
+ bucket_id: string;
124
+ file_path: string;
125
+ };
126
+
127
+ interface ICompatibilityUserProfile extends IUserProfile {
128
+ /**
129
+ * @deprecated please use `name`
130
+ */
131
+ userName: string;
132
+ /**
133
+ * @deprecated please use `avatar`
134
+ */
135
+ userAvatar: string;
136
+ }
137
+ declare const useCurrentUserProfile: () => ICompatibilityUserProfile;
138
+
139
+ declare function useIsMobile(): boolean;
140
+
141
+ declare function useLogout(): {
142
+ handlerLogout: () => Promise<void>;
143
+ isLoading: boolean;
144
+ };
145
+
146
+ /**
147
+ * @internal
148
+ * 处理 className 与 tailwind-merge
149
+ */
150
+ declare function clsxWithTw(...inputs: ClassValue[]): string;
151
+ /**
152
+ * @internal
153
+ * 当前是否是预览态
154
+ */
155
+ declare function isPreview(): boolean | undefined;
156
+ /**
157
+ * @internal
158
+ * 标准化基础路径,确保路径格式一致
159
+ * 移除末尾的斜杠,确保路径不以斜杠结尾
160
+ */
161
+ declare function normalizeBasePath(basePath?: string): string;
162
+ declare function getWsPath(): string;
163
+
164
+ /**
165
+ * 获取应用 ID
166
+ */
167
+ declare function getAppId(): string | null;
168
+
169
+ /**
170
+ * 获取cookie中存放的suda-csrf-token值
171
+ * @returns {string | null} - suda-csrf-token的值,如果不存在则返回null
172
+ */
173
+ declare function getCsrfToken(): string | null;
174
+
175
+ /**
176
+ * 按 appId 隔离的 localStorage 封装
177
+ * API 与原生 localStorage 保持一致
178
+ */
179
+ declare const scopedStorage: Storage;
180
+
181
+ /**
182
+ * 复制字符串到剪切板
183
+ * @param text 要复制的文本
184
+ * @returns Promise<boolean> 复制是否成功
185
+ */
186
+ declare function copyToClipboard(text: string): Promise<boolean>;
187
+
188
+ declare const isIpad: () => boolean;
189
+ declare const isMobile: () => boolean;
190
+ declare const isIOS: () => boolean;
191
+
192
+ /**
193
+ * 解析应用内路径,自动补全 CLIENT_BASE_PATH 前缀,返回完整 URL
194
+ * 适用于生成分享链接、二维码等需要完整 URL 的场景
195
+ *
196
+ * - 相对路径:补全前缀 + 当前域名
197
+ * - 当前域名的完整 URL:修正路径部分,补全前缀
198
+ * - 其他域名的 URL:原样返回,不做处理
199
+ *
200
+ * @param path - 应用内相对路径或完整 URL
201
+ * @returns 完整的 URL 字符串
202
+ *
203
+ * @example
204
+ * // 假设 CLIENT_BASE_PATH = '/app/abc',当前域名为 https://example.com
205
+ *
206
+ * resolveAppUrl('/detail/123')
207
+ * // => 'https://example.com/app/abc/detail/123'
208
+ *
209
+ * resolveAppUrl('https://example.com/detail/123')
210
+ * // => 'https://example.com/app/abc/detail/123'
211
+ *
212
+ * resolveAppUrl('https://example.com/app/abc/detail/123')
213
+ * // => 'https://example.com/app/abc/detail/123' (已有前缀,不重复添加)
214
+ *
215
+ * resolveAppUrl('https://other-site.com/page')
216
+ * // => 'https://other-site.com/page' (非当前域名,原样返回)
217
+ */
218
+ declare function resolveAppUrl(path: string): string;
219
+
220
+ /**
221
+ * @internal
222
+ */
223
+ declare function getEnvPath(): "feida_preview" | "feida_runtime";
224
+
225
+ declare function safeStringify(obj: unknown): string;
226
+
227
+ declare module 'axios' {
228
+ interface AxiosRequestConfig {
229
+ meta?: {
230
+ autoJumpToLogin?: boolean;
231
+ };
232
+ }
233
+ }
234
+ /** 获取axios实例 */
235
+ declare function getAxiosForBackend(): AxiosInstance;
236
+ declare const axiosForBackend: AxiosInstance;
237
+
238
+ /**
239
+ * 精简版 Axios 配置
240
+ * 仅注入 CSRF token 和基础拦截器,不包含 observable/slardar/trace
241
+ */
242
+ declare function initAxiosConfig(axiosInstance?: AxiosInstance): void;
243
+
244
+ interface AppInfoPayload {
245
+ name: string;
246
+ avatar: string;
247
+ description: string;
248
+ }
249
+
250
+ declare function getAppInfo(refresh?: boolean): Promise<AppInfoPayload>;
251
+
252
+ declare function getCurrentUserProfile(): IUserProfile;
253
+
254
+ declare const createDataLoomClient: (url?: string, pat?: string) => _data_loom_js.DataloomClient<any, "public", any>;
255
+ /** 获取dataloom实例 */
256
+ declare function getDataloom(): Promise<ReturnType<typeof createDataLoomClient>>;
257
+
258
+ declare const avatarImg1 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/avatar/base/1.jpg";
259
+ declare const avatarImg2 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/avatar/base/2.jpg";
260
+ declare const avatarImg3 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/avatar/base/3.jpg";
261
+ declare const avatarImg4 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/avatar/base/4.jpg";
262
+ declare const avatarImg5 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/avatar/base/5.jpg";
263
+ declare const avatarImg6 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/avatar/base/6.jpg";
264
+ declare const avatarImg7 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/avatar/base/7.jpg";
265
+ declare const avatarImg8 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/avatar/base/8.jpg";
266
+ declare const avatarImg9 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/avatar/base/9.jpg";
267
+ declare const avatarImg10 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/avatar/base/10.jpg";
268
+ declare const avatarImg11 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/avatar/base/11.jpg";
269
+
270
+ declare const avatar_avatarImg1: typeof avatarImg1;
271
+ declare const avatar_avatarImg10: typeof avatarImg10;
272
+ declare const avatar_avatarImg11: typeof avatarImg11;
273
+ declare const avatar_avatarImg2: typeof avatarImg2;
274
+ declare const avatar_avatarImg3: typeof avatarImg3;
275
+ declare const avatar_avatarImg4: typeof avatarImg4;
276
+ declare const avatar_avatarImg5: typeof avatarImg5;
277
+ declare const avatar_avatarImg6: typeof avatarImg6;
278
+ declare const avatar_avatarImg7: typeof avatarImg7;
279
+ declare const avatar_avatarImg8: typeof avatarImg8;
280
+ declare const avatar_avatarImg9: typeof avatarImg9;
281
+ declare namespace avatar {
282
+ export { avatar_avatarImg1 as avatarImg1, avatar_avatarImg10 as avatarImg10, avatar_avatarImg11 as avatarImg11, avatar_avatarImg2 as avatarImg2, avatar_avatarImg3 as avatarImg3, avatar_avatarImg4 as avatarImg4, avatar_avatarImg5 as avatarImg5, avatar_avatarImg6 as avatarImg6, avatar_avatarImg7 as avatarImg7, avatar_avatarImg8 as avatarImg8, avatar_avatarImg9 as avatarImg9 };
283
+ }
284
+
285
+ declare const techBannerImg1 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/technology/1.jpg";
286
+ declare const techBannerImg2 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/technology/2.jpg";
287
+ declare const techBannerImg3 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/technology/3.jpg";
288
+ declare const techBannerImg4 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/technology/4.jpg";
289
+ declare const techBannerImg5 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/technology/5.jpg";
290
+ declare const techBannerImg6 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/technology/6.jpg";
291
+ declare const techBannerImg7 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/technology/7.jpg";
292
+ declare const techBannerImg8 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/technology/8.jpg";
293
+ declare const professionalBannerImg1 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/professional/1.jpg";
294
+ declare const professionalBannerImg2 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/professional/2.jpg";
295
+ declare const professionalBannerImg3 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/professional/3.jpg";
296
+ declare const professionalBannerImg4 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/professional/4.jpg";
297
+ declare const professionalBannerImg5 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/professional/5.jpg";
298
+ declare const professionalBannerImg6 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/professional/6.jpg";
299
+ declare const professionalBannerImg7 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/professional/7.jpg";
300
+ declare const professionalBannerImg8 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/professional/8.jpg";
301
+ declare const minimalismBannerImg1 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/minimalism/1.jpg";
302
+ declare const minimalismBannerImg2 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/minimalism/2.jpg";
303
+ declare const minimalismBannerImg3 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/minimalism/3.jpg";
304
+ declare const minimalismBannerImg4 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/minimalism/4.jpg";
305
+ declare const minimalismBannerImg5 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/minimalism/5.jpg";
306
+ declare const minimalismBannerImg6 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/minimalism/6.jpg";
307
+ declare const minimalismBannerImg7 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/minimalism/7.jpg";
308
+ declare const minimalismBannerImg8 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/banner/minimalism/8.jpg";
309
+
310
+ declare const banner_minimalismBannerImg1: typeof minimalismBannerImg1;
311
+ declare const banner_minimalismBannerImg2: typeof minimalismBannerImg2;
312
+ declare const banner_minimalismBannerImg3: typeof minimalismBannerImg3;
313
+ declare const banner_minimalismBannerImg4: typeof minimalismBannerImg4;
314
+ declare const banner_minimalismBannerImg5: typeof minimalismBannerImg5;
315
+ declare const banner_minimalismBannerImg6: typeof minimalismBannerImg6;
316
+ declare const banner_minimalismBannerImg7: typeof minimalismBannerImg7;
317
+ declare const banner_minimalismBannerImg8: typeof minimalismBannerImg8;
318
+ declare const banner_professionalBannerImg1: typeof professionalBannerImg1;
319
+ declare const banner_professionalBannerImg2: typeof professionalBannerImg2;
320
+ declare const banner_professionalBannerImg3: typeof professionalBannerImg3;
321
+ declare const banner_professionalBannerImg4: typeof professionalBannerImg4;
322
+ declare const banner_professionalBannerImg5: typeof professionalBannerImg5;
323
+ declare const banner_professionalBannerImg6: typeof professionalBannerImg6;
324
+ declare const banner_professionalBannerImg7: typeof professionalBannerImg7;
325
+ declare const banner_professionalBannerImg8: typeof professionalBannerImg8;
326
+ declare const banner_techBannerImg1: typeof techBannerImg1;
327
+ declare const banner_techBannerImg2: typeof techBannerImg2;
328
+ declare const banner_techBannerImg3: typeof techBannerImg3;
329
+ declare const banner_techBannerImg4: typeof techBannerImg4;
330
+ declare const banner_techBannerImg5: typeof techBannerImg5;
331
+ declare const banner_techBannerImg6: typeof techBannerImg6;
332
+ declare const banner_techBannerImg7: typeof techBannerImg7;
333
+ declare const banner_techBannerImg8: typeof techBannerImg8;
334
+ declare namespace banner {
335
+ export { banner_minimalismBannerImg1 as minimalismBannerImg1, banner_minimalismBannerImg2 as minimalismBannerImg2, banner_minimalismBannerImg3 as minimalismBannerImg3, banner_minimalismBannerImg4 as minimalismBannerImg4, banner_minimalismBannerImg5 as minimalismBannerImg5, banner_minimalismBannerImg6 as minimalismBannerImg6, banner_minimalismBannerImg7 as minimalismBannerImg7, banner_minimalismBannerImg8 as minimalismBannerImg8, banner_professionalBannerImg1 as professionalBannerImg1, banner_professionalBannerImg2 as professionalBannerImg2, banner_professionalBannerImg3 as professionalBannerImg3, banner_professionalBannerImg4 as professionalBannerImg4, banner_professionalBannerImg5 as professionalBannerImg5, banner_professionalBannerImg6 as professionalBannerImg6, banner_professionalBannerImg7 as professionalBannerImg7, banner_professionalBannerImg8 as professionalBannerImg8, banner_techBannerImg1 as techBannerImg1, banner_techBannerImg2 as techBannerImg2, banner_techBannerImg3 as techBannerImg3, banner_techBannerImg4 as techBannerImg4, banner_techBannerImg5 as techBannerImg5, banner_techBannerImg6 as techBannerImg6, banner_techBannerImg7 as techBannerImg7, banner_techBannerImg8 as techBannerImg8 };
336
+ }
337
+
338
+ declare const officeCoverImg1 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/office/1.jpg";
339
+ declare const officeCoverImg2 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/office/2.jpg";
340
+ declare const officeCoverImg3 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/office/3.jpg";
341
+ declare const officeCoverImg4 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/office/4.jpg";
342
+ declare const officeCoverImg5 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/office/5.jpg";
343
+ declare const officeCoverImg6 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/office/6.jpg";
344
+ declare const architectureCoverImg1 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/architecture/1.jpg";
345
+ declare const architectureCoverImg2 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/architecture/2.jpg";
346
+ declare const architectureCoverImg3 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/architecture/3.jpg";
347
+ declare const architectureCoverImg4 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/architecture/4.jpg";
348
+ declare const architectureCoverImg5 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/architecture/5.jpg";
349
+ declare const architectureCoverImg6 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/architecture/6.jpg";
350
+ declare const appealClothingCoverImg1 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/appeal-clothing/1.jpg";
351
+ declare const appealClothingCoverImg2 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/appeal-clothing/2.jpg";
352
+ declare const appealClothingCoverImg3 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/appeal-clothing/3.jpg";
353
+ declare const appealClothingCoverImg4 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/appeal-clothing/4.jpg";
354
+ declare const appealClothingCoverImg5 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/appeal-clothing/5.jpg";
355
+ declare const appealClothingCoverImg6 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/appeal-clothing/6.jpg";
356
+ declare const sceneryCoverImg1 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/scenery/1.jpg";
357
+ declare const sceneryCoverImg2 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/scenery/2.jpg";
358
+ declare const sceneryCoverImg3 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/scenery/3.jpg";
359
+ declare const sceneryCoverImg4 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/scenery/4.jpg";
360
+ declare const sceneryCoverImg5 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/scenery/5.jpg";
361
+ declare const sceneryCoverImg6 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/scenery/6.jpg";
362
+ declare const technologyInternetCoverImg1 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/technology-internet/1.jpg";
363
+ declare const technologyInternetCoverImg2 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/technology-internet/2.jpg";
364
+ declare const technologyInternetCoverImg3 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/technology-internet/3.jpg";
365
+ declare const technologyInternetCoverImg4 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/technology-internet/4.jpg";
366
+ declare const technologyInternetCoverImg5 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/technology-internet/5.jpg";
367
+ declare const technologyInternetCoverImg6 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/technology-internet/6.jpg";
368
+ declare const abstractArt3dRenderingCoverImg1 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/abstract-art-3d-rendering/1.jpg";
369
+ declare const abstractArt3dRenderingCoverImg2 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/abstract-art-3d-rendering/2.jpg";
370
+ declare const abstractArt3dRenderingCoverImg3 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/abstract-art-3d-rendering/3.jpg";
371
+ declare const abstractArt3dRenderingCoverImg4 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/abstract-art-3d-rendering/4.jpg";
372
+ declare const abstractArt3dRenderingCoverImg5 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/abstract-art-3d-rendering/5.jpg";
373
+ declare const abstractArt3dRenderingCoverImg6 = "https://lf3-static.bytednsdoc.com/obj/eden-cn/ylcylz_fsph_ryhs/ljhwZthlaukjlkulzlp/feisuda/cover/abstract-art-3d-rendering/6.jpg";
374
+
375
+ declare const cover_abstractArt3dRenderingCoverImg1: typeof abstractArt3dRenderingCoverImg1;
376
+ declare const cover_abstractArt3dRenderingCoverImg2: typeof abstractArt3dRenderingCoverImg2;
377
+ declare const cover_abstractArt3dRenderingCoverImg3: typeof abstractArt3dRenderingCoverImg3;
378
+ declare const cover_abstractArt3dRenderingCoverImg4: typeof abstractArt3dRenderingCoverImg4;
379
+ declare const cover_abstractArt3dRenderingCoverImg5: typeof abstractArt3dRenderingCoverImg5;
380
+ declare const cover_abstractArt3dRenderingCoverImg6: typeof abstractArt3dRenderingCoverImg6;
381
+ declare const cover_appealClothingCoverImg1: typeof appealClothingCoverImg1;
382
+ declare const cover_appealClothingCoverImg2: typeof appealClothingCoverImg2;
383
+ declare const cover_appealClothingCoverImg3: typeof appealClothingCoverImg3;
384
+ declare const cover_appealClothingCoverImg4: typeof appealClothingCoverImg4;
385
+ declare const cover_appealClothingCoverImg5: typeof appealClothingCoverImg5;
386
+ declare const cover_appealClothingCoverImg6: typeof appealClothingCoverImg6;
387
+ declare const cover_architectureCoverImg1: typeof architectureCoverImg1;
388
+ declare const cover_architectureCoverImg2: typeof architectureCoverImg2;
389
+ declare const cover_architectureCoverImg3: typeof architectureCoverImg3;
390
+ declare const cover_architectureCoverImg4: typeof architectureCoverImg4;
391
+ declare const cover_architectureCoverImg5: typeof architectureCoverImg5;
392
+ declare const cover_architectureCoverImg6: typeof architectureCoverImg6;
393
+ declare const cover_officeCoverImg1: typeof officeCoverImg1;
394
+ declare const cover_officeCoverImg2: typeof officeCoverImg2;
395
+ declare const cover_officeCoverImg3: typeof officeCoverImg3;
396
+ declare const cover_officeCoverImg4: typeof officeCoverImg4;
397
+ declare const cover_officeCoverImg5: typeof officeCoverImg5;
398
+ declare const cover_officeCoverImg6: typeof officeCoverImg6;
399
+ declare const cover_sceneryCoverImg1: typeof sceneryCoverImg1;
400
+ declare const cover_sceneryCoverImg2: typeof sceneryCoverImg2;
401
+ declare const cover_sceneryCoverImg3: typeof sceneryCoverImg3;
402
+ declare const cover_sceneryCoverImg4: typeof sceneryCoverImg4;
403
+ declare const cover_sceneryCoverImg5: typeof sceneryCoverImg5;
404
+ declare const cover_sceneryCoverImg6: typeof sceneryCoverImg6;
405
+ declare const cover_technologyInternetCoverImg1: typeof technologyInternetCoverImg1;
406
+ declare const cover_technologyInternetCoverImg2: typeof technologyInternetCoverImg2;
407
+ declare const cover_technologyInternetCoverImg3: typeof technologyInternetCoverImg3;
408
+ declare const cover_technologyInternetCoverImg4: typeof technologyInternetCoverImg4;
409
+ declare const cover_technologyInternetCoverImg5: typeof technologyInternetCoverImg5;
410
+ declare const cover_technologyInternetCoverImg6: typeof technologyInternetCoverImg6;
411
+ declare namespace cover {
412
+ export { cover_abstractArt3dRenderingCoverImg1 as abstractArt3dRenderingCoverImg1, cover_abstractArt3dRenderingCoverImg2 as abstractArt3dRenderingCoverImg2, cover_abstractArt3dRenderingCoverImg3 as abstractArt3dRenderingCoverImg3, cover_abstractArt3dRenderingCoverImg4 as abstractArt3dRenderingCoverImg4, cover_abstractArt3dRenderingCoverImg5 as abstractArt3dRenderingCoverImg5, cover_abstractArt3dRenderingCoverImg6 as abstractArt3dRenderingCoverImg6, cover_appealClothingCoverImg1 as appealClothingCoverImg1, cover_appealClothingCoverImg2 as appealClothingCoverImg2, cover_appealClothingCoverImg3 as appealClothingCoverImg3, cover_appealClothingCoverImg4 as appealClothingCoverImg4, cover_appealClothingCoverImg5 as appealClothingCoverImg5, cover_appealClothingCoverImg6 as appealClothingCoverImg6, cover_architectureCoverImg1 as architectureCoverImg1, cover_architectureCoverImg2 as architectureCoverImg2, cover_architectureCoverImg3 as architectureCoverImg3, cover_architectureCoverImg4 as architectureCoverImg4, cover_architectureCoverImg5 as architectureCoverImg5, cover_architectureCoverImg6 as architectureCoverImg6, cover_officeCoverImg1 as officeCoverImg1, cover_officeCoverImg2 as officeCoverImg2, cover_officeCoverImg3 as officeCoverImg3, cover_officeCoverImg4 as officeCoverImg4, cover_officeCoverImg5 as officeCoverImg5, cover_officeCoverImg6 as officeCoverImg6, cover_sceneryCoverImg1 as sceneryCoverImg1, cover_sceneryCoverImg2 as sceneryCoverImg2, cover_sceneryCoverImg3 as sceneryCoverImg3, cover_sceneryCoverImg4 as sceneryCoverImg4, cover_sceneryCoverImg5 as sceneryCoverImg5, cover_sceneryCoverImg6 as sceneryCoverImg6, cover_technologyInternetCoverImg1 as technologyInternetCoverImg1, cover_technologyInternetCoverImg2 as technologyInternetCoverImg2, cover_technologyInternetCoverImg3 as technologyInternetCoverImg3, cover_technologyInternetCoverImg4 as technologyInternetCoverImg4, cover_technologyInternetCoverImg5 as technologyInternetCoverImg5, cover_technologyInternetCoverImg6 as technologyInternetCoverImg6 };
413
+ }
414
+
415
+ export { ActiveLink, AppContainer, type AppInfoPayload, type IFileAttachment, type IJson, type IUserProfile, NavLink, QueryProvider, UniversalLink, avatar as avatarImages, axiosForBackend, banner as bannerImages, clsxWithTw, copyToClipboard, cover as coverImages, getAppId, getAppInfo, getAxiosForBackend, getCsrfToken, getCurrentUserProfile, getDataloom, getEnvPath, getWsPath, initAxiosConfig, isIOS, isIpad, isMobile, isPreview, normalizeBasePath, resolveAppUrl, safeStringify, scopedStorage, useAppInfo, useCurrentUserProfile, useIsMobile, useLogout };