pixel-react 1.6.8 → 1.7.0

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 (173) hide show
  1. package/lib/components/Charts/LineChart/types.d.ts +1 -0
  2. package/lib/components/Chip/types.d.ts +1 -1
  3. package/lib/components/ConditionalDropdown/ConditionalDropdown.d.ts +5 -0
  4. package/lib/components/ConditionalDropdown/OptionsDropdown.d.ts +5 -0
  5. package/lib/components/ConditionalDropdown/index.d.ts +1 -0
  6. package/lib/components/ConditionalDropdown/types.d.ts +145 -0
  7. package/lib/components/CreateVariable/types.d.ts +2 -2
  8. package/lib/components/DownloadClient/type.d.ts +19 -27
  9. package/lib/components/Excel/ExcelFile/ExcelFileComponents/actions.d.ts +8 -1
  10. package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.d.ts +2 -0
  11. package/lib/components/Excel/ExcelFile/ExcelFileComponents/types.d.ts +13 -6
  12. package/lib/components/InputWithDropdown/InputWithDropdown.d.ts +1 -1
  13. package/lib/components/LabelEditTextField/types.d.ts +1 -0
  14. package/lib/components/MachineInputField/types.d.ts +1 -0
  15. package/lib/components/MenuOption/MenuOption.d.ts +1 -1
  16. package/lib/components/MenuOption/types.d.ts +2 -1
  17. package/lib/components/MiniModal/types.d.ts +1 -0
  18. package/lib/components/Modal/types.d.ts +1 -1
  19. package/lib/components/MultiSelect/MultiSelect.d.ts +1 -1
  20. package/lib/components/MultiSelect/MultiSelectTypes.d.ts +1 -0
  21. package/lib/components/MultiSelect/dropdownTypes.d.ts +1 -0
  22. package/lib/components/NLPInput/NlpInput.d.ts +2 -2
  23. package/lib/components/NLPInput/components/NlpDropDown/NlpDropDownType.d.ts +6 -3
  24. package/lib/components/NLPInput/components/NlpDropDown/NlpDropdown.d.ts +1 -1
  25. package/lib/components/NLPInput/sampleData.d.ts +104 -0
  26. package/lib/components/NLPInput/types.d.ts +80 -0
  27. package/lib/components/PopUpModal/types.d.ts +2 -1
  28. package/lib/components/ProgressBar/ProgressBar.d.ts +5 -0
  29. package/lib/components/ProgressBar/index.d.ts +1 -0
  30. package/lib/components/ProgressBar/types.d.ts +12 -0
  31. package/lib/components/SequentialConnectingBranch/components/Branches/Branches.d.ts +1 -1
  32. package/lib/components/SequentialConnectingBranch/components/Branches/types.d.ts +4 -0
  33. package/lib/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.d.ts +1 -1
  34. package/lib/components/SequentialConnectingBranch/components/ConnectingBranches/types.d.ts +4 -0
  35. package/lib/components/SequentialConnectingBranch/types.d.ts +7 -1
  36. package/lib/components/TableTree/TableTree.d.ts +2 -2
  37. package/lib/components/TableTree/Utils/getAllChildIds.d.ts +1 -0
  38. package/lib/components/TableTree/types.d.ts +1 -1
  39. package/lib/hooks/useIntersectionObserver.d.ts +9 -0
  40. package/lib/index.d.ts +183 -65
  41. package/lib/index.esm.js +1281 -674
  42. package/lib/index.esm.js.map +1 -1
  43. package/lib/index.js +1282 -674
  44. package/lib/index.js.map +1 -1
  45. package/lib/tsconfig.tsbuildinfo +1 -1
  46. package/lib/utils/functionCheck/functionCheck.d.ts +2 -0
  47. package/lib/utils/getSequentialPayload/types.d.ts +1 -0
  48. package/package.json +1 -1
  49. package/src/StyleGuide/ColorPalette/colorPaletteList.ts +5 -0
  50. package/src/assets/Themes/BaseTheme.scss +20 -2
  51. package/src/assets/Themes/DarkTheme.scss +19 -2
  52. package/src/assets/icons/add_file.svg +4 -4
  53. package/src/assets/icons/ai_search.svg +9 -0
  54. package/src/assets/icons/authorization.svg +4 -4
  55. package/src/assets/icons/depends_on_script.svg +7 -7
  56. package/src/assets/icons/email_group.svg +3 -3
  57. package/src/assets/icons/help_icon.svg +10 -0
  58. package/src/assets/icons/import_icon.svg +4 -0
  59. package/src/assets/icons/ios_icon.svg +11 -0
  60. package/src/assets/icons/labels.svg +8 -8
  61. package/src/assets/icons/parameters.svg +3 -3
  62. package/src/assets/icons/plus_round_icon.svg +38 -0
  63. package/src/assets/icons/pre_post_condition.svg +8 -8
  64. package/src/assets/icons/program_element.svg +8 -8
  65. package/src/assets/icons/test_data.svg +5 -5
  66. package/src/assets/icons/test_data_set.svg +7 -7
  67. package/src/assets/icons/tick_icon.svg +2 -2
  68. package/src/assets/icons/variable_set.svg +5 -5
  69. package/src/assets/styles/_colors.scss +1 -1
  70. package/src/components/AttachmentButton/AttachmentButton.tsx +1 -1
  71. package/src/components/Charts/LineChart/LineChart.stories.tsx +7 -3
  72. package/src/components/Charts/LineChart/LineChart.tsx +10 -1
  73. package/src/components/Charts/LineChart/types.ts +1 -0
  74. package/src/components/Checkbox/Checkbox.scss +3 -1
  75. package/src/components/Checkbox/Checkbox.stories.tsx +32 -77
  76. package/src/components/Checkbox/Checkbox.tsx +3 -4
  77. package/src/components/Chip/Chip.scss +15 -5
  78. package/src/components/Chip/Chip.stories.tsx +10 -1
  79. package/src/components/Chip/Chip.tsx +5 -1
  80. package/src/components/Chip/types.ts +1 -1
  81. package/src/components/{AddVariables/AddVariables.scss → ConditionalDropdown/ConditionalDropdown.scss} +4 -0
  82. package/src/components/ConditionalDropdown/ConditionalDropdown.stories.tsx +147 -0
  83. package/src/components/ConditionalDropdown/ConditionalDropdown.tsx +159 -0
  84. package/src/components/ConditionalDropdown/OptionsDropdown.tsx +44 -0
  85. package/src/components/ConditionalDropdown/index.ts +1 -0
  86. package/src/components/ConditionalDropdown/types.ts +160 -0
  87. package/src/components/CreateVariable/CreateVariableSlider.tsx +2 -2
  88. package/src/components/CreateVariable/types.ts +2 -2
  89. package/src/components/DownloadClient/DownloadClient.scss +51 -64
  90. package/src/components/DownloadClient/DownloadClient.stories.tsx +6 -6
  91. package/src/components/DownloadClient/DownloadClient.tsx +60 -51
  92. package/src/components/DownloadClient/type.ts +32 -40
  93. package/src/components/EditTextField/EditTextField.scss +1 -1
  94. package/src/components/EditTextField/EditTextField.tsx +14 -20
  95. package/src/components/Excel/ExcelFile/ExcelFile.scss +3 -2
  96. package/src/components/Excel/ExcelFile/ExcelFile.tsx +37 -21
  97. package/src/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.tsx +12 -0
  98. package/src/components/Excel/ExcelFile/ExcelFileComponents/Cell.tsx +2 -34
  99. package/src/components/Excel/ExcelFile/ExcelFileComponents/FloatingRect.tsx +26 -1
  100. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +7 -7
  101. package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +13 -0
  102. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducer.ts +53 -26
  103. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +81 -14
  104. package/src/components/Excel/ExcelFile/ExcelFileComponents/types.ts +17 -6
  105. package/src/components/Excel/ExcelFile.stories.tsx +4 -4
  106. package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +36 -19
  107. package/src/components/Excel/dataConversion.ts +43 -20
  108. package/src/components/FileDropzone/FileDropzone.stories.tsx +5 -19
  109. package/src/components/FileDropzone/FileDropzone.tsx +24 -4
  110. package/src/components/Form/Forms.tsx +0 -2
  111. package/src/components/Icon/iconList.ts +12 -0
  112. package/src/components/InputWithDropdown/InputWithDropdown.tsx +102 -95
  113. package/src/components/LabelEditTextField/LabelEditTextField.scss +1 -1
  114. package/src/components/LabelEditTextField/LabelEditTextField.tsx +29 -36
  115. package/src/components/LabelEditTextField/types.ts +1 -0
  116. package/src/components/MachineInputField/MachineInputField.scss +1 -5
  117. package/src/components/MachineInputField/MachineInputField.stories.tsx +6 -5
  118. package/src/components/MachineInputField/MachineInputField.tsx +14 -14
  119. package/src/components/MachineInputField/types.ts +2 -0
  120. package/src/components/MenuOption/MenuOption.scss +7 -7
  121. package/src/components/MenuOption/MenuOption.stories.tsx +83 -28
  122. package/src/components/MenuOption/MenuOption.tsx +9 -13
  123. package/src/components/MenuOption/types.ts +3 -2
  124. package/src/components/MiniModal/MiniModal.scss +0 -1
  125. package/src/components/MiniModal/MiniModal.stories.tsx +6 -1
  126. package/src/components/MiniModal/MiniModal.tsx +3 -1
  127. package/src/components/MiniModal/types.ts +1 -0
  128. package/src/components/Modal/types.ts +1 -1
  129. package/src/components/MultiSelect/Dropdown.scss +3 -4
  130. package/src/components/MultiSelect/Dropdown.tsx +34 -7
  131. package/src/components/MultiSelect/MultiSelect.scss +1 -0
  132. package/src/components/MultiSelect/MultiSelect.tsx +3 -0
  133. package/src/components/MultiSelect/MultiSelectTypes.ts +3 -1
  134. package/src/components/MultiSelect/dropdownTypes.ts +2 -0
  135. package/src/components/NLPInput/NLPInput.scss +77 -21
  136. package/src/components/NLPInput/NlpInput.stories.tsx +43 -109
  137. package/src/components/NLPInput/NlpInput.tsx +95 -59
  138. package/src/components/NLPInput/components/NlpDropDown/NlpDropDownType.ts +6 -4
  139. package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.scss +86 -35
  140. package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.tsx +220 -80
  141. package/src/components/NLPInput/sampleData.ts +162 -0
  142. package/src/components/NLPInput/{type.tsx → types.tsx} +23 -11
  143. package/src/components/PopUpModal/PopUpModal.stories.tsx +15 -10
  144. package/src/components/PopUpModal/PopUpModal.tsx +5 -4
  145. package/src/components/PopUpModal/types.ts +2 -1
  146. package/src/components/ProgressBar/ProgressBar.scss +46 -0
  147. package/src/components/ProgressBar/ProgressBar.stories.tsx +22 -0
  148. package/src/components/ProgressBar/ProgressBar.tsx +61 -0
  149. package/src/components/ProgressBar/index.ts +1 -0
  150. package/src/components/ProgressBar/types.ts +12 -0
  151. package/src/components/Search/Search.tsx +9 -1
  152. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.tsx +13 -2
  153. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +36 -19
  154. package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +120 -32
  155. package/src/components/SequentialConnectingBranch/components/Branches/types.ts +7 -0
  156. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.tsx +8 -0
  157. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/types.ts +7 -0
  158. package/src/components/SequentialConnectingBranch/types.ts +7 -5
  159. package/src/components/Table/Table.scss +1 -0
  160. package/src/components/TableTree/Components/TableBody.tsx +3 -1
  161. package/src/components/TableTree/TableTree.stories.tsx +4 -7
  162. package/src/components/TableTree/TableTree.tsx +27 -181
  163. package/src/components/TableTree/Utils/getAllChildIds.ts +2 -0
  164. package/src/components/TableTree/data.ts +45 -0
  165. package/src/components/TableTree/types.ts +4 -4
  166. package/src/hooks/useIntersectionObserver.tsx +56 -0
  167. package/src/index.ts +4 -3
  168. package/src/utils/functionCheck/functionCheck.ts +8 -0
  169. package/src/utils/getSequentialPayload/types.ts +1 -0
  170. package/src/components/AddVariables/AddVariables.stories.tsx +0 -44
  171. package/src/components/AddVariables/AddVariables.tsx +0 -113
  172. package/src/components/AddVariables/index.ts +0 -1
  173. package/src/components/AddVariables/types.ts +0 -36
