pixel-react 1.4.3 → 1.4.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (263) hide show
  1. package/.yarn/install-state.gz +0 -0
  2. package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
  3. package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
  4. package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
  5. package/lib/components/AddButton/AddButton.d.ts +5 -0
  6. package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
  7. package/lib/components/AddButton/index.d.ts +1 -0
  8. package/lib/components/AddButton/types.d.ts +4 -0
  9. package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
  10. package/lib/components/AddResourceButton/type.d.ts +1 -1
  11. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
  12. package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
  13. package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
  14. package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
  15. package/lib/components/Avatar/Avatar.stories.d.ts +10 -0
  16. package/lib/components/Button/Button.stories.d.ts +13 -0
  17. package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
  18. package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
  19. package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
  20. package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
  21. package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
  22. package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
  23. package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
  24. package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
  25. package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
  26. package/lib/components/Chip/Chip.stories.d.ts +14 -0
  27. package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
  28. package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
  29. package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
  30. package/lib/components/Drawer/Drawer.stories.d.ts +12 -0
  31. package/lib/components/Drawer/Types.d.ts +4 -0
  32. package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
  33. package/lib/components/Editor/Editor.d.ts +1 -2
  34. package/lib/components/Editor/Editor.stories.d.ts +6 -0
  35. package/lib/components/Editor/types.d.ts +1 -5
  36. package/lib/components/Excel/ExcelContextMenu/ExcelContextMenu.d.ts +13 -0
  37. package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +0 -13
  38. package/lib/components/Excel/ExcelFile/ExcelFileComponents/actions.d.ts +29 -1
  39. package/lib/components/Excel/ExcelFile/ExcelFileComponents/engine/engine.d.ts +3 -9
  40. package/lib/components/Excel/ExcelFile/ExcelFileComponents/engine/formula.d.ts +2 -10
  41. package/lib/components/Excel/ExcelFile/ExcelFileComponents/engine/point-graph.d.ts +0 -1
  42. package/lib/components/Excel/ExcelFile/ExcelFileComponents/types.d.ts +27 -2
  43. package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
  44. package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
  45. package/lib/components/ExcelFile/ColorBarselector/ColorBarSelector.d.ts +8 -0
  46. package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
  47. package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
  48. package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
  49. package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
  50. package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
  51. package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
  52. package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
  53. package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
  54. package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
  55. package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
  56. package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
  57. package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
  58. package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
  59. package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +81 -0
  60. package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
  61. package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +130 -0
  62. package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
  63. package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
  64. package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
  65. package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
  66. package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
  67. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
  68. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
  69. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
  70. package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
  71. package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
  72. package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
  73. package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
  74. package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
  75. package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
  76. package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +215 -0
  77. package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
  78. package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
  79. package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +45 -0
  80. package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +3 -0
  81. package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
  82. package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +15 -0
  83. package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +3 -0
  84. package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
  85. package/lib/components/ExcelFile/Types.d.ts +176 -0
  86. package/lib/components/ExcelFile/index.d.ts +1 -0
  87. package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
  88. package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
  89. package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
  90. package/lib/components/Form/Form.stories.d.ts +7 -0
  91. package/lib/components/Form/Forms.d.ts +4 -2
  92. package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
  93. package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
  94. package/lib/components/Icon/Icon.stories.d.ts +8 -0
  95. package/lib/components/IconButton/IconButton.stories.d.ts +7 -0
  96. package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
  97. package/lib/components/Input/Input.stories.d.ts +9 -0
  98. package/lib/components/InputWithDropdown/InputWithDropdown.d.ts +1 -1
  99. package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +9 -0
  100. package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +13 -0
  101. package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
  102. package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
  103. package/lib/components/MenuOption/MenuOption.d.ts +1 -1
  104. package/lib/components/MenuOption/MenuOption.stories.d.ts +16 -0
  105. package/lib/components/MenuOption/types.d.ts +49 -15
  106. package/lib/components/MiniModal/MiniModal.stories.d.ts +10 -0
  107. package/lib/components/Modal/Modal.stories.d.ts +7 -0
  108. package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
  109. package/lib/components/MultiSelect/MultiSelect.d.ts +1 -1
  110. package/lib/components/MultiSelect/MultiSelect.stories.d.ts +12 -0
  111. package/lib/components/MultiSelect/MultiSelectTypes.d.ts +4 -5
  112. package/lib/components/MultiSelect/dropdownTypes.d.ts +2 -0
  113. package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
  114. package/lib/components/Paper/Paper.stories.d.ts +11 -0
  115. package/lib/components/RadioButton/RadioButton.d.ts +1 -0
  116. package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
  117. package/lib/components/RadioButton/radioButtonTypes.d.ts +3 -1
  118. package/lib/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
  119. package/lib/components/Search/Search.stories.d.ts +6 -0
  120. package/lib/components/Select/Select.stories.d.ts +14 -0
  121. package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
  122. package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +17 -0
  123. package/lib/components/Select/components/types.d.ts +4 -2
  124. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
  125. package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
  126. package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
  127. package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
  128. package/lib/components/Table/Table.d.ts +1 -1
  129. package/lib/components/Table/Table.stories.d.ts +13 -0
  130. package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
  131. package/lib/components/Tabs/Tabs.stories.d.ts +9 -0
  132. package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
  133. package/lib/components/Toast/Toast.stories.d.ts +6 -0
  134. package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
  135. package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
  136. package/lib/components/ToggleSwitch/ToggleSwitch.d.ts +10 -0
  137. package/lib/components/ToggleSwitch/index.d.ts +1 -0
  138. package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
  139. package/lib/components/Typography/Typography.stories.d.ts +10 -0
  140. package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
  141. package/lib/index.d.ts +140 -29
  142. package/lib/index.esm.js +15628 -5724
  143. package/lib/index.esm.js.map +1 -1
  144. package/lib/index.js +15625 -5718
  145. package/lib/index.js.map +1 -1
  146. package/lib/tsconfig.tsbuildinfo +1 -1
  147. package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
  148. package/lib/utils/compareArrays/compareArrays.stories.d.ts +6 -0
  149. package/lib/utils/compareObjects/compareObjects.stories.d.ts +6 -0
  150. package/lib/utils/debounce/debounce.stories.d.ts +6 -0
  151. package/lib/utils/ffID/ffID.stories.d.ts +6 -0
  152. package/lib/utils/find/findAndInsert.d.ts +7 -0
  153. package/lib/utils/find/findAndInsert.stories.d.ts +7 -0
  154. package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
  155. package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
  156. package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
  157. package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
  158. package/lib/utils/throttle/throttle.stories.d.ts +6 -0
  159. package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
  160. package/package.json +12 -12
  161. package/src/StyleGuide/ColorPalette/colorPaletteList.ts +10 -0
  162. package/src/assets/Themes/BaseTheme.scss +17 -23
  163. package/src/assets/Themes/DarkTheme.scss +25 -38
  164. package/src/assets/icons/apk_file_type.svg +4 -0
  165. package/src/assets/icons/compressed_file_type.svg +4 -0
  166. package/src/assets/icons/csv_file_type.svg +4 -0
  167. package/src/assets/icons/excel_corner_menu.svg +3 -0
  168. package/src/assets/icons/formula_icon.svg +3 -0
  169. package/src/assets/icons/gif_file_type.svg +4 -0
  170. package/src/assets/icons/html_file_type.svg +4 -0
  171. package/src/assets/icons/ipk_file_type.svg +4 -0
  172. package/src/assets/icons/jpg_file_type.svg +4 -0
  173. package/src/assets/icons/json_file_type.svg +4 -0
  174. package/src/assets/icons/pdf_file_type.svg +4 -0
  175. package/src/assets/icons/png_file_type.svg +4 -0
  176. package/src/assets/icons/quick_run_setting_icon.svg +5 -0
  177. package/src/assets/icons/run_automation_scripts_icon.svg +33 -0
  178. package/src/assets/icons/run_manual_testcase_icon.svg +4 -0
  179. package/src/assets/icons/search.svg +2 -2
  180. package/src/assets/icons/txt_file_type.svg +4 -0
  181. package/src/assets/icons/xls_file_type.svg +4 -0
  182. package/src/assets/icons/xlsx_file_type.svg +4 -0
  183. package/src/assets/icons/xml_file_type.svg +4 -0
  184. package/src/components/AddResourceButton/AddButton.tsx +7 -7
  185. package/src/components/AddResourceButton/type.ts +1 -1
  186. package/src/components/AttachmentButton/AttachmentButton.scss +1 -1
  187. package/src/components/AttachmentButton/AttachmentButton.stories.tsx +1 -0
  188. package/src/components/Button/Button.scss +22 -20
  189. package/src/components/Button/Button.tsx +8 -1
  190. package/src/components/Drawer/Drawer.scss +4 -3
  191. package/src/components/Drawer/Drawer.tsx +14 -18
  192. package/src/components/Drawer/Types.ts +4 -0
  193. package/src/components/Editor/Editor.tsx +224 -193
  194. package/src/components/Editor/types.ts +1 -5
  195. package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.scss +39 -0
  196. package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.tsx +51 -0
  197. package/src/components/Excel/ExcelFile/ExcelFile.tsx +7 -8
  198. package/src/components/Excel/ExcelFile/ExcelFileComponents/Cell.tsx +35 -0
  199. package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +44 -7
  200. package/src/components/Excel/ExcelFile/ExcelFileComponents/CornerIndicator.tsx +8 -1
  201. package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +45 -6
  202. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +37 -2
  203. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +69 -24
  204. package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +59 -0
  205. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/engine.ts +18 -65
  206. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/formula.ts +5 -110
  207. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-graph.ts +0 -2
  208. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducer.ts +105 -1
  209. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +670 -673
  210. package/src/components/Excel/ExcelFile/ExcelFileComponents/types.ts +38 -2
  211. package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +0 -4
  212. package/src/components/FileDropzone/FileDropzone.scss +4 -2
  213. package/src/components/FileDropzone/FileDropzone.tsx +1 -1
  214. package/src/components/FileDropzone/FilePreview.tsx +3 -1
  215. package/src/components/Form/Form.scss +2 -0
  216. package/src/components/Form/Form.stories.tsx +195 -6
  217. package/src/components/Form/Forms.tsx +15 -8
  218. package/src/components/Icon/iconList.ts +46 -0
  219. package/src/components/IconRadioGroup/IconRadioGroup.scss +3 -0
  220. package/src/components/IconRadioGroup/IconRadioGroup.tsx +20 -17
  221. package/src/components/Input/Input.scss +14 -15
  222. package/src/components/Input/Input.stories.tsx +2 -1
  223. package/src/components/InputWithDropdown/InputWithDropdown.scss +12 -13
  224. package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +3 -2
  225. package/src/components/InputWithDropdown/InputWithDropdown.tsx +22 -19
  226. package/src/components/MenuOption/MenuOption.scss +11 -10
  227. package/src/components/MenuOption/MenuOption.stories.tsx +51 -232
  228. package/src/components/MenuOption/MenuOption.tsx +131 -52
  229. package/src/components/MenuOption/types.ts +55 -14
  230. package/src/components/MiniModal/MiniModal.stories.tsx +2 -3
  231. package/src/components/MultiSelect/Dropdown.tsx +11 -12
  232. package/src/components/MultiSelect/MultiSelect.scss +1 -0
  233. package/src/components/MultiSelect/MultiSelect.stories.tsx +45 -10
  234. package/src/components/MultiSelect/MultiSelect.tsx +29 -13
  235. package/src/components/MultiSelect/MultiSelectTypes.ts +7 -5
  236. package/src/components/MultiSelect/dropdownTypes.ts +2 -0
  237. package/src/components/RadioButton/RadioButton.scss +3 -1
  238. package/src/components/RadioButton/RadioButton.tsx +3 -1
  239. package/src/components/RadioButton/radioButtonTypes.tsx +5 -1
  240. package/src/components/Search/Search.scss +25 -6
  241. package/src/components/Search/Search.tsx +45 -24
  242. package/src/components/Select/Select.scss +12 -12
  243. package/src/components/Select/Select.stories.tsx +2 -0
  244. package/src/components/Select/Select.tsx +11 -5
  245. package/src/components/Select/components/Dropdown.scss +2 -0
  246. package/src/components/Select/components/Dropdown.tsx +19 -4
  247. package/src/components/Select/components/types.ts +4 -2
  248. package/src/components/StatusButton/StatusButton.tsx +26 -20
  249. package/src/components/Table/Table.scss +1 -3
  250. package/src/components/Table/Table.stories.tsx +1 -0
  251. package/src/components/Table/Table.tsx +7 -3
  252. package/src/components/ToggleSwitch/ToggleSwitch.scss +59 -0
  253. package/src/components/ToggleSwitch/ToggleSwitch.stories.tsx +52 -0
  254. package/src/components/ToggleSwitch/ToggleSwitch.tsx +30 -0
  255. package/src/components/ToggleSwitch/index.ts +1 -0
  256. package/src/hooks/useFileDropzone.tsx +1 -0
  257. package/src/index.ts +7 -3
  258. package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
  259. package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
  260. package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
  261. package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
  262. package/src/components/Excel/ContextMenu/ContextMenu.scss +0 -99
  263. package/src/components/Excel/ContextMenu/ContextMenu.tsx +0 -103
