@popsure/dirty-swan 0.37.0-rc.2 → 0.37.0
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/cjs/index.d.ts +2 -2
- package/dist/cjs/index.js +387 -392
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/lib/components/icon/index.d.ts +1 -0
- package/dist/cjs/lib/index.d.ts +2 -2
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +361 -362
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/lib/components/icon/index.d.ts +1 -0
- package/dist/esm/lib/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/index.tsx +2 -3
- package/src/lib/components/icon/assets/plane-repatriation-filled.svg +3 -0
- package/src/lib/components/icon/assets/plane-repatriation.svg +3 -0
- package/src/lib/components/icon/index.ts +1 -0
- package/src/lib/index.tsx +2 -2
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './icons';
|
package/dist/esm/lib/index.d.ts
CHANGED
|
@@ -19,8 +19,8 @@ import { ComparisonTable, TableRating, TableTrueFalse, TableRowHeader, TableButt
|
|
|
19
19
|
import { SegmentedControl } from './components/segmentedControl';
|
|
20
20
|
import { Markdown } from './components/markdown';
|
|
21
21
|
import { Link } from './components/link';
|
|
22
|
-
import * as icons from './components/icon/icons';
|
|
23
22
|
import { images } from './util/images';
|
|
24
|
-
export
|
|
23
|
+
export * from './components/icon';
|
|
24
|
+
export { DateSelector, SignaturePad, AutocompleteAddress, Input, MultiDropzone, DownloadButton, IbanInput, BottomModal, RegularModal, BottomOrRegularModal, CardWithTopLeftIcon, CardWithLeftIcon, CardWithTopIcon, InfoCard, CardButton, Button, CurrencyInput, AutoSuggestMultiSelect, Chip, AutoSuggestInput, ComparisonTable, TableRating, TableTrueFalse, TableRowHeader, TableButton, TableInfoButton, SegmentedControl, Markdown, Checkbox, Link, InformationBox, Badge, images, };
|
|
25
25
|
export type { FileType, MultiDropzoneProps, TableHeader, UploadedFile, UploadStatus };
|
|
26
26
|
export type { DownloadStatus } from './models/download';
|
package/package.json
CHANGED
package/src/index.tsx
CHANGED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3 15.7601L6.52923 17.4557L8.24578 21L10.3268 18.9213L10.2063 16.7224L12.4151 14.516L18.3001 20.3963L20.5082 18.1906L16.8288 10.1073C16.8288 10.1073 18.3048 8.63732 19.0372 7.90136L19.0471 7.89139C19.7892 7.14571 21.9683 4.95626 20.5064 3.49435C19.0379 2.02587 16.8266 4.22581 16.0948 4.96232C15.363 5.69883 13.884 7.16768 13.884 7.16768L5.79265 3.49137L3.58448 5.69708L9.37048 11.4767L7.16194 13.6814H6.12146H5.08097L3 15.7601Z" fill="#8E8CEE" stroke="#8E8CEE" stroke-width="2" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M20.7641 4.18071L20.7626 4.17659M6.52923 17.4557L3 15.7601L5.08097 13.6814H6.12146H7.16194L9.37048 11.4767L3.58448 5.69708L5.79265 3.49137L13.884 7.16768C13.884 7.16768 15.363 5.69883 16.0948 4.96232C16.8266 4.22581 19.0379 2.02587 20.5064 3.49435C21.9683 4.95626 19.7892 7.14571 19.0471 7.89139L19.0372 7.90136C18.3048 8.63732 16.8288 10.1073 16.8288 10.1073L20.5082 18.1906L18.3001 20.3963L12.4151 14.516L10.2063 16.7224L10.3268 18.9213L8.24578 21L6.52923 17.4557Z" stroke="#8E8CEE" stroke-width="2" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './icons';
|
package/src/lib/index.tsx
CHANGED
|
@@ -43,9 +43,10 @@ import {
|
|
|
43
43
|
import { SegmentedControl } from './components/segmentedControl';
|
|
44
44
|
import { Markdown } from './components/markdown';
|
|
45
45
|
import { Link } from './components/link';
|
|
46
|
-
import * as icons from './components/icon/icons';
|
|
47
46
|
import { images } from './util/images';
|
|
48
47
|
|
|
48
|
+
export * from './components/icon';
|
|
49
|
+
|
|
49
50
|
export {
|
|
50
51
|
DateSelector,
|
|
51
52
|
SignaturePad,
|
|
@@ -79,7 +80,6 @@ export {
|
|
|
79
80
|
Link,
|
|
80
81
|
InformationBox,
|
|
81
82
|
Badge,
|
|
82
|
-
icons,
|
|
83
83
|
images,
|
|
84
84
|
};
|
|
85
85
|
|