@reportportal/ui-kit 0.0.1-alpha.11 → 0.0.1-alpha.111

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 (222) hide show
  1. package/README.md +28 -2
  2. package/dist/attachedFile.js +9 -0
  3. package/dist/autocompletes.js +694 -0
  4. package/dist/baseIconButton-251479f7.js +25 -0
  5. package/dist/baseIconButton.js +1 -1
  6. package/dist/breadcrumbs-8e5ca8d7.js +183 -0
  7. package/dist/breadcrumbs.js +11 -0
  8. package/dist/bubblesLoader-f3ffa240.js +28 -0
  9. package/dist/bubblesLoader.js +1 -1
  10. package/dist/button-97d9e587.js +66 -0
  11. package/dist/button.js +1 -1
  12. package/dist/calendarArrow-44c7e60e.js +5 -0
  13. package/dist/checkbox-ed6cc375.js +73 -0
  14. package/dist/checkbox.js +1 -1
  15. package/dist/chevronDownDropdown-66f5b1af.js +7 -0
  16. package/dist/close-4d480ef7.js +5 -0
  17. package/dist/common/hooks/useOnClickOutside.d.ts +1 -0
  18. package/dist/common/types.d.ts +4 -0
  19. package/dist/common/utils/getFileExtension.d.ts +1 -0
  20. package/dist/common/utils/index.d.ts +2 -0
  21. package/dist/common/utils/isString.d.ts +1 -0
  22. package/dist/components/attachedFile/attachedFile.d.ts +14 -0
  23. package/dist/components/attachedFile/index.d.ts +2 -0
  24. package/dist/components/autocompletes/common/autocompleteMenu/autocompleteMenu.d.ts +9 -0
  25. package/dist/components/autocompletes/common/autocompleteMenu/index.d.ts +1 -0
  26. package/dist/components/autocompletes/common/autocompleteOption/autocompleteOption.d.ts +13 -0
  27. package/dist/components/autocompletes/common/autocompleteOption/index.d.ts +1 -0
  28. package/dist/components/autocompletes/common/autocompleteOptions.d.ts +19 -0
  29. package/dist/components/autocompletes/common/autocompletePrompt/autocompletePrompt.d.ts +7 -0
  30. package/dist/components/autocompletes/common/autocompletePrompt/index.d.ts +1 -0
  31. package/dist/components/autocompletes/common/index.d.ts +19 -0
  32. package/dist/components/autocompletes/constants.d.ts +2 -0
  33. package/dist/components/autocompletes/index.d.ts +3 -0
  34. package/dist/components/autocompletes/multipleAutocomplete/index.d.ts +17 -0
  35. package/dist/components/autocompletes/multipleAutocomplete/multipleAutocomplete.d.ts +46 -0
  36. package/dist/components/autocompletes/multipleAutocomplete/multipleDownshift.d.ts +25 -0
  37. package/dist/components/autocompletes/multipleAutocomplete/selectedItems/index.d.ts +1 -0
  38. package/dist/components/autocompletes/multipleAutocomplete/selectedItems/selectedItems.d.ts +35 -0
  39. package/dist/components/autocompletes/singleAutocomplete/index.d.ts +1 -0
  40. package/dist/components/autocompletes/singleAutocomplete/singleAutocomplete.d.ts +40 -0
  41. package/dist/components/autocompletes/types.d.ts +8 -0
  42. package/dist/components/autocompletes/utils.d.ts +5 -0
  43. package/dist/components/{icons/baseIconButton → baseIconButton}/baseIconButton.d.ts +1 -0
  44. package/dist/components/{icons/baseIconButton → baseIconButton}/index.d.ts +1 -0
  45. package/dist/components/breadcrumbs/breadcrumb/breadcrumb.d.ts +10 -0
  46. package/dist/components/breadcrumbs/breadcrumb/index.d.ts +1 -0
  47. package/dist/components/breadcrumbs/breadcrumbs.d.ts +3 -0
  48. package/dist/components/breadcrumbs/breadcrumbsProvider/breadcrumbsProvider.d.ts +13 -0
  49. package/dist/components/breadcrumbs/breadcrumbsProvider/hooks.d.ts +3 -0
  50. package/dist/components/breadcrumbs/breadcrumbsProvider/index.d.ts +1 -0
  51. package/dist/components/breadcrumbs/hiddenBreadcrumbs/hiddenBreadcrumbs.d.ts +6 -0
  52. package/dist/components/breadcrumbs/hiddenBreadcrumbs/index.d.ts +2 -0
  53. package/dist/components/breadcrumbs/index.d.ts +5 -0
  54. package/dist/components/breadcrumbs/tree/index.d.ts +1 -0
  55. package/dist/components/breadcrumbs/tree/tree.d.ts +7 -0
  56. package/dist/components/breadcrumbs/types.d.ts +24 -0
  57. package/dist/components/bubblesLoader/bubblesLoader.d.ts +2 -0
  58. package/dist/components/bubblesLoader/index.d.ts +1 -0
  59. package/dist/components/button/button.d.ts +5 -4
  60. package/dist/components/button/index.d.ts +1 -0
  61. package/dist/components/checkbox/checkbox.d.ts +2 -1
  62. package/dist/components/checkbox/index.d.ts +1 -0
  63. package/dist/components/datePicker/datePicker.d.ts +25 -0
  64. package/dist/components/datePicker/header/datePickerHeader.d.ts +16 -0
  65. package/dist/components/datePicker/header/index.d.ts +4 -0
  66. package/dist/components/datePicker/index.d.ts +5 -0
  67. package/dist/components/datePicker/utils.d.ts +4 -0
  68. package/dist/components/dropdown/constants.d.ts +1 -0
  69. package/dist/components/dropdown/dropdown.d.ts +14 -4
  70. package/dist/components/dropdown/dropdownOption/dropdownOption.d.ts +1 -0
  71. package/dist/components/dropdown/dropdownOption/index.d.ts +1 -0
  72. package/dist/components/dropdown/index.d.ts +1 -0
  73. package/dist/components/dropdown/types.d.ts +3 -0
  74. package/dist/components/dropdown/utils.d.ts +2 -1
  75. package/dist/components/fieldLabel/fieldLabel.d.ts +7 -0
  76. package/dist/components/fieldLabel/index.d.ts +1 -0
  77. package/dist/components/fieldNumber/constants.d.ts +1 -0
  78. package/dist/components/fieldNumber/fieldNumber.d.ts +3 -3
  79. package/dist/components/fieldNumber/index.d.ts +1 -0
  80. package/dist/components/fieldText/fieldText.d.ts +12 -4
  81. package/dist/components/fieldText/index.d.ts +1 -0
  82. package/dist/components/fieldTextFlex/fieldTextFlex.d.ts +5 -2
  83. package/dist/components/fieldTextFlex/index.d.ts +1 -0
  84. package/dist/components/fileDropArea/attachedFilesList/attachedFilesList.d.ts +21 -0
  85. package/dist/components/fileDropArea/attachedFilesList/index.d.ts +5 -0
  86. package/dist/components/fileDropArea/browseButton/browseButton.d.ts +9 -0
  87. package/dist/components/fileDropArea/browseButton/index.d.ts +4 -0
  88. package/dist/components/fileDropArea/constants.d.ts +2 -0
  89. package/dist/components/fileDropArea/dropZone/dropZone.d.ts +10 -0
  90. package/dist/components/fileDropArea/dropZone/index.d.ts +4 -0
  91. package/dist/components/fileDropArea/errorMessage/errorMessage.d.ts +5 -0
  92. package/dist/components/fileDropArea/errorMessage/index.d.ts +4 -0
  93. package/dist/components/fileDropArea/fileDropArea.d.ts +19 -0
  94. package/dist/components/fileDropArea/fileDropAreaProvider/fileDropAreaProvider.d.ts +17 -0
  95. package/dist/components/fileDropArea/fileDropAreaProvider/index.d.ts +1 -0
  96. package/dist/components/fileDropArea/fileDropAreaProvider/useFileDropAreaContext.d.ts +3 -0
  97. package/dist/components/fileDropArea/hooks/index.d.ts +1 -0
  98. package/dist/components/fileDropArea/hooks/useFileDropArea.d.ts +13 -0
  99. package/dist/components/fileDropArea/hooks/useFileProcessing.d.ts +13 -0
  100. package/dist/components/fileDropArea/hooks/useOverlayDropArea.d.ts +22 -0
  101. package/dist/components/fileDropArea/index.d.ts +6 -0
  102. package/dist/components/fileDropArea/types.d.ts +58 -0
  103. package/dist/components/fileDropArea/utils/getValidationErrorMessage.d.ts +3 -0
  104. package/dist/components/fileDropArea/utils/index.d.ts +2 -0
  105. package/dist/components/fileDropArea/utils/validateFile.d.ts +3 -0
  106. package/dist/components/icons/index.d.ts +60 -7
  107. package/dist/components/index.d.ts +21 -9
  108. package/dist/components/maxValueDisplay/index.d.ts +4 -0
  109. package/dist/components/maxValueDisplay/maxValueDisplay.d.ts +8 -0
  110. package/dist/components/maxValueDisplay/utils/index.d.ts +1 -0
  111. package/dist/components/maxValueDisplay/utils/isPositiveInteger.d.ts +1 -0
  112. package/dist/components/modal/index.d.ts +1 -0
  113. package/dist/components/modal/modal.d.ts +7 -3
  114. package/dist/components/modal/modalContent/modalContent.d.ts +2 -0
  115. package/dist/components/modal/modalFooter/modalFooter.d.ts +3 -1
  116. package/dist/components/modal/modalHeader/modalHeader.d.ts +2 -1
  117. package/dist/components/modal/types.d.ts +6 -0
  118. package/dist/components/pagination/index.d.ts +1 -0
  119. package/dist/components/pagination/itemsCounter/itemCounter.d.ts +1 -0
  120. package/dist/components/pagination/pageControls/activePage/activePage.d.ts +1 -0
  121. package/dist/components/pagination/pageControls/activePage/pageSelector/pageSelector.d.ts +1 -0
  122. package/dist/components/pagination/pageControls/pageControls.d.ts +1 -0
  123. package/dist/components/pagination/pageControls/pageNavigator/bar/bar.d.ts +1 -0
  124. package/dist/components/pagination/pageControls/pageNavigator/pageNavigator.d.ts +1 -0
  125. package/dist/components/pagination/pageSizeControl/pageSizeControl.d.ts +1 -0
  126. package/dist/components/pagination/pageSizeControl/sizeSelector/sizeSelector.d.ts +1 -0
  127. package/dist/components/pagination/pagination.d.ts +1 -0
  128. package/dist/components/popover/index.d.ts +4 -1
  129. package/dist/components/popover/popover.d.ts +3 -2
  130. package/dist/components/radio/index.d.ts +1 -0
  131. package/dist/components/radio/radio.d.ts +1 -0
  132. package/dist/components/radio/radioGroup.d.ts +1 -0
  133. package/dist/components/selection/index.d.ts +5 -0
  134. package/dist/components/selection/selection.d.ts +12 -0
  135. package/dist/components/selection/types.d.ts +1 -0
  136. package/dist/components/sidePanel/index.d.ts +2 -0
  137. package/dist/components/sidePanel/sidePanel.d.ts +17 -0
  138. package/dist/components/spinLoader/index.d.ts +4 -0
  139. package/dist/components/spinLoader/spinLoader.d.ts +8 -0
  140. package/dist/components/systemAlert/index.d.ts +1 -0
  141. package/dist/components/systemAlert/systemAlert.d.ts +4 -0
  142. package/dist/components/systemAlert/types.d.ts +22 -0
  143. package/dist/components/systemMessage/index.d.ts +1 -0
  144. package/dist/components/systemMessage/systemMessage.d.ts +1 -0
  145. package/dist/components/table/constants.d.ts +5 -0
  146. package/dist/components/table/hooks/index.d.ts +4 -0
  147. package/dist/components/table/hooks/useColumnWidths.d.ts +8 -0
  148. package/dist/components/table/hooks/useTableColumns.d.ts +13 -0
  149. package/dist/components/table/hooks/useTableExpansion.d.ts +15 -0
  150. package/dist/components/table/hooks/useTableHover.d.ts +10 -0
  151. package/dist/components/table/index.d.ts +2 -0
  152. package/dist/components/table/table.d.ts +1 -0
  153. package/dist/components/table/types.d.ts +24 -9
  154. package/dist/components/table/utils.d.ts +10 -1
  155. package/dist/components/themeProvider/index.d.ts +1 -0
  156. package/dist/components/themeProvider/themeProvider.d.ts +1 -0
  157. package/dist/components/toggle/index.d.ts +1 -0
  158. package/dist/components/toggle/toggle.d.ts +1 -0
  159. package/dist/components/tooltip/tooltip.d.ts +12 -2
  160. package/dist/datePicker-efa4e2d6.js +194 -0
  161. package/dist/datePicker.js +27 -0
  162. package/dist/dropdown-0260bb66.js +5 -0
  163. package/dist/dropdown-ec754bbe.js +289 -0
  164. package/dist/dropdown.js +5 -2
  165. package/dist/fieldLabel.js +18 -0
  166. package/dist/fieldNumber-d1b5a7a1.js +140 -0
  167. package/dist/fieldNumber.js +5 -2
  168. package/dist/fieldText-ba8a917c.js +165 -0
  169. package/dist/fieldText.js +6 -2
  170. package/dist/fieldTextFlex-2f51c173.js +80 -0
  171. package/dist/fieldTextFlex.js +3 -1
  172. package/dist/fileDropArea.js +325 -0
  173. package/dist/fonts/OpenSans/OpenSans-Bold.ttf +0 -0
  174. package/dist/fonts/OpenSans/OpenSans-Medium.ttf +0 -0
  175. package/dist/icons.js +80 -0
  176. package/dist/index-1a874a8b.js +110 -0
  177. package/dist/index.js +140 -48
  178. package/dist/isEmpty-ccacb5ff.js +38 -0
  179. package/dist/maxValueDisplay-9be01a75.js +13 -0
  180. package/dist/maxValueDisplay.js +6 -0
  181. package/dist/minus-2857540f.js +5 -0
  182. package/dist/modal.js +153 -14
  183. package/dist/openEye-7b9cf080.js +7 -0
  184. package/dist/pagination-43330c73.js +347 -0
  185. package/dist/pagination.js +10 -5
  186. package/dist/plus-199fb2a8.js +5 -0
  187. package/dist/popover.js +61 -57
  188. package/dist/prevPage-87faf576.js +6 -0
  189. package/dist/radio-62546efa.js +76 -0
  190. package/dist/radio.js +1 -1
  191. package/dist/selection-9124d029.js +38 -0
  192. package/dist/selection.js +10 -0
  193. package/dist/sidePanel.js +74 -0
  194. package/dist/spinLoader-c4a53718.js +11 -0
  195. package/dist/spinLoader.js +7 -0
  196. package/dist/style.css +1 -1
  197. package/dist/success-8fd8bd2c.js +7 -0
  198. package/dist/systemAlert.js +69 -0
  199. package/dist/systemMessage-924fdaa6.js +30 -0
  200. package/dist/systemMessage.js +1 -1
  201. package/dist/table-ea578f47.js +476 -0
  202. package/dist/table.js +3 -3
  203. package/dist/toggle-304107fa.js +59 -0
  204. package/dist/toggle.js +1 -1
  205. package/dist/tooltip.js +87 -56
  206. package/dist/tree-c3dd3d45.js +6 -0
  207. package/dist/xls-995781cc.js +11 -0
  208. package/package.json +47 -16
  209. package/dist/baseIconButton-7bc53dec.js +0 -25
  210. package/dist/bubblesLoader-a7e709d4.js +0 -17
  211. package/dist/button-7fb84fde.js +0 -62
  212. package/dist/checkbox-6777be17.js +0 -73
  213. package/dist/dropdown-e07f2a71.js +0 -212
  214. package/dist/fieldNumber-46fe79b9.js +0 -127
  215. package/dist/fieldText-d80b29ba.js +0 -102
  216. package/dist/fieldTextFlex-5bddf46a.js +0 -67
  217. package/dist/index-bb9b62ef.js +0 -131
  218. package/dist/pagination-5449cd03.js +0 -346
  219. package/dist/radio-fd49a09c.js +0 -76
  220. package/dist/systemMessage-1ced6079.js +0 -30
  221. package/dist/table-231fd19c.js +0 -138
  222. package/dist/toggle-707ecb74.js +0 -67
