@apolitical/component-library 6.1.2-ac.0 → 6.1.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/components/form/form.type.d.ts +2 -21
- package/discussion/components/form/index.d.ts +1 -1
- package/discussion/feeds/replies-feed/cache/hooks/feed/index.d.ts +1 -0
- package/discussion/feeds/replies-feed/cache/hooks/feed/parse-replies/index.d.ts +1 -0
- package/discussion/feeds/replies-feed/cache/hooks/feed/parse-replies/mocks/index.d.ts +2 -0
- package/discussion/feeds/replies-feed/cache/hooks/feed/parse-replies/mocks/replies.mock.d.ts +2 -0
- package/discussion/feeds/replies-feed/cache/hooks/feed/parse-replies/mocks/user.mock.d.ts +4 -0
- package/discussion/feeds/replies-feed/cache/hooks/feed/parse-replies/parse-replies.d.ts +28 -0
- package/discussion/feeds/replies-feed/components/add-reply-form/add-reply-form.d.ts +16 -0
- package/discussion/feeds/replies-feed/components/add-reply-form/index.d.ts +1 -0
- package/discussion/feeds/replies-feed/components/index.d.ts +3 -0
- package/discussion/feeds/replies-feed/components/load-more-replies-button/index.d.ts +1 -0
- package/discussion/feeds/replies-feed/components/load-more-replies-button/load-more-replies-button.d.ts +13 -0
- package/discussion/feeds/replies-feed/{nested-replies-feed → components/nested-replies-feed}/nested-replies-feed.d.ts +3 -3
- package/discussion/feeds/replies-feed/components/reply-item/index.d.ts +1 -0
- package/discussion/feeds/replies-feed/components/reply-item/reply-item.d.ts +26 -0
- package/discussion/feeds/replies-feed/mocks/index.d.ts +1 -0
- package/discussion/feeds/replies-feed/mocks/parsed-replies-feed.mock.d.ts +13 -0
- package/discussion/feeds/replies-feed/replies-feed.d.ts +4 -2
- package/discussion/sections/activity-section/activity-section.helpers.d.ts +2 -0
- package/discussion/sections/activity-section/activity-section.mock.d.ts +103 -0
- package/discussion/sections/activity-section/mocks/activity-functions.mock.d.ts +46 -0
- package/discussion/sections/activity-section/mocks/activity-section.mock.d.ts +45 -39
- package/discussion/sections/activity-section/mocks/index.d.ts +1 -0
- package/discussion/shared/interfaces/discussion.interface.d.ts +19 -0
- package/helpers/intl.d.ts +1 -1
- package/index.js +36 -36
- package/index.mjs +7787 -7680
- package/navigation/action-bar/action-bar.d.ts +0 -2
- package/package.json +1 -1
- /package/discussion/feeds/replies-feed/{nested-replies-feed → components/nested-replies-feed}/index.d.ts +0 -0
- /package/discussion/feeds/replies-feed/{nested-replies-feed → components/nested-replies-feed}/mocks/index.d.ts +0 -0
- /package/discussion/feeds/replies-feed/{nested-replies-feed → components/nested-replies-feed}/mocks/nested-replies-feed.mock.d.ts +0 -0
|
@@ -48,8 +48,6 @@ interface Props {
|
|
|
48
48
|
comments: false | {
|
|
49
49
|
/** The number of comments on the post */
|
|
50
50
|
count: number;
|
|
51
|
-
/** Whether the comment count is loading */
|
|
52
|
-
countIsLoading?: boolean;
|
|
53
51
|
functions: {
|
|
54
52
|
/** The function to handle the comment click */
|
|
55
53
|
onClick: () => void;
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|