@apolitical/component-library 4.2.8 → 4.3.0-4520.1
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/constants/attributes.d.ts +1 -0
- package/constants/index.d.ts +2 -1
- package/discussion/components/likes/likes.d.ts +1 -1
- package/discussion/discussion.helpers.d.ts +1 -0
- package/index.js +40 -40
- package/index.mjs +5088 -5058
- package/package.json +1 -1
- package/user/member/member.d.ts +3 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const NO_ALT_TEXT = "no-alt";
|
package/constants/index.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ interface Props {
|
|
|
14
14
|
userLiked?: boolean;
|
|
15
15
|
/** Information about the content being liked */
|
|
16
16
|
content?: IDiscussionContent;
|
|
17
|
-
/** If the user is able to like the content */
|
|
17
|
+
/** If the user is able to like the content (e.g. they can't like their own content) */
|
|
18
18
|
canLike?: boolean;
|
|
19
19
|
/** Functions to handle liking and unliking */
|
|
20
20
|
functions?: {
|