@@ -1 +1 @@
1
- {"root":["../src/index.ts","../src/styleguide/colorpalette/colorpalette.tsx","../src/styleguide/colorpalette/colorpalettelist.ts","../src/styleguide/colorpalette/index.ts","../src/styleguide/colorpalette/types.ts","../src/styleguide/typography/typography.tsx","../src/styleguide/typography/typographylist.ts","../src/styleguide/typography/types.ts","../src/assets/utils/functionutils.ts","../src/components/accordion/accordion.tsx","../src/components/accordion/index.ts","../src/components/accordion/types.ts","../src/components/addresourcebutton/addbutton.tsx","../src/components/addresourcebutton/index.ts","../src/components/addresourcebutton/type.ts","../src/components/addresourcebutton/arrowsbutton/arrowsbutton.tsx","../src/components/allprojectsdropdown/allprojectsdropdown.tsx","../src/components/allprojectsdropdown/index.ts","../src/components/allprojectsdropdown/types.ts","../src/components/appheader/appheader.tsx","../src/components/appheader/index.ts","../src/components/appheader/types.ts","../src/components/attachimage/attachimage.tsx","../src/components/attachimage/index.ts","../src/components/attachimage/types.ts","../src/components/attachmentbutton/attachmentbutton.tsx","../src/components/attachmentbutton/index.ts","../src/components/attachmentbutton/types.ts","../src/components/avatar/avatar.tsx","../src/components/avatar/index.ts","../src/components/avatar/types.ts","../src/components/button/button.tsx","../src/components/button/index.ts","../src/components/button/types.ts","../src/components/charts/barchart/barchart.tsx","../src/components/charts/barchart/index.ts","../src/components/charts/barchart/types.ts","../src/components/charts/dashboarddonutchart/dashboarddonutchart.tsx","../src/components/charts/dashboarddonutchart/index.ts","../src/components/charts/dashboarddonutchart/types.ts","../src/components/charts/donutchart/donutchart.tsx","../src/components/charts/donutchart/index.ts","../src/components/charts/donutchart/type.ts","../src/components/charts/iconradialchart/iconradialchart.tsx","../src/components/charts/iconradialchart/index.ts","../src/components/charts/iconradialchart/types.ts","../src/components/charts/linechart/linechart.tsx","../src/components/charts/linechart/index.ts","../src/components/charts/linechart/types.ts","../src/components/charts/multiradialchart/multiradialchart.tsx","../src/components/charts/multiradialchart/index.ts","../src/components/charts/multiradialchart/types.ts","../src/components/charts/piechart/piechart.tsx","../src/components/charts/piechart/index.ts","../src/components/charts/piechart/types.ts","../src/components/charts/radialchart/radialchart.tsx","../src/components/charts/radialchart/index.ts","../src/components/charts/radialchart/types.ts","../src/components/checkbox/checkbox.tsx","../src/components/checkbox/index.ts","../src/components/checkbox/types.ts","../src/components/chip/chip.tsx","../src/components/chip/index.ts","../src/components/chip/types.ts","../src/components/connectingbranch/connectingbranch.tsx","../src/components/connectingbranch/data.ts","../src/components/connectingbranch/index.ts","../src/components/connectingbranch/types.ts","../src/components/connectingbranch/branchcomponents/machineinstances.tsx","../src/components/datepicker/datepicker.tsx","../src/components/datepicker/timepicker.tsx","../src/components/datepicker/index.ts","../src/components/datepicker/types.ts","../src/components/draganddrop/draganddrop.ts","../src/components/draganddrop/draganddroplist.tsx","../src/components/draganddrop/index.ts","../src/components/drawer/drawer.tsx","../src/components/drawer/types.ts","../src/components/drawer/index.ts","../src/components/edittextfield/edittextfield.tsx","../src/components/edittextfield/index.ts","../src/components/edittextfield/types.ts","../src/components/editor/editor.tsx","../src/components/editor/variabledropdown.tsx","../src/components/editor/constants.ts","../src/components/editor/index.ts","../src/components/editor/types.ts","../src/components/excel/types.ts","../src/components/excel/index.ts","../src/components/excel/colorbarselector/colorbarselector.tsx","../src/components/excel/contextmenu/contextmenu.tsx","../src/components/excel/excelfile/excelfile.tsx","../src/components/excel/excelfile/excelfilecomponents/activecell.tsx","../src/components/excel/excelfile/excelfilecomponents/cell.tsx","../src/components/excel/excelfile/excelfilecomponents/columnindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/copied.tsx","../src/components/excel/excelfile/excelfilecomponents/cornerindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/dataeditor.tsx","../src/components/excel/excelfile/excelfilecomponents/dataviewer.tsx","../src/components/excel/excelfile/excelfilecomponents/floatingrect.tsx","../src/components/excel/excelfile/excelfilecomponents/headerrow.tsx","../src/components/excel/excelfile/excelfilecomponents/row.tsx","../src/components/excel/excelfile/excelfilecomponents/rowindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/selected.tsx","../src/components/excel/excelfile/excelfilecomponents/spreadsheet.tsx","../src/components/excel/excelfile/excelfilecomponents/table.tsx","../src/components/excel/excelfile/excelfilecomponents/actions.ts","../src/components/excel/excelfile/excelfilecomponents/aremodelsequal.ts","../src/components/excel/excelfile/excelfilecomponents/context.ts","../src/components/excel/excelfile/excelfilecomponents/index.ts","../src/components/excel/excelfile/excelfilecomponents/matrix.ts","../src/components/excel/excelfile/excelfilecomponents/point-range.ts","../src/components/excel/excelfile/excelfilecomponents/point.ts","../src/components/excel/excelfile/excelfilecomponents/reducer.ts","../src/components/excel/excelfile/excelfilecomponents/reducerfunctions.ts","../src/components/excel/excelfile/excelfilecomponents/selection.ts","../src/components/excel/excelfile/excelfilecomponents/types.ts","../src/components/excel/excelfile/excelfilecomponents/use-dispatch.ts","../src/components/excel/excelfile/excelfilecomponents/use-selector.ts","../src/components/excel/excelfile/excelfilecomponents/util.ts","../src/components/excel/excelfile/excelfilecomponents/engine/engine.ts","../src/components/excel/excelfile/excelfilecomponents/engine/formula.ts","../src/components/excel/excelfile/excelfilecomponents/engine/index.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-graph.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-hash.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-set.ts","../src/components/excel/excelfile/excelfilecomponents/typings/fast-formula-parser.d.ts","../src/components/excel/exceltoolbar/exceltoolbar.tsx","../src/components/expandablemenu/expandablemenu.tsx","../src/components/expandablemenu/index.ts","../src/components/expandablemenu/types.ts","../src/components/ff_captcha/recaptcha.tsx","../src/components/ff_captcha/index.ts","../src/components/ff_captcha/types.ts","../src/components/filedropzone/dropzone.tsx","../src/components/filedropzone/filedropzone.tsx","../src/components/filedropzone/filepreview.tsx","../src/components/filedropzone/index.ts","../src/components/filedropzone/types.ts","../src/components/form/form.ts","../src/components/form/forms.tsx","../src/components/form/index.ts","../src/components/form/types.ts","../src/components/gridlayout/gridlayout.tsx","../src/components/gridlayout/index.ts","../src/components/gridlayout/types.ts","../src/components/highlighttext/highlighttext.tsx","../src/components/highlighttext/index.ts","../src/components/highlighttext/types.ts","../src/components/icon/icon.tsx","../src/components/icon/iconlist.ts","../src/components/icon/index.ts","../src/components/icon/types.ts","../src/components/iconbutton/iconbutton.tsx","../src/components/iconbutton/index.ts","../src/components/iconbutton/types.ts","../src/components/iconradiogroup/iconradiogroup.tsx","../src/components/iconradiogroup/index.ts","../src/components/iconradiogroup/type.ts","../src/components/input/input.tsx","../src/components/input/index.ts","../src/components/input/types.ts","../src/components/inputwithdropdown/inputwithdropdown.tsx","../src/components/inputwithdropdown/index.ts","../src/components/inputwithdropdown/types.ts","../src/components/labeledittextfield/labeledittextfield.tsx","../src/components/labeledittextfield/index.ts","../src/components/labeledittextfield/types.ts","../src/components/lazyload/lazyload.ts","../src/components/lazyload/lazyloading.tsx","../src/components/lazyload/index.ts","../src/components/machineinputfield/machineinputfield.tsx","../src/components/machineinputfield/index.ts","../src/components/machineinputfield/types.ts","../src/components/menuoption/menuoption.tsx","../src/components/menuoption/index.ts","../src/components/menuoption/types.ts","../src/components/minimodal/minimodal.tsx","../src/components/minimodal/index.ts","../src/components/minimodal/types.ts","../src/components/modal/modal.tsx","../src/components/modal/index.tsx","../src/components/modal/types.ts","../src/components/moduleschip/modulechip.tsx","../src/components/moduleschip/index.ts","../src/components/moduleschip/types.ts","../src/components/multiselect/dropdown.tsx","../src/components/multiselect/multiselect.tsx","../src/components/multiselect/multiselecttypes.ts","../src/components/multiselect/dropdowntypes.ts","../src/components/multiselect/index.ts","../src/components/nlpinput/nlpinput.tsx","../src/components/nlpinput/index.ts","../src/components/nlpinput/type.tsx","../src/components/nlpinput/components/nlpdropdown/nlpdropdowntype.ts","../src/components/nlpinput/components/nlpdropdown/nlpdropdown.tsx","../src/components/paper/paper.tsx","../src/components/paper/index.ts","../src/components/paper/types.ts","../src/components/radiobutton/radiobutton.tsx","../src/components/radiobutton/index.ts","../src/components/radiobutton/radiobuttontypes.tsx","../src/components/radiogroup/radiogroup.tsx","../src/components/radiogroup/index.ts","../src/components/radiogroup/radiogrouptypes.tsx","../src/components/search/search.tsx","../src/components/search/index.ts","../src/components/search/types.ts","../src/components/select/select.tsx","../src/components/select/index.ts","../src/components/select/types.ts","../src/components/select/components/dropdown.tsx","../src/components/select/components/types.ts","../src/components/sequentialconnectingbranch/sequentialconnectingbranch.tsx","../src/components/sequentialconnectingbranch/index.ts","../src/components/sequentialconnectingbranch/types.ts","../src/components/sequentialconnectingbranch/components/addbrowsermodal/addbrowsermodal.tsx","../src/components/sequentialconnectingbranch/components/addbrowsermodal/types.ts","../src/components/sequentialconnectingbranch/components/branches/branches.tsx","../src/components/sequentialconnectingbranch/components/branches/types.ts","../src/components/sequentialconnectingbranch/components/connectingbranches/connectingbranches.tsx","../src/components/sequentialconnectingbranch/components/connectingbranches/types.ts","../src/components/sequentialconnectingbranch/components/datasetlistmodal/datasetlistmodal.tsx","../src/components/sequentialconnectingbranch/components/datasetlistmodal/types.ts","../src/components/statedropdown/statedropdown.tsx","../src/components/statedropdown/statedropdowntypes.tsx","../src/components/statedropdown/index.ts","../src/components/statusbutton/statusbutton.tsx","../src/components/statusbutton/index.ts","../src/components/statusbutton/types.ts","../src/components/statuscard/statuscard.tsx","../src/components/statuscard/index.ts","../src/components/statuscard/types.ts","../src/components/table/table.tsx","../src/components/table/types.ts","../src/components/table/index.ts","../src/components/tabletree/tabletree.tsx","../src/components/tabletree/data.ts","../src/components/tabletree/index.ts","../src/components/tabs/tabs.tsx","../src/components/tabs/index.ts","../src/components/tabs/types.ts","../src/components/textarea/textarea.tsx","../src/components/textarea/types.ts","../src/components/textarea/index.tsx","../src/components/themeprovider/themeprovider.tsx","../src/components/themeprovider/index.ts","../src/components/themeprovider/types.ts","../src/components/toast/toast.tsx","../src/components/toast/index.ts","../src/components/toast/types.ts","../src/components/toastify/toastify.tsx","../src/components/toastify/index.ts","../src/components/toastify/types.ts","../src/components/toggle/toggle.tsx","../src/components/toggle/index.ts","../src/components/toggle/types.ts","../src/components/tooltip/tooltip.tsx","../src/components/tooltip/index.ts","../src/components/tooltip/types.ts","../src/components/typography/typography.tsx","../src/components/typography/index.ts","../src/components/typography/types.ts","../src/components/variableinput/variableinput.tsx","../src/components/variableinput/index.ts","../src/components/variableinput/types.ts","../src/hooks/useclickoutside.tsx","../src/hooks/usefiledropzone.tsx","../src/hooks/useportalposition.tsx","../src/hooks/usetheme.tsx","../src/hooks/keyboardevents/useesckeyevent.tsx","../src/utils/tablecell/tablecell.ts","../src/utils/checkempty/checkempty.ts","../src/utils/comparearrays/comparearrays.ts","../src/utils/compareobjects/compareobjects.ts","../src/utils/debounce/debounce.ts","../src/utils/downloadfile/savefilefromblob.ts","../src/utils/ffid/ffid.ts","../src/utils/findandinsert/findandinsert.ts","../src/utils/getencrypteddata/getencrypteddata.ts","../src/utils/getextension/getextension.ts","../src/utils/getselectoptionvalue/getselectoptionvalue.ts","../src/utils/getsequentialpayload/getsequentialpayload.ts","../src/utils/getsequentialpayload/types.ts","../src/utils/throttle/throttle.ts","../src/utils/truncatetext/truncatetext.ts"],"version":"5.6.3"}
1
+ {"root":["../src/index.ts","../src/styleguide/colorpalette/colorpalette.tsx","../src/styleguide/colorpalette/colorpalettelist.ts","../src/styleguide/colorpalette/index.ts","../src/styleguide/colorpalette/types.ts","../src/styleguide/typography/typography.tsx","../src/styleguide/typography/typographylist.ts","../src/styleguide/typography/types.ts","../src/assets/utils/functionutils.ts","../src/components/accordion/accordion.tsx","../src/components/accordion/index.ts","../src/components/accordion/types.ts","../src/components/addresourcebutton/addbutton.tsx","../src/components/addresourcebutton/index.ts","../src/components/addresourcebutton/type.ts","../src/components/addresourcebutton/arrowsbutton/arrowsbutton.tsx","../src/components/allprojectsdropdown/allprojectsdropdown.tsx","../src/components/allprojectsdropdown/index.ts","../src/components/allprojectsdropdown/types.ts","../src/components/appheader/appheader.tsx","../src/components/appheader/index.ts","../src/components/appheader/types.ts","../src/components/attachimage/attachimage.tsx","../src/components/attachimage/index.ts","../src/components/attachimage/types.ts","../src/components/attachmentbutton/attachmentbutton.tsx","../src/components/attachmentbutton/index.ts","../src/components/attachmentbutton/types.ts","../src/components/avatar/avatar.tsx","../src/components/avatar/index.ts","../src/components/avatar/types.ts","../src/components/button/button.tsx","../src/components/button/index.ts","../src/components/button/types.ts","../src/components/charts/barchart/barchart.tsx","../src/components/charts/barchart/index.ts","../src/components/charts/barchart/types.ts","../src/components/charts/dashboarddonutchart/dashboarddonutchart.tsx","../src/components/charts/dashboarddonutchart/index.ts","../src/components/charts/dashboarddonutchart/types.ts","../src/components/charts/donutchart/donutchart.tsx","../src/components/charts/donutchart/index.ts","../src/components/charts/donutchart/type.ts","../src/components/charts/iconradialchart/iconradialchart.tsx","../src/components/charts/iconradialchart/index.ts","../src/components/charts/iconradialchart/types.ts","../src/components/charts/linechart/linechart.tsx","../src/components/charts/linechart/index.ts","../src/components/charts/linechart/types.ts","../src/components/charts/multiradialchart/multiradialchart.tsx","../src/components/charts/multiradialchart/index.ts","../src/components/charts/multiradialchart/types.ts","../src/components/charts/piechart/piechart.tsx","../src/components/charts/piechart/index.ts","../src/components/charts/piechart/types.ts","../src/components/charts/radialchart/radialchart.tsx","../src/components/charts/radialchart/index.ts","../src/components/charts/radialchart/types.ts","../src/components/checkbox/checkbox.tsx","../src/components/checkbox/index.ts","../src/components/checkbox/types.ts","../src/components/chip/chip.tsx","../src/components/chip/index.ts","../src/components/chip/types.ts","../src/components/connectingbranch/connectingbranch.tsx","../src/components/connectingbranch/data.ts","../src/components/connectingbranch/index.ts","../src/components/connectingbranch/types.ts","../src/components/connectingbranch/branchcomponents/machineinstances.tsx","../src/components/datepicker/datepicker.tsx","../src/components/datepicker/timepicker.tsx","../src/components/datepicker/index.ts","../src/components/datepicker/types.ts","../src/components/draganddrop/draganddrop.ts","../src/components/draganddrop/draganddroplist.tsx","../src/components/draganddrop/index.ts","../src/components/drawer/drawer.tsx","../src/components/drawer/types.ts","../src/components/drawer/index.ts","../src/components/edittextfield/edittextfield.tsx","../src/components/edittextfield/index.ts","../src/components/edittextfield/types.ts","../src/components/editor/editor.tsx","../src/components/editor/variabledropdown.tsx","../src/components/editor/constants.ts","../src/components/editor/index.ts","../src/components/editor/types.ts","../src/components/excel/types.ts","../src/components/excel/index.ts","../src/components/excel/colorbarselector/colorbarselector.tsx","../src/components/excel/excelcontextmenu/excelcontextmenu.tsx","../src/components/excel/excelfile/excelfile.tsx","../src/components/excel/excelfile/excelfilecomponents/activecell.tsx","../src/components/excel/excelfile/excelfilecomponents/cell.tsx","../src/components/excel/excelfile/excelfilecomponents/columnindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/copied.tsx","../src/components/excel/excelfile/excelfilecomponents/cornerindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/dataeditor.tsx","../src/components/excel/excelfile/excelfilecomponents/dataviewer.tsx","../src/components/excel/excelfile/excelfilecomponents/floatingrect.tsx","../src/components/excel/excelfile/excelfilecomponents/headerrow.tsx","../src/components/excel/excelfile/excelfilecomponents/row.tsx","../src/components/excel/excelfile/excelfilecomponents/rowindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/selected.tsx","../src/components/excel/excelfile/excelfilecomponents/spreadsheet.tsx","../src/components/excel/excelfile/excelfilecomponents/table.tsx","../src/components/excel/excelfile/excelfilecomponents/actions.ts","../src/components/excel/excelfile/excelfilecomponents/aremodelsequal.ts","../src/components/excel/excelfile/excelfilecomponents/context.ts","../src/components/excel/excelfile/excelfilecomponents/index.ts","../src/components/excel/excelfile/excelfilecomponents/matrix.ts","../src/components/excel/excelfile/excelfilecomponents/point-range.ts","../src/components/excel/excelfile/excelfilecomponents/point.ts","../src/components/excel/excelfile/excelfilecomponents/reducer.ts","../src/components/excel/excelfile/excelfilecomponents/reducerfunctions.ts","../src/components/excel/excelfile/excelfilecomponents/selection.ts","../src/components/excel/excelfile/excelfilecomponents/types.ts","../src/components/excel/excelfile/excelfilecomponents/use-dispatch.ts","../src/components/excel/excelfile/excelfilecomponents/use-selector.ts","../src/components/excel/excelfile/excelfilecomponents/util.ts","../src/components/excel/excelfile/excelfilecomponents/engine/engine.ts","../src/components/excel/excelfile/excelfilecomponents/engine/formula.ts","../src/components/excel/excelfile/excelfilecomponents/engine/index.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-graph.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-hash.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-set.ts","../src/components/excel/excelfile/excelfilecomponents/typings/fast-formula-parser.d.ts","../src/components/excel/exceltoolbar/exceltoolbar.tsx","../src/components/expandablemenu/expandablemenu.tsx","../src/components/expandablemenu/index.ts","../src/components/expandablemenu/types.ts","../src/components/ff_captcha/recaptcha.tsx","../src/components/ff_captcha/index.ts","../src/components/ff_captcha/types.ts","../src/components/filedropzone/dropzone.tsx","../src/components/filedropzone/filedropzone.tsx","../src/components/filedropzone/filepreview.tsx","../src/components/filedropzone/index.ts","../src/components/filedropzone/types.ts","../src/components/form/form.ts","../src/components/form/forms.tsx","../src/components/form/index.ts","../src/components/form/types.ts","../src/components/gridlayout/gridlayout.tsx","../src/components/gridlayout/index.ts","../src/components/gridlayout/types.ts","../src/components/highlighttext/highlighttext.tsx","../src/components/highlighttext/index.ts","../src/components/highlighttext/types.ts","../src/components/icon/icon.tsx","../src/components/icon/iconlist.ts","../src/components/icon/index.ts","../src/components/icon/types.ts","../src/components/iconbutton/iconbutton.tsx","../src/components/iconbutton/index.ts","../src/components/iconbutton/types.ts","../src/components/iconradiogroup/iconradiogroup.tsx","../src/components/iconradiogroup/index.ts","../src/components/iconradiogroup/type.ts","../src/components/input/input.tsx","../src/components/input/index.ts","../src/components/input/types.ts","../src/components/inputwithdropdown/inputwithdropdown.tsx","../src/components/inputwithdropdown/index.ts","../src/components/inputwithdropdown/types.ts","../src/components/labeledittextfield/labeledittextfield.tsx","../src/components/labeledittextfield/index.ts","../src/components/labeledittextfield/types.ts","../src/components/lazyload/lazyload.ts","../src/components/lazyload/lazyloading.tsx","../src/components/lazyload/index.ts","../src/components/machineinputfield/machineinputfield.tsx","../src/components/machineinputfield/index.ts","../src/components/machineinputfield/types.ts","../src/components/menuoption/menuoption.tsx","../src/components/menuoption/index.ts","../src/components/menuoption/types.ts","../src/components/minimodal/minimodal.tsx","../src/components/minimodal/index.ts","../src/components/minimodal/types.ts","../src/components/modal/modal.tsx","../src/components/modal/index.tsx","../src/components/modal/types.ts","../src/components/moduleschip/modulechip.tsx","../src/components/moduleschip/index.ts","../src/components/moduleschip/types.ts","../src/components/multiselect/dropdown.tsx","../src/components/multiselect/multiselect.tsx","../src/components/multiselect/multiselecttypes.ts","../src/components/multiselect/dropdowntypes.ts","../src/components/multiselect/index.ts","../src/components/nlpinput/nlpinput.tsx","../src/components/nlpinput/index.ts","../src/components/nlpinput/type.tsx","../src/components/nlpinput/components/nlpdropdown/nlpdropdowntype.ts","../src/components/nlpinput/components/nlpdropdown/nlpdropdown.tsx","../src/components/paper/paper.tsx","../src/components/paper/index.ts","../src/components/paper/types.ts","../src/components/radiobutton/radiobutton.tsx","../src/components/radiobutton/index.ts","../src/components/radiobutton/radiobuttontypes.tsx","../src/components/radiogroup/radiogroup.tsx","../src/components/radiogroup/index.ts","../src/components/radiogroup/radiogrouptypes.tsx","../src/components/search/search.tsx","../src/components/search/index.ts","../src/components/search/types.ts","../src/components/select/select.tsx","../src/components/select/index.ts","../src/components/select/types.ts","../src/components/select/components/dropdown.tsx","../src/components/select/components/types.ts","../src/components/sequentialconnectingbranch/sequentialconnectingbranch.tsx","../src/components/sequentialconnectingbranch/index.ts","../src/components/sequentialconnectingbranch/types.ts","../src/components/sequentialconnectingbranch/components/addbrowsermodal/addbrowsermodal.tsx","../src/components/sequentialconnectingbranch/components/addbrowsermodal/types.ts","../src/components/sequentialconnectingbranch/components/branches/branches.tsx","../src/components/sequentialconnectingbranch/components/branches/types.ts","../src/components/sequentialconnectingbranch/components/connectingbranches/connectingbranches.tsx","../src/components/sequentialconnectingbranch/components/connectingbranches/types.ts","../src/components/sequentialconnectingbranch/components/datasetlistmodal/datasetlistmodal.tsx","../src/components/sequentialconnectingbranch/components/datasetlistmodal/types.ts","../src/components/statedropdown/statedropdown.tsx","../src/components/statedropdown/statedropdowntypes.tsx","../src/components/statedropdown/index.ts","../src/components/statusbutton/statusbutton.tsx","../src/components/statusbutton/index.ts","../src/components/statusbutton/types.ts","../src/components/statuscard/statuscard.tsx","../src/components/statuscard/index.ts","../src/components/statuscard/types.ts","../src/components/table/table.tsx","../src/components/table/types.ts","../src/components/table/index.ts","../src/components/tabletree/tabletree.tsx","../src/components/tabletree/data.ts","../src/components/tabletree/index.ts","../src/components/tabs/tabs.tsx","../src/components/tabs/index.ts","../src/components/tabs/types.ts","../src/components/textarea/textarea.tsx","../src/components/textarea/types.ts","../src/components/textarea/index.tsx","../src/components/themeprovider/themeprovider.tsx","../src/components/themeprovider/index.ts","../src/components/themeprovider/types.ts","../src/components/toast/toast.tsx","../src/components/toast/index.ts","../src/components/toast/types.ts","../src/components/toastify/toastify.tsx","../src/components/toastify/index.ts","../src/components/toastify/types.ts","../src/components/toggle/toggle.tsx","../src/components/toggle/index.ts","../src/components/toggle/types.ts","../src/components/toggleswitch/toggleswitch.tsx","../src/components/toggleswitch/index.ts","../src/components/tooltip/tooltip.tsx","../src/components/tooltip/index.ts","../src/components/tooltip/types.ts","../src/components/typography/typography.tsx","../src/components/typography/index.ts","../src/components/typography/types.ts","../src/components/variableinput/variableinput.tsx","../src/components/variableinput/index.ts","../src/components/variableinput/types.ts","../src/hooks/useclickoutside.tsx","../src/hooks/usefiledropzone.tsx","../src/hooks/useportalposition.tsx","../src/hooks/usetheme.tsx","../src/hooks/keyboardevents/useesckeyevent.tsx","../src/utils/tablecell/tablecell.ts","../src/utils/checkempty/checkempty.ts","../src/utils/comparearrays/comparearrays.ts","../src/utils/compareobjects/compareobjects.ts","../src/utils/debounce/debounce.ts","../src/utils/downloadfile/savefilefromblob.ts","../src/utils/ffid/ffid.ts","../src/utils/findandinsert/findandinsert.ts","../src/utils/getencrypteddata/getencrypteddata.ts","../src/utils/getextension/getextension.ts","../src/utils/getselectoptionvalue/getselectoptionvalue.ts","../src/utils/getsequentialpayload/getsequentialpayload.ts","../src/utils/getsequentialpayload/types.ts","../src/utils/throttle/throttle.ts","../src/utils/truncatetext/truncatetext.ts"],"version":"5.6.3"}
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (value: any) => boolean;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (arr1: unknown[], arr2: unknown[]) => boolean;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (obj1: import("./compareObjects").AnyObject | null, obj2: import("./compareObjects").AnyObject | null) => boolean;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (func: (...args: any[]) => void, delay: number) => import("./debounce").DebouncedFunction;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { ffid } from './ffid';
3
+ declare const meta: Meta<typeof ffid>;
4
+ type Story = StoryObj;
5
+ export declare const Primary: Story;
6
+ export default meta;
@@ -0,0 +1,7 @@
1
+ export type AnyObject = {
2
+ id: number;
3
+ [key: string]: any;
4
+ };
5
+ export declare function findAndInsert<T extends AnyObject>(data: T[], key: keyof T, targetId: number, newEntry: T, insertPosition: 'above' | 'below' | 'replace', childrenKey?: string): {
6
+ updatedArray: T[];
7
+ } | null;
@@ -0,0 +1,7 @@
1
+ import { findAndInsert } from './findAndInsert';
2
+ declare const _default: {
3
+ title: string;
4
+ component: typeof findAndInsert;
5
+ };
6
+ export default _default;
7
+ export declare const InteractivePlayground: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,7 @@
1
+ import { findAndInsert } from './findAndInsert';
2
+ declare const _default: {
3
+ title: string;
4
+ component: typeof findAndInsert;
5
+ };
6
+ export default _default;
7
+ export declare const InteractivePlayground: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (data: string, publicKey: string) => string | false;
4
+ };
5
+ export default _default;
6
+ export declare const InteractivePlayground: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (value: string | File) => string | undefined;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import type { Meta, StoryObj } from '@storybook/react';
3
+ import { MachineExecutionInstanceDataSet } from './types';
4
+ declare const SequentialPayloadComponent: React.FC<{
5
+ machineInstances: MachineExecutionInstanceDataSet[];
6
+ }>;
7
+ declare const meta: Meta<typeof SequentialPayloadComponent>;
8
+ type Story = StoryObj<typeof SequentialPayloadComponent>;
9
+ export declare const Primary: Story;
10
+ export default meta;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (func: (...args: any[]) => void, limit: number) => import("./throttle").ThrottledFunction;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (text: string, maxLength: number) => string;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pixel-react",
3
3
  "description": "Great for pixel-perfect, design-focused components in React",
