@vehiclehistory/property-lib 0.0.37 → 0.0.39

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,15 @@
1
+ import { ReactNode, NamedExoticComponent } from 'react';
2
+ declare const _default: NamedExoticComponent<{
3
+ children?: ReactNode;
4
+ className?: string;
5
+ colGap?: number;
6
+ direction?: "row" | "col";
7
+ label?: ReactNode;
8
+ labelClass?: string;
9
+ props?: object;
10
+ rowGap?: number;
11
+ value?: ReactNode;
12
+ valueClass?: string;
13
+ wrap?: boolean;
14
+ }>;
15
+ export default _default;
@@ -0,0 +1,26 @@
1
+ import { FC, ReactNode } from 'react';
2
+ /**
3
+ * Desktop/Mobile Spacing Wrapper for Pages/Nested Sections (margin-bottom)
4
+ * Desktop - Parent: 64px Child: 40px
5
+ * Mobile - Parent: 40px Child: 32px
6
+ * @param breakPage - Break Page on Print
7
+ * @param children
8
+ * @param className
9
+ * @param noPrint - Do Not Print the spacer & any children
10
+ * @param props - Custom container props/attrs
11
+ * @param title - Section title: Component/JSX or any - (margin-bottom: 32px)
12
+ * @param titleClass - Custom title class
13
+ * @param titleId - custom title id (page scroll etc)
14
+ * @constructor
15
+ */
16
+ declare const Spacer: FC<{
17
+ breakPage?: boolean;
18
+ children?: ReactNode;
19
+ className?: string;
20
+ noPrint?: boolean;
21
+ props?: object;
22
+ title?: string;
23
+ titleClass?: string;
24
+ titleId?: string;
25
+ }>;
26
+ export default Spacer;
@@ -3,10 +3,12 @@ import { FC, ReactNode } from 'react';
3
3
  * Wrapper with proper spacing and bottom border for stacked content sections
4
4
  * @param children
5
5
  * @param className
6
+ * @param list - Sets item wrapper as <li>, otherwise is a <div>
6
7
  * @constructor
7
8
  */
8
9
  declare const StackedListItem: FC<{
9
10
  children?: ReactNode;
10
11
  className?: string;
12
+ list?: boolean;
11
13
  }>;
12
14
  export default StackedListItem;
@@ -24,6 +24,8 @@ 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
26
  import { default as ContentCard } from './common/ContentCard';
27
+ import { default as FlexItem } from './common/FlexItem';
28
+ import { default as Spacer } from './common/Spacer';
27
29
  import { default as StackedListItem } from './common/StackedListItem';
28
30
  import { default as FunnelHeader } from './funnel/FunnelHeader';
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, };
31
+ export { Accordion, Alert, Autocomplete, Badge, Button, ButtonGroup, Card, Checkbox, ContactForm, Container, ContentCard, Dialog, DialogOld, Dots, FlexItem, FunnelHeader, Icon, LoadingBar, Spinner, Popover, ProgressBar, Radio, Select, Skeleton, Spacer, StackedListItem, Slider, Stars, TextArea, Textbox, };