@weing-dev/ui-kit-primitive 0.0.2 → 0.0.4

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.
Files changed (81) hide show
  1. package/dist/components/Editor/Editor.context.d.ts +21 -3
  2. package/dist/components/Editor/Editor.d.ts +8 -6
  3. package/dist/components/Editor/constants/editor.constants.d.ts +24 -0
  4. package/dist/components/Editor/modules/ImageResize.d.ts +19 -0
  5. package/dist/components/Editor/modules/MediaResize.d.ts +19 -0
  6. package/dist/components/Editor/modules/index.d.ts +7 -0
  7. package/dist/components/Icons/AddOutlined.d.ts +3 -0
  8. package/dist/components/Icons/ArrowDown.d.ts +3 -0
  9. package/dist/components/Icons/ArrowDropDown.d.ts +3 -0
  10. package/dist/components/Icons/ArrowUp.d.ts +3 -0
  11. package/dist/components/Icons/ArticleOutlined.d.ts +3 -0
  12. package/dist/components/Icons/CalendarMonth.d.ts +3 -0
  13. package/dist/components/Icons/CalendarToday.d.ts +3 -0
  14. package/dist/components/Icons/Category.d.ts +3 -0
  15. package/dist/components/Icons/CategoryOutlined.d.ts +3 -0
  16. package/dist/components/Icons/Celebration.d.ts +3 -0
  17. package/dist/components/Icons/CheckBadge.d.ts +3 -0
  18. package/dist/components/Icons/CheckList.d.ts +3 -0
  19. package/dist/components/Icons/ChevronLeft.d.ts +3 -0
  20. package/dist/components/Icons/ChromeReaderMode.d.ts +3 -0
  21. package/dist/components/Icons/CreditCard.d.ts +3 -0
  22. package/dist/components/Icons/CropOriginal.d.ts +3 -0
  23. package/dist/components/Icons/DoubleArrowDown.d.ts +3 -0
  24. package/dist/components/Icons/DoubleArrowUp.d.ts +3 -0
  25. package/dist/components/Icons/EditNoteOutlined.d.ts +3 -0
  26. package/dist/components/Icons/HandshakeRound.d.ts +3 -0
  27. package/dist/components/Icons/Home.d.ts +3 -0
  28. package/dist/components/Icons/ImportExport.d.ts +3 -0
  29. package/dist/components/Icons/InfoFilled.d.ts +3 -0
  30. package/dist/components/Icons/LocalActivityOutlined.d.ts +3 -0
  31. package/dist/components/Icons/LocalHospital.d.ts +3 -0
  32. package/dist/components/Icons/MinusOutlined.d.ts +3 -0
  33. package/dist/components/Icons/Notification.d.ts +3 -0
  34. package/dist/components/Icons/Payment.d.ts +3 -0
  35. package/dist/components/Icons/PersonAddAlt.d.ts +3 -0
  36. package/dist/components/Icons/PersonFilled.d.ts +3 -0
  37. package/dist/components/Icons/PersonOutline.d.ts +3 -0
  38. package/dist/components/Icons/Search2.d.ts +3 -0
  39. package/dist/components/Icons/SettingFilled.d.ts +3 -0
  40. package/dist/components/Icons/TrashOutlined.d.ts +3 -0
  41. package/dist/components/Icons/index.d.ts +34 -0
  42. package/dist/index-BL3MWQXq.js +255 -0
  43. package/dist/index.css +3 -3
  44. package/dist/index.d.ts +2 -2
  45. package/dist/index.js +15885 -50093
  46. package/dist/index.umd.cjs +22 -156
  47. package/dist/static/icon/ArrowDown.svg +5 -0
  48. package/dist/static/icon/ArrowUp.svg +5 -0
  49. package/dist/static/icon/CalendarMonth.svg +5 -0
  50. package/dist/static/icon/CalendarToday.svg +5 -0
  51. package/dist/static/icon/Category.svg +9 -0
  52. package/dist/static/icon/Celebration.svg +11 -0
  53. package/dist/static/icon/CheckList.svg +5 -0
  54. package/dist/static/icon/ChromeReaderMode.svg +5 -0
  55. package/dist/static/icon/CreditCard.svg +5 -0
  56. package/dist/static/icon/CropOriginal.svg +5 -0
  57. package/dist/static/icon/Home.svg +5 -0
  58. package/dist/static/icon/Notification.svg +3 -0
  59. package/dist/static/icon/Payment.svg +5 -0
  60. package/dist/static/icon/PersonAddAlt.svg +5 -0
  61. package/dist/static/icon/PersonOutline.svg +5 -0
  62. package/dist/static/icon/addOutlined.svg +3 -0
  63. package/dist/static/icon/arrow_drop_down.svg +5 -0
  64. package/dist/static/icon/articleOutlined.svg +4 -0
  65. package/dist/static/icon/categoryOutlined.svg +3 -0
  66. package/dist/static/icon/checkBadge.svg +3 -0
  67. package/dist/static/icon/chevron_left.svg +3 -0
  68. package/dist/static/icon/doubleArrowDown.svg +4 -0
  69. package/dist/static/icon/doubleArrowUp.svg +4 -0
  70. package/dist/static/icon/edit_note_outlined.svg +3 -0
  71. package/dist/static/icon/handshake_Round.svg +3 -0
  72. package/dist/static/icon/import_export.svg +5 -0
  73. package/dist/static/icon/infoFilled.svg +3 -0
  74. package/dist/static/icon/localActivityOutlined.svg +3 -0
  75. package/dist/static/icon/localHospital.svg +3 -0
  76. package/dist/static/icon/minusOutlined.svg +3 -0
  77. package/dist/static/icon/personFilled.svg +3 -0
  78. package/dist/static/icon/search2.svg +3 -0
  79. package/dist/static/icon/settingFilled.svg +3 -0
  80. package/dist/static/icon/trashOutlined.svg +3 -0
  81. package/package.json +47 -24