4
- "version": "1.4.3",
4
+ "version": "1.4.5",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.esm.js",
7
7
  "types": "lib/index.d.ts",
@@ -17,18 +17,19 @@
17
17
  "@rollup/plugin-node-resolve": "^15.2.3",
18
18
  "@rollup/plugin-typescript": "^12.1.1",
19
19
  "@rollup/plugin-url": "^8.0.2",
20
- "@storybook/addon-docs": "^8.4.2",
21
- "@storybook/addon-essentials": "^8.4.2",
22
- "@storybook/addon-interactions": "^8.4.2",
23
- "@storybook/addon-links": "^8.4.2",
24
- "@storybook/addon-onboarding": "^8.4.2",
25
- "@storybook/blocks": "^8.4.2",
26
- "@storybook/react": "^8.4.2",
27
- "@storybook/react-vite": "^8.4.2",
28
- "@storybook/test": "^8.4.2",
20
+ "@storybook/addon-docs": "^8.4.5",
21
+ "@storybook/addon-essentials": "^8.4.5",
22
+ "@storybook/addon-interactions": "^8.4.5",
23
+ "@storybook/addon-links": "^8.4.5",
24
+ "@storybook/addon-onboarding": "^8.4.5",
25
+ "@storybook/blocks": "^8.4.5",
26
+ "@storybook/react": "^8.4.5",
27
+ "@storybook/react-vite": "^8.4.5",
28
+ "@storybook/test": "^8.4.5",
29
29
  "@types/react": "^18.3.12",
