@apolitical/component-library 1.6.1 → 1.6.2-beta.0
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/form/form.d.ts +2 -0
- package/index.js +34 -34
- package/index.mjs +1203 -1202
- package/package.json +1 -1
|
@@ -13,6 +13,8 @@ interface Props {
|
|
|
13
13
|
isEditing: false | {
|
|
14
14
|
text?: string;
|
|
15
15
|
};
|
|
16
|
+
/** Whether the title should show */
|
|
17
|
+
showTitle?: boolean;
|
|
16
18
|
};
|
|
17
19
|
/** The `ref` for the input, if we need to have control over it in the parent */
|
|
18
20
|
inputRef?: React.Ref<HTMLTextAreaElement> | undefined;
|