@@ -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/addvariables/addvariables.tsx","../src/components/addvariables/index.ts","../src/components/addvariables/types.ts","../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/comment/comments.tsx","../src/components/comment/index.ts","../src/components/comment/type.ts","../src/components/comment/comment/comment.tsx","../src/components/comment/comment/usenode.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/createvariable/createvariableslider.tsx","../src/components/createvariable/index.ts","../src/components/createvariable/types.ts","../src/components/datepicker/datepicker.tsx","../src/components/datepicker/timepicker.tsx","../src/components/datepicker/index.ts","../src/components/datepicker/types.ts","../src/components/downloadclient/downloadclient.tsx","../src/components/downloadclient/index.ts","../src/components/downloadclient/type.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/dataconversion.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/fieldset/fieldset.tsx","../src/components/fieldset/index.ts","../src/components/fieldset/types.ts","../src/components/filedropzone/dropzone.tsx","../src/components/filedropzone/filedropzone.tsx","../src/components/filedropzone/filepreview.tsx","../src/components/filedropzone/radiofilepreview.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/phoneinput/phoneinput.tsx","../src/components/phoneinput/index.ts","../src/components/phoneinput/types.ts","../src/components/popupmodal/popupmodal.tsx","../src/components/popupmodal/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/tabletree/types.ts","../src/components/tabletree/components/tablebody.tsx","../src/components/tabletree/components/tablecell.tsx","../src/components/tabletree/components/tablehead.tsx","../src/components/tabletree/components/tablerow.tsx","../src/components/tabletree/utils/getallchildids.ts","../src/components/tabletree/utils/renderspaces.ts","../src/components/tablewithaccordion/tablewithaccordion.tsx","../src/components/tablewithaccordion/data.ts","../src/components/tablewithaccordion/index.ts","../src/components/tablewithaccordion/types.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/formatstring/formatstring.tsx","../src/utils/tablecell/tablecell.ts","../src/utils/capitalize/capitalize.tsx","../src/utils/checkduplicates/checkduplicates.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/comment/comments.tsx","../src/components/comment/index.ts","../src/components/comment/type.ts","../src/components/comment/comment/comment.tsx","../src/components/comment/comment/usenode.ts","../src/components/conditionaldropdown/conditionaldropdown.tsx","../src/components/conditionaldropdown/optionsdropdown.tsx","../src/components/conditionaldropdown/index.ts","../src/components/conditionaldropdown/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/createvariable/createvariableslider.tsx","../src/components/createvariable/index.ts","../src/components/createvariable/types.ts","../src/components/datepicker/datepicker.tsx","../src/components/datepicker/timepicker.tsx","../src/components/datepicker/index.ts","../src/components/datepicker/types.ts","../src/components/downloadclient/downloadclient.tsx","../src/components/downloadclient/index.ts","../src/components/downloadclient/type.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/dataconversion.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/fieldset/fieldset.tsx","../src/components/fieldset/index.ts","../src/components/fieldset/types.ts","../src/components/filedropzone/dropzone.tsx","../src/components/filedropzone/filedropzone.tsx","../src/components/filedropzone/filepreview.tsx","../src/components/filedropzone/radiofilepreview.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/sampledata.ts","../src/components/nlpinput/types.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/phoneinput/phoneinput.tsx","../src/components/phoneinput/index.ts","../src/components/phoneinput/types.ts","../src/components/popupmodal/popupmodal.tsx","../src/components/popupmodal/types.ts","../src/components/progressbar/progressbar.tsx","../src/components/progressbar/index.ts","../src/components/progressbar/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/tabletree/types.ts","../src/components/tabletree/components/tablebody.tsx","../src/components/tabletree/components/tablecell.tsx","../src/components/tabletree/components/tablehead.tsx","../src/components/tabletree/components/tablerow.tsx","../src/components/tabletree/utils/getallchildids.ts","../src/components/tabletree/utils/renderspaces.ts","../src/components/tablewithaccordion/tablewithaccordion.tsx","../src/components/tablewithaccordion/data.ts","../src/components/tablewithaccordion/index.ts","../src/components/tablewithaccordion/types.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/useintersectionobserver.tsx","../src/hooks/useportalposition.tsx","../src/hooks/usetheme.tsx","../src/hooks/keyboardevents/useesckeyevent.tsx","../src/utils/formatstring/formatstring.tsx","../src/utils/tablecell/tablecell.ts","../src/utils/capitalize/capitalize.tsx","../src/utils/checkduplicates/checkduplicates.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/functioncheck/functioncheck.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,2 @@
1
+ declare const functionCheck: (functionToCheck: any) => any;
2
+ export default functionCheck;
@@ -2,6 +2,7 @@ export interface OperatingSystemInfo {
2
2
  osName: string;
3
3
  osVersion: string;
4
4
  hostName: string;
5
+ iconName: string;
5
6
  }
6
7
  export interface RunLevelExecutionDataSet {
7
8
  peVariableSetId: string;
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.6.8",
4
+ "version": "1.7.0",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.esm.js",
7
7
  "types": "lib/index.d.ts",
@@ -289,6 +289,11 @@ const ColorPalette: ColorPaletteType = [
289
289
  'linear-gradient(94.23deg,rgba(228, 37, 37, 0.4) 16.33%,rgba(201, 0, 0, 0.4) 80.07%) ',
290
290
  variable: 'alert-modal-background-color',
291
291
  },
292
+ {
293
+ name: 'Progress bar bg color',
294
+ colorCode: 'rgba(240, 240, 240, 1)',
295
+ variable: 'ff-progress-bar-bg-color',
296
+ },
292
297
  ];
293
298
 
294
299
  export default ColorPalette;
