pixel-react 1.9.9 → 1.10.1
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.
- package/lib/1fb4472b34e4fe07.css +1 -0
- package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
- package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
- package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
- package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
- package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
- package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
- package/lib/components/Accordion/Accordion.d.ts +1 -1
- package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
- package/lib/components/Accordion/types.d.ts +10 -2
- package/lib/components/AddButton/AddButton.d.ts +5 -0
- package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
- package/lib/components/AddButton/index.d.ts +1 -0
- package/lib/components/AddButton/types.d.ts +4 -0
- package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
- package/lib/components/AddVariables/AddVariables.d.ts +5 -0
- package/lib/components/AddVariables/index.d.ts +1 -0
- package/lib/components/AddVariables/types.d.ts +35 -0
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
- package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
- package/lib/components/AppHeader/types.d.ts +1 -1
- package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
- package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
- package/lib/components/Avatar/Avatar.stories.d.ts +10 -0
- package/lib/components/Button/Button.stories.d.ts +13 -0
- package/lib/components/Charts/BarChart/BarChart.d.ts +2 -0
- package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
- package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
- package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
- package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
- package/lib/components/Charts/IconRadialChart/types.d.ts +4 -3
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
- package/lib/components/Charts/LineChart/types.d.ts +1 -0
- package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
- package/lib/components/Charts/MultiRadialChart/types.d.ts +3 -2
- package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
- package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
- package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
- package/lib/components/Chip/Chip.stories.d.ts +14 -0
- package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
- package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
- package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
- package/lib/components/Drawer/Drawer.stories.d.ts +12 -0
- package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
- package/lib/components/Editor/Editor.stories.d.ts +6 -0
- package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
- package/lib/components/ExcelFile/ColorBarSelector/ColorBarSelector.d.ts +8 -0
- package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +174 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +44 -0
- package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +19 -0
- package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +12 -0
- package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +15 -0
- package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
- package/lib/components/ExcelFile/Types.d.ts +129 -0
- package/lib/components/ExcelFile/index.d.ts +1 -0
- package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
- package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
- package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
- package/lib/components/Form/Form.stories.d.ts +7 -0
- package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
- package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
- package/lib/components/Icon/Icon.stories.d.ts +8 -0
- package/lib/components/IconButton/IconButton.stories.d.ts +7 -0
- package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
- package/lib/components/Input/Input.stories.d.ts +9 -0
- package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +9 -0
- package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +13 -0
- package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
- package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
- package/lib/components/MenuOption/MenuOption.stories.d.ts +16 -0
- package/lib/components/MiniModal/MiniModal.stories.d.ts +10 -0
- package/lib/components/Modal/Modal.stories.d.ts +7 -0
- package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
- package/lib/components/MultiSelect/MultiSelect.stories.d.ts +11 -0
- package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
- package/lib/components/NLPInput/type.d.ts +70 -0
- package/lib/components/Paper/Paper.stories.d.ts +11 -0
- package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
- package/lib/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
- package/lib/components/Search/Search.stories.d.ts +6 -0
- package/lib/components/Select/Select.stories.d.ts +14 -0
- package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
- package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +17 -0
- package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
- package/lib/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.d.ts +4 -0
- package/lib/components/SequentialConnectingBranch/components/AddBrowserModal/types.d.ts +3 -0
- package/lib/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.d.ts +4 -0
- package/lib/components/SequentialConnectingBranch/components/DatasetListModal/types.d.ts +3 -0
- package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
- package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
- package/lib/components/StatusCard/StatusCard.d.ts +1 -1
- package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
- package/lib/components/StatusCard/types.d.ts +1 -1
- package/lib/components/Table/Table.stories.d.ts +13 -0
- package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
- package/lib/components/Tabs/Tabs.stories.d.ts +9 -0
- package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
- package/lib/components/Toast/Toast.stories.d.ts +6 -0
- package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
- package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
- package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
- package/lib/components/Typography/Typography.stories.d.ts +10 -0
- package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
- package/lib/index.d.ts +23 -10
- package/lib/index.esm.js +795 -577
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +795 -577
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
- package/lib/utils/compareArrays/compareArrays.stories.d.ts +6 -0
- package/lib/utils/compareObjects/compareObjects.stories.d.ts +6 -0
- package/lib/utils/debounce/debounce.stories.d.ts +6 -0
- package/lib/utils/ffID/ffID.stories.d.ts +6 -0
- package/lib/utils/find/findAndInsert.d.ts +7 -0
- package/lib/utils/find/findAndInsert.stories.d.ts +7 -0
- package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
- package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
- package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
- package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
- package/lib/utils/throttle/throttle.stories.d.ts +6 -0
- package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
- package/package.json +1 -1
- package/src/assets/Themes/BaseTheme.scss +32 -11
- package/src/assets/Themes/BlueTheme.scss +3 -0
- package/src/assets/Themes/DarkTheme.scss +32 -13
- package/src/assets/icons/approval_pending.svg +8 -8
- package/src/assets/icons/close_defects_icon.svg +12 -0
- package/src/assets/icons/configuration.svg +3 -3
- package/src/assets/icons/defect_density_icon.svg +12 -0
- package/src/assets/icons/defects.svg +8 -8
- package/src/assets/icons/element.svg +4 -4
- package/src/assets/icons/open_defects_icon.svg +12 -0
- package/src/assets/icons/project_element.svg +4 -4
- package/src/assets/icons/quality_score_icon.svg +12 -0
- package/src/assets/icons/sause_lab_icon.svg +3 -0
- package/src/assets/icons/step_group.svg +10 -10
- package/src/assets/icons/total_defects_status_icon.svg +13 -0
- package/src/assets/icons/variable.svg +3 -3
- package/src/assets/icons/web_service_icon.svg +3 -3
- package/src/components/Accordion/Accordion.stories.tsx +14 -4
- package/src/components/Accordion/Accordion.tsx +22 -11
- package/src/components/Accordion/types.ts +14 -6
- package/src/components/AppHeader/AppHeader.tsx +1 -1
- package/src/components/AppHeader/types.ts +1 -1
- package/src/components/Charts/BarChart/BarChart.scss +1 -0
- package/src/components/Charts/BarChart/BarChart.stories.tsx +91 -1
- package/src/components/Charts/BarChart/BarChart.tsx +91 -86
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +2 -0
- package/src/components/Charts/IconRadialChart/IconRadialChart.stories.tsx +1 -0
- package/src/components/Charts/IconRadialChart/IconRadialChart.tsx +2 -1
- package/src/components/Charts/IconRadialChart/types.ts +4 -3
- package/src/components/Charts/LineChart/LineChart.stories.tsx +3 -2
- package/src/components/Charts/LineChart/LineChart.tsx +7 -3
- package/src/components/Charts/LineChart/types.ts +1 -0
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.scss +1 -0
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.stories.tsx +53 -6
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.tsx +74 -34
- package/src/components/Charts/MultiRadialChart/types.ts +5 -4
- package/src/components/Checkbox/Checkbox.scss +4 -5
- package/src/components/Checkbox/Checkbox.stories.tsx +40 -10
- package/src/components/Icon/iconList.ts +14 -0
- package/src/components/StatusCard/StatusCard.scss +56 -93
- package/src/components/StatusCard/StatusCard.stories.tsx +77 -4
- package/src/components/StatusCard/StatusCard.tsx +89 -35
- package/src/components/StatusCard/types.ts +1 -1
- package/src/components/Table/Table.tsx +2 -2
- package/src/components/TextArea/Textarea.scss +6 -7
package/lib/tsconfig.tsbuildinfo
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"root":["../src/index.ts","../src/componentprops/treenodeprops.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/choosefile/choosefile.tsx","../src/components/choosefile/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.tsx","../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/mobileskin/mobileskin.tsx","../src/components/mobileskin/mobileskininterface.ts","../src/components/mobileskin/index.ts","../src/components/mobileskin/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/scriptswitchbutton/scriptswitchbutton.tsx","../src/components/scriptswitchbutton/index.ts","../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/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/datasettooltip/datasettooltip.tsx","../src/components/sequentialconnectingbranch/components/datasettooltip/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/formdata/convertformdatatoobject.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/gettreedetails/gettreedetails.ts","../src/utils/handletreenodeselect/handletreenodeselect.ts","../src/utils/indexdbstore/indexdb.ts","../src/utils/keyboardactionutil/usekeyboardactions.tsx","../src/utils/keyboardactionutil/types.ts","../src/utils/swaparrayitem/draganddroputils.ts","../src/utils/throttle/throttle.ts","../src/utils/truncatetext/truncatetext.ts","../src/utils/validatefile/validatefile.ts","../src/validations/regex.ts"],"version":"5.7.2"}
|
1
|
+
{"root":["../src/index.ts","../src/componentprops/treenodeprops.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/choosefile/choosefile.tsx","../src/components/choosefile/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.tsx","../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/mobileskin/mobileskin.tsx","../src/components/mobileskin/mobileskininterface.ts","../src/components/mobileskin/index.ts","../src/components/mobileskin/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/scriptswitchbutton/scriptswitchbutton.tsx","../src/components/scriptswitchbutton/index.ts","../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/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/datasettooltip/datasettooltip.tsx","../src/components/sequentialconnectingbranch/components/datasettooltip/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/formdata/convertformdatatoobject.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/gettreedetails/gettreedetails.ts","../src/utils/handletreenodeselect/handletreenodeselect.ts","../src/utils/indexdbstore/indexdb.ts","../src/utils/keyboardactionutil/usekeyboardactions.tsx","../src/utils/keyboardactionutil/types.ts","../src/utils/swaparrayitem/draganddroputils.ts","../src/utils/throttle/throttle.ts","../src/utils/truncatetext/truncatetext.ts","../src/utils/validatefile/validatefile.ts","../src/validations/regex.ts"],"version":"5.6.3"}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
title: string;
|
3
|
+
component: (obj1: import("./compareObjects").AnyObject | null, obj2: import("./compareObjects").AnyObject | null) => boolean;
|
4
|
+
};
|
5
|
+
export default _default;
|
6
|
+
export declare const Default: () => import("react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
export type AnyObject = {
|
2
|
+
id: number;
|
3
|
+
[key: string]: any;
|
4
|
+
};
|
5
|
+
export declare function findAndInsert<T extends AnyObject>(data: T[], key: keyof T, targetId: number, newEntry: T, insertPosition: 'above' | 'below' | 'replace', childrenKey?: string): {
|
6
|
+
updatedArray: T[];
|
7
|
+
} | null;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
3
|
+
import { MachineExecutionInstanceDataSet } from './types';
|
4
|
+
declare const SequentialPayloadComponent: React.FC<{
|
5
|
+
machineInstances: MachineExecutionInstanceDataSet[];
|
6
|
+
}>;
|
7
|
+
declare const meta: Meta<typeof SequentialPayloadComponent>;
|
8
|
+
type Story = StoryObj<typeof SequentialPayloadComponent>;
|
9
|
+
export declare const Primary: Story;
|
10
|
+
export default meta;
|
package/package.json
CHANGED
@@ -31,6 +31,11 @@ $base-theme: (
|
|
31
31
|
chip-fill-color: #f9d5ff,
|
32
32
|
chip-text-color: #1e161f,
|
33
33
|
icon-color: #71347b,
|
34
|
+
available-memory-bg: #9f2ea1,
|
35
|
+
assigned-memory-bg:
|
36
|
+
linear-gradient(88.75deg, #bdb7ff 1.07%, #a8a1ff 40.23%, #7e72ff 79.4%),
|
37
|
+
used-memory-bg:
|
38
|
+
linear-gradient(90deg, #e0c6fd 0.13%, #c893fd 40.13%, #b264ff 80.13%),
|
34
39
|
default-icon-color: #a3a3a3,
|
35
40
|
tree-connecting-lines-color: #d7b5e3,
|
36
41
|
primary-button-color:
|
@@ -294,23 +299,39 @@ $base-theme: (
|
|
294
299
|
dynamic-card-border-color: #eeeaf2,
|
295
300
|
card-header-bg-color: #592f7c1a,
|
296
301
|
|
302
|
+
card-total-defect-color: #71347b,
|
303
|
+
card-defect-density: #5dc70c,
|
304
|
+
|
297
305
|
table-with-accordion-header-primary-bg: #d4b0e426,
|
298
306
|
table-with-accordion-icon-color: #1e161f,
|
299
307
|
plugins-header-bg-color: rgba(89, 47, 124, 0.1),
|
300
|
-
|
301
|
-
follow-user-icon-
|
302
|
-
follow-user-icon-
|
303
|
-
follow-user-icon-
|
304
|
-
follow-user-icon-
|
305
|
-
follow-user-icon-
|
306
|
-
follow-user-icon-
|
307
|
-
follow-user-icon-
|
308
|
-
follow-user-icon-
|
309
|
-
follow-user-icon-
|
310
|
-
follow-user-icon-salmon: #D36E70,
|
308
|
+
follow-user-icon-red: #922b3e,
|
309
|
+
follow-user-icon-orange: #ed760e,
|
310
|
+
follow-user-icon-black: #0a0a0a,
|
311
|
+
follow-user-icon-pink: #e63244,
|
312
|
+
follow-user-icon-blue: #3b83bd,
|
313
|
+
follow-user-icon-navy: #20214f,
|
314
|
+
follow-user-icon-lightGreen: #bdecb6,
|
315
|
+
follow-user-icon-gray: #d9d9d9,
|
316
|
+
follow-user-icon-yellow: #cda434,
|
317
|
+
follow-user-icon-salmon: #d36e70,
|
311
318
|
|
312
319
|
dataset-tooltip-title: #808080,
|
313
320
|
dataset-tooltip-value: #ffffff,
|
321
|
+
|
322
|
+
defect-trivial: '#8bc34a',
|
323
|
+
defect-text: '#9e9e9e',
|
324
|
+
defect-tweak: '#ffc107',
|
325
|
+
defect-minor: '#ffeb3b',
|
326
|
+
defect-majour: '#ff9800',
|
327
|
+
defect-crash: '#f44336',
|
328
|
+
defect-block: '#d32f2f',
|
329
|
+
defect-blocker: '#b71c1c',
|
330
|
+
defect-critical: '#c2185b',
|
331
|
+
defect-catastrophic: '#6a1b9a',
|
332
|
+
defect-serious: '#7b1fa2',
|
333
|
+
defect-normal: '#03a9f4',
|
334
|
+
defect-small-or-trivial: '#4dd0e1',
|
314
335
|
);
|
315
336
|
|
316
337
|
:root {
|
@@ -268,6 +268,9 @@ $blue-theme: (
|
|
268
268
|
impact-list-chip-text-color: #3d3c3e,
|
269
269
|
impact-list-chip-bg-color: #e3ccf5,
|
270
270
|
|
271
|
+
card-total-defect-color: #71347b,
|
272
|
+
card-defect-density: #5dc70c,
|
273
|
+
|
271
274
|
table-with-accordion-header-primary-bg: #d4b0e426,
|
272
275
|
table-with-accordion-icon-color: #1e161f,
|
273
276
|
plugins-header-bg-color: rgba(89, 47, 124, 0.1),
|
@@ -31,6 +31,11 @@ $dark-theme: (
|
|
31
31
|
chip-text-color: #1e161f,
|
32
32
|
icon-color: #71347b,
|
33
33
|
tree-connecting-lines-color: #d7b5e3,
|
34
|
+
available-memory-bg: #9f2ea1,
|
35
|
+
assigned-memory-bg:
|
36
|
+
linear-gradient(88.75deg, #bdb7ff 1.07%, #a8a1ff 40.23%, #7e72ff 79.4%),
|
37
|
+
used-memory-bg:
|
38
|
+
linear-gradient(90deg, #e0c6fd 0.13%, #c893fd 40.13%, #b264ff 80.13%),
|
34
39
|
primary-button-color:
|
35
40
|
linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%),
|
36
41
|
primary-button-hover:
|
@@ -310,24 +315,38 @@ $dark-theme: (
|
|
310
315
|
ff-connecting-branch-modal-border: #e0e0e0,
|
311
316
|
ff-connecting-branch-scope-color: #079455,
|
312
317
|
ff-connecting-branch-delete-color: #e42525,
|
313
|
-
plugins-header-bg-color: rgba(89, 47, 124, 0.1),
|
314
318
|
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
follow-user-icon-
|
319
|
-
follow-user-icon-
|
320
|
-
follow-user-icon-
|
321
|
-
follow-user-icon-
|
322
|
-
follow-user-icon-
|
323
|
-
follow-user-icon-
|
324
|
-
follow-user-icon-
|
325
|
-
|
319
|
+
card-total-defect-color: #71347b,
|
320
|
+
card-defect-density: #5dc70c,
|
321
|
+
plugins-header-bg-color: rgba(89, 47, 124, 0.1),
|
322
|
+
follow-user-icon-red: #922b3e,
|
323
|
+
follow-user-icon-orange: #ed760e,
|
324
|
+
follow-user-icon-black: #0a0a0a,
|
325
|
+
follow-user-icon-pink: #e63244,
|
326
|
+
follow-user-icon-blue: #3b83bd,
|
327
|
+
follow-user-icon-navy: #20214f,
|
328
|
+
follow-user-icon-lightGreen: #bdecb6,
|
329
|
+
follow-user-icon-gray: #d9d9d9,
|
330
|
+
follow-user-icon-yellow: #cda434,
|
331
|
+
follow-user-icon-salmon: #d36e70,
|
326
332
|
|
327
333
|
dataset-tooltip-title: #808080,
|
328
334
|
dataset-tooltip-value: #ffffff,
|
329
|
-
);
|
330
335
|
|
336
|
+
defect-trivial: '#8bc34a',
|
337
|
+
defect-text: '#9e9e9e',
|
338
|
+
defect-tweak: '#ffc107',
|
339
|
+
defect-minor: '#ffeb3b',
|
340
|
+
defect-majour: '#ff9800',
|
341
|
+
defect-crash: '#f44336',
|
342
|
+
defect-block: '#d32f2f',
|
343
|
+
defect-blocker: '#b71c1c',
|
344
|
+
defect-critical: '#c2185b',
|
345
|
+
defect-catastrophic: '#6a1b9a',
|
346
|
+
defect-serious: '#7b1fa2',
|
347
|
+
defect-normal: '#03a9f4',
|
348
|
+
defect-small-or-trivial: '#4dd0e1',
|
349
|
+
);
|
331
350
|
|
332
351
|
:root {
|
333
352
|
@each $key, $value in $dark-theme {
|
@@ -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_11608" maskUnits="userSpaceOnUse" x="0" y="-0.000976562" width="18" height="18" fill="currentColor">
|
3
|
-
<rect fill="white" y="-0.000976562" width="18" height="18"/>
|
4
|
-
<path d="M14.5007 11.447C15.4768 10.707 16.1477 9.39715 16.2107 8.13752H16.2608C16.6684 8.13752 17 7.80593 17 7.39837V6.90921C17 6.77115 16.888 6.65921 16.75 6.65921H12.3431V4.45674C12.3431 4.39227 12.3182 4.33034 12.2736 4.2838L9.20034 1.07609C9.15319 1.02687 9.08797 0.999023 9.01984 0.999023H1.25C1.11194 0.999023 1 1.11096 1 1.24902V16.7491C1 16.8871 1.11194 16.9991 1.25 16.9991H9.21725H16.75C16.8881 16.9991 17 16.8871 17 16.7491V16.2599C17 15.8524 16.6684 15.5208 16.2608 15.5208H16.2107C16.1477 14.2612 15.4769 12.9514 14.5008 12.2114C14.382 12.1213 14.3139 11.982 14.3139 11.8292C14.3139 11.6763 14.382 11.537 14.5007 11.447ZM16.5 7.39834C16.5 7.53021 16.3927 7.63749 16.2608 7.63749H9.70641C9.57453 7.63749 9.46725 7.53018 9.46725 7.39834V7.15918H16.5V7.39834ZM11.5073 4.20674H9.13538V1.73096L11.5073 4.20674ZM1.5 1.49902H8.63538V4.45671C8.63538 4.59477 8.74731 4.70671 8.88538 4.70671H11.8431V6.65918H9.21725C9.07919 6.65918 8.96725 6.77112 8.96725 6.90918V7.39834C8.96725 7.8059 9.29884 8.13749 9.70641 8.13749H9.75656C9.8195 9.39712 10.4904 10.7069 11.4665 11.4469C11.5852 11.5369 11.6533 11.6762 11.6533 11.8291C11.6533 11.982 11.5852 12.1213 11.4665 12.2113C10.4904 12.9512 9.8195 14.2611 9.75656 15.5207H9.70641C9.29884 15.5207 8.96725 15.8523 8.96725 16.2598V16.499H1.5V1.49902ZM16.5 16.2599V16.4991H9.46725V16.2599C9.46725 16.1281 9.57456 16.0208 9.70641 16.0208H16.2608C16.3927 16.0207 16.5 16.1281 16.5 16.2599ZM12.7925 14.816C12.8586 14.7884 12.9224 14.7562 12.9836 14.7198C13.0448 14.7562 13.1087 14.7883 13.1748 14.816C13.4904 14.9477 13.7873 15.1922 14.036 15.5208H11.9313C12.18 15.1922 12.4769 14.9477 12.7925 14.816ZM14.1987 12.6098C15.0425 13.2495 15.6456 14.4234 15.71 15.5207H14.6387C14.3055 14.9709 13.8583 14.5594 13.3674 14.3546C13.3209 14.3351 13.2763 14.3121 13.2336 14.2862V13.5991C13.2336 13.4611 13.1217 13.3491 12.9836 13.3491C12.8455 13.3491 12.7336 13.4611 12.7336 13.5991V14.2863C12.6908 14.3121 12.6463 14.3352 12.5999 14.3546C12.109 14.5594 11.6618 14.9709 11.3286 15.5207H10.2572C10.3216 14.4234 10.9247 13.2495 11.7685 12.6098C12.0131 12.4244 12.1533 12.1399 12.1533 11.8292C12.1533 11.5184 12.0131 11.2339 11.7685 11.0485C10.9247 10.4088 10.3216 9.2349 10.2572 8.13756H15.71C15.6456 9.2349 15.0425 10.4088 14.1987 11.0486C13.9542 11.2339 13.8139 11.5184 13.8139 11.8291C13.8139 12.1398 13.9542 12.4244 14.1987 12.6098ZM13.2336 12.1133V12.3289C13.2336 12.4669 13.1217 12.5789 12.9836 12.5789C12.8456 12.5789 12.7336 12.4669 12.7336 12.3289V12.1133C12.7336 11.9753 12.8456 11.8633 12.9836 11.8633C13.1217 11.8633 13.2336 11.9753 13.2336 12.1133ZM14.8461 9.3459C14.8952 9.23802 14.8618 9.11052 14.7661 9.04056C13.972 8.45977 13.3647 8.75105 12.8288 9.00805C12.427 9.20077 12.0475 9.38277 11.5434 9.28396C11.4474 9.26515 11.3493 9.30402 11.2923 9.38343C11.2353 9.4628 11.2298 9.56818 11.2782 9.65315C11.6158 10.2452 12.0852 10.6896 12.5998 10.9044C12.6463 10.9238 12.6908 10.9468 12.7336 10.9727V11.3204C12.7336 11.4585 12.8455 11.5704 12.9836 11.5704C13.1217 11.5704 13.2336 11.4585 13.2336 11.3204V10.9728C13.2764 10.9469 13.3209 10.9238 13.3673 10.9045C13.9711 10.6525 14.51 10.0844 14.8461 9.3459ZM13.1748 10.443C13.1088 10.4706 13.0449 10.5027 12.9837 10.5391C12.9225 10.5027 12.8586 10.4706 12.7925 10.443C12.4997 10.3208 12.2218 10.1002 11.984 9.80543C12.3946 9.77087 12.7346 9.60781 13.0451 9.4589C13.4966 9.2423 13.8365 9.07934 14.2957 9.33159C14.0125 9.86109 13.6117 10.2606 13.1748 10.443ZM2.97287 4.94155C2.97287 4.80349 3.08481 4.69155 3.22288 4.69155H7.23537C7.37344 4.69155 7.48537 4.80349 7.48537 4.94155C7.48537 5.07962 7.37344 5.19156 7.23537 5.19156H3.22288C3.08481 5.19156 2.97287 5.07962 2.97287 4.94155ZM2.97287 7.64659C2.97287 7.50852 3.08481 7.39659 3.22288 7.39659H7.23537C7.37344 7.39659 7.48537 7.50852 7.48537 7.64659C7.48537 7.78465 7.37344 7.89659 7.23537 7.89659H3.22288C3.08481 7.89659 2.97287 7.78465 2.97287 7.64659ZM2.97287 10.3516C2.97287 10.2135 3.08481 10.1016 3.22288 10.1016H8.82175C8.95981 10.1016 9.07175 10.2135 9.07175 10.3516C9.07175 10.4896 8.95981 10.6016 8.82175 10.6016H3.22288C3.08481 10.6016 2.97287 10.4896 2.97287 10.3516ZM8.82175 13.3066H3.22288C3.08481 13.3066 2.97287 13.1946 2.97287 13.0566C2.97287 12.9185 3.08481 12.8066 3.22288 12.8066H8.82175C8.95981 12.8066 9.07175 12.9185 9.07175 13.0566C9.07175 13.1946 8.95981 13.3066 8.82175 13.3066Z"/>
|
5
|
-
</mask>
|
6
|
-
<path d="M14.5007 11.447C15.4768 10.707 16.1477 9.39715 16.2107 8.13752H16.2608C16.6684 8.13752 17 7.80593 17 7.39837V6.90921C17 6.77115 16.888 6.65921 16.75 6.65921H12.3431V4.45674C12.3431 4.39227 12.3182 4.33034 12.2736 4.2838L9.20034 1.07609C9.15319 1.02687 9.08797 0.999023 9.01984 0.999023H1.25C1.11194 0.999023 1 1.11096 1 1.24902V16.7491C1 16.8871 1.11194 16.9991 1.25 16.9991H9.21725H16.75C16.8881 16.9991 17 16.8871 17 16.7491V16.2599C17 15.8524 16.6684 15.5208 16.2608 15.5208H16.2107C16.1477 14.2612 15.4769 12.9514 14.5008 12.2114C14.382 12.1213 14.3139 11.982 14.3139 11.8292C14.3139 11.6763 14.382 11.537 14.5007 11.447ZM16.5 7.39834C16.5 7.53021 16.3927 7.63749 16.2608 7.63749H9.70641C9.57453 7.63749 9.46725 7.53018 9.46725 7.39834V7.15918H16.5V7.39834ZM11.5073 4.20674H9.13538V1.73096L11.5073 4.20674ZM1.5 1.49902H8.63538V4.45671C8.63538 4.59477 8.74731 4.70671 8.88538 4.70671H11.8431V6.65918H9.21725C9.07919 6.65918 8.96725 6.77112 8.96725 6.90918V7.39834C8.96725 7.8059 9.29884 8.13749 9.70641 8.13749H9.75656C9.8195 9.39712 10.4904 10.7069 11.4665 11.4469C11.5852 11.5369 11.6533 11.6762 11.6533 11.8291C11.6533 11.982 11.5852 12.1213 11.4665 12.2113C10.4904 12.9512 9.8195 14.2611 9.75656 15.5207H9.70641C9.29884 15.5207 8.96725 15.8523 8.96725 16.2598V16.499H1.5V1.49902ZM16.5 16.2599V16.4991H9.46725V16.2599C9.46725 16.1281 9.57456 16.0208 9.70641 16.0208H16.2608C16.3927 16.0207 16.5 16.1281 16.5 16.2599ZM12.7925 14.816C12.8586 14.7884 12.9224 14.7562 12.9836 14.7198C13.0448 14.7562 13.1087 14.7883 13.1748 14.816C13.4904 14.9477 13.7873 15.1922 14.036 15.5208H11.9313C12.18 15.1922 12.4769 14.9477 12.7925 14.816ZM14.1987 12.6098C15.0425 13.2495 15.6456 14.4234 15.71 15.5207H14.6387C14.3055 14.9709 13.8583 14.5594 13.3674 14.3546C13.3209 14.3351 13.2763 14.3121 13.2336 14.2862V13.5991C13.2336 13.4611 13.1217 13.3491 12.9836 13.3491C12.8455 13.3491 12.7336 13.4611 12.7336 13.5991V14.2863C12.6908 14.3121 12.6463 14.3352 12.5999 14.3546C12.109 14.5594 11.6618 14.9709 11.3286 15.5207H10.2572C10.3216 14.4234 10.9247 13.2495 11.7685 12.6098C12.0131 12.4244 12.1533 12.1399 12.1533 11.8292C12.1533 11.5184 12.0131 11.2339 11.7685 11.0485C10.9247 10.4088 10.3216 9.2349 10.2572 8.13756H15.71C15.6456 9.2349 15.0425 10.4088 14.1987 11.0486C13.9542 11.2339 13.8139 11.5184 13.8139 11.8291C13.8139 12.1398 13.9542 12.4244 14.1987 12.6098ZM13.2336 12.1133V12.3289C13.2336 12.4669 13.1217 12.5789 12.9836 12.5789C12.8456 12.5789 12.7336 12.4669 12.7336 12.3289V12.1133C12.7336 11.9753 12.8456 11.8633 12.9836 11.8633C13.1217 11.8633 13.2336 11.9753 13.2336 12.1133ZM14.8461 9.3459C14.8952 9.23802 14.8618 9.11052 14.7661 9.04056C13.972 8.45977 13.3647 8.75105 12.8288 9.00805C12.427 9.20077 12.0475 9.38277 11.5434 9.28396C11.4474 9.26515 11.3493 9.30402 11.2923 9.38343C11.2353 9.4628 11.2298 9.56818 11.2782 9.65315C11.6158 10.2452 12.0852 10.6896 12.5998 10.9044C12.6463 10.9238 12.6908 10.9468 12.7336 10.9727V11.3204C12.7336 11.4585 12.8455 11.5704 12.9836 11.5704C13.1217 11.5704 13.2336 11.4585 13.2336 11.3204V10.9728C13.2764 10.9469 13.3209 10.9238 13.3673 10.9045C13.9711 10.6525 14.51 10.0844 14.8461 9.3459ZM13.1748 10.443C13.1088 10.4706 13.0449 10.5027 12.9837 10.5391C12.9225 10.5027 12.8586 10.4706 12.7925 10.443C12.4997 10.3208 12.2218 10.1002 11.984 9.80543C12.3946 9.77087 12.7346 9.60781 13.0451 9.4589C13.4966 9.2423 13.8365 9.07934 14.2957 9.33159C14.0125 9.86109 13.6117 10.2606 13.1748 10.443ZM2.97287 4.94155C2.97287 4.80349 3.08481 4.69155 3.22288 4.69155H7.23537C7.37344 4.69155 7.48537 4.80349 7.48537 4.94155C7.48537 5.07962 7.37344 5.19156 7.23537 5.19156H3.22288C3.08481 5.19156 2.97287 5.07962 2.97287 4.94155ZM2.97287 7.64659C2.97287 7.50852 3.08481 7.39659 3.22288 7.39659H7.23537C7.37344 7.39659 7.48537 7.50852 7.48537 7.64659C7.48537 7.78465 7.37344 7.89659 7.23537 7.89659H3.22288C3.08481 7.89659 2.97287 7.78465 2.97287 7.64659ZM2.97287 10.3516C2.97287 10.2135 3.08481 10.1016 3.22288 10.1016H8.82175C8.95981 10.1016 9.07175 10.2135 9.07175 10.3516C9.07175 10.4896 8.95981 10.6016 8.82175 10.6016H3.22288C3.08481 10.6016 2.97287 10.4896 2.97287 10.3516ZM8.82175 13.3066H3.22288C3.08481 13.3066 2.97287 13.1946 2.97287 13.0566C2.97287 12.9185 3.08481 12.8066 3.22288 12.8066H8.82175C8.95981 12.8066 9.07175 12.9185 9.07175 13.0566C9.07175 13.1946 8.95981 13.3066 8.82175 13.3066Z" fill="currentColor"/>
|
7
|
-
<path d="M14.5007 11.447C15.4768 10.707 16.1477 9.39715 16.2107 8.13752H16.2608C16.6684 8.13752 17 7.80593 17 7.39837V6.90921C17 6.77115 16.888 6.65921 16.75 6.65921H12.3431V4.45674C12.3431 4.39227 12.3182 4.33034 12.2736 4.2838L9.20034 1.07609C9.15319 1.02687 9.08797 0.999023 9.01984 0.999023H1.25C1.11194 0.999023 1 1.11096 1 1.24902V16.7491C1 16.8871 1.11194 16.9991 1.25 16.9991H9.21725H16.75C16.8881 16.9991 17 16.8871 17 16.7491V16.2599C17 15.8524 16.6684 15.5208 16.2608 15.5208H16.2107C16.1477 14.2612 15.4769 12.9514 14.5008 12.2114C14.382 12.1213 14.3139 11.982 14.3139 11.8292C14.3139 11.6763 14.382 11.537 14.5007 11.447ZM16.5 7.39834C16.5 7.53021 16.3927 7.63749 16.2608 7.63749H9.70641C9.57453 7.63749 9.46725 7.53018 9.46725 7.39834V7.15918H16.5V7.39834ZM11.5073 4.20674H9.13538V1.73096L11.5073 4.20674ZM1.5 1.49902H8.63538V4.45671C8.63538 4.59477 8.74731 4.70671 8.88538 4.70671H11.8431V6.65918H9.21725C9.07919 6.65918 8.96725 6.77112 8.96725 6.90918V7.39834C8.96725 7.8059 9.29884 8.13749 9.70641 8.13749H9.75656C9.8195 9.39712 10.4904 10.7069 11.4665 11.4469C11.5852 11.5369 11.6533 11.6762 11.6533 11.8291C11.6533 11.982 11.5852 12.1213 11.4665 12.2113C10.4904 12.9512 9.8195 14.2611 9.75656 15.5207H9.70641C9.29884 15.5207 8.96725 15.8523 8.96725 16.2598V16.499H1.5V1.49902ZM16.5 16.2599V16.4991H9.46725V16.2599C9.46725 16.1281 9.57456 16.0208 9.70641 16.0208H16.2608C16.3927 16.0207 16.5 16.1281 16.5 16.2599ZM12.7925 14.816C12.8586 14.7884 12.9224 14.7562 12.9836 14.7198C13.0448 14.7562 13.1087 14.7883 13.1748 14.816C13.4904 14.9477 13.7873 15.1922 14.036 15.5208H11.9313C12.18 15.1922 12.4769 14.9477 12.7925 14.816ZM14.1987 12.6098C15.0425 13.2495 15.6456 14.4234 15.71 15.5207H14.6387C14.3055 14.9709 13.8583 14.5594 13.3674 14.3546C13.3209 14.3351 13.2763 14.3121 13.2336 14.2862V13.5991C13.2336 13.4611 13.1217 13.3491 12.9836 13.3491C12.8455 13.3491 12.7336 13.4611 12.7336 13.5991V14.2863C12.6908 14.3121 12.6463 14.3352 12.5999 14.3546C12.109 14.5594 11.6618 14.9709 11.3286 15.5207H10.2572C10.3216 14.4234 10.9247 13.2495 11.7685 12.6098C12.0131 12.4244 12.1533 12.1399 12.1533 11.8292C12.1533 11.5184 12.0131 11.2339 11.7685 11.0485C10.9247 10.4088 10.3216 9.2349 10.2572 8.13756H15.71C15.6456 9.2349 15.0425 10.4088 14.1987 11.0486C13.9542 11.2339 13.8139 11.5184 13.8139 11.8291C13.8139 12.1398 13.9542 12.4244 14.1987 12.6098ZM13.2336 12.1133V12.3289C13.2336 12.4669 13.1217 12.5789 12.9836 12.5789C12.8456 12.5789 12.7336 12.4669 12.7336 12.3289V12.1133C12.7336 11.9753 12.8456 11.8633 12.9836 11.8633C13.1217 11.8633 13.2336 11.9753 13.2336 12.1133ZM14.8461 9.3459C14.8952 9.23802 14.8618 9.11052 14.7661 9.04056C13.972 8.45977 13.3647 8.75105 12.8288 9.00805C12.427 9.20077 12.0475 9.38277 11.5434 9.28396C11.4474 9.26515 11.3493 9.30402 11.2923 9.38343C11.2353 9.4628 11.2298 9.56818 11.2782 9.65315C11.6158 10.2452 12.0852 10.6896 12.5998 10.9044C12.6463 10.9238 12.6908 10.9468 12.7336 10.9727V11.3204C12.7336 11.4585 12.8455 11.5704 12.9836 11.5704C13.1217 11.5704 13.2336 11.4585 13.2336 11.3204V10.9728C13.2764 10.9469 13.3209 10.9238 13.3673 10.9045C13.9711 10.6525 14.51 10.0844 14.8461 9.3459ZM13.1748 10.443C13.1088 10.4706 13.0449 10.5027 12.9837 10.5391C12.9225 10.5027 12.8586 10.4706 12.7925 10.443C12.4997 10.3208 12.2218 10.1002 11.984 9.80543C12.3946 9.77087 12.7346 9.60781 13.0451 9.4589C13.4966 9.2423 13.8365 9.07934 14.2957 9.33159C14.0125 9.86109 13.6117 10.2606 13.1748 10.443ZM2.97287 4.94155C2.97287 4.80349 3.08481 4.69155 3.22288 4.69155H7.23537C7.37344 4.69155 7.48537 4.80349 7.48537 4.94155C7.48537 5.07962 7.37344 5.19156 7.23537 5.19156H3.22288C3.08481 5.19156 2.97287 5.07962 2.97287 4.94155ZM2.97287 7.64659C2.97287 7.50852 3.08481 7.39659 3.22288 7.39659H7.23537C7.37344 7.39659 7.48537 7.50852 7.48537 7.64659C7.48537 7.78465 7.37344 7.89659 7.23537 7.89659H3.22288C3.08481 7.89659 2.97287 7.78465 2.97287 7.64659ZM2.97287 10.3516C2.97287 10.2135 3.08481 10.1016 3.22288 10.1016H8.82175C8.95981 10.1016 9.07175 10.2135 9.07175 10.3516C9.07175 10.4896 8.95981 10.6016 8.82175 10.6016H3.22288C3.08481 10.6016 2.97287 10.4896 2.97287 10.3516ZM8.82175 13.3066H3.22288C3.08481 13.3066 2.97287 13.1946 2.97287 13.0566C2.97287 12.9185 3.08481 12.8066 3.22288 12.8066H8.82175C8.95981 12.8066 9.07175 12.9185 9.07175 13.0566C9.07175 13.1946 8.95981 13.3066 8.82175 13.3066Z" stroke="currentColor" stroke-width="0.4" mask="url(#path-1-outside-1_2947_11608)"/>
|
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_11608" maskUnits="userSpaceOnUse" x="0" y="-0.000976562" width="18" height="18" fill="currentColor">
|
3
|
+
<rect fill="white" y="-0.000976562" width="18" height="18"/>
|
4
|
+
<path d="M14.5007 11.447C15.4768 10.707 16.1477 9.39715 16.2107 8.13752H16.2608C16.6684 8.13752 17 7.80593 17 7.39837V6.90921C17 6.77115 16.888 6.65921 16.75 6.65921H12.3431V4.45674C12.3431 4.39227 12.3182 4.33034 12.2736 4.2838L9.20034 1.07609C9.15319 1.02687 9.08797 0.999023 9.01984 0.999023H1.25C1.11194 0.999023 1 1.11096 1 1.24902V16.7491C1 16.8871 1.11194 16.9991 1.25 16.9991H9.21725H16.75C16.8881 16.9991 17 16.8871 17 16.7491V16.2599C17 15.8524 16.6684 15.5208 16.2608 15.5208H16.2107C16.1477 14.2612 15.4769 12.9514 14.5008 12.2114C14.382 12.1213 14.3139 11.982 14.3139 11.8292C14.3139 11.6763 14.382 11.537 14.5007 11.447ZM16.5 7.39834C16.5 7.53021 16.3927 7.63749 16.2608 7.63749H9.70641C9.57453 7.63749 9.46725 7.53018 9.46725 7.39834V7.15918H16.5V7.39834ZM11.5073 4.20674H9.13538V1.73096L11.5073 4.20674ZM1.5 1.49902H8.63538V4.45671C8.63538 4.59477 8.74731 4.70671 8.88538 4.70671H11.8431V6.65918H9.21725C9.07919 6.65918 8.96725 6.77112 8.96725 6.90918V7.39834C8.96725 7.8059 9.29884 8.13749 9.70641 8.13749H9.75656C9.8195 9.39712 10.4904 10.7069 11.4665 11.4469C11.5852 11.5369 11.6533 11.6762 11.6533 11.8291C11.6533 11.982 11.5852 12.1213 11.4665 12.2113C10.4904 12.9512 9.8195 14.2611 9.75656 15.5207H9.70641C9.29884 15.5207 8.96725 15.8523 8.96725 16.2598V16.499H1.5V1.49902ZM16.5 16.2599V16.4991H9.46725V16.2599C9.46725 16.1281 9.57456 16.0208 9.70641 16.0208H16.2608C16.3927 16.0207 16.5 16.1281 16.5 16.2599ZM12.7925 14.816C12.8586 14.7884 12.9224 14.7562 12.9836 14.7198C13.0448 14.7562 13.1087 14.7883 13.1748 14.816C13.4904 14.9477 13.7873 15.1922 14.036 15.5208H11.9313C12.18 15.1922 12.4769 14.9477 12.7925 14.816ZM14.1987 12.6098C15.0425 13.2495 15.6456 14.4234 15.71 15.5207H14.6387C14.3055 14.9709 13.8583 14.5594 13.3674 14.3546C13.3209 14.3351 13.2763 14.3121 13.2336 14.2862V13.5991C13.2336 13.4611 13.1217 13.3491 12.9836 13.3491C12.8455 13.3491 12.7336 13.4611 12.7336 13.5991V14.2863C12.6908 14.3121 12.6463 14.3352 12.5999 14.3546C12.109 14.5594 11.6618 14.9709 11.3286 15.5207H10.2572C10.3216 14.4234 10.9247 13.2495 11.7685 12.6098C12.0131 12.4244 12.1533 12.1399 12.1533 11.8292C12.1533 11.5184 12.0131 11.2339 11.7685 11.0485C10.9247 10.4088 10.3216 9.2349 10.2572 8.13756H15.71C15.6456 9.2349 15.0425 10.4088 14.1987 11.0486C13.9542 11.2339 13.8139 11.5184 13.8139 11.8291C13.8139 12.1398 13.9542 12.4244 14.1987 12.6098ZM13.2336 12.1133V12.3289C13.2336 12.4669 13.1217 12.5789 12.9836 12.5789C12.8456 12.5789 12.7336 12.4669 12.7336 12.3289V12.1133C12.7336 11.9753 12.8456 11.8633 12.9836 11.8633C13.1217 11.8633 13.2336 11.9753 13.2336 12.1133ZM14.8461 9.3459C14.8952 9.23802 14.8618 9.11052 14.7661 9.04056C13.972 8.45977 13.3647 8.75105 12.8288 9.00805C12.427 9.20077 12.0475 9.38277 11.5434 9.28396C11.4474 9.26515 11.3493 9.30402 11.2923 9.38343C11.2353 9.4628 11.2298 9.56818 11.2782 9.65315C11.6158 10.2452 12.0852 10.6896 12.5998 10.9044C12.6463 10.9238 12.6908 10.9468 12.7336 10.9727V11.3204C12.7336 11.4585 12.8455 11.5704 12.9836 11.5704C13.1217 11.5704 13.2336 11.4585 13.2336 11.3204V10.9728C13.2764 10.9469 13.3209 10.9238 13.3673 10.9045C13.9711 10.6525 14.51 10.0844 14.8461 9.3459ZM13.1748 10.443C13.1088 10.4706 13.0449 10.5027 12.9837 10.5391C12.9225 10.5027 12.8586 10.4706 12.7925 10.443C12.4997 10.3208 12.2218 10.1002 11.984 9.80543C12.3946 9.77087 12.7346 9.60781 13.0451 9.4589C13.4966 9.2423 13.8365 9.07934 14.2957 9.33159C14.0125 9.86109 13.6117 10.2606 13.1748 10.443ZM2.97287 4.94155C2.97287 4.80349 3.08481 4.69155 3.22288 4.69155H7.23537C7.37344 4.69155 7.48537 4.80349 7.48537 4.94155C7.48537 5.07962 7.37344 5.19156 7.23537 5.19156H3.22288C3.08481 5.19156 2.97287 5.07962 2.97287 4.94155ZM2.97287 7.64659C2.97287 7.50852 3.08481 7.39659 3.22288 7.39659H7.23537C7.37344 7.39659 7.48537 7.50852 7.48537 7.64659C7.48537 7.78465 7.37344 7.89659 7.23537 7.89659H3.22288C3.08481 7.89659 2.97287 7.78465 2.97287 7.64659ZM2.97287 10.3516C2.97287 10.2135 3.08481 10.1016 3.22288 10.1016H8.82175C8.95981 10.1016 9.07175 10.2135 9.07175 10.3516C9.07175 10.4896 8.95981 10.6016 8.82175 10.6016H3.22288C3.08481 10.6016 2.97287 10.4896 2.97287 10.3516ZM8.82175 13.3066H3.22288C3.08481 13.3066 2.97287 13.1946 2.97287 13.0566C2.97287 12.9185 3.08481 12.8066 3.22288 12.8066H8.82175C8.95981 12.8066 9.07175 12.9185 9.07175 13.0566C9.07175 13.1946 8.95981 13.3066 8.82175 13.3066Z"/>
|
5
|
+
</mask>
|
6
|
+
<path d="M14.5007 11.447C15.4768 10.707 16.1477 9.39715 16.2107 8.13752H16.2608C16.6684 8.13752 17 7.80593 17 7.39837V6.90921C17 6.77115 16.888 6.65921 16.75 6.65921H12.3431V4.45674C12.3431 4.39227 12.3182 4.33034 12.2736 4.2838L9.20034 1.07609C9.15319 1.02687 9.08797 0.999023 9.01984 0.999023H1.25C1.11194 0.999023 1 1.11096 1 1.24902V16.7491C1 16.8871 1.11194 16.9991 1.25 16.9991H9.21725H16.75C16.8881 16.9991 17 16.8871 17 16.7491V16.2599C17 15.8524 16.6684 15.5208 16.2608 15.5208H16.2107C16.1477 14.2612 15.4769 12.9514 14.5008 12.2114C14.382 12.1213 14.3139 11.982 14.3139 11.8292C14.3139 11.6763 14.382 11.537 14.5007 11.447ZM16.5 7.39834C16.5 7.53021 16.3927 7.63749 16.2608 7.63749H9.70641C9.57453 7.63749 9.46725 7.53018 9.46725 7.39834V7.15918H16.5V7.39834ZM11.5073 4.20674H9.13538V1.73096L11.5073 4.20674ZM1.5 1.49902H8.63538V4.45671C8.63538 4.59477 8.74731 4.70671 8.88538 4.70671H11.8431V6.65918H9.21725C9.07919 6.65918 8.96725 6.77112 8.96725 6.90918V7.39834C8.96725 7.8059 9.29884 8.13749 9.70641 8.13749H9.75656C9.8195 9.39712 10.4904 10.7069 11.4665 11.4469C11.5852 11.5369 11.6533 11.6762 11.6533 11.8291C11.6533 11.982 11.5852 12.1213 11.4665 12.2113C10.4904 12.9512 9.8195 14.2611 9.75656 15.5207H9.70641C9.29884 15.5207 8.96725 15.8523 8.96725 16.2598V16.499H1.5V1.49902ZM16.5 16.2599V16.4991H9.46725V16.2599C9.46725 16.1281 9.57456 16.0208 9.70641 16.0208H16.2608C16.3927 16.0207 16.5 16.1281 16.5 16.2599ZM12.7925 14.816C12.8586 14.7884 12.9224 14.7562 12.9836 14.7198C13.0448 14.7562 13.1087 14.7883 13.1748 14.816C13.4904 14.9477 13.7873 15.1922 14.036 15.5208H11.9313C12.18 15.1922 12.4769 14.9477 12.7925 14.816ZM14.1987 12.6098C15.0425 13.2495 15.6456 14.4234 15.71 15.5207H14.6387C14.3055 14.9709 13.8583 14.5594 13.3674 14.3546C13.3209 14.3351 13.2763 14.3121 13.2336 14.2862V13.5991C13.2336 13.4611 13.1217 13.3491 12.9836 13.3491C12.8455 13.3491 12.7336 13.4611 12.7336 13.5991V14.2863C12.6908 14.3121 12.6463 14.3352 12.5999 14.3546C12.109 14.5594 11.6618 14.9709 11.3286 15.5207H10.2572C10.3216 14.4234 10.9247 13.2495 11.7685 12.6098C12.0131 12.4244 12.1533 12.1399 12.1533 11.8292C12.1533 11.5184 12.0131 11.2339 11.7685 11.0485C10.9247 10.4088 10.3216 9.2349 10.2572 8.13756H15.71C15.6456 9.2349 15.0425 10.4088 14.1987 11.0486C13.9542 11.2339 13.8139 11.5184 13.8139 11.8291C13.8139 12.1398 13.9542 12.4244 14.1987 12.6098ZM13.2336 12.1133V12.3289C13.2336 12.4669 13.1217 12.5789 12.9836 12.5789C12.8456 12.5789 12.7336 12.4669 12.7336 12.3289V12.1133C12.7336 11.9753 12.8456 11.8633 12.9836 11.8633C13.1217 11.8633 13.2336 11.9753 13.2336 12.1133ZM14.8461 9.3459C14.8952 9.23802 14.8618 9.11052 14.7661 9.04056C13.972 8.45977 13.3647 8.75105 12.8288 9.00805C12.427 9.20077 12.0475 9.38277 11.5434 9.28396C11.4474 9.26515 11.3493 9.30402 11.2923 9.38343C11.2353 9.4628 11.2298 9.56818 11.2782 9.65315C11.6158 10.2452 12.0852 10.6896 12.5998 10.9044C12.6463 10.9238 12.6908 10.9468 12.7336 10.9727V11.3204C12.7336 11.4585 12.8455 11.5704 12.9836 11.5704C13.1217 11.5704 13.2336 11.4585 13.2336 11.3204V10.9728C13.2764 10.9469 13.3209 10.9238 13.3673 10.9045C13.9711 10.6525 14.51 10.0844 14.8461 9.3459ZM13.1748 10.443C13.1088 10.4706 13.0449 10.5027 12.9837 10.5391C12.9225 10.5027 12.8586 10.4706 12.7925 10.443C12.4997 10.3208 12.2218 10.1002 11.984 9.80543C12.3946 9.77087 12.7346 9.60781 13.0451 9.4589C13.4966 9.2423 13.8365 9.07934 14.2957 9.33159C14.0125 9.86109 13.6117 10.2606 13.1748 10.443ZM2.97287 4.94155C2.97287 4.80349 3.08481 4.69155 3.22288 4.69155H7.23537C7.37344 4.69155 7.48537 4.80349 7.48537 4.94155C7.48537 5.07962 7.37344 5.19156 7.23537 5.19156H3.22288C3.08481 5.19156 2.97287 5.07962 2.97287 4.94155ZM2.97287 7.64659C2.97287 7.50852 3.08481 7.39659 3.22288 7.39659H7.23537C7.37344 7.39659 7.48537 7.50852 7.48537 7.64659C7.48537 7.78465 7.37344 7.89659 7.23537 7.89659H3.22288C3.08481 7.89659 2.97287 7.78465 2.97287 7.64659ZM2.97287 10.3516C2.97287 10.2135 3.08481 10.1016 3.22288 10.1016H8.82175C8.95981 10.1016 9.07175 10.2135 9.07175 10.3516C9.07175 10.4896 8.95981 10.6016 8.82175 10.6016H3.22288C3.08481 10.6016 2.97287 10.4896 2.97287 10.3516ZM8.82175 13.3066H3.22288C3.08481 13.3066 2.97287 13.1946 2.97287 13.0566C2.97287 12.9185 3.08481 12.8066 3.22288 12.8066H8.82175C8.95981 12.8066 9.07175 12.9185 9.07175 13.0566C9.07175 13.1946 8.95981 13.3066 8.82175 13.3066Z" fill="currentColor"/>
|
7
|
+
<path d="M14.5007 11.447C15.4768 10.707 16.1477 9.39715 16.2107 8.13752H16.2608C16.6684 8.13752 17 7.80593 17 7.39837V6.90921C17 6.77115 16.888 6.65921 16.75 6.65921H12.3431V4.45674C12.3431 4.39227 12.3182 4.33034 12.2736 4.2838L9.20034 1.07609C9.15319 1.02687 9.08797 0.999023 9.01984 0.999023H1.25C1.11194 0.999023 1 1.11096 1 1.24902V16.7491C1 16.8871 1.11194 16.9991 1.25 16.9991H9.21725H16.75C16.8881 16.9991 17 16.8871 17 16.7491V16.2599C17 15.8524 16.6684 15.5208 16.2608 15.5208H16.2107C16.1477 14.2612 15.4769 12.9514 14.5008 12.2114C14.382 12.1213 14.3139 11.982 14.3139 11.8292C14.3139 11.6763 14.382 11.537 14.5007 11.447ZM16.5 7.39834C16.5 7.53021 16.3927 7.63749 16.2608 7.63749H9.70641C9.57453 7.63749 9.46725 7.53018 9.46725 7.39834V7.15918H16.5V7.39834ZM11.5073 4.20674H9.13538V1.73096L11.5073 4.20674ZM1.5 1.49902H8.63538V4.45671C8.63538 4.59477 8.74731 4.70671 8.88538 4.70671H11.8431V6.65918H9.21725C9.07919 6.65918 8.96725 6.77112 8.96725 6.90918V7.39834C8.96725 7.8059 9.29884 8.13749 9.70641 8.13749H9.75656C9.8195 9.39712 10.4904 10.7069 11.4665 11.4469C11.5852 11.5369 11.6533 11.6762 11.6533 11.8291C11.6533 11.982 11.5852 12.1213 11.4665 12.2113C10.4904 12.9512 9.8195 14.2611 9.75656 15.5207H9.70641C9.29884 15.5207 8.96725 15.8523 8.96725 16.2598V16.499H1.5V1.49902ZM16.5 16.2599V16.4991H9.46725V16.2599C9.46725 16.1281 9.57456 16.0208 9.70641 16.0208H16.2608C16.3927 16.0207 16.5 16.1281 16.5 16.2599ZM12.7925 14.816C12.8586 14.7884 12.9224 14.7562 12.9836 14.7198C13.0448 14.7562 13.1087 14.7883 13.1748 14.816C13.4904 14.9477 13.7873 15.1922 14.036 15.5208H11.9313C12.18 15.1922 12.4769 14.9477 12.7925 14.816ZM14.1987 12.6098C15.0425 13.2495 15.6456 14.4234 15.71 15.5207H14.6387C14.3055 14.9709 13.8583 14.5594 13.3674 14.3546C13.3209 14.3351 13.2763 14.3121 13.2336 14.2862V13.5991C13.2336 13.4611 13.1217 13.3491 12.9836 13.3491C12.8455 13.3491 12.7336 13.4611 12.7336 13.5991V14.2863C12.6908 14.3121 12.6463 14.3352 12.5999 14.3546C12.109 14.5594 11.6618 14.9709 11.3286 15.5207H10.2572C10.3216 14.4234 10.9247 13.2495 11.7685 12.6098C12.0131 12.4244 12.1533 12.1399 12.1533 11.8292C12.1533 11.5184 12.0131 11.2339 11.7685 11.0485C10.9247 10.4088 10.3216 9.2349 10.2572 8.13756H15.71C15.6456 9.2349 15.0425 10.4088 14.1987 11.0486C13.9542 11.2339 13.8139 11.5184 13.8139 11.8291C13.8139 12.1398 13.9542 12.4244 14.1987 12.6098ZM13.2336 12.1133V12.3289C13.2336 12.4669 13.1217 12.5789 12.9836 12.5789C12.8456 12.5789 12.7336 12.4669 12.7336 12.3289V12.1133C12.7336 11.9753 12.8456 11.8633 12.9836 11.8633C13.1217 11.8633 13.2336 11.9753 13.2336 12.1133ZM14.8461 9.3459C14.8952 9.23802 14.8618 9.11052 14.7661 9.04056C13.972 8.45977 13.3647 8.75105 12.8288 9.00805C12.427 9.20077 12.0475 9.38277 11.5434 9.28396C11.4474 9.26515 11.3493 9.30402 11.2923 9.38343C11.2353 9.4628 11.2298 9.56818 11.2782 9.65315C11.6158 10.2452 12.0852 10.6896 12.5998 10.9044C12.6463 10.9238 12.6908 10.9468 12.7336 10.9727V11.3204C12.7336 11.4585 12.8455 11.5704 12.9836 11.5704C13.1217 11.5704 13.2336 11.4585 13.2336 11.3204V10.9728C13.2764 10.9469 13.3209 10.9238 13.3673 10.9045C13.9711 10.6525 14.51 10.0844 14.8461 9.3459ZM13.1748 10.443C13.1088 10.4706 13.0449 10.5027 12.9837 10.5391C12.9225 10.5027 12.8586 10.4706 12.7925 10.443C12.4997 10.3208 12.2218 10.1002 11.984 9.80543C12.3946 9.77087 12.7346 9.60781 13.0451 9.4589C13.4966 9.2423 13.8365 9.07934 14.2957 9.33159C14.0125 9.86109 13.6117 10.2606 13.1748 10.443ZM2.97287 4.94155C2.97287 4.80349 3.08481 4.69155 3.22288 4.69155H7.23537C7.37344 4.69155 7.48537 4.80349 7.48537 4.94155C7.48537 5.07962 7.37344 5.19156 7.23537 5.19156H3.22288C3.08481 5.19156 2.97287 5.07962 2.97287 4.94155ZM2.97287 7.64659C2.97287 7.50852 3.08481 7.39659 3.22288 7.39659H7.23537C7.37344 7.39659 7.48537 7.50852 7.48537 7.64659C7.48537 7.78465 7.37344 7.89659 7.23537 7.89659H3.22288C3.08481 7.89659 2.97287 7.78465 2.97287 7.64659ZM2.97287 10.3516C2.97287 10.2135 3.08481 10.1016 3.22288 10.1016H8.82175C8.95981 10.1016 9.07175 10.2135 9.07175 10.3516C9.07175 10.4896 8.95981 10.6016 8.82175 10.6016H3.22288C3.08481 10.6016 2.97287 10.4896 2.97287 10.3516ZM8.82175 13.3066H3.22288C3.08481 13.3066 2.97287 13.1946 2.97287 13.0566C2.97287 12.9185 3.08481 12.8066 3.22288 12.8066H8.82175C8.95981 12.8066 9.07175 12.9185 9.07175 13.0566C9.07175 13.1946 8.95981 13.3066 8.82175 13.3066Z" stroke="currentColor" stroke-width="0.4" mask="url(#path-1-outside-1_2947_11608)"/>
|
8
|
+
</svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_2699_12924)">
|
3
|
+
<path d="M16.4538 16.6281C20.0413 12.9675 20.0413 7.03249 16.4538 3.37187C12.8662 -0.28874 7.04968 -0.28874 3.46214 3.37187C-0.12541 7.03249 -0.12541 12.9675 3.46214 16.6281C7.04968 20.2887 12.8662 20.2887 16.4538 16.6281Z" fill="#46CC6B"/>
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.0159 11.5903C18.3621 15.4934 15.344 18.5728 11.5189 19.2399L6.57272 14.193C5.38913 13.1963 4.63477 11.688 4.63477 9.99986C4.63477 6.99873 7.01902 4.56592 9.96025 4.56592C11.6147 4.56592 13.0929 5.33568 14.0697 6.54334L19.0159 11.5903Z" fill="#179C5F"/>
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2857 9.99986C15.2857 6.99873 12.9015 4.56592 9.96025 4.56592C7.01902 4.56592 4.63477 6.99873 4.63477 9.99986C4.63477 13.001 7.01902 15.4338 9.96025 15.4338C12.9015 15.4338 15.2857 13.001 15.2857 9.99986ZM9.07719 6.65167H9.42861V7.00309H9.07719V6.65167ZM10.1317 6.95001H9.78032V7.30143H10.1317V6.95001ZM12.1381 9.99945C12.1381 9.90754 12.1781 9.81846 12.245 9.76114L12.6133 9.4458L12.5867 9.34016C12.5544 9.21252 12.5127 9.08635 12.4625 8.96498C12.4122 8.84386 12.3525 8.72511 12.2851 8.61206L12.2292 8.5185L11.7473 8.55584C11.6592 8.56265 11.5678 8.52778 11.5025 8.46223C11.4375 8.39727 11.4028 8.30603 11.4096 8.21817L11.447 7.73476L11.3535 7.67893C11.2405 7.61147 11.1217 7.55177 11.0004 7.50144C10.8792 7.4513 10.753 7.40954 10.6254 7.37732L10.5197 7.35064L10.2053 7.71783C10.148 7.78476 10.0584 7.82468 9.96562 7.82468L9.90689 7.82458C9.83332 7.81342 9.76656 7.77718 9.71879 7.7214L9.40345 7.35309L9.29782 7.37976C9.17021 7.41197 9.04404 7.45373 8.92263 7.50394C8.80149 7.5542 8.68274 7.6139 8.5697 7.68136L8.47614 7.7372L8.51349 8.21916C8.52031 8.30719 8.48542 8.39857 8.41987 8.46387C8.35492 8.52888 8.26375 8.56362 8.1758 8.55683L7.69239 8.51937L7.63655 8.61293C7.56909 8.72597 7.5094 8.84472 7.45907 8.96605C7.40894 9.08724 7.3672 9.21341 7.33496 9.34105L7.30829 9.44668L7.6755 9.76107C7.74256 9.8185 7.7825 9.90778 7.78234 10.0003C7.78237 10.0922 7.74243 10.1813 7.67548 10.2386L7.30717 10.5539L7.33385 10.6596C7.36608 10.7872 7.40784 10.9134 7.45804 11.0348C7.50829 11.1559 7.56797 11.2746 7.63545 11.3877L7.69127 11.4812L8.17324 11.4439C8.26125 11.4371 8.35265 11.472 8.41796 11.5375C8.48297 11.6025 8.51773 11.6937 8.51091 11.7816L8.47345 12.265L8.56701 12.3208C8.68005 12.3883 8.79879 12.448 8.92013 12.4983C9.04133 12.5484 9.1675 12.5902 9.29514 12.6224L9.40077 12.6491L9.71515 12.2819C9.77247 12.215 9.86152 12.175 9.95345 12.175L10.0116 12.1751C10.0858 12.1864 10.1545 12.2232 10.2017 12.2783L10.517 12.6467L10.6227 12.62C10.7503 12.5878 10.8765 12.546 10.9979 12.4958C11.119 12.4455 11.2377 12.3858 11.3508 12.3184L11.4443 12.2625L11.407 11.7806C11.4002 11.6926 11.4351 11.6012 11.5006 11.5359C11.5656 11.4709 11.6567 11.4361 11.7447 11.4429L12.2281 11.4804L12.2839 11.3868C12.3514 11.2738 12.4111 11.155 12.4614 11.0337C12.5115 10.9125 12.5533 10.7863 12.5855 10.6587L12.6122 10.5531L12.245 10.2387C12.1779 10.1813 12.138 10.092 12.1381 9.99945ZM10.3806 9.99809C10.3806 9.78728 10.2229 9.61262 10.0193 9.58581H9.95574C9.72644 9.58581 9.5399 9.77235 9.5399 10.0017C9.5399 10.2125 9.69761 10.3872 9.90125 10.4139H9.96473C10.194 10.4139 10.3806 10.2274 10.3806 9.99809ZM10.732 9.99809C10.732 9.63547 10.4791 9.33079 10.1404 9.25113V8.89324C10.6741 8.97779 11.0834 9.44102 11.0834 9.99809C11.0834 10.5553 10.6738 11.0187 10.1399 11.103L10.1403 10.7451C10.4791 10.6655 10.732 10.3608 10.732 9.99809ZM12.1367 10.8992C12.1066 10.9718 12.0727 11.0433 12.0353 11.113L11.7718 11.0926C11.58 11.0777 11.3906 11.1487 11.2523 11.2872C11.113 11.4259 11.0417 11.6157 11.0566 11.8078L11.0769 12.0697C11.0073 12.1071 10.9357 12.1411 10.8634 12.1711C10.7908 12.2012 10.7161 12.2277 10.6405 12.2505L10.4686 12.0498C10.3819 11.9486 10.2669 11.8773 10.1392 11.8431L10.1395 11.4578C10.868 11.371 11.4348 10.7496 11.4348 9.99809C11.4348 9.24693 10.8685 8.62565 10.1404 8.53853V8.15353C10.2693 8.1195 10.3852 8.04805 10.4723 7.94638L10.6432 7.74677C10.7188 7.76957 10.7934 7.79611 10.8659 7.82608C10.9384 7.85617 11.01 7.89015 11.0796 7.92756L11.0592 8.191C11.0443 8.38272 11.1154 8.57219 11.2538 8.71054C11.3926 8.84978 11.5823 8.92113 11.7744 8.90621L12.0364 8.88591C12.0738 8.95556 12.1077 9.02707 12.1378 9.09947C12.1678 9.17202 12.1943 9.24665 12.2171 9.32236L12.0164 9.4942C11.8704 9.61926 11.7866 9.80347 11.7867 9.99921C11.7864 10.1958 11.8701 10.3804 12.0164 10.5056L12.216 10.6765C12.1933 10.7522 12.1667 10.8268 12.1367 10.8992ZM9.18848 10.0017C9.18848 10.3642 9.44129 10.6689 9.77987 10.7486L9.77951 11.1064C9.2461 11.0216 8.83706 10.5585 8.83706 10.0017C8.83706 9.44459 9.24637 8.98137 9.78003 8.89681V9.25469C9.44138 9.33435 9.18848 9.63903 9.18848 10.0017ZM9.4482 12.0534L9.27731 12.253C9.20162 12.2302 9.12704 12.2036 9.0546 12.1737C8.98207 12.1436 8.91051 12.1096 8.84086 12.0722L8.86127 11.8087C8.87614 11.617 8.80509 11.4276 8.66662 11.2892C8.5279 11.15 8.33816 11.0787 8.14609 11.0935L7.8841 11.1138C7.84669 11.0442 7.81274 10.9727 7.7827 10.9003C7.75269 10.8277 7.72612 10.7531 7.70332 10.6774L7.90403 10.5055C8.05011 10.3805 8.13384 10.1963 8.13376 10.0005C8.13411 9.80398 8.05038 9.61939 7.90405 9.49411L7.70444 9.32321C7.72724 9.24753 7.75379 9.17294 7.78376 9.1005C7.81385 9.02797 7.84783 8.95641 7.88523 8.88676L8.14868 8.90717C8.3404 8.92204 8.52986 8.85097 8.66822 8.71251C8.80745 8.57378 8.87876 8.38405 8.86389 8.19198L8.84359 7.92999C8.91321 7.89259 8.98474 7.85862 9.05713 7.82859C9.12971 7.79858 9.20434 7.77201 9.28002 7.74922L9.45188 7.94993C9.53841 8.051 9.65298 8.12222 9.78006 8.15649V8.54207C9.05198 8.62919 8.48567 9.25047 8.48567 10.0016C8.48567 10.7525 9.05152 11.3736 9.77917 11.4611L9.77878 11.8463C9.65058 11.8805 9.53513 11.9518 9.4482 12.0534ZM10.1408 12.6985H9.78938V13.05H10.1408V12.6985ZM10.492 12.9966H10.8434V13.3481H10.492V12.9966Z" fill="white"/>
|
6
|
+
</g>
|
7
|
+
<defs>
|
8
|
+
<clipPath id="clip0_2699_12924">
|
9
|
+
<rect width="19.6008" height="20" fill="white" transform="translate(0.159668)"/>
|
10
|
+
</clipPath>
|
11
|
+
</defs>
|
12
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
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.4419 2.23255H13.711C13.5824 1.60233 13.2399 1.03591 12.7417 0.629114C12.2434 0.222317 11.62 0.00012207 10.9767 0.00012207C10.3335 0.00012207 9.71005 0.222317 9.2118 0.629114C8.71356 1.03591 8.37113 1.60233 8.24246 2.23255H0.55814C0.410112 2.23255 0.268147 2.29136 0.163475 2.39603C0.0588038 2.5007 0 2.64267 0 2.79069C0 2.93872 0.0588038 3.08069 0.163475 3.18536C0.268147 3.29003 0.410112 3.34883 0.55814 3.34883H8.24246C8.37113 3.97905 8.71356 4.54548 9.2118 4.95227C9.71005 5.35907 10.3335 5.58127 10.9767 5.58127C11.62 5.58127 12.2434 5.35907 12.7417 4.95227C13.2399 4.54548 13.5824 3.97905 13.711 3.34883H15.4419C15.5899 3.34883 15.7319 3.29003 15.8365 3.18536C15.9412 3.08069 16 2.93872 16 2.79069C16 2.64267 15.9412 2.5007 15.8365 2.39603C15.7319 2.29136 15.5899 2.23255 15.4419 2.23255ZM10.9767 4.46511C10.6456 4.46511 10.3218 4.36691 10.0465 4.18292C9.77113 3.99893 9.55652 3.73743 9.42978 3.43147C9.30305 3.12551 9.26989 2.78884 9.3345 2.46403C9.39911 2.13923 9.55858 1.84087 9.79275 1.6067C10.0269 1.37253 10.3253 1.21306 10.6501 1.14845C10.9749 1.08384 11.3116 1.117 11.6175 1.24373C11.9235 1.37047 12.185 1.58508 12.369 1.86044C12.553 2.13579 12.6512 2.45953 12.6512 2.79069C12.6506 3.23461 12.474 3.66018 12.1601 3.97408C11.8462 4.28797 11.4207 4.46456 10.9767 4.46511ZM15.4419 7.44186H7.01336C6.88469 6.81164 6.54226 6.24521 6.04401 5.83842C5.54577 5.43162 4.92229 5.20942 4.27907 5.20942C3.63585 5.20942 3.01237 5.43162 2.51413 5.83842C2.01588 6.24521 1.67345 6.81164 1.54478 7.44186H0.55814C0.410112 7.44186 0.268147 7.50066 0.163475 7.60533C0.0588038 7.71 0 7.85197 0 8C0 8.14802 0.0588038 8.28999 0.163475 8.39466C0.268147 8.49933 0.410112 8.55814 0.55814 8.55814H1.54478C1.67345 9.18836 2.01588 9.75478 2.51413 10.1616C3.01237 10.5684 3.63585 10.7906 4.27907 10.7906C4.92229 10.7906 5.54577 10.5684 6.04401 10.1616C6.54226 9.75478 6.88469 9.18836 7.01336 8.55814H15.4419C15.5899 8.55814 15.7319 8.49933 15.8365 8.39466C15.9412 8.28999 16 8.14802 16 8C16 7.85197 15.9412 7.71 15.8365 7.60533C15.7319 7.50066 15.5899 7.44186 15.4419 7.44186ZM4.27907 9.67441C3.9479 9.67441 3.62417 9.57621 3.34881 9.39222C3.07346 9.20824 2.85884 8.94673 2.73211 8.64077C2.60538 8.33481 2.57222 7.99814 2.63682 7.67333C2.70143 7.34853 2.86091 7.05017 3.09508 6.816C3.32925 6.58183 3.6276 6.42236 3.95241 6.35775C4.27721 6.29314 4.61388 6.3263 4.91984 6.45303C5.2258 6.57977 5.48731 6.79438 5.6713 7.06974C5.85529 7.3451 5.95349 7.66883 5.95349 8C5.95294 8.44391 5.77635 8.86948 5.46245 9.18338C5.14856 9.49727 4.72298 9.67386 4.27907 9.67441ZM13.711 12.6512H15.4419C15.5899 12.6512 15.7319 12.71 15.8365 12.8146C15.9412 12.9193 16 13.0613 16 13.2093C16 13.3573 15.9412 13.4993 15.8365 13.604C15.7319 13.7086 15.5899 13.7674 15.4419 13.7674H13.711C13.5824 14.3977 13.2399 14.9641 12.7417 15.3709C12.2434 15.7777 11.62 15.9999 10.9767 15.9999C10.3335 15.9999 9.71005 15.7777 9.2118 15.3709C8.71356 14.9641 8.37113 14.3977 8.24246 13.7674H0.55814C0.410112 13.7674 0.268147 13.7086 0.163475 13.604C0.0588038 13.4993 0 13.3573 0 13.2093C0 13.0613 0.0588038 12.9193 0.163475 12.8146C0.268147 12.71 0.410112 12.6512 0.55814 12.6512H8.24246C8.37113 12.0209 8.71356 11.4545 9.2118 11.0477C9.71005 10.6409 10.3335 10.4187 10.9767 10.4187C11.62 10.4187 12.2434 10.6409 12.7417 11.0477C13.2399 11.4545 13.5824 12.0209 13.711 12.6512ZM10.0465 14.6015C10.3218 14.7855 10.6456 14.8837 10.9767 14.8837C11.4207 14.8832 11.8462 14.7066 12.1601 14.3927C12.474 14.0788 12.6506 13.6532 12.6512 13.2093C12.6512 12.8781 12.553 12.5544 12.369 12.279C12.185 12.0037 11.9235 11.7891 11.6175 11.6623C11.3116 11.5356 10.9749 11.5024 10.6501 11.5671C10.3253 11.6317 10.0269 11.7911 9.79275 12.0253C9.55858 12.2595 9.39911 12.5578 9.3345 12.8826C9.26989 13.2074 9.30305 13.5441 9.42978 13.8501C9.55652 14.156 9.77113 14.4175 10.0465 14.6015Z" fill="currentColor"/>
|
3
|
-
</svg>
|
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.4419 2.23255H13.711C13.5824 1.60233 13.2399 1.03591 12.7417 0.629114C12.2434 0.222317 11.62 0.00012207 10.9767 0.00012207C10.3335 0.00012207 9.71005 0.222317 9.2118 0.629114C8.71356 1.03591 8.37113 1.60233 8.24246 2.23255H0.55814C0.410112 2.23255 0.268147 2.29136 0.163475 2.39603C0.0588038 2.5007 0 2.64267 0 2.79069C0 2.93872 0.0588038 3.08069 0.163475 3.18536C0.268147 3.29003 0.410112 3.34883 0.55814 3.34883H8.24246C8.37113 3.97905 8.71356 4.54548 9.2118 4.95227C9.71005 5.35907 10.3335 5.58127 10.9767 5.58127C11.62 5.58127 12.2434 5.35907 12.7417 4.95227C13.2399 4.54548 13.5824 3.97905 13.711 3.34883H15.4419C15.5899 3.34883 15.7319 3.29003 15.8365 3.18536C15.9412 3.08069 16 2.93872 16 2.79069C16 2.64267 15.9412 2.5007 15.8365 2.39603C15.7319 2.29136 15.5899 2.23255 15.4419 2.23255ZM10.9767 4.46511C10.6456 4.46511 10.3218 4.36691 10.0465 4.18292C9.77113 3.99893 9.55652 3.73743 9.42978 3.43147C9.30305 3.12551 9.26989 2.78884 9.3345 2.46403C9.39911 2.13923 9.55858 1.84087 9.79275 1.6067C10.0269 1.37253 10.3253 1.21306 10.6501 1.14845C10.9749 1.08384 11.3116 1.117 11.6175 1.24373C11.9235 1.37047 12.185 1.58508 12.369 1.86044C12.553 2.13579 12.6512 2.45953 12.6512 2.79069C12.6506 3.23461 12.474 3.66018 12.1601 3.97408C11.8462 4.28797 11.4207 4.46456 10.9767 4.46511ZM15.4419 7.44186H7.01336C6.88469 6.81164 6.54226 6.24521 6.04401 5.83842C5.54577 5.43162 4.92229 5.20942 4.27907 5.20942C3.63585 5.20942 3.01237 5.43162 2.51413 5.83842C2.01588 6.24521 1.67345 6.81164 1.54478 7.44186H0.55814C0.410112 7.44186 0.268147 7.50066 0.163475 7.60533C0.0588038 7.71 0 7.85197 0 8C0 8.14802 0.0588038 8.28999 0.163475 8.39466C0.268147 8.49933 0.410112 8.55814 0.55814 8.55814H1.54478C1.67345 9.18836 2.01588 9.75478 2.51413 10.1616C3.01237 10.5684 3.63585 10.7906 4.27907 10.7906C4.92229 10.7906 5.54577 10.5684 6.04401 10.1616C6.54226 9.75478 6.88469 9.18836 7.01336 8.55814H15.4419C15.5899 8.55814 15.7319 8.49933 15.8365 8.39466C15.9412 8.28999 16 8.14802 16 8C16 7.85197 15.9412 7.71 15.8365 7.60533C15.7319 7.50066 15.5899 7.44186 15.4419 7.44186ZM4.27907 9.67441C3.9479 9.67441 3.62417 9.57621 3.34881 9.39222C3.07346 9.20824 2.85884 8.94673 2.73211 8.64077C2.60538 8.33481 2.57222 7.99814 2.63682 7.67333C2.70143 7.34853 2.86091 7.05017 3.09508 6.816C3.32925 6.58183 3.6276 6.42236 3.95241 6.35775C4.27721 6.29314 4.61388 6.3263 4.91984 6.45303C5.2258 6.57977 5.48731 6.79438 5.6713 7.06974C5.85529 7.3451 5.95349 7.66883 5.95349 8C5.95294 8.44391 5.77635 8.86948 5.46245 9.18338C5.14856 9.49727 4.72298 9.67386 4.27907 9.67441ZM13.711 12.6512H15.4419C15.5899 12.6512 15.7319 12.71 15.8365 12.8146C15.9412 12.9193 16 13.0613 16 13.2093C16 13.3573 15.9412 13.4993 15.8365 13.604C15.7319 13.7086 15.5899 13.7674 15.4419 13.7674H13.711C13.5824 14.3977 13.2399 14.9641 12.7417 15.3709C12.2434 15.7777 11.62 15.9999 10.9767 15.9999C10.3335 15.9999 9.71005 15.7777 9.2118 15.3709C8.71356 14.9641 8.37113 14.3977 8.24246 13.7674H0.55814C0.410112 13.7674 0.268147 13.7086 0.163475 13.604C0.0588038 13.4993 0 13.3573 0 13.2093C0 13.0613 0.0588038 12.9193 0.163475 12.8146C0.268147 12.71 0.410112 12.6512 0.55814 12.6512H8.24246C8.37113 12.0209 8.71356 11.4545 9.2118 11.0477C9.71005 10.6409 10.3335 10.4187 10.9767 10.4187C11.62 10.4187 12.2434 10.6409 12.7417 11.0477C13.2399 11.4545 13.5824 12.0209 13.711 12.6512ZM10.0465 14.6015C10.3218 14.7855 10.6456 14.8837 10.9767 14.8837C11.4207 14.8832 11.8462 14.7066 12.1601 14.3927C12.474 14.0788 12.6506 13.6532 12.6512 13.2093C12.6512 12.8781 12.553 12.5544 12.369 12.279C12.185 12.0037 11.9235 11.7891 11.6175 11.6623C11.3116 11.5356 10.9749 11.5024 10.6501 11.5671C10.3253 11.6317 10.0269 11.7911 9.79275 12.0253C9.55858 12.2595 9.39911 12.5578 9.3345 12.8826C9.26989 13.2074 9.30305 13.5441 9.42978 13.8501C9.55652 14.156 9.77113 14.4175 10.0465 14.6015Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_2699_12904)">
|
3
|
+
<path d="M16.6535 16.6281C20.241 12.9675 20.241 7.03249 16.6535 3.37187C13.066 -0.28874 7.24939 -0.28874 3.66184 3.37187C0.0742969 7.03249 0.0742969 12.9675 3.66184 16.6281C7.24939 20.2887 13.066 20.2887 16.6535 16.6281Z" fill="#ADE780"/>
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2156 11.5903C18.5618 15.4934 15.5437 18.5728 11.7186 19.2399L6.77243 14.193C5.58884 13.1963 4.83447 11.688 4.83447 9.99986C4.83447 6.99873 7.21873 4.56592 10.16 4.56592C11.8144 4.56592 13.2926 5.33568 14.2694 6.54334L19.2156 11.5903Z" fill="#5DC70C"/>
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.4854 9.99986C15.4854 6.99873 13.1012 4.56592 10.16 4.56592C7.21873 4.56592 4.83447 6.99873 4.83447 9.99986C4.83447 13.001 7.21873 15.4338 10.16 15.4338C13.1012 15.4338 15.4854 13.001 15.4854 9.99986ZM12.7113 11.158L13.5239 11.6271C13.6545 11.7025 13.6992 11.8694 13.6238 12C13.5733 12.0876 13.4815 12.1365 13.3872 12.1365C13.3409 12.1365 13.2939 12.1248 13.2509 12.0999L12.4382 11.6307L12.4307 12.4485C12.4293 12.5984 12.3073 12.7189 12.1577 12.7189L12.1552 12.7189C12.0044 12.7175 11.8833 12.5942 11.8847 12.4434L11.8951 11.3171L10.4327 10.4728V12.1614L11.4132 12.7156C11.5444 12.7897 11.5907 12.9563 11.5165 13.0876C11.4663 13.1764 11.3738 13.2263 11.2786 13.2263C11.2331 13.2263 11.187 13.2149 11.1445 13.1909L10.4327 12.7886V13.727C10.4327 13.8778 10.3105 14 10.1597 14C10.0089 14 9.88669 13.8778 9.88669 13.727V12.7886L9.17485 13.1909C9.13241 13.2149 9.08625 13.2263 9.04075 13.2263C8.94553 13.2263 8.85304 13.1764 8.80284 13.0876C8.72866 12.9563 8.77493 12.7897 8.90618 12.7156L9.88665 12.1614V10.4728L8.42418 11.3171L8.43433 12.4434C8.43572 12.5942 8.31458 12.7175 8.16381 12.7189L8.1613 12.7189C8.01169 12.7189 7.88972 12.5983 7.88837 12.4483L7.88098 11.6307L7.06843 12.0999C7.02544 12.1247 6.97848 12.1365 6.93218 12.1365C6.83783 12.1365 6.74607 12.0876 6.69551 12C6.62013 11.8694 6.66486 11.7024 6.79543 11.6271L7.60798 11.1579L6.90372 10.7427C6.77384 10.6661 6.73064 10.4988 6.80722 10.3689C6.88381 10.239 7.05125 10.1958 7.18105 10.2724L8.15118 10.8445L9.61372 10.0001L8.15143 9.1558L7.18105 9.72767C7.13751 9.7533 7.08979 9.76549 7.04269 9.76549C6.94918 9.76549 6.85815 9.71745 6.80722 9.63107C6.73067 9.50116 6.77392 9.33379 6.90379 9.25724L7.60816 8.8421L6.79546 8.37287C6.6649 8.29749 6.62016 8.13052 6.69555 7.99995C6.77093 7.86939 6.9379 7.82462 7.06846 7.90004L7.88102 8.36919L7.88841 7.55165C7.88975 7.40169 8.01173 7.28109 8.16133 7.28109H8.16384C8.31461 7.28244 8.43575 7.40576 8.43437 7.55653L8.42421 8.68278L9.88665 9.52715V7.83859L8.90618 7.28444C8.77493 7.21026 8.72866 7.04369 8.80284 6.91244C8.87706 6.78114 9.04352 6.73488 9.17485 6.8091L9.88669 7.21139V6.273C9.88669 6.12223 10.0089 6 10.1597 6C10.3105 6 10.4327 6.12223 10.4327 6.273V7.21139L11.1445 6.80906C11.2758 6.73484 11.4423 6.78114 11.5165 6.9124C11.5907 7.04369 11.5444 7.21022 11.4132 7.28441L10.4327 7.83856V9.52715L11.8951 8.68278L11.885 7.55653C11.8836 7.40576 12.0047 7.28244 12.1555 7.28109C12.3059 7.27902 12.4296 7.40085 12.4309 7.55162L12.4383 8.36919L13.2509 7.90004C13.3814 7.82462 13.5484 7.86935 13.6238 7.99995C13.6992 8.13052 13.6544 8.29749 13.5239 8.37287L12.7111 8.8421L13.4154 9.25717C13.5453 9.33376 13.5885 9.50112 13.512 9.631C13.461 9.71737 13.37 9.76542 13.2765 9.76542C13.2294 9.76542 13.1817 9.75326 13.1382 9.7276L12.1679 9.15572L10.7056 9.99998L12.1682 10.8444L13.1381 10.2724C13.2681 10.1959 13.4354 10.2391 13.512 10.3689C13.5886 10.4988 13.5453 10.6662 13.4155 10.7428L12.7113 11.158Z" fill="white"/>
|
6
|
+
</g>
|
7
|
+
<defs>
|
8
|
+
<clipPath id="clip0_2699_12904">
|
9
|
+
<rect width="19.6008" height="20" fill="white" transform="translate(0.359375)"/>
|
10
|
+
</clipPath>
|
11
|
+
</defs>
|
12
|
+
</svg>
|
@@ -1,8 +1,8 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M14.7329 7.06677C14.7328 6.82169 14.8393 6.58413 15.0178 6.43128L16 5.59038L15.9289 5.30868C15.8429 4.96829 15.7315 4.63183 15.5977 4.30819C15.4637 3.98519 15.3045 3.66854 15.1246 3.36707L14.9757 3.11758L13.6905 3.21716C13.4556 3.23531 13.2121 3.14232 13.0379 2.96752C12.8645 2.79431 12.7719 2.551 12.79 2.31669L12.8899 1.02759L12.6404 0.878718C12.339 0.698823 12.0224 0.539638 11.6988 0.405412C11.3756 0.271717 11.0391 0.160356 10.6987 0.074423L10.417 0.0032959L9.5787 0.982457C9.42585 1.16095 9.18698 1.2674 8.93946 1.2674C8.93793 1.2674 8.46853 1.26659 8.46853 1.26659V5.95423H8.93709C9.54855 5.95423 10.046 6.45168 10.046 7.06315C10.046 7.67462 9.54855 8.17207 8.93709 8.17207H8.46903L8.46428 12.8591L8.93349 12.8589C9.1788 12.8589 9.41623 12.9654 9.56898 13.1438L10.4099 14.126L10.6916 14.0549C11.0319 13.969 11.3683 13.8576 11.6921 13.7237C12.0151 13.5897 12.3318 13.4305 12.6332 13.2506L12.8827 13.1017L12.7831 11.8165C12.765 11.5817 12.858 11.3381 13.0328 11.1639C13.206 10.9905 13.4491 10.8979 13.6836 10.916L14.9727 11.0159L15.1216 10.7664C15.3015 10.465 15.4607 10.1483 15.5949 9.82477C15.7286 9.50159 15.8399 9.16513 15.9259 8.82477L15.997 8.54307L15.0178 7.7047C14.8389 7.55161 14.7324 7.31352 14.7329 7.06677ZM10.9831 7.06315C10.9831 6.09617 10.3087 5.28369 9.40564 5.07125V4.11689C10.8287 4.34236 11.9202 5.57763 11.9202 7.06315C11.9202 8.54917 10.828 9.78475 9.40424 10.0096L9.40521 9.05518C10.3086 8.84295 10.9831 8.03035 10.9831 7.06315ZM14.7291 9.4662C14.6488 9.65962 14.5582 9.85044 14.4585 10.0362L13.756 9.98173C13.2446 9.94209 12.7395 10.1316 12.3705 10.5008C11.9992 10.8708 11.8091 11.3767 11.8487 11.8889L11.9029 12.5876C11.7172 12.6873 11.5265 12.7779 11.3334 12.858C11.1399 12.938 10.9409 13.0088 10.739 13.0696L10.2808 12.5344C10.0497 12.2645 9.74288 12.0744 9.40221 11.9832L9.40324 10.9556C11.3459 10.7243 12.8573 9.06705 12.8573 7.06315C12.8573 5.06007 11.3472 3.40331 9.40561 3.171V2.14432C9.74922 2.05358 10.0584 1.86303 10.2905 1.59193L10.7462 1.05964C10.948 1.12043 11.1469 1.19121 11.3401 1.27112C11.5335 1.35137 11.7243 1.44199 11.9101 1.54173L11.8556 2.24425C11.816 2.75551 12.0055 3.26074 12.3747 3.62968C12.7446 4.001 13.2506 4.19127 13.7628 4.15147L14.4614 4.09734C14.5612 4.28307 14.6517 4.47377 14.7318 4.66682C14.8119 4.8603 14.8827 5.05932 14.9435 5.2612L14.4083 5.71945C14.0188 6.05294 13.7955 6.54418 13.7957 7.06615C13.7947 7.59028 14.018 8.08251 14.4082 8.41659L14.9405 8.87234C14.8798 9.07414 14.809 9.27306 14.7291 9.4662Z" fill="currentColor"/>
|
3
|
-
<path d="M5.95393 8.93685C5.95393 8.32538 6.45139 7.82793 7.06285 7.82793H7.53141V3.14094L7.0627 3.1411C6.81617 3.1411 6.58605 3.03723 6.43099 2.85615L5.59008 1.87399L5.30839 1.94512C4.96809 2.03102 4.63163 2.14238 4.30789 2.27627C3.98483 2.4103 3.66818 2.56949 3.36674 2.74938L3.11725 2.89829L3.21684 4.18351C3.23502 4.41826 3.14199 4.66194 2.96719 4.83609C2.79398 5.00946 2.55086 5.10207 2.31633 5.08399L1.02723 4.98409L0.878327 5.23358C0.698432 5.53502 0.539279 5.85167 0.405053 6.17523C0.271389 6.49841 0.160059 6.83486 0.0740946 7.17522L0.00296753 7.45692L0.982191 8.2953C1.16102 8.44842 1.26754 8.68651 1.26711 8.93325C1.2672 9.17834 1.16068 9.4159 0.98216 9.56874L0 10.4096L0.0711271 10.6913C0.157092 11.0317 0.268452 11.3682 0.402304 11.6918C0.536311 12.0148 0.695465 12.3315 0.875391 12.6329L1.02427 12.8824L2.30952 12.7828C2.54421 12.7648 2.78795 12.8577 2.9621 13.0325C3.13546 13.2057 3.22814 13.449 3.20996 13.6833L3.11007 14.9724L3.35956 15.1213C3.661 15.3012 3.97765 15.4604 4.3012 15.5946C4.62442 15.7282 4.96087 15.8396 5.30123 15.9255L5.58293 15.9967L6.42127 15.0175C6.57412 14.839 6.81158 14.7326 7.05673 14.7326C7.05823 14.7326 7.52716 14.7334 7.52716 14.7334L7.53191 10.0457H7.06288C6.45142 10.0458 5.95393 9.54828 5.95393 8.93685ZM5.01682 8.93685C5.01682 9.9037 5.69098 10.7161 6.59386 10.9287L6.59289 11.8829C5.17047 11.6568 4.0797 10.4219 4.0797 8.93685C4.0797 7.45133 5.17119 6.21609 6.5943 5.99059V6.94494C5.69123 7.15736 5.01682 7.96984 5.01682 8.93685ZM5.70941 14.4081L5.25369 14.9404C5.05187 14.8796 4.85298 14.8088 4.65981 14.7289C4.46639 14.6486 4.27556 14.558 4.08982 14.4583L4.14427 13.7557C4.18391 13.2445 3.99446 12.7393 3.6252 12.3703C3.25526 11.999 2.74931 11.8089 2.23711 11.8485L1.53846 11.9027C1.43872 11.7169 1.34817 11.5262 1.26807 11.3332C1.18804 11.1397 1.1172 10.9407 1.05638 10.7388L1.59163 10.2805C1.98116 9.94706 2.20444 9.45582 2.20422 8.93385C2.20516 8.40972 1.98187 7.91748 1.59166 7.5834L1.05938 7.12765C1.12017 6.92586 1.19098 6.72694 1.27088 6.53377C1.35113 6.34035 1.44175 6.14952 1.54149 5.96378L2.24402 6.01823C2.75528 6.05787 3.26051 5.86835 3.62945 5.49913C4.00073 5.12919 4.19091 4.62324 4.15123 4.11104L4.0971 3.41239C4.28277 3.31268 4.47351 3.2221 4.66655 3.142C4.8601 3.06197 5.05911 2.99113 5.26094 2.93034L5.71922 3.46559C5.94997 3.7351 6.2555 3.92503 6.59436 4.0164V5.04463C4.65281 5.27694 3.14265 6.9337 3.14265 8.93678C3.14265 10.9391 4.65159 12.5953 6.59198 12.8287L6.59095 13.856C6.24909 13.947 5.94122 14.1373 5.70941 14.4081Z" fill="currentColor"/>
|
4
|
-
<path d="M6.5943 0.798859H7.53141V1.73597H6.5943V0.798859Z" fill="currentColor"/>
|
5
|
-
<path d="M4.72006 0.00326538H5.65718V0.940381H4.72006V0.00326538Z" fill="currentColor"/>
|
6
|
-
<path d="M8.46852 14.2646H9.40564V15.2017H8.46852V14.2646Z" fill="currentColor"/>
|
7
|
-
<path d="M10.3428 15.0596H11.2799V15.9967H10.3428V15.0596Z" fill="currentColor"/>
|
8
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M14.7329 7.06677C14.7328 6.82169 14.8393 6.58413 15.0178 6.43128L16 5.59038L15.9289 5.30868C15.8429 4.96829 15.7315 4.63183 15.5977 4.30819C15.4637 3.98519 15.3045 3.66854 15.1246 3.36707L14.9757 3.11758L13.6905 3.21716C13.4556 3.23531 13.2121 3.14232 13.0379 2.96752C12.8645 2.79431 12.7719 2.551 12.79 2.31669L12.8899 1.02759L12.6404 0.878718C12.339 0.698823 12.0224 0.539638 11.6988 0.405412C11.3756 0.271717 11.0391 0.160356 10.6987 0.074423L10.417 0.0032959L9.5787 0.982457C9.42585 1.16095 9.18698 1.2674 8.93946 1.2674C8.93793 1.2674 8.46853 1.26659 8.46853 1.26659V5.95423H8.93709C9.54855 5.95423 10.046 6.45168 10.046 7.06315C10.046 7.67462 9.54855 8.17207 8.93709 8.17207H8.46903L8.46428 12.8591L8.93349 12.8589C9.1788 12.8589 9.41623 12.9654 9.56898 13.1438L10.4099 14.126L10.6916 14.0549C11.0319 13.969 11.3683 13.8576 11.6921 13.7237C12.0151 13.5897 12.3318 13.4305 12.6332 13.2506L12.8827 13.1017L12.7831 11.8165C12.765 11.5817 12.858 11.3381 13.0328 11.1639C13.206 10.9905 13.4491 10.8979 13.6836 10.916L14.9727 11.0159L15.1216 10.7664C15.3015 10.465 15.4607 10.1483 15.5949 9.82477C15.7286 9.50159 15.8399 9.16513 15.9259 8.82477L15.997 8.54307L15.0178 7.7047C14.8389 7.55161 14.7324 7.31352 14.7329 7.06677ZM10.9831 7.06315C10.9831 6.09617 10.3087 5.28369 9.40564 5.07125V4.11689C10.8287 4.34236 11.9202 5.57763 11.9202 7.06315C11.9202 8.54917 10.828 9.78475 9.40424 10.0096L9.40521 9.05518C10.3086 8.84295 10.9831 8.03035 10.9831 7.06315ZM14.7291 9.4662C14.6488 9.65962 14.5582 9.85044 14.4585 10.0362L13.756 9.98173C13.2446 9.94209 12.7395 10.1316 12.3705 10.5008C11.9992 10.8708 11.8091 11.3767 11.8487 11.8889L11.9029 12.5876C11.7172 12.6873 11.5265 12.7779 11.3334 12.858C11.1399 12.938 10.9409 13.0088 10.739 13.0696L10.2808 12.5344C10.0497 12.2645 9.74288 12.0744 9.40221 11.9832L9.40324 10.9556C11.3459 10.7243 12.8573 9.06705 12.8573 7.06315C12.8573 5.06007 11.3472 3.40331 9.40561 3.171V2.14432C9.74922 2.05358 10.0584 1.86303 10.2905 1.59193L10.7462 1.05964C10.948 1.12043 11.1469 1.19121 11.3401 1.27112C11.5335 1.35137 11.7243 1.44199 11.9101 1.54173L11.8556 2.24425C11.816 2.75551 12.0055 3.26074 12.3747 3.62968C12.7446 4.001 13.2506 4.19127 13.7628 4.15147L14.4614 4.09734C14.5612 4.28307 14.6517 4.47377 14.7318 4.66682C14.8119 4.8603 14.8827 5.05932 14.9435 5.2612L14.4083 5.71945C14.0188 6.05294 13.7955 6.54418 13.7957 7.06615C13.7947 7.59028 14.018 8.08251 14.4082 8.41659L14.9405 8.87234C14.8798 9.07414 14.809 9.27306 14.7291 9.4662Z" fill="currentColor"/>
|
3
|
+
<path d="M5.95393 8.93685C5.95393 8.32538 6.45139 7.82793 7.06285 7.82793H7.53141V3.14094L7.0627 3.1411C6.81617 3.1411 6.58605 3.03723 6.43099 2.85615L5.59008 1.87399L5.30839 1.94512C4.96809 2.03102 4.63163 2.14238 4.30789 2.27627C3.98483 2.4103 3.66818 2.56949 3.36674 2.74938L3.11725 2.89829L3.21684 4.18351C3.23502 4.41826 3.14199 4.66194 2.96719 4.83609C2.79398 5.00946 2.55086 5.10207 2.31633 5.08399L1.02723 4.98409L0.878327 5.23358C0.698432 5.53502 0.539279 5.85167 0.405053 6.17523C0.271389 6.49841 0.160059 6.83486 0.0740946 7.17522L0.00296753 7.45692L0.982191 8.2953C1.16102 8.44842 1.26754 8.68651 1.26711 8.93325C1.2672 9.17834 1.16068 9.4159 0.98216 9.56874L0 10.4096L0.0711271 10.6913C0.157092 11.0317 0.268452 11.3682 0.402304 11.6918C0.536311 12.0148 0.695465 12.3315 0.875391 12.6329L1.02427 12.8824L2.30952 12.7828C2.54421 12.7648 2.78795 12.8577 2.9621 13.0325C3.13546 13.2057 3.22814 13.449 3.20996 13.6833L3.11007 14.9724L3.35956 15.1213C3.661 15.3012 3.97765 15.4604 4.3012 15.5946C4.62442 15.7282 4.96087 15.8396 5.30123 15.9255L5.58293 15.9967L6.42127 15.0175C6.57412 14.839 6.81158 14.7326 7.05673 14.7326C7.05823 14.7326 7.52716 14.7334 7.52716 14.7334L7.53191 10.0457H7.06288C6.45142 10.0458 5.95393 9.54828 5.95393 8.93685ZM5.01682 8.93685C5.01682 9.9037 5.69098 10.7161 6.59386 10.9287L6.59289 11.8829C5.17047 11.6568 4.0797 10.4219 4.0797 8.93685C4.0797 7.45133 5.17119 6.21609 6.5943 5.99059V6.94494C5.69123 7.15736 5.01682 7.96984 5.01682 8.93685ZM5.70941 14.4081L5.25369 14.9404C5.05187 14.8796 4.85298 14.8088 4.65981 14.7289C4.46639 14.6486 4.27556 14.558 4.08982 14.4583L4.14427 13.7557C4.18391 13.2445 3.99446 12.7393 3.6252 12.3703C3.25526 11.999 2.74931 11.8089 2.23711 11.8485L1.53846 11.9027C1.43872 11.7169 1.34817 11.5262 1.26807 11.3332C1.18804 11.1397 1.1172 10.9407 1.05638 10.7388L1.59163 10.2805C1.98116 9.94706 2.20444 9.45582 2.20422 8.93385C2.20516 8.40972 1.98187 7.91748 1.59166 7.5834L1.05938 7.12765C1.12017 6.92586 1.19098 6.72694 1.27088 6.53377C1.35113 6.34035 1.44175 6.14952 1.54149 5.96378L2.24402 6.01823C2.75528 6.05787 3.26051 5.86835 3.62945 5.49913C4.00073 5.12919 4.19091 4.62324 4.15123 4.11104L4.0971 3.41239C4.28277 3.31268 4.47351 3.2221 4.66655 3.142C4.8601 3.06197 5.05911 2.99113 5.26094 2.93034L5.71922 3.46559C5.94997 3.7351 6.2555 3.92503 6.59436 4.0164V5.04463C4.65281 5.27694 3.14265 6.9337 3.14265 8.93678C3.14265 10.9391 4.65159 12.5953 6.59198 12.8287L6.59095 13.856C6.24909 13.947 5.94122 14.1373 5.70941 14.4081Z" fill="currentColor"/>
|
4
|
+
<path d="M6.5943 0.798859H7.53141V1.73597H6.5943V0.798859Z" fill="currentColor"/>
|
5
|
+
<path d="M4.72006 0.00326538H5.65718V0.940381H4.72006V0.00326538Z" fill="currentColor"/>
|
6
|
+
<path d="M8.46852 14.2646H9.40564V15.2017H8.46852V14.2646Z" fill="currentColor"/>
|
7
|
+
<path d="M10.3428 15.0596H11.2799V15.9967H10.3428V15.0596Z" fill="currentColor"/>
|
8
|
+
</svg>
|
@@ -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 fill-rule="evenodd" clip-rule="evenodd" d="M10.74 0C11.0345 0 11.2733 0.238781 11.2733 0.533333V1.86667H11.86C12.3274 1.86667 12.7651 1.88136 13.1663 1.93801C14.2148 2.05486 15.0254 2.37818 15.5282 3.14174C16.0008 3.85935 16.1266 4.8662 16.1266 6.13333V9.86667C16.1266 11.1338 16.0008 12.1407 15.5282 12.8583C15.0254 13.6218 14.2148 13.9451 13.1664 14.062C12.7651 14.1186 12.3274 14.1333 11.86 14.1333H11.2733V15.4667C11.2733 15.7612 11.0345 16 10.74 16C10.4454 16 10.2066 15.7612 10.2066 15.4667V0.533333C10.2066 0.238781 10.4454 0 10.74 0ZM11.2733 13.0667H11.86C12.3151 13.0667 12.6959 13.0517 13.024 13.0048L13.041 13.0027C13.9522 12.9022 14.3855 12.654 14.6374 12.2716C14.9208 11.8412 15.06 11.1233 15.06 9.86667V6.13333C15.06 4.87673 14.9208 4.15879 14.6374 3.72839C14.3855 3.346 13.9522 3.09779 13.041 2.99732L13.024 2.99517C12.6959 2.94829 12.3151 2.93333 11.86 2.93333H11.2733V13.0667ZM5.13996 2.93333C4.68488 2.93333 4.30408 2.94829 3.97594 2.99517L3.95897 2.99732C3.04776 3.09779 2.61442 3.346 2.36259 3.7284C2.07916 4.15879 1.93996 4.87674 1.93996 6.13333V9.86667C1.93996 11.1233 2.07916 11.8412 2.36259 12.2716C2.61442 12.654 3.04776 12.9022 3.95897 13.0027L3.97594 13.0048C4.30408 13.0517 4.68488 13.0667 5.13996 13.0667H7.76825C8.0628 13.0667 8.30158 13.3054 8.30158 13.6C8.30158 13.8946 8.0628 14.1333 7.76825 14.1333H5.13996C4.67248 14.1333 4.23486 14.1186 3.83359 14.062C2.78517 13.9451 1.97458 13.6218 1.47175 12.8583C0.999169 12.1407 0.873291 11.1338 0.873291 9.86667V6.13333C0.873291 4.86619 0.999169 3.85934 1.47175 3.14173C1.97458 2.37818 2.78519 2.05486 3.83362 1.93801C4.23489 1.88136 4.67249 1.86667 5.13996 1.86667H7.72345C8.018 1.86667 8.25678 2.10545 8.25678 2.4C8.25678 2.69455 8.018 2.93333 7.72345 2.93333H5.13996Z" fill="currentColor"/>
|
3
|
-
<path d="M5.34822 6.2376V7.3736H7.18022V8.4296H5.34822V9.6616H7.42022V10.7576H3.98022V5.1416H7.42022V6.2376H5.34822Z" 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 fill-rule="evenodd" clip-rule="evenodd" d="M10.74 0C11.0345 0 11.2733 0.238781 11.2733 0.533333V1.86667H11.86C12.3274 1.86667 12.7651 1.88136 13.1663 1.93801C14.2148 2.05486 15.0254 2.37818 15.5282 3.14174C16.0008 3.85935 16.1266 4.8662 16.1266 6.13333V9.86667C16.1266 11.1338 16.0008 12.1407 15.5282 12.8583C15.0254 13.6218 14.2148 13.9451 13.1664 14.062C12.7651 14.1186 12.3274 14.1333 11.86 14.1333H11.2733V15.4667C11.2733 15.7612 11.0345 16 10.74 16C10.4454 16 10.2066 15.7612 10.2066 15.4667V0.533333C10.2066 0.238781 10.4454 0 10.74 0ZM11.2733 13.0667H11.86C12.3151 13.0667 12.6959 13.0517 13.024 13.0048L13.041 13.0027C13.9522 12.9022 14.3855 12.654 14.6374 12.2716C14.9208 11.8412 15.06 11.1233 15.06 9.86667V6.13333C15.06 4.87673 14.9208 4.15879 14.6374 3.72839C14.3855 3.346 13.9522 3.09779 13.041 2.99732L13.024 2.99517C12.6959 2.94829 12.3151 2.93333 11.86 2.93333H11.2733V13.0667ZM5.13996 2.93333C4.68488 2.93333 4.30408 2.94829 3.97594 2.99517L3.95897 2.99732C3.04776 3.09779 2.61442 3.346 2.36259 3.7284C2.07916 4.15879 1.93996 4.87674 1.93996 6.13333V9.86667C1.93996 11.1233 2.07916 11.8412 2.36259 12.2716C2.61442 12.654 3.04776 12.9022 3.95897 13.0027L3.97594 13.0048C4.30408 13.0517 4.68488 13.0667 5.13996 13.0667H7.76825C8.0628 13.0667 8.30158 13.3054 8.30158 13.6C8.30158 13.8946 8.0628 14.1333 7.76825 14.1333H5.13996C4.67248 14.1333 4.23486 14.1186 3.83359 14.062C2.78517 13.9451 1.97458 13.6218 1.47175 12.8583C0.999169 12.1407 0.873291 11.1338 0.873291 9.86667V6.13333C0.873291 4.86619 0.999169 3.85934 1.47175 3.14173C1.97458 2.37818 2.78519 2.05486 3.83362 1.93801C4.23489 1.88136 4.67249 1.86667 5.13996 1.86667H7.72345C8.018 1.86667 8.25678 2.10545 8.25678 2.4C8.25678 2.69455 8.018 2.93333 7.72345 2.93333H5.13996Z" fill="currentColor"/>
|
3
|
+
<path d="M5.34822 6.2376V7.3736H7.18022V8.4296H5.34822V9.6616H7.42022V10.7576H3.98022V5.1416H7.42022V6.2376H5.34822Z" fill="currentColor"/>
|
4
|
+
</svg>
|