@@ -1,8 +1,26 @@
1
1
  import { default as React } from 'react';
2
- import { default as Quill } from 'quill';
2
+ import { default as QuillType, Delta } from 'quill';
3
+ export type UploadedImageInfo = {
4
+ url: string;
5
+ objectKey?: string;
6
+ fileName?: string;
7
+ };
8
+ export type CustomImageUploadHandler = (file: File, quill: QuillType, // Quill 인스턴스
9
+ range: any) => Promise<UploadedImageInfo | string | null>;
3
10
  export interface EditorContextValue {
4
- quill: Quill | null;
11
+ quill: QuillType | null;
5
12
  isLoading: boolean;
6
13
  editorRef: React.RefObject<HTMLDivElement | null>;
14
+ initialValue?: string;
15
+ readOnly?: boolean;
16
+ placeholder?: string;
17
+ onChange?: (props: {
18
+ delta: Delta;
19
+ oldContents: Delta;
20
+ source: string;
21
+ value?: string;
22
+ }) => void;
23
+ onImageUpload?: CustomImageUploadHandler;
7
24
  }
8
- export declare const EditorContext: React.Context<EditorContextValue | null>;
25
+ export declare const initialEditorContextValue: EditorContextValue;
26
+ export declare const EditorContext: React.Context<EditorContextValue>;
@@ -1,10 +1,12 @@
1
1
  import { default as React } from 'react';
2
- declare const EditorSkeleton: () => import("react/jsx-runtime").JSX.Element | null;
3
- declare const EditorInput: () => import("react/jsx-runtime").JSX.Element;
4
- type EditorRootProps = React.PropsWithChildren<{
5
- initialValue?: string;
6
- onChange?: (content: string) => void;
7
- }>;
2
+ import { EditorContextValue, CustomImageUploadHandler } from './Editor.context';
3
+ type EditorSkeletonProps = React.JSX.IntrinsicElements["div"];
4
+ declare const EditorSkeleton: (props: EditorSkeletonProps) => import("react/jsx-runtime").JSX.Element | null;
5
+ type EditorInputProps = React.JSX.IntrinsicElements["div"];
6
+ declare const EditorInput: (props: EditorInputProps) => import("react/jsx-runtime").JSX.Element;
7
+ type EditorRootProps = React.PropsWithChildren<Omit<EditorContextValue, "quill" | "isLoading" | "editorRef" | "onImageUpload"> & {
8
+ onImageUpload?: CustomImageUploadHandler;
9
+ } & Omit<React.JSX.IntrinsicElements["div"], "onChange">>;
8
10
  declare const EditorRoot: (props: EditorRootProps) => import("react/jsx-runtime").JSX.Element;
