@apolitical/component-library 3.5.19 → 3.5.21
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/context/index.d.ts +1 -0
- package/context/overlay/index.d.ts +3 -0
- package/context/overlay/overlay.context.d.ts +6 -0
- package/context/overlay/overlay.hook.d.ts +1 -0
- package/context/overlay/overlay.provider.d.ts +4 -0
- package/index.js +17 -17
- package/index.mjs +1698 -1677
- package/package.json +1 -1
- package/sections/logo-section/logo-section.d.ts +3 -1
- package/style.css +1 -1
package/package.json
CHANGED
|
@@ -16,6 +16,8 @@ interface Props {
|
|
|
16
16
|
text: string;
|
|
17
17
|
className?: string;
|
|
18
18
|
};
|
|
19
|
+
/** Text to show above the logos */
|
|
20
|
+
text?: string;
|
|
19
21
|
/** The logos to show */
|
|
20
22
|
logos?: Array<LogosType>;
|
|
21
23
|
/** Optional styling */
|
|
@@ -30,5 +32,5 @@ interface Props {
|
|
|
30
32
|
/** Additional classes */
|
|
31
33
|
className?: string;
|
|
32
34
|
}
|
|
33
|
-
declare const LogoSection: ({ title: titleProps, logos, styling, className, }: Props) => import("react/jsx-runtime").JSX.Element | null;
|
|
35
|
+
declare const LogoSection: ({ title: titleProps, text, logos, styling, className, }: Props) => import("react/jsx-runtime").JSX.Element | null;
|
|
34
36
|
export default LogoSection;
|