@vehiclehistory/property-lib 0.0.34 → 0.0.36
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,16 @@
|
|
|
1
|
+
import { ReactNode, NamedExoticComponent } from 'react';
|
|
2
|
+
interface ContentCardProps {
|
|
3
|
+
block?: boolean;
|
|
4
|
+
children?: ReactNode;
|
|
5
|
+
className?: string;
|
|
6
|
+
contentClass?: string;
|
|
7
|
+
footerClass?: string;
|
|
8
|
+
footerContent?: ReactNode | string;
|
|
9
|
+
headerContent?: ReactNode | string;
|
|
10
|
+
headerClass?: string;
|
|
11
|
+
list?: boolean;
|
|
12
|
+
props?: object;
|
|
13
|
+
variation?: 'primary' | 'secondary';
|
|
14
|
+
}
|
|
15
|
+
declare const _default: NamedExoticComponent<ContentCardProps>;
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Wrapper with proper spacing and bottom border for stacked content sections
|
|
4
|
+
* @param children
|
|
5
|
+
* @param className
|
|
6
|
+
* @constructor
|
|
7
|
+
*/
|
|
8
|
+
declare const StackedListItem: FC<{
|
|
9
|
+
children?: ReactNode;
|
|
10
|
+
className?: string;
|
|
11
|
+
}>;
|
|
12
|
+
export default StackedListItem;
|
|
@@ -23,5 +23,7 @@ import { default as Stars } from './ui/Stars/Stars';
|
|
|
23
23
|
import { default as TextArea } from './ui/Text/TextArea';
|
|
24
24
|
import { default as Textbox } from './ui/Text/Textbox';
|
|
25
25
|
import { default as ContactForm } from './common/ContactForm';
|
|
26
|
+
import { default as ContentCard } from './common/ContentCard';
|
|
27
|
+
import { default as StackedListItem } from './common/StackedListItem';
|
|
26
28
|
import { default as FunnelHeader } from './funnel/FunnelHeader';
|
|
27
|
-
export { Accordion, Alert, Autocomplete, Badge, Button, ButtonGroup, Card, Checkbox, ContactForm, Container, Dialog, DialogOld, Dots, FunnelHeader, Icon, LoadingBar, Spinner, Popover, ProgressBar, Radio, Select, Skeleton, Slider, Stars, TextArea, Textbox, };
|
|
29
|
+
export { Accordion, Alert, Autocomplete, Badge, Button, ButtonGroup, Card, Checkbox, ContactForm, Container, ContentCard, Dialog, DialogOld, Dots, FunnelHeader, Icon, LoadingBar, Spinner, Popover, ProgressBar, Radio, Select, Skeleton, StackedListItem, Slider, Stars, TextArea, Textbox, };
|