@popsure/dirty-swan 0.41.11 → 0.41.13

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.
@@ -1,3 +1,3 @@
1
1
  export { DateSelector, SignaturePad, AutocompleteAddress, Input, MultiDropzone, IbanInput, CurrencyInput, BottomModal, RegularModal, BottomOrRegularModal, CardWithTopLeftIcon, CardWithLeftIcon, CardWithTopIcon, InfoCard, CardButton, Card, Button, AutoSuggestMultiSelect, Chip, AutoSuggestInput, ComparisonTable, TableRating, TableTrueFalse, TableRowHeader, TableButton, TableInfoButton, SegmentedControl, DownloadButton, Markdown, Checkbox, Radio, Link, InformationBox, Badge, images, illustrations, Spinner, Toggle, Toaster, toast, } from './lib';
2
2
  export * from './lib/components/icon';
3
- export type { DownloadStatus, IllustrationKeys, FileType, MultiDropzoneProps, TableHeader, UploadedFile, UploadStatus, } from './lib';
3
+ export type { DownloadStatus, InformationBoxProps, IllustrationKeys, FileType, MultiDropzoneProps, TableHeader, UploadedFile, UploadStatus, } from './lib';
@@ -4,7 +4,7 @@ import { AutocompleteAddress } from './components/autocompleteAddress';
4
4
  import { Input } from './components/input';
5
5
  import { MultiDropzone, FileType, MultiDropzoneProps, UploadedFile, UploadStatus } from './components/multiDropzone';
6
6
  import { DownloadButton } from './components/downloadButton';
7
- import { InformationBox } from './components/informationBox';
7
+ import { InformationBox, InformationBoxProps } from './components/informationBox';
8
8
  import IbanInput from './components/input/iban';
9
9
  import { CurrencyInput } from './components/input/currency';
10
10
  import { Badge } from './components/badge';
@@ -27,5 +27,5 @@ import { Toggle } from './components/input/toggle';
27
27
  import { Toaster, toast } from './components/toast';
28
28
  export * from './components/icon';
29
29
  export { DateSelector, SignaturePad, AutocompleteAddress, Input, MultiDropzone, DownloadButton, IbanInput, BottomModal, RegularModal, BottomOrRegularModal, CardWithTopLeftIcon, CardWithLeftIcon, CardWithTopIcon, InfoCard, Card, CardButton, Button, CurrencyInput, AutoSuggestMultiSelect, Chip, AutoSuggestInput, ComparisonTable, TableRating, TableTrueFalse, TableRowHeader, TableButton, TableInfoButton, SegmentedControl, Markdown, Checkbox, Radio, Link, InformationBox, Badge, images, illustrations, Spinner, Toggle, Toaster, toast, };
30
- export type { IllustrationKeys, FileType, MultiDropzoneProps, TableHeader, UploadedFile, UploadStatus, };
30
+ export type { IllustrationKeys, InformationBoxProps, FileType, MultiDropzoneProps, TableHeader, UploadedFile, UploadStatus, };
31
31
  export type { DownloadStatus } from './models/download';
@@ -1,3 +1,3 @@
1
1
  export { DateSelector, SignaturePad, AutocompleteAddress, Input, MultiDropzone, IbanInput, CurrencyInput, BottomModal, RegularModal, BottomOrRegularModal, CardWithTopLeftIcon, CardWithLeftIcon, CardWithTopIcon, InfoCard, CardButton, Card, Button, AutoSuggestMultiSelect, Chip, AutoSuggestInput, ComparisonTable, TableRating, TableTrueFalse, TableRowHeader, TableButton, TableInfoButton, SegmentedControl, DownloadButton, Markdown, Checkbox, Radio, Link, InformationBox, Badge, images, illustrations, Spinner, Toggle, Toaster, toast, } from './lib';
2
2
  export * from './lib/components/icon';
3
- export type { DownloadStatus, IllustrationKeys, FileType, MultiDropzoneProps, TableHeader, UploadedFile, UploadStatus, } from './lib';
3
+ export type { DownloadStatus, InformationBoxProps, IllustrationKeys, FileType, MultiDropzoneProps, TableHeader, UploadedFile, UploadStatus, } from './lib';
@@ -4,7 +4,7 @@ import { AutocompleteAddress } from './components/autocompleteAddress';
4
4
  import { Input } from './components/input';
5
5
  import { MultiDropzone, FileType, MultiDropzoneProps, UploadedFile, UploadStatus } from './components/multiDropzone';
6
6
  import { DownloadButton } from './components/downloadButton';
7
- import { InformationBox } from './components/informationBox';
7
+ import { InformationBox, InformationBoxProps } from './components/informationBox';
8
8
  import IbanInput from './components/input/iban';
9
9
  import { CurrencyInput } from './components/input/currency';
10
10
  import { Badge } from './components/badge';
@@ -27,5 +27,5 @@ import { Toggle } from './components/input/toggle';
27
27
  import { Toaster, toast } from './components/toast';
28
28
  export * from './components/icon';
29
29
  export { DateSelector, SignaturePad, AutocompleteAddress, Input, MultiDropzone, DownloadButton, IbanInput, BottomModal, RegularModal, BottomOrRegularModal, CardWithTopLeftIcon, CardWithLeftIcon, CardWithTopIcon, InfoCard, Card, CardButton, Button, CurrencyInput, AutoSuggestMultiSelect, Chip, AutoSuggestInput, ComparisonTable, TableRating, TableTrueFalse, TableRowHeader, TableButton, TableInfoButton, SegmentedControl, Markdown, Checkbox, Radio, Link, InformationBox, Badge, images, illustrations, Spinner, Toggle, Toaster, toast, };
30
- export type { IllustrationKeys, FileType, MultiDropzoneProps, TableHeader, UploadedFile, UploadStatus, };
30
+ export type { IllustrationKeys, InformationBoxProps, FileType, MultiDropzoneProps, TableHeader, UploadedFile, UploadStatus, };
31
31
  export type { DownloadStatus } from './models/download';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@popsure/dirty-swan",
3
- "version": "0.41.11",
3
+ "version": "0.41.13",
4
4
  "author": "Vincent Audoire <vincent@getpopsure.com>",
5
5
  "license": "MIT",
6
6
  "private": false,
package/src/index.tsx CHANGED
@@ -48,6 +48,7 @@ export * from './lib/components/icon';
48
48
 
49
49
  export type {
50
50
  DownloadStatus,
51
+ InformationBoxProps,
51
52
  IllustrationKeys,
52
53
  FileType,
53
54
  MultiDropzoneProps,
package/src/lib/index.tsx CHANGED
@@ -10,7 +10,7 @@ import {
10
10
  UploadStatus,
11
11
  } from './components/multiDropzone';
12
12
  import { DownloadButton } from './components/downloadButton';
13
- import { InformationBox } from './components/informationBox';
13
+ import { InformationBox, InformationBoxProps } from './components/informationBox';
14
14
  import IbanInput from './components/input/iban';
15
15
  import { CurrencyInput } from './components/input/currency';
16
16
  import { Badge } from './components/badge';
@@ -97,6 +97,7 @@ export {
97
97
 
98
98
  export type {
99
99
  IllustrationKeys,
100
+ InformationBoxProps,
100
101
  FileType,
101
102
  MultiDropzoneProps,
102
103
  TableHeader,