@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,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgSettings = (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: "M6.752 1.302a.6.6 0 0 0-.695-.306 7.256 7.256 0 0 0-3.004 1.682.6.6 0 0 0-.13.704A1.4 1.4 0 0 1 1.666 5.4h-.019a.6.6 0 0 0-.58.42 7.296 7.296 0 0 0-.185 3.643.6.6 0 0 0 .645.477 1.4 1.4 0 0 1 1.21 2.295.6.6 0 0 0 .027.804 7.265 7.265 0 0 0 3.16 1.927.6.6 0 0 0 .742-.393 1.4 1.4 0 0 1 2.668 0 .6.6 0 0 0 .743.393 7.265 7.265 0 0 0 3.16-1.927.6.6 0 0 0 .026-.803 1.4 1.4 0 0 1 1.21-2.295.6.6 0 0 0 .646-.477 7.295 7.295 0 0 0-.185-3.644.6.6 0 0 0-.581-.42h-.02a1.4 1.4 0 0 1-1.256-2.018.6.6 0 0 0-.13-.704A7.256 7.256 0 0 0 9.943.996a.6.6 0 0 0-.695.306 1.4 1.4 0 0 1-2.496 0ZM4.267 4c0-.244-.034-.48-.097-.705a6.056 6.056 0 0 1 1.794-1.011c.476.598 1.21.983 2.036.983.826 0 1.56-.385 2.036-.983a6.057 6.057 0 0 1 1.794 1.011 2.6 2.6 0 0 0 2.065 3.268 6.083 6.083 0 0 1 .126 2.19 2.6 2.6 0 0 0-1.993 3.784 6.065 6.065 0 0 1-1.807 1.11 2.598 2.598 0 0 0-4.442 0 6.066 6.066 0 0 1-1.807-1.11 2.6 2.6 0 0 0-1.993-3.785 6.133 6.133 0 0 1 .125-2.188A2.6 2.6 0 0 0 4.267 4ZM8 5.066a2.933 2.933 0 1 0 0 5.867 2.933 2.933 0 0 0 0-5.867ZM6.267 8a1.733 1.733 0 1 1 3.467 0 1.733 1.733 0 0 1-3.467 0Z",
11
+ clipRule: "evenodd"
12
+ })
13
+ });
14
+ const IconSettings = SvgSettings;
15
+ export { IconSettings as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgUpDown: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgUpDown;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgUpDown = (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: "M8.21 2.749a.28.28 0 0 0-.42 0L4.644 6.346a.28.28 0 0 0 .21.463h6.292a.28.28 0 0 0 .21-.463L8.21 2.749ZM7.79 13.25a.28.28 0 0 0 .42 0l3.146-3.597a.28.28 0 0 0-.21-.463H4.854a.28.28 0 0 0-.21.463L7.79 13.25Z",
11
+ clipRule: "evenodd"
12
+ })
13
+ });
14
+ const IconUp_down = SvgUpDown;
15
+ export { IconUp_down as default };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SvgUpload: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgUpload;
@@ -0,0 +1,20 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import "react";
3
+ const SvgUpload = (props)=>/*#__PURE__*/ jsxs("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ width: 32,
6
+ height: 32,
7
+ className: "upload_svg__icon",
8
+ viewBox: "0 0 1024 1024",
9
+ ...props,
10
+ children: [
11
+ /*#__PURE__*/ jsx("path", {
12
+ d: "M757.333 981.333c-23.466 0-42.666-19.2-42.666-42.666V661.333c0-23.466 19.2-42.666 42.666-42.666S800 637.867 800 661.333v277.334c0 23.466-19.2 42.666-42.667 42.666zm-245.333 0H213.333C166.4 981.333 128 942.933 128 896V128c0-46.933 38.4-85.333 85.333-85.333h597.334C857.6 42.667 896 81.067 896 128v384c0 23.467-19.2 42.667-42.667 42.667s-42.666-19.2-42.666-42.667V128H213.333v768H512c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.666-42.667 42.666z"
13
+ }),
14
+ /*#__PURE__*/ jsx("path", {
15
+ d: "M853.333 778.667c-10.666 0-21.333-4.267-29.866-12.8l-66.134-66.134-66.133 66.134c-17.067 17.066-42.667 17.066-59.733 0s-17.067-42.667 0-59.734l96-96c17.066-17.066 42.666-17.066 59.733 0l96 96c17.067 17.067 17.067 42.667 0 59.734-8.533 8.533-19.2 12.8-29.867 12.8zM512 554.667H341.333c-23.466 0-42.666-19.2-42.666-42.667s19.2-42.667 42.666-42.667H512c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667zM682.667 384H341.333c-23.466 0-42.666-19.2-42.666-42.667s19.2-42.666 42.666-42.666h341.334c23.466 0 42.666 19.2 42.666 42.666S706.133 384 682.667 384z"
16
+ })
17
+ ]
18
+ });
19
+ const IconUpload = SvgUpload;
20
+ export { IconUpload as default };
@@ -0,0 +1,17 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/Up_down.svg";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgUpDown = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 16,
7
+ height: 16,
8
+ viewBox: "0 0 16 16",
9
+ ...props,
10
+ children: /*#__PURE__*/ jsx("path", {
11
+ fillRule: "evenodd",
12
+ d: "M8.21 2.749a.28.28 0 0 0-.42 0L4.644 6.346a.28.28 0 0 0 .21.463h6.292a.28.28 0 0 0 .21-.463zM7.79 13.25a.28.28 0 0 0 .42 0l3.146-3.597a.28.28 0 0 0-.21-.463H4.854a.28.28 0 0 0-.21.463z",
13
+ clipRule: "evenodd"
14
+ })
15
+ });
16
+ const Up_down = __rslib_svgr_url__0__;
17
+ export { SvgUpDown as ReactComponent, Up_down as default };
@@ -0,0 +1,28 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/add.svg";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgAdd = (props)=>/*#__PURE__*/ jsxs("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 200,
7
+ height: 200,
8
+ className: "add_svg__icon",
9
+ viewBox: "0 0 1024 1024",
10
+ ...props,
11
+ children: [
12
+ /*#__PURE__*/ jsx("path", {
13
+ fill: "#FFF",
14
+ fillOpacity: 0.01,
15
+ d: "M0 0h1024v1024H0z"
16
+ }),
17
+ /*#__PURE__*/ jsx("path", {
18
+ fill: "#1D2129",
19
+ 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.333M512 128c-211.2 0-384 172.8-384 384s172.8 384 384 384 384-172.8 384-384-172.8-384-384-384"
20
+ }),
21
+ /*#__PURE__*/ jsx("path", {
22
+ fill: "#1D2129",
23
+ 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.666"
24
+ })
25
+ ]
26
+ });
27
+ const add = __rslib_svgr_url__0__;
28
+ export { SvgAdd as ReactComponent, add as default };
@@ -0,0 +1,24 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/batchupload.svg";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgBatchupload = (props)=>/*#__PURE__*/ jsxs("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 200,
7
+ height: 200,
8
+ className: "batchupload_svg__icon",
9
+ viewBox: "0 0 1024 1024",
10
+ ...props,
11
+ children: [
12
+ /*#__PURE__*/ jsx("path", {
13
+ 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.6q19.2 0 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.6m-806.4-832v742.4h800V249.6H512q-19.2 0-38.4-19.2L371.2 108.8z"
14
+ }),
15
+ /*#__PURE__*/ jsx("path", {
16
+ 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.8"
17
+ }),
18
+ /*#__PURE__*/ jsx("path", {
19
+ 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.2"
20
+ })
21
+ ]
22
+ });
23
+ const batchupload = __rslib_svgr_url__0__;
24
+ export { SvgBatchupload as ReactComponent, batchupload as default };
@@ -0,0 +1,17 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/close.svg";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgClose = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 16,
7
+ height: 16,
8
+ viewBox: "0 0 16 16",
9
+ ...props,
10
+ children: /*#__PURE__*/ jsx("path", {
11
+ fillRule: "evenodd",
12
+ 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 8z",
13
+ clipRule: "evenodd"
14
+ })
15
+ });
16
+ const icons_close = __rslib_svgr_url__0__;
17
+ export { SvgClose as ReactComponent, icons_close as default };
@@ -0,0 +1,31 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/data_increase.svg";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgDataIncrease = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 10,
7
+ height: 10,
8
+ viewBox: "0 0 10 10",
9
+ ...props,
10
+ children: /*#__PURE__*/ jsxs("g", {
11
+ fill: "none",
12
+ fillRule: "evenodd",
13
+ children: [
14
+ /*#__PURE__*/ jsx("path", {
15
+ d: "M0 0h10v10H0z"
16
+ }),
17
+ /*#__PURE__*/ jsx("path", {
18
+ d: "M0 0h10v10H0z"
19
+ }),
20
+ /*#__PURE__*/ jsx("path", {
21
+ d: "M0 0h10v10H0z"
22
+ }),
23
+ /*#__PURE__*/ jsx("path", {
24
+ fill: "#05A76F",
25
+ d: "m5 1.25 3.75 7.5h-7.5z"
26
+ })
27
+ ]
28
+ })
29
+ });
30
+ const data_increase = __rslib_svgr_url__0__;
31
+ export { SvgDataIncrease as ReactComponent, data_increase as default };
@@ -0,0 +1,19 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/data_no_change.svg";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgDataNoChange = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 16,
7
+ height: 16,
8
+ viewBox: "0 0 16 16",
9
+ ...props,
10
+ children: /*#__PURE__*/ jsx("rect", {
11
+ width: 8,
12
+ height: 3,
13
+ x: 4,
14
+ y: 6.5,
15
+ rx: 0.6
16
+ })
17
+ });
18
+ const data_no_change = __rslib_svgr_url__0__;
19
+ export { SvgDataNoChange as ReactComponent, data_no_change as default };
@@ -0,0 +1,31 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/data_reduction.svg";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgDataReduction = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 10,
7
+ height: 10,
8
+ viewBox: "0 0 10 10",
9
+ ...props,
10
+ children: /*#__PURE__*/ jsxs("g", {
11
+ fill: "none",
12
+ fillRule: "evenodd",
13
+ children: [
14
+ /*#__PURE__*/ jsx("path", {
15
+ d: "M0 10h10V0H0z"
16
+ }),
17
+ /*#__PURE__*/ jsx("path", {
18
+ d: "M0 10h10V0H0z"
19
+ }),
20
+ /*#__PURE__*/ jsx("path", {
21
+ d: "M0 10h10V0H0z"
22
+ }),
23
+ /*#__PURE__*/ jsx("path", {
24
+ fill: "#D0324B",
25
+ d: "m5 8.75 3.75-7.5h-7.5z"
26
+ })
27
+ ]
28
+ })
29
+ });
30
+ const data_reduction = __rslib_svgr_url__0__;
31
+ export { SvgDataReduction as ReactComponent, data_reduction as default };
@@ -0,0 +1,30 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/drag_sort.svg";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgDragSort = (props)=>/*#__PURE__*/ jsxs("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 17,
7
+ height: 16,
8
+ viewBox: "0 0 17 16",
9
+ ...props,
10
+ children: [
11
+ /*#__PURE__*/ jsx("g", {
12
+ fillRule: "evenodd",
13
+ clipPath: "url(#drag_sort_svg__a)",
14
+ clipRule: "evenodd",
15
+ children: /*#__PURE__*/ jsx("path", {
16
+ d: "M11.927 3.885a1.176 1.176 0 1 1-2.351 0 1.176 1.176 0 0 1 2.351 0m-1.176 5.29a1.176 1.176 0 1 0 0-2.351 1.176 1.176 0 0 0 0 2.351m0 4.115a1.176 1.176 0 1 0 0-2.352 1.176 1.176 0 0 0 0 2.352m-3.54-9.405a1.176 1.176 0 1 1-2.35 0 1.176 1.176 0 0 1 2.35 0m-1.175 5.29a1.176 1.176 0 1 0 0-2.351 1.176 1.176 0 0 0 0 2.351m0 4.115a1.176 1.176 0 1 0 0-2.352 1.176 1.176 0 0 0 0 2.352"
17
+ })
18
+ }),
19
+ /*#__PURE__*/ jsx("defs", {
20
+ children: /*#__PURE__*/ jsx("clipPath", {
21
+ id: "drag_sort_svg__a",
22
+ children: /*#__PURE__*/ jsx("path", {
23
+ d: "M.394 0h16v16h-16z"
24
+ })
25
+ })
26
+ })
27
+ ]
28
+ });
29
+ const drag_sort = __rslib_svgr_url__0__;
30
+ export { SvgDragSort as ReactComponent, drag_sort as default };
@@ -0,0 +1,44 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/error.svg";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgError = (props)=>/*#__PURE__*/ jsxs("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 48,
7
+ height: 48,
8
+ fill: "none",
9
+ viewBox: "0 0 48 48",
10
+ ...props,
11
+ children: [
12
+ /*#__PURE__*/ jsx("path", {
13
+ fill: "#fff",
14
+ stroke: "#222",
15
+ d: "M5.643 8.214h13.01v26.429H5.643z"
16
+ }),
17
+ /*#__PURE__*/ jsx("path", {
18
+ fill: "#fff",
19
+ stroke: "#222",
20
+ d: "M5.643 10.786h36.714v26.429H5.643z"
21
+ }),
22
+ /*#__PURE__*/ jsx("path", {
23
+ fill: "#E0E2E5",
24
+ fillRule: "evenodd",
25
+ d: "M28.454 13.714H11.143v14.6h12.536v4.257h9.75v-9.327h-4.975z",
26
+ clipRule: "evenodd"
27
+ }),
28
+ /*#__PURE__*/ jsx("circle", {
29
+ cx: 38.861,
30
+ cy: 23.432,
31
+ r: 8.368,
32
+ fill: "#DAD4FA",
33
+ transform: "rotate(-3.481 38.86 23.432)"
34
+ }),
35
+ /*#__PURE__*/ jsx("path", {
36
+ stroke: "#6549F2",
37
+ strokeLinecap: "round",
38
+ strokeWidth: 2,
39
+ d: "m36.29 20.861 5.142 5.143M36.29 26.004l5.142-5.143"
40
+ })
41
+ ]
42
+ });
43
+ const error = __rslib_svgr_url__0__;
44
+ export { SvgError as ReactComponent, error as default };
@@ -0,0 +1,16 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/export.svg";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgExport = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 200,
7
+ height: 200,
8
+ className: "export_svg__icon",
9
+ viewBox: "0 0 1024 1024",
10
+ ...props,
11
+ children: /*#__PURE__*/ jsx("path", {
12
+ 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 384m42.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.067z"
13
+ })
14
+ });
15
+ const icons_export = __rslib_svgr_url__0__;
16
+ export { SvgExport as ReactComponent, icons_export as default };
@@ -0,0 +1,128 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/folder.svg";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgFolder = (props)=>/*#__PURE__*/ jsxs("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ xmlnsXlink: "http://www.w3.org/1999/xlink",
7
+ width: 24,
8
+ height: 24,
9
+ viewBox: "0 0 24 24",
10
+ ...props,
11
+ children: [
12
+ /*#__PURE__*/ jsxs("defs", {
13
+ children: [
14
+ /*#__PURE__*/ jsxs("radialGradient", {
15
+ id: "folder_svg__c",
16
+ cx: "50%",
17
+ cy: "50%",
18
+ r: "92.397%",
19
+ fx: "50%",
20
+ fy: "50%",
21
+ gradientTransform: "matrix(0 1 -.85078 0 .925 0)",
22
+ children: [
23
+ /*#__PURE__*/ jsx("stop", {
24
+ offset: "0%",
25
+ stopColor: "#99EAFF"
26
+ }),
27
+ /*#__PURE__*/ jsx("stop", {
28
+ offset: "100%",
29
+ stopColor: "#60D1FE"
30
+ })
31
+ ]
32
+ }),
33
+ /*#__PURE__*/ jsxs("radialGradient", {
34
+ id: "folder_svg__d",
35
+ cx: "50%",
36
+ cy: "50%",
37
+ r: "92.397%",
38
+ fx: "50%",
39
+ fy: "50%",
40
+ gradientTransform: "matrix(0 1 -.74444 0 .872 0)",
41
+ children: [
42
+ /*#__PURE__*/ jsx("stop", {
43
+ offset: "0%",
44
+ stopColor: "#99EAFF"
45
+ }),
46
+ /*#__PURE__*/ jsx("stop", {
47
+ offset: "100%",
48
+ stopColor: "#4DC2FC"
49
+ })
50
+ ]
51
+ }),
52
+ /*#__PURE__*/ jsxs("filter", {
53
+ id: "folder_svg__a",
54
+ width: "186.7%",
55
+ height: "208.3%",
56
+ x: "-43.3%",
57
+ y: "-62.5%",
58
+ filterUnits: "objectBoundingBox",
59
+ children: [
60
+ /*#__PURE__*/ jsx("feMorphology", {
61
+ in: "SourceAlpha",
62
+ radius: 0.5,
63
+ result: "shadowSpreadOuter1"
64
+ }),
65
+ /*#__PURE__*/ jsx("feOffset", {
66
+ dy: -1,
67
+ in: "shadowSpreadOuter1",
68
+ result: "shadowOffsetOuter1"
69
+ }),
70
+ /*#__PURE__*/ jsx("feGaussianBlur", {
71
+ in: "shadowOffsetOuter1",
72
+ result: "shadowBlurOuter1",
73
+ stdDeviation: 2.5
74
+ }),
75
+ /*#__PURE__*/ jsx("feColorMatrix", {
76
+ in: "shadowBlurOuter1",
77
+ values: "0 0 0 0 0.160871154 0 0 0 0 0.593642204 0 0 0 0 0.82141644 0 0 0 1 0"
78
+ })
79
+ ]
80
+ }),
81
+ /*#__PURE__*/ jsx("rect", {
82
+ id: "folder_svg__b",
83
+ width: 15,
84
+ height: 12,
85
+ x: 3,
86
+ y: 6,
87
+ rx: 2
88
+ })
89
+ ]
90
+ }),
91
+ /*#__PURE__*/ jsxs("g", {
92
+ fill: "none",
93
+ fillRule: "evenodd",
94
+ children: [
95
+ /*#__PURE__*/ jsx("path", {
96
+ d: "M0 0h24v24H0z"
97
+ }),
98
+ /*#__PURE__*/ jsxs("g", {
99
+ transform: "translate(2 2)",
100
+ children: [
101
+ /*#__PURE__*/ jsx("path", {
102
+ fill: "#4FBFEB",
103
+ 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-2"
104
+ }),
105
+ /*#__PURE__*/ jsx("use", {
106
+ xlinkHref: "#folder_svg__b",
107
+ fill: "#000",
108
+ filter: "url(#folder_svg__a)"
109
+ }),
110
+ /*#__PURE__*/ jsx("use", {
111
+ xlinkHref: "#folder_svg__b",
112
+ fill: "url(#folder_svg__c)"
113
+ }),
114
+ /*#__PURE__*/ jsx("rect", {
115
+ width: 20,
116
+ height: 14,
117
+ y: 5,
118
+ fill: "url(#folder_svg__d)",
119
+ rx: 2
120
+ })
121
+ ]
122
+ })
123
+ ]
124
+ })
125
+ ]
126
+ });
127
+ const folder = __rslib_svgr_url__0__;
128
+ export { SvgFolder as ReactComponent, folder as default };
@@ -0,0 +1,15 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/open_down.svg";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgOpenDown = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 16,
7
+ height: 16,
8
+ viewBox: "0 0 16 16",
9
+ ...props,
10
+ children: /*#__PURE__*/ jsx("path", {
11
+ 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.663z"
12
+ })
13
+ });
14
+ const open_down = __rslib_svgr_url__0__;
15
+ export { SvgOpenDown as ReactComponent, open_down as default };
@@ -0,0 +1,15 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/open_right.svg";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgOpenRight = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 16,
7
+ height: 16,
8
+ viewBox: "0 0 16 16",
9
+ ...props,
10
+ children: /*#__PURE__*/ jsx("path", {
11
+ d: "M5.869 7.699a.4.4 0 0 0 0 .602l3.943 3.449a.4.4 0 0 0 .664-.301V4.55a.4.4 0 0 0-.664-.301z"
12
+ })
13
+ });
14
+ const open_right = __rslib_svgr_url__0__;
15
+ export { SvgOpenRight as ReactComponent, open_right as default };
@@ -0,0 +1,19 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/plus.svg";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgPlus = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 24,
7
+ height: 24,
8
+ fill: "none",
9
+ viewBox: "0 0 24 24",
10
+ ...props,
11
+ children: /*#__PURE__*/ jsx("path", {
12
+ fill: "#4E5969",
13
+ fillRule: "evenodd",
14
+ 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.132z",
15
+ clipRule: "evenodd"
16
+ })
17
+ });
18
+ const plus = __rslib_svgr_url__0__;
19
+ export { SvgPlus as ReactComponent, plus as default };
@@ -0,0 +1,17 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/search.svg";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgSearch = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 16,
7
+ height: 16,
8
+ viewBox: "0 0 16 16",
9
+ ...props,
10
+ children: /*#__PURE__*/ jsx("path", {
11
+ fillRule: "evenodd",
12
+ d: "M10.8 7a3.8 3.8 0 1 1-7.6 0 3.8 3.8 0 0 1 7.6 0m-.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-.566z",
13
+ clipRule: "evenodd"
14
+ })
15
+ });
16
+ const search = __rslib_svgr_url__0__;
17
+ export { SvgSearch as ReactComponent, search as default };
@@ -0,0 +1,17 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/selected.svg";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgSelected = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 4,
7
+ height: 18,
8
+ fill: "none",
9
+ viewBox: "0 0 4 18",
10
+ ...props,
11
+ children: /*#__PURE__*/ jsx("path", {
12
+ fill: "#6549F2",
13
+ d: "M0 0a4 4 0 0 1 4 4v10a4 4 0 0 1-4 4z"
14
+ })
15
+ });
16
+ const selected = __rslib_svgr_url__0__;
17
+ export { SvgSelected as ReactComponent, selected as default };
@@ -0,0 +1,17 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/selected_transfer.svg";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgSelectedTransfer = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 4,
7
+ height: 18,
8
+ fill: "none",
9
+ viewBox: "0 0 4 18",
10
+ ...props,
11
+ children: /*#__PURE__*/ jsx("path", {
12
+ fill: "#6549F2",
13
+ d: "M0 0a4 4 0 0 1 4 4v10a4 4 0 0 1-4 4z"
14
+ })
15
+ });
16
+ const selected_transfer = __rslib_svgr_url__0__;
17
+ export { SvgSelectedTransfer as ReactComponent, selected_transfer as default };
@@ -0,0 +1,17 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/settings.svg";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgSettings = (props)=>/*#__PURE__*/ jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 16,
7
+ height: 16,
8
+ viewBox: "0 0 16 16",
9
+ ...props,
10
+ children: /*#__PURE__*/ jsx("path", {
11
+ fillRule: "evenodd",
12
+ d: "M6.752 1.302a.6.6 0 0 0-.695-.306 7.26 7.26 0 0 0-3.004 1.682.6.6 0 0 0-.13.704A1.4 1.4 0 0 1 1.666 5.4h-.019a.6.6 0 0 0-.58.42 7.296 7.296 0 0 0-.185 3.643.6.6 0 0 0 .645.477q.068-.006.14-.006a1.4 1.4 0 0 1 1.07 2.302.6.6 0 0 0 .027.803 7.27 7.27 0 0 0 3.16 1.927.6.6 0 0 0 .742-.393 1.4 1.4 0 0 1 2.668 0 .6.6 0 0 0 .743.393 7.27 7.27 0 0 0 3.16-1.927.6.6 0 0 0 .026-.803 1.4 1.4 0 0 1 1.21-2.295.6.6 0 0 0 .646-.477 7.3 7.3 0 0 0-.185-3.644.6.6 0 0 0-.581-.42h-.02a1.4 1.4 0 0 1-1.256-2.018.6.6 0 0 0-.13-.704A7.26 7.26 0 0 0 9.943.996a.6.6 0 0 0-.695.306 1.4 1.4 0 0 1-2.496 0M4.267 4q-.001-.367-.097-.705a6 6 0 0 1 1.794-1.011c.476.598 1.21.983 2.036.983s1.56-.385 2.036-.983a6 6 0 0 1 1.794 1.011 2.6 2.6 0 0 0 2.065 3.268 6.1 6.1 0 0 1 .126 2.19 2.6 2.6 0 0 0-1.993 3.784 6.1 6.1 0 0 1-1.807 1.11 2.598 2.598 0 0 0-4.442 0 6.1 6.1 0 0 1-1.807-1.11 2.6 2.6 0 0 0-1.993-3.785 6.1 6.1 0 0 1 .125-2.188A2.6 2.6 0 0 0 4.267 4M8 5.066a2.933 2.933 0 1 0 0 5.867 2.933 2.933 0 0 0 0-5.867M6.267 8a1.733 1.733 0 1 1 3.467 0 1.733 1.733 0 0 1-3.467 0",
13
+ clipRule: "evenodd"
14
+ })
15
+ });
16
+ const settings = __rslib_svgr_url__0__;
17
+ export { SvgSettings as ReactComponent, settings as default };
@@ -0,0 +1,23 @@
1
+ import __rslib_svgr_url__0__ from "../../static/svg/upload.svg";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import "react";
4
+ const SvgUpload = (props)=>/*#__PURE__*/ jsxs("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 32,
7
+ height: 32,
8
+ className: "upload_svg__icon",
9
+ viewBox: "0 0 1024 1024",
10
+ ...props,
11
+ children: [
12
+ /*#__PURE__*/ jsx("path", {
13
+ fill: "#333",
14
+ d: "M757.333 981.333c-23.466 0-42.666-19.2-42.666-42.666V661.333c0-23.466 19.2-42.666 42.666-42.666S800 637.867 800 661.333v277.334c0 23.466-19.2 42.666-42.667 42.666m-245.333 0H213.333C166.4 981.333 128 942.933 128 896V128c0-46.933 38.4-85.333 85.333-85.333h597.334C857.6 42.667 896 81.067 896 128v384c0 23.467-19.2 42.667-42.667 42.667s-42.666-19.2-42.666-42.667V128H213.333v768H512c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.666-42.667 42.666"
15
+ }),
16
+ /*#__PURE__*/ jsx("path", {
17
+ fill: "#333",
18
+ d: "M853.333 778.667c-10.666 0-21.333-4.267-29.866-12.8l-66.134-66.134-66.133 66.134c-17.067 17.066-42.667 17.066-59.733 0s-17.067-42.667 0-59.734l96-96c17.066-17.066 42.666-17.066 59.733 0l96 96c17.067 17.067 17.067 42.667 0 59.734-8.533 8.533-19.2 12.8-29.867 12.8M512 554.667H341.333c-23.466 0-42.666-19.2-42.666-42.667s19.2-42.667 42.666-42.667H512c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667M682.667 384H341.333c-23.466 0-42.666-19.2-42.666-42.667s19.2-42.666 42.666-42.666h341.334c23.466 0 42.666 19.2 42.666 42.666S706.133 384 682.667 384"
19
+ })
20
+ ]
21
+ });
22
+ const upload = __rslib_svgr_url__0__;
23
+ export { SvgUpload as ReactComponent, upload as default };
@@ -0,0 +1,2 @@
1
+ import book_namespaceObject from "../../static/image/book.png";
2
+ export { book_namespaceObject as default };
@@ -0,0 +1,2 @@
1
+ import emptyVideo_namespaceObject from "../../static/image/emptyVideo.png";
2
+ export { emptyVideo_namespaceObject as default };
@@ -0,0 +1,2 @@
1
+ import excel_namespaceObject from "../../static/image/excel.png";
2
+ export { excel_namespaceObject as default };
@@ -0,0 +1,2 @@
1
+ import fail_namespaceObject from "../../static/image/fail.png";
2
+ export { fail_namespaceObject as default };
@@ -0,0 +1,2 @@
1
+ import file_namespaceObject from "../../static/image/file.png";
2
+ export { file_namespaceObject as default };
@@ -0,0 +1,2 @@
1
+ import noResult_namespaceObject from "../../static/image/noResult.png";
2
+ export { noResult_namespaceObject as default };