30
30
  "@types/react-dom": "^18.3.1",
31
31
  "@types/react-google-recaptcha": "^2.1.9",
32
+ "@types/js-beautify": "^1.14.3",
32
33
  "chromatic": "^11.16.5",
33
34
  "postcss": "^8.4.35",
34
35
  "react": "^18.2.0",
@@ -39,7 +40,7 @@
39
40
  "rollup-plugin-peer-deps-external": "^2.2.4",
40
41
  "rollup-plugin-postcss": "^4.0.2",
41
42
  "sass": "^1.80.6",
42
- "storybook": "^8.3.4",
43
+ "storybook": "^8.4.5",
43
44
  "storybook-addon-theme-provider": "^0.2.6",
44
45
  "typescript": "^5.6.3",
45
46
  "vite": "^5.4.10"
@@ -66,7 +67,6 @@
66
67
  "date-fns-tz": "^3.2.0",
67
68
  "js-beautify": "^1.15.1",
68
69
  "jsencrypt": "^3.3.2",
69
- "prettier": "^3.3.3",
70
70
  "react-archer": "^4.4.0",
71
71
  "react-day-picker": "^9.2.1",
72
72
  "react-google-recaptcha": "^3.1.0",
@@ -194,6 +194,16 @@ const ColorPalette: ColorPaletteType = [
194
194
  { name: 'Card Warning Status BG Color', colorCode: '#e2750f', variable: '--ff-card-warning-status-bg-color' },
195
195
  { name: 'Card Skipped Status BG Color', colorCode: '#a83fc4', variable: '--ff-card-skipped-status-bg-color' },
196
196
  { name: 'Card Flaky Status BG Color', colorCode: '#3f5ac4', variable: '--ff-card-flaky-status-bg-color' },
197
+ {
198
+ name: 'Search filed color',
199
+ colorCode: '#F7ECF8',
200
+ variable: '--ff-search-field-hover-color',
201
+ },
202
+ {
203
+ name: 'Search filed background color',
204
+ colorCode: '#F7ECF8',
205
+ variable: '--ff-search-filed-bg-color',
206
+ },
197
207
  ];
