@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/package.json
CHANGED
package/special.d.ts
CHANGED
|
@@ -586,6 +586,19 @@ declare interface LikeConfig {
|
|
|
586
586
|
* @default 40
|
|
587
587
|
*/
|
|
588
588
|
triggerSize?: number;
|
|
589
|
+
/**
|
|
590
|
+
* 气泡列表
|
|
591
|
+
*/
|
|
592
|
+
bubbles?: string[];
|
|
593
|
+
/**
|
|
594
|
+
* 是否显示点赞数
|
|
595
|
+
* @default true
|
|
596
|
+
*/
|
|
597
|
+
showCount?: boolean;
|
|
598
|
+
/**
|
|
599
|
+
* 图标图片
|
|
600
|
+
*/
|
|
601
|
+
triggerImage?: string;
|
|
589
602
|
}
|
|
590
603
|
|
|
591
604
|
/**
|