@apolitical/component-library 4.1.9 → 4.1.10-ac.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.
@@ -0,0 +1 @@
1
+ export { default as ShareLink } from './share-link';
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ interface Props {
3
+ url: string;
4
+ }
5
+ declare const ShareLink: React.FC<Props>;
6
+ export default ShareLink;
package/helpers/intl.d.ts CHANGED
@@ -146,6 +146,8 @@ export declare const checkIntlPathExists: (path: string, language?: {
146
146
  discussion_responses_empty: string;
147
147
  discussion_responses_empty_answer: string;
148
148
  discussion_responses_placeholder: string;
149
+ discussion_share_copy_link: string;
150
+ discussion_share_copy_link_success: string;
149
151
  discussion_thread_show: string;
150
152
  discussion_thread_hide: string;
151
153
  discussion_thread_loadMore: string;