@@ -0,0 +1,110 @@
1
+ import { jsxs as h, jsx as t } from "react/jsx-runtime";
2
+ import { useMemo as o, useCallback as m } from "react";
3
+ import { c as C } from "./bind-06a7ff84.js";
4
+ import { S } from "./close-4d480ef7.js";
5
+ import { a as w, b as E, S as j, d as y, e as I, c as l, f as x } from "./xls-995781cc.js";
6
+ const k = (_) => {
7
+ var c;
8
+ const d = _.split(".");
9
+ return d.length > 1 && ((c = d.pop()) == null ? void 0 : c.toLowerCase()) || "";
10
+ }, L = {
11
+ "attached-file": "_attached-file_1x0ei_16",
12
+ "attached-file__file-name": "_attached-file__file-name_1x0ei_29",
13
+ "attached-file--failed": "_attached-file--failed_1x0ei_32",
14
+ "attached-file__name-text": "_attached-file__name-text_1x0ei_36",
15
+ "attached-file__icon": "_attached-file__icon_1x0ei_39",
16
+ "attached-file--uploading": "_attached-file--uploading_1x0ei_45",
17
+ "attached-file--full-width": "_attached-file--full-width_1x0ei_57",
18
+ "attached-file__file-icon": "_attached-file__file-icon_1x0ei_66",
19
+ "attached-file__info": "_attached-file__info_1x0ei_78",
20
+ "attached-file__download-icon": "_attached-file__download-icon_1x0ei_108",
21
+ "attached-file__file-details": "_attached-file__file-details_1x0ei_117",
22
+ "attached-file__error-message": "_attached-file__error-message_1x0ei_122",
23
+ "attached-file__upload-progress": "_attached-file__upload-progress_1x0ei_127",
24
+ "attached-file__upload-progress-bar": "_attached-file__upload-progress-bar_1x0ei_137",
25
+ "attached-file__remove-button": "_attached-file__remove-button_1x0ei_141",
26
+ "attached-file__remove-button--disabled": "_attached-file__remove-button--disabled_1x0ei_163"
27
+ }, e = C.bind(L), A = {
28
+ csv: j,
29
+ jar: y,
30
+ pdf: I,
31
+ jpg: l,
32
+ jpeg: l,
33
+ png: l,
34
+ gif: l,
35
+ svg: l,
36
+ webp: l,
37
+ xls: x,
38
+ xlsx: x
39
+ }, M = (_) => A[_.toLowerCase()] ?? E, X = ({
40
+ fileName: _,
41
+ size: d,
42
+ uploadingProgress: c = 0,
43
+ isUploadFailed: i = !1,
44
+ uploadFailedMessage: p,
45
+ isUploading: a = !1,
46
+ isFullWidth: u = !1,
47
+ onDownload: f,
48
+ onRemove: s
49
+ }) => {
50
+ const r = o(() => k(_), [_]), g = r.toUpperCase(), b = o(() => M(r), [r]), v = m(
51
+ (n) => {
52
+ n.stopPropagation(), a || s == null || s();
53
+ },
54
+ [a, s]
55
+ ), N = m(
56
+ (n) => {
57
+ n.stopPropagation(), !i && !a && f && f();
58
+ },
59
+ [i, a, f]
60
+ );
61
+ return /* @__PURE__ */ h(
62
+ "div",
63
+ {
64
+ className: e("attached-file", {
65
+ "attached-file--failed": i,
66
+ "attached-file--uploading": a,
67
+ "attached-file--full-width": u
68
+ }),
69
+ children: [
70
+ /* @__PURE__ */ t("div", { className: e("attached-file__icon"), children: /* @__PURE__ */ t("div", { className: e("attached-file__file-icon"), children: /* @__PURE__ */ t(b, {}) }) }),
71
+ /* @__PURE__ */ h("div", { className: e("attached-file__info"), children: [
72
+ f ? /* @__PURE__ */ h("button", { type: "button", className: e("attached-file__file-name"), onClick: N, children: [
73
+ /* @__PURE__ */ t("span", { className: e("attached-file__name-text"), children: _ }),
74
+ !a && !i && /* @__PURE__ */ t("span", { className: e("attached-file__download-icon"), children: /* @__PURE__ */ t(w, {}) })
75
+ ] }) : /* @__PURE__ */ t("div", { className: e("attached-file__file-name"), children: /* @__PURE__ */ t("span", { className: e("attached-file__name-text"), children: _ }) }),
76
+ !i && /* @__PURE__ */ h("div", { className: e("attached-file__file-details"), children: [
77
+ g,
78
+ ", ",
79
+ d,
80
+ " MB"
81
+ ] }),
82
+ i && /* @__PURE__ */ t("div", { className: e("attached-file__error-message"), children: p })
83
+ ] }),
84
+ s && /* @__PURE__ */ t(
85
+ "button",
86
+ {
87
+ type: "button",
88
+ className: e("attached-file__remove-button", {
89
+ "attached-file__remove-button--disabled": a
90
+ }),
91
+ disabled: a,
92
+ onClick: v,
93
+ children: /* @__PURE__ */ t(S, {})
94
+ }
95
+ ),
96
+ a && c > 0 && /* @__PURE__ */ t("div", { className: e("attached-file__upload-progress"), children: /* @__PURE__ */ t(
97
+ "div",
98
+ {
99
+ className: e("attached-file__upload-progress-bar"),
100
+ style: { width: `${c}%` }
101
+ }
102
+ ) })
103
+ ]
104
+ }
105
+ );
106
+ };
107
+ export {
108
+ X as A,
109
+ k as g
110
+ };
package/dist/index.js CHANGED
@@ -1,58 +1,150 @@
1
- import { B as d } from "./button-7fb84fde.js";
2
- import { C as L } from "./checkbox-6777be17.js";
3
- import { S as g } from "./systemMessage-1ced6079.js";
4
- import { S as h, F as u } from "./fieldText-d80b29ba.js";
5
- import { T as I } from "./themeProvider-46c2be7b.js";
6
- import { S as H, M as S } from "./index-bb9b62ef.js";
7
- import { D as P, S as b } from "./dropdown-e07f2a71.js";
8
- import { T as R } from "./toggle-707ecb74.js";
9
- import { F as D, a as E, S as V } from "./fieldNumber-46fe79b9.js";
10
- import { B as y } from "./bubblesLoader-a7e709d4.js";
11
- import { F as U } from "./fieldTextFlex-5bddf46a.js";
12
- import { R as q } from "./radio-fd49a09c.js";
13
- import { Tooltip as G } from "./tooltip.js";
14
- import { Popover as K } from "./popover.js";
15
- import { P as Q, a as W, S as X } from "./pagination-5449cd03.js";
16
- import { S as _, a as $, T as e1 } from "./table-231fd19c.js";
17
- import { B as r1 } from "./baseIconButton-7bc53dec.js";
18
- import * as e from "react";
1
+ import { A as P } from "./index-1a874a8b.js";
2
+ import { B as F } from "./baseIconButton-251479f7.js";
3
+ import { B as D } from "./breadcrumbs-8e5ca8d7.js";
4
+ import { B as y } from "./bubblesLoader-f3ffa240.js";
5
+ import { B as h } from "./button-97d9e587.js";
6
+ import { C as B } from "./checkbox-ed6cc375.js";
7
+ import { D as w } from "./datePicker-efa4e2d6.js";
8
+ import "react-datepicker";
9
+ import { D as k } from "./dropdown-ec754bbe.js";
10
+ import { FieldLabel as L } from "./fieldLabel.js";
11
+ import { F as R } from "./fieldNumber-d1b5a7a1.js";
12
+ import { F as J } from "./fieldText-ba8a917c.js";
13
+ import { F as U } from "./fieldTextFlex-2f51c173.js";
14
+ import { FileDropArea as G } from "./fileDropArea.js";
15
+ import { Modal as X } from "./modal.js";
16
+ import { MultipleAutocomplete as q, SingleAutocomplete as K } from "./autocompletes.js";
17
+ import { P as V } from "./pagination-43330c73.js";
18
+ import { Popover as Z } from "./popover.js";
19
+ import { R as $ } from "./radio-62546efa.js";
20
+ import { S as ro } from "./selection-9124d029.js";
21
+ import { S as no } from "./spinLoader-c4a53718.js";
22
+ import { SystemAlert as ao } from "./systemAlert.js";
23
+ import { S as po } from "./systemMessage-924fdaa6.js";
24
+ import { T as mo } from "./table-ea578f47.js";
25
+ import { T as so } from "./themeProvider-46c2be7b.js";
26
+ import { T as xo } from "./toggle-304107fa.js";
27
+ import { Tooltip as uo } from "./tooltip.js";
28
+ import { SidePanel as Po } from "./sidePanel.js";
29
+ import { AddCsvIcon as Fo, AddImageIcon as go, AddJarIcon as Do, BreadcrumbsTreeIcon as bo, CalendarIcon as yo, CheckmarkIcon as To, ChevronRightBreadcrumbsIcon as ho, ConfigurationIcon as Ao, CopyIcon as Bo, CoveredManuallyIcon as vo, DeleteIcon as wo, DragAndDropIcon as Mo, DragNDropIcon as ko, DurationIcon as Eo, EditIcon as Lo, ExportIcon as Oo, FilterFilledIcon as Ro, FilterOutlineIcon as Ho, FlagIcon as Jo, GroupByIcon as No, HideIcon as Uo, LaunchTypeIcon as zo, MaximizeIcon as Go, MoveToFolderIcon as Wo, OwnerIcon as Xo, PinFilledIcon as jo, PinOutlineIcon as qo, PriorityBlockerIcon as Ko, PriorityCriticalIcon as Qo, PriorityHighIcon as Vo, PriorityLowIcon as Yo, PriorityMediumIcon as Zo, PriorityUnspecifiedIcon as _o, RefreshIcon as $o, RerunIcon as or, SearchIcon as rr, SortIcon as er, StatusSuccessIcon as nr, TestPlanIcon as tr, WarningIcon as ar } from "./icons.js";
30
+ import { S as pr, a as ir, b as mr } from "./chevronDownDropdown-66f5b1af.js";
31
+ import { S as sr } from "./calendarArrow-44c7e60e.js";
32
+ import { S as xr, a as fr, b as dr } from "./openEye-7b9cf080.js";
33
+ import { S as Sr } from "./close-4d480ef7.js";
34
+ import { S as Cr, a as Fr, b as gr, c as Dr, d as br, e as yr, f as Tr } from "./xls-995781cc.js";
35
+ import { S as Ar } from "./dropdown-0260bb66.js";
36
+ import { S as vr, a as wr, b as Mr } from "./success-8fd8bd2c.js";
37
+ import { S as Er, a as Lr } from "./tree-c3dd3d45.js";
38
+ import { S as Rr } from "./minus-2857540f.js";
39
+ import { S as Jr } from "./plus-199fb2a8.js";
40
+ import { S as Ur, a as zr } from "./prevPage-87faf576.js";
19
41
  import "react/jsx-runtime";
