@apolitical/component-library 8.3.38-rc.2 → 8.3.38

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/helpers/intl.d.ts CHANGED
@@ -64,7 +64,7 @@ export declare const checkIntlPathExists: (path: string, language?: {
64
64
  joinCommunityButton_joining: string;
65
65
  joinCommunityButton_member: string;
66
66
  joinCommunityButton_member_aria: string;
67
- joinCommunityButton_options_menu: string;
67
+ joinCommunityButton_leave: string;
68
68
  joinCommunityButton_leaving: string;
69
69
  joinCommunityButton_closed_tooltip: string;
70
70
  joinCommunityButton_aria_live: string;
package/hooks/index.d.ts CHANGED
@@ -2,6 +2,7 @@ export * from './use-auto-resize';
2
2
  export { default as useCurrentPath } from './use-current-path';
3
3
  export { default as useEffectAfterMount } from './use-effect-after-mount';
4
4
  export { default as useElementWidth } from './use-element-width';
5
+ export { default as useHomepagePath } from './use-homepage-path';
5
6
  export { default as useScrollListener } from './use-scroll-listener';
6
7
  export { default as useScrollToHash } from './use-scroll-to-hash';
7
8
  export { default as useTooltips } from './use-tooltips';
@@ -0,0 +1,2 @@
1
+ declare const _default: () => string | undefined;
2
+ export default _default;