@apolitical/component-library 4.3.1-beta.0 → 4.3.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/components/responses-heading/responses-heading.d.ts +3 -1
- package/index.js +30 -30
- package/index.mjs +3708 -3690
- package/package.json +1 -1
|
@@ -5,6 +5,8 @@ interface Props {
|
|
|
5
5
|
responses: number | string;
|
|
6
6
|
/** The language to use for the text */
|
|
7
7
|
locale?: string;
|
|
8
|
+
/** Whether the component is loading */
|
|
9
|
+
isLoading?: boolean;
|
|
8
10
|
}
|
|
9
|
-
declare const ResponsesHeading: ({ type, responses }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
declare const ResponsesHeading: ({ type, responses, isLoading, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
10
12
|
export default ResponsesHeading;
|