@publishfx/publish-components 2.0.3

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 (154) hide show
  1. package/README.md +191 -0
  2. package/dist/ActionButton/index.d.ts +10 -0
  3. package/dist/ActionButton/index.js +40 -0
  4. package/dist/ActionButton/index.module.js +9 -0
  5. package/dist/ActionButton/index_module.css +23 -0
  6. package/dist/ActionButton/interface.d.ts +12 -0
  7. package/dist/ActionButton/interface.js +9 -0
  8. package/dist/CommonModal/config.d.ts +8 -0
  9. package/dist/CommonModal/config.js +13 -0
  10. package/dist/CommonModal/confirm.d.ts +7 -0
  11. package/dist/CommonModal/confirm.js +132 -0
  12. package/dist/CommonModal/index.d.ts +2 -0
  13. package/dist/CommonModal/index.js +3 -0
  14. package/dist/CommonModal/interface.d.ts +17 -0
  15. package/dist/CommonModal/interface.js +0 -0
  16. package/dist/CommonModal/modal.d.ts +11 -0
  17. package/dist/CommonModal/modal.js +161 -0
  18. package/dist/CompareChange/index.d.ts +20 -0
  19. package/dist/CompareChange/index.js +66 -0
  20. package/dist/CustomTransfer/BaseTransfer.d.ts +35 -0
  21. package/dist/CustomTransfer/BaseTransfer.js +155 -0
  22. package/dist/CustomTransfer/SelectItemList.d.ts +9 -0
  23. package/dist/CustomTransfer/SelectItemList.js +54 -0
  24. package/dist/CustomTransfer/SelectTreeList.d.ts +43 -0
  25. package/dist/CustomTransfer/SelectTreeList.js +248 -0
  26. package/dist/CustomTransfer/SelectedItemList.d.ts +21 -0
  27. package/dist/CustomTransfer/SelectedItemList.js +132 -0
  28. package/dist/CustomTransfer/SimpleLink.d.ts +4 -0
  29. package/dist/CustomTransfer/SimpleLink.js +20 -0
  30. package/dist/CustomTransfer/index.d.ts +22 -0
  31. package/dist/CustomTransfer/index.js +92 -0
  32. package/dist/CustomTransfer/styled.d.ts +27 -0
  33. package/dist/CustomTransfer/styled.js +181 -0
  34. package/dist/PerformanceTable/ResizableTitle.d.ts +12 -0
  35. package/dist/PerformanceTable/ResizableTitle.js +85 -0
  36. package/dist/PerformanceTable/index.d.ts +4 -0
  37. package/dist/PerformanceTable/index.js +417 -0
  38. package/dist/PerformanceTable/interface.d.ts +47 -0
  39. package/dist/PerformanceTable/interface.js +0 -0
  40. package/dist/PerformanceTable/style.d.ts +19 -0
  41. package/dist/PerformanceTable/style.js +402 -0
  42. package/dist/PerformanceTable/useResizable.d.ts +29 -0
  43. package/dist/PerformanceTable/useResizable.js +108 -0
  44. package/dist/ReactSticky/Container.d.ts +19 -0
  45. package/dist/ReactSticky/Container.js +93 -0
  46. package/dist/ReactSticky/Sticky.d.ts +27 -0
  47. package/dist/ReactSticky/Sticky.js +123 -0
  48. package/dist/ReactSticky/index.d.ts +5 -0
  49. package/dist/ReactSticky/index.js +4 -0
  50. package/dist/assets/icons/403.js +15 -0
  51. package/dist/assets/icons/Icon403.d.ts +3 -0
  52. package/dist/assets/icons/Icon403.js +14 -0
  53. package/dist/assets/icons/IconAdd.d.ts +3 -0
  54. package/dist/assets/icons/IconAdd.js +24 -0
  55. package/dist/assets/icons/IconAim.d.ts +3 -0
  56. package/dist/assets/icons/IconAim.js +36 -0
  57. package/dist/assets/icons/IconBatchupload.d.ts +3 -0
  58. package/dist/assets/icons/IconBatchupload.js +23 -0
  59. package/dist/assets/icons/IconClose.d.ts +3 -0
  60. package/dist/assets/icons/IconClose.js +15 -0
  61. package/dist/assets/icons/IconDrag_sort.d.ts +3 -0
  62. package/dist/assets/icons/IconDrag_sort.js +28 -0
  63. package/dist/assets/icons/IconError.d.ts +3 -0
  64. package/dist/assets/icons/IconError.js +42 -0
  65. package/dist/assets/icons/IconExport.d.ts +3 -0
  66. package/dist/assets/icons/IconExport.js +15 -0
  67. package/dist/assets/icons/IconFolder.d.ts +3 -0
  68. package/dist/assets/icons/IconFolder.js +126 -0
  69. package/dist/assets/icons/IconOpen_down.d.ts +3 -0
  70. package/dist/assets/icons/IconOpen_down.js +13 -0
  71. package/dist/assets/icons/IconOpen_right.d.ts +3 -0
  72. package/dist/assets/icons/IconOpen_right.js +13 -0
  73. package/dist/assets/icons/IconPlus.d.ts +3 -0
  74. package/dist/assets/icons/IconPlus.js +17 -0
  75. package/dist/assets/icons/IconSearch.d.ts +3 -0
  76. package/dist/assets/icons/IconSearch.js +15 -0
  77. package/dist/assets/icons/IconSelected_transfer.d.ts +3 -0
  78. package/dist/assets/icons/IconSelected_transfer.js +15 -0
  79. package/dist/assets/icons/IconSettings.d.ts +3 -0
  80. package/dist/assets/icons/IconSettings.js +15 -0
  81. package/dist/assets/icons/IconUp_down.d.ts +3 -0
  82. package/dist/assets/icons/IconUp_down.js +15 -0
  83. package/dist/assets/icons/IconUpload.d.ts +3 -0
  84. package/dist/assets/icons/IconUpload.js +20 -0
  85. package/dist/assets/icons/Up_down.js +17 -0
  86. package/dist/assets/icons/add.js +28 -0
  87. package/dist/assets/icons/batchupload.js +24 -0
  88. package/dist/assets/icons/close.js +17 -0
  89. package/dist/assets/icons/data_increase.js +31 -0
  90. package/dist/assets/icons/data_no_change.js +19 -0
  91. package/dist/assets/icons/data_reduction.js +31 -0
  92. package/dist/assets/icons/drag_sort.js +30 -0
  93. package/dist/assets/icons/error.js +44 -0
  94. package/dist/assets/icons/export.js +16 -0
  95. package/dist/assets/icons/folder.js +128 -0
  96. package/dist/assets/icons/open_down.js +15 -0
  97. package/dist/assets/icons/open_right.js +15 -0
  98. package/dist/assets/icons/plus.js +19 -0
  99. package/dist/assets/icons/search.js +17 -0
  100. package/dist/assets/icons/selected.js +17 -0
  101. package/dist/assets/icons/selected_transfer.js +17 -0
  102. package/dist/assets/icons/settings.js +17 -0
  103. package/dist/assets/icons/upload.js +23 -0
  104. package/dist/assets/images/book.js +2 -0
  105. package/dist/assets/images/emptyVideo.js +2 -0
  106. package/dist/assets/images/excel.js +2 -0
  107. package/dist/assets/images/fail.js +2 -0
  108. package/dist/assets/images/file.js +2 -0
  109. package/dist/assets/images/noResult.js +2 -0
  110. package/dist/assets/images/platform/Apple.js +23 -0
  111. package/dist/assets/images/platform/Facebook.js +42 -0
  112. package/dist/assets/images/platform/Google.js +54 -0
  113. package/dist/assets/images/platform/Instagram.js +2 -0
  114. package/dist/assets/images/platform/TikTok.js +42 -0
  115. package/dist/assets/images/platform/Twitch.js +2 -0
  116. package/dist/assets/images/platform/Twitter.js +2 -0
  117. package/dist/assets/images/platform/Youtube.js +2 -0
  118. package/dist/index.d.ts +4 -0
  119. package/dist/index.js +4 -0
  120. package/dist/static/image/Instagram.png +0 -0
  121. package/dist/static/image/Twitch.png +0 -0
  122. package/dist/static/image/Twitter.png +0 -0
  123. package/dist/static/image/Youtube.png +0 -0
  124. package/dist/static/image/book.png +0 -0
  125. package/dist/static/image/emptyVideo.png +0 -0
  126. package/dist/static/image/excel.png +0 -0
  127. package/dist/static/image/fail.png +0 -0
  128. package/dist/static/image/file.png +0 -0
  129. package/dist/static/image/noResult.png +0 -0
  130. package/dist/static/svg/403.svg +22 -0
  131. package/dist/static/svg/Apple.svg +4 -0
  132. package/dist/static/svg/Facebook.svg +9 -0
  133. package/dist/static/svg/Google.svg +14 -0
  134. package/dist/static/svg/TikTok.svg +9 -0
  135. package/dist/static/svg/Up_down.svg +1 -0
  136. package/dist/static/svg/add.svg +1 -0
  137. package/dist/static/svg/batchupload.svg +1 -0
  138. package/dist/static/svg/close.svg +1 -0
  139. package/dist/static/svg/data_increase.svg +15 -0
  140. package/dist/static/svg/data_no_change.svg +1 -0
  141. package/dist/static/svg/data_reduction.svg +15 -0
  142. package/dist/static/svg/drag_sort.svg +1 -0
  143. package/dist/static/svg/error.svg +8 -0
  144. package/dist/static/svg/export.svg +1 -0
  145. package/dist/static/svg/folder.svg +36 -0
  146. package/dist/static/svg/open_down.svg +1 -0
  147. package/dist/static/svg/open_right.svg +8 -0
  148. package/dist/static/svg/plus.svg +3 -0
  149. package/dist/static/svg/search.svg +1 -0
  150. package/dist/static/svg/selected.svg +3 -0
  151. package/dist/static/svg/selected_transfer.svg +3 -0
  152. package/dist/static/svg/settings.svg +1 -0
  153. package/dist/static/svg/upload.svg +1 -0
  154. package/package.json +59 -0
