@apolitical/component-library 8.0.0 → 8.1.0-RR.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/form/components/rich-text-editor/helpers/transform/transform.d.ts +1 -1
- package/general/buttons/button/button.d.ts +1 -0
- package/helpers/intl.d.ts +12 -0
- package/index.js +46 -46
- package/index.mjs +7074 -6883
- package/navigation/more-menu/index.d.ts +1 -1
- package/navigation/more-menu/more-menu.d.ts +2 -2
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/base/buttons/_buttons.scss +3 -1
- package/styles/base/buttons/_icons.scss +5 -0
- package/text/markdown-text/components/link/link.d.ts +1 -1
- package/user/connection-cta/connection-cta.d.ts +16 -0
- package/user/connection-cta/index.d.ts +1 -0
- package/user/index.d.ts +2 -0
- package/user/member/index.d.ts +2 -1
- package/user/member/member.d.ts +1 -1
- package/user/member/member.types.d.ts +23 -0
- package/user/show-email/index.d.ts +1 -0
- package/user/show-email/show-email.d.ts +10 -0
|
@@ -7,8 +7,8 @@ export default function transform<T extends InputNodeTypes>(node: MdastNode, opt
|
|
|
7
7
|
}[];
|
|
8
8
|
} | {
|
|
9
9
|
value?: string | undefined;
|
|
10
|
-
alt?: string | undefined;
|
|
11
10
|
url?: string | undefined;
|
|
11
|
+
alt?: string | undefined;
|
|
12
12
|
position?: any;
|
|
13
13
|
ordered?: boolean | undefined;
|
|
14
14
|
checked?: any;
|
package/helpers/intl.d.ts
CHANGED
|
@@ -548,6 +548,18 @@ export declare const checkIntlPathExists: (path: string, language?: {
|
|
|
548
548
|
markdown_iframe_padlet: string;
|
|
549
549
|
markdown_iframe_poll: string;
|
|
550
550
|
markdown_iframe_survey: string;
|
|
551
|
+
member_connection_accept: string;
|
|
552
|
+
member_connection_cancel: string;
|
|
553
|
+
member_connection_connect: string;
|
|
554
|
+
member_connection_connected: string;
|
|
555
|
+
member_connection_pending: string;
|
|
556
|
+
member_connection_requested: string;
|
|
557
|
+
member_connection_remove: string;
|
|
558
|
+
member_show_email_hide: string;
|
|
559
|
+
member_show_email_show: string;
|
|
560
|
+
member_show_email_tooltip: string;
|
|
561
|
+
member_show_email_tooltip_copied: string;
|
|
562
|
+
member_show_email_tooltip_mine: string;
|
|
551
563
|
}) => boolean;
|
|
552
564
|
export declare const getIntlPath: (callback: (args1: {
|
|
553
565
|
id: string;
|