42
+ import "react";
20
43
  import "./bind-06a7ff84.js";
21
44
  import "./keyCodes-f63c0e11.js";
22
- import "rc-scrollbars";
23
- import "framer-motion";
24
- import "./useOnClickOutside-c332f7d3.js";
45
+ import "react-datepicker/dist/es/index.js";
25
46
  import "@floating-ui/react-dom";
26
47
  import "downshift";
48
+ import "rc-scrollbars";
49
+ import "./useOnClickOutside-c332f7d3.js";
50
+ import "./maxValueDisplay-9be01a75.js";
51
+ import "./isEmpty-ccacb5ff.js";
52
+ import "react-dropzone";
53
+ import "framer-motion";
27
54
  import "@floating-ui/react";
28
- const i = (o) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...o }, /* @__PURE__ */ e.createElement("path", { d: "M9.80051 6.3661C9.95672 6.20989 10.21 6.20989 10.3662 6.3661L10.6338 6.63375C10.7901 6.78996 10.7901 7.04323 10.6338 7.19944L8.83331 8.99996L10.6338 10.8005C10.79 10.9567 10.79 11.2099 10.6338 11.3662L10.3662 11.6338C10.21 11.79 9.95669 11.79 9.80048 11.6338L7.99998 9.8333L6.19953 11.6338C6.04332 11.79 5.79005 11.79 5.63384 11.6338L5.36619 11.3661C5.20998 11.2099 5.20998 10.9566 5.36619 10.8004L7.16665 8.99996L5.36617 7.19949C5.20996 7.04328 5.20996 6.79001 5.36617 6.6338L5.63382 6.36615C5.79003 6.20994 6.04329 6.20994 6.1995 6.36615L7.99998 8.16663L9.80051 6.3661Z", fill: "#A2AAB5" }), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.99878 3V2C4.99878 1.44772 5.44649 1 5.99878 1H9.99878C10.5511 1 10.9988 1.44772 10.9988 2V3H14.5C14.7761 3 15 3.22386 15 3.5C15 3.77614 14.7761 4 14.5 4H13.4167L12.6146 13.6246C12.5498 14.402 11.8999 15 11.1198 15H4.8802C4.10007 15 3.45017 14.402 3.38538 13.6246L2.58333 4H1.5C1.22386 4 1 3.77614 1 3.5C1 3.22386 1.22386 3 1.5 3H4.99878ZM5.99878 2H9.99878V3H5.99878V2ZM3.5868 4L4.38193 13.5415C4.40352 13.8007 4.62016 14 4.8802 14H11.1198C11.3798 14 11.5965 13.8007 11.6181 13.5415L12.4132 4H3.5868Z", fill: "#A2AAB5" })), x = (o) => /* @__PURE__ */ e.createElement("svg", { width: 14, height: 3, viewBox: "0 0 14 3", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...o }, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1.30811 2.47803C1.72868 2.47803 2.05339 2.36206 2.28223 2.13013C2.51107 1.89819 2.62549 1.60596 2.62549 1.25342C2.62549 0.894694 2.51107 0.596273 2.28223 0.358154C2.05339 0.120036 1.72868 0.000976562 1.30811 0.000976562C0.893717 0.000976562 0.572103 0.120036 0.343262 0.358154C0.114421 0.596273 0 0.894694 0 1.25342C0 1.61214 0.117513 1.90592 0.352539 2.13477C0.587565 2.36361 0.906087 2.47803 1.30811 2.47803ZM6.61475 2.47803C7.03532 2.47803 7.36003 2.36206 7.58887 2.13013C7.81771 1.89819 7.93213 1.60596 7.93213 1.25342C7.93213 0.894694 7.81771 0.596273 7.58887 0.358154C7.36003 0.120036 7.03532 0.000976562 6.61475 0.000976562C6.20036 0.000976562 5.87874 0.120036 5.6499 0.358154C5.42106 0.596273 5.30664 0.894694 5.30664 1.25342C5.30664 1.61214 5.42415 1.90592 5.65918 2.13477C5.89421 2.36361 6.21273 2.47803 6.61475 2.47803ZM12.8955 2.13013C12.6667 2.36206 12.342 2.47803 11.9214 2.47803C11.5194 2.47803 11.2008 2.36361 10.9658 2.13477C10.7308 1.90592 10.6133 1.61214 10.6133 1.25342C10.6133 0.894694 10.7277 0.596273 10.9565 0.358154C11.1854 0.120036 11.507 0.000976562 11.9214 0.000976562C12.342 0.000976562 12.6667 0.120036 12.8955 0.358154C13.1243 0.596273 13.2388 0.894694 13.2388 1.25342C13.2388 1.60596 13.1243 1.89819 12.8955 2.13013Z", fill: "#A2AAB5" }));
55
+ import "react-dom";
29
56
  export {
30
- _ as ArrowDownIcon,
31
- $ as ArrowUpIcon,
32
- r1 as BaseIconButton,
57
+ Fo as AddCsvIcon,
58
+ go as AddImageIcon,
59
+ Do as AddJarIcon,
60
+ pr as ArrowDownIcon,
61
+ ir as ArrowUpIcon,
62
+ P as AttachedFile,
63
+ F as BaseIconButton,
64
+ D as Breadcrumbs,
65
+ bo as BreadcrumbsTreeIcon,
33
66
  y as BubblesLoader,
34
- d as Button,
35
- L as Checkbox,
36
- h as ClearIcon,
37
- H as CloseIcon,
38
- i as DeleteIcon,
39
- P as Dropdown,
40
- b as DropdownIcon,
41
- D as FieldNumber,
42
- u as FieldText,
67
+ h as Button,
68
+ sr as CalendarArrowIcon,
69
+ yo as CalendarIcon,
70
+ B as Checkbox,
71
+ To as CheckmarkIcon,
72
+ mr as ChevronDownDropdownIcon,
73
+ ho as ChevronRightBreadcrumbsIcon,
74
+ xr as ClearIcon,
75
+ fr as CloseEyeIcon,
76
+ Sr as CloseIcon,
77
+ Ao as ConfigurationIcon,
78
+ Bo as CopyIcon,
79
+ vo as CoveredManuallyIcon,
80
+ Cr as CsvIcon,
81
+ w as DatePicker,
82
+ wo as DeleteIcon,
83
+ Mo as DragAndDropIcon,
84
+ ko as DragNDropIcon,
85
+ k as Dropdown,
86
+ Ar as DropdownIcon,
87
+ Eo as DurationIcon,
88
+ Lo as EditIcon,
89
+ vr as ErrorIcon,
90
+ Oo as ExportIcon,
91
+ Fr as ExternalLinkIcon,
92
+ L as FieldLabel,
93
+ R as FieldNumber,
94
+ J as FieldText,
43
95
  U as FieldTextFlex,
44
- x as MeatballMenuIcon,
45
- E as MinusIcon,
46
- S as Modal,
47
- Q as Pagination,
48
- V as PlusIcon,
49
- K as Popover,
50
- W as PrevChapterIcon,
51
- X as PrevPageIcon,
52
- q as Radio,
53
- g as SystemMessage,
54
- e1 as Table,
55
- I as ThemeProvider,
56
- R as Toggle,
57
- G as Tooltip
96
+ G as FileDropArea,
97
+ gr as FileOtherIcon,
98
+ Ro as FilterFilledIcon,
99
+ Ho as FilterOutlineIcon,
100
+ Jo as FlagIcon,
101
+ No as GroupByIcon,
102
+ Uo as HideIcon,
103
+ Dr as ImageIcon,
104
+ wr as InfoIcon,
105
+ br as JarIcon,
106
+ zo as LaunchTypeIcon,
107
+ Go as MaximizeIcon,
108
+ Er as MeatballMenuIcon,
109
+ Rr as MinusIcon,
110
+ X as Modal,
111
+ Wo as MoveToFolderIcon,
112
+ q as MultipleAutocomplete,
113
+ dr as OpenEyeIcon,
114
+ Xo as OwnerIcon,
115
+ V as Pagination,
116
+ yr as PdfIcon,
117
+ jo as PinFilledIcon,
118
+ qo as PinOutlineIcon,
119
+ Jr as PlusIcon,
120
+ Z as Popover,
121
+ Ur as PrevChapterIcon,
122
+ zr as PrevPageIcon,
123
+ Ko as PriorityBlockerIcon,
124
+ Qo as PriorityCriticalIcon,
125
+ Vo as PriorityHighIcon,
126
+ Yo as PriorityLowIcon,
127
+ Zo as PriorityMediumIcon,
128
+ _o as PriorityUnspecifiedIcon,
129
+ $ as Radio,
130
+ $o as RefreshIcon,
131
+ or as RerunIcon,
132
+ rr as SearchIcon,
133
+ ro as Selection,
134
+ Po as SidePanel,
135
+ K as SingleAutocomplete,
136
+ er as SortIcon,
137
+ no as SpinLoader,
138
+ nr as StatusSuccessIcon,
139
+ Mr as SuccessIcon,
140
+ ao as SystemAlert,
141
+ po as SystemMessage,
142
+ mo as Table,
143
+ tr as TestPlanIcon,
144
+ so as ThemeProvider,
145
+ xo as Toggle,
146
+ uo as Tooltip,
147
+ Lr as TreeIcon,
148
+ ar as WarningIcon,
149
+ Tr as XlsIcon
58
150
  };
