@apolitical/component-library 6.6.1-beta.1 → 6.6.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/discussion/feeds/likes-feed/cache/cache.interface.d.ts +1 -1
- package/discussion/feeds/likes-feed/index.d.ts +1 -1
- package/helpers/intl.d.ts +1 -0
- package/index.js +2 -2
- package/index.mjs +10 -4
- package/layout/page-layout/components/header/header.data.d.ts +29 -20
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -5,7 +5,7 @@ export type ICache = InfiniteData<ICachePage, string>;
|
|
|
5
5
|
export type ICachePage = ExtendedReactionFilterAPIResponse;
|
|
6
6
|
export type ICacheItems = ICacheItem[];
|
|
7
7
|
type ICacheItem = IReaction;
|
|
8
|
-
|
|
8
|
+
interface ExtendedReactionFilterAPIResponse extends ReactionFilterAPIResponse {
|
|
9
9
|
results: IReaction[];
|
|
10
10
|
}
|
|
11
11
|
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export type { IQueryFns as ILikesFeedQueryFns
|
|
1
|
+
export type { IQueryFns as ILikesFeedQueryFns } from './cache';
|
|
2
2
|
export { default as LikesFeed } from './likes-feed';
|
|
3
3
|
export type { ILikesFeedProps } from './likes-feed';
|
package/helpers/intl.d.ts
CHANGED
|
@@ -425,6 +425,7 @@ export declare const checkIntlPathExists: (path: string, language?: {
|
|
|
425
425
|
header_menu_hide: string;
|
|
426
426
|
header_home_loggedOut: string;
|
|
427
427
|
header_home_loggedIn: string;
|
|
428
|
+
header_communities: string;
|
|
428
429
|
header_topics: string;
|
|
429
430
|
header_topics_explore: string;
|
|
430
431
|
header_topics_explore_events: string;
|