@waline/client 3.5.5 → 3.5.7
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/dist/comment.d.ts +2 -1
- package/dist/comment.js +1 -1
- package/dist/comment.js.map +1 -1
- package/dist/component.d.ts +3 -1
- package/dist/component.js +5 -5
- package/dist/component.js.map +1 -1
- package/dist/pageview.d.ts +2 -1
- package/dist/pageview.js +1 -1
- package/dist/pageview.js.map +1 -1
- package/dist/slim.d.ts +5 -2
- package/dist/slim.js +5 -5
- package/dist/slim.js.map +1 -1
- package/dist/waline.d.ts +5 -2
- package/dist/waline.js +20 -20
- package/dist/waline.js.map +1 -1
- package/dist/waline.umd.js +20 -20
- package/dist/waline.umd.js.map +1 -1
- package/package.json +7 -7
package/dist/waline.d.ts
CHANGED
|
@@ -346,8 +346,10 @@ interface WalineProps {
|
|
|
346
346
|
* 文章反应
|
|
347
347
|
*
|
|
348
348
|
* Article reaction
|
|
349
|
+
*
|
|
350
|
+
* @default false
|
|
349
351
|
*/
|
|
350
|
-
reaction?: string[];
|
|
352
|
+
reaction?: string[] | boolean;
|
|
351
353
|
/**
|
|
352
354
|
* 设置表情包
|
|
353
355
|
*
|
|
@@ -683,4 +685,5 @@ interface WalineUserListResult {
|
|
|
683
685
|
}
|
|
684
686
|
declare const UserList: ({ el, serverURL, count, locale, lang, mode, }: WalineUserListOptions) => Promise<WalineUserListResult>;
|
|
685
687
|
|
|
686
|
-
export { RecentComments, UserList,
|
|
688
|
+
export { RecentComments, UserList, commentCount, DEFAULT_LOCALES as defaultLocales, init, pageviewCount, version };
|
|
689
|
+
export type { WalineAbort, WalineCommentCountOptions, WalineCommentSorting, WalineDateLocale, WalineEmojiInfo, WalineEmojiMaps, WalineEmojiPresets, WalineHighlighter, WalineImageUploader, WalineInitOptions, WalineInstance, WalineLevelLocale, WalineLocale, WalineLoginStatus, WalineMeta, WalinePageviewCountOptions, WalineProps, WalineReactionLocale, WalineRecentCommentsOptions, WalineRecentCommentsResult, WalineSearchImageData, WalineSearchOptions, WalineSearchResult, WalineTeXRenderer, WalineUserListOptions, WalineUserListResult };
|