@@ -84,8 +84,8 @@ $base-theme: (
84
84
 
85
85
  ff-error-light: #e42525,
86
86
  ff-chips-fill-color: #f9d5ff,
87
- ff-chips-blur-color: #575757,
88
- ff-chip-bg: #ffffff,
87
+ ff-chips-blur-color: #5757571a,
88
+ ff-chip-bg: #ffffffe5,
89
89
  ff-chip-text-color: #1e161f,
90
90
  ff-mini-modal-footer-background: #aeb0c0,
91
91
  input-default-border-color: #a3a3a3,
@@ -180,6 +180,19 @@ $base-theme: (
180
180
  ff-paper-background-color: #f5f5f5,
181
181
  ff-paper-dark-background-color: #d1c4e9,
182
182
  sub-header-primary: #301349,
183
+ nlp-border-color: #efefef,
184
+ nlp-input-placeholder-color: #9a90a1,
185
+ nlp-background-color: #592f7c0f,
186
+ nlp-color: #592f7c,
187
+ nlp-pe-background: #2e9ee80f,
188
+ nlp-pe-color: #2e9ee8,
189
+ nlp-step-group-background: #ee670d0f,
190
+ nlp-step-group-color: #ee670d,
191
+ nlp-hover-color: #f7ebff,
192
+ nlp-button-color: #efe1f9,
193
+ nlp-option-color:#3C3838,
194
+
195
+
183
196
  primary-icon-color: #ffffff,
184
197
  secondary-icon-color: #71347b,
185
198
  disabled-primary-color: #f9f9f9,
@@ -247,8 +260,12 @@ $base-theme: (
247
260
  ff-machine-inactive-status-color: #c50303,
248
261
  ff-machine-running-status-color: #2055de,
249
262
  ff-machine-active-status-color: #4caf50,
263
+ ff-progress-bar-bg-color : #F0F0F0,
264
+ ff-machine-partial-public-status-color: #ea850e,
250
265
  //ExcelSheet
251
266
  excel-sheet-button-color: #e9b5ff,
267
+ excel-sheet-border:#0a0d272a,
268
+
252
269
  icon-hover-color: #f7ecf8,
253
270
  ff-search-icon-hover-color: #f7ecf8,
254
271
  ff-search-filed-bg-color: #ffffff,
@@ -270,6 +287,7 @@ $base-theme: (
270
287
  impact-list-chip-bg-color: #e3ccf5,
271
288
  dynamic-card-border-color: #eeeaf2,
272
289
  card-header-bg-color: #592f7c1a,
290
+
273
291
  table-with-accordion-header-primary-bg: #d4b0e426,
274
292
  table-with-accordion-icon-color: #1e161f,
275
293
  );
@@ -87,8 +87,8 @@ $dark-theme: (
87
87
 
88
88
  ff-error-light: #e42525,
89
89
  ff-chips-fill-color: #f9d5ff,
90
- ff-chips-blur-color: #575757,
91
- ff-chip-bg: #ffffff,
90
+ ff-chips-blur-color: #5757571a,
91
+ ff-chip-bg: #ffffffe5,
92
92
  ff-chip-text-color: #1e161f,
93
93
  ff-mini-modal-footer-background: #aeb0c0,
94
94
  input-default-border-color: #a3a3a3,
@@ -123,6 +123,7 @@ $dark-theme: (
123
123
  menu-option-icon-color: #ffffff,
124
124
  menu-option-icon-clicked: #71347b,
125
125
  delete-text-color: #c50303,
126
+ ff-progress-bar-bg-color : #F0F0F0,
126
127
 
127
128
  status-success-bg-color: #c6efcd,
128
129
  status-success-text-color: #016102,
@@ -172,6 +173,18 @@ $dark-theme: (
172
173
  ff-paper-background-color: #f5f5f5,
173
174
  ff-paper-dark-background-color: #d1c4e9,
174
175
  sub-header-primary: #301349,
176
+ nlp-border-color: #efefef,
177
+ nlp-input-placeholder-color: #9a90a1,
178
+ nlp-background-color: #592f7c0f,
179
+ nlp-color: #592f7c,
180
+ nlp-pe-background: #2e9ee80f,
181
+ nlp-pe-color: #2e9ee8,
182
+ nlp-step-group-background: #ee670d0f,
183
+ nlp-step-group-color: #ee670d,
184
+ nlp-hover-color: #f7ebff,
185
+ nlp-button-color: #efe1f9,
186
+ nlp-option-color:#3C3838,
187
+
175
188
 
176
189
  primary-icon-color: #ffffff,
177
190
  secondary-icon-color: #71347b,
@@ -231,7 +244,11 @@ $dark-theme: (
231
244
  ff-editor-gutter-color: #ded5e5,
232
245
  ff-line-number-bg: #592f7c,
233
246
  ff-line-number-color: #ffffff,
247
+
248
+ //Excel
234
249
  excel-sheet-button-color: #e9b5ff,
250
+ excel-sheet-border:#cfd1e271,
251
+
235
252
  icon-hover-color: #f7ecf8,
236
253
  ff-editor-border-color: #f0e7f4,
237
254
  ff-icon-hover-bg-color: #f7ecf8,
@@ -1,4 +1,4 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M8 16C7.3995 16 6.91293 15.5134 6.91293 14.9129V1.08707C6.91293 0.486575 7.3995 0 8 0C8.6005 0 9.08707 0.486575 9.08707 1.08707V14.9129C9.08707 15.5134 8.6005 16 8 16Z" fill="currentColor"/>
3
- <path d="M14.9129 9.08705H1.08707C0.486575 9.08705 0 8.60048 0 7.99998C0 7.39948 0.486575 6.9129 1.08707 6.9129H14.9129C15.5134 6.9129 16 7.39948 16 7.99998C16 8.60048 15.5134 9.08705 14.9129 9.08705Z" fill="currentColor"/>
4
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8 16C7.3995 16 6.91293 15.5134 6.91293 14.9129V1.08707C6.91293 0.486575 7.3995 0 8 0C8.6005 0 9.08707 0.486575 9.08707 1.08707V14.9129C9.08707 15.5134 8.6005 16 8 16Z" fill="currentColor"/>
3
+ <path d="M14.9129 9.08705H1.08707C0.486575 9.08705 0 8.60048 0 7.99998C0 7.39948 0.486575 6.9129 1.08707 6.9129H14.9129C15.5134 6.9129 16 7.39948 16 7.99998C16 8.60048 15.5134 9.08705 14.9129 9.08705Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15.3333 7.33319C15.5101 7.33319 15.6797 7.26298 15.8047 7.138C15.9297 7.01298 15.9999 6.84344 15.9999 6.66667C15.9999 6.48989 15.9297 6.32035 15.8047 6.19533L14.2 4.59067C14.5033 4.11545 14.6652 3.56376 14.6667 3C14.6667 2.40666 14.4907 1.82664 14.1611 1.33329C13.8314 0.839943 13.3629 0.455426 12.8147 0.228363C12.2666 0.00129984 11.6634 -0.0581102 11.0814 0.0576455C10.4995 0.173401 9.96492 0.459124 9.54536 0.878682C9.1258 1.29824 8.84008 1.83279 8.72432 2.41473C8.60857 2.99667 8.66798 3.59987 8.89504 4.14805C9.1221 4.69623 9.50662 5.16477 9.99997 5.49441C10.4933 5.82405 11.0733 6 11.6667 6C12.2304 5.9985 12.7821 5.83664 13.2573 5.53333L14.862 7.138C14.987 7.26298 15.1566 7.33319 15.3333 7.33319ZM12.5926 4.38578C12.3185 4.56892 11.9963 4.66667 11.6667 4.66667C11.2247 4.66667 10.8007 4.49107 10.4882 4.17851C10.1756 3.86595 10 3.44203 10 3C10 2.67037 10.0978 2.34813 10.2809 2.07405C10.464 1.79997 10.7243 1.58635 11.0289 1.4602C11.3334 1.33406 11.6685 1.30105 11.9918 1.36536C12.3151 1.42967 12.6121 1.5884 12.8452 1.82149C13.0783 2.05458 13.237 2.35155 13.3013 2.67485C13.3656 2.99815 13.3326 3.33326 13.2065 3.63781C13.0803 3.94235 12.8667 4.20265 12.5926 4.38578ZM12.6667 12V8C12.6667 7.632 12.368 7.33333 12 7.33333C11.632 7.33333 11.3333 7.632 11.3333 8V12C11.3333 12.368 11.632 12.6667 12 12.6667C12.368 12.6667 12.6667 12.368 12.6667 12ZM9.76733 11.8307L7.72 4.478C7.60867 3.99933 7.30933 3.61933 6.918 3.45533C6.50533 3.282 6.07067 3.294 5.692 3.48867C5.32067 3.67867 5.054 4.02 4.96 4.42533L2.89933 11.8307C2.78267 12.2507 3.09867 12.6667 3.53467 12.6667C3.83 12.6667 4.08933 12.4707 4.16933 12.1867L4.598 10.6667H8.06867L8.49733 12.1867C8.578 12.4707 8.83667 12.6667 9.132 12.6667C9.56867 12.6667 9.884 12.2507 9.76733 11.8307ZM6.40667 4.77667L7.69267 9.33333H4.97467L6.26067 4.77667C6.27933 4.70067 6.38733 4.70067 6.40667 4.77667ZM14.6673 8.81352C14.6673 8.44552 14.966 8.14685 15.334 8.14685C15.702 8.14685 16 8.44552 16 8.81352V12.6667C16 14.5047 14.5047 16 12.6667 16H3.33333C1.49533 16 0 14.5047 0 12.6667V3.33333C0 1.49533 1.49533 1.78835e-10 3.33333 1.78835e-10H7.66667C8.03467 1.78835e-10 8.33333 0.298667 8.33333 0.666667C8.33333 1.03467 8.03467 1.33333 7.66667 1.33333H3.33333C2.23067 1.33333 1.33333 2.23067 1.33333 3.33333V12.6667C1.33333 13.7693 2.23067 14.6667 3.33333 14.6667H12.6673C13.77 14.6667 14.6673 13.7693 14.6673 12.6667V8.81352Z" fill="url(#paint0_linear_3689_48586)"/>
3
+ <defs>
4
+ <linearGradient id="paint0_linear_3689_48586" x1="11.9232" y1="-1.40302" x2="11.9232" y2="16" gradientUnits="userSpaceOnUse">
5
+ <stop stop-color="#592F7C"/>
6
+ <stop offset="1" stop-color="#E22BD3"/>
7
+ </linearGradient>
8
+ </defs>
9
+ </svg>
@@ -1,4 +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="M7.01996 1.20377C8.85437 1.81129 10.7372 2.52661 12.3472 3.151C12.4591 3.88383 12.6126 5.14073 12.6419 6.66013C12.6679 8.39079 12.5248 9.3455 12.4613 9.67831C12.3285 10.1368 12.0497 10.6349 11.6329 11.1587C11.1385 11.7793 10.4653 12.4246 9.6322 13.0762L9.63063 13.0774C8.44655 14.0068 7.35028 14.6059 7.01996 14.7784C6.68964 14.6062 5.59462 14.0084 4.41116 13.0796L4.40959 13.0784C3.57677 12.4271 2.90394 11.7821 2.41049 11.1618C2.01455 10.664 1.74329 10.1889 1.60329 9.74988C1.59954 9.73519 1.59548 9.7205 1.59079 9.7055C1.52829 9.49394 1.32735 8.64173 1.35766 6.54419C1.39079 5.20791 1.51329 4.01414 1.70454 3.14287C3.30957 2.5213 5.1868 1.80941 7.01996 1.20377ZM7.01996 0C6.92589 0 6.83152 0.0150003 6.73995 0.0453134C4.94273 0.63595 3.09926 1.32878 1.22453 2.05504C0.97234 2.15285 0.760773 2.3338 0.62327 2.5538C0.633896 2.55505 0.23795 3.79101 0.170449 6.52075C0.130448 9.25081 0.470455 10.0686 0.459205 10.0696C0.643271 10.6696 0.987652 11.2799 1.4811 11.9005C2.03267 12.5937 2.778 13.3096 3.67833 14.0134C5.16867 15.1831 6.56339 15.8822 6.62183 15.9069C6.74808 15.9688 6.88214 16 7.02027 16C7.15871 16 7.29309 15.9684 7.41934 15.9062C7.47809 15.8816 8.87437 15.1803 10.3641 14.0109C11.2647 13.3065 12.0101 12.5906 12.5619 11.8977C13.0907 11.233 13.4482 10.5808 13.621 9.9402C13.6141 9.93926 13.8642 8.93674 13.8295 6.6395C13.7854 4.34258 13.4654 2.64849 13.4698 2.64693C13.3366 2.38723 13.1032 2.17004 12.8176 2.0591C10.9425 1.33253 9.09875 0.63845 7.30121 0.0459384C7.20902 0.0156253 7.11434 0 7.01996 0Z" fill="currentColor"/>
3
- <path d="M7.01901 11.0311C6.6765 11.0311 6.35462 10.898 6.11274 10.6558C5.87055 10.4136 5.73711 10.0918 5.73711 9.74956V8.7486C5.21335 8.35641 4.90021 7.74202 4.8999 7.07045C4.8999 5.91261 5.8418 4.97041 6.99963 4.97009C7.56058 4.97009 8.08809 5.18853 8.48466 5.58511C8.88123 5.98168 9.09998 6.50919 9.09998 7.07013C9.09998 7.72108 8.80092 8.32516 8.30059 8.71923V9.74956C8.30059 10.0921 8.16747 10.4139 7.92527 10.6558C7.68308 10.898 7.3612 11.0311 7.01901 11.0315V11.0311ZM6.99994 6.1573C6.49681 6.1573 6.08743 6.56669 6.08743 7.06982C6.08743 7.41858 6.2818 7.73202 6.59493 7.88765C6.79681 7.98796 6.92432 8.19391 6.92432 8.41922V9.74925C6.92432 9.80112 6.96682 9.84363 7.01869 9.84363C7.05088 9.84363 7.07276 9.82863 7.08526 9.81613C7.09776 9.80363 7.11276 9.78175 7.11276 9.74956V8.40047C7.11276 8.18109 7.2337 7.97953 7.42745 7.8764C7.72652 7.71702 7.91246 7.40827 7.91215 7.07013C7.91215 6.82638 7.81715 6.59731 7.64496 6.42481C7.47245 6.25262 7.24339 6.15762 6.99963 6.15762L6.99994 6.1573Z" fill="currentColor"/>
4
- </svg>
1
+ <svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.01996 1.20377C8.85437 1.81129 10.7372 2.52661 12.3472 3.151C12.4591 3.88383 12.6126 5.14073 12.6419 6.66013C12.6679 8.39079 12.5248 9.3455 12.4613 9.67831C12.3285 10.1368 12.0497 10.6349 11.6329 11.1587C11.1385 11.7793 10.4653 12.4246 9.6322 13.0762L9.63063 13.0774C8.44655 14.0068 7.35028 14.6059 7.01996 14.7784C6.68964 14.6062 5.59462 14.0084 4.41116 13.0796L4.40959 13.0784C3.57677 12.4271 2.90394 11.7821 2.41049 11.1618C2.01455 10.664 1.74329 10.1889 1.60329 9.74988C1.59954 9.73519 1.59548 9.7205 1.59079 9.7055C1.52829 9.49394 1.32735 8.64173 1.35766 6.54419C1.39079 5.20791 1.51329 4.01414 1.70454 3.14287C3.30957 2.5213 5.1868 1.80941 7.01996 1.20377ZM7.01996 0C6.92589 0 6.83152 0.0150003 6.73995 0.0453134C4.94273 0.63595 3.09926 1.32878 1.22453 2.05504C0.97234 2.15285 0.760773 2.3338 0.62327 2.5538C0.633896 2.55505 0.23795 3.79101 0.170449 6.52075C0.130448 9.25081 0.470455 10.0686 0.459205 10.0696C0.643271 10.6696 0.987652 11.2799 1.4811 11.9005C2.03267 12.5937 2.778 13.3096 3.67833 14.0134C5.16867 15.1831 6.56339 15.8822 6.62183 15.9069C6.74808 15.9688 6.88214 16 7.02027 16C7.15871 16 7.29309 15.9684 7.41934 15.9062C7.47809 15.8816 8.87437 15.1803 10.3641 14.0109C11.2647 13.3065 12.0101 12.5906 12.5619 11.8977C13.0907 11.233 13.4482 10.5808 13.621 9.9402C13.6141 9.93926 13.8642 8.93674 13.8295 6.6395C13.7854 4.34258 13.4654 2.64849 13.4698 2.64693C13.3366 2.38723 13.1032 2.17004 12.8176 2.0591C10.9425 1.33253 9.09875 0.63845 7.30121 0.0459384C7.20902 0.0156253 7.11434 0 7.01996 0Z" fill="currentColor"/>
3
+ <path d="M7.01901 11.0311C6.6765 11.0311 6.35462 10.898 6.11274 10.6558C5.87055 10.4136 5.73711 10.0918 5.73711 9.74956V8.7486C5.21335 8.35641 4.90021 7.74202 4.8999 7.07045C4.8999 5.91261 5.8418 4.97041 6.99963 4.97009C7.56058 4.97009 8.08809 5.18853 8.48466 5.58511C8.88123 5.98168 9.09998 6.50919 9.09998 7.07013C9.09998 7.72108 8.80092 8.32516 8.30059 8.71923V9.74956C8.30059 10.0921 8.16747 10.4139 7.92527 10.6558C7.68308 10.898 7.3612 11.0311 7.01901 11.0315V11.0311ZM6.99994 6.1573C6.49681 6.1573 6.08743 6.56669 6.08743 7.06982C6.08743 7.41858 6.2818 7.73202 6.59493 7.88765C6.79681 7.98796 6.92432 8.19391 6.92432 8.41922V9.74925C6.92432 9.80112 6.96682 9.84363 7.01869 9.84363C7.05088 9.84363 7.07276 9.82863 7.08526 9.81613C7.09776 9.80363 7.11276 9.78175 7.11276 9.74956V8.40047C7.11276 8.18109 7.2337 7.97953 7.42745 7.8764C7.72652 7.71702 7.91246 7.40827 7.91215 7.07013C7.91215 6.82638 7.81715 6.59731 7.64496 6.42481C7.47245 6.25262 7.24339 6.15762 6.99963 6.15762L6.99994 6.1573Z" fill="currentColor"/>
4
+ </svg>
@@ -1,7 +1,7 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M3.49987 4.44384H3.74987V4.19384V2.43159C3.74987 1.50288 4.50276 0.75 5.43147 0.75H10.5683C11.497 0.75 12.2499 1.50288 12.2499 2.43159V7.25H11.2499V2.48291C11.2499 2.07813 10.9218 1.75 10.517 1.75H5.48278C5.07799 1.75 4.74987 2.07812 4.74987 2.48291V4.19384V4.44384H4.99987H5.78271L4.24986 6.74314L2.717 4.44384H3.49987Z" fill="white" stroke="currentColor" stroke-width="0.5"/>
3
- <path d="M15.4999 11.25C15.4999 13.3211 13.8209 15 11.7499 15C9.67881 15 7.99988 13.3211 7.99988 11.25C7.99988 9.17893 9.67881 7.5 11.7499 7.5C13.8209 7.5 15.4999 9.17893 15.4999 11.25Z" fill="white" stroke="currentColor"/>
4
- <path d="M11.5858 13.4614C11.2852 13.4614 11.0374 13.41 10.8434 13.3073C10.6482 13.2045 10.5044 13.0722 10.4093 12.9104C10.3156 12.7486 10.2681 12.5829 10.2681 12.4134C10.2681 12.2426 10.3079 12.0897 10.3888 11.9395C10.4697 11.7892 10.5853 11.6646 10.7356 11.5657C10.8858 11.4669 11.0643 11.4181 11.2698 11.4181C11.2647 11.4579 11.2634 11.5118 11.2634 11.5799C11.2634 11.8804 11.2929 12.1167 11.3507 12.2888C11.4085 12.4609 11.483 12.5842 11.5729 12.6587C11.6628 12.7332 11.754 12.7691 11.849 12.7691C11.9929 12.7691 12.12 12.7114 12.2318 12.5983C12.3435 12.484 12.4 12.3505 12.4 12.1976C12.4 12.0268 12.3268 11.8766 12.1817 11.7468C12.0353 11.6171 11.8503 11.4733 11.6269 11.3166C11.501 11.2228 11.3687 11.1162 11.2274 10.9968C11.0862 10.8786 10.9667 10.7374 10.8678 10.573C10.7689 10.4099 10.7201 10.2159 10.7201 9.99119C10.7201 9.76643 10.7754 9.55195 10.8845 9.37215C10.995 9.19363 11.1401 9.04208 11.3212 8.91879C11.5023 8.7955 11.7026 8.70174 11.9197 8.63624C12.1367 8.57074 12.3538 8.53864 12.5683 8.53864C12.8328 8.53864 13.0499 8.58102 13.2207 8.66578C13.3915 8.75055 13.5186 8.861 13.6034 8.99585C13.6882 9.1307 13.7318 9.26941 13.7318 9.41325C13.7318 9.5481 13.6946 9.67653 13.6214 9.79983C13.5469 9.92312 13.439 10.0233 13.2952 10.0991C13.1513 10.1748 12.9741 10.2134 12.7635 10.2134C12.7776 10.1504 12.7866 10.0939 12.7904 10.0426C12.7943 9.99119 12.7969 9.94495 12.7969 9.90514C12.7969 9.68167 12.7481 9.52113 12.653 9.42481C12.5567 9.32848 12.4501 9.27968 12.3332 9.27968C12.2164 9.27968 12.1136 9.32078 12.0109 9.40426C11.9081 9.48774 11.8568 9.62002 11.8568 9.80368C11.8568 9.96036 11.8979 10.0952 11.9813 10.207C12.0648 10.3187 12.1714 10.4176 12.3037 10.5023C12.436 10.5871 12.576 10.6706 12.7237 10.7515C12.8765 10.8324 13.0229 10.921 13.1642 11.0173C13.3055 11.1137 13.4236 11.2267 13.5174 11.3564C13.6111 11.4861 13.6586 11.6505 13.6586 11.847C13.6586 12.0448 13.6021 12.2541 13.4904 12.4494C13.3787 12.6446 13.2258 12.8167 13.0332 12.9669C12.8405 13.1172 12.6196 13.2366 12.3705 13.3265C12.12 13.4177 11.8593 13.4614 11.5858 13.4614Z" fill="currentColor"/>
5
- <path d="M7.99988 11.25C7.99988 13.3211 6.32095 15 4.24988 15C2.17881 15 0.499878 13.3211 0.499878 11.25C0.499878 9.17893 2.17881 7.5 4.24988 7.5C6.32095 7.5 7.99988 9.17893 7.99988 11.25Z" fill="white" stroke="currentColor"/>
6
- <path d="M3.5858 13.4614C3.28527 13.4614 3.0374 13.41 2.84347 13.3073C2.64825 13.2045 2.50441 13.0722 2.40937 12.9104C2.31562 12.7486 2.2681 12.5829 2.2681 12.4134C2.2681 12.2426 2.30791 12.0897 2.38882 11.9395C2.46973 11.7892 2.58532 11.6646 2.73559 11.5657C2.88585 11.4669 3.06437 11.4181 3.26986 11.4181C3.26472 11.4579 3.26344 11.5118 3.26344 11.5799C3.26344 11.8804 3.29297 12.1167 3.35077 12.2888C3.40856 12.4609 3.48305 12.5842 3.57295 12.6587C3.66286 12.7332 3.75404 12.7691 3.84908 12.7691C3.99292 12.7691 4.12007 12.7114 4.2318 12.5983C4.34354 12.484 4.40005 12.3505 4.40005 12.1976C4.40005 12.0268 4.32684 11.8766 4.18172 11.7468C4.0353 11.6171 3.85036 11.4733 3.62689 11.3166C3.50103 11.2228 3.36875 11.1162 3.22747 10.9968C3.0862 10.8786 2.96676 10.7374 2.86787 10.573C2.76898 10.4099 2.72017 10.2159 2.72017 9.99119C2.72017 9.76643 2.7754 9.55195 2.88456 9.37215C2.99502 9.19363 3.14014 9.04208 3.32123 8.91879C3.50232 8.7955 3.70267 8.70174 3.91972 8.63624C4.13677 8.57074 4.35381 8.53864 4.56829 8.53864C4.83286 8.53864 5.04991 8.58102 5.22072 8.66578C5.39153 8.75055 5.51868 8.861 5.60344 8.99585C5.68821 9.1307 5.73188 9.26941 5.73188 9.41325C5.73188 9.5481 5.69463 9.67653 5.62142 9.79983C5.54693 9.92312 5.43905 10.0233 5.29521 10.0991C5.15137 10.1748 4.97413 10.2134 4.76351 10.2134C4.77763 10.1504 4.78662 10.0939 4.79048 10.0426C4.79433 9.99119 4.7969 9.94495 4.7969 9.90514C4.7969 9.68167 4.7481 9.52113 4.65306 9.42481C4.55673 9.32848 4.45014 9.27968 4.33326 9.27968C4.21639 9.27968 4.11365 9.32078 4.0109 9.40426C3.90816 9.48774 3.85679 9.62002 3.85679 9.80368C3.85679 9.96036 3.89788 10.0952 3.98136 10.207C4.06484 10.3187 4.17144 10.4176 4.30373 10.5023C4.43601 10.5871 4.576 10.6706 4.72369 10.7515C4.87653 10.8324 5.02294 10.921 5.16421 11.0173C5.30549 11.1137 5.42364 11.2267 5.5174 11.3564C5.61115 11.4861 5.65867 11.6505 5.65867 11.847C5.65867 12.0448 5.60216 12.2541 5.49043 12.4494C5.37869 12.6446 5.22586 12.8167 5.03321 12.9669C4.84057 13.1172 4.61966 13.2366 4.37051 13.3265C4.12007 13.4177 3.85935 13.4614 3.5858 13.4614Z" fill="currentColor"/>
7
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.49987 4.44384H3.74987V4.19384V2.43159C3.74987 1.50288 4.50276 0.75 5.43147 0.75H10.5683C11.497 0.75 12.2499 1.50288 12.2499 2.43159V7.25H11.2499V2.48291C11.2499 2.07813 10.9218 1.75 10.517 1.75H5.48278C5.07799 1.75 4.74987 2.07812 4.74987 2.48291V4.19384V4.44384H4.99987H5.78271L4.24986 6.74314L2.717 4.44384H3.49987Z" fill="white" stroke="currentColor" stroke-width="0.5"/>
3
+ <path d="M15.4999 11.25C15.4999 13.3211 13.8209 15 11.7499 15C9.67881 15 7.99988 13.3211 7.99988 11.25C7.99988 9.17893 9.67881 7.5 11.7499 7.5C13.8209 7.5 15.4999 9.17893 15.4999 11.25Z" fill="white" stroke="currentColor"/>
4
+ <path d="M11.5858 13.4614C11.2852 13.4614 11.0374 13.41 10.8434 13.3073C10.6482 13.2045 10.5044 13.0722 10.4093 12.9104C10.3156 12.7486 10.2681 12.5829 10.2681 12.4134C10.2681 12.2426 10.3079 12.0897 10.3888 11.9395C10.4697 11.7892 10.5853 11.6646 10.7356 11.5657C10.8858 11.4669 11.0643 11.4181 11.2698 11.4181C11.2647 11.4579 11.2634 11.5118 11.2634 11.5799C11.2634 11.8804 11.2929 12.1167 11.3507 12.2888C11.4085 12.4609 11.483 12.5842 11.5729 12.6587C11.6628 12.7332 11.754 12.7691 11.849 12.7691C11.9929 12.7691 12.12 12.7114 12.2318 12.5983C12.3435 12.484 12.4 12.3505 12.4 12.1976C12.4 12.0268 12.3268 11.8766 12.1817 11.7468C12.0353 11.6171 11.8503 11.4733 11.6269 11.3166C11.501 11.2228 11.3687 11.1162 11.2274 10.9968C11.0862 10.8786 10.9667 10.7374 10.8678 10.573C10.7689 10.4099 10.7201 10.2159 10.7201 9.99119C10.7201 9.76643 10.7754 9.55195 10.8845 9.37215C10.995 9.19363 11.1401 9.04208 11.3212 8.91879C11.5023 8.7955 11.7026 8.70174 11.9197 8.63624C12.1367 8.57074 12.3538 8.53864 12.5683 8.53864C12.8328 8.53864 13.0499 8.58102 13.2207 8.66578C13.3915 8.75055 13.5186 8.861 13.6034 8.99585C13.6882 9.1307 13.7318 9.26941 13.7318 9.41325C13.7318 9.5481 13.6946 9.67653 13.6214 9.79983C13.5469 9.92312 13.439 10.0233 13.2952 10.0991C13.1513 10.1748 12.9741 10.2134 12.7635 10.2134C12.7776 10.1504 12.7866 10.0939 12.7904 10.0426C12.7943 9.99119 12.7969 9.94495 12.7969 9.90514C12.7969 9.68167 12.7481 9.52113 12.653 9.42481C12.5567 9.32848 12.4501 9.27968 12.3332 9.27968C12.2164 9.27968 12.1136 9.32078 12.0109 9.40426C11.9081 9.48774 11.8568 9.62002 11.8568 9.80368C11.8568 9.96036 11.8979 10.0952 11.9813 10.207C12.0648 10.3187 12.1714 10.4176 12.3037 10.5023C12.436 10.5871 12.576 10.6706 12.7237 10.7515C12.8765 10.8324 13.0229 10.921 13.1642 11.0173C13.3055 11.1137 13.4236 11.2267 13.5174 11.3564C13.6111 11.4861 13.6586 11.6505 13.6586 11.847C13.6586 12.0448 13.6021 12.2541 13.4904 12.4494C13.3787 12.6446 13.2258 12.8167 13.0332 12.9669C12.8405 13.1172 12.6196 13.2366 12.3705 13.3265C12.12 13.4177 11.8593 13.4614 11.5858 13.4614Z" fill="currentColor"/>
5
+ <path d="M7.99988 11.25C7.99988 13.3211 6.32095 15 4.24988 15C2.17881 15 0.499878 13.3211 0.499878 11.25C0.499878 9.17893 2.17881 7.5 4.24988 7.5C6.32095 7.5 7.99988 9.17893 7.99988 11.25Z" fill="white" stroke="currentColor"/>
6
+ <path d="M3.5858 13.4614C3.28527 13.4614 3.0374 13.41 2.84347 13.3073C2.64825 13.2045 2.50441 13.0722 2.40937 12.9104C2.31562 12.7486 2.2681 12.5829 2.2681 12.4134C2.2681 12.2426 2.30791 12.0897 2.38882 11.9395C2.46973 11.7892 2.58532 11.6646 2.73559 11.5657C2.88585 11.4669 3.06437 11.4181 3.26986 11.4181C3.26472 11.4579 3.26344 11.5118 3.26344 11.5799C3.26344 11.8804 3.29297 12.1167 3.35077 12.2888C3.40856 12.4609 3.48305 12.5842 3.57295 12.6587C3.66286 12.7332 3.75404 12.7691 3.84908 12.7691C3.99292 12.7691 4.12007 12.7114 4.2318 12.5983C4.34354 12.484 4.40005 12.3505 4.40005 12.1976C4.40005 12.0268 4.32684 11.8766 4.18172 11.7468C4.0353 11.6171 3.85036 11.4733 3.62689 11.3166C3.50103 11.2228 3.36875 11.1162 3.22747 10.9968C3.0862 10.8786 2.96676 10.7374 2.86787 10.573C2.76898 10.4099 2.72017 10.2159 2.72017 9.99119C2.72017 9.76643 2.7754 9.55195 2.88456 9.37215C2.99502 9.19363 3.14014 9.04208 3.32123 8.91879C3.50232 8.7955 3.70267 8.70174 3.91972 8.63624C4.13677 8.57074 4.35381 8.53864 4.56829 8.53864C4.83286 8.53864 5.04991 8.58102 5.22072 8.66578C5.39153 8.75055 5.51868 8.861 5.60344 8.99585C5.68821 9.1307 5.73188 9.26941 5.73188 9.41325C5.73188 9.5481 5.69463 9.67653 5.62142 9.79983C5.54693 9.92312 5.43905 10.0233 5.29521 10.0991C5.15137 10.1748 4.97413 10.2134 4.76351 10.2134C4.77763 10.1504 4.78662 10.0939 4.79048 10.0426C4.79433 9.99119 4.7969 9.94495 4.7969 9.90514C4.7969 9.68167 4.7481 9.52113 4.65306 9.42481C4.55673 9.32848 4.45014 9.27968 4.33326 9.27968C4.21639 9.27968 4.11365 9.32078 4.0109 9.40426C3.90816 9.48774 3.85679 9.62002 3.85679 9.80368C3.85679 9.96036 3.89788 10.0952 3.98136 10.207C4.06484 10.3187 4.17144 10.4176 4.30373 10.5023C4.43601 10.5871 4.576 10.6706 4.72369 10.7515C4.87653 10.8324 5.02294 10.921 5.16421 11.0173C5.30549 11.1137 5.42364 11.2267 5.5174 11.3564C5.61115 11.4861 5.65867 11.6505 5.65867 11.847C5.65867 12.0448 5.60216 12.2541 5.49043 12.4494C5.37869 12.6446 5.22586 12.8167 5.03321 12.9669C4.84057 13.1172 4.61966 13.2366 4.37051 13.3265C4.12007 13.4177 3.85935 13.4614 3.5858 13.4614Z" fill="currentColor"/>
7
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M1.09714 11.9428H12.3886C12.6796 11.9428 12.9586 11.8273 13.1644 11.6215C13.3701 11.4157 13.4857 11.1367 13.4857 10.8457V10.1143H14.9029C15.1938 10.1143 15.4729 9.99868 15.6787 9.79293C15.8844 9.58717 16 9.30811 16 9.01713V1.15427C16 0.863291 15.8844 0.584229 15.6787 0.378474C15.4729 0.17272 15.1938 0.0571289 14.9029 0.0571289H3.61143C3.32045 0.0571289 3.04139 0.17272 2.83563 0.378474C2.62988 0.584229 2.51429 0.863291 2.51429 1.15427V1.8857H1.09714C0.440229 1.8857 0 2.45667 0 2.91427V10.8457C0 11.1367 0.115591 11.4157 0.321346 11.6215C0.5271 11.8273 0.806162 11.9428 1.09714 11.9428ZM0.914286 4.56913L4.5792 6.7177L0.914286 10.3822V4.56913ZM12.5714 10.3822L8.90606 6.71724L12.5714 4.56867V10.3822ZM8.09143 7.19404L11.925 11.0286H1.56069L5.39429 7.19404C5.80577 7.42638 6.27031 7.54847 6.74286 7.54847C7.21541 7.54847 7.67994 7.42638 8.09143 7.19404ZM3.42857 1.15427C3.42857 1.10577 3.44784 1.05926 3.48213 1.02497C3.51642 0.99068 3.56293 0.971415 3.61143 0.971415H14.9029C14.9514 0.971415 14.9979 0.99068 15.0322 1.02497C15.0664 1.05926 15.0857 1.10577 15.0857 1.15427V9.01713C15.0857 9.06563 15.0664 9.11214 15.0322 9.14643C14.9979 9.18072 14.9514 9.19999 14.9029 9.19999H13.4857V2.98284C13.4857 2.69186 13.3701 2.4128 13.1644 2.20705C12.9586 2.00129 12.6796 1.8857 12.3886 1.8857H3.42857V1.15427ZM1.09714 2.79999H12.3886C12.4371 2.79999 12.4836 2.81925 12.5179 2.85354C12.5522 2.88784 12.5714 2.93435 12.5714 2.98284C12.5714 3.09439 12.6098 3.4857 12.2322 3.70833L7.6672 6.38353C7.38679 6.54787 7.06765 6.63449 6.74263 6.63449C6.41761 6.63449 6.09847 6.54787 5.81806 6.38353L1.25303 3.70833C0.887314 3.49484 0.913828 3.12959 0.913828 2.98284C0.913828 2.95879 0.918573 2.93498 0.927791 2.91276C0.937009 2.89055 0.950519 2.87037 0.967548 2.85338C0.984576 2.8364 1.00479 2.82294 1.02703 2.81377C1.04926 2.80461 1.07309 2.79993 1.09714 2.79999Z" fill="currentColor"/>
3
- </svg>
1
+ <svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.09714 11.9428H12.3886C12.6796 11.9428 12.9586 11.8273 13.1644 11.6215C13.3701 11.4157 13.4857 11.1367 13.4857 10.8457V10.1143H14.9029C15.1938 10.1143 15.4729 9.99868 15.6787 9.79293C15.8844 9.58717 16 9.30811 16 9.01713V1.15427C16 0.863291 15.8844 0.584229 15.6787 0.378474C15.4729 0.17272 15.1938 0.0571289 14.9029 0.0571289H3.61143C3.32045 0.0571289 3.04139 0.17272 2.83563 0.378474C2.62988 0.584229 2.51429 0.863291 2.51429 1.15427V1.8857H1.09714C0.440229 1.8857 0 2.45667 0 2.91427V10.8457C0 11.1367 0.115591 11.4157 0.321346 11.6215C0.5271 11.8273 0.806162 11.9428 1.09714 11.9428ZM0.914286 4.56913L4.5792 6.7177L0.914286 10.3822V4.56913ZM12.5714 10.3822L8.90606 6.71724L12.5714 4.56867V10.3822ZM8.09143 7.19404L11.925 11.0286H1.56069L5.39429 7.19404C5.80577 7.42638 6.27031 7.54847 6.74286 7.54847C7.21541 7.54847 7.67994 7.42638 8.09143 7.19404ZM3.42857 1.15427C3.42857 1.10577 3.44784 1.05926 3.48213 1.02497C3.51642 0.99068 3.56293 0.971415 3.61143 0.971415H14.9029C14.9514 0.971415 14.9979 0.99068 15.0322 1.02497C15.0664 1.05926 15.0857 1.10577 15.0857 1.15427V9.01713C15.0857 9.06563 15.0664 9.11214 15.0322 9.14643C14.9979 9.18072 14.9514 9.19999 14.9029 9.19999H13.4857V2.98284C13.4857 2.69186 13.3701 2.4128 13.1644 2.20705C12.9586 2.00129 12.6796 1.8857 12.3886 1.8857H3.42857V1.15427ZM1.09714 2.79999H12.3886C12.4371 2.79999 12.4836 2.81925 12.5179 2.85354C12.5522 2.88784 12.5714 2.93435 12.5714 2.98284C12.5714 3.09439 12.6098 3.4857 12.2322 3.70833L7.6672 6.38353C7.38679 6.54787 7.06765 6.63449 6.74263 6.63449C6.41761 6.63449 6.09847 6.54787 5.81806 6.38353L1.25303 3.70833C0.887314 3.49484 0.913828 3.12959 0.913828 2.98284C0.913828 2.95879 0.918573 2.93498 0.927791 2.91276C0.937009 2.89055 0.950519 2.87037 0.967548 2.85338C0.984576 2.8364 1.00479 2.82294 1.02703 2.81377C1.04926 2.80461 1.07309 2.79993 1.09714 2.79999Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_613_49273)">
3
+ <path d="M15.4386 7.15569L14 5.71702V4.56969C14 3.46702 13.1026 2.56969 12 2.56969H10.8526L9.41463 1.13169C8.65863 0.376352 7.3413 0.376352 6.58596 1.13169L5.14729 2.56969H3.99996C2.89729 2.56969 1.99996 3.46702 1.99996 4.56969V5.71702L0.561295 7.15569C-0.217372 7.93569 -0.217372 9.20369 0.561295 9.98369L1.99996 11.4224V12.5697C1.99996 13.6724 2.89729 14.5697 3.99996 14.5697H5.14729L6.5853 16.0077C6.9633 16.385 7.4653 16.5937 7.99996 16.5937C8.53463 16.5937 9.03663 16.3857 9.41396 16.0077L10.8526 14.5697H12C13.1026 14.5697 14 13.6724 14 12.5697V11.4224L15.4386 9.98369C16.2173 9.20369 16.2173 7.93569 15.4386 7.15569ZM9.96796 6.87969C10.1166 7.72769 9.7133 8.57502 8.96396 8.98902C8.83863 9.05769 8.66596 9.36435 8.66596 9.57302V9.90302C8.66596 10.2717 8.3673 10.5697 7.9993 10.5697C7.6313 10.5697 7.33263 10.2717 7.33263 9.90302V9.57302C7.33263 8.88435 7.75729 8.13102 8.31996 7.82102C8.5133 7.71502 8.71663 7.46435 8.65463 7.11035C8.60863 6.84902 8.38663 6.62702 8.12596 6.58169C7.92196 6.54369 7.72463 6.59569 7.5713 6.72569C7.4193 6.85235 7.33263 7.03902 7.33263 7.23702C7.33263 7.60569 7.03396 7.90369 6.66596 7.90369C6.29796 7.90369 5.9993 7.60569 5.9993 7.23702C5.9993 6.64435 6.25996 6.08569 6.71396 5.70435C7.1673 5.32302 7.76596 5.16169 8.35596 5.26902C9.16196 5.40969 9.82596 6.07169 9.96796 6.87969ZM8.9993 12.2364C8.9993 12.7884 8.5513 13.2364 7.9993 13.2364C7.4473 13.2364 6.9993 12.7884 6.9993 12.2364C6.9993 11.6844 7.4473 11.2364 7.9993 11.2364C8.5513 11.2364 8.9993 11.6844 8.9993 12.2364Z" fill="currentColor"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_613_49273">
7
+ <rect width="16" height="16" fill="white" transform="translate(0 0.56958)"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.6006 9.17662L6.68843 12.5781V11.1817C6.68843 11.1128 6.6324 11.0567 6.56343 11.0567H1.37695V7.29659H6.56343C6.63246 7.29659 6.68843 7.24065 6.68843 7.17159V5.77518L10.6006 9.17662ZM14.9394 1.55273L16.4502 3.06355H14.9394V1.55273Z" fill="currentColor" stroke="currentColor" stroke-width="0.2"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.3145 4.21158H7.23353C7.09525 4.21158 6.98337 4.0997 6.98337 3.96158C6.98337 3.82389 7.09525 3.71173 7.23353 3.71173H12.3144C12.4526 3.71173 12.5644 3.82392 12.5644 3.96158C12.5645 4.0997 12.4526 4.21158 12.3145 4.21158ZM14.5616 14.3913C14.5616 14.5295 14.4494 14.6414 14.3116 14.6414H7.23353C7.09525 14.6414 6.98337 14.5295 6.98337 14.3913C6.98337 14.2536 7.09525 14.1413 7.23353 14.1413H14.3116C14.4494 14.1413 14.5616 14.2536 14.5616 14.3913ZM14.5616 12.3054C14.5616 12.4435 14.4494 12.5554 14.3116 12.5554H8.68625C8.54812 12.5554 8.43625 12.4435 8.43625 12.3054C8.43625 12.1676 8.54812 12.0554 8.68625 12.0554H14.3116C14.4494 12.0554 14.5616 12.1676 14.5616 12.3054ZM14.5616 8.13343C14.5616 8.27171 14.4494 8.38359 14.3116 8.38359H11.2879C11.1498 8.38359 11.0379 8.27171 11.0379 8.13343C11.0379 7.99574 11.1498 7.88355 11.2879 7.88355H14.3116C14.4494 7.88355 14.5616 7.99574 14.5616 8.13343ZM14.5616 10.2194C14.5616 10.3575 14.4494 10.4694 14.3116 10.4694H11.2879C11.1498 10.4694 11.0379 10.3575 11.0379 10.2194C11.0379 10.0817 11.1498 9.9694 11.2879 9.9694H14.3116C14.4494 9.9694 14.5616 10.0817 14.5616 10.2194ZM14.5616 6.04758C14.5616 6.18571 14.4494 6.29758 14.3116 6.29758H8.68625C8.54812 6.29758 8.43625 6.18571 8.43625 6.04758C8.43625 5.90974 8.54812 5.79758 8.68625 5.79758H14.3116C14.4494 5.79755 14.5616 5.90974 14.5616 6.04758ZM5.04287 16.501H16.5019V3.43842H14.8144C14.6763 3.43842 14.5644 3.3267 14.5644 3.18858V1.50101H5.04287V6.92158H6.31356V5.5007C6.31356 5.40295 6.37062 5.3138 6.45978 5.27324C6.54881 5.23255 6.65346 5.24789 6.72718 5.3123L10.955 8.98796C11.0097 9.03543 11.041 9.10412 11.041 9.17665C11.041 9.24887 11.0097 9.31787 10.955 9.36549L6.72718 13.041C6.6809 13.0814 6.62253 13.1026 6.56312 13.1026C6.52818 13.1026 6.49281 13.0951 6.45978 13.0801C6.37059 13.0395 6.31356 12.9503 6.31356 12.8526V11.4316H5.04287V16.501ZM1.50195 7.42158V10.9317H6.56343C6.70125 10.9317 6.81343 11.0436 6.81343 11.1817V12.3038L10.4101 9.17665L6.81343 6.04949V7.17158C6.81343 7.30986 6.70125 7.42158 6.56343 7.42158H1.50195ZM15.0644 1.85448L16.1485 2.93851H15.0644V1.85448ZM16.9288 3.01195L14.991 1.0741C14.9441 1.02723 14.8806 1.00098 14.8144 1.00098H4.79287C4.65474 1.00098 4.54287 1.11285 4.54287 1.25098V6.92155H1.25195C1.11383 6.92155 1.00195 7.03343 1.00195 7.17155V11.1817C1.00195 11.3198 1.11383 11.4315 1.25195 11.4315H4.54287V16.751C4.54287 16.8891 4.65474 17.001 4.79287 17.001H16.752C16.8901 17.001 17.002 16.8891 17.002 16.751V3.18854C17.002 3.12223 16.9757 3.05882 16.9288 3.01195Z" fill="currentColor" stroke="currentColor" stroke-width="0.2"/>
4
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="9" height="9" viewBox="0 0 9 9" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_613_49232)">
3
+ <path d="M5.8036 0.56958C5.3771 0.59908 4.8786 0.872078 4.58811 1.22758C4.32311 1.55007 4.10511 2.02907 4.19011 2.49457C4.65611 2.50907 5.1376 2.22957 5.4166 1.86807C5.6776 1.53157 5.8751 1.05558 5.8036 0.56958Z" fill="black"/>
4
+ <path d="M7.4891 3.25363C7.07961 2.74014 6.50411 2.44214 5.96061 2.44214C5.24312 2.44214 4.93962 2.78564 4.44112 2.78564C3.92712 2.78564 3.53663 2.44314 2.91613 2.44314C2.30663 2.44314 1.65764 2.81564 1.24614 3.45263C0.667643 4.34963 0.766642 6.03612 1.70414 7.47261C2.03963 7.98661 2.48763 8.5646 3.07363 8.5696C3.59513 8.5746 3.74213 8.23511 4.44862 8.23161C5.15512 8.22761 5.28912 8.5741 5.80961 8.5686C6.39611 8.5641 6.86861 7.92361 7.2041 7.40961C7.4446 7.04111 7.5341 6.85561 7.7206 6.43962C6.36411 5.92312 6.14661 3.99413 7.4891 3.25363Z" fill="currentColor"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_613_49232">
8
+ <rect width="8" height="8" fill="white" transform="translate(0.303955 0.56958)"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -1,8 +1,8 @@
1
- <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <mask id="path-1-outside-1_2947_12817" maskUnits="userSpaceOnUse" x="0" y="0.390015" width="18" height="17" fill="black">
3
- <rect fill="white" y="0.390015" width="18" height="17"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M15.1729 2.60648C15.1721 1.93451 14.6272 1.39001 13.9551 1.39001H8.85584C8.53286 1.39001 8.22312 1.51828 7.99472 1.74665L1.35682 8.38317C0.881098 8.85878 0.88106 9.62997 1.35671 10.1057L6.45599 15.205C6.6938 15.4428 7.00552 15.5618 7.31723 15.5618C7.51344 15.5618 7.70751 15.5091 7.88529 15.4148C7.95066 15.361 7.99975 15.322 8.04251 15.288C8.06738 15.2682 8.09011 15.2501 8.11266 15.2318C8.35215 15.0376 8.57128 14.8182 11.1178 12.2689C12.0221 11.3637 13.2199 10.1646 14.8163 8.56853C15.0447 8.34009 15.1731 8.03027 15.1731 7.70721L15.173 2.97696L15.1729 2.60648ZM14.5641 7.70717C14.5641 7.86984 14.5007 8.02281 14.3857 8.13783L7.74778 14.7745C7.63276 14.8895 7.47983 14.9528 7.31716 14.9528C7.15449 14.9528 7.00159 14.8895 6.88654 14.7745L1.78733 9.67511C1.67231 9.56009 1.60897 9.40712 1.60897 9.24449C1.60897 9.08182 1.67235 8.92889 1.78737 8.81387L8.42526 2.1773C8.54028 2.06232 8.69317 1.99899 8.85584 1.99899H13.9552C14.2909 1.99899 14.5641 2.27219 14.5641 2.60796V7.70717H14.5641ZM16.391 2.60796V8.31611C16.391 8.47878 16.3276 8.63175 16.2126 8.74677L9.01801 15.9401L9.44859 16.3707L16.6432 9.17743C16.8716 8.94899 17 8.63917 17 8.31611V2.60796H16.391ZM10.6058 4.73937C10.6058 4.06764 11.1523 3.52143 11.8237 3.52143C12.4951 3.52143 13.0417 4.06764 13.0417 4.73937C13.0417 5.41111 12.4951 5.95732 11.8237 5.95732C11.1523 5.95732 10.6058 5.41111 10.6058 4.73937ZM11.2147 4.73937C11.2147 5.07507 11.4877 5.34835 11.8237 5.34835C12.1597 5.34835 12.4327 5.07507 12.4327 4.73937C12.4327 4.40368 12.1597 4.1304 11.8237 4.1304C11.4877 4.1304 11.2147 4.40368 11.2147 4.73937Z"/>
5
- </mask>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M15.1729 2.60648C15.1721 1.93451 14.6272 1.39001 13.9551 1.39001H8.85584C8.53286 1.39001 8.22312 1.51828 7.99472 1.74665L1.35682 8.38317C0.881098 8.85878 0.88106 9.62997 1.35671 10.1057L6.45599 15.205C6.6938 15.4428 7.00552 15.5618 7.31723 15.5618C7.51344 15.5618 7.70751 15.5091 7.88529 15.4148C7.95066 15.361 7.99975 15.322 8.04251 15.288C8.06738 15.2682 8.09011 15.2501 8.11266 15.2318C8.35215 15.0376 8.57128 14.8182 11.1178 12.2689C12.0221 11.3637 13.2199 10.1646 14.8163 8.56853C15.0447 8.34009 15.1731 8.03027 15.1731 7.70721L15.173 2.97696L15.1729 2.60648ZM14.5641 7.70717C14.5641 7.86984 14.5007 8.02281 14.3857 8.13783L7.74778 14.7745C7.63276 14.8895 7.47983 14.9528 7.31716 14.9528C7.15449 14.9528 7.00159 14.8895 6.88654 14.7745L1.78733 9.67511C1.67231 9.56009 1.60897 9.40712 1.60897 9.24449C1.60897 9.08182 1.67235 8.92889 1.78737 8.81387L8.42526 2.1773C8.54028 2.06232 8.69317 1.99899 8.85584 1.99899H13.9552C14.2909 1.99899 14.5641 2.27219 14.5641 2.60796V7.70717H14.5641ZM16.391 2.60796V8.31611C16.391 8.47878 16.3276 8.63175 16.2126 8.74677L9.01801 15.9401L9.44859 16.3707L16.6432 9.17743C16.8716 8.94899 17 8.63917 17 8.31611V2.60796H16.391ZM10.6058 4.73937C10.6058 4.06764 11.1523 3.52143 11.8237 3.52143C12.4951 3.52143 13.0417 4.06764 13.0417 4.73937C13.0417 5.41111 12.4951 5.95732 11.8237 5.95732C11.1523 5.95732 10.6058 5.41111 10.6058 4.73937ZM11.2147 4.73937C11.2147 5.07507 11.4877 5.34835 11.8237 5.34835C12.1597 5.34835 12.4327 5.07507 12.4327 4.73937C12.4327 4.40368 12.1597 4.1304 11.8237 4.1304C11.4877 4.1304 11.2147 4.40368 11.2147 4.73937Z" fill="currentColor"/>
7
- <path d="M15.1729 2.60648L15.6729 2.60635V2.60586L15.1729 2.60648ZM7.99472 1.74665L8.34823 2.10024L8.34824 2.10023L7.99472 1.74665ZM1.35682 8.38317L1.71033 8.73677L1.71034 8.73676L1.35682 8.38317ZM1.35671 10.1057L1.00312 10.4592L1.00315 10.4592L1.35671 10.1057ZM6.45599 15.205L6.10244 15.5586L6.10244 15.5586L6.45599 15.205ZM7.88529 15.4148L8.11947 15.8566L8.16412 15.8329L8.20314 15.8008L7.88529 15.4148ZM8.04251 15.288L8.35367 15.6794L8.35367 15.6794L8.04251 15.288ZM8.11266 15.2318L7.79765 14.8436L7.79764 14.8436L8.11266 15.2318ZM11.1178 12.2689L11.4716 12.6223L11.1178 12.2689ZM14.8163 8.56853L15.1698 8.92212L15.1698 8.92211L14.8163 8.56853ZM15.1731 7.70721H15.6731V7.7072L15.1731 7.70721ZM15.173 2.97696L15.673 2.97696V2.97684L15.173 2.97696ZM14.3857 8.13783L14.7392 8.49142L14.7393 8.49138L14.3857 8.13783ZM14.5641 7.70717V7.20717H14.0641V7.70717H14.5641ZM7.74778 14.7745L7.39426 14.4209L7.39422 14.4209L7.74778 14.7745ZM6.88654 14.7745L6.53298 15.128L6.5331 15.1281L6.88654 14.7745ZM1.78733 9.67511L2.14089 9.32156L2.14088 9.32156L1.78733 9.67511ZM1.78737 8.81387L1.43385 8.46028L1.43381 8.46032L1.78737 8.81387ZM8.42526 2.1773L8.07177 1.82369L8.07174 1.82372L8.42526 2.1773ZM14.5641 7.70717V8.20717H15.0641V7.70717H14.5641ZM16.391 2.60796V2.10796H15.891V2.60796H16.391ZM16.2126 8.74677L16.5661 9.10035L16.5662 9.10032L16.2126 8.74677ZM9.01801 15.9401L8.66448 15.5865L8.31088 15.94L8.66444 16.2936L9.01801 15.9401ZM9.44859 16.3707L9.09502 16.7242L9.44854 17.0778L9.80211 16.7243L9.44859 16.3707ZM16.6432 9.17743L16.9967 9.53101L16.9967 9.53101L16.6432 9.17743ZM17 2.60796H17.5V2.10796H17V2.60796ZM13.9551 1.89001C14.3512 1.89001 14.6724 2.2109 14.6729 2.6071L15.6729 2.60586C15.6717 1.65813 14.9033 0.890015 13.9551 0.890015V1.89001ZM8.85584 1.89001H13.9551V0.890015H8.85584V1.89001ZM8.34824 2.10023C8.48287 1.96563 8.66543 1.89001 8.85584 1.89001V0.890015C8.40029 0.890015 7.96338 1.07093 7.64119 1.39306L8.34824 2.10023ZM1.71034 8.73676L8.34823 2.10024L7.6412 1.39306L1.0033 8.02958L1.71034 8.73676ZM1.71029 9.75217C1.42987 9.4717 1.42993 9.01711 1.71033 8.73677L1.00331 8.02958C0.33227 8.70046 0.332252 9.78824 1.00312 10.4592L1.71029 9.75217ZM6.80955 14.8515L1.71026 9.75214L1.00315 10.4592L6.10244 15.5586L6.80955 14.8515ZM7.31723 15.0618C7.13272 15.0618 6.94983 14.9917 6.80954 14.8515L6.10244 15.5586C6.43776 15.8939 6.87831 16.0618 7.31723 16.0618V15.0618ZM7.65112 14.9731C7.53774 15.0332 7.42348 15.0618 7.31723 15.0618V16.0618C7.6034 16.0618 7.87728 15.985 8.11947 15.8566L7.65112 14.9731ZM7.73134 14.8966C7.68824 14.9309 7.63633 14.9721 7.56744 15.0289L8.20314 15.8008C8.26499 15.7499 8.31125 15.7131 8.35367 15.6794L7.73134 14.8966ZM7.79764 14.8436C7.77734 14.86 7.75657 14.8766 7.73134 14.8966L8.35367 15.6794C8.37818 15.6599 8.40287 15.6403 8.42767 15.6201L7.79764 14.8436ZM10.7641 11.9156C8.19939 14.483 8.01035 14.671 7.79765 14.8436L8.42767 15.6201C8.69394 15.4041 8.94318 15.1534 11.4716 12.6223L10.7641 11.9156ZM14.4627 8.21494C12.8662 9.81113 11.6684 11.0103 10.7641 11.9156L11.4716 12.6223C12.3758 11.717 13.5735 10.5181 15.1698 8.92212L14.4627 8.21494ZM14.6731 7.70721C14.6731 7.89765 14.5974 8.08027 14.4627 8.21495L15.1698 8.92211C15.492 8.5999 15.6731 8.1629 15.6731 7.70721H14.6731ZM14.673 2.97697L14.6731 7.70722L15.6731 7.7072L15.673 2.97696L14.673 2.97697ZM14.6729 2.60661L14.673 2.97709L15.673 2.97684L15.6729 2.60635L14.6729 2.60661ZM14.7393 8.49138C14.948 8.28261 15.0641 8.00247 15.0641 7.70717H14.0641C14.0641 7.73722 14.0534 7.76301 14.0322 7.78428L14.7393 8.49138ZM8.1013 15.1281L14.7392 8.49142L14.0322 7.78424L7.39426 14.4209L8.1013 15.1281ZM7.31716 15.4528C7.61241 15.4528 7.89252 15.3368 8.10133 15.128L7.39422 14.4209C7.37299 14.4421 7.34725 14.4528 7.31716 14.4528V15.4528ZM6.5331 15.1281C6.74181 15.3367 7.02179 15.4528 7.31716 15.4528V14.4528C7.28718 14.4528 7.26137 14.4422 7.23997 14.4208L6.5331 15.1281ZM1.43377 10.0287L6.53298 15.128L7.24009 14.4209L2.14089 9.32156L1.43377 10.0287ZM1.10897 9.24449C1.10897 9.53969 1.22495 9.81984 1.43377 10.0287L2.14088 9.32156C2.11966 9.30034 2.10897 9.27456 2.10897 9.24449H1.10897ZM1.43381 8.46032C1.22506 8.66907 1.10897 8.94916 1.10897 9.24449H2.10897C2.10897 9.21448 2.11963 9.18871 2.14092 9.16742L1.43381 8.46032ZM8.07174 1.82372L1.43385 8.46028L2.14088 9.16746L8.77878 2.53089L8.07174 1.82372ZM8.85584 1.49899C8.56057 1.49899 8.28053 1.615 8.07177 1.82369L8.77876 2.53092C8.80003 2.50965 8.82578 2.49899 8.85584 2.49899V1.49899ZM13.9552 1.49899H8.85584V2.49899H13.9552V1.49899ZM15.0641 2.60796C15.0641 1.99605 14.5671 1.49899 13.9552 1.49899V2.49899C14.0148 2.49899 14.0641 2.54833 14.0641 2.60796H15.0641ZM15.0641 7.70717V2.60796H14.0641V7.70717H15.0641ZM14.5641 8.20717H14.5641V7.20717H14.5641V8.20717ZM16.891 8.31611V2.60796H15.891V8.31611H16.891ZM16.5662 9.10032C16.7749 8.89155 16.891 8.61141 16.891 8.31611H15.891C15.891 8.34615 15.8803 8.37195 15.8591 8.39321L16.5662 9.10032ZM9.37153 16.2937L16.5661 9.10035L15.8591 8.39318L8.66448 15.5865L9.37153 16.2937ZM9.80216 16.0172L9.37158 15.5865L8.66444 16.2936L9.09502 16.7242L9.80216 16.0172ZM16.2896 8.82384L9.09507 16.0171L9.80211 16.7243L16.9967 9.53101L16.2896 8.82384ZM16.5 8.31611C16.5 8.50654 16.4243 8.68917 16.2896 8.82384L16.9967 9.53101C17.319 9.2088 17.5 8.77179 17.5 8.31611H16.5ZM16.5 2.60796V8.31611H17.5V2.60796H16.5ZM16.391 3.10796H17V2.10796H16.391V3.10796ZM11.8237 3.02143C10.8762 3.02143 10.1058 3.79141 10.1058 4.73937H11.1058C11.1058 4.34386 11.4283 4.02143 11.8237 4.02143V3.02143ZM13.5417 4.73937C13.5417 3.7914 12.7712 3.02143 11.8237 3.02143V4.02143C12.2191 4.02143 12.5417 4.34387 12.5417 4.73937H13.5417ZM11.8237 6.45732C12.7712 6.45732 13.5417 5.68733 13.5417 4.73937H12.5417C12.5417 5.13489 12.2191 5.45732 11.8237 5.45732V6.45732ZM10.1058 4.73937C10.1058 5.68733 10.8762 6.45732 11.8237 6.45732V5.45732C11.4283 5.45732 11.1058 5.13489 11.1058 4.73937H10.1058ZM11.8237 4.84835C11.764 4.84835 11.7147 4.79909 11.7147 4.73937H10.7147C10.7147 5.35105 11.2114 5.84835 11.8237 5.84835V4.84835ZM11.9327 4.73937C11.9327 4.79909 11.8834 4.84835 11.8237 4.84835V5.84835C12.436 5.84835 12.9327 5.35105 12.9327 4.73937H11.9327ZM11.8237 4.6304C11.8834 4.6304 11.9327 4.67966 11.9327 4.73937H12.9327C12.9327 4.1277 12.436 3.6304 11.8237 3.6304V4.6304ZM11.7147 4.73937C11.7147 4.67966 11.764 4.6304 11.8237 4.6304V3.6304C11.2114 3.6304 10.7147 4.1277 10.7147 4.73937H11.7147Z" fill="currentColor" mask="url(#path-1-outside-1_2947_12817)"/>
8
- </svg>
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="path-1-outside-1_2947_12817" maskUnits="userSpaceOnUse" x="0" y="0.390015" width="18" height="17" fill="black">
3
+ <rect fill="white" y="0.390015" width="18" height="17"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15.1729 2.60648C15.1721 1.93451 14.6272 1.39001 13.9551 1.39001H8.85584C8.53286 1.39001 8.22312 1.51828 7.99472 1.74665L1.35682 8.38317C0.881098 8.85878 0.88106 9.62997 1.35671 10.1057L6.45599 15.205C6.6938 15.4428 7.00552 15.5618 7.31723 15.5618C7.51344 15.5618 7.70751 15.5091 7.88529 15.4148C7.95066 15.361 7.99975 15.322 8.04251 15.288C8.06738 15.2682 8.09011 15.2501 8.11266 15.2318C8.35215 15.0376 8.57128 14.8182 11.1178 12.2689C12.0221 11.3637 13.2199 10.1646 14.8163 8.56853C15.0447 8.34009 15.1731 8.03027 15.1731 7.70721L15.173 2.97696L15.1729 2.60648ZM14.5641 7.70717C14.5641 7.86984 14.5007 8.02281 14.3857 8.13783L7.74778 14.7745C7.63276 14.8895 7.47983 14.9528 7.31716 14.9528C7.15449 14.9528 7.00159 14.8895 6.88654 14.7745L1.78733 9.67511C1.67231 9.56009 1.60897 9.40712 1.60897 9.24449C1.60897 9.08182 1.67235 8.92889 1.78737 8.81387L8.42526 2.1773C8.54028 2.06232 8.69317 1.99899 8.85584 1.99899H13.9552C14.2909 1.99899 14.5641 2.27219 14.5641 2.60796V7.70717H14.5641ZM16.391 2.60796V8.31611C16.391 8.47878 16.3276 8.63175 16.2126 8.74677L9.01801 15.9401L9.44859 16.3707L16.6432 9.17743C16.8716 8.94899 17 8.63917 17 8.31611V2.60796H16.391ZM10.6058 4.73937C10.6058 4.06764 11.1523 3.52143 11.8237 3.52143C12.4951 3.52143 13.0417 4.06764 13.0417 4.73937C13.0417 5.41111 12.4951 5.95732 11.8237 5.95732C11.1523 5.95732 10.6058 5.41111 10.6058 4.73937ZM11.2147 4.73937C11.2147 5.07507 11.4877 5.34835 11.8237 5.34835C12.1597 5.34835 12.4327 5.07507 12.4327 4.73937C12.4327 4.40368 12.1597 4.1304 11.8237 4.1304C11.4877 4.1304 11.2147 4.40368 11.2147 4.73937Z"/>
5
+ </mask>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15.1729 2.60648C15.1721 1.93451 14.6272 1.39001 13.9551 1.39001H8.85584C8.53286 1.39001 8.22312 1.51828 7.99472 1.74665L1.35682 8.38317C0.881098 8.85878 0.88106 9.62997 1.35671 10.1057L6.45599 15.205C6.6938 15.4428 7.00552 15.5618 7.31723 15.5618C7.51344 15.5618 7.70751 15.5091 7.88529 15.4148C7.95066 15.361 7.99975 15.322 8.04251 15.288C8.06738 15.2682 8.09011 15.2501 8.11266 15.2318C8.35215 15.0376 8.57128 14.8182 11.1178 12.2689C12.0221 11.3637 13.2199 10.1646 14.8163 8.56853C15.0447 8.34009 15.1731 8.03027 15.1731 7.70721L15.173 2.97696L15.1729 2.60648ZM14.5641 7.70717C14.5641 7.86984 14.5007 8.02281 14.3857 8.13783L7.74778 14.7745C7.63276 14.8895 7.47983 14.9528 7.31716 14.9528C7.15449 14.9528 7.00159 14.8895 6.88654 14.7745L1.78733 9.67511C1.67231 9.56009 1.60897 9.40712 1.60897 9.24449C1.60897 9.08182 1.67235 8.92889 1.78737 8.81387L8.42526 2.1773C8.54028 2.06232 8.69317 1.99899 8.85584 1.99899H13.9552C14.2909 1.99899 14.5641 2.27219 14.5641 2.60796V7.70717H14.5641ZM16.391 2.60796V8.31611C16.391 8.47878 16.3276 8.63175 16.2126 8.74677L9.01801 15.9401L9.44859 16.3707L16.6432 9.17743C16.8716 8.94899 17 8.63917 17 8.31611V2.60796H16.391ZM10.6058 4.73937C10.6058 4.06764 11.1523 3.52143 11.8237 3.52143C12.4951 3.52143 13.0417 4.06764 13.0417 4.73937C13.0417 5.41111 12.4951 5.95732 11.8237 5.95732C11.1523 5.95732 10.6058 5.41111 10.6058 4.73937ZM11.2147 4.73937C11.2147 5.07507 11.4877 5.34835 11.8237 5.34835C12.1597 5.34835 12.4327 5.07507 12.4327 4.73937C12.4327 4.40368 12.1597 4.1304 11.8237 4.1304C11.4877 4.1304 11.2147 4.40368 11.2147 4.73937Z" fill="currentColor"/>
7
+ <path d="M15.1729 2.60648L15.6729 2.60635V2.60586L15.1729 2.60648ZM7.99472 1.74665L8.34823 2.10024L8.34824 2.10023L7.99472 1.74665ZM1.35682 8.38317L1.71033 8.73677L1.71034 8.73676L1.35682 8.38317ZM1.35671 10.1057L1.00312 10.4592L1.00315 10.4592L1.35671 10.1057ZM6.45599 15.205L6.10244 15.5586L6.10244 15.5586L6.45599 15.205ZM7.88529 15.4148L8.11947 15.8566L8.16412 15.8329L8.20314 15.8008L7.88529 15.4148ZM8.04251 15.288L8.35367 15.6794L8.35367 15.6794L8.04251 15.288ZM8.11266 15.2318L7.79765 14.8436L7.79764 14.8436L8.11266 15.2318ZM11.1178 12.2689L11.4716 12.6223L11.1178 12.2689ZM14.8163 8.56853L15.1698 8.92212L15.1698 8.92211L14.8163 8.56853ZM15.1731 7.70721H15.6731V7.7072L15.1731 7.70721ZM15.173 2.97696L15.673 2.97696V2.97684L15.173 2.97696ZM14.3857 8.13783L14.7392 8.49142L14.7393 8.49138L14.3857 8.13783ZM14.5641 7.70717V7.20717H14.0641V7.70717H14.5641ZM7.74778 14.7745L7.39426 14.4209L7.39422 14.4209L7.74778 14.7745ZM6.88654 14.7745L6.53298 15.128L6.5331 15.1281L6.88654 14.7745ZM1.78733 9.67511L2.14089 9.32156L2.14088 9.32156L1.78733 9.67511ZM1.78737 8.81387L1.43385 8.46028L1.43381 8.46032L1.78737 8.81387ZM8.42526 2.1773L8.07177 1.82369L8.07174 1.82372L8.42526 2.1773ZM14.5641 7.70717V8.20717H15.0641V7.70717H14.5641ZM16.391 2.60796V2.10796H15.891V2.60796H16.391ZM16.2126 8.74677L16.5661 9.10035L16.5662 9.10032L16.2126 8.74677ZM9.01801 15.9401L8.66448 15.5865L8.31088 15.94L8.66444 16.2936L9.01801 15.9401ZM9.44859 16.3707L9.09502 16.7242L9.44854 17.0778L9.80211 16.7243L9.44859 16.3707ZM16.6432 9.17743L16.9967 9.53101L16.9967 9.53101L16.6432 9.17743ZM17 2.60796H17.5V2.10796H17V2.60796ZM13.9551 1.89001C14.3512 1.89001 14.6724 2.2109 14.6729 2.6071L15.6729 2.60586C15.6717 1.65813 14.9033 0.890015 13.9551 0.890015V1.89001ZM8.85584 1.89001H13.9551V0.890015H8.85584V1.89001ZM8.34824 2.10023C8.48287 1.96563 8.66543 1.89001 8.85584 1.89001V0.890015C8.40029 0.890015 7.96338 1.07093 7.64119 1.39306L8.34824 2.10023ZM1.71034 8.73676L8.34823 2.10024L7.6412 1.39306L1.0033 8.02958L1.71034 8.73676ZM1.71029 9.75217C1.42987 9.4717 1.42993 9.01711 1.71033 8.73677L1.00331 8.02958C0.33227 8.70046 0.332252 9.78824 1.00312 10.4592L1.71029 9.75217ZM6.80955 14.8515L1.71026 9.75214L1.00315 10.4592L6.10244 15.5586L6.80955 14.8515ZM7.31723 15.0618C7.13272 15.0618 6.94983 14.9917 6.80954 14.8515L6.10244 15.5586C6.43776 15.8939 6.87831 16.0618 7.31723 16.0618V15.0618ZM7.65112 14.9731C7.53774 15.0332 7.42348 15.0618 7.31723 15.0618V16.0618C7.6034 16.0618 7.87728 15.985 8.11947 15.8566L7.65112 14.9731ZM7.73134 14.8966C7.68824 14.9309 7.63633 14.9721 7.56744 15.0289L8.20314 15.8008C8.26499 15.7499 8.31125 15.7131 8.35367 15.6794L7.73134 14.8966ZM7.79764 14.8436C7.77734 14.86 7.75657 14.8766 7.73134 14.8966L8.35367 15.6794C8.37818 15.6599 8.40287 15.6403 8.42767 15.6201L7.79764 14.8436ZM10.7641 11.9156C8.19939 14.483 8.01035 14.671 7.79765 14.8436L8.42767 15.6201C8.69394 15.4041 8.94318 15.1534 11.4716 12.6223L10.7641 11.9156ZM14.4627 8.21494C12.8662 9.81113 11.6684 11.0103 10.7641 11.9156L11.4716 12.6223C12.3758 11.717 13.5735 10.5181 15.1698 8.92212L14.4627 8.21494ZM14.6731 7.70721C14.6731 7.89765 14.5974 8.08027 14.4627 8.21495L15.1698 8.92211C15.492 8.5999 15.6731 8.1629 15.6731 7.70721H14.6731ZM14.673 2.97697L14.6731 7.70722L15.6731 7.7072L15.673 2.97696L14.673 2.97697ZM14.6729 2.60661L14.673 2.97709L15.673 2.97684L15.6729 2.60635L14.6729 2.60661ZM14.7393 8.49138C14.948 8.28261 15.0641 8.00247 15.0641 7.70717H14.0641C14.0641 7.73722 14.0534 7.76301 14.0322 7.78428L14.7393 8.49138ZM8.1013 15.1281L14.7392 8.49142L14.0322 7.78424L7.39426 14.4209L8.1013 15.1281ZM7.31716 15.4528C7.61241 15.4528 7.89252 15.3368 8.10133 15.128L7.39422 14.4209C7.37299 14.4421 7.34725 14.4528 7.31716 14.4528V15.4528ZM6.5331 15.1281C6.74181 15.3367 7.02179 15.4528 7.31716 15.4528V14.4528C7.28718 14.4528 7.26137 14.4422 7.23997 14.4208L6.5331 15.1281ZM1.43377 10.0287L6.53298 15.128L7.24009 14.4209L2.14089 9.32156L1.43377 10.0287ZM1.10897 9.24449C1.10897 9.53969 1.22495 9.81984 1.43377 10.0287L2.14088 9.32156C2.11966 9.30034 2.10897 9.27456 2.10897 9.24449H1.10897ZM1.43381 8.46032C1.22506 8.66907 1.10897 8.94916 1.10897 9.24449H2.10897C2.10897 9.21448 2.11963 9.18871 2.14092 9.16742L1.43381 8.46032ZM8.07174 1.82372L1.43385 8.46028L2.14088 9.16746L8.77878 2.53089L8.07174 1.82372ZM8.85584 1.49899C8.56057 1.49899 8.28053 1.615 8.07177 1.82369L8.77876 2.53092C8.80003 2.50965 8.82578 2.49899 8.85584 2.49899V1.49899ZM13.9552 1.49899H8.85584V2.49899H13.9552V1.49899ZM15.0641 2.60796C15.0641 1.99605 14.5671 1.49899 13.9552 1.49899V2.49899C14.0148 2.49899 14.0641 2.54833 14.0641 2.60796H15.0641ZM15.0641 7.70717V2.60796H14.0641V7.70717H15.0641ZM14.5641 8.20717H14.5641V7.20717H14.5641V8.20717ZM16.891 8.31611V2.60796H15.891V8.31611H16.891ZM16.5662 9.10032C16.7749 8.89155 16.891 8.61141 16.891 8.31611H15.891C15.891 8.34615 15.8803 8.37195 15.8591 8.39321L16.5662 9.10032ZM9.37153 16.2937L16.5661 9.10035L15.8591 8.39318L8.66448 15.5865L9.37153 16.2937ZM9.80216 16.0172L9.37158 15.5865L8.66444 16.2936L9.09502 16.7242L9.80216 16.0172ZM16.2896 8.82384L9.09507 16.0171L9.80211 16.7243L16.9967 9.53101L16.2896 8.82384ZM16.5 8.31611C16.5 8.50654 16.4243 8.68917 16.2896 8.82384L16.9967 9.53101C17.319 9.2088 17.5 8.77179 17.5 8.31611H16.5ZM16.5 2.60796V8.31611H17.5V2.60796H16.5ZM16.391 3.10796H17V2.10796H16.391V3.10796ZM11.8237 3.02143C10.8762 3.02143 10.1058 3.79141 10.1058 4.73937H11.1058C11.1058 4.34386 11.4283 4.02143 11.8237 4.02143V3.02143ZM13.5417 4.73937C13.5417 3.7914 12.7712 3.02143 11.8237 3.02143V4.02143C12.2191 4.02143 12.5417 4.34387 12.5417 4.73937H13.5417ZM11.8237 6.45732C12.7712 6.45732 13.5417 5.68733 13.5417 4.73937H12.5417C12.5417 5.13489 12.2191 5.45732 11.8237 5.45732V6.45732ZM10.1058 4.73937C10.1058 5.68733 10.8762 6.45732 11.8237 6.45732V5.45732C11.4283 5.45732 11.1058 5.13489 11.1058 4.73937H10.1058ZM11.8237 4.84835C11.764 4.84835 11.7147 4.79909 11.7147 4.73937H10.7147C10.7147 5.35105 11.2114 5.84835 11.8237 5.84835V4.84835ZM11.9327 4.73937C11.9327 4.79909 11.8834 4.84835 11.8237 4.84835V5.84835C12.436 5.84835 12.9327 5.35105 12.9327 4.73937H11.9327ZM11.8237 4.6304C11.8834 4.6304 11.9327 4.67966 11.9327 4.73937H12.9327C12.9327 4.1277 12.436 3.6304 11.8237 3.6304V4.6304ZM11.7147 4.73937C11.7147 4.67966 11.764 4.6304 11.8237 4.6304V3.6304C11.2114 3.6304 10.7147 4.1277 10.7147 4.73937H11.7147Z" fill="currentColor" mask="url(#path-1-outside-1_2947_12817)"/>
8
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10.0058 2.15563C9.72708 2.05653 9.40188 2.00697 9.03022 2.00697C8.66473 2.00697 8.29002 2.05343 7.90594 2.14634C7.52187 2.23926 7.14404 2.36005 6.77238 2.50871C6.70213 2.53717 6.63301 2.56609 6.56514 2.59547C6.28216 2.71797 6.01999 2.84852 5.77863 2.98711C5.75477 3.00083 5.73113 3.01462 5.70764 3.02849C5.63301 3.07258 5.56047 3.11747 5.49 3.16315C5.28715 3.2946 5.10139 3.43262 4.93266 3.57724C4.80875 3.6949 4.67249 3.75377 4.52383 3.75377C4.37517 3.75377 4.23579 3.72278 4.10571 3.66086C3.97563 3.59894 3.86101 3.51839 3.76193 3.41928C3.53276 3.20248 3.41814 2.98258 3.41814 2.75958C3.41814 2.53039 3.49864 2.32598 3.65972 2.14634C3.8208 1.9667 4.0345 1.80565 4.30083 1.66318C4.56717 1.51452 4.87379 1.38444 5.22069 1.27294C5.5676 1.15525 5.92373 1.05613 6.28922 0.97561C7.03254 0.820754 7.76969 0.743322 8.5006 0.743322C9.23775 0.743322 9.90979 0.836237 10.5169 1.02207C11.1301 1.20171 11.635 1.44638 12.0314 1.7561C12.8305 2.37553 13.23 3.16222 13.23 4.11614V4.26481C13.1742 5.43554 12.7314 6.4669 11.9013 7.35888C11.1766 8.1332 10.2412 8.74332 9.09526 9.18931C8.06078 9.59814 7.08212 9.80256 6.15914 9.80256H5.91756C5.83706 9.80256 5.7596 9.79639 5.68527 9.78397C5.12778 11.1901 4.61675 12.2401 4.15217 12.9338C3.69376 13.6214 3.2416 14.182 2.79561 14.6156C2.35581 15.043 1.9284 15.2567 1.51338 15.2567C1.30277 15.2567 1.14482 15.2071 1.03951 15.108C0.859871 14.9469 0.770055 14.7952 0.770055 14.6527C0.770055 14.5102 0.816513 14.405 0.909428 14.3368C1.84477 13.6617 2.88235 11.6794 4.02209 8.39024L4.57029 6.82927C5.11603 5.28844 5.59013 4.25358 5.99256 3.72471C6.05604 3.64131 6.11781 3.57047 6.17772 3.5122C6.33255 3.39451 6.49363 3.33566 6.66088 3.33566C6.68303 3.33566 6.70489 3.33615 6.72629 3.33713C6.86633 3.34354 6.9901 3.37093 7.09758 3.41928C7.22149 3.46884 7.32987 3.53388 7.42279 3.6144C7.63337 3.80023 7.7387 4.01706 7.7387 4.26481C7.7387 4.35772 7.69536 4.49093 7.60862 4.66434C7.52187 4.83776 7.42279 5.06388 7.31129 5.34262L6.13126 8.62253C6.42926 8.56857 6.71693 8.50092 6.99426 8.41953C8.11794 8.08979 9.07222 7.5349 9.85716 6.75494C10.7739 5.84437 11.2323 4.90905 11.2323 3.9489C11.2323 3.03833 10.8235 2.44057 10.0058 2.15563ZM7.31545 7.52673C8.09817 7.22427 8.76753 6.7898 9.3332 6.2277L9.33335 6.22755C10.1597 5.40677 10.489 4.65007 10.489 3.9489C10.489 3.60474 10.4126 3.3841 10.3122 3.23728C10.2139 3.09361 10.0502 2.95826 9.7612 2.85755L9.75904 2.85679L9.75681 2.856C9.57552 2.79154 9.33788 2.75029 9.03022 2.75029C8.72821 2.75029 8.41215 2.78864 8.08077 2.86882C7.97931 2.89335 7.87837 2.92003 7.7778 2.94886C7.82306 2.98123 7.86707 3.01581 7.90959 3.05268L7.91211 3.05484L7.91457 3.05703C8.26133 3.36301 8.48202 3.77399 8.48202 4.26481C8.48202 4.54266 8.3674 4.80885 8.27344 4.99676C8.2006 5.14252 8.11162 5.34381 8.00622 5.60673L7.31545 7.52673ZM4.70743 4.48409C4.4434 5.04775 4.16436 5.749 3.86963 6.58115L3.86926 6.58204L3.32024 8.14539L3.31972 8.14688C2.75606 9.77349 2.22558 11.0533 1.73055 11.9991C1.22408 12.9667 0.796369 13.5017 0.474369 13.7341L0.472102 13.7358L0.469857 13.7374C0.140588 13.9788 0.0267334 14.3361 0.0267334 14.6527C0.0267334 15.1107 0.30591 15.4472 0.537574 15.6563C0.831342 15.9281 1.2017 16 1.51338 16C2.19727 16 2.80074 15.6471 3.31363 15.1486L3.31378 15.1485C3.80712 14.6689 4.29169 14.0645 4.77009 13.3469C5.21884 12.6767 5.68735 11.7354 6.17884 10.5459C7.20574 10.543 8.27032 10.3144 9.36665 9.88135C10.5991 9.40146 11.6324 8.73396 12.444 7.86687L12.4447 7.86605L12.4455 7.86524C13.39 6.85016 13.908 5.65385 13.9725 4.30019L13.9733 4.2825V4.11614C13.9733 2.91731 13.4552 1.91973 12.4878 1.16936C12.0014 0.789764 11.4078 0.508945 10.7301 0.30998C10.0434 0.100319 9.29819 0 8.5006 0C7.71677 0 6.92885 0.0830663 6.13758 0.247913L6.13342 0.248782L6.12926 0.249704C5.73968 0.335543 5.35903 0.441303 4.98751 0.567125C4.60716 0.689728 4.25787 0.836505 3.94434 1.0109C3.62248 1.18375 3.33623 1.39363 3.10624 1.65014C2.83002 1.95828 2.67482 2.33697 2.67482 2.75958C2.67482 3.25579 2.9323 3.65528 3.24383 3.95239C3.40275 4.1096 3.58494 4.23619 3.78616 4.332C4.01926 4.44298 4.2682 4.4971 4.52383 4.4971C4.58664 4.4971 4.64789 4.49264 4.70743 4.48409Z" fill="currentColor"/>
3
- </svg>
1
+ <svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.0058 2.15563C9.72708 2.05653 9.40188 2.00697 9.03022 2.00697C8.66473 2.00697 8.29002 2.05343 7.90594 2.14634C7.52187 2.23926 7.14404 2.36005 6.77238 2.50871C6.70213 2.53717 6.63301 2.56609 6.56514 2.59547C6.28216 2.71797 6.01999 2.84852 5.77863 2.98711C5.75477 3.00083 5.73113 3.01462 5.70764 3.02849C5.63301 3.07258 5.56047 3.11747 5.49 3.16315C5.28715 3.2946 5.10139 3.43262 4.93266 3.57724C4.80875 3.6949 4.67249 3.75377 4.52383 3.75377C4.37517 3.75377 4.23579 3.72278 4.10571 3.66086C3.97563 3.59894 3.86101 3.51839 3.76193 3.41928C3.53276 3.20248 3.41814 2.98258 3.41814 2.75958C3.41814 2.53039 3.49864 2.32598 3.65972 2.14634C3.8208 1.9667 4.0345 1.80565 4.30083 1.66318C4.56717 1.51452 4.87379 1.38444 5.22069 1.27294C5.5676 1.15525 5.92373 1.05613 6.28922 0.97561C7.03254 0.820754 7.76969 0.743322 8.5006 0.743322C9.23775 0.743322 9.90979 0.836237 10.5169 1.02207C11.1301 1.20171 11.635 1.44638 12.0314 1.7561C12.8305 2.37553 13.23 3.16222 13.23 4.11614V4.26481C13.1742 5.43554 12.7314 6.4669 11.9013 7.35888C11.1766 8.1332 10.2412 8.74332 9.09526 9.18931C8.06078 9.59814 7.08212 9.80256 6.15914 9.80256H5.91756C5.83706 9.80256 5.7596 9.79639 5.68527 9.78397C5.12778 11.1901 4.61675 12.2401 4.15217 12.9338C3.69376 13.6214 3.2416 14.182 2.79561 14.6156C2.35581 15.043 1.9284 15.2567 1.51338 15.2567C1.30277 15.2567 1.14482 15.2071 1.03951 15.108C0.859871 14.9469 0.770055 14.7952 0.770055 14.6527C0.770055 14.5102 0.816513 14.405 0.909428 14.3368C1.84477 13.6617 2.88235 11.6794 4.02209 8.39024L4.57029 6.82927C5.11603 5.28844 5.59013 4.25358 5.99256 3.72471C6.05604 3.64131 6.11781 3.57047 6.17772 3.5122C6.33255 3.39451 6.49363 3.33566 6.66088 3.33566C6.68303 3.33566 6.70489 3.33615 6.72629 3.33713C6.86633 3.34354 6.9901 3.37093 7.09758 3.41928C7.22149 3.46884 7.32987 3.53388 7.42279 3.6144C7.63337 3.80023 7.7387 4.01706 7.7387 4.26481C7.7387 4.35772 7.69536 4.49093 7.60862 4.66434C7.52187 4.83776 7.42279 5.06388 7.31129 5.34262L6.13126 8.62253C6.42926 8.56857 6.71693 8.50092 6.99426 8.41953C8.11794 8.08979 9.07222 7.5349 9.85716 6.75494C10.7739 5.84437 11.2323 4.90905 11.2323 3.9489C11.2323 3.03833 10.8235 2.44057 10.0058 2.15563ZM7.31545 7.52673C8.09817 7.22427 8.76753 6.7898 9.3332 6.2277L9.33335 6.22755C10.1597 5.40677 10.489 4.65007 10.489 3.9489C10.489 3.60474 10.4126 3.3841 10.3122 3.23728C10.2139 3.09361 10.0502 2.95826 9.7612 2.85755L9.75904 2.85679L9.75681 2.856C9.57552 2.79154 9.33788 2.75029 9.03022 2.75029C8.72821 2.75029 8.41215 2.78864 8.08077 2.86882C7.97931 2.89335 7.87837 2.92003 7.7778 2.94886C7.82306 2.98123 7.86707 3.01581 7.90959 3.05268L7.91211 3.05484L7.91457 3.05703C8.26133 3.36301 8.48202 3.77399 8.48202 4.26481C8.48202 4.54266 8.3674 4.80885 8.27344 4.99676C8.2006 5.14252 8.11162 5.34381 8.00622 5.60673L7.31545 7.52673ZM4.70743 4.48409C4.4434 5.04775 4.16436 5.749 3.86963 6.58115L3.86926 6.58204L3.32024 8.14539L3.31972 8.14688C2.75606 9.77349 2.22558 11.0533 1.73055 11.9991C1.22408 12.9667 0.796369 13.5017 0.474369 13.7341L0.472102 13.7358L0.469857 13.7374C0.140588 13.9788 0.0267334 14.3361 0.0267334 14.6527C0.0267334 15.1107 0.30591 15.4472 0.537574 15.6563C0.831342 15.9281 1.2017 16 1.51338 16C2.19727 16 2.80074 15.6471 3.31363 15.1486L3.31378 15.1485C3.80712 14.6689 4.29169 14.0645 4.77009 13.3469C5.21884 12.6767 5.68735 11.7354 6.17884 10.5459C7.20574 10.543 8.27032 10.3144 9.36665 9.88135C10.5991 9.40146 11.6324 8.73396 12.444 7.86687L12.4447 7.86605L12.4455 7.86524C13.39 6.85016 13.908 5.65385 13.9725 4.30019L13.9733 4.2825V4.11614C13.9733 2.91731 13.4552 1.91973 12.4878 1.16936C12.0014 0.789764 11.4078 0.508945 10.7301 0.30998C10.0434 0.100319 9.29819 0 8.5006 0C7.71677 0 6.92885 0.0830663 6.13758 0.247913L6.13342 0.248782L6.12926 0.249704C5.73968 0.335543 5.35903 0.441303 4.98751 0.567125C4.60716 0.689728 4.25787 0.836505 3.94434 1.0109C3.62248 1.18375 3.33623 1.39363 3.10624 1.65014C2.83002 1.95828 2.67482 2.33697 2.67482 2.75958C2.67482 3.25579 2.9323 3.65528 3.24383 3.95239C3.40275 4.1096 3.58494 4.23619 3.78616 4.332C4.01926 4.44298 4.2682 4.4971 4.52383 4.4971C4.58664 4.4971 4.64789 4.49264 4.70743 4.48409Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,38 @@
1
+ <svg width="26" height="27" viewBox="0 0 26 27" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_ddii_1383_25738)">
3
+ <path d="M22 13C22 18.5228 17.5228 23 12 23C6.47715 23 2 18.5228 2 13C2 7.47715 6.47715 3 12 3C17.5228 3 22 7.47715 22 13Z" fill="url(#paint0_linear_1383_25738)"/>
4
+ </g>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13 8C13 7.44772 12.5523 7 12 7C11.4477 7 11 7.44772 11 8V9.49994C11 10.8806 9.88074 11.9999 8.50006 11.9999H7C6.44772 11.9999 6 12.4476 6 12.9999C6 13.5522 6.44772 13.9999 7 13.9999H8.5C9.88071 13.9999 11 15.1192 11 16.4999V18C11 18.5523 11.4477 19 12 19C12.5523 19 13 18.5523 13 18V16.4999C13 15.1192 14.1193 13.9999 15.5 13.9999H17C17.5523 13.9999 18 13.5522 18 12.9999C18 12.4476 17.5523 11.9999 17 11.9999H15.4999C14.1193 11.9999 13 10.8806 13 9.49994V8Z" fill="#71347B"/>
6
+ <defs>
7
+ <filter id="filter0_ddii_1383_25738" x="0" y="0" width="26" height="27" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
8
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
9
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
10
+ <feOffset dx="1" dy="1"/>
11
+ <feGaussianBlur stdDeviation="1.5"/>
12
+ <feColorMatrix type="matrix" values="0 0 0 0 0.442507 0 0 0 0 0.202278 0 0 0 0 0.481615 0 0 0 0.2 0"/>
13
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1383_25738"/>
14
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
15
+ <feOffset dx="1" dy="-1"/>
16
+ <feGaussianBlur stdDeviation="1"/>
17
+ <feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.1 0"/>
18
+ <feBlend mode="normal" in2="effect1_dropShadow_1383_25738" result="effect2_dropShadow_1383_25738"/>
19
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1383_25738" result="shape"/>
20
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
21
+ <feOffset dx="-1" dy="-1"/>
22
+ <feGaussianBlur stdDeviation="1"/>
23
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
24
+ <feColorMatrix type="matrix" values="0 0 0 0 0.941176 0 0 0 0 0.905882 0 0 0 0 0.956863 0 0 0 1 0"/>
25
+ <feBlend mode="normal" in2="shape" result="effect3_innerShadow_1383_25738"/>
26
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
27
+ <feOffset dx="1" dy="1"/>
28
+ <feGaussianBlur stdDeviation="1"/>
29
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
30
+ <feColorMatrix type="matrix" values="0 0 0 0 0.556863 0 0 0 0 0.294118 0 0 0 0 0.776471 0 0 0 0.3 0"/>
31
+ <feBlend mode="normal" in2="effect3_innerShadow_1383_25738" result="effect4_innerShadow_1383_25738"/>
32
+ </filter>
33
+ <linearGradient id="paint0_linear_1383_25738" x1="2" y1="3" x2="22" y2="23" gradientUnits="userSpaceOnUse">
34
+ <stop offset="1" stop-color="#F0E7F4"/>
35
+ <stop stop-color="#F7EBFF"/>
36
+ </linearGradient>
37
+ </defs>
38
+ </svg>