@@ -0,0 +1,38 @@
1
+ function e(t) {
2
+ return Number.isSafeInteger(t) && t >= 0;
3
+ }
4
+ function o(t) {
5
+ return t != null && typeof t != "function" && e(t.length);
6
+ }
7
+ function i(t) {
8
+ return t == null ? t === void 0 ? "[object Undefined]" : "[object Null]" : Object.prototype.toString.call(t);
9
+ }
10
+ function f(t) {
11
+ return ArrayBuffer.isView(t) && !(t instanceof DataView);
12
+ }
13
+ function c(t) {
14
+ return t !== null && typeof t == "object" && i(t) === "[object Arguments]";
15
+ }
16
+ function s(t) {
17
+ const n = t == null ? void 0 : t.constructor, r = typeof n == "function" ? n.prototype : Object.prototype;
18
+ return t === r;
19
+ }
20
+ function p(t) {
21
+ return f(t);
22
+ }
23
+ function y(t) {
24
+ if (t == null)
25
+ return !0;
26
+ if (o(t))
27
+ return typeof t.splice != "function" && typeof t != "string" && (typeof Buffer > "u" || !Buffer.isBuffer(t)) && !p(t) && !c(t) ? !1 : t.length === 0;
28
+ if (typeof t == "object") {
29
+ if (t instanceof Map || t instanceof Set)
30
+ return t.size === 0;
31
+ const n = Object.keys(t);
32
+ return s(t) ? n.filter((r) => r !== "constructor").length === 0 : n.length === 0;
33
+ }
34
+ return !0;
35
+ }
36
+ export {
37
+ y as i
38
+ };
@@ -0,0 +1,13 @@
1
+ import { jsxs as r } from "react/jsx-runtime";
2
+ const t = (s) => typeof s == "number" && Number.isFinite(s) && Number.isInteger(s) && s > 0, p = ({
3
+ className: s,
4
+ value: e,
5
+ maxValue: n
6
+ }) => t(n) ? /* @__PURE__ */ r("span", { className: s, children: [
7
+ e,
8
+ "/",
9
+ n
10
+ ] }) : null;
11
+ export {
12
+ p as M
13
+ };
@@ -0,0 +1,6 @@
1
+ import { M as o } from "./maxValueDisplay-9be01a75.js";
2
+ import "react/jsx-runtime";
3
+ export {
4
+ o as MaxValueDisplay,
5
+ o as default
6
+ };
@@ -0,0 +1,5 @@
1
+ import * as e from "react";
2
+ const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "#C1C7D0", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.31082 7.31081C2.94108 7.30926 2.6426 7.60773 2.64415 7.97748C2.64571 8.34722 2.9467 8.64822 3.31645 8.64977L12.6892 8.68919C13.0589 8.69074 13.3574 8.39227 13.3559 8.02252C13.3543 7.65278 13.0533 7.35178 12.6836 7.35023L3.31082 7.31081Z" }));
3
+ export {
4
+ l as S
5
+ };
package/dist/modal.js CHANGED
@@ -1,16 +1,155 @@
1
- import { M as s, a as n, c as b, b as c } from "./index-bb9b62ef.js";
2
- import "react/jsx-runtime";
3
- import "react";
4
- import "rc-scrollbars";
5
- import "framer-motion";
6
- import "./bind-06a7ff84.js";
7
- import "./useOnClickOutside-c332f7d3.js";
8
- import "./keyCodes-f63c0e11.js";
9
- import "./button-7fb84fde.js";
10
- import "./baseIconButton-7bc53dec.js";
1
+ import { jsx as e, jsxs as d, Fragment as P } from "react/jsx-runtime";
2
+ import { useState as p, useEffect as b, useRef as j } from "react";
3
+ import { Scrollbars as F } from "rc-scrollbars";
4
+ import { AnimatePresence as G, motion as K } from "framer-motion";
5
+ import { c as y } from "./bind-06a7ff84.js";
6
+ import { u as Y } from "./useOnClickOutside-c332f7d3.js";
7
+ import { K as U } from "./keyCodes-f63c0e11.js";
8
+ import { B as A } from "./button-97d9e587.js";
9
+ import { Tooltip as X } from "./tooltip.js";
10
+ import { B as J } from "./baseIconButton-251479f7.js";
11
+ import { S as Q } from "./close-4d480ef7.js";
12
+ import "react-dom";
13
+ import "@floating-ui/react";
14
+ const V = () => {
15
+ const [o, n] = p({ width: 0, height: 0 });
16
+ return b(() => {
17
+ const l = () => {
18
+ n({
19
+ width: window.innerWidth,
20
+ height: window.innerHeight
21
+ });
22
+ };
23
+ return window.addEventListener("resize", l), l(), () => window.removeEventListener("resize", l);
24
+ }, []), o;
25
+ }, Z = "_scrollable_zh8d2_12", ee = {
26
+ "modal-content": "_modal-content_zh8d2_1",
27
+ scrollable: Z
28
+ }, te = y.bind(ee), C = ({ scrollable: o = !1, children: n }) => /* @__PURE__ */ e("div", { className: te("modal-content", { scrollable: o }), children: n }), oe = {
29
+ "buttons-block": "_buttons-block_1mwne_1",
30
+ "button-container": "_button-container_1mwne_7",
31
+ "modal-footer": "_modal-footer_1mwne_12",
32
+ "with-extra-node": "_with-extra-node_1mwne_19",
33
+ "size-small": "_size-small_1mwne_23"
34
+ }, u = y.bind(oe), ne = ({
35
+ footerNode: o,
36
+ closeHandler: n,
37
+ okButton: l,
38
+ cancelButton: _,
39
+ size: a
40
+ }) => {
41
+ const { tooltipNode: h, ...c } = l || {}, g = () => {
42
+ const r = /* @__PURE__ */ e(A, { adjustWidthOn: a === "small" ? "parent" : "min-width", ...c });
43
+ return h ? /* @__PURE__ */ e(X, { content: h, placement: "top", width: 270, children: r }) : r;
44
+ };
45
+ return /* @__PURE__ */ d("div", { className: u("modal-footer", { "with-extra-node": o, [`size-${a}`]: a }), children: [
46
+ o && o,
47
+ /* @__PURE__ */ d("div", { className: u("buttons-block"), children: [
48
+ _ && /* @__PURE__ */ e("div", { className: u("button-container"), children: /* @__PURE__ */ e(
49
+ A,
50
+ {
51
+ variant: "ghost",
52
+ adjustWidthOn: a === "small" ? "parent" : "min-width",
53
+ onClick: n,
54
+ ..._
55
+ }
56
+ ) }),
57
+ l && /* @__PURE__ */ e("div", { className: u("button-container"), children: g() })
58
+ ] })
59
+ ] });
60
+ }, le = {
61
+ "modal-header": "_modal-header_w4aaf_1",
62
+ "width-description": "_width-description_w4aaf_10",
63
+ "modal-header-content": "_modal-header-content_w4aaf_14",
64
+ "modal-title": "_modal-title_w4aaf_20",
65
+ "close-modal-icon": "_close-modal-icon_w4aaf_29"
66
+ }, w = y.bind(le), ae = ({ title: o, onClose: n, withDescription: l = !1 }) => /* @__PURE__ */ d("div", { className: w("modal-header", { "width-description": l }), children: [
67
+ /* @__PURE__ */ e("div", { className: w("modal-header-content"), children: o && /* @__PURE__ */ e("div", { className: w("modal-title"), children: o }) }),
68
+ /* @__PURE__ */ e(J, { className: w("close-modal-icon"), onClick: n, children: /* @__PURE__ */ e(Q, {}) })
69
+ ] }), se = "_modal_yxql5_1", ie = "_description_yxql5_43", de = "_scrollable_yxql5_53", ce = {
70
+ modal: se,
71
+ "overlay-default": "_overlay-default_yxql5_12",
72
+ "overlay-light-cyan": "_overlay-light-cyan_yxql5_16",
73
+ "scrolling-content": "_scrolling-content_yxql5_20",
74
+ "modal-window": "_modal-window_yxql5_26",
75
+ description: ie,
76
+ scrollable: de,
77
+ "size-default": "_size-default_yxql5_57",
78
+ "size-small": "_size-small_yxql5_69",
79
+ "size-large": "_size-large_yxql5_81"
80
+ }, f = y.bind(ce), re = 0.9, me = 32 + 24, _e = 32 + 8, he = 36 + 16, ue = 32 * 2, ze = ({
81
+ title: o,
82
+ children: n,
83
+ footerNode: l,
84
+ okButton: _,
85
+ cancelButton: a,
86
+ className: h,
87
+ size: c = "default",
88
+ onClose: g = () => {
89
+ },
90
+ overlay: r = "default",
91
+ zIndex: T = 2,
92
+ allowCloseOutside: D = !0,
93
+ scrollable: v = !1,
94
+ withoutFooter: H = !1,
95
+ createFooter: E = null,
96
+ description: s = null
97
+ }) => {
98
+ const [S, M] = p(!1), [k, I] = p(0), [q, L] = p(!1), i = j(null), N = V(), O = N.height, $ = O * re, x = (O - k) / 2, R = () => {
99
+ let t = $ - ue;
100
+ return H || (t = t - he), s ? t = t - _e : t = t - me, t;
101
+ }, m = () => {
102
+ M(!1);
103
+ }, z = (t) => {
104
+ const { keyCode: B } = t;
105
+ B === U.ESCAPE_KEY_CODE && m();
106
+ }, W = () => {
107
+ var t;
108
+ q || ((t = i.current) == null || t.focus(), L(!0));
109
+ };
110
+ return b(() => {
111
+ if (i && i.current) {
112
+ const { clientHeight: t } = i.current;
113
+ I(t);
114
+ }
115
+ }, [n, N]), b(() => (M(!0), document.addEventListener("keydown", z, !1), () => document.removeEventListener("keydown", z, !1)), []), Y(i, D ? m : void 0), /* @__PURE__ */ e(G, { onExitComplete: g, children: S && /* @__PURE__ */ e("div", { className: f("modal", { [`overlay-${r}`]: r }), style: { zIndex: T }, children: /* @__PURE__ */ d(
116
+ K.div,
117
+ {
118
+ className: f("modal-window", { [`size-${c}`]: c }, h),
119
+ ref: i,
120
+ tabIndex: 0,
121
+ initial: { opacity: 0, marginTop: -x },
122
+ animate: { opacity: 1, marginTop: x },
123
+ exit: { opacity: 0, marginTop: -x },
124
+ transition: { duration: 0.3 },
125
+ onAnimationStart: W,
126
+ children: [
127
+ /* @__PURE__ */ e(ae, { title: o, onClose: m, withDescription: !!s }),
128
+ v ? /* @__PURE__ */ d(F, { autoHeight: !0, autoHeightMax: R(), hideTracksWhenNotNeeded: !0, children: [
129
+ s && /* @__PURE__ */ e("span", { className: f("description", { scrollable: v }), children: s }),
130
+ /* @__PURE__ */ e(C, { scrollable: !0, children: n })
131
+ ] }) : /* @__PURE__ */ d(P, { children: [
132
+ s && /* @__PURE__ */ e("span", { className: f("description"), children: s }),
133
+ /* @__PURE__ */ e(C, { children: n })
134
+ ] }),
135
+ !H && (E ? E(m) : /* @__PURE__ */ e(
136
+ ne,
137
+ {
138
+ size: c,
139
+ footerNode: l,
140
+ okButton: _,
141
+ cancelButton: a,
142
+ closeHandler: m
143
+ }
144
+ ))
145
+ ]
146
+ },
147
+ "modal-window"
148
+ ) }) });
149
+ };
11
150
  export {
12
- s as Modal,
13
- n as ModalContent,
14
- b as ModalFooter,
15
- c as ModalHeader
151
+ ze as Modal,
152
+ C as ModalContent,
153
+ ne as ModalFooter,
154
+ ae as ModalHeader
16
155
  };
