karin-plugin-kkk 2.30.0 → 2.30.3
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 +84 -0
- package/lib/apps/admin.js +1 -1
- package/lib/apps/help.js +1 -1
- package/lib/apps/push.js +1 -1
- package/lib/apps/qrlogin.js +1 -1
- package/lib/apps/statistics.js +1 -1
- package/lib/apps/tools.js +1 -1
- package/lib/apps/update.js +1 -1
- package/lib/build-metadata.json +5 -5
- package/lib/core_chunk/amagi.d.mts +16697 -16016
- package/lib/core_chunk/amagi.js +1 -1
- package/lib/core_chunk/amagiClient.js +1 -1
- package/lib/core_chunk/db.js +1 -1
- package/lib/core_chunk/main.js +15408 -27084
- package/lib/core_chunk/richtext.js +1 -1
- package/lib/core_chunk/template.d.mts +30 -8
- package/lib/core_chunk/template.js +1 -1
- package/lib/core_chunk/vendor.js +16227 -5164
- package/lib/karin-plugin-kkk.css +508 -333
- package/lib/root.js +1 -1
- package/lib/web.config.js +1 -1
- package/package.json +2 -2
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { $ as createListItemNode, G as createAtNode, J as createEmojiNode, K as createBlockquoteNode, Q as createLinkCardNode, W as renderRichTextToReact, X as createImageNode, Y as createHeadingNode, Z as createLineBreakNode, at as createSearchKeywordNode, ct as createViewPictureNode, dt as extractRichTextPlainText, et as createListNode, ft as normalizeRichTextNodes, it as createRichTextDocument, lt as createVoteNode, nt as createMentionNode, ot as createTextNode, q as createCodeBlockNode, rt as createParagraphNode, st as createTopicNode, tt as createLotteryNode, ut as createWebLinkNode } from "./main.js";
|
|
2
2
|
export { createAtNode, createBlockquoteNode, createCodeBlockNode, createEmojiNode, createHeadingNode, createImageNode, createLineBreakNode, createLinkCardNode, createListItemNode, createListNode, createLotteryNode, createMentionNode, createParagraphNode, createRichTextDocument, createSearchKeywordNode, createTextNode, createTopicNode, createViewPictureNode, createVoteNode, createWebLinkNode, extractRichTextPlainText, normalizeRichTextNodes, renderRichTextToReact };
|
|
@@ -69,7 +69,16 @@ interface DouyinCommentProps extends BaseComponentProps {
|
|
|
69
69
|
Region: string; /** 相关搜索(大家都在搜) */
|
|
70
70
|
suggestWrod: string[]; /** 视频分辨率 */
|
|
71
71
|
Resolution: string | null; /** 分享链接 */
|
|
72
|
-
share_url: string; /**
|
|
72
|
+
share_url: string; /** 作者昵称 */
|
|
73
|
+
Author: string; /** 作者头像 */
|
|
74
|
+
AuthorAvatar: string; /** 作品统计 */
|
|
75
|
+
Statistics: {
|
|
76
|
+
digg_count: number;
|
|
77
|
+
comment_count: number;
|
|
78
|
+
share_count: number;
|
|
79
|
+
collect_count: number;
|
|
80
|
+
}; /** 发布时间戳(秒) */
|
|
81
|
+
CreateTime: number; /** 评论数据列表 */
|
|
73
82
|
CommentsData: Array<{
|
|
74
83
|
/** 评论ID */id?: number; /** 评论CID */
|
|
75
84
|
cid?: string; /** 作品ID */
|
|
@@ -237,15 +246,25 @@ interface DouyinLiveProps extends BaseComponentProps {
|
|
|
237
246
|
data: {
|
|
238
247
|
/** 是否使用深色主题 */useDarkTheme?: boolean; /** 直播封面图片URL */
|
|
239
248
|
image_url: string; /** 直播标题/描述 */
|
|
240
|
-
text: string; /**
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
249
|
+
text: string; /** 直播分区标题 */
|
|
250
|
+
partition_title: string; /** 房间号 */
|
|
251
|
+
room_id: string; /** 总观看次数 */
|
|
252
|
+
total_viewers: string; /** 在线观众数 */
|
|
253
|
+
online_viewers: string; /** 用户头像URL */
|
|
244
254
|
avater_url: string; /** 用户名 */
|
|
245
255
|
username: string; /** 粉丝数 */
|
|
246
256
|
fans: string; /** 动态类型 */
|
|
247
257
|
dynamicTYPE: string; /** 分享链接 */
|
|
248
|
-
share_url: string;
|
|
258
|
+
share_url: string; /** 点赞数 */
|
|
259
|
+
like_count: string; /** 在线人数文本 */
|
|
260
|
+
user_count_str: string; /** 直播分辨率 */
|
|
261
|
+
resolution: string; /** 主播签名 */
|
|
262
|
+
signature: string; /** 城市 */
|
|
263
|
+
city: string; /** 作品数 */
|
|
264
|
+
aweme_count: string; /** 关注数 */
|
|
265
|
+
following_count: string; /** 获赞数 */
|
|
266
|
+
total_favorited: string; /** 是否有商品 */
|
|
267
|
+
has_commerce_goods: boolean;
|
|
249
268
|
};
|
|
250
269
|
/** 预生成的二维码数据URL */
|
|
251
270
|
qrCodeDataUrl: string;
|
|
@@ -1643,8 +1662,11 @@ interface MenuItem {
|
|
|
1643
1662
|
title: string;
|
|
1644
1663
|
/** 菜单项描述 */
|
|
1645
1664
|
description: string;
|
|
1646
|
-
/**
|
|
1647
|
-
icon?: string
|
|
1665
|
+
/** 图标:可以是图标名称字符串,或带颜色的对象 */
|
|
1666
|
+
icon?: string | {
|
|
1667
|
+
name: string;
|
|
1668
|
+
color?: string;
|
|
1669
|
+
};
|
|
1648
1670
|
}
|
|
1649
1671
|
/**
|
|
1650
1672
|
* 菜单分组接口
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { A as template_default, H as reactServerRender, U as renderVideoPreviewPage } from "./main.js";
|
|
2
2
|
export { template_default as default, reactServerRender, renderVideoPreviewPage };
|