198
208
 
199
209
  export default ColorPalette;
@@ -5,6 +5,7 @@ $base-theme: (
5
5
  text-color: #1e161f,
6
6
  description-text: #7a7a7a,
7
7
  click-able-text-color: #71347b,
8
+ custom-table-header-bg-color:#EFE1F9,
8
9
  icons-default-color: #71347b,
9
10
  border-color: #f0e7f4,
10
11
  disable-color: #71347b80,
@@ -28,37 +29,25 @@ $base-theme: (
28
29
  overlay-bg: #1e161f1a,
29
30
  chip-fill-color: #f9d5ff,
30
31
  chip-text-color: #1e161f,
31
- file-drop-zone-default-fill-color: #71347b1a,
32
- file-drop-zone-default-text-color: #1e161f,
33
- file-drop-zone-selected-fill-color: #71347b33,
34
- file-drop-zone-selected-text-color: #1e161f,
35
32
  icon-color: #71347b,
36
33
  default-icon-color: #a3a3a3,
37
34
  tree-connecting-lines-color: #d7b5e3,
38
- primary-button-color:
39
- linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%),
40
- primary-button-hover:
41
- linear-gradient(179.06deg, #8d3b9a 3.49%, #781f86 99.22%),
35
+ primary-button-color: linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%),
36
+ primary-button-hover: linear-gradient(179.06deg, #8d3b9a 3.49%, #781f86 99.22%),
42
37
  primary-button-disable: linear-gradient(180deg, #46164d 0%, #71347b 100%),
43
38
  primary-button-text-color: #ffffff,
44
39
  primary-button-border: linear-gradient(180deg, #46164d 3.04%, #71347b 100%),
45
- secondary-button-color-text:
46
- linear-gradient(179.06deg, #71347b 3.49%, #46164d 99.22%),
40
+ secondary-button-color-text: linear-gradient(179.06deg, #71347b 3.49%, #46164d 99.22%),
47
41
  secondary-button-border: linear-gradient(180deg, #46164d 3.04%, #71347b 100%),
48
42
  secondary-button-text-color: #46164d,
49
- secondary-button-hover:
50
- linear-gradient(179.06deg, #71347b0d 3.49%, #46164d0d 99.22%),
51
- tertiary-button-color:
52
- linear-gradient(179.06deg, #71347b0d 3.49%, #46164d0d 99.22%),
53
- tertiary-button-hover:
54
- linear-gradient(179.06deg, #71347b1a 3.49%, #46164d1a 99.22%),
43
+ secondary-button-hover: linear-gradient(179.06deg, #71347b0d 3.49%, #46164d0d 99.22%),
44
+ tertiary-button-color: linear-gradient(179.06deg, #71347b0d 3.49%, #46164d0d 99.22%),
45
+ tertiary-button-hover: linear-gradient(179.06deg, #71347b1a 3.49%, #46164d1a 99.22%),
55
46
  delete-button-color: linear-gradient(179.06deg, #e42525 3.49%, #c90000 99.22%),
56
47
  delete-button-border: linear-gradient(180deg, #a90707 3.04%, #e42525 100%),
57
48
  delete-button-hover: linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%),
58
- delete-button-disable:
59
- linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%),
60
- warning-button-color:
61
- linear-gradient(179.06deg, #ffc600 3.49%, #ffc600 99.22%),
49
+ delete-button-disable: linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%),
50
+ warning-button-color: linear-gradient(179.06deg, #ffc600 3.49%, #ffc600 99.22%),
62
51
  warning-button-border: linear-gradient(180deg, #eeba08 3.04%, #f1bc04 100%),
63
52
  error: #e42525,
64
53
  drawer-title-color: #252c37,
@@ -200,8 +189,7 @@ $base-theme: (
200
189
  ff-connecting-branch-scope-color: #079455,
201
190
  ff-connecting-branch-delete-color: #e42525,
202
191
  ff-app-header-menu-border-bottom-color: #ffffff,
203
- ff-app-header-submenu-border-bottom-color:
204
- linear-gradient(90deg, #592f7c 0%, #741ebb 100%),
192
+ ff-app-header-submenu-border-bottom-color: linear-gradient(90deg, #592f7c 0%, #741ebb 100%),
205
193
  ff-delete-button-attachment: #a91224,
206
194
  email-table-border-color: #959595,
207
195
 
@@ -231,13 +219,19 @@ $base-theme: (
231
219
  ff-card-warning-status-bg-color: #e2750f,
232
220
  ff-card-skipped-status-bg-color: #a83fc4,
233
221
  ff-card-flaky-status-bg-color: #3f5ac4,
222
+ ff-toggle-switch-off-color:#4B494C,
223
+ ff-toggle-switch-shadow-color:#57575780,
224
+
234
225
 
235
226
  //ExcelSheet
236
227
  excel-sheet-button-color: #e9b5ff,
237
228
  icon-hover-color: #f7ecf8,
229
+ ff-search-icon-hover-color:#F7ECF8,
230
+ ff-search-filed-bg-color:#ffffff,
238
231
  );
232
+
239
233
  :root {
240
234
  @each $key, $value in $base-theme {
241
235
  --#{$key}: #{$value};
242
236
  }
243
- }
237
+ }
@@ -4,6 +4,7 @@ $dark-theme: (
4
4
  text-color: #e8e0e9,
5
5
  description-text: #d9d9d9,
6
6
  click-able-text-color: #e8e0e9,
7
+ custom-table-header-bg-color:#EFE1F9,
7
8
  icons-default-color: #e8e0e9,
8
9
  border-color: #333234,
9
10
  disable-color: #71347b80,
@@ -27,45 +28,28 @@ $dark-theme: (
27
28
  overlay-bg: #12121299,
28
29
  chip-fill-color: #f9d5ff,
29
30
  chip-text-color: #1e161f,
30
- file-drop-zone-default-fill-color: #71347b1a,
31
- file-drop-zone-default-text-color: #1e161f,
32
- file-drop-zone-selected-fill-color: #71347b33,
33
- file-drop-zone-selected-text-color: #1e161f,
34
31
  icon-color: #71347b,
35
32
  tree-connecting-lines-color: #d7b5e3,
36
- primary-button-color:
37
- linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%),
38
- primary-button-hover:
39
- linear-gradient(188.79deg, #7c4685 2.94%, #582d5f 93.09%),
40
- primary-button-disable:
41
- linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%),
33
+ primary-button-color: linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%),
34
+ primary-button-hover: linear-gradient(188.79deg, #7c4685 2.94%, #582d5f 93.09%),
35
+ primary-button-disable: linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%),
42
36
  primary-button-text-color: #ffffff,
43
37
  primary-button-border: linear-gradient(180deg, #46164d 3.04%, #71347b 100%),
44
- secondary-button-color-text:
45
- linear-gradient(179.06deg, #71347b 3.49%, #46164d 99.22%),
38
+ secondary-button-color-text: linear-gradient(179.06deg, #71347b 3.49%, #46164d 99.22%),
46
39
  secondary-button-border: linear-gradient(360deg, #46164d 0%, #71347b 100%),
47
40
  secondary-button-text-color: #71347b,
48
- secondary-button-hover:
49
- linear-gradient(179.06deg, #71347b0d 3.49%, #46164d0d 99.22%),
50
- tertiary-button-color:
51
- linear-gradient(
52
- 180deg,
53
- rgba(70, 22, 77, 0.05) 0%,
54
- rgba(113, 52, 123, 0.05) 100%
55
- ),
56
- tertiary-button-hover:
57
- linear-gradient(
58
- 180deg,
59
- rgba(70, 22, 77, 0.1) 0%,
60
- rgba(113, 52, 123, 0.1) 100%
61
- ),
41
+ secondary-button-hover: linear-gradient(179.06deg, #71347b0d 3.49%, #46164d0d 99.22%),
42
+ tertiary-button-color: linear-gradient(180deg,
43
+ rgba(70, 22, 77, 0.05) 0%,
44
+ rgba(113, 52, 123, 0.05) 100%),
45
+ tertiary-button-hover: linear-gradient(180deg,
46
+ rgba(70, 22, 77, 0.1) 0%,
47
+ rgba(113, 52, 123, 0.1) 100%),
62
48
  delete-button-color: linear-gradient(179.06deg, #e42525 3.49%, #c90000 99.22%),
63
49
  delete-button-border: linear-gradient(180deg, #a90707 3.04%, #e42525 100%),
64
50
  delete-button-hover: linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%),
65
- delete-button-disable:
66
- linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%),
67
- warning-button-color:
68
- linear-gradient(179.06deg, #ffc600 3.49%, #ffc600 99.22%),
51
+ delete-button-disable: linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%),
52
+ warning-button-color: linear-gradient(179.06deg, #ffc600 3.49%, #ffc600 99.22%),
69
53
  warning-button-border: linear-gradient(180deg, #eeba08 3.04%, #f1bc04 100%),
70
54
  drawer-title-color: #252c37,
71
55
  toast-msg-icon-bg: linear-gradient(180deg, #079455 0%, #00693a 100%),
@@ -76,14 +60,13 @@ $dark-theme: (
76
60
  ff-header-submenu-text-color: #666468,
77
61
  ff-header-submenu-highlight-text-color: #170328,
78
62
 
79
- // TODO:: Need to change the color code values of below 7 color (N/A in DS)
80
63
  default-icon-color: #a3a3a3,
81
64
  expandable-menu-default-bg: #fdfaff,
82
65
  expandable-menu-option-bg: #610b861a,
83
- file-dropzone-default-color: #71347b1a,
84
- file-dropzone-selected-color: #71347b33,
85
- file-details-container-shadow: #1e161f29,
86
- file-details-bg: #ffffff,
66
+ file-dropzone-default-color: #823c8d1a,
67
+ file-dropzone-selected-color: #823c8d33,
68
+ file-details-container-shadow: #fffcff99,
69
+ file-details-bg: #0d0d0d,
87
70
  ff-mini-modal-border: #ffffff,
88
71
  ff-mini-modal-box-shadow: #3713553d,
89
72
  ff-mini-modal-arrow-shadow: #00000040,
@@ -205,8 +188,7 @@ $dark-theme: (
205
188
  delete-icon-color: #e42525,
206
189
 
207
190
  ff-app-header-menu-border-bottom-color: #ffffff,
208
- ff-app-header-submenu-border-bottom-color:
209
- linear-gradient(90deg, #592f7c 0%, #741ebb 100%),
191
+ ff-app-header-submenu-border-bottom-color: linear-gradient(90deg, #592f7c 0%, #741ebb 100%),
210
192
  table-header-text-color: #252c37,
211
193
  table-column-text-color: #200624,
212
194
  ff-delete-button-attachment: #a91224,
@@ -233,9 +215,14 @@ $dark-theme: (
233
215
  ff-card-warning-status-bg-color: #e2750f,
234
216
  ff-card-skipped-status-bg-color: #a83fc4,
235
217
  ff-card-flaky-status-bg-color: #3f5ac4,
218
+ ff-toggle-switch-off-color:#4B494C,
219
+ ff-toggle-switch-shadow-color:#57575780,
220
+ ff-search-field-hover-color:#F7ECF8,
221
+ ff-search-filed-bg-color:#ffffff
236
222
  );
223
+
237
224
  :root {
238
225
  @each $key, $value in $dark-theme {
239
226
  --#{$key}: #{$value};
240
227
  }
241
- }
228
+ }
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.42445 11.0946L2.65445 10.4296H4.04445L4.27445 11.0946H5.01445L3.75945 7.59961H2.94445L1.68945 11.0946H2.42445ZM3.34945 8.40961L3.85445 9.86961H2.84445L3.34945 8.40961ZM7.89355 9.20961C7.98355 9.04628 8.02855 8.87128 8.02855 8.68461C8.02855 8.47794 7.98022 8.29294 7.88355 8.12961C7.79022 7.96628 7.64855 7.83794 7.45855 7.74461C7.26855 7.65128 7.03855 7.60461 6.76855 7.60461H5.48355V11.0946H6.18355V9.75461H6.76855C7.05522 9.75461 7.29189 9.70461 7.47855 9.60461C7.66855 9.50461 7.80689 9.37294 7.89355 9.20961ZM7.16855 9.05961C7.07522 9.14628 6.93189 9.18961 6.73855 9.18961H6.18355V8.17461H6.73855C7.11855 8.17461 7.30855 8.34461 7.30855 8.68461C7.30855 8.84461 7.26189 8.96961 7.16855 9.05961ZM9.22555 9.53961L10.4955 11.0946H11.3805L9.90055 9.33461L11.3405 7.60461H10.4955L9.22555 9.16961V7.60461H8.52555V11.0946H9.22555V9.53961Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.04228 0H2.61603C1.67718 0 0.913086 0.764127 0.913086 1.70291V14.2971C0.913086 15.2358 1.67718 16 2.61603 16H11.3843C12.3226 16 13.0867 15.2359 13.0867 14.2971V4.03033L9.04228 0ZM11.3843 14.9566H2.61603C2.25251 14.9566 1.95647 14.6611 1.95647 14.2971V1.70291C1.95647 1.33943 2.25251 1.04391 2.61603 1.04391L3.43664 1.04318V1.79755C3.43664 1.9448 3.5559 2.06406 3.70311 2.06406H4.70856V3.17962H3.70311C3.5559 3.17962 3.43664 3.29889 3.43664 3.4461V4.02877C3.43664 4.17602 3.5559 4.29518 3.70311 4.29518H4.70856V5.41078H3.70311C3.5559 5.41078 3.43664 5.53005 3.43664 5.67726V6.25992C3.43664 6.40717 3.5559 6.52634 3.70311 6.52634H4.70856V7.37548C4.70856 7.52273 4.82783 7.64193 4.97508 7.64193H6.44525C6.5922 7.64193 6.71147 7.52269 6.71147 7.37548V6.79285C6.71147 6.64564 6.5922 6.52634 6.44525 6.52634H5.43954V5.41078H6.44529C6.59223 5.41078 6.7115 5.29154 6.7115 5.14433V4.5617C6.7115 4.41449 6.59223 4.29518 6.44529 4.29518H5.43954V3.17962H6.44529C6.59223 3.17962 6.7115 3.06039 6.7115 2.91318V2.33058C6.7115 2.18333 6.59223 2.0641 6.44529 2.0641H5.43954V1.04103L8.65212 1.03767V3.2683C8.65212 3.92049 9.18089 4.44983 9.83308 4.44983L12.0187 4.44359L12.0433 14.2971C12.0433 14.6611 11.7478 14.9566 11.3843 14.9566Z" fill="currentColor"/>
3
+ <path d="M5.71008 10.0144V8.65095C5.71008 8.50397 5.59088 8.38477 5.4439 8.38477H4.70437C4.55739 8.38477 4.43815 8.504 4.43815 8.65095V10.0142L4.02682 11.2226C3.91173 11.5594 3.96695 11.9336 4.17433 12.2236C4.38171 12.5131 4.71797 12.686 5.07412 12.686C5.43033 12.686 5.76663 12.5131 5.97401 12.2236C6.18138 11.9336 6.23654 11.5594 6.12148 11.2229L5.71008 10.0144ZM5.53828 11.9119C5.3249 12.2106 4.82334 12.2106 4.60992 11.9119C4.50297 11.7623 4.47449 11.5694 4.5336 11.3955L4.67165 10.9901H5.47656L5.61464 11.3957C5.67378 11.5694 5.64521 11.7623 5.53828 11.9119Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.21242 8.42371C2.05909 8.69371 1.98242 9.00038 1.98242 9.34371C1.98242 9.68704 2.05909 9.99371 2.21242 10.2637C2.36909 10.5337 2.58076 10.7454 2.84742 10.8987C3.11742 11.0487 3.41909 11.1237 3.75242 11.1237C4.14576 11.1237 4.48742 11.0254 4.77742 10.8287C5.07076 10.6287 5.27576 10.3504 5.39242 9.99371H4.58742C4.50742 10.1604 4.39409 10.287 4.24742 10.3737C4.10409 10.457 3.93742 10.4987 3.74742 10.4987C3.54409 10.4987 3.36242 10.452 3.20242 10.3587C3.04576 10.262 2.92242 10.127 2.83242 9.95371C2.74576 9.77704 2.70242 9.57371 2.70242 9.34371C2.70242 9.11038 2.74576 8.90704 2.83242 8.73371C2.92242 8.56038 3.04576 8.42704 3.20242 8.33371C3.36242 8.23704 3.54409 8.18871 3.74742 8.18871C3.93742 8.18871 4.10409 8.23038 4.24742 8.31371C4.39409 8.39704 4.50742 8.52204 4.58742 8.68871H5.39242C5.27576 8.33538 5.07076 8.05871 4.77742 7.85871C4.48409 7.65871 4.14242 7.55871 3.75242 7.55871C3.41909 7.55871 3.11742 7.63538 2.84742 7.78871C2.58076 7.93871 2.36909 8.15038 2.21242 8.42371ZM6.53531 11.0037C6.73198 11.087 6.95198 11.1287 7.19531 11.1287C7.45198 11.1287 7.67365 11.082 7.86031 10.9887C8.04698 10.892 8.18865 10.7637 8.28531 10.6037C8.38198 10.4437 8.43031 10.2704 8.43031 10.0837C8.43031 9.86704 8.37865 9.69204 8.27531 9.55871C8.17198 9.42538 8.04865 9.32538 7.90531 9.25871C7.76198 9.19204 7.57698 9.12538 7.35031 9.05871C7.18365 9.00871 7.05365 8.96538 6.96031 8.92871C6.87031 8.88871 6.79365 8.83871 6.73031 8.77871C6.67031 8.71538 6.64031 8.63704 6.64031 8.54371C6.64031 8.41038 6.68031 8.30871 6.76031 8.23871C6.84365 8.16871 6.95365 8.13371 7.09031 8.13371C7.24698 8.13371 7.37198 8.17371 7.46531 8.25371C7.56198 8.33038 7.61365 8.42871 7.62031 8.54871H8.39031C8.36698 8.23538 8.24198 7.99204 8.01531 7.81871C7.79198 7.64204 7.50031 7.55371 7.14031 7.55371C6.90031 7.55371 6.68698 7.59538 6.50031 7.67871C6.31365 7.75871 6.16865 7.87538 6.06531 8.02871C5.96198 8.18204 5.91031 8.36204 5.91031 8.56871C5.91031 8.78871 5.96031 8.96538 6.06031 9.09871C6.16365 9.22871 6.28531 9.32704 6.42531 9.39371C6.56865 9.45704 6.75365 9.52204 6.98031 9.58871C7.14698 9.63538 7.27698 9.67871 7.37031 9.71871C7.46698 9.75538 7.54698 9.80704 7.61031 9.87371C7.67365 9.94038 7.70531 10.0254 7.70531 10.1287C7.70531 10.2554 7.65865 10.3587 7.56531 10.4387C7.47198 10.5154 7.34365 10.5537 7.18031 10.5537C7.02031 10.5537 6.89365 10.512 6.80031 10.4287C6.71031 10.3454 6.66031 10.232 6.65031 10.0887H5.90031C5.90365 10.302 5.96198 10.487 6.07531 10.6437C6.18865 10.8004 6.34198 10.9204 6.53531 11.0037ZM10.8922 11.0937L12.1722 7.60371H11.4272L10.4722 10.3787L9.51219 7.60371H8.76219L10.0422 11.0937H10.8922Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 14H11.5556V11.6667H0V14ZM0 8.16667H8.88889V5.83333H0V8.16667ZM0 0V2.33333H11.5556V0H0ZM16 11.1883L12.8178 7L16 2.81167L14.7467 1.16667L10.3022 7L14.7467 12.8333L16 11.1883Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0.296875 0H15.7023V3.77095H12.9706V2.73171H6.14841L10.5613 8L6.14841 13.2683H12.9707V12.2291H15.7024V16H0.296875L6.99784 8L0.296875 0Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.87449 8.3684C5.01449 8.44507 5.12449 8.55673 5.20449 8.7034H6.00949C5.89949 8.35673 5.69949 8.0884 5.40949 7.8984C5.11949 7.70507 4.77783 7.6084 4.38449 7.6084C4.05116 7.6084 3.74783 7.68507 3.47449 7.8384C3.20449 7.9884 2.99116 8.20006 2.83449 8.4734C2.68116 8.7434 2.60449 9.05007 2.60449 9.3934C2.60449 9.73673 2.68116 10.0434 2.83449 10.3134C2.99116 10.5834 3.20449 10.7951 3.47449 10.9484C3.74783 11.0984 4.05283 11.1734 4.38949 11.1734C4.68949 11.1734 4.95949 11.1117 5.19949 10.9884C5.44283 10.8617 5.64116 10.6951 5.79449 10.4884C5.94783 10.2817 6.04783 10.0567 6.09449 9.8134V9.2034H4.20449V9.7384H5.40449C5.35116 9.99173 5.23949 10.1901 5.06949 10.3334C4.89949 10.4734 4.68116 10.5434 4.41449 10.5434C4.19783 10.5434 4.00783 10.4967 3.84449 10.4034C3.68116 10.3101 3.55283 10.1767 3.45949 10.0034C3.36949 9.83007 3.32449 9.62673 3.32449 9.3934C3.32449 9.16673 3.36949 8.96673 3.45949 8.7934C3.54949 8.62007 3.67449 8.48673 3.83449 8.3934C3.99449 8.30007 4.17783 8.2534 4.38449 8.2534C4.57116 8.2534 4.73449 8.29173 4.87449 8.3684ZM7.31238 11.1434V7.6534H6.61238V11.1434H7.31238ZM10.159 8.2184V7.6534H8.00398V11.1434H8.70398V9.6684H9.81898V9.1134H8.70398V8.2184H10.159Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.93514 10.6865V7.89453H3.37514V9.04253H2.17914V7.89453H1.61914V10.6865H2.17914V9.49853H3.37514V10.6865H3.93514ZM6.38633 8.34653V7.89453H4.33833V8.34653H5.08233V10.6865H5.64233V8.34653H6.38633ZM9.83892 10.6865V7.89453H9.20692L8.31892 9.97053L7.43092 7.89453H6.79492V10.6865H7.35492V8.87053L8.10692 10.6865H8.53092L9.27892 8.87053V10.6865H9.83892ZM11.8726 10.2425H10.9526V7.89453H10.3926V10.6865H11.8726V10.2425Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.69805 11.0945V7.60449H2.99805V11.0945H3.69805ZM6.79965 9.20949C6.88965 9.04616 6.93465 8.87116 6.93465 8.68449C6.93465 8.47783 6.88631 8.29283 6.78965 8.12949C6.69631 7.96616 6.55465 7.83783 6.36465 7.74449C6.17465 7.65116 5.94465 7.60449 5.67465 7.60449H4.38965V11.0945H5.08965V9.75449H5.67465C5.96131 9.75449 6.19798 9.70449 6.38465 9.60449C6.57465 9.50449 6.71298 9.37283 6.79965 9.20949ZM6.07465 9.05949C5.98131 9.14616 5.83798 9.18949 5.64465 9.18949H5.08965V8.17449H5.64465C6.02465 8.17449 6.21465 8.34449 6.21465 8.68449C6.21465 8.84449 6.16798 8.96949 6.07465 9.05949ZM8.13164 9.53949L9.40164 11.0945H10.2866L8.80664 9.33449L10.2466 7.60449H9.40164L8.13164 9.16949V7.60449H7.43164V11.0945H8.13164V9.53949Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.0418 10.0546V7.60457H3.3368V10.0546C3.3368 10.1946 3.30346 10.3046 3.2368 10.3846C3.17013 10.4646 3.07346 10.5046 2.9468 10.5046C2.8168 10.5046 2.7168 10.4629 2.6468 10.3796C2.58013 10.2962 2.54513 10.1796 2.5418 10.0296H1.8418C1.8418 10.3762 1.94346 10.6462 2.1468 10.8396C2.35346 11.0329 2.62346 11.1296 2.9568 11.1296C3.2868 11.1296 3.55013 11.0362 3.7468 10.8496C3.94346 10.6596 4.0418 10.3946 4.0418 10.0546ZM7.26836 9.20957C7.35836 9.04624 7.40336 8.87124 7.40336 8.68457C7.40336 8.4779 7.35503 8.2929 7.25836 8.12957C7.16503 7.96624 7.02336 7.8379 6.83336 7.74457C6.64336 7.65124 6.41336 7.60457 6.14336 7.60457H4.85836V11.0946H5.55836V9.75457H6.14336C6.43003 9.75457 6.66669 9.70457 6.85336 9.60457C7.04336 9.50457 7.18169 9.3729 7.26836 9.20957ZM6.54336 9.05957C6.45003 9.14624 6.30669 9.18957 6.11336 9.18957H5.55836V8.17457H6.11336C6.49336 8.17457 6.68336 8.34457 6.68336 8.68457C6.68336 8.84457 6.63669 8.96957 6.54336 9.05957ZM10.0004 8.31957C10.1404 8.39624 10.2504 8.5079 10.3304 8.65457H11.1354C11.0254 8.3079 10.8254 8.03957 10.5354 7.84957C10.2454 7.65624 9.90368 7.55957 9.51035 7.55957C9.17702 7.55957 8.87368 7.63624 8.60035 7.78957C8.33035 7.93957 8.11702 8.15124 7.96035 8.42457C7.80702 8.69457 7.73035 9.00124 7.73035 9.34457C7.73035 9.6879 7.80702 9.99457 7.96035 10.2646C8.11702 10.5346 8.33035 10.7462 8.60035 10.8996C8.87368 11.0496 9.17868 11.1246 9.51535 11.1246C9.81535 11.1246 10.0854 11.0629 10.3254 10.9396C10.5687 10.8129 10.767 10.6462 10.9204 10.4396C11.0737 10.2329 11.1737 10.0079 11.2204 9.76457V9.15457H9.33035V9.68957H10.5304C10.477 9.9429 10.3654 10.1412 10.1954 10.2846C10.0254 10.4246 9.80702 10.4946 9.54035 10.4946C9.32368 10.4946 9.13369 10.4479 8.97035 10.3546C8.80702 10.2612 8.67868 10.1279 8.58535 9.95457C8.49535 9.78124 8.45035 9.5779 8.45035 9.34457C8.45035 9.1179 8.49535 8.9179 8.58535 8.74457C8.67535 8.57124 8.80035 8.4379 8.96035 8.34457C9.12035 8.25124 9.30369 8.20457 9.51035 8.20457C9.69702 8.20457 9.86035 8.2429 10.0004 8.31957Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.15355 9.85449V7.89449H2.58955V9.85449C2.58955 9.96649 2.56289 10.0545 2.50955 10.1185C2.45622 10.1825 2.37889 10.2145 2.27755 10.2145C2.17355 10.2145 2.09355 10.1812 2.03755 10.1145C1.98422 10.0478 1.95622 9.95449 1.95355 9.83449H1.39355C1.39355 10.1118 1.47489 10.3278 1.63755 10.4825C1.80289 10.6372 2.01889 10.7145 2.28555 10.7145C2.54955 10.7145 2.76022 10.6398 2.91755 10.4905C3.07489 10.3385 3.15355 10.1265 3.15355 9.85449ZM4.2428 10.6145C4.40014 10.6812 4.57614 10.7145 4.7708 10.7145C4.97614 10.7145 5.15347 10.6772 5.3028 10.6025C5.45214 10.5252 5.56547 10.4225 5.6428 10.2945C5.72014 10.1665 5.7588 10.0278 5.7588 9.87849C5.7588 9.70516 5.71747 9.56516 5.6348 9.45849C5.55214 9.35183 5.45347 9.27183 5.3388 9.21849C5.22414 9.16516 5.07614 9.11183 4.8948 9.05849C4.76147 9.01849 4.65747 8.98383 4.5828 8.95449C4.5108 8.92249 4.44947 8.88249 4.3988 8.83449C4.3508 8.78383 4.3268 8.72116 4.3268 8.64649C4.3268 8.53983 4.3588 8.45849 4.4228 8.40249C4.48947 8.34649 4.57747 8.31849 4.6868 8.31849C4.81214 8.31849 4.91214 8.35049 4.9868 8.41449C5.06414 8.47583 5.10547 8.55449 5.1108 8.65049H5.7268C5.70814 8.39983 5.60814 8.20516 5.42681 8.06649C5.24814 7.92516 5.0148 7.85449 4.7268 7.85449C4.5348 7.85449 4.36414 7.88783 4.2148 7.95449C4.06547 8.01849 3.94947 8.11183 3.8668 8.23449C3.78414 8.35716 3.7428 8.50116 3.7428 8.66649C3.7428 8.84249 3.7828 8.98383 3.8628 9.09049C3.94547 9.19449 4.0428 9.27316 4.1548 9.32649C4.26947 9.37716 4.41747 9.42916 4.5988 9.48249C4.73214 9.51983 4.83614 9.55449 4.9108 9.58649C4.98814 9.61583 5.05214 9.65716 5.1028 9.71049C5.15347 9.76383 5.1788 9.83183 5.1788 9.91449C5.1788 10.0158 5.14147 10.0985 5.0668 10.1625C4.99214 10.2238 4.88947 10.2545 4.7588 10.2545C4.6308 10.2545 4.52947 10.2212 4.4548 10.1545C4.3828 10.0878 4.3428 9.99716 4.3348 9.88249H3.7348C3.73747 10.0532 3.78414 10.2012 3.8748 10.3265C3.96547 10.4518 4.08814 10.5478 4.2428 10.6145ZM6.8203 10.5305C7.03897 10.6532 7.27897 10.7145 7.5403 10.7145C7.80164 10.7145 8.04164 10.6532 8.2603 10.5305C8.47897 10.4078 8.65097 10.2385 8.7763 10.0225C8.9043 9.80383 8.96831 9.55716 8.96831 9.28249C8.96831 9.01049 8.9043 8.76649 8.7763 8.55049C8.65097 8.33183 8.47897 8.16116 8.2603 8.03849C8.0443 7.91583 7.8043 7.85449 7.5403 7.85449C7.27897 7.85449 7.03897 7.91583 6.8203 8.03849C6.60164 8.16116 6.4283 8.33183 6.3003 8.55049C6.1723 8.76649 6.1083 9.01049 6.1083 9.28249C6.1083 9.55716 6.1723 9.80383 6.3003 10.0225C6.4283 10.2385 6.60164 10.4078 6.8203 10.5305ZM7.9843 10.1025C7.8563 10.1772 7.7083 10.2145 7.5403 10.2145C7.3723 10.2145 7.22297 10.1772 7.0923 10.1025C6.9643 10.0252 6.8643 9.91583 6.7923 9.77449C6.7203 9.63316 6.6843 9.46916 6.6843 9.28249C6.6843 9.09583 6.7203 8.93316 6.7923 8.79449C6.8643 8.65316 6.9643 8.54516 7.0923 8.47049C7.22297 8.39583 7.3723 8.35849 7.5403 8.35849C7.7083 8.35849 7.8563 8.39583 7.9843 8.47049C8.1123 8.54516 8.21231 8.65316 8.28431 8.79449C8.3563 8.93316 8.3923 9.09583 8.3923 9.28249C8.3923 9.46916 8.3563 9.63316 8.28431 9.77449C8.21231 9.91583 8.1123 10.0252 7.9843 10.1025ZM11.2129 10.6865H11.7729V7.89049H11.2129V9.81049L9.94493 7.89049H9.38493V10.6865H9.94493V8.77049L11.2129 10.6865Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.48617 9.25832C4.57617 9.09499 4.62117 8.91999 4.62117 8.73332C4.62117 8.52665 4.57284 8.34165 4.47617 8.17832C4.38284 8.01499 4.24117 7.88665 4.05117 7.79332C3.86117 7.69999 3.63117 7.65332 3.36117 7.65332H2.07617V11.1433H2.77617V9.80332H3.36117C3.64784 9.80332 3.88451 9.75332 4.07117 9.65332C4.26117 9.55332 4.39951 9.42165 4.48617 9.25832ZM3.76117 9.10832C3.66784 9.19499 3.52451 9.23832 3.33117 9.23832H2.77617V8.22332H3.33117C3.71117 8.22332 3.90117 8.39332 3.90117 8.73332C3.90117 8.89332 3.85451 9.01832 3.76117 9.10832ZM7.30316 7.86832C7.0265 7.72499 6.70483 7.65332 6.33816 7.65332H5.11816V11.1433H6.33816C6.70483 11.1433 7.0265 11.0717 7.30316 10.9283C7.58316 10.785 7.79816 10.5833 7.94816 10.3233C8.1015 10.06 8.17816 9.75332 8.17816 9.40332C8.17816 9.05332 8.1015 8.74665 7.94816 8.48332C7.79816 8.21665 7.58316 8.01165 7.30316 7.86832ZM7.16316 10.2483C6.96316 10.4483 6.67983 10.5483 6.31316 10.5483H5.81816V8.24332H6.31316C6.67983 8.24332 6.96316 8.34665 7.16316 8.55332C7.36316 8.75665 7.46316 9.03999 7.46316 9.40332C7.46316 9.76665 7.36316 10.0483 7.16316 10.2483ZM10.8571 8.21832V7.65332H8.70215V11.1433H9.40215V9.66832H10.5171V9.11332H9.40215V8.21832H10.8571Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.10922 9.23887C4.19922 9.07553 4.24422 8.90053 4.24422 8.71387C4.24422 8.5072 4.19589 8.3222 4.09922 8.15887C4.00589 7.99553 3.86422 7.8672 3.67422 7.77387C3.48422 7.68053 3.25422 7.63387 2.98422 7.63387H1.69922V11.1239H2.39922V9.78387H2.98422C3.27089 9.78387 3.50755 9.73387 3.69422 9.63387C3.88422 9.53387 4.02255 9.4022 4.10922 9.23887ZM3.38422 9.08887C3.29089 9.17553 3.14755 9.21887 2.95422 9.21887H2.39922V8.20387H2.95422C3.33422 8.20387 3.52422 8.37387 3.52422 8.71387C3.52422 8.87387 3.47755 8.99887 3.38422 9.08887ZM7.02621 11.1239H7.72621V7.62887H7.02621V10.0289L5.44121 7.62887H4.74121V11.1239H5.44121V8.72887L7.02621 11.1239ZM10.518 8.34887C10.658 8.42553 10.768 8.5372 10.848 8.68387H11.653C11.543 8.3372 11.343 8.06887 11.053 7.87887C10.763 7.68553 10.4213 7.58887 10.028 7.58887C9.69464 7.58887 9.3913 7.66553 9.11797 7.81887C8.84797 7.96887 8.63464 8.18053 8.47797 8.45387C8.32464 8.72387 8.24797 9.03053 8.24797 9.37387C8.24797 9.7172 8.32464 10.0239 8.47797 10.2939C8.63464 10.5639 8.84797 10.7755 9.11797 10.9289C9.3913 11.0789 9.6963 11.1539 10.033 11.1539C10.333 11.1539 10.603 11.0922 10.843 10.9689C11.0863 10.8422 11.2846 10.6755 11.438 10.4689C11.5913 10.2622 11.6913 10.0372 11.738 9.79387V9.18387H9.84797V9.71887H11.048C10.9946 9.9722 10.883 10.1705 10.713 10.3139C10.543 10.4539 10.3246 10.5239 10.058 10.5239C9.8413 10.5239 9.6513 10.4772 9.48797 10.3839C9.32464 10.2905 9.1963 10.1572 9.10297 9.98387C9.01297 9.81053 8.96797 9.6072 8.96797 9.37387C8.96797 9.1472 9.01297 8.9472 9.10297 8.77387C9.19297 8.60053 9.31797 8.4672 9.47797 8.37387C9.63797 8.28053 9.8213 8.23387 10.028 8.23387C10.2146 8.23387 10.378 8.2722 10.518 8.34887Z" fill="white"/>
4
+ </svg>