pixel-react 1.1.8 → 1.1.9
Sign up to get free protection for your applications and to get access to all the features.
- 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/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 +81 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +130 -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 +215 -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 +45 -0
- package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +15 -0
- package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +3 -0
- package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
- package/lib/components/ExcelFile/Types.d.ts +176 -0
- package/lib/components/ExcelFile/index.d.ts +1 -0
- package/lib/components/IconRadioGroup/IconRadioGroup.d.ts +5 -0
- package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
- package/lib/components/IconRadioGroup/index.d.ts +1 -0
- package/lib/components/IconRadioGroup/type.d.ts +41 -0
- package/lib/index.d.ts +45 -1
- package/lib/index.esm.js +682 -244
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +682 -243
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/find/findAndInsert.d.ts +7 -0
- package/lib/utils/find/findAndInsert.stories.d.ts +7 -0
- package/package.json +4 -2
- package/src/assets/Themes/BaseTheme.scss +1 -0
- package/src/assets/Themes/DarkTheme.scss +1 -0
- package/src/assets/icons/all_borders.svg +3 -0
- package/src/assets/icons/bold.svg +3 -0
- package/src/assets/icons/border_bottom.svg +3 -0
- package/src/assets/icons/border_left.svg +3 -0
- package/src/assets/icons/border_right.svg +3 -0
- package/src/assets/icons/border_top.svg +3 -0
- package/src/assets/icons/clone_icon.svg +3 -0
- package/src/assets/icons/double_underline.svg +5 -0
- package/src/assets/icons/fill_color.svg +7 -0
- package/src/assets/icons/formate_painter.svg +5 -0
- package/src/assets/icons/full_access_icon.svg +4 -0
- package/src/assets/icons/history_icon.svg +19 -0
- package/src/assets/icons/italic.svg +3 -0
- package/src/assets/icons/jira.svg +3 -0
- package/src/assets/icons/linked_defects.svg +11 -0
- package/src/assets/icons/move_icon.svg +5 -0
- package/src/assets/icons/no_access_icon.svg +4 -0
- package/src/assets/icons/no_border.svg +3 -0
- package/src/assets/icons/strike_through.svg +3 -0
- package/src/assets/icons/text_align_center.svg +3 -0
- package/src/assets/icons/text_align_left.svg +3 -0
- package/src/assets/icons/text_align_right.svg +3 -0
- package/src/assets/icons/text_color.svg +3 -0
- package/src/assets/icons/underline.svg +4 -0
- package/src/assets/icons/view_access_icon.svg +4 -0
- package/src/components/AppHeader/AppHeader.scss +14 -9
- package/src/components/AppHeader/AppHeader.stories.tsx +1 -0
- package/src/components/AppHeader/AppHeader.tsx +7 -5
- package/src/components/ExcelFile/ChangeExcelStyles.tsx +78 -0
- package/src/components/ExcelFile/ColorBarselector/ColorBarSelector.scss +13 -0
- package/src/components/ExcelFile/ColorBarselector/ColorBarSelector.tsx +43 -0
- package/src/components/ExcelFile/ContextMenu/ContextMenu.scss +102 -0
- package/src/components/ExcelFile/ContextMenu/ContextMenu.tsx +104 -0
- package/src/components/ExcelFile/ExcelFile/Excel/ActiveCell.tsx +131 -0
- package/src/components/ExcelFile/ExcelFile/Excel/Cell.tsx +201 -0
- package/src/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.tsx +123 -0
- package/src/components/ExcelFile/ExcelFile/Excel/Copied.tsx +25 -0
- package/src/components/ExcelFile/ExcelFile/Excel/CornerIndicator.tsx +49 -0
- package/src/components/ExcelFile/ExcelFile/Excel/DataEditor.tsx +37 -0
- package/src/components/ExcelFile/ExcelFile/Excel/DataViewer.tsx +46 -0
- package/src/components/ExcelFile/ExcelFile/Excel/FloatingRect.tsx +31 -0
- package/src/components/ExcelFile/ExcelFile/Excel/HeaderRow.tsx +5 -0
- package/src/components/ExcelFile/ExcelFile/Excel/Row.tsx +5 -0
- package/src/components/ExcelFile/ExcelFile/Excel/RowIndicator.tsx +102 -0
- package/src/components/ExcelFile/ExcelFile/Excel/Selected.tsx +32 -0
- package/src/components/ExcelFile/ExcelFile/Excel/Spreadsheet.css +144 -0
- package/src/components/ExcelFile/ExcelFile/Excel/Spreadsheet.tsx +494 -0
- package/src/components/ExcelFile/ExcelFile/Excel/Table.tsx +19 -0
- package/src/components/ExcelFile/ExcelFile/Excel/actions.ts +302 -0
- package/src/components/ExcelFile/ExcelFile/Excel/areModelsEqual.ts +18 -0
- package/src/components/ExcelFile/ExcelFile/Excel/context.ts +12 -0
- package/src/components/ExcelFile/ExcelFile/Excel/engine/engine.ts +200 -0
- package/src/components/ExcelFile/ExcelFile/Excel/engine/formula.ts +137 -0
- package/src/components/ExcelFile/ExcelFile/Excel/engine/index.ts +2 -0
- package/src/components/ExcelFile/ExcelFile/Excel/engine/point-graph.ts +154 -0
- package/src/components/ExcelFile/ExcelFile/Excel/engine/point-hash.ts +10 -0
- package/src/components/ExcelFile/ExcelFile/Excel/engine/point-set.ts +69 -0
- package/src/components/ExcelFile/ExcelFile/Excel/index.ts +48 -0
- package/src/components/ExcelFile/ExcelFile/Excel/matrix.ts +388 -0
- package/src/components/ExcelFile/ExcelFile/Excel/point-range.ts +82 -0
- package/src/components/ExcelFile/ExcelFile/Excel/point.ts +15 -0
- package/src/components/ExcelFile/ExcelFile/Excel/reducer.ts +682 -0
- package/src/components/ExcelFile/ExcelFile/Excel/selection.ts +257 -0
- package/src/components/ExcelFile/ExcelFile/Excel/types.ts +269 -0
- package/src/components/ExcelFile/ExcelFile/Excel/typings/fast-formula-parser.d.ts +58 -0
- package/src/components/ExcelFile/ExcelFile/Excel/use-dispatch.ts +8 -0
- package/src/components/ExcelFile/ExcelFile/Excel/use-selector.ts +9 -0
- package/src/components/ExcelFile/ExcelFile/Excel/util.ts +173 -0
- package/src/components/ExcelFile/ExcelFile/ExcelFile.scss +27 -0
- package/src/components/ExcelFile/ExcelFile/ExcelFile.tsx +520 -0
- package/src/components/ExcelFile/ExcelFile.stories.tsx +132 -0
- package/src/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.scss +16 -0
- package/src/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.tsx +79 -0
- package/src/components/ExcelFile/ExcelToolBar/ExcelToolBar.scss +22 -0
- package/src/components/ExcelFile/ExcelToolBar/ExcelToolBar.tsx +271 -0
- package/src/components/ExcelFile/ImportExcelStyles.tsx +86 -0
- package/src/components/ExcelFile/Types.ts +241 -0
- package/src/components/ExcelFile/index.ts +1 -0
- package/src/components/Icon/Icons.scss +2 -3
- package/src/components/Icon/iconList.ts +50 -1
- package/src/components/IconRadioGroup/IconRadioGroup.scss +60 -0
- package/src/components/IconRadioGroup/IconRadioGroup.stories.tsx +108 -0
- package/src/components/IconRadioGroup/IconRadioGroup.tsx +72 -0
- package/src/components/IconRadioGroup/index.ts +1 -0
- package/src/components/IconRadioGroup/type.ts +50 -0
- package/src/index.ts +2 -0
package/lib/tsconfig.tsbuildinfo
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"root":["../src/index.ts","../src/styleguide/colorpalette/colorpalette.stories.tsx","../src/styleguide/colorpalette/colorpalette.tsx","../src/styleguide/colorpalette/colorpalettelist.ts","../src/styleguide/colorpalette/index.ts","../src/styleguide/colorpalette/types.ts","../src/styleguide/typography/typography.stories.tsx","../src/styleguide/typography/typography.tsx","../src/styleguide/typography/typographylist.ts","../src/styleguide/typography/types.ts","../src/assets/utils/functionutils.ts","../src/components/accordion/accordion.stories.tsx","../src/components/accordion/accordion.tsx","../src/components/accordion/index.ts","../src/components/accordion/types.ts","../src/components/addresourcebutton/addbutton.stories.tsx","../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.stories.tsx","../src/components/allprojectsdropdown/allprojectsdropdown.tsx","../src/components/allprojectsdropdown/index.ts","../src/components/allprojectsdropdown/types.ts","../src/components/appheader/appheader.stories.tsx","../src/components/appheader/appheader.tsx","../src/components/appheader/index.ts","../src/components/appheader/types.ts","../src/components/attachmentbutton/attachmentbutton.stories.tsx","../src/components/attachmentbutton/attachmentbutton.tsx","../src/components/attachmentbutton/index.ts","../src/components/attachmentbutton/types.ts","../src/components/button/button.stories.tsx","../src/components/button/button.tsx","../src/components/button/index.ts","../src/components/button/types.ts","../src/components/charts/dashboarddonutchart/dashboarddonutchart.stories.tsx","../src/components/charts/dashboarddonutchart/dashboarddonutchart.tsx","../src/components/charts/dashboarddonutchart/index.ts","../src/components/charts/dashboarddonutchart/types.ts","../src/components/charts/donutchart/donutchart.stories.tsx","../src/components/charts/donutchart/donutchart.tsx","../src/components/charts/donutchart/index.ts","../src/components/charts/donutchart/type.ts","../src/components/charts/piechart/piechart.stories.tsx","../src/components/charts/piechart/piechart.tsx","../src/components/charts/piechart/index.ts","../src/components/charts/piechart/types.ts","../src/components/charts/radialchart/radialchart.stories.tsx","../src/components/charts/radialchart/radialchart.tsx","../src/components/charts/radialchart/index.ts","../src/components/charts/radialchart/types.ts","../src/components/checkbox/checkbox.stories.tsx","../src/components/checkbox/checkbox.tsx","../src/components/checkbox/index.ts","../src/components/checkbox/types.ts","../src/components/chip/chip.stories.tsx","../src/components/chip/chip.tsx","../src/components/chip/index.ts","../src/components/chip/types.ts","../src/components/datepicker/datepicker.stories.tsx","../src/components/datepicker/datepicker.tsx","../src/components/datepicker/timepicker.tsx","../src/components/datepicker/index.ts","../src/components/datepicker/types.ts","../src/components/draganddrop/draganddrop.stories.tsx","../src/components/draganddrop/draganddrop.ts","../src/components/draganddrop/draganddroplist.tsx","../src/components/draganddrop/index.ts","../src/components/drawer/drawer.stories.tsx","../src/components/drawer/drawer.tsx","../src/components/drawer/types.ts","../src/components/drawer/index.ts","../src/components/expandablemenu/expandablemenu.stories.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/captcha.stories.tsx","../src/components/ff_captcha/index.ts","../src/components/ff_captcha/types.ts","../src/components/filedropzone/dropzone.tsx","../src/components/filedropzone/filedropzone.stories.tsx","../src/components/filedropzone/filedropzone.tsx","../src/components/filedropzone/filepreview.tsx","../src/components/filedropzone/index.ts","../src/components/filedropzone/types.ts","../src/components/form/form.stories.tsx","../src/components/form/form.tsx","../src/components/form/index.ts","../src/components/form/types.ts","../src/components/gridlayout/gridlayout.stories.tsx","../src/components/gridlayout/gridlayout.tsx","../src/components/gridlayout/index.ts","../src/components/gridlayout/types.ts","../src/components/highlighttext/highlighttext.stories.tsx","../src/components/highlighttext/highlighttext.tsx","../src/components/highlighttext/index.ts","../src/components/highlighttext/types.ts","../src/components/icon/icon.stories.tsx","../src/components/icon/icon.tsx","../src/components/icon/iconlist.ts","../src/components/icon/index.ts","../src/components/icon/types.ts","../src/components/iconbutton/iconbutton.stories.tsx","../src/components/iconbutton/iconbutton.tsx","../src/components/iconbutton/index.ts","../src/components/iconbutton/types.ts","../src/components/input/input.stories.tsx","../src/components/input/input.tsx","../src/components/input/index.ts","../src/components/input/types.ts","../src/components/inputwithdropdown/inputwithdropdown.stories.tsx","../src/components/inputwithdropdown/inputwithdropdown.tsx","../src/components/inputwithdropdown/index.ts","../src/components/inputwithdropdown/types.ts","../src/components/lazyload/lazyload.stories.tsx","../src/components/lazyload/lazyload.ts","../src/components/lazyload/lazyloading.tsx","../src/components/lazyload/index.ts","../src/components/machineinputfield/machineinputfield.stories.tsx","../src/components/machineinputfield/machineinputfield.tsx","../src/components/machineinputfield/index.ts","../src/components/machineinputfield/types.ts","../src/components/menuoption/menuoption.stories.tsx","../src/components/menuoption/menuoption.tsx","../src/components/menuoption/index.ts","../src/components/menuoption/types.ts","../src/components/minimodal/minimodal.stories.tsx","../src/components/minimodal/minimodal.tsx","../src/components/minimodal/index.ts","../src/components/minimodal/types.ts","../src/components/modal/modal.stories.tsx","../src/components/modal/modal.tsx","../src/components/modal/index.tsx","../src/components/modal/types.ts","../src/components/multiselect/dropdown.tsx","../src/components/multiselect/multiselect.stories.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.stories.tsx","../src/components/nlpinput/nlpinput.tsx","../src/components/nlpinput/index.ts","../src/components/nlpinput/type.tsx","../src/components/nlpinput/components/nlpdropdown/nlpdropdowntype.ts","../src/components/nlpinput/components/nlpdropdown/nlpdropdown.tsx","../src/components/paper/paper.stories.tsx","../src/components/paper/paper.tsx","../src/components/paper/index.ts","../src/components/paper/types.ts","../src/components/radiobutton/radiobutton.stories.tsx","../src/components/radiobutton/radiobutton.tsx","../src/components/radiobutton/index.ts","../src/components/radiobutton/radiobuttontypes.tsx","../src/components/radiogroup/radiogroup.stories.tsx","../src/components/radiogroup/radiogroup.tsx","../src/components/radiogroup/index.ts","../src/components/radiogroup/radiogrouptypes.tsx","../src/components/search/search.stories.tsx","../src/components/search/search.tsx","../src/components/search/index.ts","../src/components/search/types.ts","../src/components/select/select.stories.tsx","../src/components/select/select.tsx","../src/components/select/index.ts","../src/components/select/types.ts","../src/components/select/components/dropdown/dropdown.tsx","../src/components/select/components/dropdown/dropdowntypes.ts","../src/components/sequentialconnectingbranch/sequentialconnectingbranch.stories.tsx","../src/components/sequentialconnectingbranch/sequentialconnectingbranch.tsx","../src/components/sequentialconnectingbranch/index.ts","../src/components/sequentialconnectingbranch/types.ts","../src/components/sequentialconnectingbranch/components/addbrowsermodal/addbrowsermodal.tsx","../src/components/sequentialconnectingbranch/components/addbrowsermodal/types.ts","../src/components/sequentialconnectingbranch/components/branches/branches.tsx","../src/components/sequentialconnectingbranch/components/branches/types.ts","../src/components/sequentialconnectingbranch/components/connectingbranches/connectingbranches.tsx","../src/components/sequentialconnectingbranch/components/connectingbranches/types.ts","../src/components/sequentialconnectingbranch/components/datasetlistmodal/datasetlistmodal.tsx","../src/components/sequentialconnectingbranch/components/datasetlistmodal/types.ts","../src/components/statedropdown/statedropdown.stories.tsx","../src/components/statedropdown/statedropdown.tsx","../src/components/statedropdown/statedropdowntypes.tsx","../src/components/statedropdown/index.ts","../src/components/statusbutton/statusbutton.stories.tsx","../src/components/statusbutton/statusbutton.tsx","../src/components/statusbutton/index.ts","../src/components/statusbutton/types.ts","../src/components/table/table.stories.tsx","../src/components/table/table.tsx","../src/components/table/types.ts","../src/components/table/index.ts","../src/components/tabletree/tabletree.stories.tsx","../src/components/tabletree/tabletree.tsx","../src/components/tabletree/data.ts","../src/components/tabletree/index.ts","../src/components/tabs/tabs.stories.tsx","../src/components/tabs/tabs.tsx","../src/components/tabs/index.ts","../src/components/tabs/types.ts","../src/components/textarea/textarea.stories.tsx","../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.stories.tsx","../src/components/toast/toast.tsx","../src/components/toast/index.ts","../src/components/toast/types.ts","../src/components/toggle/toggle.stories.tsx","../src/components/toggle/toggle.tsx","../src/components/toggle/index.ts","../src/components/toggle/types.ts","../src/components/tooltip/tooltip.stories.tsx","../src/components/tooltip/tooltip.tsx","../src/components/tooltip/index.ts","../src/components/tooltip/types.ts","../src/components/typography/typography.stories.tsx","../src/components/typography/typography.tsx","../src/components/typography/index.ts","../src/components/typography/types.ts","../src/components/variableinput/variableinput.stories.tsx","../src/components/variableinput/variableinput.tsx","../src/components/variableinput/index.ts","../src/components/variableinput/types.ts","../src/hooks/useclickoutside.tsx","../src/hooks/usefiledropzone.tsx","../src/hooks/useportalposition.tsx","../src/hooks/usetheme.tsx","../src/hooks/keyboardevents/useesckeyevent.tsx","../src/utils/tablecell/tablecell.ts","../src/utils/checkempty/checkempty.stories.tsx","../src/utils/checkempty/checkempty.ts","../src/utils/comparearrays/comparearrays.stories.tsx","../src/utils/comparearrays/comparearrays.ts","../src/utils/compareobjects/compareobjects.stories.tsx","../src/utils/compareobjects/compareobjects.ts","../src/utils/debounce/debounce.stories.tsx","../src/utils/debounce/debounce.ts","../src/utils/ffid/ffid.stories.tsx","../src/utils/ffid/ffid.ts","../src/utils/findandinsert/findandinsert.stories.tsx","../src/utils/findandinsert/findandinsert.ts","../src/utils/getencrypteddata/getencrypteddata.stories.tsx","../src/utils/getencrypteddata/getencrypteddata.ts","../src/utils/getextension/getextension.stories.tsx","../src/utils/getextension/getextension.ts","../src/utils/throttle/throttle.stories.tsx","../src/utils/throttle/throttle.ts","../src/utils/truncatetext/truncatetext.stories.tsx","../src/utils/truncatetext/truncatetext.ts"],"version":"5.6.3"}
|
1
|
+
{"root":["../src/index.ts","../src/styleguide/colorpalette/colorpalette.stories.tsx","../src/styleguide/colorpalette/colorpalette.tsx","../src/styleguide/colorpalette/colorpalettelist.ts","../src/styleguide/colorpalette/index.ts","../src/styleguide/colorpalette/types.ts","../src/styleguide/typography/typography.stories.tsx","../src/styleguide/typography/typography.tsx","../src/styleguide/typography/typographylist.ts","../src/styleguide/typography/types.ts","../src/assets/utils/functionutils.ts","../src/components/accordion/accordion.stories.tsx","../src/components/accordion/accordion.tsx","../src/components/accordion/index.ts","../src/components/accordion/types.ts","../src/components/addresourcebutton/addbutton.stories.tsx","../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.stories.tsx","../src/components/allprojectsdropdown/allprojectsdropdown.tsx","../src/components/allprojectsdropdown/index.ts","../src/components/allprojectsdropdown/types.ts","../src/components/appheader/appheader.stories.tsx","../src/components/appheader/appheader.tsx","../src/components/appheader/index.ts","../src/components/appheader/types.ts","../src/components/attachmentbutton/attachmentbutton.stories.tsx","../src/components/attachmentbutton/attachmentbutton.tsx","../src/components/attachmentbutton/index.ts","../src/components/attachmentbutton/types.ts","../src/components/button/button.stories.tsx","../src/components/button/button.tsx","../src/components/button/index.ts","../src/components/button/types.ts","../src/components/charts/dashboarddonutchart/dashboarddonutchart.stories.tsx","../src/components/charts/dashboarddonutchart/dashboarddonutchart.tsx","../src/components/charts/dashboarddonutchart/index.ts","../src/components/charts/dashboarddonutchart/types.ts","../src/components/charts/donutchart/donutchart.stories.tsx","../src/components/charts/donutchart/donutchart.tsx","../src/components/charts/donutchart/index.ts","../src/components/charts/donutchart/type.ts","../src/components/charts/piechart/piechart.stories.tsx","../src/components/charts/piechart/piechart.tsx","../src/components/charts/piechart/index.ts","../src/components/charts/piechart/types.ts","../src/components/charts/radialchart/radialchart.stories.tsx","../src/components/charts/radialchart/radialchart.tsx","../src/components/charts/radialchart/index.ts","../src/components/charts/radialchart/types.ts","../src/components/checkbox/checkbox.stories.tsx","../src/components/checkbox/checkbox.tsx","../src/components/checkbox/index.ts","../src/components/checkbox/types.ts","../src/components/chip/chip.stories.tsx","../src/components/chip/chip.tsx","../src/components/chip/index.ts","../src/components/chip/types.ts","../src/components/datepicker/datepicker.stories.tsx","../src/components/datepicker/datepicker.tsx","../src/components/datepicker/timepicker.tsx","../src/components/datepicker/index.ts","../src/components/datepicker/types.ts","../src/components/draganddrop/draganddrop.stories.tsx","../src/components/draganddrop/draganddrop.ts","../src/components/draganddrop/draganddroplist.tsx","../src/components/draganddrop/index.ts","../src/components/drawer/drawer.stories.tsx","../src/components/drawer/drawer.tsx","../src/components/drawer/types.ts","../src/components/drawer/index.ts","../src/components/excelfile/changeexcelstyles.tsx","../src/components/excelfile/excelfile.stories.tsx","../src/components/excelfile/importexcelstyles.tsx","../src/components/excelfile/types.ts","../src/components/excelfile/index.ts","../src/components/excelfile/colorbarselector/colorbarselector.tsx","../src/components/excelfile/contextmenu/contextmenu.tsx","../src/components/excelfile/excelfile/excelfile.tsx","../src/components/excelfile/excelfile/excel/activecell.tsx","../src/components/excelfile/excelfile/excel/cell.tsx","../src/components/excelfile/excelfile/excel/columnindicator.tsx","../src/components/excelfile/excelfile/excel/copied.tsx","../src/components/excelfile/excelfile/excel/cornerindicator.tsx","../src/components/excelfile/excelfile/excel/dataeditor.tsx","../src/components/excelfile/excelfile/excel/dataviewer.tsx","../src/components/excelfile/excelfile/excel/floatingrect.tsx","../src/components/excelfile/excelfile/excel/headerrow.tsx","../src/components/excelfile/excelfile/excel/row.tsx","../src/components/excelfile/excelfile/excel/rowindicator.tsx","../src/components/excelfile/excelfile/excel/selected.tsx","../src/components/excelfile/excelfile/excel/spreadsheet.tsx","../src/components/excelfile/excelfile/excel/table.tsx","../src/components/excelfile/excelfile/excel/actions.ts","../src/components/excelfile/excelfile/excel/aremodelsequal.ts","../src/components/excelfile/excelfile/excel/context.ts","../src/components/excelfile/excelfile/excel/index.ts","../src/components/excelfile/excelfile/excel/matrix.ts","../src/components/excelfile/excelfile/excel/point-range.ts","../src/components/excelfile/excelfile/excel/point.ts","../src/components/excelfile/excelfile/excel/reducer.ts","../src/components/excelfile/excelfile/excel/selection.ts","../src/components/excelfile/excelfile/excel/types.ts","../src/components/excelfile/excelfile/excel/use-dispatch.ts","../src/components/excelfile/excelfile/excel/use-selector.ts","../src/components/excelfile/excelfile/excel/util.ts","../src/components/excelfile/excelfile/excel/engine/engine.ts","../src/components/excelfile/excelfile/excel/engine/formula.ts","../src/components/excelfile/excelfile/excel/engine/index.ts","../src/components/excelfile/excelfile/excel/engine/point-graph.ts","../src/components/excelfile/excelfile/excel/engine/point-hash.ts","../src/components/excelfile/excelfile/excel/engine/point-set.ts","../src/components/excelfile/excelfile/excel/typings/fast-formula-parser.d.ts","../src/components/excelfile/excelsheetbar/excelsheetbar.tsx","../src/components/excelfile/exceltoolbar/exceltoolbar.tsx","../src/components/expandablemenu/expandablemenu.stories.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/captcha.stories.tsx","../src/components/ff_captcha/index.ts","../src/components/ff_captcha/types.ts","../src/components/filedropzone/dropzone.tsx","../src/components/filedropzone/filedropzone.stories.tsx","../src/components/filedropzone/filedropzone.tsx","../src/components/filedropzone/filepreview.tsx","../src/components/filedropzone/index.ts","../src/components/filedropzone/types.ts","../src/components/form/form.stories.tsx","../src/components/form/form.tsx","../src/components/form/index.ts","../src/components/form/types.ts","../src/components/gridlayout/gridlayout.stories.tsx","../src/components/gridlayout/gridlayout.tsx","../src/components/gridlayout/index.ts","../src/components/gridlayout/types.ts","../src/components/highlighttext/highlighttext.stories.tsx","../src/components/highlighttext/highlighttext.tsx","../src/components/highlighttext/index.ts","../src/components/highlighttext/types.ts","../src/components/icon/icon.stories.tsx","../src/components/icon/icon.tsx","../src/components/icon/iconlist.ts","../src/components/icon/index.ts","../src/components/icon/types.ts","../src/components/iconbutton/iconbutton.stories.tsx","../src/components/iconbutton/iconbutton.tsx","../src/components/iconbutton/index.ts","../src/components/iconbutton/types.ts","../src/components/iconradiogroup/iconradiogroup.stories.tsx","../src/components/iconradiogroup/iconradiogroup.tsx","../src/components/iconradiogroup/index.ts","../src/components/iconradiogroup/type.ts","../src/components/input/input.stories.tsx","../src/components/input/input.tsx","../src/components/input/index.ts","../src/components/input/types.ts","../src/components/inputwithdropdown/inputwithdropdown.stories.tsx","../src/components/inputwithdropdown/inputwithdropdown.tsx","../src/components/inputwithdropdown/index.ts","../src/components/inputwithdropdown/types.ts","../src/components/lazyload/lazyload.stories.tsx","../src/components/lazyload/lazyload.ts","../src/components/lazyload/lazyloading.tsx","../src/components/lazyload/index.ts","../src/components/machineinputfield/machineinputfield.stories.tsx","../src/components/machineinputfield/machineinputfield.tsx","../src/components/machineinputfield/index.ts","../src/components/machineinputfield/types.ts","../src/components/menuoption/menuoption.stories.tsx","../src/components/menuoption/menuoption.tsx","../src/components/menuoption/index.ts","../src/components/menuoption/types.ts","../src/components/minimodal/minimodal.stories.tsx","../src/components/minimodal/minimodal.tsx","../src/components/minimodal/index.ts","../src/components/minimodal/types.ts","../src/components/modal/modal.stories.tsx","../src/components/modal/modal.tsx","../src/components/modal/index.tsx","../src/components/modal/types.ts","../src/components/multiselect/dropdown.tsx","../src/components/multiselect/multiselect.stories.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.stories.tsx","../src/components/nlpinput/nlpinput.tsx","../src/components/nlpinput/index.ts","../src/components/nlpinput/type.tsx","../src/components/nlpinput/components/nlpdropdown/nlpdropdowntype.ts","../src/components/nlpinput/components/nlpdropdown/nlpdropdown.tsx","../src/components/paper/paper.stories.tsx","../src/components/paper/paper.tsx","../src/components/paper/index.ts","../src/components/paper/types.ts","../src/components/radiobutton/radiobutton.stories.tsx","../src/components/radiobutton/radiobutton.tsx","../src/components/radiobutton/index.ts","../src/components/radiobutton/radiobuttontypes.tsx","../src/components/radiogroup/radiogroup.stories.tsx","../src/components/radiogroup/radiogroup.tsx","../src/components/radiogroup/index.ts","../src/components/radiogroup/radiogrouptypes.tsx","../src/components/search/search.stories.tsx","../src/components/search/search.tsx","../src/components/search/index.ts","../src/components/search/types.ts","../src/components/select/select.stories.tsx","../src/components/select/select.tsx","../src/components/select/index.ts","../src/components/select/types.ts","../src/components/select/components/dropdown/dropdown.tsx","../src/components/select/components/dropdown/dropdowntypes.ts","../src/components/sequentialconnectingbranch/sequentialconnectingbranch.stories.tsx","../src/components/sequentialconnectingbranch/sequentialconnectingbranch.tsx","../src/components/sequentialconnectingbranch/index.ts","../src/components/sequentialconnectingbranch/types.ts","../src/components/sequentialconnectingbranch/components/addbrowsermodal/addbrowsermodal.tsx","../src/components/sequentialconnectingbranch/components/addbrowsermodal/types.ts","../src/components/sequentialconnectingbranch/components/branches/branches.tsx","../src/components/sequentialconnectingbranch/components/branches/types.ts","../src/components/sequentialconnectingbranch/components/connectingbranches/connectingbranches.tsx","../src/components/sequentialconnectingbranch/components/connectingbranches/types.ts","../src/components/sequentialconnectingbranch/components/datasetlistmodal/datasetlistmodal.tsx","../src/components/sequentialconnectingbranch/components/datasetlistmodal/types.ts","../src/components/statedropdown/statedropdown.stories.tsx","../src/components/statedropdown/statedropdown.tsx","../src/components/statedropdown/statedropdowntypes.tsx","../src/components/statedropdown/index.ts","../src/components/statusbutton/statusbutton.stories.tsx","../src/components/statusbutton/statusbutton.tsx","../src/components/statusbutton/index.ts","../src/components/statusbutton/types.ts","../src/components/table/table.stories.tsx","../src/components/table/table.tsx","../src/components/table/types.ts","../src/components/table/index.ts","../src/components/tabletree/tabletree.stories.tsx","../src/components/tabletree/tabletree.tsx","../src/components/tabletree/data.ts","../src/components/tabletree/index.ts","../src/components/tabs/tabs.stories.tsx","../src/components/tabs/tabs.tsx","../src/components/tabs/index.ts","../src/components/tabs/types.ts","../src/components/textarea/textarea.stories.tsx","../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.stories.tsx","../src/components/toast/toast.tsx","../src/components/toast/index.ts","../src/components/toast/types.ts","../src/components/toggle/toggle.stories.tsx","../src/components/toggle/toggle.tsx","../src/components/toggle/index.ts","../src/components/toggle/types.ts","../src/components/tooltip/tooltip.stories.tsx","../src/components/tooltip/tooltip.tsx","../src/components/tooltip/index.ts","../src/components/tooltip/types.ts","../src/components/typography/typography.stories.tsx","../src/components/typography/typography.tsx","../src/components/typography/index.ts","../src/components/typography/types.ts","../src/components/variableinput/variableinput.stories.tsx","../src/components/variableinput/variableinput.tsx","../src/components/variableinput/index.ts","../src/components/variableinput/types.ts","../src/hooks/useclickoutside.tsx","../src/hooks/usefiledropzone.tsx","../src/hooks/useportalposition.tsx","../src/hooks/usetheme.tsx","../src/hooks/keyboardevents/useesckeyevent.tsx","../src/utils/tablecell/tablecell.ts","../src/utils/checkempty/checkempty.stories.tsx","../src/utils/checkempty/checkempty.ts","../src/utils/comparearrays/comparearrays.stories.tsx","../src/utils/comparearrays/comparearrays.ts","../src/utils/compareobjects/compareobjects.stories.tsx","../src/utils/compareobjects/compareobjects.ts","../src/utils/debounce/debounce.stories.tsx","../src/utils/debounce/debounce.ts","../src/utils/ffid/ffid.stories.tsx","../src/utils/ffid/ffid.ts","../src/utils/findandinsert/findandinsert.stories.tsx","../src/utils/findandinsert/findandinsert.ts","../src/utils/getencrypteddata/getencrypteddata.stories.tsx","../src/utils/getencrypteddata/getencrypteddata.ts","../src/utils/getextension/getextension.stories.tsx","../src/utils/getextension/getextension.ts","../src/utils/throttle/throttle.stories.tsx","../src/utils/throttle/throttle.ts","../src/utils/truncatetext/truncatetext.stories.tsx","../src/utils/truncatetext/truncatetext.ts"],"version":"5.6.3"}
|
@@ -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;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "pixel-react",
|
3
3
|
"description": "Great for pixel-perfect, design-focused components in React",
|
4
|
-
"version": "1.1.
|
4
|
+
"version": "1.1.9",
|
5
5
|
"main": "lib/index.js",
|
6
6
|
"module": "lib/index.esm.js",
|
7
7
|
"types": "lib/index.d.ts",
|
@@ -58,7 +58,9 @@
|
|
58
58
|
"@dnd-kit/sortable": "^8.0.0",
|
59
59
|
"@dnd-kit/utilities": "^3.2.2",
|
60
60
|
"@types/react-window": "^1.8.8",
|
61
|
-
"@vitejs/plugin-react": "^4.3.
|
61
|
+
"@vitejs/plugin-react": "^4.3.0",
|
62
|
+
"use-context-selector": "^2.0.0",
|
63
|
+
"fast-formula-parser": "^1.0.19",
|
62
64
|
"classnames": "^2.5.1",
|
63
65
|
"date-fns-tz": "^3.2.0",
|
64
66
|
"jsencrypt": "^3.3.2",
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.470617 8.23998V15.5294H7.76471V8.23998H0.470617ZM8.2353 8.23998V8.94118H8.23531V9.41176H8.2353V10.1176H8.23531V10.5882H8.2353V11.2941H8.23531V11.7647H8.2353V12.4706H8.23531V12.9412H8.2353V13.6471H8.23531V14.1176H8.2353V14.5882H8.23531V15.0588H8.2353V15.5294H15.5294V15.0588L15.5294 8.23998H8.2353ZM8.2353 16H7.76472H7.29412V16H7.05884V16H6.58825V16H5.88237V16H5.41178V16H4.7059V16H4.23531V16H3.52943V16H3.05884V16H2.35296V16H1.88237V16H0.941205V16H0.941191H0.941176H2.85506e-05H1.43051e-05H0V0H2.85506e-05H0.941176H0.941205H1.88237H2.35296H3.05884H3.52943H4.23531H4.7059H5.41178H5.88237H6.58825H7.05884H7.29412H7.76472H8.23531H8.94119H9.41178H10.1177H10.5883H11.2941H11.7647H12.4706H12.9412H13.6471H14.1177H15.0588L16 7.62939e-06V0.941184L16 7.29881V8.23998V15.0588V16L16 16H15.0588V16H14.1177V16H13.6471V16H12.9412V16H12.4706V16H11.7647V16H11.2941V16H10.5883V16H10.1177V16H9.41178V16H8.94119V16H8.23531V16H8.2353ZM8.2353 0.470588H15.0588H15.5294L15.5294 7.29881V7.76939H15.0588V7.76471H14.5882V7.76939H14.1177V7.76471H13.6471V7.76939H12.9412V7.76471H12.4706V7.76939H11.7647V7.76471H11.2941V7.76939H10.5883V7.76471H10.1177V7.76939H9.41178V7.76471H8.94119V7.76939H8.23531V7.76471H8.2353V7.05882H8.23531V6.58823H8.2353V5.88235H8.23531V5.41176H8.2353V4.70588H8.23531V4.23529H8.2353V3.52941H8.23531V3.05882H8.2353V2.35294H8.23531V1.88235H8.2353V1.41177H8.23531V0.941176H8.2353V0.470588ZM7.76471 0.470588V7.76939H7.05884V7.76471H6.58825V7.76939H5.88237V7.76471H5.41178V7.76939H4.7059V7.76471H4.23531V7.76939H3.52943V7.76471H3.05884V7.76939H2.35296V7.76471H1.88237V7.76939H1.41178V7.76471H0.941191V7.76939H0.470617V0.470589L7.29412 0.470588H7.76471Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M0.818604 16V0H6.31318C8.29833 0 9.84792 0.368169 10.9615 1.10442C12.0749 1.84058 12.6318 2.93777 12.6318 4.39562C12.6318 5.15763 12.4524 5.83496 12.0934 6.42867C11.7344 7.0222 11.1813 7.46905 10.434 7.7693C11.3717 7.9817 12.0639 8.40843 12.5109 9.04951C12.9576 9.69059 13.1813 10.4288 13.1813 11.2638C13.1813 12.8243 12.6574 14.0038 11.61 14.8022C10.5622 15.6009 9.06051 16 7.10429 16H0.818604ZM4.54395 6.67035H6.39009C7.23254 6.65571 7.86268 6.4927 8.28033 6.18125C8.6979 5.86997 8.90677 5.41395 8.90677 4.81319C8.90677 4.1318 8.69419 3.63565 8.26948 3.32419C7.84433 3.01292 7.19241 2.85715 6.31326 2.85715H4.54395V6.67035ZM4.54395 9.13198V13.1429H7.10429C7.89558 13.1429 8.48902 12.9872 8.88463 12.6757C9.28014 12.3644 9.47816 11.8865 9.47816 11.2419C9.47816 10.5458 9.30775 10.0202 8.96701 9.66483C8.62645 9.30963 8.07517 9.13198 7.31334 9.13198H4.54395Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.470588 0.470588H0.941176V0H0V0.941176H0.470588V0.470588ZM7.76471 0.941176H8.23529V1.41176H7.76471V0.941176ZM8.23529 1.88235H7.76471V2.35294H8.23529V1.88235ZM7.76471 3.05882H8.23529V3.52941H7.76471V3.05882ZM8.23529 4.23529H7.76471V4.70588H8.23529V4.23529ZM7.76471 8.94118H8.23529V9.41177H7.76471V8.94118ZM8.23529 10.1176H7.76471V10.5882H8.23529V10.1176ZM7.76471 11.2941H8.23529V11.7647H7.76471V11.2941ZM7.76471 13.6471H8.23529V14.1176H7.76471V13.6471ZM8.23529 14.5882H7.76471V15.0588H8.23529V14.5882ZM7.76471 12.4706H8.23529V12.9412H7.76471V12.4706ZM7.76471 6.58824H8.23529V7.05882H7.76471V6.58824ZM8.23529 5.41176H7.76471V5.88235H8.23529V5.41176ZM8.23529 7.76471H7.76471V8.23529H8.23529V7.76471ZM4.23529 7.76471H4.70588V8.23529H4.23529V7.76471ZM2.35294 7.76471H1.88235V8.23529H2.35294V7.76471ZM0.941176 7.76471H1.41176V8.23529H0.941176V7.76471ZM3.52941 7.76471H3.05882V8.23529H3.52941V7.76471ZM5.41176 7.76471H5.88235V8.23529H5.41176V7.76471ZM7.05882 7.76471H6.58824V8.23529H7.05882V7.76471ZM11.2941 7.76471H11.7647V8.23529H11.2941V7.76471ZM9.41177 7.76471H8.94118V8.23529H9.41177V7.76471ZM10.1176 7.76471H10.5882V8.23529H10.1176V7.76471ZM12.9412 7.76471H12.4706V8.23529H12.9412V7.76471ZM13.6471 7.76471H14.1176V8.23529H13.6471V7.76471ZM15.0588 7.76471H14.5882V8.23529H15.0588V7.76471ZM11.7647 0H11.2941V0.470588H11.7647V0ZM13.6471 0H14.1176V0.470588H13.6471V0ZM12.9412 0H12.4706V0.470588H12.9412V0ZM10.1176 0H10.5882V0.470588H10.1176V0ZM9.41177 0H8.94118V0.470588H9.41177V0ZM4.23529 0H4.70588V0.470588H4.23529V0ZM7.05882 0H6.58824V0.470588H7.05882V0ZM5.41176 0H5.88235V0.470588H5.41176V0ZM3.52941 0H3.05882V0.470588H3.52941V0ZM1.88235 0H2.35294V0.470588H1.88235V0ZM8.23529 0H7.76471V0.470588H8.23529V0ZM15.5294 11.2941H16V11.7647H15.5294V11.2941ZM16 13.6471H15.5294V14.1176H16V13.6471ZM15.5294 12.4706H16V12.9412H15.5294V12.4706ZM16 10.1176H15.5294V10.5882H16V10.1176ZM15.5294 8.94118H16V9.41177H15.5294V8.94118ZM16 4.23529H15.5294V4.70588H16V4.23529ZM15.5294 6.58824H16V7.05882H15.5294V6.58824ZM16 5.41176H15.5294V5.88235H16V5.41176ZM15.5294 3.05882H16V3.52941H15.5294V3.05882ZM16 1.88235H15.5294V2.35294H16V1.88235ZM15.5294 7.76471H16V8.23529H15.5294V7.76471ZM0.470588 11.2941H0V11.7647H0.470588V11.2941ZM0 13.6471H0.470588V14.1176H0V13.6471ZM0.470588 12.4706H0V12.9412H0.470588V12.4706ZM0 10.1176H0.470588V10.5882H0V10.1176ZM0.470588 8.94118H0V9.41177H0.470588V8.94118ZM0 4.23529H0.470588V4.70588H0V4.23529ZM0.470588 6.58824H0V7.05882H0.470588V6.58824ZM0 5.41176H0.470588V5.88235H0V5.41176ZM0.470588 3.05882H0V3.52941H0.470588V3.05882ZM0 1.88235H0.470588V2.35294H0V1.88235ZM0.470588 7.76471H0V8.23529H0.470588V7.76471ZM15.0588 0V0.470588H15.5294V0.941176H16V0H15.0588ZM0.470588 15.5294H15.5294V15.0588H16V16H0V15.0588H0.470588V15.5294Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5294 0.470588V0.941176H16V0H15.0588V0.470588H15.5294ZM15.0588 7.76471V8.23529H14.5882V7.76471H15.0588ZM14.1176 8.23529V7.76471H13.6471V8.23529H14.1176ZM12.9412 7.76471V8.23529H12.4706V7.76471H12.9412ZM11.7647 8.23529V7.76471H11.2941V8.23529H11.7647ZM7.05882 7.76471V8.23529H6.58823V7.76471H7.05882ZM5.88235 8.23529V7.76471H5.41176V8.23529H5.88235ZM4.70588 7.76471V8.23529H4.23529V7.76471H4.70588ZM2.35294 7.76471V8.23529H1.88235V7.76471H2.35294ZM1.41177 8.23529V7.76471H0.941176V8.23529H1.41177ZM3.52941 7.76471V8.23529H3.05882V7.76471H3.52941ZM9.41176 7.76471V8.23529H8.94118V7.76471H9.41176ZM10.5882 8.23529V7.76471H10.1176V8.23529H10.5882ZM8.23529 8.23529V7.76471H7.76471V8.23529H8.23529ZM8.23529 4.23529V4.70588H7.76471V4.23529H8.23529ZM8.23529 2.35294V1.88235H7.76471V2.35294H8.23529ZM8.23529 0.941176V1.41176H7.76471V0.941176H8.23529ZM8.23529 3.52941V3.05882H7.76471V3.52941H8.23529ZM8.23529 5.41176V5.88235H7.76471V5.41176H8.23529ZM8.23529 7.05882V6.58824H7.76471V7.05882H8.23529ZM8.23529 11.2941V11.7647H7.76471V11.2941H8.23529ZM8.23529 9.41177V8.94118H7.76471V9.41177H8.23529ZM8.23529 10.1176V10.5882H7.76471V10.1176H8.23529ZM8.23529 12.9412V12.4706H7.76471V12.9412H8.23529ZM8.23529 13.6471V14.1176H7.76471V13.6471H8.23529ZM8.23529 15.0588V14.5882H7.76471V15.0588H8.23529ZM16 11.7647V11.2941H15.5294V11.7647H16ZM16 13.6471V14.1176H15.5294V13.6471H16ZM16 12.9412V12.4706H15.5294V12.9412H16ZM16 10.1176V10.5882H15.5294V10.1176H16ZM16 9.41177V8.94118H15.5294V9.41177H16ZM16 4.23529V4.70588H15.5294V4.23529H16ZM16 7.05882V6.58824H15.5294V7.05882H16ZM16 5.41176V5.88235H15.5294V5.41176H16ZM16 3.52941V3.05882H15.5294V3.52941H16ZM16 1.88235V2.35294H15.5294V1.88235H16ZM16 8.23529V7.76471H15.5294V8.23529H16ZM4.70588 15.5294V16H4.23529V15.5294H4.70588ZM2.35294 16V15.5294H1.88235V16H2.35294ZM3.52941 15.5294V16H3.05882V15.5294H3.52941ZM5.88235 16V15.5294H5.41176V16H5.88235ZM7.05882 15.5294V16H6.58823V15.5294H7.05882ZM11.7647 16V15.5294H11.2941V16H11.7647ZM9.41176 15.5294V16H8.94118V15.5294H9.41176ZM10.5882 16V15.5294H10.1176V16H10.5882ZM12.9412 15.5294V16H12.4706V15.5294H12.9412ZM14.1176 16V15.5294H13.6471V16H14.1176ZM8.23529 15.5294V16H7.76471V15.5294H8.23529ZM4.70588 0.470588V0H4.23529V0.470588H4.70588ZM2.35294 0V0.470588H1.88235V0H2.35294ZM3.52941 0.470588V0H3.05882V0.470588H3.52941ZM5.88235 0V0.470588H5.41176V0H5.88235ZM7.05882 0.470588V0H6.58823V0.470588H7.05882ZM11.7647 0V0.470588H11.2941V0H11.7647ZM9.41176 0.470588V0H8.94118V0.470588H9.41176ZM10.5882 0V0.470588H10.1176V0H10.5882ZM12.9412 0.470588V0H12.4706V0.470588H12.9412ZM14.1176 0V0.470588H13.6471V0H14.1176ZM8.23529 0.470588V0H7.76471V0.470588H8.23529ZM16 15.0588H15.5294V15.5294H15.0588V16H16V15.0588ZM0.470588 0.470588V15.5294H0.941176V16H0V0H0.941176V0.470588H0.470588Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.470588 15.5294V15.0588H0V16H0.941176V15.5294H0.470588ZM0.941176 8.23529V7.76471H1.41176V8.23529H0.941176ZM1.88235 7.76471V8.23529H2.35294V7.76471H1.88235ZM3.05882 8.23529V7.76471H3.52941V8.23529H3.05882ZM4.23529 7.76471V8.23529H4.70588V7.76471H4.23529ZM8.94118 8.23529V7.76471H9.41177V8.23529H8.94118ZM10.1176 7.76471V8.23529H10.5882V7.76471H10.1176ZM11.2941 8.23529V7.76471H11.7647V8.23529H11.2941ZM13.6471 8.23529V7.76471H14.1176V8.23529H13.6471ZM14.5882 7.76471V8.23529H15.0588V7.76471H14.5882ZM12.4706 8.23529V7.76471H12.9412V8.23529H12.4706ZM6.58824 8.23529V7.76471H7.05882V8.23529H6.58824ZM5.41176 7.76471V8.23529H5.88235V7.76471H5.41176ZM7.76471 7.76471V8.23529H8.23529V7.76471H7.76471ZM7.76471 11.7647V11.2941H8.23529V11.7647H7.76471ZM7.76471 13.6471V14.1176H8.23529V13.6471H7.76471ZM7.76471 15.0588V14.5882H8.23529V15.0588H7.76471ZM7.76471 12.4706V12.9412H8.23529V12.4706H7.76471ZM7.76471 10.5882V10.1176H8.23529V10.5882H7.76471ZM7.76471 8.94118V9.41176H8.23529V8.94118H7.76471ZM7.76471 4.70588V4.23529H8.23529V4.70588H7.76471ZM7.76471 6.58823V7.05882H8.23529V6.58823H7.76471ZM7.76471 5.88235V5.41176H8.23529V5.88235H7.76471ZM7.76471 3.05882V3.52941H8.23529V3.05882H7.76471ZM7.76471 2.35294V1.88235H8.23529V2.35294H7.76471ZM7.76471 0.941176V1.41177H8.23529V0.941176H7.76471ZM0 4.23529V4.70588H0.470588V4.23529H0ZM0 2.35294V1.88235H0.470588V2.35294H0ZM0 3.05882V3.52941H0.470588V3.05882H0ZM0 5.88235V5.41176H0.470588V5.88235H0ZM0 6.58823V7.05882H0.470588V6.58823H0ZM0 11.7647V11.2941H0.470588V11.7647H0ZM0 8.94118V9.41176H0.470588V8.94118H0ZM0 10.5882V10.1176H0.470588V10.5882H0ZM0 12.4706V12.9412H0.470588V12.4706H0ZM0 14.1176V13.6471H0.470588V14.1176H0ZM0 7.76471V8.23529H0.470588V7.76471H0ZM11.2941 0.470589V0H11.7647V0.470589H11.2941ZM13.6471 0V0.470589H14.1176V0H13.6471ZM12.4706 0.470589V0H12.9412V0.470589H12.4706ZM10.1176 0V0.470589H10.5882V0H10.1176ZM8.94118 0.470589V0H9.41177V0.470589H8.94118ZM4.23529 0V0.470589H4.70588V0H4.23529ZM6.58824 0.470589V0H7.05882V0.470589H6.58824ZM5.41176 0V0.470589H5.88235V0H5.41176ZM3.05882 0.470589V0H3.52941V0.470589H3.05882ZM1.88235 0V0.470589H2.35294V0H1.88235ZM7.76471 0.470589V0H8.23529V0.470589H7.76471ZM11.2941 15.5294V16H11.7647V15.5294H11.2941ZM13.6471 16V15.5294H14.1176V16H13.6471ZM12.4706 15.5294V16H12.9412V15.5294H12.4706ZM10.1176 16V15.5294H10.5882V16H10.1176ZM8.94118 15.5294V16H9.41177V15.5294H8.94118ZM4.23529 16V15.5294H4.70588V16H4.23529ZM6.58824 15.5294V16H7.05882V15.5294H6.58824ZM5.41176 16V15.5294H5.88235V16H5.41176ZM3.05882 15.5294V16H3.52941V15.5294H3.05882ZM1.88235 16V15.5294H2.35294V16H1.88235ZM7.76471 15.5294V16H8.23529V15.5294H7.76471ZM0 0.941176H0.470588V0.470588H0.941176V0H0V0.941176ZM15.5294 15.5294V0.470588H15.0588V0H16V16H15.0588V15.5294H15.5294Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5294 15.5294H15.0588V16H16V15.0588H15.5294V15.5294ZM8.23529 15.0588H7.76471V14.5882H8.23529V15.0588ZM7.76471 14.1176H8.23529V13.6471H7.76471V14.1176ZM8.23529 12.9412H7.76471V12.4706H8.23529V12.9412ZM7.76471 11.7647H8.23529V11.2941H7.76471V11.7647ZM8.23529 7.05882H7.76471V6.58823H8.23529V7.05882ZM7.76471 5.88235H8.23529V5.41176H7.76471V5.88235ZM8.23529 4.70588H7.76471V4.23529H8.23529V4.70588ZM8.23529 2.35294H7.76471V1.88235H8.23529V2.35294ZM7.76471 1.41177H8.23529V0.941176H7.76471V1.41177ZM8.23529 3.52941H7.76471V3.05882H8.23529V3.52941ZM8.23529 9.41176H7.76471V8.94118H8.23529V9.41176ZM7.76471 10.5882H8.23529V10.1176H7.76471V10.5882ZM7.76471 8.23529H8.23529V7.76471H7.76471V8.23529ZM11.7647 8.23529H11.2941V7.76471H11.7647V8.23529ZM13.6471 8.23529H14.1176V7.76471H13.6471V8.23529ZM15.0588 8.23529H14.5882V7.76471H15.0588V8.23529ZM12.4706 8.23529H12.9412V7.76471H12.4706V8.23529ZM10.5882 8.23529H10.1176V7.76471H10.5882V8.23529ZM8.94118 8.23529H9.41176V7.76471H8.94118V8.23529ZM4.70588 8.23529H4.23529V7.76471H4.70588V8.23529ZM6.58823 8.23529H7.05882V7.76471H6.58823V8.23529ZM5.88235 8.23529H5.41176V7.76471H5.88235V8.23529ZM3.05882 8.23529H3.52941V7.76471H3.05882V8.23529ZM2.35294 8.23529H1.88235V7.76471H2.35294V8.23529ZM0.941176 8.23529H1.41177V7.76471H0.941176V8.23529ZM4.23529 16H4.70588V15.5294H4.23529V16ZM2.35294 16H1.88235V15.5294H2.35294V16ZM3.05882 16H3.52941V15.5294H3.05882V16ZM5.88235 16H5.41176V15.5294H5.88235V16ZM6.58823 16H7.05882V15.5294H6.58823V16ZM11.7647 16H11.2941V15.5294H11.7647V16ZM8.94118 16H9.41176V15.5294H8.94118V16ZM10.5882 16H10.1176V15.5294H10.5882V16ZM12.4706 16H12.9412V15.5294H12.4706V16ZM14.1176 16H13.6471V15.5294H14.1176V16ZM7.76471 16H8.23529V15.5294H7.76471V16ZM0.470589 4.70588H0V4.23529H0.470589V4.70588ZM0 2.35294H0.470589V1.88235H0V2.35294ZM0.470589 3.52941H0V3.05882H0.470589V3.52941ZM0 5.88235H0.470589V5.41176H0V5.88235ZM0.470589 7.05882H0V6.58823H0.470589V7.05882ZM0 11.7647H0.470589V11.2941H0V11.7647ZM0.470589 9.41176H0V8.94118H0.470589V9.41176ZM0 10.5882H0.470589V10.1176H0V10.5882ZM0.470589 12.9412H0V12.4706H0.470589V12.9412ZM0 14.1176H0.470589V13.6471H0V14.1176ZM0.470589 8.23529H0V7.76471H0.470589V8.23529ZM15.5294 4.70588H16V4.23529H15.5294V4.70588ZM16 2.35294H15.5294V1.88235H16V2.35294ZM15.5294 3.52941H16V3.05882H15.5294V3.52941ZM16 5.88235H15.5294V5.41176H16V5.88235ZM15.5294 7.05882H16V6.58823H15.5294V7.05882ZM16 11.7647H15.5294V11.2941H16V11.7647ZM15.5294 9.41176H16V8.94118H15.5294V9.41176ZM16 10.5882H15.5294V10.1176H16V10.5882ZM15.5294 12.9412H16V12.4706H15.5294V12.9412ZM16 14.1176H15.5294V13.6471H16V14.1176ZM15.5294 8.23529H16V7.76471H15.5294V8.23529ZM0.941176 16V15.5294H0.470588V15.0588H0V16H0.941176ZM15.5294 0.470588H0.470588V0.941176H0V0H16V0.941176H15.5294V0.470588Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.86942 0.0111092H12.8728C13.7018 0.0123063 14.4965 0.342161 15.0828 0.928364C15.669 1.51457 15.9988 2.30928 16 3.1383V9.8924C15.9988 10.7214 15.669 11.5161 15.0828 12.1023C14.4965 12.6885 13.7018 13.0184 12.8728 13.0196H12.2586C12.2176 13.8104 11.8782 14.5578 11.3068 15.1097C10.7104 15.6858 9.90991 16.0018 9.08083 15.9885H3.18372C2.35443 16.0018 1.55368 15.6859 0.956918 15.1099C0.360155 14.5339 0.0160501 13.7448 0 12.9156V6.05293C0.0160501 5.22369 0.360155 4.43463 0.956918 3.85864C1.55368 3.28264 2.35443 2.96669 3.18372 2.98001H3.74183C3.76016 2.62314 3.83951 2.27164 3.97679 1.94088C4.13434 1.56131 4.3651 1.21649 4.6559 0.926106C4.94671 0.63572 5.29187 0.405455 5.67166 0.24846C6.05146 0.0914646 6.45846 0.010813 6.86942 0.0111092ZM3.73771 4.11059H3.18372C2.65408 4.0966 2.14051 4.29322 1.75562 4.65733C1.37074 5.02144 1.14596 5.52333 1.13058 6.05293V12.9065C1.14596 13.4361 1.37074 13.938 1.75562 14.3021C2.14051 14.6662 2.65408 14.8629 3.18372 14.8489H9.08083C9.61009 14.8622 10.1231 14.6654 10.5075 14.3013C10.8644 13.9633 11.0834 13.5067 11.1252 13.0196H6.86942C6.45846 13.0199 6.05146 12.9392 5.67166 12.7822C5.29187 12.6252 4.94671 12.395 4.6559 12.1046C4.3651 11.8142 4.13434 11.4694 3.97679 11.0898C3.81925 10.7102 3.73801 10.3034 3.73771 9.8924V4.11059ZM11.7002 11.889L11.697 11.889L11.6939 11.889H6.86942C6.34007 11.8884 5.83258 11.6779 5.45827 11.3036C5.08396 10.9292 4.87341 10.4217 4.87282 9.8924V3.1383C4.87341 2.60895 5.08396 2.10145 5.45827 1.72715C5.83258 1.35284 6.34007 1.14229 6.86942 1.14169H12.8728C13.4022 1.14229 13.9097 1.35284 14.284 1.72715C14.6583 2.10145 14.8688 2.60895 14.8694 3.1383V9.8924C14.8688 10.4217 14.6583 10.9292 14.284 11.3036C13.9097 11.6779 13.4022 11.8884 12.8728 11.889H11.7002ZM12.2962 4.58997H7.4415C7.29157 4.58997 7.14779 4.64952 7.04178 4.75554C6.93577 4.86155 6.87621 5.00533 6.87621 5.15526C6.87621 5.30518 6.93577 5.44897 7.04178 5.55498C7.14779 5.66099 7.29157 5.72055 7.4415 5.72055H12.2962C12.4461 5.72055 12.5899 5.66099 12.6959 5.55498C12.802 5.44897 12.8615 5.30518 12.8615 5.15526C12.8615 5.00533 12.802 4.86155 12.6959 4.75554C12.5899 4.64952 12.4461 4.58997 12.2962 4.58997ZM7.4415 7.32144H12.2962C12.4461 7.32144 12.5899 7.381 12.6959 7.48701C12.802 7.59303 12.8615 7.73681 12.8615 7.88673C12.8615 8.03666 12.802 8.18044 12.6959 8.28646C12.5899 8.39247 12.4461 8.45203 12.2962 8.45203H7.4415C7.29157 8.45203 7.14779 8.39247 7.04178 8.28646C6.93577 8.18044 6.87621 8.03666 6.87621 7.88673C6.87621 7.73681 6.93577 7.59303 7.04178 7.48701C7.14779 7.381 7.29157 7.32144 7.4415 7.32144Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M6.99998 12.1081C9.867 12.1081 12.1892 9.78589 12.1892 6.91887V-6.10352e-05H10.027V6.91887C10.027 8.59238 8.67349 9.9459 6.99998 9.9459C5.32646 9.9459 3.97294 8.59238 3.97294 6.91887V-6.10352e-05H1.81079V6.91887C1.81079 9.78589 4.13295 12.1081 6.99998 12.1081Z" fill="currentColor"/>
|
3
|
+
<path d="M13.0542 15.027H0.946045V15.9999H13.0542V15.027Z" fill="currentColor"/>
|
4
|
+
<path d="M13.0542 13.081H0.946045V14.054H13.0542V13.081Z" fill="currentColor"/>
|
5
|
+
</svg>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<svg width="12" height="11" viewBox="0 0 12 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M3.13141 7.17795C2.95989 7.04242 2.74491 6.96777 2.5261 6.96777C2.22872 6.96777 1.95179 7.0999 1.76631 7.33035C1.60413 7.53207 1.5307 7.78445 1.55964 8.04092C1.58862 8.29795 1.71684 8.52817 1.92063 8.68925C2.09216 8.82481 2.30706 8.89946 2.52584 8.89946C2.82344 8.89946 3.1004 8.76707 3.28573 8.5364C3.44777 8.33501 3.52112 8.08293 3.49229 7.82657C3.46338 7.56955 3.33524 7.33917 3.13141 7.17795ZM2.94043 8.25881C2.83957 8.38441 2.68843 8.45648 2.52584 8.45648C2.40463 8.45648 2.29033 8.41679 2.19538 8.34173C2.08496 8.25446 2.01555 8.13001 1.99986 7.99127C1.98428 7.85308 2.02393 7.71692 2.11146 7.60809C2.21236 7.48271 2.36351 7.4108 2.5261 7.4108C2.64741 7.4108 2.76175 7.45048 2.85666 7.5255C2.96705 7.61278 3.03642 7.7373 3.05204 7.87612C3.06758 8.01419 3.028 8.15005 2.94043 8.25881Z" fill="currentColor"/>
|
3
|
+
<path d="M7.02684 4.9091C7.17296 4.9091 7.31425 4.87709 7.44712 4.81378C7.682 4.7014 7.85843 4.50481 7.94382 4.26018C8.02877 4.01711 8.01349 3.75554 7.90089 3.52388C7.73981 3.19183 7.3958 2.97726 7.02451 2.97726C6.8781 2.97726 6.73651 3.00938 6.60368 3.07277C6.36888 3.18478 6.19237 3.38123 6.10683 3.62592C6.02173 3.86918 6.03698 4.13078 6.14977 4.36256C6.31136 4.69457 6.65562 4.9091 7.02684 4.9091ZM6.52497 3.77216C6.57127 3.6398 6.66696 3.53341 6.7944 3.4726C6.8672 3.4379 6.94459 3.42029 7.02448 3.42029C7.2272 3.42029 7.41474 3.53684 7.50231 3.71741C7.56305 3.84234 7.57128 3.98318 7.52557 4.1141C7.47931 4.24652 7.38351 4.35307 7.25622 4.41399C7.18367 4.44858 7.10647 4.46608 7.0268 4.46608C6.8239 4.46608 6.63598 4.34934 6.54804 4.1687C6.48739 4.04395 6.47919 3.90314 6.52497 3.77216Z" fill="currentColor"/>
|
4
|
+
<path d="M4.61602 3.34364C4.68727 3.35974 4.76018 3.3679 4.83273 3.3679C5.28874 3.3679 5.67835 3.05948 5.78024 2.61746C5.8375 2.36682 5.79346 2.10879 5.65634 1.89082C5.51808 1.67116 5.302 1.51846 5.04807 1.46095C4.97653 1.4447 4.90332 1.43643 4.83044 1.43643C4.37472 1.43643 3.98552 1.74518 3.88396 2.18713C3.82622 2.43759 3.86997 2.69565 4.00712 2.91376C4.14549 3.13372 4.36179 3.28642 4.61602 3.34364ZM4.31572 2.28652C4.37077 2.04688 4.58246 1.87949 4.83044 1.87949C4.87027 1.87949 4.91048 1.88403 4.95002 1.893C5.08854 1.92438 5.2062 2.00741 5.28136 2.12681C5.35542 2.24447 5.3792 2.38365 5.34841 2.51833C5.2941 2.75391 5.0772 2.92488 4.83269 2.92488C4.79297 2.92488 4.75291 2.92037 4.71348 2.91147C4.57493 2.88028 4.45727 2.79732 4.38214 2.67793C4.30823 2.56034 4.28463 2.42138 4.31572 2.28652Z" fill="currentColor"/>
|
5
|
+
<path d="M2.85595 3.89638C3.05952 3.73508 3.18752 3.50467 3.21646 3.24761C3.2453 2.99132 3.17209 2.73924 3.00998 2.53748C2.8242 2.30714 2.54706 2.17505 2.24968 2.17505C2.03108 2.17505 1.81633 2.24948 1.64477 2.38478C1.44116 2.5456 1.31309 2.77564 1.28404 3.03252C1.25502 3.28914 1.32841 3.54166 1.49082 3.74375C1.67644 3.97435 1.95363 4.10663 2.25134 4.10663C2.47012 4.10659 2.68487 4.03194 2.85595 3.89638ZM1.83608 3.46602C1.74836 3.35688 1.70867 3.22058 1.72433 3.08221C1.73998 2.94366 1.80931 2.81939 1.91933 2.73244C2.01425 2.65757 2.12851 2.618 2.24972 2.618C2.41245 2.618 2.56393 2.68999 2.6649 2.81518C2.75221 2.92394 2.79179 3.05991 2.77625 3.19802C2.76063 3.33699 2.69122 3.4617 2.58087 3.54912C2.4864 3.62395 2.37243 3.66353 2.25138 3.66353C2.08845 3.66357 1.93709 3.5915 1.83608 3.46602Z" fill="currentColor"/>
|
6
|
+
<path d="M11.9153 1.72867C11.877 1.69006 11.8087 1.64402 11.7009 1.64402C11.5745 1.64402 11.2388 1.64402 9.20006 3.37889C9.15908 3.41374 9.11773 3.44908 9.07623 3.48467C8.71196 2.53442 8.07194 1.68725 7.24722 1.07448C6.30159 0.37188 5.17557 0.000295348 3.991 0C3.99063 0 3.99038 0 3.99008 0C3.19065 0 2.21888 0.279326 1.45389 0.729104C0.516158 1.28037 -0.000184543 2.01763 4.94768e-08 2.805C0.000295398 3.75557 0.536426 4.15319 0.967228 4.47264C1.31851 4.73318 1.59595 4.93892 1.5961 5.38985C1.59621 5.84073 1.31891 6.04629 0.967819 6.30657C0.537165 6.62584 0.00114452 7.02323 0.00143987 7.97392C0.00166138 8.76117 0.518336 9.49862 1.45625 10.0504C2.22179 10.5007 3.19408 10.7806 3.99366 10.7808C3.99421 10.7808 3.99469 10.7808 3.99521 10.7808C5.44629 10.7808 6.8104 10.2207 7.83636 9.20368C8.84926 8.1996 9.4126 6.86873 9.4274 5.4505C9.77134 5.05913 10.1045 4.67012 10.4087 4.30356C10.9291 3.67646 11.3293 3.15901 11.5981 2.76564C11.9542 2.24461 12.1101 1.92504 11.9153 1.72867ZM7.52451 8.88906C6.58202 9.82339 5.32878 10.3378 3.99525 10.3378C3.99484 10.3378 3.99425 10.3378 3.99385 10.3378C2.56484 10.3374 0.444868 9.34459 0.444462 7.97377C0.444241 7.24622 0.826716 6.96265 1.23168 6.66243C1.6102 6.38177 2.03923 6.06368 2.03908 5.3897C2.03886 4.71582 1.60972 4.39755 1.23109 4.11678C0.825941 3.8163 0.443244 3.53251 0.443022 2.80488C0.442838 1.96311 1.21695 1.3823 1.67843 1.11099C2.36873 0.705144 3.276 0.442985 3.99008 0.442985C3.99034 0.442985 3.99063 0.442985 3.99086 0.442985C5.07962 0.443281 6.1143 0.784629 6.98303 1.43004C7.78423 2.02535 8.39583 2.86104 8.71798 3.79463C7.75717 4.63357 6.71673 5.60084 5.94189 6.37819C4.65495 6.54477 4.47962 7.40246 4.35144 8.03255C4.24231 8.56905 4.17146 8.82844 3.75735 8.86166C3.6553 8.86986 3.5722 8.94687 3.55629 9.04799C3.54034 9.14907 3.59575 9.24794 3.69034 9.28711C3.71696 9.29811 4.35033 9.55691 5.09033 9.55695C5.09044 9.55695 5.09051 9.55695 5.09058 9.55695C5.60626 9.55695 6.04862 9.43194 6.40533 9.18544C6.84488 8.88167 7.14292 8.40007 7.2927 7.75422C7.79896 7.24201 8.37744 6.62436 8.94946 5.98815C8.8178 7.08352 8.3235 8.09701 7.52451 8.88906ZM6.84765 7.71228C6.61292 8.64248 6.0223 9.114 5.09055 9.11397C5.09055 9.11397 5.0904 9.11397 5.09033 9.11397C4.84463 9.11397 4.60935 9.08044 4.41154 9.03865C4.64782 8.79768 4.72162 8.43507 4.78553 8.12093C4.90725 7.52255 5.02236 6.95626 5.96408 6.82173L6.84765 7.71228ZM9.90657 4.21388C9.02846 5.26004 7.96558 6.43486 7.09061 7.3281L6.95515 7.19158L6.35748 6.58918C7.15079 5.79949 8.16848 4.85789 9.11799 4.03383C9.22867 3.93777 9.33865 3.84292 9.44704 3.75048C10.549 2.81072 11.1264 2.40173 11.421 2.22375C11.2451 2.5201 10.8399 3.10197 9.90657 4.21388Z" fill="currentColor"/>
|
7
|
+
</svg>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M0 1.6C0 0.716352 0.691648 0 1.54483 0H11.8952C12.7484 0 13.44 0.716352 13.44 1.6V4C13.44 4.88365 12.7484 5.6 11.8952 5.6H1.54483C0.691648 5.6 0 4.88365 0 4V1.6Z" fill="currentColor"/>
|
3
|
+
<path d="M5.43994 10.0104C5.43994 9.60702 5.71215 9.28 6.04794 9.28H7.87194C8.20773 9.28 8.47994 9.60702 8.47994 10.0104V15.2696C8.47994 15.673 8.20773 16 7.87194 16H6.04794C5.71215 16 5.43994 15.673 5.43994 15.2696V10.0104Z" fill="currentColor"/>
|
4
|
+
<path d="M14.0801 3.44H14.5601C14.6484 3.44 14.7201 3.51164 14.7201 3.6V6.56C14.7201 6.64837 14.6484 6.72 14.5601 6.72H7.80011C7.00481 6.72 6.36011 7.36471 6.36011 8.16V8.64H7.64011V8.16C7.64011 8.07164 7.71174 8 7.80011 8H14.5601C15.3555 8 16.0001 7.3553 16.0001 6.56V3.6C16.0001 2.80471 15.3555 2.16 14.5601 2.16H14.0801V3.44Z" fill="currentColor"/>
|
5
|
+
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M14.3023 1.71582C14.0651 1.7172 13.838 1.81245 13.6708 1.98077C13.6708 1.98077 9.91509 5.72922 7.63431 8.00848L6.02693 6.40109C5.67669 6.05175 5.1098 6.05175 4.75956 6.40109C4.41022 6.75132 4.41022 7.31822 4.75956 7.66845L7.00284 9.91173C7.35309 10.261 7.91995 10.261 8.2702 9.91173C10.3923 7.79041 14.9382 3.24814 14.9382 3.24814C15.2875 2.8979 15.2875 2.33101 14.9382 1.98077C14.7699 1.81138 14.5411 1.71603 14.3023 1.71582Z" fill="currentColor"/>
|
3
|
+
<path d="M8.00172 1C4.14578 1.00003 1 4.14236 1 7.99832C1 11.8542 4.14578 15 8.00172 15C11.166 15 13.944 12.8676 14.763 9.8111C14.9214 9.22021 15 8.61007 15 7.99832C15 7.51546 14.6089 7.12387 14.1261 7.12323C13.6432 7.12387 13.2521 7.51546 13.2521 7.99832C13.2521 8.45716 13.1897 8.91556 13.071 9.35875C12.4548 11.6582 10.3823 13.2521 8.00172 13.2522C5.09163 13.2521 2.74786 10.9084 2.74786 7.99832C2.74786 5.08823 5.09162 2.74788 8.00172 2.74788C8.46061 2.74791 8.91551 2.81042 9.35875 2.92902C9.82555 3.05418 10.3054 2.77725 10.4306 2.31044C10.4307 2.31004 10.4308 2.3096 10.4309 2.30919C10.5561 1.84238 10.2791 1.36252 9.81234 1.23736C9.81192 1.23726 9.81152 1.23712 9.8111 1.23702C9.22011 1.07869 8.61357 1.00003 8.00172 1Z" fill="currentColor"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<mask id="path-1-inside-1_2947_13205" fill="currentColor">
|
3
|
+
<path d="M7.63624 1.5C9.29576 1.5 9.69963 1.54828 10.3071 1.6209L10.3555 1.6267C10.5059 1.64474 10.6742 1.66492 10.8747 1.68562L10.8997 1.68812C11.0622 1.70542 11.2223 1.74042 11.3772 1.7925L11.4084 1.80312L11.4322 1.81187H11.4359L11.44 1.81344C11.7875 1.94044 12.098 2.15188 12.3435 2.42873C12.589 2.70558 12.7617 3.03914 12.8462 3.39937L12.8756 3.68062C12.9509 4.40688 13.0109 5.50219 13.0419 6.77594C13.0464 6.9684 13.1261 7.15143 13.264 7.28579C13.4018 7.42016 13.5868 7.49515 13.7794 7.49469C13.8825 7.49428 13.9846 7.47349 14.0796 7.43352C14.1747 7.39355 14.261 7.33518 14.3334 7.26176C14.4059 7.18835 14.4631 7.10134 14.5018 7.00574C14.5406 6.91014 14.56 6.80783 14.559 6.70469C14.5444 4.76719 14.3859 3.52625 14.3859 3.52625C14.314 2.83126 14.0484 2.17042 13.6194 1.61891C13.1904 1.06739 12.6153 0.64735 11.9594 0.406563C11.9247 0.39375 11.89 0.38125 11.855 0.369063C11.5957 0.28191 11.3276 0.223538 11.0556 0.195L11.0297 0.192187C10.8197 0.170636 10.6453 0.14994 10.4827 0.130637C9.84117 0.0544934 9.38206 0 7.63624 0C5.79355 0 5.25185 0.0607585 4.50652 0.144357C4.36705 0.16 4.22045 0.176443 4.05686 0.193437L4.03092 0.19625C3.74536 0.226245 3.46422 0.289163 3.19311 0.38375V0.369375C2.51701 0.599223 1.92102 1.01815 1.4758 1.57647C1.03058 2.13479 0.754828 2.80908 0.681235 3.51938C0.551235 4.76937 0.484985 5.97469 0.484985 7.90812C0.484985 9.84156 0.551235 11.0472 0.681235 12.2972C0.77005 13.1502 1.14949 13.9467 1.75592 14.5531C2.36234 15.1596 3.15886 15.539 4.01186 15.6278L4.0378 15.6303C4.24679 15.652 4.42044 15.6728 4.5824 15.6922C5.12105 15.7567 5.53034 15.8058 6.67999 15.8197C6.7785 15.8209 6.87629 15.8027 6.96777 15.7661C7.05924 15.7294 7.1426 15.6752 7.21309 15.6063C7.28359 15.5375 7.33982 15.4554 7.37859 15.3649C7.41736 15.2743 7.43791 15.177 7.43905 15.0784C7.44123 14.8808 7.36531 14.6903 7.22779 14.5483C7.09028 14.4064 6.90228 14.3244 6.70467 14.3203C5.73124 14.3003 5.14217 14.2481 4.75655 14.2019L4.753 14.2014C4.59232 14.1822 4.41118 14.1605 4.19217 14.1378L4.16717 14.135C3.65643 14.0819 3.17949 13.8548 2.81639 13.4917C2.4533 13.1286 2.22617 12.6517 2.17311 12.1409C2.0603 11.0569 1.98561 9.92219 1.98561 7.90719C1.98561 5.89219 2.06092 4.75781 2.17311 3.67375C2.21249 3.29234 2.34953 2.92753 2.571 2.61453C2.79248 2.30153 3.09091 2.05091 3.43749 1.88687L3.68499 1.80062C3.8468 1.74414 4.01457 1.70639 4.18499 1.68812L4.21186 1.68562C4.3708 1.66885 4.51117 1.65318 4.64628 1.6381L4.67124 1.63531C5.39592 1.55375 5.87499 1.5 7.63624 1.5Z"/>
|
4
|
+
<path d="M11.3506 12.6722H12.744C12.9243 12.6722 13.0972 12.6006 13.2247 12.4731C13.3521 12.3456 13.4237 12.1728 13.4237 11.9925C13.4237 11.8122 13.3521 11.6394 13.2247 11.5119C13.0972 11.3844 12.9243 11.3128 12.744 11.3128H12.0303V10.3206C12.0303 10.1404 11.9587 9.96748 11.8312 9.84001C11.7038 9.71255 11.5309 9.64094 11.3506 9.64094C11.1703 9.64094 10.9975 9.71255 10.87 9.84001C10.7425 9.96748 10.6709 10.1404 10.6709 10.3206V11.9925C10.6711 12.1727 10.7428 12.3455 10.8702 12.4729C10.9976 12.6004 11.1704 12.672 11.3506 12.6722Z"/>
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4172 16C9.15748 16 7.31936 14.1619 7.31936 11.9025C7.32052 10.816 7.75262 9.77443 8.52086 9.00619C9.2891 8.23795 10.3307 7.80585 11.4172 7.80469C13.6765 7.80469 15.515 9.64281 15.515 11.9025C15.515 14.1622 13.6765 16 11.4172 16ZM11.4172 9.30469C10.9034 9.30469 10.4011 9.45705 9.9739 9.7425C9.5467 10.0279 9.21373 10.4337 9.01711 10.9084C8.82048 11.383 8.76904 11.9054 8.86928 12.4093C8.96951 12.9132 9.21693 13.3761 9.58024 13.7394C9.94355 14.1027 10.4064 14.3502 10.9104 14.4504C11.4143 14.5506 11.9366 14.4992 12.4113 14.3026C12.886 14.1059 13.2917 13.773 13.5772 13.3458C13.8626 12.9186 14.015 12.4163 14.015 11.9025C14.0142 11.2137 13.7403 10.5534 13.2533 10.0664C12.7663 9.57937 12.1059 9.30543 11.4172 9.30469Z"/>
|
6
|
+
<path d="M10.934 4.16094H4.11342C3.9186 4.16493 3.7331 4.24512 3.59674 4.38432C3.46037 4.52351 3.38399 4.71061 3.38399 4.90547C3.38399 5.10033 3.46037 5.28743 3.59674 5.42662C3.7331 5.56581 3.9186 5.64601 4.11342 5.65H10.934C11.1289 5.64601 11.3144 5.56581 11.4507 5.42662C11.5871 5.28743 11.6635 5.10033 11.6635 4.90547C11.6635 4.71061 11.5871 4.52351 11.4507 4.38432C11.3144 4.24512 11.1289 4.16493 10.934 4.16094Z"/>
|
7
|
+
<path d="M4.11342 8.835C3.916 8.835 3.72667 8.75658 3.58707 8.61698C3.44747 8.47738 3.36905 8.28805 3.36905 8.09063C3.36905 7.89321 3.44747 7.70387 3.58707 7.56427C3.72667 7.42468 3.916 7.34625 4.11342 7.34625H8.0028C8.20022 7.34625 8.38955 7.42468 8.52915 7.56427C8.66875 7.70387 8.74717 7.89321 8.74717 8.09063C8.74717 8.28805 8.66875 8.47738 8.52915 8.61698C8.38955 8.75658 8.20022 8.835 8.0028 8.835H4.11342Z"/>
|
8
|
+
</mask>
|
9
|
+
<path d="M7.63624 1.5C9.29576 1.5 9.69963 1.54828 10.3071 1.6209L10.3555 1.6267C10.5059 1.64474 10.6742 1.66492 10.8747 1.68562L10.8997 1.68812C11.0622 1.70542 11.2223 1.74042 11.3772 1.7925L11.4084 1.80312L11.4322 1.81187H11.4359L11.44 1.81344C11.7875 1.94044 12.098 2.15188 12.3435 2.42873C12.589 2.70558 12.7617 3.03914 12.8462 3.39937L12.8756 3.68062C12.9509 4.40688 13.0109 5.50219 13.0419 6.77594C13.0464 6.9684 13.1261 7.15143 13.264 7.28579C13.4018 7.42016 13.5868 7.49515 13.7794 7.49469C13.8825 7.49428 13.9846 7.47349 14.0796 7.43352C14.1747 7.39355 14.261 7.33518 14.3334 7.26176C14.4059 7.18835 14.4631 7.10134 14.5018 7.00574C14.5406 6.91014 14.56 6.80783 14.559 6.70469C14.5444 4.76719 14.3859 3.52625 14.3859 3.52625C14.314 2.83126 14.0484 2.17042 13.6194 1.61891C13.1904 1.06739 12.6153 0.64735 11.9594 0.406563C11.9247 0.39375 11.89 0.38125 11.855 0.369063C11.5957 0.28191 11.3276 0.223538 11.0556 0.195L11.0297 0.192187C10.8197 0.170636 10.6453 0.14994 10.4827 0.130637C9.84117 0.0544934 9.38206 0 7.63624 0C5.79355 0 5.25185 0.0607585 4.50652 0.144357C4.36705 0.16 4.22045 0.176443 4.05686 0.193437L4.03092 0.19625C3.74536 0.226245 3.46422 0.289163 3.19311 0.38375V0.369375C2.51701 0.599223 1.92102 1.01815 1.4758 1.57647C1.03058 2.13479 0.754828 2.80908 0.681235 3.51938C0.551235 4.76937 0.484985 5.97469 0.484985 7.90812C0.484985 9.84156 0.551235 11.0472 0.681235 12.2972C0.77005 13.1502 1.14949 13.9467 1.75592 14.5531C2.36234 15.1596 3.15886 15.539 4.01186 15.6278L4.0378 15.6303C4.24679 15.652 4.42044 15.6728 4.5824 15.6922C5.12105 15.7567 5.53034 15.8058 6.67999 15.8197C6.7785 15.8209 6.87629 15.8027 6.96777 15.7661C7.05924 15.7294 7.1426 15.6752 7.21309 15.6063C7.28359 15.5375 7.33982 15.4554 7.37859 15.3649C7.41736 15.2743 7.43791 15.177 7.43905 15.0784C7.44123 14.8808 7.36531 14.6903 7.22779 14.5483C7.09028 14.4064 6.90228 14.3244 6.70467 14.3203C5.73124 14.3003 5.14217 14.2481 4.75655 14.2019L4.753 14.2014C4.59232 14.1822 4.41118 14.1605 4.19217 14.1378L4.16717 14.135C3.65643 14.0819 3.17949 13.8548 2.81639 13.4917C2.4533 13.1286 2.22617 12.6517 2.17311 12.1409C2.0603 11.0569 1.98561 9.92219 1.98561 7.90719C1.98561 5.89219 2.06092 4.75781 2.17311 3.67375C2.21249 3.29234 2.34953 2.92753 2.571 2.61453C2.79248 2.30153 3.09091 2.05091 3.43749 1.88687L3.68499 1.80062C3.8468 1.74414 4.01457 1.70639 4.18499 1.68812L4.21186 1.68562C4.3708 1.66885 4.51117 1.65318 4.64628 1.6381L4.67124 1.63531C5.39592 1.55375 5.87499 1.5 7.63624 1.5Z" fill="currentColor"/>
|
10
|
+
<path d="M11.3506 12.6722H12.744C12.9243 12.6722 13.0972 12.6006 13.2247 12.4731C13.3521 12.3456 13.4237 12.1728 13.4237 11.9925C13.4237 11.8122 13.3521 11.6394 13.2247 11.5119C13.0972 11.3844 12.9243 11.3128 12.744 11.3128H12.0303V10.3206C12.0303 10.1404 11.9587 9.96748 11.8312 9.84001C11.7038 9.71255 11.5309 9.64094 11.3506 9.64094C11.1703 9.64094 10.9975 9.71255 10.87 9.84001C10.7425 9.96748 10.6709 10.1404 10.6709 10.3206V11.9925C10.6711 12.1727 10.7428 12.3455 10.8702 12.4729C10.9976 12.6004 11.1704 12.672 11.3506 12.6722Z" fill="currentColor"/>
|
11
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4172 16C9.15748 16 7.31936 14.1619 7.31936 11.9025C7.32052 10.816 7.75262 9.77443 8.52086 9.00619C9.2891 8.23795 10.3307 7.80585 11.4172 7.80469C13.6765 7.80469 15.515 9.64281 15.515 11.9025C15.515 14.1622 13.6765 16 11.4172 16ZM11.4172 9.30469C10.9034 9.30469 10.4011 9.45705 9.9739 9.7425C9.5467 10.0279 9.21373 10.4337 9.01711 10.9084C8.82048 11.383 8.76904 11.9054 8.86928 12.4093C8.96951 12.9132 9.21693 13.3761 9.58024 13.7394C9.94355 14.1027 10.4064 14.3502 10.9104 14.4504C11.4143 14.5506 11.9366 14.4992 12.4113 14.3026C12.886 14.1059 13.2917 13.773 13.5772 13.3458C13.8626 12.9186 14.015 12.4163 14.015 11.9025C14.0142 11.2137 13.7403 10.5534 13.2533 10.0664C12.7663 9.57937 12.1059 9.30543 11.4172 9.30469Z" fill="currentColor"/>
|
12
|
+
<path d="M10.934 4.16094H4.11342C3.9186 4.16493 3.7331 4.24512 3.59674 4.38432C3.46037 4.52351 3.38399 4.71061 3.38399 4.90547C3.38399 5.10033 3.46037 5.28743 3.59674 5.42662C3.7331 5.56581 3.9186 5.64601 4.11342 5.65H10.934C11.1289 5.64601 11.3144 5.56581 11.4507 5.42662C11.5871 5.28743 11.6635 5.10033 11.6635 4.90547C11.6635 4.71061 11.5871 4.52351 11.4507 4.38432C11.3144 4.24512 11.1289 4.16493 10.934 4.16094Z" fill="currentColor"/>
|
13
|
+
<path d="M4.11342 8.835C3.916 8.835 3.72667 8.75658 3.58707 8.61698C3.44747 8.47738 3.36905 8.28805 3.36905 8.09063C3.36905 7.89321 3.44747 7.70387 3.58707 7.56427C3.72667 7.42468 3.916 7.34625 4.11342 7.34625H8.0028C8.20022 7.34625 8.38955 7.42468 8.52915 7.56427C8.66875 7.70387 8.74717 7.89321 8.74717 8.09063C8.74717 8.28805 8.66875 8.47738 8.52915 8.61698C8.38955 8.75658 8.20022 8.835 8.0028 8.835H4.11342Z" fill="currentColor"/>
|
14
|
+
<path d="M7.63624 1.5C9.29576 1.5 9.69963 1.54828 10.3071 1.6209L10.3555 1.6267C10.5059 1.64474 10.6742 1.66492 10.8747 1.68562L10.8997 1.68812C11.0622 1.70542 11.2223 1.74042 11.3772 1.7925L11.4084 1.80312L11.4322 1.81187H11.4359L11.44 1.81344C11.7875 1.94044 12.098 2.15188 12.3435 2.42873C12.589 2.70558 12.7617 3.03914 12.8462 3.39937L12.8756 3.68062C12.9509 4.40688 13.0109 5.50219 13.0419 6.77594C13.0464 6.9684 13.1261 7.15143 13.264 7.28579C13.4018 7.42016 13.5868 7.49515 13.7794 7.49469C13.8825 7.49428 13.9846 7.47349 14.0796 7.43352C14.1747 7.39355 14.261 7.33518 14.3334 7.26176C14.4059 7.18835 14.4631 7.10134 14.5018 7.00574C14.5406 6.91014 14.56 6.80783 14.559 6.70469C14.5444 4.76719 14.3859 3.52625 14.3859 3.52625C14.314 2.83126 14.0484 2.17042 13.6194 1.61891C13.1904 1.06739 12.6153 0.64735 11.9594 0.406563C11.9247 0.39375 11.89 0.38125 11.855 0.369063C11.5957 0.28191 11.3276 0.223538 11.0556 0.195L11.0297 0.192187C10.8197 0.170636 10.6453 0.14994 10.4827 0.130637C9.84117 0.0544934 9.38206 0 7.63624 0C5.79355 0 5.25185 0.0607585 4.50652 0.144357C4.36705 0.16 4.22045 0.176443 4.05686 0.193437L4.03092 0.19625C3.74536 0.226245 3.46422 0.289163 3.19311 0.38375V0.369375C2.51701 0.599223 1.92102 1.01815 1.4758 1.57647C1.03058 2.13479 0.754828 2.80908 0.681235 3.51938C0.551235 4.76937 0.484985 5.97469 0.484985 7.90812C0.484985 9.84156 0.551235 11.0472 0.681235 12.2972C0.77005 13.1502 1.14949 13.9467 1.75592 14.5531C2.36234 15.1596 3.15886 15.539 4.01186 15.6278L4.0378 15.6303C4.24679 15.652 4.42044 15.6728 4.5824 15.6922C5.12105 15.7567 5.53034 15.8058 6.67999 15.8197C6.7785 15.8209 6.87629 15.8027 6.96777 15.7661C7.05924 15.7294 7.1426 15.6752 7.21309 15.6063C7.28359 15.5375 7.33982 15.4554 7.37859 15.3649C7.41736 15.2743 7.43791 15.177 7.43905 15.0784C7.44123 14.8808 7.36531 14.6903 7.22779 14.5483C7.09028 14.4064 6.90228 14.3244 6.70467 14.3203C5.73124 14.3003 5.14217 14.2481 4.75655 14.2019L4.753 14.2014C4.59232 14.1822 4.41118 14.1605 4.19217 14.1378L4.16717 14.135C3.65643 14.0819 3.17949 13.8548 2.81639 13.4917C2.4533 13.1286 2.22617 12.6517 2.17311 12.1409C2.0603 11.0569 1.98561 9.92219 1.98561 7.90719C1.98561 5.89219 2.06092 4.75781 2.17311 3.67375C2.21249 3.29234 2.34953 2.92753 2.571 2.61453C2.79248 2.30153 3.09091 2.05091 3.43749 1.88687L3.68499 1.80062C3.8468 1.74414 4.01457 1.70639 4.18499 1.68812L4.21186 1.68562C4.3708 1.66885 4.51117 1.65318 4.64628 1.6381L4.67124 1.63531C5.39592 1.55375 5.87499 1.5 7.63624 1.5Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
|
15
|
+
<path d="M11.3506 12.6722H12.744C12.9243 12.6722 13.0972 12.6006 13.2247 12.4731C13.3521 12.3456 13.4237 12.1728 13.4237 11.9925C13.4237 11.8122 13.3521 11.6394 13.2247 11.5119C13.0972 11.3844 12.9243 11.3128 12.744 11.3128H12.0303V10.3206C12.0303 10.1404 11.9587 9.96748 11.8312 9.84001C11.7038 9.71255 11.5309 9.64094 11.3506 9.64094C11.1703 9.64094 10.9975 9.71255 10.87 9.84001C10.7425 9.96748 10.6709 10.1404 10.6709 10.3206V11.9925C10.6711 12.1727 10.7428 12.3455 10.8702 12.4729C10.9976 12.6004 11.1704 12.672 11.3506 12.6722Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
|
16
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4172 16C9.15748 16 7.31936 14.1619 7.31936 11.9025C7.32052 10.816 7.75262 9.77443 8.52086 9.00619C9.2891 8.23795 10.3307 7.80585 11.4172 7.80469C13.6765 7.80469 15.515 9.64281 15.515 11.9025C15.515 14.1622 13.6765 16 11.4172 16ZM11.4172 9.30469C10.9034 9.30469 10.4011 9.45705 9.9739 9.7425C9.5467 10.0279 9.21373 10.4337 9.01711 10.9084C8.82048 11.383 8.76904 11.9054 8.86928 12.4093C8.96951 12.9132 9.21693 13.3761 9.58024 13.7394C9.94355 14.1027 10.4064 14.3502 10.9104 14.4504C11.4143 14.5506 11.9366 14.4992 12.4113 14.3026C12.886 14.1059 13.2917 13.773 13.5772 13.3458C13.8626 12.9186 14.015 12.4163 14.015 11.9025C14.0142 11.2137 13.7403 10.5534 13.2533 10.0664C12.7663 9.57937 12.1059 9.30543 11.4172 9.30469Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
|
17
|
+
<path d="M10.934 4.16094H4.11342C3.9186 4.16493 3.7331 4.24512 3.59674 4.38432C3.46037 4.52351 3.38399 4.71061 3.38399 4.90547C3.38399 5.10033 3.46037 5.28743 3.59674 5.42662C3.7331 5.56581 3.9186 5.64601 4.11342 5.65H10.934C11.1289 5.64601 11.3144 5.56581 11.4507 5.42662C11.5871 5.28743 11.6635 5.10033 11.6635 4.90547C11.6635 4.71061 11.5871 4.52351 11.4507 4.38432C11.3144 4.24512 11.1289 4.16493 10.934 4.16094Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
|
18
|
+
<path d="M4.11342 8.835C3.916 8.835 3.72667 8.75658 3.58707 8.61698C3.44747 8.47738 3.36905 8.28805 3.36905 8.09063C3.36905 7.89321 3.44747 7.70387 3.58707 7.56427C3.72667 7.42468 3.916 7.34625 4.11342 7.34625H8.0028C8.20022 7.34625 8.38955 7.42468 8.52915 7.56427C8.66875 7.70387 8.74717 7.89321 8.74717 8.09063C8.74717 8.28805 8.66875 8.47738 8.52915 8.61698C8.38955 8.75658 8.20022 8.835 8.0028 8.835H4.11342Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
|
19
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M8.46841 0H3.90172C3.17467 0 2.58507 0.589598 2.58507 1.31666C2.58507 2.04371 3.17467 2.63331 3.90172 2.63331H4.74886L2.52345 13.3443C2.52187 13.3519 2.52266 13.3591 2.52134 13.3667H1.53174C0.804686 13.3667 0.215088 13.956 0.215088 14.6833C0.215088 15.4107 0.804686 16 1.53174 16H6.09843C6.82575 16 7.41509 15.4107 7.41509 14.6833C7.41509 13.956 6.82575 13.3667 6.09843 13.3667H5.20337L7.43299 2.63331H8.46841C9.19573 2.63331 9.78507 2.04371 9.78507 1.31666C9.78507 0.589598 9.19573 0 8.46841 0Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.3371 0H7.63428C7.63428 1.92 9.18856 3.47428 11.1085 3.47428H12.5257V4.84572C12.5257 6.76572 14.0799 8.31997 15.9999 8.31997V0.662875C15.9999 0.297156 15.7028 0 15.3371 0ZM11.5201 3.83997H3.8172C3.8172 5.75997 5.37148 7.31422 7.29148 7.31422H8.70861V8.68568C8.70861 10.6057 10.2629 12.1599 12.1829 12.1599V4.50284C12.1829 4.13709 11.8857 3.83997 11.5201 3.83997ZM0.00012207 7.68005H7.703C8.06872 7.68005 8.36587 7.97718 8.36587 8.34293V16.0001C6.44587 16.0001 4.89153 14.4458 4.89153 12.5258V11.1543H3.4744C1.5544 11.1543 0.00012207 9.60005 0.00012207 7.68005Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M5.22499 13.7397C5.09343 13.8514 5.07734 14.0486 5.18902 14.1802C5.30071 14.3117 5.49793 14.3278 5.62949 14.2161C5.76106 14.1044 5.77715 13.9072 5.66546 13.7757C5.55377 13.6441 5.35656 13.628 5.22499 13.7397Z" fill="currentColor"/>
|
3
|
+
<path d="M9.31659 9.14405L8.77474 8.87024L8.63074 8.33286C8.60305 8.22952 8.52449 8.14749 8.42246 8.11533C8.32033 8.08314 8.20899 8.10533 8.12708 8.17411L6.74248 9.33593C6.30095 8.91739 5.73557 8.66111 5.12042 8.60727C4.40016 8.54405 3.6986 8.76539 3.14488 9.23002L0.967091 11.0574C0.413558 11.5219 0.073869 12.1744 0.0105251 12.895C-0.0524751 13.615 0.168869 14.3166 0.633715 14.8705C1.16831 15.5076 1.93612 15.8361 2.70913 15.8361C3.32316 15.836 3.94051 15.6287 4.44654 15.2041L4.53657 15.1285C4.66901 15.0173 4.68632 14.8199 4.57516 14.6874C4.46401 14.5549 4.26657 14.5377 4.13407 14.6488L4.04404 14.7244C3.16532 15.4616 1.85069 15.3467 1.11337 14.468C0.756027 14.0422 0.585902 13.5028 0.634308 12.9496C0.682996 12.3957 0.94409 11.8941 1.36956 11.5371L3.54735 9.70965C3.97294 9.35255 4.51232 9.18271 5.06579 9.23102C5.51401 9.27027 5.92807 9.44896 6.25908 9.74146L5.94923 10.0015C5.84354 10.0901 5.74339 10.1414 5.67564 10.1624C5.16554 9.8068 4.47801 9.83196 3.99216 10.2397L1.81434 12.0671C1.22797 12.5592 1.15128 13.4366 1.64347 14.0231C1.91766 14.3499 2.31153 14.5184 2.70803 14.5184C3.023 14.5184 3.33966 14.4121 3.59926 14.1943L5.77707 12.3668C5.88404 12.277 5.97529 12.1739 6.04967 12.059C6.36198 11.9893 6.65955 11.8642 6.92833 11.6902C6.84664 12.1241 6.62955 12.521 6.30417 12.8241C6.17764 12.942 6.17064 13.1401 6.28851 13.2666C6.35017 13.3328 6.43379 13.3663 6.51764 13.3663C6.59408 13.3663 6.67067 13.3385 6.73098 13.2823C7.22067 12.8261 7.52242 12.207 7.58058 11.5397C7.59164 11.4153 7.5933 11.2898 7.58695 11.1649L9.37662 9.66324C9.45724 9.59561 9.49849 9.49199 9.4864 9.38746C9.47431 9.28299 9.41049 9.19152 9.31659 9.14405ZM3.19672 13.7147C2.87482 13.9848 2.39322 13.9426 2.12309 13.6207C1.9925 13.4651 1.93034 13.2675 1.94809 13.0643C1.96581 12.8612 2.06125 12.6774 2.21681 12.5469L3.60085 11.3855C4.01729 11.7803 4.54413 12.0302 5.11829 12.1023L3.19672 13.7147ZM6.79633 11.011C6.50998 11.2512 6.16492 11.41 5.79839 11.4702C5.79548 11.4707 5.4486 11.5047 5.27782 11.4896C4.82979 11.4506 4.41576 11.2721 4.08476 10.9795L4.39466 10.7195C4.39466 10.7195 4.39473 10.7194 4.39479 10.7194C4.68113 10.4792 5.09492 10.4809 5.37867 10.7234C5.42826 10.7658 5.48985 10.7916 5.55482 10.7973C5.89795 10.8274 6.22654 10.5862 6.35173 10.4812L8.15308 8.96967L8.20614 9.16758C8.22921 9.25364 8.28783 9.32577 8.36736 9.36596L8.61043 9.4888L6.79633 11.011Z" fill="currentColor"/>
|
4
|
+
<path d="M15.6361 1.51653C14.8899 0.224213 13.2315 -0.220257 11.939 0.525964L9.47701 1.94741C8.85075 2.30897 8.40297 2.89263 8.21625 3.59038C8.18378 3.71097 8.16038 3.83422 8.14494 3.95829L6.12168 5.12642C6.02993 5.17942 5.97115 5.2752 5.96556 5.38101C5.95996 5.48682 6.00828 5.58832 6.09393 5.65067L6.58003 6.00457L6.62503 6.56395C6.63365 6.67098 6.69653 6.76614 6.79156 6.81605C6.83718 6.84001 6.88715 6.85195 6.93709 6.85195C6.99122 6.85195 7.04528 6.83792 7.09362 6.81001L8.65894 5.90629C9.0211 6.39514 9.53338 6.74567 10.1299 6.90555C10.3631 6.96805 10.5997 6.99895 10.8349 6.99895C11.3038 6.99895 11.7666 6.87598 12.1835 6.6353L14.6456 5.21385C15.2713 4.85254 15.7192 4.26888 15.9067 3.57029C16.0937 2.87219 15.9976 2.14281 15.6361 1.51653ZM7.19269 5.81104C7.18537 5.72004 7.13869 5.63676 7.06487 5.58304L6.85184 5.42792L8.597 4.42035C8.59885 4.41929 8.60072 4.41826 8.60253 4.41716L8.89678 4.24729C9.2205 4.06038 9.58872 3.96379 9.95929 3.96844C9.96238 3.96851 9.96544 3.96844 9.96854 3.96841C10.1397 3.97122 10.31 3.99513 10.4754 4.03966C10.9098 4.15591 11.2865 4.40363 11.5617 4.7492L11.2114 4.95148C11.2112 4.95157 11.211 4.95166 11.2108 4.95179C10.8873 5.13823 10.4803 5.06476 10.2429 4.7767C10.2014 4.72638 10.1453 4.69026 10.0823 4.67338C9.74926 4.58423 9.38413 4.7646 9.2426 4.84632L8.601 5.21673C8.601 5.21673 8.60097 5.21673 8.60094 5.21676C8.60091 5.21679 8.60091 5.21679 8.60088 5.21679L7.20943 6.02014L7.19269 5.81104ZM10.7389 3.464L12.9112 2.20978C13.0871 2.10822 13.2924 2.08128 13.4894 2.13409C13.6863 2.18684 13.8506 2.31278 13.9522 2.48872C14.0538 2.66469 14.0807 2.87006 14.028 3.06707C13.9752 3.26407 13.8493 3.42844 13.6735 3.52997L12.1088 4.43335C11.7672 3.97222 11.2918 3.63472 10.7389 3.464ZM15.3019 3.4081C15.1578 3.94513 14.8135 4.39382 14.3325 4.67154L11.8704 6.09298C11.3893 6.37076 10.8287 6.44448 10.2919 6.30067C9.85735 6.1842 9.48063 5.93629 9.20544 5.59076L9.55572 5.38854C9.67522 5.31957 9.78276 5.28648 9.85307 5.27751C10.2937 5.71632 10.9752 5.81082 11.5244 5.4937L13.9865 4.07222C14.3073 3.88707 14.5368 3.58757 14.6328 3.22897C14.7288 2.87044 14.6797 2.49635 14.4945 2.17559C14.3093 1.85481 14.0099 1.62528 13.6514 1.52922C13.2929 1.43309 12.9188 1.48222 12.5981 1.66744L10.136 3.08891C10.0151 3.15875 9.90729 3.24444 9.81413 3.34472C9.49432 3.35913 9.17935 3.43079 8.88425 3.5555C9.05291 3.10647 9.369 2.73272 9.7901 2.48963L12.2521 1.06818C13.2455 0.494683 14.5202 0.836246 15.0938 1.82956C15.3717 2.31106 15.4456 2.87169 15.3019 3.4081Z" fill="currentColor"/>
|
5
|
+
<path d="M3.05852 5.17202C3.11918 5.22993 3.19699 5.25868 3.27471 5.25868C3.35724 5.25868 3.43968 5.22624 3.50118 5.1618C3.62062 5.03674 3.61602 4.83855 3.49096 4.71915L2.8803 4.13605C2.75521 4.01664 2.55708 4.02114 2.43765 4.14627C2.31821 4.27133 2.3228 4.46952 2.44786 4.58893L3.05852 5.17202Z" fill="currentColor"/>
|
6
|
+
<path d="M1.65559 7.13491L2.38232 7.42919C2.42085 7.44478 2.46063 7.45219 2.49975 7.45219C2.6235 7.45219 2.74075 7.37828 2.79004 7.25653C2.85494 7.09625 2.77763 6.91369 2.61738 6.84881L1.89066 6.55453C1.73028 6.48963 1.54781 6.56694 1.48294 6.72719C1.41803 6.88747 1.49534 7.07003 1.65559 7.13491Z" fill="currentColor"/>
|
7
|
+
<path d="M5.05995 3.89848C5.11983 3.99135 5.22055 4.04198 5.32342 4.04198C5.38149 4.04198 5.4403 4.02582 5.49274 3.99201C5.63805 3.89832 5.67995 3.70457 5.58627 3.55923L5.16152 2.90023C5.06786 2.75491 4.87417 2.71297 4.72873 2.80669C4.58342 2.90038 4.54151 3.09413 4.6352 3.23948L5.05995 3.89848Z" fill="currentColor"/>
|
8
|
+
<path d="M12.6246 10.0189C12.4995 9.89945 12.3014 9.90398 12.182 10.0291C12.0625 10.1541 12.0671 10.3523 12.1922 10.4717L12.8028 11.0548C12.8635 11.1127 12.9413 11.1415 13.019 11.1415C13.1016 11.1415 13.184 11.109 13.2455 11.0446C13.3649 10.9195 13.3603 10.7214 13.2353 10.6019L12.6246 10.0189Z" fill="currentColor"/>
|
9
|
+
<path d="M14.0276 8.05591L13.3009 7.76162C13.1405 7.69672 12.9581 7.77403 12.8932 7.93428C12.8283 8.09456 12.9055 8.27709 13.0658 8.342L13.7925 8.63628C13.831 8.65188 13.8708 8.65928 13.9099 8.65928C14.0337 8.65928 14.1509 8.58538 14.2002 8.46363C14.2651 8.30334 14.1879 8.12081 14.0276 8.05591Z" fill="currentColor"/>
|
10
|
+
<path d="M10.6232 11.2924C10.5296 11.147 10.3358 11.105 10.1905 11.1988C10.0451 11.2925 10.0032 11.4862 10.0969 11.6315L10.5217 12.2906C10.5815 12.3835 10.6822 12.4341 10.7851 12.4341C10.8432 12.4341 10.902 12.418 10.9544 12.3841C11.0997 12.2905 11.1417 12.0967 11.048 11.9514L10.6232 11.2924Z" fill="currentColor"/>
|
11
|
+
</svg>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M14.3333 15.3334H11C10.0667 15.3334 9.33333 14.6 9.33333 13.6667V10.3334C9.33333 9.40002 10.0667 8.66669 11 8.66669H14.3333C15.2667 8.66669 16 9.40002 16 10.3334V13.6667C16 14.6 15.2667 15.3334 14.3333 15.3334ZM11 10C10.8 10 10.6667 10.1334 10.6667 10.3334V13.6667C10.6667 13.8667 10.8 14 11 14H14.3333C14.5333 14 14.6667 13.8667 14.6667 13.6667V10.3334C14.6667 10.1334 14.5333 10 14.3333 10H11Z" fill="currentColor"/>
|
3
|
+
<path d="M5 15.3334H1.66667C0.733333 15.3334 0 14.6 0 13.6667V10.3334C0 9.40002 0.733333 8.66669 1.66667 8.66669H5C5.93333 8.66669 6.66667 9.40002 6.66667 10.3334V13.6667C6.66667 14.6 5.93333 15.3334 5 15.3334Z" fill="currentColor"/>
|
4
|
+
<path d="M12.6667 7.33335C12.4667 7.33335 12.3333 7.26669 12.2 7.13335L10.8667 5.80002C10.6 5.53335 10.6 5.13335 10.8667 4.86669C11.1333 4.60002 11.5333 4.60002 11.8 4.86669L11.8667 4.93335C11.4 3.20002 9.80001 2.00002 8.00001 2.00002C5.80001 2.00002 4.00001 3.80002 4.00001 6.00002C4.00001 6.40002 3.73334 6.66669 3.33334 6.66669C2.93334 6.66669 2.66667 6.40002 2.66667 6.00002C2.66667 3.06669 5.06667 0.666687 8.00001 0.666687C10.6667 0.666687 12.8667 2.60002 13.2667 5.13335L13.5333 4.86669C13.8 4.60002 14.2 4.60002 14.4667 4.86669C14.7333 5.13335 14.7333 5.53335 14.4667 5.80002L13.1333 7.13335C13 7.26669 12.8667 7.33335 12.6667 7.33335Z" fill="currentColor"/>
|
5
|
+
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M14 7C14 10.866 10.866 14 7 14C3.13401 14 0 10.866 0 7C0 3.13401 3.13401 0 7 0C10.866 0 14 3.13401 14 7ZM1.75 7C1.75 9.8995 4.1005 12.25 7 12.25C9.8995 12.25 12.25 9.8995 12.25 7C12.25 4.1005 9.8995 1.75 7 1.75C4.1005 1.75 1.75 4.1005 1.75 7Z" fill="currentColor"/>
|
3
|
+
<path d="M1 7C1 6.44772 1.44772 6 2 6H12C12.5523 6 13 6.44772 13 7C13 7.55228 12.5523 8 12 8H2C1.44772 8 1 7.55228 1 7Z" fill="currentColor"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.470588 15.5294V15.0588H0V16H0.941176V15.5294H0.470588ZM0.941176 8.23529V7.76471H1.41176V8.23529H0.941176ZM1.88235 7.76471V8.23529H2.35294V7.76471H1.88235ZM3.05882 8.23529V7.76471H3.52941V8.23529H3.05882ZM4.23529 7.76471V8.23529H4.70588V7.76471H4.23529ZM8.94118 8.23529V7.76471H9.41177V8.23529H8.94118ZM10.1176 7.76471V8.23529H10.5882V7.76471H10.1176ZM11.2941 8.23529V7.76471H11.7647V8.23529H11.2941ZM13.6471 8.23529V7.76471H14.1176V8.23529H13.6471ZM14.5882 7.76471V8.23529H15.0588V7.76471H14.5882ZM12.4706 8.23529V7.76471H12.9412V8.23529H12.4706ZM6.58824 8.23529V7.76471H7.05882V8.23529H6.58824ZM5.41176 7.76471V8.23529H5.88235V7.76471H5.41176ZM7.76471 7.76471V8.23529H8.23529V7.76471H7.76471ZM7.76471 11.7647V11.2941H8.23529V11.7647H7.76471ZM7.76471 13.6471V14.1176H8.23529V13.6471H7.76471ZM7.76471 15.0588V14.5882H8.23529V15.0588H7.76471ZM7.76471 12.4706V12.9412H8.23529V12.4706H7.76471ZM7.76471 10.5882V10.1176H8.23529V10.5882H7.76471ZM7.76471 8.94118V9.41176H8.23529V8.94118H7.76471ZM7.76471 4.70588V4.23529H8.23529V4.70588H7.76471ZM7.76471 6.58823V7.05882H8.23529V6.58823H7.76471ZM7.76471 5.88235V5.41176H8.23529V5.88235H7.76471ZM7.76471 3.05882V3.52941H8.23529V3.05882H7.76471ZM7.76471 2.35294V1.88235H8.23529V2.35294H7.76471ZM7.76471 0.941176V1.41177H8.23529V0.941176H7.76471ZM15.5294 15.0588V15.5294H15.0588V16H16V15.0588H15.5294ZM0 4.70588V4.23529H0.470588V4.70588H0ZM15.5294 4.23534V4.70593H16V4.23534H15.5294ZM0 2.35294V1.88235H0.470588V2.35294H0ZM15.5294 1.88232V2.35291H16V1.88232H15.5294ZM0 3.52941V3.05882H0.470588V3.52941H0ZM15.5294 3.05883V3.52942H16V3.05883H15.5294ZM0 5.88235V5.41176H0.470588V5.88235H0ZM15.5294 5.41174V5.88232H16V5.41174H15.5294ZM0 7.05882V6.58823H0.470588V7.05882H0ZM15.5294 6.58825V7.05884H16V6.58825H15.5294ZM0 11.7647V11.2941H0.470588V11.7647H0ZM15.5294 11.2941V11.7646H16V11.2941H15.5294ZM0 9.41176V8.94118H0.470588V9.41176H0ZM15.5294 8.94115V9.41174H16V8.94115H15.5294ZM0 10.5882V10.1176H0.470588V10.5882H0ZM15.5294 10.1177V10.5883H16V10.1177H15.5294ZM0 12.9412V12.4706H0.470588V12.9412H0ZM15.5294 12.4706V12.9412H16V12.4706H15.5294ZM0 14.1176V13.6471H0.470588V14.1176H0ZM15.5294 13.6471V14.1177H16V13.6471H15.5294ZM0 8.23529V7.76471H0.470588V8.23529H0ZM15.5294 7.76476V8.23535H16V7.76476H15.5294ZM11.2941 0.470589V0H11.7647V0.470589H11.2941ZM13.6471 0V0.470589H14.1176V0H13.6471ZM12.4706 0.470589V0H12.9412V0.470589H12.4706ZM10.1176 0V0.470589H10.5882V0H10.1176ZM8.94118 0.470589V0H9.41177V0.470589H8.94118ZM4.23529 0V0.470589H4.70588V0H4.23529ZM6.58824 0.470589V0H7.05882V0.470589H6.58824ZM5.41176 0V0.470589H5.88235V0H5.41176ZM3.05882 0.470589V0H3.52941V0.470589H3.05882ZM1.88235 0V0.470589H2.35294V0H1.88235ZM7.76471 0.470589V0H8.23529V0.470589H7.76471ZM11.2941 15.5294V16H11.7647V15.5294H11.2941ZM13.6471 16V15.5294H14.1176V16H13.6471ZM12.4706 15.5294V16H12.9412V15.5294H12.4706ZM10.1176 16V15.5294H10.5882V16H10.1176ZM8.94118 15.5294V16H9.41177V15.5294H8.94118ZM4.23529 16V15.5294H4.70588V16H4.23529ZM6.58824 15.5294V16H7.05882V15.5294H6.58824ZM5.41176 16V15.5294H5.88235V16H5.41176ZM3.05882 15.5294V16H3.52941V15.5294H3.05882ZM1.88235 16V15.5294H2.35294V16H1.88235ZM7.76471 15.5294V16H8.23529V15.5294H7.76471ZM0 0.941176H0.470588V0.470588H0.941176V0H0V0.941176ZM15.5294 0.941162H16V-1.52588e-05H15.0588V0.470573H15.5294V0.941162Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M6.58881 6.00047H13.9846V7.99607H10.0733C10.3988 8.20068 10.6794 8.38777 10.8762 8.54174C11.3946 8.94907 11.8 9.43237 12.0904 9.99167C12.3788 10.5529 12.525 11.1376 12.525 11.7476C12.525 12.8896 12.0748 13.8855 11.1744 14.7313C10.276 15.5771 9.11839 16 7.70354 16C7.267 16 6.84798 15.9668 6.44849 15.8986C6.22436 15.8694 5.73911 15.733 4.99856 15.4933C4.25604 15.2516 3.79222 15.1308 3.6032 15.1308C3.42973 15.1308 3.27969 15.1873 3.153 15.3004C3.0458 15.4134 2.96784 15.6472 2.91524 16H1.99929V10.7498H2.91524C3.01268 11.2915 3.12572 11.769 3.25434 12.1841C3.38103 12.5972 3.53304 12.9441 3.70453 13.2228C4.03584 13.7724 4.5406 14.2265 5.21879 14.5831C5.89699 14.9417 6.64534 15.1191 7.46581 15.1191C8.39152 15.1191 9.13208 14.8696 9.68555 14.3687C10.2371 13.8698 10.5138 13.2852 10.5138 12.6148C10.5138 12.2465 10.4125 11.8703 10.2098 11.4864C10.0071 11.1025 9.68361 10.742 9.23925 10.4029C8.96055 10.1924 8.15763 9.71491 6.83242 8.97046C6.2088 8.6177 5.65923 8.29226 5.18175 7.99604H0.0153809V6.00044H2.94253C2.89186 5.92052 2.82363 5.84646 2.77882 5.76461C2.49429 5.23843 2.35008 4.65961 2.35008 4.02819C2.35008 2.93684 2.77103 1.99361 3.61489 1.19652C4.45872 0.397562 5.53057 0 6.83239 0C7.66066 0 8.52398 0.196848 9.41851 0.590512C9.60756 0.672362 9.78296 0.738623 9.94469 0.791257C10.1065 0.843891 10.2292 0.86921 10.3111 0.86921C10.5001 0.86921 10.658 0.812678 10.7866 0.701611C10.9133 0.590512 11.0146 0.356652 11.0906 3.11809e-05H12.0066V5.28333H11.0906C11.0224 4.78053 10.9288 4.3284 10.808 3.92694C10.6872 3.52548 10.5371 3.1708 10.3559 2.86288C10.0168 2.27044 9.52178 1.79492 8.87087 1.43827C8.21996 1.08162 7.54956 0.902325 6.85578 0.902325C6.07235 0.902325 5.42534 1.14205 4.91474 1.61949C4.40218 2.09697 4.14494 2.64068 4.14494 3.25068C4.14494 3.70867 4.30671 4.13352 4.63215 4.52522C4.94982 4.91692 5.61439 5.41385 6.58881 6.00047Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2 1.6H0.8C0.587827 1.6 0.384344 1.51571 0.234314 1.36569C0.0842854 1.21566 0 1.01217 0 0.8C0 0.587827 0.0842854 0.384344 0.234314 0.234315C0.384344 0.0842854 0.587827 0 0.8 0H15.2C15.4122 0 15.6157 0.0842854 15.7657 0.234315C15.9157 0.384344 16 0.587827 16 0.8C16 1.01217 15.9157 1.21566 15.7657 1.36569C15.6157 1.51571 15.4122 1.6 15.2 1.6ZM12.8 6.4H3.2C2.98783 6.4 2.78434 6.31571 2.63431 6.16568C2.48428 6.01566 2.4 5.81217 2.4 5.6C2.4 5.38783 2.48428 5.18434 2.63431 5.03431C2.78434 4.88428 2.98783 4.8 3.2 4.8H12.8C13.0122 4.8 13.2157 4.88428 13.3657 5.03431C13.5157 5.18434 13.6 5.38783 13.6 5.6C13.6 5.81217 13.5157 6.01566 13.3657 6.16568C13.2157 6.31571 13.0122 6.4 12.8 6.4ZM0.8 11.2H15.2C15.4122 11.2 15.6157 11.1157 15.7657 10.9657C15.9157 10.8157 16 10.6122 16 10.4C16 10.1878 15.9157 9.98434 15.7657 9.83431C15.6157 9.68428 15.4122 9.6 15.2 9.6H0.8C0.587827 9.6 0.384344 9.68428 0.234314 9.83431C0.0842854 9.98434 0 10.1878 0 10.4C0 10.6122 0.0842854 10.8157 0.234314 10.9657C0.384344 11.1157 0.587827 11.2 0.8 11.2ZM12.8 16H3.2C2.98783 16 2.78434 15.9157 2.63431 15.7657C2.48428 15.6157 2.4 15.4122 2.4 15.2C2.4 14.9878 2.48428 14.7843 2.63431 14.6343C2.78434 14.4843 2.98783 14.4 3.2 14.4H12.8C13.0122 14.4 13.2157 14.4843 13.3657 14.6343C13.5157 14.7843 13.6 14.9878 13.6 15.2C13.6 15.4122 13.5157 15.6157 13.3657 15.7657C13.2157 15.9157 13.0122 16 12.8 16Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2 1.6H0.8C0.587827 1.6 0.384344 1.51571 0.234314 1.36569C0.0842854 1.21566 0 1.01217 0 0.8C0 0.587827 0.0842854 0.384344 0.234314 0.234315C0.384344 0.0842854 0.587827 0 0.8 0H15.2C15.4122 0 15.6157 0.0842854 15.7657 0.234315C15.9157 0.384344 16 0.587827 16 0.8C16 1.01217 15.9157 1.21566 15.7657 1.36569C15.6157 1.51571 15.4122 1.6 15.2 1.6ZM10.4 6.4H0.8C0.587827 6.4 0.384344 6.31571 0.234315 6.16568C0.0842854 6.01566 0 5.81217 0 5.6C0 5.38783 0.0842854 5.18434 0.234315 5.03431C0.384344 4.88428 0.587827 4.8 0.8 4.8H10.4C10.6122 4.8 10.8157 4.88428 10.9657 5.03431C11.1157 5.18434 11.2 5.38783 11.2 5.6C11.2 5.81217 11.1157 6.01566 10.9657 6.16568C10.8157 6.31571 10.6122 6.4 10.4 6.4ZM0.8 11.2H15.2C15.4122 11.2 15.6157 11.1157 15.7657 10.9657C15.9157 10.8157 16 10.6122 16 10.4C16 10.1878 15.9157 9.98434 15.7657 9.83431C15.6157 9.68428 15.4122 9.6 15.2 9.6H0.8C0.587827 9.6 0.384344 9.68428 0.234314 9.83431C0.0842854 9.98434 0 10.1878 0 10.4C0 10.6122 0.0842854 10.8157 0.234314 10.9657C0.384344 11.1157 0.587827 11.2 0.8 11.2ZM10.4 16H0.8C0.587827 16 0.384344 15.9157 0.234315 15.7657C0.0842854 15.6157 0 15.4122 0 15.2C0 14.9878 0.0842854 14.7843 0.234315 14.6343C0.384344 14.4843 0.587827 14.4 0.8 14.4H10.4C10.6122 14.4 10.8157 14.4843 10.9657 14.6343C11.1157 14.7843 11.2 14.9878 11.2 15.2C11.2 15.4122 11.1157 15.6157 10.9657 15.7657C10.8157 15.9157 10.6122 16 10.4 16Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.800003 1.6H15.2C15.4122 1.6 15.6157 1.51571 15.7657 1.36569C15.9157 1.21566 16 1.01217 16 0.8C16 0.587827 15.9157 0.384344 15.7657 0.234315C15.6157 0.0842854 15.4122 0 15.2 0H0.800003C0.58783 0 0.384346 0.0842854 0.234317 0.234315C0.0842886 0.384344 3.8147e-06 0.587827 3.8147e-06 0.8C3.8147e-06 1.01217 0.0842886 1.21566 0.234317 1.36569C0.384346 1.51571 0.58783 1.6 0.800003 1.6ZM5.6 6.4H15.2C15.4122 6.4 15.6157 6.31571 15.7657 6.16568C15.9157 6.01566 16 5.81217 16 5.6C16 5.38783 15.9157 5.18434 15.7657 5.03431C15.6157 4.88428 15.4122 4.8 15.2 4.8H5.6C5.38783 4.8 5.18435 4.88428 5.03432 5.03431C4.88429 5.18434 4.8 5.38783 4.8 5.6C4.8 5.81217 4.88429 6.01566 5.03432 6.16568C5.18435 6.31571 5.38783 6.4 5.6 6.4ZM15.2 11.2H0.800003C0.58783 11.2 0.384346 11.1157 0.234317 10.9657C0.0842886 10.8157 3.8147e-06 10.6122 3.8147e-06 10.4C3.8147e-06 10.1878 0.0842886 9.98434 0.234317 9.83431C0.384346 9.68428 0.58783 9.6 0.800003 9.6H15.2C15.4122 9.6 15.6157 9.68428 15.7657 9.83431C15.9157 9.98434 16 10.1878 16 10.4C16 10.6122 15.9157 10.8157 15.7657 10.9657C15.6157 11.1157 15.4122 11.2 15.2 11.2ZM5.6 16H15.2C15.4122 16 15.6157 15.9157 15.7657 15.7657C15.9157 15.6157 16 15.4122 16 15.2C16 14.9878 15.9157 14.7843 15.7657 14.6343C15.6157 14.4843 15.4122 14.4 15.2 14.4H5.6C5.38783 14.4 5.18435 14.4843 5.03432 14.6343C4.88429 14.7843 4.8 14.9878 4.8 15.2C4.8 15.4122 4.88429 15.6157 5.03432 15.7657C5.18435 15.9157 5.38783 16 5.6 16Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M6.47068 1.95133e-08H5.52951C5.1521 1.95133e-08 4.81045 0.225883 4.66268 0.573177L0.113037 11.2941H2.15821L3.35633 8.47059H8.63068L9.8241 11.2941H11.8674L7.33751 0.574118C7.26541 0.403859 7.14475 0.258607 6.99059 0.156499C6.83643 0.0543998 6.65563 -3.76275e-05 6.47068 1.95133e-08ZM4.15539 6.58824L5.99915 2.24376L7.83539 6.58824H4.15539Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M7.00008 12.4445C9.94675 12.4445 12.3334 10.0578 12.3334 7.11113V0H10.1112V7.11113C10.1112 8.83113 8.72008 10.2222 7.00008 10.2222C5.28008 10.2222 3.88896 8.83113 3.88896 7.11113V0H1.66675V7.11113C1.66675 10.0578 4.05341 12.4445 7.00008 12.4445Z" fill="currentColor"/>
|
3
|
+
<path d="M13.2223 14.2222H0.777832V16H13.2223V14.2222Z" fill="currentColor"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M14.911 7.18924C14.786 7.01815 11.806 3 7.99994 3C4.19392 3 1.21377 7.01815 1.08884 7.18907C0.970387 7.35139 0.970387 7.57153 1.08884 7.73385C1.21377 7.90494 4.19392 11.9231 7.99994 11.9231C11.806 11.9231 14.786 7.90491 14.911 7.73398C15.0297 7.5717 15.0297 7.35139 14.911 7.18924ZM7.99994 11C5.1964 11 2.76824 8.33309 2.04946 7.46123C2.76731 6.5886 5.19039 3.92307 7.99994 3.92307C10.8033 3.92307 13.2313 6.58953 13.9504 7.46186C13.2326 8.33445 10.8095 11 7.99994 11Z" fill="currentColor"/>
|
3
|
+
<path d="M7.99996 4.69238C6.47302 4.69238 5.23071 5.9347 5.23071 7.46163C5.23071 8.98856 6.47302 10.2309 7.99996 10.2309C9.52689 10.2309 10.7692 8.98856 10.7692 7.46163C10.7692 5.9347 9.52689 4.69238 7.99996 4.69238ZM7.99996 9.30778C6.98195 9.30778 6.15381 8.47961 6.15381 7.46163C6.15381 6.44365 6.98198 5.61548 7.99996 5.61548C9.01794 5.61548 9.84611 6.44365 9.84611 7.46163C9.84611 8.47961 9.01797 9.30778 7.99996 9.30778Z" fill="currentColor"/>
|
4
|
+
</svg>
|
@@ -5,9 +5,12 @@
|
|
5
5
|
padding-left: 8px;
|
6
6
|
border-top-left-radius: 8px;
|
7
7
|
border-top-right-radius: 8px;
|
8
|
-
.ff-app-header-
|
9
|
-
|
10
|
-
|
8
|
+
.ff-app-header-left-container {
|
9
|
+
display: flex;
|
10
|
+
.ff-app-header-logo-icon {
|
11
|
+
padding: 8px;
|
12
|
+
height: 24px;
|
13
|
+
}
|
11
14
|
}
|
12
15
|
.ff-app-header-nav-bar {
|
13
16
|
display: flex;
|
@@ -28,7 +31,7 @@
|
|
28
31
|
position: relative;
|
29
32
|
&:not(.ff-app-header-nav-bar-item--selected):hover::after {
|
30
33
|
animation: oscillate-border-width 0.5s ease-in-out forwards;
|
31
|
-
}
|
34
|
+
}
|
32
35
|
&::after {
|
33
36
|
content: '';
|
34
37
|
position: absolute;
|
@@ -38,9 +41,9 @@
|
|
38
41
|
height: 2px;
|
39
42
|
background: var(--ff-app-header-menu-border-bottom-color);
|
40
43
|
border-radius: 4px;
|
41
|
-
transition: width 0.15s
|
44
|
+
transition: width 0.15s ease-in-out;
|
42
45
|
}
|
43
|
-
|
46
|
+
|
44
47
|
&--selected {
|
45
48
|
padding: 3px 6px 3px 3px;
|
46
49
|
background-color: var(--primary-icon-color);
|
@@ -67,12 +70,12 @@
|
|
67
70
|
left: 25%;
|
68
71
|
width: 0%;
|
69
72
|
height: 2px;
|
70
|
-
background:var(--ff-app-header-submenu-border-bottom-color);
|
73
|
+
background: var(--ff-app-header-submenu-border-bottom-color);
|
71
74
|
border-radius: 4px;
|
72
75
|
transition: width 0.15s ease-in-out;
|
73
76
|
}
|
74
77
|
padding-left: 8px;
|
75
|
-
&--selected{
|
78
|
+
&--selected {
|
76
79
|
color: var(--ff-header-submenu-highlight-text-color);
|
77
80
|
&::after {
|
78
81
|
content: '';
|
@@ -103,9 +106,11 @@
|
|
103
106
|
}
|
104
107
|
}
|
105
108
|
}
|
109
|
+
.ff-app-header-left-content,
|
106
110
|
.ff-app-header-right-content {
|
107
111
|
height: 24px;
|
108
112
|
padding: 8px;
|
113
|
+
align-content: center;
|
109
114
|
}
|
110
115
|
}
|
111
116
|
@keyframes oscillate-border-width {
|
@@ -121,4 +126,4 @@
|
|
121
126
|
width: 50%;
|
122
127
|
left: 25%;
|
123
128
|
}
|
124
|
-
}
|
129
|
+
}
|
@@ -146,6 +146,7 @@ export const Controlled: Story = {
|
|
146
146
|
<div>
|
147
147
|
<AppHeader
|
148
148
|
logoIconName="fireflink_icon"
|
149
|
+
leftContent={headerRightSideContent}
|
149
150
|
rightContent={headerRightSideContent}
|
150
151
|
appHeaderMenuItems={headerMenuItems}
|
151
152
|
appHeaderHiddenMenuItems={headerHiddenMenuItems}
|
@@ -22,12 +22,14 @@ const AppHeader: React.FC<AppHeaderProps> = ({
|
|
22
22
|
return (
|
23
23
|
<>
|
24
24
|
<div className="ff-app-header">
|
25
|
-
<div className=
|
26
|
-
<
|
25
|
+
<div className='ff-app-header-left-container'>
|
26
|
+
<div className="ff-app-header-logo-icon">
|
27
|
+
<Icon color="" name={logoIconName} height={24} width={21} />
|
28
|
+
</div>
|
29
|
+
{leftContent && (
|
30
|
+
<div className="ff-app-header-left-content">{leftContent}</div>
|
31
|
+
)}
|
27
32
|
</div>
|
28
|
-
{leftContent && (
|
29
|
-
<div className="ff-app-header-left-content">{leftContent}</div>
|
30
|
-
)}
|
31
33
|
<div className="ff-app-header-nav-bar">
|
32
34
|
{checkEmpty(projectsList) && (
|
33
35
|
<div>{/* <AllProjectsDropdown /> */}</div>
|