@apolitical/component-library 8.3.8-ac.0 → 8.3.8-ac.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/replies-feed/components/add-reply-form/add-reply-form.d.ts +4 -1
- package/form/types/profile-form/profile-form.d.ts +2 -0
- package/index.js +89 -89
- package/index.mjs +2191 -2179
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/base/_blockquotes.scss +1 -1
- package/styles/base/_lists.scss +1 -1
- package/styles/base/_table.scss +1 -1
- package/styles/base/_titles.scss +4 -8
- package/styles/base/buttons/_button-wrapper.scss +0 -1
- package/styles/base/buttons/_buttons.scss +5 -10
- package/styles/uclasses/README.md +49 -0
- package/styles/uclasses/uclasses.scss +978 -0
|
@@ -11,6 +11,9 @@ interface Props {
|
|
|
11
11
|
join: () => Promise<void>;
|
|
12
12
|
/** Function to leave the community */
|
|
13
13
|
leave: () => Promise<void>;
|
|
14
|
+
meta?: {
|
|
15
|
+
isAutoFocused?: boolean;
|
|
16
|
+
};
|
|
14
17
|
}
|
|
15
|
-
export default function AddReplyForm({ parentId, isMember, formFunctions, leave, join, }: Props): JSX.Element;
|
|
18
|
+
export default function AddReplyForm({ parentId, isMember, formFunctions, leave, join, meta, }: Props): JSX.Element;
|
|
16
19
|
export {};
|
|
@@ -37,6 +37,8 @@ export interface IProfileFormProps<OnSuccessArgs = IFormValues> {
|
|
|
37
37
|
button?: {
|
|
38
38
|
text: string;
|
|
39
39
|
};
|
|
40
|
+
/** Whether the form is disabled */
|
|
41
|
+
isDisabled?: boolean;
|
|
40
42
|
}
|
|
41
43
|
declare const ProfileForm: ({ isCreateProfile, hooks, functions, meta, gtm, ...props }: IProfileFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
42
44
|
export default ProfileForm;
|