@vehiclehistory/property-lib 0.0.77 → 0.0.78
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/dist/components/index.d.ts +1 -5
- package/dist/components/ui/Autocomplete/Autocomplete.d.ts +1 -0
- package/dist/components/ui/Popover/Popover.d.ts +2 -3
- package/dist/components/ui/Radio/Radio.d.ts +1 -0
- package/dist/components/ui/Select/Select.d.ts +1 -2
- package/dist/main.es.js +676 -810
- package/dist/main.umd.js +1 -1
- package/dist/styles.css +1 -1
- package/package.json +2 -1
- package/dist/components/ui/ButtonGroup/ButtonGroup.d.ts +0 -7
- package/dist/components/ui/Card/Card.d.ts +0 -13
- package/dist/components/ui/Container/Container.d.ts +0 -7
- package/dist/components/ui/Dialog/DialogOld.d.ts +0 -22
|
@@ -3,12 +3,8 @@ import { default as Alert } from './ui/Alert/Alert';
|
|
|
3
3
|
import { default as Autocomplete } from './ui/Autocomplete/Autocomplete';
|
|
4
4
|
import { default as Badge } from './ui/Badge/Badge';
|
|
5
5
|
import { default as Button } from './ui/Button/Button';
|
|
6
|
-
import { default as ButtonGroup } from './ui/ButtonGroup/ButtonGroup';
|
|
7
|
-
import { default as Card } from './ui/Card/Card';
|
|
8
6
|
import { default as Checkbox } from './ui/Checkbox/Checkbox';
|
|
9
|
-
import { default as Container } from './ui/Container/Container';
|
|
10
7
|
import { default as Dialog } from './ui/Dialog/Dialog';
|
|
11
|
-
import { default as DialogOld } from './ui/Dialog/DialogOld';
|
|
12
8
|
import { default as Dots } from './ui/Dots/Dots';
|
|
13
9
|
import { default as Icon } from './ui/Icon/Icon';
|
|
14
10
|
import { default as LoadingBar } from './ui/Loading/LoadingBar';
|
|
@@ -29,4 +25,4 @@ import { default as FlexItem } from './common/FlexItem';
|
|
|
29
25
|
import { default as Spacer } from './common/Spacer';
|
|
30
26
|
import { default as StackedListItem } from './common/StackedListItem';
|
|
31
27
|
import { default as FunnelHeader } from './funnel/FunnelHeader';
|
|
32
|
-
export { Accordion, Alert, Autocomplete, Badge, Button,
|
|
28
|
+
export { Accordion, Alert, Autocomplete, Badge, Button, Checkbox, ContactForm, ContentCard, Dialog, Dots, FlexItem, FunnelHeader, Icon, LoadingBar, Popover, ProcessingSpinner, ProgressBar, Radio, Select, Skeleton, Spacer, Spinner, StackedListItem, Slider, Stars, TextArea, Textbox, };
|
|
@@ -3,14 +3,13 @@ declare const Popover: FC<{
|
|
|
3
3
|
activator: ReactNode;
|
|
4
4
|
activatorClass?: string;
|
|
5
5
|
attrs?: any;
|
|
6
|
-
options?: any;
|
|
7
6
|
children?: ReactNode;
|
|
8
7
|
className?: string;
|
|
9
8
|
containerClass?: string;
|
|
10
9
|
disabled?: boolean;
|
|
11
|
-
|
|
10
|
+
options?: any;
|
|
12
11
|
placement?: string;
|
|
13
12
|
strategy?: string;
|
|
14
|
-
trigger?:
|
|
13
|
+
trigger?: string;
|
|
15
14
|
}>;
|
|
16
15
|
export default Popover;
|