@popsure/dirty-swan 0.27.10 → 0.27.11
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/index.js +22492 -333
- package/dist/index.js.map +1 -1
- package/dist/lib/index.d.ts +2 -1
- package/package.json +1 -1
- package/src/lib/index.tsx +3 -1
package/dist/lib/index.d.ts
CHANGED
|
@@ -16,7 +16,8 @@ import Chip from './components/chip';
|
|
|
16
16
|
import AutoSuggestInput from './components/input/autoSuggestInput';
|
|
17
17
|
import { ComparisonTable, TableRating, TableTrueFalse, TableRowHeader, TableInfoButton, TableHeader } from './components/comparisonTable';
|
|
18
18
|
import SegmentedControl from './components/segmentedControl';
|
|
19
|
-
|
|
19
|
+
import Markdown from './components/markdown';
|
|
20
|
+
export { DateSelector, Dropzone, SignaturePad, AutocompleteAddress, Input, MultiDropzone, DownloadRing, DownloadButton, IbanInput, BottomModal, RegularModal, BottomOrRegularModal, CardWithTopLeftIcon, CardWithLeftIcon, CardWithTopIcon, InfoCard, CardButton, Button, CurrencyInput, AutoSuggestMultiSelect, Chip, AutoSuggestInput, ComparisonTable, TableRating, TableTrueFalse, TableRowHeader, TableInfoButton, SegmentedControl, Markdown, };
|
|
20
21
|
export type { TableHeader };
|
|
21
22
|
export type { DownloadRingDownloadStatus } from './models/downloadRing';
|
|
22
23
|
export type { DownloadStatus } from './models/download';
|
package/package.json
CHANGED
package/src/lib/index.tsx
CHANGED
|
@@ -33,6 +33,7 @@ import {
|
|
|
33
33
|
TableHeader,
|
|
34
34
|
} from './components/comparisonTable';
|
|
35
35
|
import SegmentedControl from './components/segmentedControl';
|
|
36
|
+
import Markdown from './components/markdown';
|
|
36
37
|
|
|
37
38
|
export {
|
|
38
39
|
DateSelector,
|
|
@@ -63,9 +64,10 @@ export {
|
|
|
63
64
|
TableRowHeader,
|
|
64
65
|
TableInfoButton,
|
|
65
66
|
SegmentedControl,
|
|
67
|
+
Markdown,
|
|
66
68
|
};
|
|
67
69
|
|
|
68
70
|
export type { TableHeader };
|
|
69
71
|
|
|
70
72
|
export type { DownloadRingDownloadStatus } from './models/downloadRing';
|
|
71
|
-
export type { DownloadStatus } from './models/download'
|
|
73
|
+
export type { DownloadStatus } from './models/download';
|