@polyv/chat-ui 2.3.0-rc-20251204.1 → 2.4.0-rc-20251225.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +13 -0
- package/index.es.js +20295 -17454
- package/index.umd.js +640 -607
- package/package.json +1 -1
- package/special.d.ts +13 -0
- package/special.es.js +17228 -14392
- package/special.umd.js +473 -440
package/index.d.ts
CHANGED
|
@@ -636,6 +636,19 @@ declare interface LikeConfig {
|
|
|
636
636
|
* @default 40
|
|
637
637
|
*/
|
|
638
638
|
triggerSize?: number;
|
|
639
|
+
/**
|
|
640
|
+
* 气泡列表
|
|
641
|
+
*/
|
|
642
|
+
bubbles?: string[];
|
|
643
|
+
/**
|
|
644
|
+
* 是否显示点赞数
|
|
645
|
+
* @default true
|
|
646
|
+
*/
|
|
647
|
+
showCount?: boolean;
|
|
648
|
+
/**
|
|
649
|
+
* 图标图片
|
|
650
|
+
*/
|
|
651
|
+
triggerImage?: string;
|
|
639
652
|
}
|
|
640
653
|
|
|
641
654
|
/**
|