9
11
  interface EditorComposition {
10
12
  Root: typeof EditorRoot;
@@ -0,0 +1,24 @@
1
+ export declare const FONT_SIZE_OPTIONS: string[];
2
+ export declare const TOOLBAR_OPTIONS: (string[] | {
3
+ header: (number | boolean)[];
4
+ }[] | {
5
+ size: string[];
6
+ }[] | {
7
+ list: string;
8
+ }[] | {
9
+ script: string;
10
+ }[] | {
11
+ indent: string;
12
+ }[] | {
13
+ direction: string;
14
+ }[] | ({
15
+ color: never[];
16
+ background?: undefined;
17
+ } | {
18
+ background: never[];
19
+ color?: undefined;
20
+ })[] | {
21
+ font: never[];
22
+ }[] | {
23
+ align: never[];
24
+ }[])[];
@@ -0,0 +1,19 @@
1
+ import { default as Quill } from 'quill';
2
+ export default class ImageResize {
3
+ private quill;
4
+ private img;
5
+ private box;
6
+ private startPos;
7
+ private startSize;
8
+ private currentHandle;
9
+ private aspectRatio;
10
+ constructor(quill: Quill);
11
+ private onClick;
12
+ private onDocClick;
13
+ private showResizeBox;
14
+ private initResize;
15
+ private performResize;
16
+ private stopResize;
17
+ private saveToDelta;
18
+ private removeBox;
19
+ }
@@ -0,0 +1,19 @@
1
+ import { default as Quill } from 'quill';
2
+ export default class MediaResize {
3
+ private quill;
4
+ private media;
5
+ private box;
6
+ private startPos;
7
+ private startSize;
8
+ private currentHandle;
9
+ private aspectRatio;
10
+ constructor(quill: Quill);
11
+ private getMedia;
12
+ private observeHover;
13
+ private showResizeBox;
14
+ private initResize;
15
+ private performResize;
16
+ private stopResize;
17
+ private saveToDelta;
18
+ private removeBox;
19
+ }
@@ -0,0 +1,7 @@
1
+ import { default as ImageResize } from './ImageResize';
2
+ import { default as MediaResize } from './MediaResize';
3
+ declare const EditorModules: {
4
+ ImageResize: typeof ImageResize;
5
+ MediaResize: typeof MediaResize;
6
+ };
7
+ export default EditorModules;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgAddOutlined: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgAddOutlined;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgArrowDown: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgArrowDown;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgArrowDropDown: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgArrowDropDown;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgArrowUp: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgArrowUp;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgArticleOutlined: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgArticleOutlined;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgCalendarMonth: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgCalendarMonth;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgCalendarToday: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgCalendarToday;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgCategory: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgCategory;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgCategoryOutlined: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgCategoryOutlined;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgCelebration: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgCelebration;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgCheckBadge: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgCheckBadge;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgCheckList: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgCheckList;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgChevronLeft: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgChevronLeft;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgChromeReaderMode: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgChromeReaderMode;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgCreditCard: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgCreditCard;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgCropOriginal: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgCropOriginal;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgDoubleArrowDown: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgDoubleArrowDown;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgDoubleArrowUp: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgDoubleArrowUp;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgEditNoteOutlined: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgEditNoteOutlined;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgHandshakeRound: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgHandshakeRound;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgHome: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgHome;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgImportExport: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgImportExport;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgInfoFilled: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgInfoFilled;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgLocalActivityOutlined: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgLocalActivityOutlined;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgLocalHospital: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgLocalHospital;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgMinusOutlined: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgMinusOutlined;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgNotification: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgNotification;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgPayment: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgPayment;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgPersonAddAlt: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgPersonAddAlt;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgPersonFilled: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgPersonFilled;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgPersonOutline: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgPersonOutline;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgSearch2: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgSearch2;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgSettingFilled: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgSettingFilled;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgTrashOutlined: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgTrashOutlined;
@@ -1,21 +1,40 @@
1
1
  export { default as Add } from './Add';
2
+ export { default as AddOutlined } from './AddOutlined';
2
3
  export { default as AddAPhoto } from './AddAPhoto';
3
4
  export { default as ApprovalInactive } from './ApprovalInactive';
5
+ export { default as ArrowDown } from './ArrowDown';
4
6
  export { default as ArrowRight } from './ArrowRight';
7
+ export { default as ArrowUp } from './ArrowUp';
8
+ export { default as ArrowDropDown } from './ArrowDropDown';
9
+ export { default as ArticleOutlined } from './ArticleOutlined';
5
10
  export { default as AttachFile } from './AttachFile';
11
+ export { default as CalendarMonth } from './CalendarMonth';
12
+ export { default as CalendarToday } from './CalendarToday';
6
13
  export { default as CancleFilled } from './CancleFilled';
7
14
  export { default as Cancle } from './Cancle';
8
15
  export { default as CartFilled } from './CartFilled';
9
16
  export { default as Cart } from './Cart';
17
+ export { default as Category } from './Category';
18
+ export { default as CategoryOutlined } from './CategoryOutlined';
19
+ export { default as Celebration } from './Celebration';
10
20
  export { default as Check } from './Check';
21
+ export { default as CheckBadge } from './CheckBadge';
11
22
  export { default as CheckBoxRound } from './CheckBoxRound';
23
+ export { default as CheckList } from './CheckList';
12
24
  export { default as CheckCircle } from './CheckCircle';
25
+ export { default as ChevronLeft } from './ChevronLeft';
26
+ export { default as ChromeReaderMode } from './ChromeReaderMode';
13
27
  export { default as Close } from './Close';
14
28
  export { default as Company } from './Company';
29
+ export { default as CreditCard } from './CreditCard';
30
+ export { default as CropOriginal } from './CropOriginal';
31
+ export { default as DoubleArrowDown } from './DoubleArrowDown';
32
+ export { default as DoubleArrowUp } from './DoubleArrowUp';
15
33
  export { default as Download } from './Download';
16
34
  export { default as DragHandle } from './DragHandle';
17
35
  export { default as Eco } from './Eco';
18
36
  export { default as EditSquare } from './EditSquare';
37
+ export { default as EditNoteOutlined } from './EditNoteOutlined';
19
38
  export { default as ErrorFilled } from './ErrorFilled';
20
39
  export { default as Error } from './Error';
21
40
  export { default as ExpandAll } from './ExpandAll';
@@ -27,34 +46,49 @@ export { default as FilecheckInactive } from './FilecheckInactive';
27
46
  export { default as GoBefore } from './GoBefore';
28
47
  export { default as GoNext } from './GoNext';
29
48
  export { default as HamburgerMenu } from './HamburgerMenu';
49
+ export { default as HandshakeRound } from './HandshakeRound';
50
+ export { default as Home } from './Home';
30
51
  export { default as ImagecheckPlay } from './ImagecheckPlay';
52
+ export { default as ImportExport } from './ImportExport';
53
+ export { default as InfoFilled } from './InfoFilled';
31
54
  export { default as Inventory } from './Inventory';
32
55
  export { default as KakaoTalk } from './KakaoTalk';
33
56
  export { default as ListAll } from './ListAll';
57
+ export { default as LocalActivityOutlined } from './LocalActivityOutlined';
58
+ export { default as LocalHospital } from './LocalHospital';
34
59
  export { default as LocalShipping } from './LocalShipping';
35
60
  export { default as Logout } from './Logout';
36
61
  export { default as Menu } from './Menu';
37
62
  export { default as Minus } from './Minus';
63
+ export { default as MinusOutlined } from './MinusOutlined';
38
64
  export { default as ModeEdit } from './ModeEdit';
39
65
  export { default as More } from './More';
40
66
  export { default as NaverBlog } from './NaverBlog';
41
67
  export { default as Naver } from './Naver';
68
+ export { default as Notification } from './Notification';
42
69
  export { default as OrderApprove } from './OrderApprove';
43
70
  export { default as OrderInactive } from './OrderInactive';
44
71
  export { default as OrderPlay } from './OrderPlay';
45
72
  export { default as Outward } from './Outward';
46
73
  export { default as PayApprove } from './PayApprove';
47
74
  export { default as PayInactive } from './PayInactive';
75
+ export { default as Payment } from './Payment';
76
+ export { default as PersonAddAlt } from './PersonAddAlt';
48
77
  export { default as Personcard } from './Personcard';
78
+ export { default as PersonFilled } from './PersonFilled';
79
+ export { default as PersonOutline } from './PersonOutline';
49
80
  export { default as PrintInactive } from './PrintInactive';
50
81
  export { default as PrintPlay } from './PrintPlay';
51
82
  export { default as Product } from './Product';
52
83
  export { default as Search } from './Search';
84
+ export { default as Search2 } from './Search2';
85
+ export { default as SettingFilled } from './SettingFilled';
53
86
  export { default as Settings } from './Settings';
54
87
  export { default as ShippingDone } from './ShippingDone';
55
88
  export { default as SupportAgent } from './SupportAgent';
56
89
  export { default as SwapVert } from './SwapVert';
57
90
  export { default as Task } from './Task';
91
+ export { default as TrashOutlined } from './TrashOutlined';
58
92
  export { default as Upload } from './Upload';
59
93
  export { default as User } from './User';
60
94
  export { default as WarningFilled } from './WarningFilled';