node-karin 1.10.16 → 1.10.18
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 +14 -0
- package/dist/index.d.ts +108 -102
- package/dist/index.mjs +17 -4
- package/dist/web/assets/css/index-C9_Eu3dq.css.br +0 -0
- package/dist/web/assets/js/components-2t4MPaOy.js.br +0 -0
- package/dist/web/assets/js/entry-DE0mHEZF.js.br +0 -0
- package/dist/web/assets/js/hooks-DyYsxseQ.js.br +0 -0
- package/dist/web/assets/js/page-404.tsx-j96teJz3.js +1 -0
- package/dist/web/assets/js/page-dashboard-Bl6Ln0Uf.js.br +0 -0
- package/dist/web/assets/js/page-loading.tsx-BfVqxSVK.js.br +0 -0
- package/dist/web/assets/js/page-login.tsx-FIRJIXcp.js.br +0 -0
- package/dist/web/assets/js/{utils-yaKwTRob.js → utils-DPnp8l5q.js} +1 -1
- package/dist/web/assets/js/vendor-heroui-aleFRZYD.js.br +0 -0
- package/dist/web/assets/js/vendor-others-BVX3qAut.js.br +0 -0
- package/dist/web/assets/js/vendor-react-CvbOIVDM.js.br +0 -0
- package/dist/web/assets/js/vendor-visual-CDapryqv.js.br +0 -0
- package/dist/web/googleapis.woff2.br +0 -0
- package/dist/web/icon.css +6 -6
- package/dist/web/index.html +10 -10
- package/package.json +1 -1
- package/dist/web/assets/css/index-aqeyhZYB.css.br +0 -0
- package/dist/web/assets/js/components-Bpn1WyZD.js.br +0 -0
- package/dist/web/assets/js/entry-DFE5FgVr.js.br +0 -0
- package/dist/web/assets/js/hooks-DSAoGH66.js.br +0 -0
- package/dist/web/assets/js/page-404.tsx-CzzHYcTr.js +0 -1
- package/dist/web/assets/js/page-dashboard-DgI65l0T.js.br +0 -0
- package/dist/web/assets/js/page-loading.tsx-HQCV1F2M.js.br +0 -0
- package/dist/web/assets/js/page-login.tsx-gy-vNcjF.js.br +0 -0
- package/dist/web/assets/js/vendor-heroui-Bi6Ny18P.js.br +0 -0
- package/dist/web/assets/js/vendor-others-BQzLsA1F.js.br +0 -0
- package/dist/web/assets/js/vendor-react-Dzwr57aT.js.br +0 -0
- package/dist/web/assets/js/vendor-visual-DsVosOWE.js.br +0 -0
- package/dist/web/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2.br +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# 更新日志
|
|
2
2
|
|
|
3
|
+
## [1.10.18](https://github.com/KarinJS/Karin/compare/core-v1.10.17...core-v1.10.18) (2025-07-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### 🐛 Bug Fixes
|
|
7
|
+
|
|
8
|
+
* site ([#504](https://github.com/KarinJS/Karin/issues/504)) ([b55de78](https://github.com/KarinJS/Karin/commit/b55de78c082c3c7ead8605c5baf573107b545be9))
|
|
9
|
+
|
|
10
|
+
## [1.10.17](https://github.com/KarinJS/Karin/compare/core-v1.10.16...core-v1.10.17) (2025-07-03)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### 🐛 Bug Fixes
|
|
14
|
+
|
|
15
|
+
* 补充频道事件缺少的字段 ([1fd85f4](https://github.com/KarinJS/Karin/commit/1fd85f4af45e535b53818f8cc28661c90cef1315))
|
|
16
|
+
|
|
3
17
|
## [1.10.16](https://github.com/KarinJS/Karin/compare/core-v1.10.15...core-v1.10.16) (2025-06-30)
|
|
4
18
|
|
|
5
19
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2383,6 +2383,8 @@ declare class DirectMessage extends MessageBase$1 {
|
|
|
2383
2383
|
constructor(options: DirectMessageOptions);
|
|
2384
2384
|
/** 来源频道id */
|
|
2385
2385
|
get srcGuildId(): string;
|
|
2386
|
+
get guildId(): string;
|
|
2387
|
+
get channelId(): string;
|
|
2386
2388
|
get contact(): DirectContact;
|
|
2387
2389
|
get sender(): SenderBase;
|
|
2388
2390
|
get subEvent(): "direct";
|
|
@@ -5143,6 +5145,108 @@ interface KarinAppPlugin extends KarinPluginBase {
|
|
|
5143
5145
|
*/
|
|
5144
5146
|
type KarinPluginType = KarinNpmPlugin | KarinGitPlugin | KarinAppPlugin;
|
|
5145
5147
|
|
|
5148
|
+
/**
|
|
5149
|
+
* 插件作者
|
|
5150
|
+
*/
|
|
5151
|
+
interface Author {
|
|
5152
|
+
/** 名字 */
|
|
5153
|
+
name?: string;
|
|
5154
|
+
/** 主页 */
|
|
5155
|
+
home?: string;
|
|
5156
|
+
/**
|
|
5157
|
+
* 头像
|
|
5158
|
+
* @description https://github.com/[owner].png
|
|
5159
|
+
*/
|
|
5160
|
+
avatar?: string;
|
|
5161
|
+
}
|
|
5162
|
+
/**
|
|
5163
|
+
* 插件图标
|
|
5164
|
+
*/
|
|
5165
|
+
interface Icon {
|
|
5166
|
+
/**
|
|
5167
|
+
* 图标名称
|
|
5168
|
+
* @see https://fonts.google.com/icons
|
|
5169
|
+
*/
|
|
5170
|
+
name?: string;
|
|
5171
|
+
/** 图标大小 */
|
|
5172
|
+
size?: number;
|
|
5173
|
+
/** 图标颜色 */
|
|
5174
|
+
color?: string;
|
|
5175
|
+
}
|
|
5176
|
+
/** 本地插件列表 请自行添加[] */
|
|
5177
|
+
interface LocalApiResponse {
|
|
5178
|
+
/** 插件id */
|
|
5179
|
+
id: string;
|
|
5180
|
+
/** 是否存在配置文件 无需配置 */
|
|
5181
|
+
hasConfig?: boolean;
|
|
5182
|
+
/** 插件类型 无需配置 */
|
|
5183
|
+
type?: 'git' | 'npm' | 'app';
|
|
5184
|
+
/** 插件名称 前端优先展示 */
|
|
5185
|
+
name?: string;
|
|
5186
|
+
/** 插件版本 可不填 会自动读取package.json中的version */
|
|
5187
|
+
version?: string;
|
|
5188
|
+
/** 插件描述 可不填 会自动读取package.json中的version */
|
|
5189
|
+
description?: string;
|
|
5190
|
+
/** 插件作者 */
|
|
5191
|
+
author?: Author[];
|
|
5192
|
+
/** 插件图标 前端优先展示 */
|
|
5193
|
+
icon?: Icon;
|
|
5194
|
+
}
|
|
5195
|
+
/** 获取配置请求参数 */
|
|
5196
|
+
interface GetConfigRequest {
|
|
5197
|
+
/** 插件名称 */
|
|
5198
|
+
name: string;
|
|
5199
|
+
/** 插件类型 */
|
|
5200
|
+
type: 'git' | 'npm' | 'app';
|
|
5201
|
+
}
|
|
5202
|
+
/** 获取配置响应 */
|
|
5203
|
+
interface GetConfigResponse {
|
|
5204
|
+
/** 组件配置参数 */
|
|
5205
|
+
options: ComponentConfig[];
|
|
5206
|
+
/** 插件信息 */
|
|
5207
|
+
info: LocalApiResponse;
|
|
5208
|
+
}
|
|
5209
|
+
/**
|
|
5210
|
+
* 保存配置返回值
|
|
5211
|
+
*/
|
|
5212
|
+
interface SaveConfigResponse {
|
|
5213
|
+
/** 是否成功 */
|
|
5214
|
+
success: boolean;
|
|
5215
|
+
/** 消息 */
|
|
5216
|
+
message: string;
|
|
5217
|
+
}
|
|
5218
|
+
/** webui配置 */
|
|
5219
|
+
interface DefineConfig<T = any> {
|
|
5220
|
+
/** 插件信息 */
|
|
5221
|
+
info: {
|
|
5222
|
+
/** 插件id 也就是插件的包名 */
|
|
5223
|
+
id: string;
|
|
5224
|
+
/** 插件名称 前端优先展示 */
|
|
5225
|
+
name?: string;
|
|
5226
|
+
/** 插件作者 */
|
|
5227
|
+
author?: Author | Author[];
|
|
5228
|
+
/** 插件图标 前端优先展示 */
|
|
5229
|
+
icon?: Icon;
|
|
5230
|
+
/** 插件版本 可不填 会自动读取package.json中的version */
|
|
5231
|
+
version?: string;
|
|
5232
|
+
/** 插件描述 可不填 会自动读取package.json中的version */
|
|
5233
|
+
description?: string;
|
|
5234
|
+
};
|
|
5235
|
+
/** 默认组件配置参数 */
|
|
5236
|
+
components?: () => ComponentConfig[] | Promise<ComponentConfig[]>;
|
|
5237
|
+
/**
|
|
5238
|
+
* 保存配置
|
|
5239
|
+
* @param config 配置
|
|
5240
|
+
* @returns 保存结果
|
|
5241
|
+
*/
|
|
5242
|
+
save?: (config: T) => SaveConfigResponse | Promise<SaveConfigResponse>;
|
|
5243
|
+
/**
|
|
5244
|
+
* 自定义组件配置
|
|
5245
|
+
* @description 未完成
|
|
5246
|
+
*/
|
|
5247
|
+
customComponent?: () => unknown;
|
|
5248
|
+
}
|
|
5249
|
+
|
|
5146
5250
|
/**
|
|
5147
5251
|
* 基类
|
|
5148
5252
|
*/
|
|
@@ -5246,6 +5350,8 @@ interface PluginAdminListResponse {
|
|
|
5246
5350
|
customComponent: boolean;
|
|
5247
5351
|
/** 是否存在默认组件配置函数 一般用于插件的配置文件管理 */
|
|
5248
5352
|
defaultComponent: boolean;
|
|
5353
|
+
/** 插件图标 */
|
|
5354
|
+
icon: Icon;
|
|
5249
5355
|
};
|
|
5250
5356
|
}
|
|
5251
5357
|
/**
|
|
@@ -5271,6 +5377,8 @@ interface FrontendInstalledPluginListResponse {
|
|
|
5271
5377
|
/** 头像 */
|
|
5272
5378
|
avatar: string;
|
|
5273
5379
|
};
|
|
5380
|
+
/** 插件图标 */
|
|
5381
|
+
icon: Icon;
|
|
5274
5382
|
/** 插件仓库主页 */
|
|
5275
5383
|
repoUrl: string;
|
|
5276
5384
|
/** 插件是否可配置 */
|
|
@@ -5377,108 +5485,6 @@ interface PluginMarketLocalOptions {
|
|
|
5377
5485
|
*/
|
|
5378
5486
|
type PluginMarketResponse = PluginMarketOptions | PluginMarketLocalOptions;
|
|
5379
5487
|
|
|
5380
|
-
/**
|
|
5381
|
-
* 插件作者
|
|
5382
|
-
*/
|
|
5383
|
-
interface Author {
|
|
5384
|
-
/** 名字 */
|
|
5385
|
-
name?: string;
|
|
5386
|
-
/** 主页 */
|
|
5387
|
-
home?: string;
|
|
5388
|
-
/**
|
|
5389
|
-
* 头像
|
|
5390
|
-
* @description https://github.com/[owner].png
|
|
5391
|
-
*/
|
|
5392
|
-
avatar?: string;
|
|
5393
|
-
}
|
|
5394
|
-
/**
|
|
5395
|
-
* 插件图标
|
|
5396
|
-
*/
|
|
5397
|
-
interface Icon {
|
|
5398
|
-
/**
|
|
5399
|
-
* 图标名称
|
|
5400
|
-
* @see https://fonts.google.com/icons
|
|
5401
|
-
*/
|
|
5402
|
-
name?: string;
|
|
5403
|
-
/** 图标大小 */
|
|
5404
|
-
size?: number;
|
|
5405
|
-
/** 图标颜色 */
|
|
5406
|
-
color?: string;
|
|
5407
|
-
}
|
|
5408
|
-
/** 本地插件列表 请自行添加[] */
|
|
5409
|
-
interface LocalApiResponse {
|
|
5410
|
-
/** 插件id */
|
|
5411
|
-
id: string;
|
|
5412
|
-
/** 是否存在配置文件 无需配置 */
|
|
5413
|
-
hasConfig?: boolean;
|
|
5414
|
-
/** 插件类型 无需配置 */
|
|
5415
|
-
type?: 'git' | 'npm' | 'app';
|
|
5416
|
-
/** 插件名称 前端优先展示 */
|
|
5417
|
-
name?: string;
|
|
5418
|
-
/** 插件版本 可不填 会自动读取package.json中的version */
|
|
5419
|
-
version?: string;
|
|
5420
|
-
/** 插件描述 可不填 会自动读取package.json中的version */
|
|
5421
|
-
description?: string;
|
|
5422
|
-
/** 插件作者 */
|
|
5423
|
-
author?: Author[];
|
|
5424
|
-
/** 插件图标 前端优先展示 */
|
|
5425
|
-
icon?: Icon;
|
|
5426
|
-
}
|
|
5427
|
-
/** 获取配置请求参数 */
|
|
5428
|
-
interface GetConfigRequest {
|
|
5429
|
-
/** 插件名称 */
|
|
5430
|
-
name: string;
|
|
5431
|
-
/** 插件类型 */
|
|
5432
|
-
type: 'git' | 'npm' | 'app';
|
|
5433
|
-
}
|
|
5434
|
-
/** 获取配置响应 */
|
|
5435
|
-
interface GetConfigResponse {
|
|
5436
|
-
/** 组件配置参数 */
|
|
5437
|
-
options: ComponentConfig[];
|
|
5438
|
-
/** 插件信息 */
|
|
5439
|
-
info: LocalApiResponse;
|
|
5440
|
-
}
|
|
5441
|
-
/**
|
|
5442
|
-
* 保存配置返回值
|
|
5443
|
-
*/
|
|
5444
|
-
interface SaveConfigResponse {
|
|
5445
|
-
/** 是否成功 */
|
|
5446
|
-
success: boolean;
|
|
5447
|
-
/** 消息 */
|
|
5448
|
-
message: string;
|
|
5449
|
-
}
|
|
5450
|
-
/** webui配置 */
|
|
5451
|
-
interface DefineConfig<T = any> {
|
|
5452
|
-
/** 插件信息 */
|
|
5453
|
-
info: {
|
|
5454
|
-
/** 插件id 也就是插件的包名 */
|
|
5455
|
-
id: string;
|
|
5456
|
-
/** 插件名称 前端优先展示 */
|
|
5457
|
-
name?: string;
|
|
5458
|
-
/** 插件作者 */
|
|
5459
|
-
author?: Author | Author[];
|
|
5460
|
-
/** 插件图标 前端优先展示 */
|
|
5461
|
-
icon?: Icon;
|
|
5462
|
-
/** 插件版本 可不填 会自动读取package.json中的version */
|
|
5463
|
-
version?: string;
|
|
5464
|
-
/** 插件描述 可不填 会自动读取package.json中的version */
|
|
5465
|
-
description?: string;
|
|
5466
|
-
};
|
|
5467
|
-
/** 默认组件配置参数 */
|
|
5468
|
-
components?: () => ComponentConfig[] | Promise<ComponentConfig[]>;
|
|
5469
|
-
/**
|
|
5470
|
-
* 保存配置
|
|
5471
|
-
* @param config 配置
|
|
5472
|
-
* @returns 保存结果
|
|
5473
|
-
*/
|
|
5474
|
-
save?: (config: T) => SaveConfigResponse | Promise<SaveConfigResponse>;
|
|
5475
|
-
/**
|
|
5476
|
-
* 自定义组件配置
|
|
5477
|
-
* @description 未完成
|
|
5478
|
-
*/
|
|
5479
|
-
customComponent?: () => unknown;
|
|
5480
|
-
}
|
|
5481
|
-
|
|
5482
5488
|
/** JWT验证基础接口 */
|
|
5483
5489
|
interface JwtVerifyBase {
|
|
5484
5490
|
/** 状态码 */
|
package/dist/index.mjs
CHANGED
|
@@ -14797,6 +14797,12 @@ var init_message4 = __esm({
|
|
|
14797
14797
|
get srcGuildId() {
|
|
14798
14798
|
return this.#srcGuildId;
|
|
14799
14799
|
}
|
|
14800
|
+
get guildId() {
|
|
14801
|
+
return this.#contact.peer;
|
|
14802
|
+
}
|
|
14803
|
+
get channelId() {
|
|
14804
|
+
return this.#contact.subPeer;
|
|
14805
|
+
}
|
|
14800
14806
|
get contact() {
|
|
14801
14807
|
return this.#contact;
|
|
14802
14808
|
}
|
|
@@ -25756,12 +25762,17 @@ var init_webConfig = __esm({
|
|
|
25756
25762
|
}
|
|
25757
25763
|
return defaultWebConfig();
|
|
25758
25764
|
};
|
|
25759
|
-
defaultWebConfig = (exists2, path36, customComponent, defaultComponent) => {
|
|
25765
|
+
defaultWebConfig = (exists2, path36, customComponent, defaultComponent, icon) => {
|
|
25760
25766
|
return {
|
|
25761
25767
|
exists: exists2 ?? false,
|
|
25762
25768
|
path: path36 || "",
|
|
25763
25769
|
customComponent: customComponent ?? false,
|
|
25764
|
-
defaultComponent: defaultComponent ?? false
|
|
25770
|
+
defaultComponent: defaultComponent ?? false,
|
|
25771
|
+
icon: icon || {
|
|
25772
|
+
color: "",
|
|
25773
|
+
name: "star",
|
|
25774
|
+
size: 16
|
|
25775
|
+
}
|
|
25765
25776
|
};
|
|
25766
25777
|
};
|
|
25767
25778
|
getWebConfigPath = (plugin) => {
|
|
@@ -25785,7 +25796,8 @@ var init_webConfig = __esm({
|
|
|
25785
25796
|
true,
|
|
25786
25797
|
filepath,
|
|
25787
25798
|
typeof web2?.customComponent === "function",
|
|
25788
|
-
typeof web2?.components === "function"
|
|
25799
|
+
typeof web2?.components === "function",
|
|
25800
|
+
web2?.icon
|
|
25789
25801
|
);
|
|
25790
25802
|
} catch (error) {
|
|
25791
25803
|
logger.error(new Error("\u83B7\u53D6\u63D2\u4EF6web.config\u6587\u4EF6\u5931\u8D25", { cause: error }));
|
|
@@ -25959,7 +25971,8 @@ var init_list4 = __esm({
|
|
|
25959
25971
|
},
|
|
25960
25972
|
repoUrl: market?.repo[0].url || "",
|
|
25961
25973
|
hasConfig: webConfig.defaultComponent,
|
|
25962
|
-
hasCustomComponent: false
|
|
25974
|
+
hasCustomComponent: false,
|
|
25975
|
+
icon: webConfig?.icon
|
|
25963
25976
|
};
|
|
25964
25977
|
}
|
|
25965
25978
|
)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{j as t}from"./vendor-react-CvbOIVDM.js";import{P as r}from"./components-2t4MPaOy.js";import"./vendor-others-BVX3qAut.js";import"./vendor-editor-B8hjWfkw.js";import"./vendor-ui-utils-Bb93SeY3.js";import"./vendor-heroui-aleFRZYD.js";import"./page-dashboard-Bl6Ln0Uf.js";import"./utils-DPnp8l5q.js";import"./hooks-DyYsxseQ.js";import"./vendor-visual-CDapryqv.js";const x=()=>t.jsx("div",{className:"min-h-screen flex items-center justify-center",children:t.jsx(r,{})});export{x as default};
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{V as p}from"./vendor-react-
|
|
1
|
+
import{V as p}from"./vendor-react-CvbOIVDM.js";import{a5 as g}from"./components-2t4MPaOy.js";const u=async(e,a,n,t)=>{const{setIsLogModalOpen:c,setTaskId:i,setTaskLogs:o,setTaskName:f}=a;f("更新插件");const r=["开始创建更新任务...",`options: ${JSON.stringify(e)}`];o(r);try{const s=await g(e);if(s.success&&s.taskId)i(s.taskId),o([...r,`
|
|
2
2
|
任务创建成功!`,`任务ID: ${s.taskId}`,"正在连接任务执行日志..."]),c(!0),typeof t=="function"&&t();else throw new Error(s.message||"未知错误")}catch(s){console.error("更新失败:",s),p.error(`更新失败: ${s.message}`)}};export{u as c};
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/web/icon.css
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
/* https
|
|
1
|
+
/* https: //fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200 */
|
|
2
2
|
|
|
3
3
|
/* fallback */
|
|
4
4
|
@font-face {
|
|
5
|
-
font-family: 'Material
|
|
5
|
+
font-family: 'Material Symbols Outlined';
|
|
6
6
|
font-style: normal;
|
|
7
|
-
font-weight:
|
|
8
|
-
src: url(./
|
|
7
|
+
font-weight: 100 700;
|
|
8
|
+
src: url(./googleapis.woff2) format('woff2');
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
.material-
|
|
12
|
-
font-family: 'Material
|
|
11
|
+
.material-symbols-outlined {
|
|
12
|
+
font-family: 'Material Symbols Outlined';
|
|
13
13
|
font-weight: normal;
|
|
14
14
|
font-style: normal;
|
|
15
15
|
font-size: 24px;
|
package/dist/web/index.html
CHANGED
|
@@ -14,21 +14,21 @@
|
|
|
14
14
|
content="viewport-fit=cover, width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
|
|
15
15
|
name="viewport" />
|
|
16
16
|
<link href="/web/assets/ico/favicon-BoqZd694.ico" rel="icon" />
|
|
17
|
-
<script type="module" crossorigin src="/web/assets/js/entry-
|
|
17
|
+
<script type="module" crossorigin src="/web/assets/js/entry-DE0mHEZF.js"></script>
|
|
18
18
|
<link rel="modulepreload" crossorigin href="/web/assets/js/vendor-editor-B8hjWfkw.js">
|
|
19
|
-
<link rel="modulepreload" crossorigin href="/web/assets/js/vendor-others-
|
|
19
|
+
<link rel="modulepreload" crossorigin href="/web/assets/js/vendor-others-BVX3qAut.js">
|
|
20
20
|
<link rel="modulepreload" crossorigin href="/web/assets/js/vendor-ui-utils-Bb93SeY3.js">
|
|
21
|
-
<link rel="modulepreload" crossorigin href="/web/assets/js/vendor-react-
|
|
22
|
-
<link rel="modulepreload" crossorigin href="/web/assets/js/vendor-heroui-
|
|
23
|
-
<link rel="modulepreload" crossorigin href="/web/assets/js/hooks-
|
|
24
|
-
<link rel="modulepreload" crossorigin href="/web/assets/js/vendor-visual-
|
|
25
|
-
<link rel="modulepreload" crossorigin href="/web/assets/js/components-
|
|
26
|
-
<link rel="modulepreload" crossorigin href="/web/assets/js/utils-
|
|
27
|
-
<link rel="modulepreload" crossorigin href="/web/assets/js/page-dashboard-
|
|
21
|
+
<link rel="modulepreload" crossorigin href="/web/assets/js/vendor-react-CvbOIVDM.js">
|
|
22
|
+
<link rel="modulepreload" crossorigin href="/web/assets/js/vendor-heroui-aleFRZYD.js">
|
|
23
|
+
<link rel="modulepreload" crossorigin href="/web/assets/js/hooks-DyYsxseQ.js">
|
|
24
|
+
<link rel="modulepreload" crossorigin href="/web/assets/js/vendor-visual-CDapryqv.js">
|
|
25
|
+
<link rel="modulepreload" crossorigin href="/web/assets/js/components-2t4MPaOy.js">
|
|
26
|
+
<link rel="modulepreload" crossorigin href="/web/assets/js/utils-DPnp8l5q.js">
|
|
27
|
+
<link rel="modulepreload" crossorigin href="/web/assets/js/page-dashboard-Bl6Ln0Uf.js">
|
|
28
28
|
<link rel="stylesheet" crossorigin href="/web/assets/css/vendor-editor-CFbL2ovg.css">
|
|
29
29
|
<link rel="stylesheet" crossorigin href="/web/assets/css/vendor-others-ZgkIHsf0.css">
|
|
30
30
|
<link rel="stylesheet" crossorigin href="/web/assets/css/components-ep7vm38G.css">
|
|
31
|
-
<link rel="stylesheet" crossorigin href="/web/assets/css/index-
|
|
31
|
+
<link rel="stylesheet" crossorigin href="/web/assets/css/index-C9_Eu3dq.css">
|
|
32
32
|
</head>
|
|
33
33
|
|
|
34
34
|
<body>
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{j as t}from"./vendor-react-Dzwr57aT.js";import{P as r}from"./components-Bpn1WyZD.js";import"./vendor-others-BQzLsA1F.js";import"./vendor-editor-B8hjWfkw.js";import"./vendor-ui-utils-Bb93SeY3.js";import"./vendor-heroui-Bi6Ny18P.js";import"./page-dashboard-DgI65l0T.js";import"./utils-yaKwTRob.js";import"./hooks-DSAoGH66.js";import"./vendor-visual-DsVosOWE.js";const x=()=>t.jsx("div",{className:"min-h-screen flex items-center justify-center",children:t.jsx(r,{})});export{x as default};
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|