@apolitical/component-library 5.3.7 → 5.4.0-beta.1
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/cards/cards.types.d.ts +0 -22
- package/cards/index.d.ts +0 -1
- package/cards/mocks/index.d.ts +0 -1
- package/discussion/components/form/form.type.d.ts +32 -22
- package/discussion/components/post/post.d.ts +2 -8
- package/discussion/components/post/post.mock.d.ts +1 -1
- package/discussion/feeds/activities-feed/activities-feed.d.ts +4 -4
- package/discussion/feeds/replies-feed/nested-replies-feed/nested-replies-feed.d.ts +3 -3
- package/discussion/feeds/replies-feed/replies-feed.d.ts +3 -3
- package/discussion/index.d.ts +1 -0
- package/discussion/sections/activity-section/activity-section.d.ts +3 -4
- package/discussion/shared/interfaces/discussion.interface.d.ts +8 -2
- package/form/components/rich-text-editor/rich-text-editor.types.d.ts +11 -15
- package/index.js +46 -46
- package/index.mjs +4747 -4744
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/variables/colors/theme/_cards.scss +0 -4
- package/cards/mocks/narrow-card.d.ts +0 -31
- package/cards/narrow-card/index.d.ts +0 -1
- package/cards/narrow-card/narrow-card.d.ts +0 -7
|
@@ -21,8 +21,4 @@ $cards: (
|
|
|
21
21
|
carousel_pagination_bg: get-map($c, 'n100'),
|
|
22
22
|
carousel_pagination_hover_bg: get-map($c, 'b200'),
|
|
23
23
|
carousel_pagination_selected_bg: get-map($c, 'b500'),
|
|
24
|
-
narrow-card: get-map($c, 'n600'),
|
|
25
|
-
narrow-card_border: get-map($c, 'n100'),
|
|
26
|
-
narrow-card_icon: get-map($c, 'white'),
|
|
27
|
-
narrow-card_icon_bg: get-map($c, 'n900'),
|
|
28
24
|
);
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
export namespace openCommunityMember {
|
|
2
|
-
namespace banner {
|
|
3
|
-
let description: string;
|
|
4
|
-
let height: number;
|
|
5
|
-
let type: string;
|
|
6
|
-
let url: string;
|
|
7
|
-
let width: number;
|
|
8
|
-
let aspect: string;
|
|
9
|
-
let query: string;
|
|
10
|
-
}
|
|
11
|
-
let title: string;
|
|
12
|
-
let text: string;
|
|
13
|
-
let isPrivate: boolean;
|
|
14
|
-
let slug: string;
|
|
15
|
-
}
|
|
16
|
-
export namespace openCommunityMemberNoImage {
|
|
17
|
-
let title_1: string;
|
|
18
|
-
export { title_1 as title };
|
|
19
|
-
let text_1: string;
|
|
20
|
-
export { text_1 as text };
|
|
21
|
-
let isPrivate_1: boolean;
|
|
22
|
-
export { isPrivate_1 as isPrivate };
|
|
23
|
-
}
|
|
24
|
-
export namespace closedCommunityMember {
|
|
25
|
-
let isPrivate_2: boolean;
|
|
26
|
-
export { isPrivate_2 as isPrivate };
|
|
27
|
-
}
|
|
28
|
-
export namespace closedCommunityMemberNoImage {
|
|
29
|
-
let isPrivate_3: boolean;
|
|
30
|
-
export { isPrivate_3 as isPrivate };
|
|
31
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as NarrowCard } from './narrow-card';
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { NarrowCardProps } from '../cards.types';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
declare const NarrowCard: ({ element, className, card, gtmContext, }: NarrowCardProps) => React.DetailedReactHTMLElement<{
|
|
4
|
-
children: import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
className: string;
|
|
6
|
-
}, HTMLElement>;
|
|
7
|
-
export default NarrowCard;
|