@@ -0,0 +1,7 @@
1
+ import * as e from "react";
2
+ const l = (C) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...C }, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1 8C1 4.14001 4.14001 1 8 1C11.86 1 15 4.14001 15 8C15 11.8595 11.86 15 8 15C4.14001 15 1 11.8595 1 8ZM5 5.54545L5.54545 5L8 7.45455L10.4545 5L11 5.54545L8.54545 8L11 10.4545L10.4545 11L8 8.54545L5.54545 11L5 10.4545L7.45455 8L5 5.54545Z", fill: "#A2AAB5" })), t = (C) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...C }, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.09194 3.90153C8.73249 3.84853 8.36745 3.82135 7.99778 3.82135C5.24735 3.82135 2.75312 5.32613 0.912626 7.77031C0.762442 7.97055 0.762442 8.25031 0.912626 8.45055C1.96494 9.84971 3.23098 10.9408 4.63642 11.6187L5.59679 9.95532C5.16732 9.39694 4.92809 8.68447 4.97644 7.91459C5.07067 6.40686 6.29276 5.18478 7.80049 5.09055C8.00285 5.07782 8.2013 5.08498 8.39407 5.11028L9.09194 3.90153ZM7.56961 6.5383C6.91222 6.71981 6.41543 7.30478 6.37225 8.00589C6.36032 8.18701 6.37814 8.36223 6.42131 8.5272L7.56961 6.5383ZM8.40613 9.68939L9.57119 7.67146C9.61868 7.84288 9.6387 8.02571 9.62624 8.21497C9.58001 8.92637 9.07238 9.51681 8.40613 9.68939ZM7.58518 11.1113C7.78307 11.1384 7.98701 11.1463 8.19509 11.1332C9.69987 11.0361 10.922 9.81398 11.0191 8.3092C11.0679 7.53332 10.8245 6.81576 10.3887 6.25546L11.3454 4.59845C12.7563 5.27587 14.0272 6.36953 15.0829 7.77325C15.2331 7.9735 15.2331 8.25325 15.0829 8.4535C13.2424 10.8977 10.7482 12.4025 7.99778 12.4025C7.62256 12.4025 7.25211 12.3744 6.88743 12.3199L7.58518 11.1113Z", fill: "#A2AAB5" }), /* @__PURE__ */ e.createElement("path", { d: "M10.5051 2.25952C10.7122 1.9008 11.1709 1.7779 11.5296 1.985C11.8883 2.19211 12.0112 2.6508 11.8041 3.00952L5.35413 14.1812C5.14702 14.54 4.68833 14.6629 4.32961 14.4558C3.97089 14.2487 3.84798 13.79 4.05509 13.4312L10.5051 2.25952Z", fill: "#A2AAB5" })), n = (C) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...C }, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.99778 3.82135C5.24735 3.82135 2.75312 5.32613 0.912626 7.77031C0.762442 7.97055 0.762442 8.25031 0.912626 8.45055C2.75312 10.8977 5.24735 12.4025 7.99778 12.4025C10.7482 12.4025 13.2424 10.8977 15.0829 8.4535C15.2331 8.25325 15.2331 7.9735 15.0829 7.77325C13.2424 5.32614 10.7482 3.82135 7.99778 3.82135ZM8.19509 11.1332C6.36932 11.2481 4.86159 9.74331 4.97644 7.91459C5.07067 6.40686 6.29276 5.18478 7.80049 5.09055C9.62625 4.9757 11.134 6.48048 11.0191 8.3092C10.922 9.81398 9.69987 11.0361 8.19509 11.1332ZM6.37225 8.00589C6.30746 8.98945 7.12022 9.79926 8.10378 9.73742C8.9136 9.68736 9.57323 9.03068 9.62624 8.21497C9.69102 7.23141 8.87826 6.4216 7.8947 6.48344C7.08194 6.53644 6.42231 7.19313 6.37225 8.00589Z", fill: "#A2AAB5" }));
3
+ export {
4
+ l as S,
5
+ t as a,
6
+ n as b
7
+ };