@@ -0,0 +1,123 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import react, { useCallback, useContext, useEffect, useMemo, useRef, useState } from "react";
3
+ import { StickyContext } from "./Container.js";
4
+ const Sticky = ({ topOffset = 0, bottomOffset = 0, relative = false, children, isSider = false, getCalculatedHeight, disableCompensation = false, disableHardwareAcceleration = false, onStickyStateChange })=>{
5
+ const wrapperRef = useRef(null);
6
+ const contentRef = useRef(null);
7
+ const placeholderRef = useRef(null);
8
+ const diffHeightRef = useRef(0);
9
+ const [stickyState, setStickyState] = useState({
10
+ isSticky: false,
11
+ wasSticky: false,
12
+ style: {},
13
+ distanceFromTop: 0,
14
+ distanceFromBottom: 0,
15
+ calculatedHeight: 0
16
+ });
17
+ const context = useContext(StickyContext);
18
+ if (!context) throw new TypeError("Expected Sticky to be mounted within StickyContainer");
19
+ const { subscribe, unsubscribe, getParent } = context;
20
+ const handleContainerEvent = useCallback(({ distanceFromTop, distanceFromBottom, eventSource })=>{
21
+ const parent = getParent();
22
+ if (!parent || !placeholderRef.current || !contentRef.current) return;
23
+ let preventingStickyStateChanges = false;
24
+ let adjustedDistanceFromTop = distanceFromTop;
25
+ if (relative) {
26
+ preventingStickyStateChanges = eventSource !== parent;
27
+ const typedEventSource = eventSource;
28
+ adjustedDistanceFromTop = -(typedEventSource.scrollTop + typedEventSource.offsetTop) + placeholderRef.current.offsetTop;
29
+ }
30
+ const placeholderClientRect = placeholderRef.current.getBoundingClientRect();
31
+ const contentClientRect = contentRef.current.getBoundingClientRect();
32
+ const calculatedHeight = contentClientRect.height;
33
+ const bottomDifference = distanceFromBottom - (bottomOffset || 0) - calculatedHeight;
34
+ const wasSticky = stickyState.isSticky;
35
+ const isSticky = preventingStickyStateChanges ? wasSticky : adjustedDistanceFromTop <= -(topOffset || 0) && distanceFromBottom > -(bottomOffset || 0);
36
+ const adjustedDistanceFromBottom = (relative && 'scrollHeight' in eventSource ? eventSource.scrollHeight - eventSource.scrollTop : distanceFromBottom) - calculatedHeight;
37
+ const style = isSticky ? {
38
+ position: "fixed",
39
+ top: bottomDifference > 0 ? relative ? eventSource.offsetTop - eventSource.offsetParent.scrollTop : 0 : bottomDifference,
40
+ left: placeholderClientRect.left,
41
+ width: placeholderClientRect.width
42
+ } : {};
43
+ if (!disableHardwareAcceleration) style.transform = "translateZ(0)";
44
+ const newState = {
45
+ isSticky,
46
+ wasSticky,
47
+ distanceFromTop: adjustedDistanceFromTop,
48
+ distanceFromBottom: adjustedDistanceFromBottom,
49
+ calculatedHeight,
50
+ style
51
+ };
52
+ setStickyState(newState);
53
+ if (onStickyStateChange && wasSticky !== isSticky) onStickyStateChange(isSticky);
54
+ }, [
55
+ relative,
56
+ topOffset,
57
+ bottomOffset,
58
+ disableHardwareAcceleration,
59
+ stickyState.isSticky,
60
+ onStickyStateChange,
61
+ getParent
62
+ ]);
63
+ useEffect(()=>{
64
+ subscribe(handleContainerEvent);
65
+ return ()=>{
66
+ unsubscribe(handleContainerEvent);
67
+ };
68
+ }, [
69
+ subscribe,
70
+ unsubscribe,
71
+ handleContainerEvent
72
+ ]);
73
+ useEffect(()=>{
74
+ if (wrapperRef.current && contentRef.current) {
75
+ const { height: wrapperHeight } = wrapperRef.current.getBoundingClientRect();
76
+ const { height: contentHeight } = contentRef.current.getBoundingClientRect();
77
+ diffHeightRef.current = wrapperHeight - contentHeight;
78
+ }
79
+ }, []);
80
+ useEffect(()=>{
81
+ if (placeholderRef.current) {
82
+ placeholderRef.current.style.paddingBottom = disableCompensation ? '0' : `${stickyState.isSticky ? stickyState.calculatedHeight + diffHeightRef.current : 0}px`;
83
+ if (getCalculatedHeight) getCalculatedHeight(stickyState.calculatedHeight);
84
+ }
85
+ }, [
86
+ stickyState.isSticky,
87
+ stickyState.calculatedHeight,
88
+ disableCompensation,
89
+ getCalculatedHeight
90
+ ]);
91
+ const element = useMemo(()=>/*#__PURE__*/ react.cloneElement(children({
92
+ isSticky: stickyState.isSticky,
93
+ wasSticky: stickyState.wasSticky,
94
+ distanceFromTop: stickyState.distanceFromTop,
95
+ distanceFromBottom: stickyState.distanceFromBottom,
96
+ calculatedHeight: stickyState.calculatedHeight,
97
+ style: stickyState.style
98
+ }), {
99
+ ref: (content)=>{
100
+ contentRef.current = content;
101
+ }
102
+ }), [
103
+ children,
104
+ stickyState
105
+ ]);
106
+ const wrapperStyle = isSider ? {
107
+ width: 0,
108
+ height: 0
109
+ } : {};
110
+ return /*#__PURE__*/ jsxs("div", {
111
+ style: wrapperStyle,
112
+ ref: wrapperRef,
113
+ children: [
114
+ /*#__PURE__*/ jsx("div", {
115
+ className: "sticky_placeholder",
116
+ ref: placeholderRef
117
+ }),
118
+ element
119
+ ]
120
+ });
121
+ };
122
+ const ReactSticky_Sticky = Sticky;
123
+ export { ReactSticky_Sticky as default };
@@ -0,0 +1,5 @@
1
+ import Sticky from "./Sticky";
2
+ import Container from "./Container";
3
+ export { Sticky };
4
+ export { Container as StickyContainer };
5
+ export default Sticky;
@@ -0,0 +1,4 @@
1
+ import Sticky from "./Sticky.js";
2
+ import Container from "./Container.js";
3
+ const ReactSticky = Sticky;
4
+ export { Sticky, Container as StickyContainer, ReactSticky as default };
@@ -0,0 +1,15 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/403.svg";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import "react";
4
+ const Svg403 = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ xmlSpace: "preserve",
7
+ viewBox: "0 0 112 58",
8
+ ...props,
9
+ children: /*#__PURE__*/ jsx("path", {
10
+ d: "M.977 48.9h23.8v8.5h8.1v-8.5h4.5v-7.7h-4.5V24.9h-8.1v16.3h-14.9L29.077.5h-9.1l-19 40.7zM65.577 41c-.2 5.8-2.8 8.7-8 8.7-5.2-.1-7.9-3-8-8.7V16.9c.1-5.7 2.8-8.6 8-8.7 5.2.1 7.9 3 8 8.7zm-24.1.5c.1 5.2 1.7 9.3 5 12.1 3.1 2.8 6.8 4.2 11.1 4.3 4.4-.1 8.2-1.5 11.3-4.3 3.2-2.8 4.8-6.9 4.9-12.1V16.4c-.1-5.3-1.7-9.3-4.9-12.1-3.1-2.9-6.9-4.3-11.3-4.3q-6.45 0-11.1 4.2c-3.3 2.8-5 6.9-5 12.1zM90.877 31.7h3.4c2.5 0 4.6.8 6.2 2.3 1.7 1.6 2.5 3.8 2.6 6.7-.1 2.8-.9 5-2.6 6.6-1.6 1.6-3.7 2.5-6.1 2.5q-3.3 0-5.4-1.8c-1.3-1.2-2.4-2.7-3.1-4.6h-8.2c.9 4.7 2.8 8.4 5.8 10.9s6.4 3.8 10.3 3.8q7.5-.15 12.3-4.8c3.3-3.1 4.9-7.3 5-12.6q0-3.6-1.5-6.9c-1.1-2.2-2.8-4.1-5.2-5.6 2.3-1.6 4-3.4 4.9-5.4q1.2-3 1.2-6.3c-.1-4.3-1.5-8.1-4.5-11.2-3-3.3-7.2-4.9-12.3-5-4.1.1-7.6 1.5-10.5 4.4-3 2.9-4.7 6.4-5.1 10.7h8.2c.5-2.3 1.5-4.1 3-5.2 1.4-1.1 3-1.7 4.8-1.7 2.4.1 4.4.8 5.9 2.3s2.3 3.5 2.4 5.9c0 2.4-.8 4.3-2.3 5.8s-3.7 2.3-6.5 2.3h-2.8v6.9z",
11
+ className: "403_svg__st0"
12
+ })
13
+ });
14
+ const _403 = __rslib_svgr_url__0__;
15
+ export { Svg403 as ReactComponent, _403 as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const Svg403: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default Svg403;
@@ -0,0 +1,14 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ const Svg403 = (props)=>/*#__PURE__*/ jsx("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ xmlSpace: "preserve",
6
+ viewBox: "0 0 112 58",
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M.977 48.9h23.8v8.5h8.1v-8.5h4.5v-7.7h-4.5V24.9h-8.1v16.3h-14.9L29.077.5h-9.1l-19 40.7zM65.577 41c-.2 5.8-2.8 8.7-8 8.7-5.2-.1-7.9-3-8-8.7V16.9c.1-5.7 2.8-8.6 8-8.7 5.2.1 7.9 3 8 8.7V41zm-24.1.5c.1 5.2 1.7 9.3 5 12.1 3.1 2.8 6.8 4.2 11.1 4.3 4.4-.1 8.2-1.5 11.3-4.3 3.2-2.8 4.8-6.9 4.9-12.1V16.4c-.1-5.3-1.7-9.3-4.9-12.1-3.1-2.9-6.9-4.3-11.3-4.3-4.3 0-8 1.4-11.1 4.2-3.3 2.8-5 6.9-5 12.1v25.2zM90.877 31.7h3.4c2.5 0 4.6.8 6.2 2.3 1.7 1.6 2.5 3.8 2.6 6.7-.1 2.8-.9 5-2.6 6.6-1.6 1.6-3.7 2.5-6.1 2.5-2.2 0-4-.6-5.4-1.8-1.3-1.2-2.4-2.7-3.1-4.6h-8.2c.9 4.7 2.8 8.4 5.8 10.9s6.4 3.8 10.3 3.8c5-.1 9.1-1.7 12.3-4.8 3.3-3.1 4.9-7.3 5-12.6 0-2.4-.5-4.7-1.5-6.9-1.1-2.2-2.8-4.1-5.2-5.6 2.3-1.6 4-3.4 4.9-5.4.8-2 1.2-4.1 1.2-6.3-.1-4.3-1.5-8.1-4.5-11.2-3-3.3-7.2-4.9-12.3-5-4.1.1-7.6 1.5-10.5 4.4-3 2.9-4.7 6.4-5.1 10.7h8.2c.5-2.3 1.5-4.1 3-5.2 1.4-1.1 3-1.7 4.8-1.7 2.4.1 4.4.8 5.9 2.3 1.5 1.5 2.3 3.5 2.4 5.9 0 2.4-.8 4.3-2.3 5.8-1.5 1.5-3.7 2.3-6.5 2.3h-2.8v6.9z",
10
+ className: "403_svg__st0"
11
+ })
12
+ });
13
+ const Icon403 = Svg403;
14
+ export { Icon403 as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgAdd: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgAdd;
@@ -0,0 +1,24 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgAdd = (props)=>/*#__PURE__*/ jsxs("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ width: 200,
6
+ height: 200,
7
+ className: "add_svg__icon",
8
+ viewBox: "0 0 1024 1024",
9
+ ...props,
10
+ children: [
11
+ /*#__PURE__*/ jsx("path", {
12
+ fillOpacity: 0.01,
13
+ d: "M0 0h1024v1024H0V0z"
14
+ }),
15
+ /*#__PURE__*/ jsx("path", {
16
+ d: "M512 981.333c-258.133 0-469.333-211.2-469.333-469.333S253.867 42.667 512 42.667 981.333 253.867 981.333 512 770.133 981.333 512 981.333zM512 128c-211.2 0-384 172.8-384 384s172.8 384 384 384 384-172.8 384-384-172.8-384-384-384z"
17
+ }),
18
+ /*#__PURE__*/ jsx("path", {
19
+ d: "M512 725.333c-23.467 0-42.667-19.2-42.667-42.666v-128h-128c-23.466 0-42.666-19.2-42.666-42.667s19.2-42.667 42.666-42.667h128v-128c0-23.466 19.2-42.666 42.667-42.666s42.667 19.2 42.667 42.666v128h128c23.466 0 42.666 19.2 42.666 42.667s-19.2 42.667-42.666 42.667h-128v128c0 23.466-19.2 42.666-42.667 42.666z"
20
+ })
21
+ ]
22
+ });
23
+ const IconAdd = SvgAdd;
24
+ export { IconAdd as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgAim: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgAim;
@@ -0,0 +1,36 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgAim = (props)=>/*#__PURE__*/ jsx("svg", {
4
+ width: 16,
5
+ height: 16,
6
+ viewBox: "0 0 16 16",
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ ...props,
9
+ children: /*#__PURE__*/ jsx("g", {
10
+ stroke: "none",
11
+ strokeWidth: "1",
12
+ fill: "none",
13
+ fillRule: "evenodd",
14
+ children: /*#__PURE__*/ jsx("g", {
15
+ fill: "#333333",
16
+ fillRule: "nonzero",
17
+ children: /*#__PURE__*/ jsxs("g", {
18
+ transform: "translate(0, 2)",
19
+ children: [
20
+ /*#__PURE__*/ jsx("rect", {
21
+ opacity: "0",
22
+ x: "0",
23
+ y: "0",
24
+ width: "16",
25
+ height: "16"
26
+ }),
27
+ /*#__PURE__*/ jsx("path", {
28
+ d: "M14.875,7.40625 L12.965625,7.40625 C12.6953125,5.11875 10.88125,3.3046875 8.59375,3.034375 L8.59375,1.125 C8.59375,1.05625 8.5375,1 8.46875,1 L7.53125,1 C7.4625,1 7.40625,1.05625 7.40625,1.125 L7.40625,3.034375 C5.11875,3.3046875 3.3046875,5.11875 3.034375,7.40625 L1.125,7.40625 C1.05625,7.40625 1,7.4625 1,7.53125 L1,8.46875 C1,8.5375 1.05625,8.59375 1.125,8.59375 L3.034375,8.59375 C3.3046875,10.88125 5.11875,12.6953125 7.40625,12.965625 L7.40625,14.875 C7.40625,14.94375 7.4625,15 7.53125,15 L8.46875,15 C8.5375,15 8.59375,14.94375 8.59375,14.875 L8.59375,12.965625 C10.88125,12.6953125 12.6953125,10.88125 12.965625,8.59375 L14.875,8.59375 C14.94375,8.59375 15,8.5375 15,8.46875 L15,7.53125 C15,7.4625 14.94375,7.40625 14.875,7.40625 Z M8,11.8125 C5.89375,11.8125 4.1875,10.10625 4.1875,8 C4.1875,5.89375 5.89375,4.1875 8,4.1875 C10.10625,4.1875 11.8125,5.89375 11.8125,8 C11.8125,10.10625 10.10625,11.8125 8,11.8125 Z M8,6.125 C7.4984375,6.125 7.0296875,6.31875 6.675,6.675 C6.3203125,7.0296875 6.125,7.4984375 6.125,8 C6.125,8.5015625 6.3203125,8.9703125 6.675,9.325 C7.0296875,9.678125 7.5,9.875 8,9.875 C8.5,9.875 8.9703125,9.6796875 9.325,9.325 C9.678125,8.9703125 9.875,8.5 9.875,8 C9.875,7.5 9.6796875,7.0296875 9.325,6.675 C8.9703125,6.31875 8.5015625,6.125 8,6.125 Z"
29
+ })
30
+ ]
31
+ })
32
+ })
33
+ })
34
+ });
35
+ const IconAim = SvgAim;
36
+ export { IconAim as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgBatchupload: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgBatchupload;
@@ -0,0 +1,23 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgBatchupload = (props)=>/*#__PURE__*/ jsxs("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ width: 200,
6
+ height: 200,
7
+ className: "batchupload_svg__icon",
8
+ viewBox: "0 0 1024 1024",
9
+ ...props,
10
+ children: [
11
+ /*#__PURE__*/ jsx("path", {
12
+ d: "M915.2 940.8H108.8c-51.2 0-96-38.4-96-89.6V108.8c0-51.2 44.8-89.6 96-89.6h281.6c12.8 0 25.6 6.4 38.4 19.2L531.2 160h377.6c51.2 0 96 38.4 96 89.6v601.6c0 51.2-38.4 89.6-89.6 89.6zm-806.4-832v742.4h800V249.6H512c-12.8 0-25.6-6.4-38.4-19.2L371.2 108.8H108.8z"
13
+ }),
14
+ /*#__PURE__*/ jsx("path", {
15
+ d: "M652.8 595.2H371.2c-25.6 0-44.8-19.2-44.8-44.8s19.2-44.8 44.8-44.8h281.6c25.6 0 44.8 19.2 44.8 44.8s-19.2 44.8-44.8 44.8z"
16
+ }),
17
+ /*#__PURE__*/ jsx("path", {
18
+ d: "M512 736c-25.6 0-44.8-19.2-44.8-44.8V409.6c0-25.6 19.2-44.8 44.8-44.8s44.8 19.2 44.8 44.8v275.2c0 25.6-19.2 51.2-44.8 51.2z"
19
+ })
20
+ ]
21
+ });
22
+ const IconBatchupload = SvgBatchupload;
23
+ export { IconBatchupload as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgClose: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgClose;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgClose = (props)=>/*#__PURE__*/ jsx("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ width: 16,
6
+ height: 16,
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ fillRule: "evenodd",
10
+ d: "M12.485 4.485a.686.686 0 1 0-.97-.97L8 7.03 4.485 3.515a.686.686 0 0 0-.97.97L7.03 8l-3.515 3.515a.686.686 0 1 0 .97.97L8 8.97l3.515 3.515a.686.686 0 1 0 .97-.97L8.97 8l3.515-3.515Z",
11
+ clipRule: "evenodd"
12
+ })
13
+ });
14
+ const IconClose = SvgClose;
15
+ export { IconClose as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgDragSort: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgDragSort;
@@ -0,0 +1,28 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgDragSort = (props)=>/*#__PURE__*/ jsxs("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ width: 17,
6
+ height: 16,
7
+ ...props,
8
+ children: [
9
+ /*#__PURE__*/ jsx("g", {
10
+ fillRule: "evenodd",
11
+ clipPath: "url(#drag_sort_svg__a)",
12
+ clipRule: "evenodd",
13
+ children: /*#__PURE__*/ jsx("path", {
14
+ d: "M11.927 3.885a1.176 1.176 0 1 1-2.351 0 1.176 1.176 0 0 1 2.351 0zm-1.176 5.29a1.176 1.176 0 1 0 0-2.351 1.176 1.176 0 0 0 0 2.351zm0 4.115a1.176 1.176 0 1 0 0-2.352 1.176 1.176 0 0 0 0 2.352zm-3.54-9.405a1.176 1.176 0 1 1-2.35 0 1.176 1.176 0 0 1 2.35 0zm-1.175 5.29a1.176 1.176 0 1 0 0-2.351 1.176 1.176 0 0 0 0 2.351zm0 4.115a1.176 1.176 0 1 0 0-2.352 1.176 1.176 0 0 0 0 2.352z"
15
+ })
16
+ }),
17
+ /*#__PURE__*/ jsx("defs", {
18
+ children: /*#__PURE__*/ jsx("clipPath", {
19
+ id: "drag_sort_svg__a",
20
+ children: /*#__PURE__*/ jsx("path", {
21
+ d: "M.394 0h16v16h-16z"
22
+ })
23
+ })
24
+ })
25
+ ]
26
+ });
27
+ const IconDrag_sort = SvgDragSort;
28
+ export { IconDrag_sort as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgError: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgError;
@@ -0,0 +1,42 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgError = (props)=>/*#__PURE__*/ jsxs("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ width: 48,
6
+ height: 48,
7
+ fill: "none",
8
+ ...props,
9
+ children: [
10
+ /*#__PURE__*/ jsx("path", {
11
+ fill: "#fff",
12
+ stroke: "#222",
13
+ d: "M5.643 8.214h13.01v26.429H5.643z"
14
+ }),
15
+ /*#__PURE__*/ jsx("path", {
16
+ fill: "#fff",
17
+ stroke: "#222",
18
+ d: "M5.643 10.786h36.714v26.429H5.643z"
19
+ }),
20
+ /*#__PURE__*/ jsx("path", {
21
+ fill: "#E0E2E5",
22
+ fillRule: "evenodd",
23
+ d: "M28.454 13.714H11.143v14.6h12.536v4.257h9.75v-9.327h-4.975v-9.53Z",
24
+ clipRule: "evenodd"
25
+ }),
26
+ /*#__PURE__*/ jsx("circle", {
27
+ cx: 38.861,
28
+ cy: 23.432,
29
+ r: 8.368,
30
+ fill: "#DAD4FA",
31
+ transform: "rotate(-3.481 38.86 23.432)"
32
+ }),
33
+ /*#__PURE__*/ jsx("path", {
34
+ stroke: "#6549F2",
35
+ strokeLinecap: "round",
36
+ strokeWidth: 2,
37
+ d: "m36.29 20.861 5.142 5.143M36.29 26.004l5.142-5.143"
38
+ })
39
+ ]
40
+ });
41
+ const IconError = SvgError;
42
+ export { IconError as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgExport: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgExport;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgExport = (props)=>/*#__PURE__*/ jsx("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ width: 200,
6
+ height: 200,
7
+ className: "export_svg__icon",
8
+ viewBox: "0 0 1024 1024",
9
+ ...props,
10
+ children: /*#__PURE__*/ jsx("path", {
11
+ d: "M512 960C174.933 960 85.333 708.267 85.333 576v-42.667h85.334V576c0 110.933 72.533 298.667 341.333 298.667S853.333 686.933 853.333 576v-42.667h85.334V576c0 132.267-89.6 384-426.667 384zm42.667-213.333h-85.334v-537.6L256 422.4l-59.733-59.733L469.333 89.6V66.133H492.8l19.2-19.2 19.2 19.2h23.467V89.6l273.066 273.067L768 422.4 554.667 209.067v537.6z"
12
+ })
13
+ });
14
+ const IconExport = SvgExport;
15
+ export { IconExport as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgFolder: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgFolder;
@@ -0,0 +1,126 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgFolder = (props)=>/*#__PURE__*/ jsxs("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ xmlnsXlink: "http://www.w3.org/1999/xlink",
6
+ width: 24,
7
+ height: 24,
8
+ ...props,
9
+ children: [
10
+ /*#__PURE__*/ jsxs("defs", {
11
+ children: [
12
+ /*#__PURE__*/ jsxs("radialGradient", {
13
+ id: "folder_svg__c",
14
+ cx: "50%",
15
+ cy: "50%",
16
+ r: "92.397%",
17
+ fx: "50%",
18
+ fy: "50%",
19
+ gradientTransform: "matrix(0 1 -.85078 0 .925 0)",
20
+ children: [
21
+ /*#__PURE__*/ jsx("stop", {
22
+ offset: "0%",
23
+ stopColor: "#99EAFF"
24
+ }),
25
+ /*#__PURE__*/ jsx("stop", {
26
+ offset: "100%",
27
+ stopColor: "#60D1FE"
28
+ })
29
+ ]
30
+ }),
31
+ /*#__PURE__*/ jsxs("radialGradient", {
32
+ id: "folder_svg__d",
33
+ cx: "50%",
34
+ cy: "50%",
35
+ r: "92.397%",
36
+ fx: "50%",
37
+ fy: "50%",
38
+ gradientTransform: "matrix(0 1 -.74444 0 .872 0)",
39
+ children: [
40
+ /*#__PURE__*/ jsx("stop", {
41
+ offset: "0%",
42
+ stopColor: "#99EAFF"
43
+ }),
44
+ /*#__PURE__*/ jsx("stop", {
45
+ offset: "100%",
46
+ stopColor: "#4DC2FC"
47
+ })
48
+ ]
49
+ }),
50
+ /*#__PURE__*/ jsxs("filter", {
51
+ id: "folder_svg__a",
52
+ width: "186.7%",
53
+ height: "208.3%",
54
+ x: "-43.3%",
55
+ y: "-62.5%",
56
+ filterUnits: "objectBoundingBox",
57
+ children: [
58
+ /*#__PURE__*/ jsx("feMorphology", {
59
+ in: "SourceAlpha",
60
+ radius: 0.5,
61
+ result: "shadowSpreadOuter1"
62
+ }),
63
+ /*#__PURE__*/ jsx("feOffset", {
64
+ dy: -1,
65
+ in: "shadowSpreadOuter1",
66
+ result: "shadowOffsetOuter1"
67
+ }),
68
+ /*#__PURE__*/ jsx("feGaussianBlur", {
69
+ in: "shadowOffsetOuter1",
70
+ result: "shadowBlurOuter1",
71
+ stdDeviation: 2.5
72
+ }),
73
+ /*#__PURE__*/ jsx("feColorMatrix", {
74
+ in: "shadowBlurOuter1",
75
+ values: "0 0 0 0 0.160871154 0 0 0 0 0.593642204 0 0 0 0 0.82141644 0 0 0 1 0"
76
+ })
77
+ ]
78
+ }),
79
+ /*#__PURE__*/ jsx("rect", {
80
+ id: "folder_svg__b",
81
+ width: 15,
82
+ height: 12,
83
+ x: 3,
84
+ y: 6,
85
+ rx: 2
86
+ })
87
+ ]
88
+ }),
89
+ /*#__PURE__*/ jsxs("g", {
90
+ fill: "none",
91
+ fillRule: "evenodd",
92
+ children: [
93
+ /*#__PURE__*/ jsx("path", {
94
+ d: "M0 0h24v24H0z"
95
+ }),
96
+ /*#__PURE__*/ jsxs("g", {
97
+ transform: "translate(2 2)",
98
+ children: [
99
+ /*#__PURE__*/ jsx("path", {
100
+ fill: "#4FBFEB",
101
+ d: "M2 0h3.673a1 1 0 0 1 .713.299L7.766 1.7A1 1 0 0 0 8.478 2H18a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2Z"
102
+ }),
103
+ /*#__PURE__*/ jsx("use", {
104
+ xlinkHref: "#folder_svg__b",
105
+ fill: "#000",
106
+ filter: "url(#folder_svg__a)"
107
+ }),
108
+ /*#__PURE__*/ jsx("use", {
109
+ xlinkHref: "#folder_svg__b",
110
+ fill: "url(#folder_svg__c)"
111
+ }),
112
+ /*#__PURE__*/ jsx("rect", {
113
+ width: 20,
114
+ height: 14,
115
+ y: 5,
116
+ fill: "url(#folder_svg__d)",
117
+ rx: 2
118
+ })
119
+ ]
120
+ })
121
+ ]
122
+ })
123
+ ]
124
+ });
125
+ const IconFolder = SvgFolder;
126
+ export { IconFolder as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgOpenDown: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgOpenDown;
@@ -0,0 +1,13 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgOpenDown = (props)=>/*#__PURE__*/ jsx("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ width: 16,
6
+ height: 16,
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M8.301 10.131a.4.4 0 0 1-.602 0L4.25 6.188a.4.4 0 0 1 .301-.663h6.898a.4.4 0 0 1 .3.663L8.302 10.13Z"
10
+ })
11
+ });
12
+ const IconOpen_down = SvgOpenDown;
13
+ export { IconOpen_down as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgOpenRight: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgOpenRight;
@@ -0,0 +1,13 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgOpenRight = (props)=>/*#__PURE__*/ jsx("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ width: 16,
6
+ height: 16,
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M5.869 7.699a.4.4 0 0 0 0 .602l3.943 3.449a.4.4 0 0 0 .663-.301V4.551a.4.4 0 0 0-.663-.301L5.869 7.699Z"
10
+ })
11
+ });
12
+ const IconOpen_right = SvgOpenRight;
13
+ export { IconOpen_right as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgPlus: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgPlus;
@@ -0,0 +1,17 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgPlus = (props)=>/*#__PURE__*/ jsx("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ width: 24,
6
+ height: 24,
7
+ fill: "none",
8
+ ...props,
9
+ children: /*#__PURE__*/ jsx("path", {
10
+ fill: "#4E5969",
11
+ fillRule: "evenodd",
12
+ d: "M13.132 3.9a1.05 1.05 0 1 0-2.1 0v7.133H3.9a1.05 1.05 0 1 0 0 2.1h7.132v7.13a1.05 1.05 0 1 0 2.1 0v-7.13h7.132a1.05 1.05 0 1 0 0-2.1h-7.132V3.9Z",
13
+ clipRule: "evenodd"
14
+ })
15
+ });
16
+ const IconPlus = SvgPlus;
17
+ export { IconPlus as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgSearch;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgSearch = (props)=>/*#__PURE__*/ jsx("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ width: 16,
6
+ height: 16,
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ fillRule: "evenodd",
10
+ d: "M10.8 7a3.8 3.8 0 1 1-7.6 0 3.8 3.8 0 0 1 7.6 0Zm-.67 3.9a5 5 0 1 1 .77-.77l.145-.146.566.566 1.746 1.746a.75.75 0 0 1-1.06 1.061l-1.747-1.746-.566-.566.146-.146Z",
11
+ clipRule: "evenodd"
12
+ })
13
+ });
14
+ const IconSearch = SvgSearch;
15
+ export { IconSearch as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgSelectedTransfer: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgSelectedTransfer;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgSelectedTransfer = (props)=>/*#__PURE__*/ jsx("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ width: 4,
6
+ height: 18,
7
+ fill: "none",
8
+ ...props,
9
+ children: /*#__PURE__*/ jsx("path", {
10
+ fill: "#6549F2",
11
+ d: "M0 0a4 4 0 0 1 4 4v10a4 4 0 0 1-4 4V0Z"
12
+ })
13
+ });
14
+ const IconSelected_transfer = SvgSelectedTransfer;
15
+ export { IconSelected_transfer as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgSettings: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgSettings;