@milaboratories/uikit 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +2 -0
- package/.eslintrc.json +60 -0
- package/.prettierrc +6 -0
- package/CHANGELOG.md +7 -0
- package/README.md +13 -0
- package/dist/pl-uikit.js +8762 -0
- package/dist/pl-uikit.umd.cjs +20 -0
- package/dist/src/__tests__/compositions/useValidation.spec.d.ts +1 -0
- package/dist/src/__tests__/setup.d.ts +1 -0
- package/dist/src/base/BtnBase.vue.d.ts +28 -0
- package/dist/src/components/ContextProvider.vue.d.ts +23 -0
- package/dist/src/components/DataTable/AddColumnBtn.vue.d.ts +2 -0
- package/dist/src/components/DataTable/BaseCellComponent.vue.d.ts +15 -0
- package/dist/src/components/DataTable/ColumnCaret.vue.d.ts +7 -0
- package/dist/src/components/DataTable/ColumnsCommandMenu.vue.d.ts +2 -0
- package/dist/src/components/DataTable/RowsCommandMenu.vue.d.ts +2 -0
- package/dist/src/components/DataTable/TScroll.vue.d.ts +14 -0
- package/dist/src/components/DataTable/TableComponent.vue.d.ts +14 -0
- package/dist/src/components/DataTable/TdCell.vue.d.ts +7 -0
- package/dist/src/components/DataTable/ThCell.vue.d.ts +15 -0
- package/dist/src/components/DataTable/TrBody.vue.d.ts +23 -0
- package/dist/src/components/DataTable/TrHead.vue.d.ts +16 -0
- package/dist/src/components/DataTable/adapters/AsyncData.d.ts +11 -0
- package/dist/src/components/DataTable/adapters/RawData.d.ts +12 -0
- package/dist/src/components/DataTable/assets/TableIcon.vue.d.ts +2 -0
- package/dist/src/components/DataTable/composition/useColumn.d.ts +10 -0
- package/dist/src/components/DataTable/composition/useMouseUp.d.ts +1 -0
- package/dist/src/components/DataTable/composition/useResize.d.ts +9 -0
- package/dist/src/components/DataTable/composition/useTableColumns.d.ts +6 -0
- package/dist/src/components/DataTable/composition/useTableRows.d.ts +3 -0
- package/dist/src/components/DataTable/constants.d.ts +5 -0
- package/dist/src/components/DataTable/domain.d.ts +11 -0
- package/dist/src/components/DataTable/index.d.ts +36 -0
- package/dist/src/components/DataTable/keys.d.ts +81 -0
- package/dist/src/components/DataTable/state.d.ts +78 -0
- package/dist/src/components/DataTable/types.d.ts +143 -0
- package/dist/src/components/DropdownListItem.vue.d.ts +20 -0
- package/dist/src/components/GridTable/AddColumnBtn.vue.d.ts +2 -0
- package/dist/src/components/GridTable/TRow.vue.d.ts +24 -0
- package/dist/src/components/GridTable/TdCell.vue.d.ts +33 -0
- package/dist/src/components/GridTable/ThCell.vue.d.ts +19 -0
- package/dist/src/components/GridTable/assets/TableIcon.vue.d.ts +2 -0
- package/dist/src/components/GridTable/constants.d.ts +6 -0
- package/dist/src/components/GridTable/domain.d.ts +2 -0
- package/dist/src/components/GridTable/getColumnPositions.d.ts +9 -0
- package/dist/src/components/GridTable/index.vue.d.ts +52 -0
- package/dist/src/components/GridTable/types.d.ts +56 -0
- package/dist/src/components/GridTable/useColumn.d.ts +10 -0
- package/dist/src/components/GridTable/useMouseUp.d.ts +1 -0
- package/dist/src/components/GridTable/useResize.d.ts +7 -0
- package/dist/src/components/HScroll.vue.d.ts +14 -0
- package/dist/src/components/InputRange.vue.d.ts +16 -0
- package/dist/src/components/LongText.vue.d.ts +18 -0
- package/dist/src/components/MaskIcon16.vue.d.ts +9 -0
- package/dist/src/components/MaskIcon24.vue.d.ts +9 -0
- package/dist/src/components/PlAlert/PlAlert.vue.d.ts +95 -0
- package/dist/src/components/PlAlert/index.d.ts +1 -0
- package/dist/src/components/PlBtnAccent/PlBtnAccent.vue.d.ts +64 -0
- package/dist/src/components/PlBtnAccent/index.d.ts +1 -0
- package/dist/src/components/PlBtnGhost/PlBtnGhost.vue.d.ts +68 -0
- package/dist/src/components/PlBtnGhost/index.d.ts +1 -0
- package/dist/src/components/PlBtnGroup/PlBtnGroup.vue.d.ts +51 -0
- package/dist/src/components/PlBtnGroup/index.d.ts +1 -0
- package/dist/src/components/PlBtnLink/PlBtnLink.vue.d.ts +68 -0
- package/dist/src/components/PlBtnLink/index.d.ts +1 -0
- package/dist/src/components/PlBtnPrimary/PlBtnPrimary.vue.d.ts +64 -0
- package/dist/src/components/PlBtnPrimary/__tests__/BtnPrimary.spec.d.ts +1 -0
- package/dist/src/components/PlBtnPrimary/index.d.ts +1 -0
- package/dist/src/components/PlBtnSecondary/PlBtnSecondary.vue.d.ts +64 -0
- package/dist/src/components/PlBtnSecondary/index.d.ts +1 -0
- package/dist/src/components/PlCheckbox/PlCheckbox.vue.d.ts +33 -0
- package/dist/src/components/PlCheckbox/PlCheckboxBase.vue.d.ts +13 -0
- package/dist/src/components/PlCheckbox/__tests__/PlCheckbox.spec.d.ts +1 -0
- package/dist/src/components/PlCheckbox/index.d.ts +1 -0
- package/dist/src/components/PlCheckboxGroup/PlCheckboxGroup.vue.d.ts +41 -0
- package/dist/src/components/PlCheckboxGroup/index.d.ts +1 -0
- package/dist/src/components/PlChip/PlChip.vue.d.ts +30 -0
- package/dist/src/components/PlChip/index.d.ts +1 -0
- package/dist/src/components/PlDialogModal/PlDialogModal.vue.d.ts +34 -0
- package/dist/src/components/PlDialogModal/index.d.ts +1 -0
- package/dist/src/components/PlDropdown/PlDropdown.vue.d.ts +72 -0
- package/dist/src/components/PlDropdown/__tests__/PlDropdown.spec.d.ts +1 -0
- package/dist/src/components/PlDropdown/index.d.ts +1 -0
- package/dist/src/components/PlDropdownLine/PlDropdownLine.vue.d.ts +62 -0
- package/dist/src/components/PlDropdownLine/ResizableInput.vue.d.ts +23 -0
- package/dist/src/components/PlDropdownLine/index.d.ts +1 -0
- package/dist/src/components/PlDropdownMulti/PlDropdownMulti.vue.d.ts +60 -0
- package/dist/src/components/PlDropdownMulti/__tests__/PlDropdownMulti.spec.d.ts +1 -0
- package/dist/src/components/PlDropdownMulti/index.d.ts +1 -0
- package/dist/src/components/PlFileDialog/PlFileDialog.vue.d.ts +26 -0
- package/dist/src/components/PlFileDialog/index.d.ts +1 -0
- package/dist/src/components/PlFileDialog/utils.d.ts +15 -0
- package/dist/src/components/PlFileInput/PlFileInput.vue.d.ts +123 -0
- package/dist/src/components/PlFileInput/index.d.ts +1 -0
- package/dist/src/components/PlFileInput/utils.d.ts +3 -0
- package/dist/src/components/PlNumberField/PlNumberField.vue.d.ts +43 -0
- package/dist/src/components/PlNumberField/__tests__/PlNumberField.spec.d.ts +1 -0
- package/dist/src/components/PlNumberField/index.d.ts +1 -0
- package/dist/src/components/PlProgressBar/PlProgressBar.vue.d.ts +13 -0
- package/dist/src/components/PlProgressBar/index.d.ts +1 -0
- package/dist/src/components/PlSlideModal/PlSlideModal.vue.d.ts +25 -0
- package/dist/src/components/PlSlideModal/index.d.ts +1 -0
- package/dist/src/components/PlTextArea/PlTextArea.vue.d.ts +114 -0
- package/dist/src/components/PlTextArea/__tests__/PlTextArea.spec.d.ts +1 -0
- package/dist/src/components/PlTextArea/index.d.ts +1 -0
- package/dist/src/components/PlTextField/PlTextField.vue.d.ts +70 -0
- package/dist/src/components/PlTextField/__tests__/TextField.spec.d.ts +1 -0
- package/dist/src/components/PlTextField/index.d.ts +4 -0
- package/dist/src/components/PlToggleSwitch/PlToggleSwitch.vue.d.ts +28 -0
- package/dist/src/components/PlToggleSwitch/index.d.ts +1 -0
- package/dist/src/components/PlTooltip/Beak.vue.d.ts +2 -0
- package/dist/src/components/PlTooltip/PlTooltip.vue.d.ts +72 -0
- package/dist/src/components/PlTooltip/global.d.ts +1 -0
- package/dist/src/components/PlTooltip/index.d.ts +1 -0
- package/dist/src/components/PlTooltip/useTooltipPosition.d.ts +11 -0
- package/dist/src/components/Scrollable.vue.d.ts +18 -0
- package/dist/src/components/Slider.vue.d.ts +58 -0
- package/dist/src/components/SliderRange.vue.d.ts +59 -0
- package/dist/src/components/SliderRangeTriple.vue.d.ts +61 -0
- package/dist/src/components/TabItem.vue.d.ts +14 -0
- package/dist/src/components/ThemeSwitcher.vue.d.ts +2 -0
- package/dist/src/components/TransitionSlidePanel.vue.d.ts +16 -0
- package/dist/src/components/VScroll.vue.d.ts +14 -0
- package/dist/src/components/contextMenu/Menu.vue.d.ts +11 -0
- package/dist/src/components/contextMenu/index.d.ts +2 -0
- package/dist/src/components/contextMenu/types.d.ts +4 -0
- package/dist/src/composition/useClickOutside.d.ts +4 -0
- package/dist/src/composition/useDraggable.d.ts +2 -0
- package/dist/src/composition/useEventListener.d.ts +6 -0
- package/dist/src/composition/useFilteredList.d.ts +3 -0
- package/dist/src/composition/useFormState.d.ts +5 -0
- package/dist/src/composition/useHover.d.ts +7 -0
- package/dist/src/composition/useInterval.d.ts +1 -0
- package/dist/src/composition/useLocalStorage.d.ts +2 -0
- package/dist/src/composition/useMouse.d.ts +4 -0
- package/dist/src/composition/useMouseCapture.d.ts +15 -0
- package/dist/src/composition/useNotificationPosition.d.ts +2 -0
- package/dist/src/composition/usePosition.d.ts +3 -0
- package/dist/src/composition/useQuery.d.ts +7 -0
- package/dist/src/composition/useResizeObserver.d.ts +2 -0
- package/dist/src/composition/useRipple.d.ts +2 -0
- package/dist/src/composition/useScroll.d.ts +2 -0
- package/dist/src/composition/useSliderBreakpoints.d.ts +6 -0
- package/dist/src/composition/useSortable.d.ts +9 -0
- package/dist/src/composition/useTheme.d.ts +4 -0
- package/dist/src/composition/utils.d.ts +1 -0
- package/dist/src/demo-site-data/all-css-variables.d.ts +8 -0
- package/dist/src/drafts/FileBaseInput.vue.d.ts +40 -0
- package/dist/src/global/resizeObserver.d.ts +2 -0
- package/dist/src/helpers/dom.d.ts +11 -0
- package/dist/src/helpers/functions.d.ts +5 -0
- package/dist/src/helpers/index.d.ts +1 -0
- package/dist/src/helpers/iterators.d.ts +3 -0
- package/dist/src/helpers/math.d.ts +1 -0
- package/dist/src/helpers/objects.d.ts +3 -0
- package/dist/src/helpers/utils.d.ts +25 -0
- package/dist/src/index.d.ts +278 -0
- package/dist/src/layout/PlBlockPage/PlBlockPage.vue.d.ts +13 -0
- package/dist/src/layout/PlBlockPage/index.d.ts +1 -0
- package/dist/src/layout/PlContainer/PlContainer.vue.d.ts +15 -0
- package/dist/src/layout/PlContainer/index.d.ts +1 -0
- package/dist/src/layout/PlGrid/PlGrid.vue.d.ts +15 -0
- package/dist/src/layout/PlGrid/index.d.ts +1 -0
- package/dist/src/layout/PlRow/PlRow.vue.d.ts +17 -0
- package/dist/src/layout/PlRow/index.d.ts +1 -0
- package/dist/src/layout/PlSpacer/PlSpacer.vue.d.ts +2 -0
- package/dist/src/layout/PlSpacer/index.d.ts +1 -0
- package/dist/src/types.d.ts +40 -0
- package/dist/src/utils/DoubleContour.vue.d.ts +9 -0
- package/dist/src/utils/InnerBorder.vue.d.ts +2 -0
- package/dist/src/utils/WebStopWatchElement.d.ts +6 -0
- package/dist/src/utils/useLabelNotch.d.ts +5 -0
- package/dist/src/utils/useValidation.d.ts +9 -0
- package/dist/style.css +1 -0
- package/dist/tsconfig.lib.tsbuildinfo +1 -0
- package/package.json +52 -0
- package/scripts/parse-icons.js +50 -0
- package/src/__tests__/compositions/useValidation.spec.ts +67 -0
- package/src/__tests__/setup.ts +2 -0
- package/src/assets/animations.scss +60 -0
- package/src/assets/base-btn.scss +126 -0
- package/src/assets/base.scss +166 -0
- package/src/assets/common.scss +79 -0
- package/src/assets/css-utils.scss +186 -0
- package/src/assets/dropdown-list-item.scss +65 -0
- package/src/assets/dropdown-tab-item.scss +19 -0
- package/src/assets/file-base-input.scss +39 -0
- package/src/assets/fonts/Manrope/Manrope-VariableFont_wght.ttf +0 -0
- package/src/assets/fonts/Manrope/OFL.txt +93 -0
- package/src/assets/fonts/Manrope/README.txt +69 -0
- package/src/assets/fonts/Manrope/static/Manrope-Bold.ttf +0 -0
- package/src/assets/fonts/Manrope/static/Manrope-ExtraBold.ttf +0 -0
- package/src/assets/fonts/Manrope/static/Manrope-ExtraLight.ttf +0 -0
- package/src/assets/fonts/Manrope/static/Manrope-Light.ttf +0 -0
- package/src/assets/fonts/Manrope/static/Manrope-Medium.ttf +0 -0
- package/src/assets/fonts/Manrope/static/Manrope-Regular.ttf +0 -0
- package/src/assets/fonts/Manrope/static/Manrope-SemiBold.ttf +0 -0
- package/src/assets/fonts/Spline_Sans_Mono/OFL.txt +93 -0
- package/src/assets/fonts/Spline_Sans_Mono/README.txt +73 -0
- package/src/assets/fonts/Spline_Sans_Mono/SplineSansMono-Italic-VariableFont_wght.ttf +0 -0
- package/src/assets/fonts/Spline_Sans_Mono/SplineSansMono-VariableFont_wght.ttf +0 -0
- package/src/assets/fonts/Spline_Sans_Mono/static/SplineSansMono-Bold.ttf +0 -0
- package/src/assets/fonts/Spline_Sans_Mono/static/SplineSansMono-BoldItalic.ttf +0 -0
- package/src/assets/fonts/Spline_Sans_Mono/static/SplineSansMono-Italic.ttf +0 -0
- package/src/assets/fonts/Spline_Sans_Mono/static/SplineSansMono-Light.ttf +0 -0
- package/src/assets/fonts/Spline_Sans_Mono/static/SplineSansMono-LightItalic.ttf +0 -0
- package/src/assets/fonts/Spline_Sans_Mono/static/SplineSansMono-Medium.ttf +0 -0
- package/src/assets/fonts/Spline_Sans_Mono/static/SplineSansMono-MediumItalic.ttf +0 -0
- package/src/assets/fonts/Spline_Sans_Mono/static/SplineSansMono-Regular.ttf +0 -0
- package/src/assets/fonts/Spline_Sans_Mono/static/SplineSansMono-SemiBold.ttf +0 -0
- package/src/assets/fonts/Spline_Sans_Mono/static/SplineSansMono-SemiBoldItalic.ttf +0 -0
- package/src/assets/fonts.scss +11 -0
- package/src/assets/graph-images/AreaChart.svg +22 -0
- package/src/assets/graph-images/BarChart.svg +23 -0
- package/src/assets/graph-images/BinnedDots.svg +60 -0
- package/src/assets/graph-images/BoxPlot.svg +14 -0
- package/src/assets/graph-images/BoxPlotConnectedDots.svg +31 -0
- package/src/assets/graph-images/BoxPlotJitteredDots.svg +26 -0
- package/src/assets/graph-images/BubbleChart.svg +30 -0
- package/src/assets/graph-images/CircularDendrogram.svg +74 -0
- package/src/assets/graph-images/ClusterAnalysis.svg +21 -0
- package/src/assets/graph-images/Dendrogram.svg +33 -0
- package/src/assets/graph-images/DotPlot.svg +26 -0
- package/src/assets/graph-images/Heatmap.svg +27 -0
- package/src/assets/graph-images/HeatmapDendrogram.svg +35 -0
- package/src/assets/graph-images/HeatmapHistogram.svg +37 -0
- package/src/assets/graph-images/Histogram.svg +27 -0
- package/src/assets/graph-images/LineChart.svg +43 -0
- package/src/assets/graph-images/LineChartBinnedDots.svg +27 -0
- package/src/assets/graph-images/LineChartErrorBars.svg +39 -0
- package/src/assets/graph-images/LineChartJitteredDots.svg +37 -0
- package/src/assets/graph-images/PairedPoints.svg +52 -0
- package/src/assets/graph-images/SinaPlot.svg +74 -0
- package/src/assets/graph-images/SkatterPlot.svg +38 -0
- package/src/assets/graph-images/StackedBarChart.svg +31 -0
- package/src/assets/graph-images/Trendline.svg +32 -0
- package/src/assets/graph-images/ViolinPlot.svg +10 -0
- package/src/assets/graph-images/ViolinPlotBinnedDots.svg +18 -0
- package/src/assets/graph-images/ViolinPlotJitteredDots.svg +24 -0
- package/src/assets/icons/icon-assets/16_add.svg +3 -0
- package/src/assets/icons/icon-assets/16_arrow-down.svg +3 -0
- package/src/assets/icons/icon-assets/16_arrow-left.svg +3 -0
- package/src/assets/icons/icon-assets/16_arrow-right.svg +3 -0
- package/src/assets/icons/icon-assets/16_arrow-up.svg +3 -0
- package/src/assets/icons/icon-assets/16_cell-type-num.svg +3 -0
- package/src/assets/icons/icon-assets/16_cell-type-txt.svg +4 -0
- package/src/assets/icons/icon-assets/16_checkmark.svg +3 -0
- package/src/assets/icons/icon-assets/16_chevron-down.svg +3 -0
- package/src/assets/icons/icon-assets/16_chevron-first.svg +4 -0
- package/src/assets/icons/icon-assets/16_chevron-last.svg +3 -0
- package/src/assets/icons/icon-assets/16_chevron-left.svg +3 -0
- package/src/assets/icons/icon-assets/16_chevron-right.svg +3 -0
- package/src/assets/icons/icon-assets/16_chevron-up.svg +3 -0
- package/src/assets/icons/icon-assets/16_clear.svg +10 -0
- package/src/assets/icons/icon-assets/16_clipboard-copied.svg +5 -0
- package/src/assets/icons/icon-assets/16_clipboard.svg +6 -0
- package/src/assets/icons/icon-assets/16_close.svg +3 -0
- package/src/assets/icons/icon-assets/16_comp.svg +3 -0
- package/src/assets/icons/icon-assets/16_compare.svg +4 -0
- package/src/assets/icons/icon-assets/16_copy.svg +4 -0
- package/src/assets/icons/icon-assets/16_data-dimentions.svg +11 -0
- package/src/assets/icons/icon-assets/16_delete.svg +4 -0
- package/src/assets/icons/icon-assets/16_drag-dots.svg +8 -0
- package/src/assets/icons/icon-assets/16_edit.svg +3 -0
- package/src/assets/icons/icon-assets/16_error.svg +11 -0
- package/src/assets/icons/icon-assets/16_export.svg +4 -0
- package/src/assets/icons/icon-assets/16_filter-2.svg +4 -0
- package/src/assets/icons/icon-assets/16_filter.svg +5 -0
- package/src/assets/icons/icon-assets/16_help.svg +12 -0
- package/src/assets/icons/icon-assets/16_import.svg +4 -0
- package/src/assets/icons/icon-assets/16_info.svg +5 -0
- package/src/assets/icons/icon-assets/16_link-arrow.svg +3 -0
- package/src/assets/icons/icon-assets/16_link.svg +4 -0
- package/src/assets/icons/icon-assets/16_loading.svg +4 -0
- package/src/assets/icons/icon-assets/16_lock.svg +4 -0
- package/src/assets/icons/icon-assets/16_maximize.svg +3 -0
- package/src/assets/icons/icon-assets/16_minimize.svg +3 -0
- package/src/assets/icons/icon-assets/16_minus.svg +3 -0
- package/src/assets/icons/icon-assets/16_more-horizontal.svg +5 -0
- package/src/assets/icons/icon-assets/16_open.svg +3 -0
- package/src/assets/icons/icon-assets/16_pause.svg +4 -0
- package/src/assets/icons/icon-assets/16_play.svg +3 -0
- package/src/assets/icons/icon-assets/16_required.svg +3 -0
- package/src/assets/icons/icon-assets/16_restart.svg +3 -0
- package/src/assets/icons/icon-assets/16_sort.svg +8 -0
- package/src/assets/icons/icon-assets/16_sorter.svg +9 -0
- package/src/assets/icons/icon-assets/16_stop.svg +3 -0
- package/src/assets/icons/icon-assets/16_success.svg +11 -0
- package/src/assets/icons/icon-assets/16_warning.svg +5 -0
- package/src/assets/icons/icon-assets/16_x-axis.svg +4 -0
- package/src/assets/icons/icon-assets/16_y-axis.svg +4 -0
- package/src/assets/icons/icon-assets/16_zip.svg +4 -0
- package/src/assets/icons/icon-assets/24_add-layer.svg +5 -0
- package/src/assets/icons/icon-assets/24_add.svg +3 -0
- package/src/assets/icons/icon-assets/24_annotate.svg +5 -0
- package/src/assets/icons/icon-assets/24_annotation.svg +8 -0
- package/src/assets/icons/icon-assets/24_area.svg +4 -0
- package/src/assets/icons/icon-assets/24_arrow-down.svg +3 -0
- package/src/assets/icons/icon-assets/24_arrow-left.svg +3 -0
- package/src/assets/icons/icon-assets/24_arrow-right.svg +3 -0
- package/src/assets/icons/icon-assets/24_arrow-up.svg +3 -0
- package/src/assets/icons/icon-assets/24_axes.svg +5 -0
- package/src/assets/icons/icon-assets/24_bar-error.svg +13 -0
- package/src/assets/icons/icon-assets/24_bar-trend.svg +14 -0
- package/src/assets/icons/icon-assets/24_bar.svg +13 -0
- package/src/assets/icons/icon-assets/24_bindot.svg +20 -0
- package/src/assets/icons/icon-assets/24_box-dot.svg +6 -0
- package/src/assets/icons/icon-assets/24_boxplot-1.svg +5 -0
- package/src/assets/icons/icon-assets/24_boxplot-binned.svg +5 -0
- package/src/assets/icons/icon-assets/24_boxplot-jitter.svg +15 -0
- package/src/assets/icons/icon-assets/24_boxplot-notched.svg +5 -0
- package/src/assets/icons/icon-assets/24_boxplot.svg +5 -0
- package/src/assets/icons/icon-assets/24_bubble.svg +12 -0
- package/src/assets/icons/icon-assets/24_canvas.svg +3 -0
- package/src/assets/icons/icon-assets/24_checkbox.svg +52 -0
- package/src/assets/icons/icon-assets/24_checkmark.svg +3 -0
- package/src/assets/icons/icon-assets/24_chevron-down.svg +3 -0
- package/src/assets/icons/icon-assets/24_chevron-left.svg +3 -0
- package/src/assets/icons/icon-assets/24_chevron-right.svg +3 -0
- package/src/assets/icons/icon-assets/24_chevron-sort.svg +4 -0
- package/src/assets/icons/icon-assets/24_chevron-up.svg +3 -0
- package/src/assets/icons/icon-assets/24_clipboard-copied.svg +5 -0
- package/src/assets/icons/icon-assets/24_clipboard.svg +6 -0
- package/src/assets/icons/icon-assets/24_close.svg +3 -0
- package/src/assets/icons/icon-assets/24_cloud-down.svg +4 -0
- package/src/assets/icons/icon-assets/24_cloud-offline.svg +4 -0
- package/src/assets/icons/icon-assets/24_cloud-online.svg +4 -0
- package/src/assets/icons/icon-assets/24_cloud-up.svg +4 -0
- package/src/assets/icons/icon-assets/24_code-2.svg +5 -0
- package/src/assets/icons/icon-assets/24_code.svg +5 -0
- package/src/assets/icons/icon-assets/24_color.svg +6 -0
- package/src/assets/icons/icon-assets/24_columns.svg +4 -0
- package/src/assets/icons/icon-assets/24_connected-points.svg +6 -0
- package/src/assets/icons/icon-assets/24_copy.svg +4 -0
- package/src/assets/icons/icon-assets/24_cpu.svg +3 -0
- package/src/assets/icons/icon-assets/24_cross-bars.svg +13 -0
- package/src/assets/icons/icon-assets/24_dark-mode.svg +5 -0
- package/src/assets/icons/icon-assets/24_delete.svg +6 -0
- package/src/assets/icons/icon-assets/24_dendrogram-X-1.svg +8 -0
- package/src/assets/icons/icon-assets/24_dendrogram-X.svg +4 -0
- package/src/assets/icons/icon-assets/24_dendrogram-Y-1.svg +8 -0
- package/src/assets/icons/icon-assets/24_dendrogram-Y.svg +7 -0
- package/src/assets/icons/icon-assets/24_dna.svg +5 -0
- package/src/assets/icons/icon-assets/24_download-files.svg +6 -0
- package/src/assets/icons/icon-assets/24_duplicate.svg +5 -0
- package/src/assets/icons/icon-assets/24_edit.svg +4 -0
- package/src/assets/icons/icon-assets/24_error-bar.svg +4 -0
- package/src/assets/icons/icon-assets/24_error.svg +4 -0
- package/src/assets/icons/icon-assets/24_expand-left.svg +3 -0
- package/src/assets/icons/icon-assets/24_expand-right.svg +3 -0
- package/src/assets/icons/icon-assets/24_export-2.svg +4 -0
- package/src/assets/icons/icon-assets/24_export.svg +4 -0
- package/src/assets/icons/icon-assets/24_external-link.svg +3 -0
- package/src/assets/icons/icon-assets/24_fill-color.svg +3 -0
- package/src/assets/icons/icon-assets/24_filter-on.svg +5 -0
- package/src/assets/icons/icon-assets/24_filter.svg +4 -0
- package/src/assets/icons/icon-assets/24_filters-gate.svg +11 -0
- package/src/assets/icons/icon-assets/24_fire-tips.svg +4 -0
- package/src/assets/icons/icon-assets/24_folder-parent.svg +3 -0
- package/src/assets/icons/icon-assets/24_frame-type.svg +11 -0
- package/src/assets/icons/icon-assets/24_generate.svg +8 -0
- package/src/assets/icons/icon-assets/24_graph.svg +6 -0
- package/src/assets/icons/icon-assets/24_heatmap.svg +11 -0
- package/src/assets/icons/icon-assets/24_help.svg +5 -0
- package/src/assets/icons/icon-assets/24_hide.svg +5 -0
- package/src/assets/icons/icon-assets/24_import-2.svg +4 -0
- package/src/assets/icons/icon-assets/24_import-download.svg +4 -0
- package/src/assets/icons/icon-assets/24_info-circle-outline.svg +5 -0
- package/src/assets/icons/icon-assets/24_jitter.svg +26 -0
- package/src/assets/icons/icon-assets/24_layers.svg +5 -0
- package/src/assets/icons/icon-assets/24_learn.svg +6 -0
- package/src/assets/icons/icon-assets/24_legend.svg +8 -0
- package/src/assets/icons/icon-assets/24_light-mode.svg +18 -0
- package/src/assets/icons/icon-assets/24_line-binned.svg +4 -0
- package/src/assets/icons/icon-assets/24_line-error.svg +6 -0
- package/src/assets/icons/icon-assets/24_line-jitter.svg +15 -0
- package/src/assets/icons/icon-assets/24_line.svg +10 -0
- package/src/assets/icons/icon-assets/24_linetype.svg +13 -0
- package/src/assets/icons/icon-assets/24_link.svg +4 -0
- package/src/assets/icons/icon-assets/24_loading.svg +3 -0
- package/src/assets/icons/icon-assets/24_local.svg +5 -0
- package/src/assets/icons/icon-assets/24_logout.svg +4 -0
- package/src/assets/icons/icon-assets/24_menu.svg +8 -0
- package/src/assets/icons/icon-assets/24_minus.svg +3 -0
- package/src/assets/icons/icon-assets/24_more-horizontal.svg +5 -0
- package/src/assets/icons/icon-assets/24_outlier-shape.svg +28 -0
- package/src/assets/icons/icon-assets/24_paper-clip.svg +3 -0
- package/src/assets/icons/icon-assets/24_pin.svg +3 -0
- package/src/assets/icons/icon-assets/24_position.svg +28 -0
- package/src/assets/icons/icon-assets/24_progress-2.svg +9 -0
- package/src/assets/icons/icon-assets/24_progress.svg +10 -0
- package/src/assets/icons/icon-assets/24_publications.svg +4 -0
- package/src/assets/icons/icon-assets/24_radio-btn.svg +29 -0
- package/src/assets/icons/icon-assets/24_restart.svg +3 -0
- package/src/assets/icons/icon-assets/24_reverse.svg +4 -0
- package/src/assets/icons/icon-assets/24_rotation.svg +11 -0
- package/src/assets/icons/icon-assets/24_save.svg +3 -0
- package/src/assets/icons/icon-assets/24_search.svg +4 -0
- package/src/assets/icons/icon-assets/24_server-2.svg +10 -0
- package/src/assets/icons/icon-assets/24_settings-2.svg +4 -0
- package/src/assets/icons/icon-assets/24_show.svg +4 -0
- package/src/assets/icons/icon-assets/24_sina.svg +13 -0
- package/src/assets/icons/icon-assets/24_skatterplot.svg +21 -0
- package/src/assets/icons/icon-assets/24_social-media.svg +16 -0
- package/src/assets/icons/icon-assets/24_sort.svg +4 -0
- package/src/assets/icons/icon-assets/24_stacked-bar.svg +17 -0
- package/src/assets/icons/icon-assets/24_statistics.svg +4 -0
- package/src/assets/icons/icon-assets/24_strip-plot.svg +22 -0
- package/src/assets/icons/icon-assets/24_stroke-non.svg +6 -0
- package/src/assets/icons/icon-assets/24_stroke.svg +3 -0
- package/src/assets/icons/icon-assets/24_success.svg +4 -0
- package/src/assets/icons/icon-assets/24_table-upload.svg +4 -0
- package/src/assets/icons/icon-assets/24_table.svg +4 -0
- package/src/assets/icons/icon-assets/24_template.svg +6 -0
- package/src/assets/icons/icon-assets/24_title-position.svg +15 -0
- package/src/assets/icons/icon-assets/24_upload-files.svg +6 -0
- package/src/assets/icons/icon-assets/24_venn.svg +11 -0
- package/src/assets/icons/icon-assets/24_violin-binned.svg +5 -0
- package/src/assets/icons/icon-assets/24_violin-jitter.svg +4 -0
- package/src/assets/icons/icon-assets/24_violin.svg +5 -0
- package/src/assets/icons/icon-assets/24_warning.svg +5 -0
- package/src/assets/icons/icon-assets/24_wetlab.svg +5 -0
- package/src/assets/icons/icon-assets/24_zoom-in.svg +5 -0
- package/src/assets/icons/icon-assets-min/16_add.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_arrow-down.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_arrow-left.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_arrow-right.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_arrow-up.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_cell-type-num.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_cell-type-txt.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_checkmark.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_chevron-down.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_chevron-first.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_chevron-last.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_chevron-left.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_chevron-right.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_chevron-up.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_clear.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_clipboard-copied.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_clipboard.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_close.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_comp.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_compare.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_copy.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_data-dimentions.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_delete.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_drag-dots.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_edit.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_error.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_export.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_filter-2.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_filter.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_help.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_import.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_info.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_link-arrow.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_link.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_loading.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_lock.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_maximize.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_minimize.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_minus.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_more-horizontal.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_open.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_pause.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_play.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_required.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_restart.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_sort.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_sorter.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_stop.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_success.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_warning.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_x-axis.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_y-axis.svg +1 -0
- package/src/assets/icons/icon-assets-min/16_zip.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_add-layer.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_add.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_annotate.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_annotation.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_area.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_arrow-down.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_arrow-left.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_arrow-right.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_arrow-up.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_axes.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_bar-error.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_bar-trend.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_bar.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_bindot.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_box-dot.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_boxplot-1.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_boxplot-binned.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_boxplot-jitter.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_boxplot-notched.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_boxplot.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_bubble.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_canvas.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_checkbox.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_checkmark.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_chevron-down.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_chevron-left.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_chevron-right.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_chevron-sort.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_chevron-up.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_clipboard-copied.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_clipboard.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_close.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_cloud-down.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_cloud-offline.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_cloud-online.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_cloud-up.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_code-2.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_code.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_color.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_columns.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_connected-points.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_copy.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_cpu.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_cross-bars.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_dark-mode.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_delete.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_dendrogram-X-1.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_dendrogram-X.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_dendrogram-Y-1.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_dendrogram-Y.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_dna.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_download-files.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_duplicate.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_edit.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_error-bar.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_error.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_expand-left.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_expand-right.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_export-2.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_export.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_external-link.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_fill-color.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_filter-on.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_filter.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_filters-gate.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_fire-tips.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_folder-parent.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_frame-type.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_generate.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_graph.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_heatmap.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_help.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_hide.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_import-2.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_import-download.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_info-circle-outline.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_jitter.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_layers.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_learn.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_legend.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_light-mode.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_line-binned.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_line-error.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_line-jitter.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_line.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_linetype.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_link.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_loading.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_local.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_logout.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_menu.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_minus.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_more-horizontal.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_outlier-shape.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_paper-clip.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_pin.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_position.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_progress-2.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_progress.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_publications.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_radio-btn.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_restart.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_reverse.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_rotation.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_save.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_search.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_server-2.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_settings-2.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_show.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_sina.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_skatterplot.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_social-media.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_sort.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_stacked-bar.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_statistics.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_strip-plot.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_stroke-non.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_stroke.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_success.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_table-upload.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_table.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_template.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_title-position.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_upload-files.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_venn.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_violin-binned.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_violin-jitter.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_violin.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_warning.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_wetlab.svg +1 -0
- package/src/assets/icons/icon-assets-min/24_zoom-in.svg +1 -0
- package/src/assets/icons/icons-16-generated.json +55 -0
- package/src/assets/icons/icons-16-generated.scss +55 -0
- package/src/assets/icons/icons-24-generated.json +133 -0
- package/src/assets/icons/icons-24-generated.scss +133 -0
- package/src/assets/icons/icons-set.scss +54 -0
- package/src/assets/icons.scss +99 -0
- package/src/assets/images/16_add.svg +3 -0
- package/src/assets/images/16_attention.svg +4 -0
- package/src/assets/images/16_checkmark-dark.svg +3 -0
- package/src/assets/images/16_checkmark.svg +3 -0
- package/src/assets/images/16_chevron-down.svg +3 -0
- package/src/assets/images/16_chevron-left.svg +3 -0
- package/src/assets/images/16_chevron-right.svg +3 -0
- package/src/assets/images/16_chevron-up.svg +3 -0
- package/src/assets/images/16_clear.svg +10 -0
- package/src/assets/images/16_clipboard.svg +3 -0
- package/src/assets/images/16_close.svg +3 -0
- package/src/assets/images/16_compare.svg +3 -0
- package/src/assets/images/16_down.svg +3 -0
- package/src/assets/images/16_import.svg +3 -0
- package/src/assets/images/16_info-dark.svg +5 -0
- package/src/assets/images/16_info.svg +11 -0
- package/src/assets/images/16_link.svg +11 -0
- package/src/assets/images/16_loading.svg +3 -0
- package/src/assets/images/16_maximise.svg +3 -0
- package/src/assets/images/16_play.svg +3 -0
- package/src/assets/images/16_up.svg +3 -0
- package/src/assets/images/24_arrow-right.svg +3 -0
- package/src/assets/images/24_checkbox-base-dark.svg +3 -0
- package/src/assets/images/24_checkbox-base.svg +3 -0
- package/src/assets/images/24_checkbox-checked-dark.svg +4 -0
- package/src/assets/images/24_checkbox-checked.svg +4 -0
- package/src/assets/images/24_checkbox-disabled-checked.svg +6 -0
- package/src/assets/images/24_checkbox-disabled-dark.svg +3 -0
- package/src/assets/images/24_checkbox-disabled.svg +4 -0
- package/src/assets/images/24_clips.svg +11 -0
- package/src/assets/images/24_close.svg +3 -0
- package/src/assets/images/24_code.svg +3 -0
- package/src/assets/images/24_columns.svg +4 -0
- package/src/assets/images/24_dark-mode.svg +5 -0
- package/src/assets/images/24_filters.svg +4 -0
- package/src/assets/images/24_light-mode.svg +18 -0
- package/src/assets/images/24_local.svg +4 -0
- package/src/assets/images/24_paper-clip.svg +10 -0
- package/src/assets/images/24_search.svg +3 -0
- package/src/assets/images/24_server-on.svg +11 -0
- package/src/assets/images/24_settings-2.svg +3 -0
- package/src/assets/images/add-graph-bg.svg +3 -0
- package/src/assets/images/color-slider-thumb-big.svg +18 -0
- package/src/assets/images/color-slider-thumb-small.svg +3 -0
- package/src/assets/images/empty-cat.svg +21 -0
- package/src/assets/images/no-data-cat.svg +40 -0
- package/src/assets/images/required.svg +3 -0
- package/src/assets/input-range.scss +34 -0
- package/src/assets/layout.scss +6 -0
- package/src/assets/masks.scss +121 -0
- package/src/assets/mixins.scss +204 -0
- package/src/assets/progress-bar.scss +28 -0
- package/src/assets/scroll.scss +65 -0
- package/src/assets/slider.scss +241 -0
- package/src/assets/sortable.scss +10 -0
- package/src/assets/theme-switcher.scss +32 -0
- package/src/assets/typography.scss +164 -0
- package/src/assets/ui.scss +20 -0
- package/src/assets/utils.scss +185 -0
- package/src/assets/variables.scss +133 -0
- package/src/assets/vue.svg +1 -0
- package/src/base/BtnBase.vue +45 -0
- package/src/components/ContextProvider.vue +17 -0
- package/src/components/DataTable/AddColumnBtn.vue +5 -0
- package/src/components/DataTable/BaseCellComponent.vue +60 -0
- package/src/components/DataTable/ColumnCaret.vue +17 -0
- package/src/components/DataTable/ColumnsCommandMenu.vue +30 -0
- package/src/components/DataTable/RowsCommandMenu.vue +31 -0
- package/src/components/DataTable/TScroll.vue +41 -0
- package/src/components/DataTable/TableComponent.vue +105 -0
- package/src/components/DataTable/TdCell.vue +108 -0
- package/src/components/DataTable/ThCell.vue +40 -0
- package/src/components/DataTable/TrBody.vue +24 -0
- package/src/components/DataTable/TrHead.vue +9 -0
- package/src/components/DataTable/adapters/AsyncData.ts +33 -0
- package/src/components/DataTable/adapters/RawData.ts +56 -0
- package/src/components/DataTable/assets/16_add.svg +3 -0
- package/src/components/DataTable/assets/16_arrow-down.svg +3 -0
- package/src/components/DataTable/assets/16_cell-type-num.svg +3 -0
- package/src/components/DataTable/assets/16_cell-type-txt.svg +4 -0
- package/src/components/DataTable/assets/TableIcon.vue +11 -0
- package/src/components/DataTable/assets/data-table-style.scss +308 -0
- package/src/components/DataTable/composition/useColumn.ts +32 -0
- package/src/components/DataTable/composition/useMouseUp.ts +6 -0
- package/src/components/DataTable/composition/useResize.ts +88 -0
- package/src/components/DataTable/composition/useTableColumns.ts +56 -0
- package/src/components/DataTable/composition/useTableRows.ts +50 -0
- package/src/components/DataTable/constants.ts +9 -0
- package/src/components/DataTable/domain.ts +61 -0
- package/src/components/DataTable/index.ts +56 -0
- package/src/components/DataTable/keys.ts +9 -0
- package/src/components/DataTable/state.ts +168 -0
- package/src/components/DataTable/types.ts +181 -0
- package/src/components/DropdownListItem.vue +64 -0
- package/src/components/GridTable/AddColumnBtn.vue +5 -0
- package/src/components/GridTable/TRow.vue +13 -0
- package/src/components/GridTable/TdCell.vue +71 -0
- package/src/components/GridTable/ThCell.vue +52 -0
- package/src/components/GridTable/assets/16_add.svg +3 -0
- package/src/components/GridTable/assets/16_arrow-down.svg +3 -0
- package/src/components/GridTable/assets/16_cell-type-num.svg +3 -0
- package/src/components/GridTable/assets/16_cell-type-txt.svg +4 -0
- package/src/components/GridTable/assets/TableIcon.vue +11 -0
- package/src/components/GridTable/assets/style.scss +184 -0
- package/src/components/GridTable/constants.ts +27 -0
- package/src/components/GridTable/domain.ts +26 -0
- package/src/components/GridTable/getColumnPositions.ts +20 -0
- package/src/components/GridTable/index.vue +238 -0
- package/src/components/GridTable/types.ts +64 -0
- package/src/components/GridTable/useColumn.ts +32 -0
- package/src/components/GridTable/useMouseUp.ts +8 -0
- package/src/components/GridTable/useResize.ts +67 -0
- package/src/components/HScroll.vue +54 -0
- package/src/components/InputRange.vue +99 -0
- package/src/components/LongText.vue +81 -0
- package/src/components/MaskIcon16.vue +17 -0
- package/src/components/MaskIcon24.vue +15 -0
- package/src/components/PlAlert/PlAlert.vue +89 -0
- package/src/components/PlAlert/index.ts +1 -0
- package/src/components/PlAlert/pl-alert.scss +83 -0
- package/src/components/PlBtnAccent/PlBtnAccent.vue +47 -0
- package/src/components/PlBtnAccent/index.ts +1 -0
- package/src/components/PlBtnAccent/pl-btn-accent.scss +30 -0
- package/src/components/PlBtnGhost/PlBtnGhost.vue +75 -0
- package/src/components/PlBtnGhost/index.ts +1 -0
- package/src/components/PlBtnGhost/pl-btn-ghost.scss +28 -0
- package/src/components/PlBtnGroup/PlBtnGroup.vue +82 -0
- package/src/components/PlBtnGroup/index.ts +1 -0
- package/src/components/PlBtnGroup/pl-btn-group.scss +124 -0
- package/src/components/PlBtnLink/PlBtnLink.vue +42 -0
- package/src/components/PlBtnLink/index.ts +1 -0
- package/src/components/PlBtnLink/pl-btn-link.scss +16 -0
- package/src/components/PlBtnPrimary/PlBtnPrimary.vue +47 -0
- package/src/components/PlBtnPrimary/__tests__/BtnPrimary.spec.ts +15 -0
- package/src/components/PlBtnPrimary/index.ts +1 -0
- package/src/components/PlBtnPrimary/pl-btn-primary.scss +29 -0
- package/src/components/PlBtnSecondary/PlBtnSecondary.vue +47 -0
- package/src/components/PlBtnSecondary/index.ts +1 -0
- package/src/components/PlBtnSecondary/pl-btn-secondary.scss +26 -0
- package/src/components/PlCheckbox/PlCheckbox.vue +40 -0
- package/src/components/PlCheckbox/PlCheckboxBase.vue +23 -0
- package/src/components/PlCheckbox/__tests__/PlCheckbox.spec.ts +29 -0
- package/src/components/PlCheckbox/index.ts +1 -0
- package/src/components/PlCheckbox/pl-checkbox-base.scss +31 -0
- package/src/components/PlCheckbox/pl-checkbox.scss +58 -0
- package/src/components/PlCheckboxGroup/PlCheckboxGroup.vue +56 -0
- package/src/components/PlCheckboxGroup/index.ts +1 -0
- package/src/components/PlCheckboxGroup/pl-checkbox-group.scss +33 -0
- package/src/components/PlChip/PlChip.vue +37 -0
- package/src/components/PlChip/index.ts +1 -0
- package/src/components/PlChip/pl-chip.scss +69 -0
- package/src/components/PlDialogModal/PlDialogModal.vue +53 -0
- package/src/components/PlDialogModal/index.ts +1 -0
- package/src/components/PlDialogModal/pl-dialog-modal.scss +93 -0
- package/src/components/PlDropdown/PlDropdown.vue +338 -0
- package/src/components/PlDropdown/__tests__/PlDropdown.spec.ts +33 -0
- package/src/components/PlDropdown/index.ts +1 -0
- package/src/components/PlDropdown/pl-dropdown.scss +268 -0
- package/src/components/PlDropdownLine/PlDropdownLine.vue +282 -0
- package/src/components/PlDropdownLine/ResizableInput.vue +45 -0
- package/src/components/PlDropdownLine/index.ts +1 -0
- package/src/components/PlDropdownLine/pl-dropdown-line.scss +144 -0
- package/src/components/PlDropdownLine/resizable-input.scss +41 -0
- package/src/components/PlDropdownMulti/PlDropdownMulti.vue +289 -0
- package/src/components/PlDropdownMulti/__tests__/PlDropdownMulti.spec.ts +33 -0
- package/src/components/PlDropdownMulti/index.ts +1 -0
- package/src/components/PlDropdownMulti/pl-dropdown-multi.scss +298 -0
- package/src/components/PlFileDialog/PlFileDialog.vue +347 -0
- package/src/components/PlFileDialog/index.ts +1 -0
- package/src/components/PlFileDialog/pl-file-dialog.scss +181 -0
- package/src/components/PlFileDialog/utils.ts +27 -0
- package/src/components/PlFileInput/PlFileInput.vue +178 -0
- package/src/components/PlFileInput/index.ts +1 -0
- package/src/components/PlFileInput/pl-file-input.scss +177 -0
- package/src/components/PlFileInput/utils.ts +37 -0
- package/src/components/PlNumberField/PlNumberField.vue +209 -0
- package/src/components/PlNumberField/__tests__/PlNumberField.spec.ts +104 -0
- package/src/components/PlNumberField/index.ts +1 -0
- package/src/components/PlNumberField/pl-number-field.scss +143 -0
- package/src/components/PlProgressBar/PlProgressBar.vue +24 -0
- package/src/components/PlProgressBar/index.ts +1 -0
- package/src/components/PlSlideModal/PlSlideModal.vue +104 -0
- package/src/components/PlSlideModal/index.ts +1 -0
- package/src/components/PlTextArea/PlTextArea.vue +152 -0
- package/src/components/PlTextArea/__tests__/PlTextArea.spec.ts +27 -0
- package/src/components/PlTextArea/index.ts +1 -0
- package/src/components/PlTextArea/pl-textarea.scss +128 -0
- package/src/components/PlTextField/PlTextField.vue +158 -0
- package/src/components/PlTextField/PlTextField.vue.d.ts +3 -0
- package/src/components/PlTextField/__tests__/TextField.spec.ts +30 -0
- package/src/components/PlTextField/index.ts +4 -0
- package/src/components/PlTextField/pl-text-field.scss +132 -0
- package/src/components/PlToggleSwitch/PlToggleSwitch.vue +47 -0
- package/src/components/PlToggleSwitch/index.ts +1 -0
- package/src/components/PlToggleSwitch/pl-toggle-switch.scss +41 -0
- package/src/components/PlTooltip/Beak.vue +5 -0
- package/src/components/PlTooltip/PlTooltip.vue +158 -0
- package/src/components/PlTooltip/global.ts +1 -0
- package/src/components/PlTooltip/index.ts +1 -0
- package/src/components/PlTooltip/pl-tooltip.scss +101 -0
- package/src/components/PlTooltip/useTooltipPosition.ts +54 -0
- package/src/components/Scrollable.vue +81 -0
- package/src/components/Slider.vue +184 -0
- package/src/components/SliderRange.vue +224 -0
- package/src/components/SliderRangeTriple.vue +309 -0
- package/src/components/TabItem.vue +34 -0
- package/src/components/ThemeSwitcher.vue +10 -0
- package/src/components/TransitionSlidePanel.vue +15 -0
- package/src/components/VScroll.vue +54 -0
- package/src/components/contextMenu/Menu.vue +90 -0
- package/src/components/contextMenu/index.ts +33 -0
- package/src/components/contextMenu/types.ts +4 -0
- package/src/composition/useClickOutside.ts +16 -0
- package/src/composition/useDraggable.ts +58 -0
- package/src/composition/useEventListener.ts +14 -0
- package/src/composition/useFilteredList.ts +14 -0
- package/src/composition/useFormState.ts +42 -0
- package/src/composition/useHover.ts +35 -0
- package/src/composition/useInterval.ts +9 -0
- package/src/composition/useLocalStorage.ts +29 -0
- package/src/composition/useMouse.ts +18 -0
- package/src/composition/useMouseCapture.ts +65 -0
- package/src/composition/useNotificationPosition.ts +15 -0
- package/src/composition/usePosition.ts +41 -0
- package/src/composition/useQuery.ts +31 -0
- package/src/composition/useResizeObserver.ts +19 -0
- package/src/composition/useRipple.ts +29 -0
- package/src/composition/useScroll.ts +71 -0
- package/src/composition/useSliderBreakpoints.ts +17 -0
- package/src/composition/useSortable.ts +240 -0
- package/src/composition/useTheme.ts +48 -0
- package/src/composition/utils.ts +6 -0
- package/src/demo-site-data/all-css-variables.ts +330 -0
- package/src/drafts/FileBaseInput.vue +120 -0
- package/src/global/resizeObserver.ts +20 -0
- package/src/helpers/dom.ts +86 -0
- package/src/helpers/functions.ts +27 -0
- package/src/helpers/index.ts +15 -0
- package/src/helpers/iterators.ts +21 -0
- package/src/helpers/math.ts +3 -0
- package/src/helpers/objects.ts +19 -0
- package/src/helpers/utils.ts +142 -0
- package/src/index.ts +112 -0
- package/src/layout/PlBlockPage/PlBlockPage.vue +28 -0
- package/src/layout/PlBlockPage/index.ts +1 -0
- package/src/layout/PlBlockPage/pl-block-page.scss +38 -0
- package/src/layout/PlContainer/PlContainer.vue +25 -0
- package/src/layout/PlContainer/index.ts +1 -0
- package/src/layout/PlContainer/pl-container.scss +5 -0
- package/src/layout/PlGrid/PlGrid.vue +27 -0
- package/src/layout/PlGrid/index.ts +1 -0
- package/src/layout/PlGrid/pl-grid.scss +5 -0
- package/src/layout/PlRow/PlRow.vue +21 -0
- package/src/layout/PlRow/index.ts +1 -0
- package/src/layout/PlRow/pl-row.scss +13 -0
- package/src/layout/PlSpacer/PlSpacer.vue +14 -0
- package/src/layout/PlSpacer/index.ts +1 -0
- package/src/style.css +5 -0
- package/src/types.ts +69 -0
- package/src/utils/DoubleContour.vue +15 -0
- package/src/utils/InnerBorder.vue +11 -0
- package/src/utils/WebStopWatchElement.ts +43 -0
- package/src/utils/useLabelNotch.ts +42 -0
- package/src/utils/useValidation.ts +25 -0
- package/src/vite-env.d.ts +10 -0
- package/tsconfig.json +11 -0
- package/tsconfig.lib.json +30 -0
- package/tsconfig.node.json +16 -0
- package/vite.config.ts +61 -0
- package/vitest.config.ts +15 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Manrope";
|
|
3
|
+
src: url("./fonts/Manrope/Manrope-VariableFont_wght.ttf") format("opentype");
|
|
4
|
+
font-weight: 125 900;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
@font-face {
|
|
8
|
+
font-family: "Spline Sans Mono";
|
|
9
|
+
src: url("./fonts/Spline_Sans_Mono/SplineSansMono-VariableFont_wght.ttf") format("opentype");
|
|
10
|
+
font-weight: 125 900;
|
|
11
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="5" y="9" width="1" height="1" fill="#110529"/>
|
|
3
|
+
<rect x="5" y="12" width="1" height="1" fill="#110529"/>
|
|
4
|
+
<rect x="5" y="15" width="1" height="1" fill="#110529"/>
|
|
5
|
+
<rect x="5" y="18" width="1" height="1" fill="#110529"/>
|
|
6
|
+
<rect x="5" y="21" width="1" height="1" fill="#110529"/>
|
|
7
|
+
<rect x="5" y="24" width="1" height="1" fill="#110529"/>
|
|
8
|
+
<rect x="5" y="27" width="1" height="1" fill="#110529"/>
|
|
9
|
+
<rect x="5" y="30" width="1" height="1" fill="#110529"/>
|
|
10
|
+
<rect x="5" y="33" width="1" height="1" fill="#110529"/>
|
|
11
|
+
<rect x="5" y="36" width="1" height="1" fill="#110529"/>
|
|
12
|
+
<rect x="5" y="39" width="1" height="1" fill="#110529"/>
|
|
13
|
+
<rect x="5" y="42" width="1" height="1" fill="#110529"/>
|
|
14
|
+
<rect x="5" y="45" width="1" height="1" fill="#110529"/>
|
|
15
|
+
<rect x="5" y="48" width="1" height="1" fill="#110529"/>
|
|
16
|
+
<rect x="5" y="51" width="1" height="1" fill="#110529"/>
|
|
17
|
+
<rect x="5" y="54" width="1" height="1" fill="#110529"/>
|
|
18
|
+
<rect x="5" y="57" width="54" height="1" fill="#110529"/>
|
|
19
|
+
<path d="M58 54.5H9C8.72386 54.5 8.5 54.2761 8.5 54V37.195C8.5 37.0696 8.54713 36.9488 8.63203 36.8565L19.8514 24.6615C19.9461 24.5586 20.0796 24.5 20.2194 24.5H32.7929C32.9255 24.5 33.0527 24.4473 33.1464 24.3536L44.6952 12.8048C44.8703 12.6296 45.1473 12.6091 45.3464 12.7566L58.2976 22.3501C58.4249 22.4444 58.5 22.5934 58.5 22.7519V54C58.5 54.2761 58.2761 54.5 58 54.5Z" fill="white" stroke="black"/>
|
|
20
|
+
<path d="M58 54.5H9C8.72386 54.5 8.5 54.2761 8.5 54V50.661C8.5 50.5563 8.53288 50.4543 8.59399 50.3692L19.8504 34.7082C19.9443 34.5775 20.0954 34.5 20.2564 34.5H32.8055C32.9306 34.5 33.0512 34.4531 33.1434 34.3686L44.8721 23.6172C44.9549 23.5413 45.061 23.4955 45.173 23.4872L57.9631 22.5398C58.253 22.5183 58.5 22.7477 58.5 23.0384V54C58.5 54.2761 58.2761 54.5 58 54.5Z" fill="#DEDBFF" stroke="black"/>
|
|
21
|
+
<path d="M58 54.5H9.83699C9.37454 54.5 9.15994 53.9261 9.5089 53.6227L19.8589 44.6227C19.9499 44.5436 20.0664 44.5 20.187 44.5H32.819C32.9359 44.5 33.0492 44.459 33.1391 44.3841L44.8364 34.6364C44.9409 34.5492 45.0764 34.5085 45.2117 34.5235L58.0552 35.9506C58.3084 35.9787 58.5 36.1927 58.5 36.4475V54C58.5 54.2761 58.2761 54.5 58 54.5Z" fill="#C1ADFF" stroke="black"/>
|
|
22
|
+
</svg>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="5" y="9" width="1" height="1" fill="#110529"/>
|
|
3
|
+
<rect x="5" y="12" width="1" height="1" fill="#110529"/>
|
|
4
|
+
<rect x="5" y="15" width="1" height="1" fill="#110529"/>
|
|
5
|
+
<rect x="5" y="18" width="1" height="1" fill="#110529"/>
|
|
6
|
+
<rect x="5" y="21" width="1" height="1" fill="#110529"/>
|
|
7
|
+
<rect x="5" y="24" width="1" height="1" fill="#110529"/>
|
|
8
|
+
<rect x="5" y="27" width="1" height="1" fill="#110529"/>
|
|
9
|
+
<rect x="5" y="30" width="1" height="1" fill="#110529"/>
|
|
10
|
+
<rect x="5" y="33" width="1" height="1" fill="#110529"/>
|
|
11
|
+
<rect x="5" y="36" width="1" height="1" fill="#110529"/>
|
|
12
|
+
<rect x="5" y="39" width="1" height="1" fill="#110529"/>
|
|
13
|
+
<rect x="5" y="42" width="1" height="1" fill="#110529"/>
|
|
14
|
+
<rect x="5" y="45" width="1" height="1" fill="#110529"/>
|
|
15
|
+
<rect x="5" y="48" width="1" height="1" fill="#110529"/>
|
|
16
|
+
<rect x="5" y="51" width="1" height="1" fill="#110529"/>
|
|
17
|
+
<rect x="5" y="54" width="1" height="1" fill="#110529"/>
|
|
18
|
+
<rect x="5" y="57" width="54" height="1" fill="#110529"/>
|
|
19
|
+
<rect x="0.5" y="-0.5" width="7" height="27" rx="0.5" transform="matrix(1 0 0 -1 10 57)" fill="white" stroke="#110529"/>
|
|
20
|
+
<path d="M22.5 57.5H29.5V43C29.5 42.7239 29.2761 42.5 29 42.5H23C22.7239 42.5 22.5 42.7239 22.5 43L22.5 57.5Z" fill="#DEDBFF" stroke="#110529"/>
|
|
21
|
+
<rect x="0.5" y="-0.5" width="7" height="47" rx="0.5" transform="matrix(1 0 0 -1 34 57)" fill="white" stroke="#110529"/>
|
|
22
|
+
<path d="M46.5 57.5H53.5L53.5 25C53.5 24.7239 53.2761 24.5 53 24.5H47C46.7239 24.5 46.5 24.7239 46.5 25L46.5 57.5Z" fill="#DEDBFF" stroke="#110529"/>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="5" y="9" width="1" height="1" fill="#110529"/>
|
|
3
|
+
<rect x="5" y="12" width="1" height="1" fill="#110529"/>
|
|
4
|
+
<rect x="5" y="15" width="1" height="1" fill="#110529"/>
|
|
5
|
+
<rect x="5" y="18" width="1" height="1" fill="#110529"/>
|
|
6
|
+
<rect x="5" y="21" width="1" height="1" fill="#110529"/>
|
|
7
|
+
<rect x="5" y="24" width="1" height="1" fill="#110529"/>
|
|
8
|
+
<rect x="5" y="27" width="1" height="1" fill="#110529"/>
|
|
9
|
+
<rect x="5" y="30" width="1" height="1" fill="#110529"/>
|
|
10
|
+
<rect x="5" y="33" width="1" height="1" fill="#110529"/>
|
|
11
|
+
<rect x="5" y="36" width="1" height="1" fill="#110529"/>
|
|
12
|
+
<rect x="5" y="39" width="1" height="1" fill="#110529"/>
|
|
13
|
+
<rect x="5" y="42" width="1" height="1" fill="#110529"/>
|
|
14
|
+
<rect x="5" y="45" width="1" height="1" fill="#110529"/>
|
|
15
|
+
<rect x="5" y="48" width="1" height="1" fill="#110529"/>
|
|
16
|
+
<rect x="5" y="51" width="1" height="1" fill="#110529"/>
|
|
17
|
+
<rect x="5" y="54" width="1" height="1" fill="#110529"/>
|
|
18
|
+
<rect x="5" y="57" width="54" height="1" fill="#110529"/>
|
|
19
|
+
<circle cx="2" cy="2" r="2" transform="matrix(-1 0 0 1 14 48.9996)" fill="white" stroke="#110529"/>
|
|
20
|
+
<circle cx="2" cy="2" r="2" transform="matrix(-1 0 0 1 14 44.9996)" fill="white" stroke="#110529"/>
|
|
21
|
+
<circle cx="2" cy="2" r="2" transform="matrix(-1 0 0 1 57 48.9996)" fill="white" stroke="#110529"/>
|
|
22
|
+
<circle cx="38" cy="51" r="2" fill="white" stroke="#110529"/>
|
|
23
|
+
<circle cx="38" cy="46.9999" r="2" fill="white" stroke="#110529"/>
|
|
24
|
+
<circle cx="38" cy="42.9998" r="2" fill="white" stroke="#110529"/>
|
|
25
|
+
<circle cx="38" cy="38.9996" r="2" fill="white" stroke="#110529"/>
|
|
26
|
+
<circle cx="38" cy="34.9996" r="2" fill="white" stroke="#110529"/>
|
|
27
|
+
<circle cx="38" cy="30.9996" r="2" fill="white" stroke="#110529"/>
|
|
28
|
+
<circle cx="34" cy="51.0001" r="2" fill="white" stroke="#110529"/>
|
|
29
|
+
<circle cx="34" cy="47" r="2" fill="white" stroke="#110529"/>
|
|
30
|
+
<circle cx="34" cy="42.9999" r="2" fill="white" stroke="#110529"/>
|
|
31
|
+
<circle cx="34" cy="38.9998" r="2" fill="white" stroke="#110529"/>
|
|
32
|
+
<circle cx="34" cy="34.9996" r="2" fill="white" stroke="#110529"/>
|
|
33
|
+
<circle cx="34" cy="30.9996" r="2" fill="white" stroke="#110529"/>
|
|
34
|
+
<circle cx="34" cy="26.9996" r="2" fill="white" stroke="#110529"/>
|
|
35
|
+
<circle cx="34" cy="22.9996" r="2" fill="white" stroke="#110529"/>
|
|
36
|
+
<circle cx="34" cy="18.9996" r="2" fill="white" stroke="#110529"/>
|
|
37
|
+
<circle cx="34" cy="14.9996" r="2" fill="white" stroke="#110529"/>
|
|
38
|
+
<circle cx="27" cy="50.9996" r="2" fill="white" stroke="#110529"/>
|
|
39
|
+
<circle cx="27" cy="46.9996" r="2" fill="white" stroke="#110529"/>
|
|
40
|
+
<circle cx="27" cy="42.9996" r="2" fill="white" stroke="#110529"/>
|
|
41
|
+
<circle cx="27" cy="38.9996" r="2" fill="white" stroke="#110529"/>
|
|
42
|
+
<circle cx="27" cy="34.9996" r="2" fill="white" stroke="#110529"/>
|
|
43
|
+
<circle cx="19" cy="30.9996" r="2" fill="white" stroke="#110529"/>
|
|
44
|
+
<circle cx="19" cy="26.9996" r="2" fill="white" stroke="#110529"/>
|
|
45
|
+
<circle cx="23" cy="50.9996" r="2" fill="white" stroke="#110529"/>
|
|
46
|
+
<circle cx="23" cy="46.9996" r="2" fill="white" stroke="#110529"/>
|
|
47
|
+
<circle cx="23" cy="42.9996" r="2" fill="white" stroke="#110529"/>
|
|
48
|
+
<circle cx="23" cy="38.9996" r="2" fill="white" stroke="#110529"/>
|
|
49
|
+
<circle cx="19" cy="38.9996" r="2" fill="white" stroke="#110529"/>
|
|
50
|
+
<circle cx="19" cy="34.9996" r="2" fill="white" stroke="#110529"/>
|
|
51
|
+
<circle cx="19" cy="50.9996" r="2" fill="white" stroke="#110529"/>
|
|
52
|
+
<circle cx="19" cy="46.9996" r="2" fill="white" stroke="#110529"/>
|
|
53
|
+
<circle cx="19" cy="42.9996" r="2" fill="white" stroke="#110529"/>
|
|
54
|
+
<circle cx="2" cy="2" r="2" transform="matrix(-1 0 0 1 47 48.9996)" fill="white" stroke="#110529"/>
|
|
55
|
+
<circle cx="2" cy="2" r="2" transform="matrix(-1 0 0 1 47 44.9996)" fill="white" stroke="#110529"/>
|
|
56
|
+
<circle cx="2" cy="2" r="2" transform="matrix(-1 0 0 1 51 40.9996)" fill="white" stroke="#110529"/>
|
|
57
|
+
<circle cx="2" cy="2" r="2" transform="matrix(-1 0 0 1 51 36.9996)" fill="white" stroke="#110529"/>
|
|
58
|
+
<circle cx="2" cy="2" r="2" transform="matrix(-1 0 0 1 51 44.9996)" fill="white" stroke="#110529"/>
|
|
59
|
+
<circle cx="2" cy="2" r="2" transform="matrix(-1 0 0 1 51 48.9996)" fill="white" stroke="#110529"/>
|
|
60
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64" fill="none">
|
|
2
|
+
<path d="M20.9999 7.00006L20.9999 21.0001" stroke="#110529"/>
|
|
3
|
+
<path d="M20.9999 49.0001L20.9999 57.0001" stroke="#110529"/>
|
|
4
|
+
<path d="M23.9999 57.0001L17.9999 57.0001" stroke="#110529"/>
|
|
5
|
+
<path d="M23.9999 7.00006L17.9999 7.00006" stroke="#110529"/>
|
|
6
|
+
<path d="M28.9999 21.9143C28.9999 21.5943 28.9999 21.4343 28.9377 21.3121C28.8829 21.2045 28.7955 21.1171 28.6879 21.0623C28.5657 21.0001 28.4057 21.0001 28.0857 21.0001H13.9142C13.5942 21.0001 13.4342 21.0001 13.3119 21.0623C13.2044 21.1171 13.117 21.2045 13.0622 21.3121C12.9999 21.4343 12.9999 21.5943 12.9999 21.9143V37.0001H17.5714H24.4285H28.9999V21.9143Z" fill="white" stroke="#110529"/>
|
|
7
|
+
<path d="M24.4285 37.0001H17.5714H13.9142C13.5942 37.0001 13.4342 37.0001 13.3119 37.0623C13.2044 37.1171 13.117 37.2045 13.0622 37.3121C12.9999 37.4343 12.9999 37.5943 12.9999 37.9143V48.0858C12.9999 48.4058 12.9999 48.5658 13.0622 48.6881C13.117 48.7956 13.2044 48.883 13.3119 48.9378C13.4342 49.0001 13.5942 49.0001 13.9142 49.0001H28.0857C28.4057 49.0001 28.5657 49.0001 28.6879 48.9378C28.7955 48.883 28.8829 48.7956 28.9377 48.6881C28.9999 48.5658 28.9999 48.4058 28.9999 48.0858V37.9143C28.9999 37.5943 28.9999 37.4343 28.9377 37.3121C28.8829 37.2045 28.7955 37.1171 28.6879 37.0623C28.5657 37.0001 28.4057 37.0001 28.0857 37.0001H24.4285Z" fill="#DEDBFF" stroke="#110529"/>
|
|
8
|
+
<path d="M50.9999 16.9142C50.9999 16.5942 50.9999 16.4342 50.9377 16.3119C50.8829 16.2044 50.7955 16.117 50.6879 16.0622C50.5657 15.9999 50.4057 15.9999 50.0857 15.9999H35.9142C35.5942 15.9999 35.4342 15.9999 35.3119 16.0622C35.2044 16.117 35.117 16.2044 35.0622 16.3119C34.9999 16.4342 34.9999 16.5942 34.9999 16.9142V27.9999H39.5714H46.4285H50.9999V16.9142Z" fill="white" stroke="#110529"/>
|
|
9
|
+
<path d="M46.4285 27.9999H39.5714H35.9142C35.5942 27.9999 35.4342 27.9999 35.3119 28.0622C35.2044 28.117 35.117 28.2044 35.0622 28.3119C34.9999 28.4342 34.9999 28.5942 34.9999 28.9142V33.0857C34.9999 33.4057 34.9999 33.5657 35.0622 33.6879C35.117 33.7955 35.2044 33.8829 35.3119 33.9377C35.4342 33.9999 35.5942 33.9999 35.9142 33.9999H50.0857C50.4057 33.9999 50.5657 33.9999 50.6879 33.9377C50.7955 33.8829 50.8829 33.7955 50.9377 33.6879C50.9999 33.5657 50.9999 33.4057 50.9999 33.0857V28.9142C50.9999 28.5942 50.9999 28.4342 50.9377 28.3119C50.8829 28.2044 50.7955 28.117 50.6879 28.0622C50.5657 27.9999 50.4057 27.9999 50.0857 27.9999H46.4285Z" fill="#DEDBFF" stroke="#110529"/>
|
|
10
|
+
<path d="M42.9999 9.99994L42.9999 15.9999" stroke="#110529"/>
|
|
11
|
+
<path d="M42.9999 33.9999L42.9999 45.9999" stroke="#110529"/>
|
|
12
|
+
<path d="M45.9999 45.9999L39.9999 45.9999" stroke="#110529"/>
|
|
13
|
+
<path d="M45.9999 9.99994L39.9999 9.99994" stroke="#110529"/>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64" fill="none">
|
|
2
|
+
<path d="M29 21.9143C29 21.5943 29 21.4343 28.9377 21.3121C28.8829 21.2045 28.7955 21.1171 28.688 21.0623C28.5658 21.0001 28.4057 21.0001 28.0857 21.0001H13.9143C13.5943 21.0001 13.4342 21.0001 13.312 21.0623C13.2045 21.1171 13.1171 21.2045 13.0623 21.3121C13 21.4343 13 21.5943 13 21.9143V37.0001H17.5714H24.4286H29V21.9143Z" fill="white" stroke="#110529"/>
|
|
3
|
+
<path d="M24.4286 37.0001H17.5714H13.9143C13.5943 37.0001 13.4342 37.0001 13.312 37.0623C13.2045 37.1171 13.1171 37.2045 13.0623 37.3121C13 37.4343 13 37.5943 13 37.9143V48.0858C13 48.4058 13 48.5658 13.0623 48.6881C13.1171 48.7956 13.2045 48.883 13.312 48.9378C13.4342 49.0001 13.5943 49.0001 13.9143 49.0001H28.0857C28.4057 49.0001 28.5658 49.0001 28.688 48.9378C28.7955 48.883 28.8829 48.7956 28.9377 48.6881C29 48.5658 29 48.4058 29 48.0858V37.9143C29 37.5943 29 37.4343 28.9377 37.3121C28.8829 37.2045 28.7955 37.1171 28.688 37.0623C28.5658 37.0001 28.4057 37.0001 28.0857 37.0001H24.4286Z" fill="#DEDBFF" stroke="#110529"/>
|
|
4
|
+
<path d="M21 7.00006L21 21.0001" stroke="#110529"/>
|
|
5
|
+
<path d="M21 49.0001L21 57.0001" stroke="#110529"/>
|
|
6
|
+
<path d="M24 57.0001L18 57.0001" stroke="#110529"/>
|
|
7
|
+
<path d="M24 7.00006L18 7.00006" stroke="#110529"/>
|
|
8
|
+
<path d="M50.9999 16.9142C50.9999 16.5942 50.9999 16.4342 50.9376 16.3119C50.8828 16.2044 50.7954 16.117 50.6879 16.0622C50.5656 15.9999 50.4056 15.9999 50.0856 15.9999H35.9142C35.5941 15.9999 35.4341 15.9999 35.3119 16.0622C35.2044 16.117 35.1169 16.2044 35.0622 16.3119C34.9999 16.4342 34.9999 16.5942 34.9999 16.9142V27.9999H39.5713H46.4284H50.9999V16.9142Z" fill="white" stroke="#110529"/>
|
|
9
|
+
<path d="M46.4284 27.9999H39.5713H35.9142C35.5941 27.9999 35.4341 27.9999 35.3119 28.0622C35.2044 28.117 35.1169 28.2044 35.0622 28.3119C34.9999 28.4342 34.9999 28.5942 34.9999 28.9142V33.0857C34.9999 33.4057 34.9999 33.5657 35.0622 33.6879C35.1169 33.7955 35.2044 33.8829 35.3119 33.9377C35.4341 33.9999 35.5941 33.9999 35.9142 33.9999H50.0856C50.4056 33.9999 50.5656 33.9999 50.6879 33.9377C50.7954 33.8829 50.8828 33.7955 50.9376 33.6879C50.9999 33.5657 50.9999 33.4057 50.9999 33.0857V28.9142C50.9999 28.5942 50.9999 28.4342 50.9376 28.3119C50.8828 28.2044 50.7954 28.117 50.6879 28.0622C50.5656 27.9999 50.4056 27.9999 50.0856 27.9999H46.4284Z" fill="#DEDBFF" stroke="#110529"/>
|
|
10
|
+
<path d="M42.9999 9.99994L42.9999 15.9999" stroke="#110529"/>
|
|
11
|
+
<path d="M42.9999 33.9999L42.9999 45.9999" stroke="#110529"/>
|
|
12
|
+
<path d="M45.9999 45.9999L39.9999 45.9999" stroke="#110529"/>
|
|
13
|
+
<path d="M45.9999 9.99994L39.9999 9.99994" stroke="#110529"/>
|
|
14
|
+
<path d="M21 53.5L43 50.5" stroke="#845CFF"/>
|
|
15
|
+
<path d="M21 13.5L43 27.5" stroke="#845CFF"/>
|
|
16
|
+
<path d="M21 30.5L43 38.5" stroke="#845CFF"/>
|
|
17
|
+
<path d="M21 18.5L43 12.5" stroke="#845CFF"/>
|
|
18
|
+
<path d="M21 41.5L43 30.5" stroke="#845CFF"/>
|
|
19
|
+
<path d="M21 44.5L43 38.5" stroke="#845CFF"/>
|
|
20
|
+
<circle cx="1.5" cy="1.5" r="1.5" transform="matrix(-1 0 0 1 44.5 11)" fill="#845CFF"/>
|
|
21
|
+
<circle cx="1.5" cy="1.5" r="1.5" transform="matrix(-1 0 0 1 44.5 37)" fill="#845CFF"/>
|
|
22
|
+
<circle cx="1.5" cy="1.5" r="1.5" transform="matrix(-1 0 0 1 44.5 29)" fill="#845CFF"/>
|
|
23
|
+
<circle cx="1.5" cy="1.5" r="1.5" transform="matrix(-1 0 0 1 44.5 26)" fill="#845CFF"/>
|
|
24
|
+
<circle cx="1.5" cy="1.5" r="1.5" transform="matrix(-1 0 0 1 44.5 49)" fill="#845CFF"/>
|
|
25
|
+
<circle cx="1.5" cy="1.5" r="1.5" transform="matrix(-1 0 0 1 22.5 40.0002)" fill="#845CFF"/>
|
|
26
|
+
<circle cx="1.5" cy="1.5" r="1.5" transform="matrix(-1 0 0 1 22.5 29.0002)" fill="#845CFF"/>
|
|
27
|
+
<circle cx="1.5" cy="1.5" r="1.5" transform="matrix(-1 0 0 1 22.5 43.0002)" fill="#845CFF"/>
|
|
28
|
+
<circle cx="1.5" cy="1.5" r="1.5" transform="matrix(-1 0 0 1 22.5 52.0002)" fill="#845CFF"/>
|
|
29
|
+
<circle cx="1.5" cy="1.5" r="1.5" transform="matrix(-1 0 0 1 22.5 12.0002)" fill="#845CFF"/>
|
|
30
|
+
<circle cx="1.5" cy="1.5" r="1.5" transform="matrix(-1 0 0 1 22.5 17.0002)" fill="#845CFF"/>
|
|
31
|
+
</svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64" fill="none">
|
|
2
|
+
<path d="M29 21.9143C29 21.5943 29 21.4343 28.9377 21.3121C28.8829 21.2045 28.7955 21.1171 28.688 21.0623C28.5658 21.0001 28.4057 21.0001 28.0857 21.0001H13.9143C13.5943 21.0001 13.4342 21.0001 13.312 21.0623C13.2045 21.1171 13.1171 21.2045 13.0623 21.3121C13 21.4343 13 21.5943 13 21.9143V37.0001H17.5714H24.4286H29V21.9143Z" fill="white" stroke="#110529"/>
|
|
3
|
+
<path d="M24.4286 37.0001H17.5714H13.9143C13.5943 37.0001 13.4342 37.0001 13.312 37.0623C13.2045 37.1171 13.1171 37.2045 13.0623 37.3121C13 37.4343 13 37.5943 13 37.9143V48.0858C13 48.4058 13 48.5658 13.0623 48.6881C13.1171 48.7956 13.2045 48.883 13.312 48.9378C13.4342 49.0001 13.5943 49.0001 13.9143 49.0001H28.0857C28.4057 49.0001 28.5658 49.0001 28.688 48.9378C28.7955 48.883 28.8829 48.7956 28.9377 48.6881C29 48.5658 29 48.4058 29 48.0858V37.9143C29 37.5943 29 37.4343 28.9377 37.3121C28.8829 37.2045 28.7955 37.1171 28.688 37.0623C28.5658 37.0001 28.4057 37.0001 28.0857 37.0001H24.4286Z" fill="#DEDBFF" stroke="#110529"/>
|
|
4
|
+
<path d="M21 7.00006L21 21.0001" stroke="#110529"/>
|
|
5
|
+
<path d="M21 49.0001L21 57.0001" stroke="#110529"/>
|
|
6
|
+
<path d="M24 57.0001L18 57.0001" stroke="#110529"/>
|
|
7
|
+
<path d="M24 7.00006L18 7.00006" stroke="#110529"/>
|
|
8
|
+
<circle cx="42" cy="53.5" r="1.5" fill="#845CFF"/>
|
|
9
|
+
<circle cx="41.5" cy="42.5" r="1.5" fill="#845CFF"/>
|
|
10
|
+
<circle cx="45" cy="23.5" r="1.5" fill="#845CFF"/>
|
|
11
|
+
<circle cx="42" cy="15.5" r="1.5" fill="#845CFF"/>
|
|
12
|
+
<circle cx="46" cy="45.5" r="1.5" fill="#845CFF"/>
|
|
13
|
+
<circle cx="42" cy="26.5" r="1.5" fill="#845CFF"/>
|
|
14
|
+
<circle cx="41" cy="24.5" r="1.5" fill="#845CFF"/>
|
|
15
|
+
<circle cx="41" cy="17.5" r="1.5" fill="#845CFF"/>
|
|
16
|
+
<circle cx="40" cy="26.5" r="1.5" fill="#845CFF"/>
|
|
17
|
+
<circle cx="48.5" cy="27.5" r="1.5" fill="#845CFF"/>
|
|
18
|
+
<circle cx="46" cy="34.5" r="1.5" fill="#845CFF"/>
|
|
19
|
+
<circle cx="46" cy="17.5" r="1.5" fill="#845CFF"/>
|
|
20
|
+
<circle cx="43" cy="31" r="1.5" fill="#845CFF"/>
|
|
21
|
+
<circle cx="38.5" cy="30.5" r="1.5" fill="#845CFF"/>
|
|
22
|
+
<circle cx="42.5" cy="37.5" r="1.5" fill="#845CFF"/>
|
|
23
|
+
<circle cx="44.5" cy="21.5" r="1.5" fill="#845CFF"/>
|
|
24
|
+
<circle cx="37" cy="21.5" r="1.5" fill="#845CFF"/>
|
|
25
|
+
<circle cx="43" cy="10.5" r="1.5" fill="#845CFF"/>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="5" y="9" width="1" height="1" fill="#110529"/>
|
|
3
|
+
<rect x="5" y="12" width="1" height="1" fill="#110529"/>
|
|
4
|
+
<rect x="5" y="15" width="1" height="1" fill="#110529"/>
|
|
5
|
+
<rect x="5" y="18" width="1" height="1" fill="#110529"/>
|
|
6
|
+
<rect x="5" y="21" width="1" height="1" fill="#110529"/>
|
|
7
|
+
<rect x="5" y="24" width="1" height="1" fill="#110529"/>
|
|
8
|
+
<rect x="5" y="27" width="1" height="1" fill="#110529"/>
|
|
9
|
+
<rect x="5" y="30" width="1" height="1" fill="#110529"/>
|
|
10
|
+
<rect x="5" y="33" width="1" height="1" fill="#110529"/>
|
|
11
|
+
<rect x="5" y="36" width="1" height="1" fill="#110529"/>
|
|
12
|
+
<rect x="5" y="39" width="1" height="1" fill="#110529"/>
|
|
13
|
+
<rect x="5" y="42" width="1" height="1" fill="#110529"/>
|
|
14
|
+
<rect x="5" y="45" width="1" height="1" fill="#110529"/>
|
|
15
|
+
<rect x="5" y="48" width="1" height="1" fill="#110529"/>
|
|
16
|
+
<rect x="5" y="51" width="1" height="1" fill="#110529"/>
|
|
17
|
+
<rect x="5" y="54" width="1" height="1" fill="#110529"/>
|
|
18
|
+
<rect x="5" y="57" width="54" height="1" fill="#110529"/>
|
|
19
|
+
<circle cx="28.5" cy="26.5" r="1.5" fill="white" stroke="#110529"/>
|
|
20
|
+
<circle cx="25.5" cy="33.5" r="2.5" fill="white" stroke="#110529"/>
|
|
21
|
+
<circle cx="20" cy="24" r="3" fill="white" stroke="#110529"/>
|
|
22
|
+
<circle cx="12.5" cy="34.5" r="1.5" fill="#C1ADFF" stroke="#110529"/>
|
|
23
|
+
<circle cx="42.5" cy="37.5" r="1.5" fill="#C1ADFF" stroke="#110529"/>
|
|
24
|
+
<circle cx="49" cy="43" r="2" fill="white" stroke="#110529"/>
|
|
25
|
+
<circle cx="40.5" cy="44.5" r="3.5" fill="white" stroke="#110529"/>
|
|
26
|
+
<circle cx="50" cy="34" r="3" fill="#C1ADFF" stroke="#110529"/>
|
|
27
|
+
<circle cx="21.5" cy="47.5" r="4.5" fill="#C1ADFF" stroke="#110529"/>
|
|
28
|
+
<circle cx="40" cy="22" r="7" fill="#C1ADFF" stroke="#110529"/>
|
|
29
|
+
<circle cx="47" cy="23" r="4" fill="white" stroke="#110529"/>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64" fill="none">
|
|
2
|
+
<path d="M32 32L32 3" stroke="black"/>
|
|
3
|
+
<path d="M32 19L39 12" stroke="black"/>
|
|
4
|
+
<path d="M39 12L46 7" stroke="black"/>
|
|
5
|
+
<path d="M39 12L40 4" stroke="black"/>
|
|
6
|
+
<path d="M44 27L44 20" stroke="black"/>
|
|
7
|
+
<path d="M32 32L44 28" stroke="black"/>
|
|
8
|
+
<path d="M14 21L8 16" stroke="black"/>
|
|
9
|
+
<path d="M14 21L11 12" stroke="black"/>
|
|
10
|
+
<path d="M20 29L14 21" stroke="black"/>
|
|
11
|
+
<path d="M4 25L20 29" stroke="black"/>
|
|
12
|
+
<path d="M44 28L51 22" stroke="black"/>
|
|
13
|
+
<path d="M44 28L53 33" stroke="black"/>
|
|
14
|
+
<path d="M51 22L60 26" stroke="black"/>
|
|
15
|
+
<path d="M55 15L51 22" stroke="black"/>
|
|
16
|
+
<path d="M51 22L58 21" stroke="black"/>
|
|
17
|
+
<path d="M32 32L40 42" stroke="black"/>
|
|
18
|
+
<path d="M32 19L20 5.5" stroke="black"/>
|
|
19
|
+
<path d="M32 32L20 29" stroke="black"/>
|
|
20
|
+
<path d="M32 32L25 23" stroke="black"/>
|
|
21
|
+
<path d="M12 35L4 37.5" stroke="black"/>
|
|
22
|
+
<path d="M12 35L5.5 43" stroke="black"/>
|
|
23
|
+
<path d="M20 29L12 35" stroke="black"/>
|
|
24
|
+
<path d="M19 37L20 29" stroke="black"/>
|
|
25
|
+
<path d="M23 59L25 43" stroke="black"/>
|
|
26
|
+
<path d="M15 55L25 43" stroke="black"/>
|
|
27
|
+
<path d="M42 59L41 50" stroke="black"/>
|
|
28
|
+
<path d="M54 50L50 43" stroke="black"/>
|
|
29
|
+
<path d="M59 42L50 43" stroke="black"/>
|
|
30
|
+
<path d="M47 37L40 42" stroke="black"/>
|
|
31
|
+
<path d="M50 43L40 42" stroke="black"/>
|
|
32
|
+
<path d="M41.0001 50L39.9998 42" stroke="black"/>
|
|
33
|
+
<path d="M17 45L25 43" stroke="black"/>
|
|
34
|
+
<path d="M30 48L25 43" stroke="black"/>
|
|
35
|
+
<path d="M32 32L25 43" stroke="black"/>
|
|
36
|
+
<circle cx="32" cy="32" r="4" transform="rotate(-180 32 32)" fill="white" stroke="#110529"/>
|
|
37
|
+
<circle cx="32" cy="19" r="3" transform="rotate(-180 32 19)" fill="white" stroke="#110529"/>
|
|
38
|
+
<circle cx="25.4" cy="11.5" r="2" transform="rotate(-180 25.4 11.5)" fill="white" stroke="#110529"/>
|
|
39
|
+
<circle cx="12" cy="35" r="2" transform="rotate(-180 12 35)" fill="white" stroke="#110529"/>
|
|
40
|
+
<circle cx="14" cy="21" r="2" transform="rotate(-180 14 21)" fill="white" stroke="#110529"/>
|
|
41
|
+
<circle cx="53" cy="33" r="2" transform="rotate(-180 53 33)" fill="white" stroke="#110529"/>
|
|
42
|
+
<circle cx="51" cy="22" r="2" transform="rotate(-180 51 22)" fill="white" stroke="#110529"/>
|
|
43
|
+
<circle cx="39" cy="12" r="2" transform="rotate(-180 39 12)" fill="white" stroke="#110529"/>
|
|
44
|
+
<circle cx="50" cy="43" r="2" transform="rotate(-180 50 43)" fill="white" stroke="#110529"/>
|
|
45
|
+
<circle cx="41" cy="51" r="2" transform="rotate(-180 41 51)" fill="white" stroke="#110529"/>
|
|
46
|
+
<circle cx="23.9" cy="52" r="2" transform="rotate(-180 23.9 52)" fill="white" stroke="#110529"/>
|
|
47
|
+
<circle cx="44" cy="28" r="3" transform="rotate(-180 44 28)" fill="white" stroke="#110529"/>
|
|
48
|
+
<circle cx="40" cy="42" r="3" transform="rotate(-180 40 42)" fill="white" stroke="#110529"/>
|
|
49
|
+
<circle cx="20" cy="29" r="3" transform="rotate(-180 20 29)" fill="white" stroke="#110529"/>
|
|
50
|
+
<circle cx="25" cy="43" r="3" transform="rotate(-180 25 43)" fill="white" stroke="#110529"/>
|
|
51
|
+
<circle cx="58" cy="21" r="1.5" transform="rotate(-180 58 21)" fill="#845CFF"/>
|
|
52
|
+
<circle cx="44" cy="20" r="1.5" transform="rotate(-180 44 20)" fill="#845CFF"/>
|
|
53
|
+
<circle cx="55" cy="15" r="1.5" transform="rotate(-180 55 15)" fill="#845CFF"/>
|
|
54
|
+
<circle cx="46" cy="7" r="1.5" transform="rotate(-180 46 7)" fill="#845CFF"/>
|
|
55
|
+
<circle cx="40" cy="4" r="1.5" transform="rotate(-180 40 4)" fill="#845CFF"/>
|
|
56
|
+
<circle cx="47" cy="37" r="1.5" transform="rotate(-180 47 37)" fill="#845CFF"/>
|
|
57
|
+
<circle cx="25" cy="23" r="1.5" transform="rotate(-180 25 23)" fill="#845CFF"/>
|
|
58
|
+
<circle cx="30" cy="48" r="1.5" transform="rotate(-180 30 48)" fill="#845CFF"/>
|
|
59
|
+
<circle cx="19" cy="37" r="1.5" transform="rotate(-180 19 37)" fill="#845CFF"/>
|
|
60
|
+
<circle cx="4" cy="25" r="1.5" transform="rotate(-180 4 25)" fill="#845CFF"/>
|
|
61
|
+
<circle cx="11" cy="12" r="1.5" transform="rotate(-180 11 12)" fill="#845CFF"/>
|
|
62
|
+
<circle cx="8" cy="16" r="1.5" transform="rotate(-180 8 16)" fill="#845CFF"/>
|
|
63
|
+
<circle cx="4" cy="37.5" r="1.5" transform="rotate(-180 4 37.5)" fill="#845CFF"/>
|
|
64
|
+
<circle cx="5.5" cy="43" r="1.5" transform="rotate(-180 5.5 43)" fill="#845CFF"/>
|
|
65
|
+
<circle cx="17" cy="45" r="1.5" transform="rotate(-180 17 45)" fill="#845CFF"/>
|
|
66
|
+
<circle cx="15" cy="55" r="1.5" transform="rotate(-180 15 55)" fill="#845CFF"/>
|
|
67
|
+
<circle cx="32" cy="3" r="1.5" transform="rotate(-180 32 3)" fill="#845CFF"/>
|
|
68
|
+
<circle cx="20" cy="5.5" r="1.5" transform="rotate(-180 20 5.5)" fill="#845CFF"/>
|
|
69
|
+
<circle cx="42" cy="59" r="1.5" transform="rotate(-180 42 59)" fill="#845CFF"/>
|
|
70
|
+
<circle cx="23" cy="59" r="1.5" transform="rotate(-180 23 59)" fill="#845CFF"/>
|
|
71
|
+
<circle cx="60" cy="26" r="1.5" transform="rotate(-180 60 26)" fill="#845CFF"/>
|
|
72
|
+
<circle cx="54" cy="50" r="1.5" transform="rotate(-180 54 50)" fill="#845CFF"/>
|
|
73
|
+
<circle cx="59" cy="42" r="1.5" transform="rotate(-180 59 42)" fill="#845CFF"/>
|
|
74
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64" fill="none">
|
|
2
|
+
<circle cx="20" cy="32" r="20" transform="rotate(-90 20 32)" fill="#DEDBFF"/>
|
|
3
|
+
<circle cx="12.5" cy="22.5" r="1.5" transform="rotate(-90 12.5 22.5)" fill="#DEDBFF" stroke="#110529"/>
|
|
4
|
+
<circle cx="21.5" cy="22.5" r="2.5" transform="rotate(-90 21.5 22.5)" fill="#DEDBFF" stroke="#110529"/>
|
|
5
|
+
<circle cx="17.5" cy="42.5" r="2.5" transform="rotate(-90 17.5 42.5)" fill="#DEDBFF" stroke="#110529"/>
|
|
6
|
+
<circle cx="10" cy="33" r="5" transform="rotate(-90 10 33)" fill="#DEDBFF" stroke="#110529"/>
|
|
7
|
+
<circle cx="24.5" cy="32.5" r="3.5" transform="rotate(-90 24.5 32.5)" fill="#DEDBFF" stroke="#110529"/>
|
|
8
|
+
<circle cx="14.5" cy="29.5" r="2.5" transform="rotate(-90 14.5 29.5)" fill="#DEDBFF" stroke="#110529"/>
|
|
9
|
+
<circle cx="21.5" cy="34.5" r="1.5" transform="rotate(-90 21.5 34.5)" fill="#DEDBFF" stroke="#110529"/>
|
|
10
|
+
<ellipse cx="45.5" cy="22.5" rx="14.5" ry="14.5" fill="white"/>
|
|
11
|
+
<path d="M35.0607 21.8536C34.8654 21.6583 34.8654 21.3417 35.0607 21.1464L39.1464 17.0607C39.3417 16.8654 39.6583 16.8654 39.8536 17.0607L43.9393 21.1464C44.1346 21.3417 44.1346 21.6583 43.9393 21.8536L39.8536 25.9393C39.6583 26.1346 39.3417 26.1346 39.1464 25.9393L35.0607 21.8536Z" fill="white" stroke="#110529"/>
|
|
12
|
+
<path d="M47.0607 27.8536C46.8654 27.6583 46.8654 27.3417 47.0607 27.1464L50.1464 24.0607C50.3417 23.8654 50.6583 23.8654 50.8536 24.0607L53.9393 27.1464C54.1346 27.3417 54.1346 27.6583 53.9393 27.8536L50.8536 30.9393C50.6583 31.1346 50.3417 31.1346 50.1464 30.9393L47.0607 27.8536Z" fill="white" stroke="#110529"/>
|
|
13
|
+
<path d="M41.0607 29.8536C40.8654 29.6583 40.8654 29.3417 41.0607 29.1464L42.1464 28.0607C42.3417 27.8654 42.6583 27.8654 42.8536 28.0607L43.9393 29.1464C44.1346 29.3417 44.1346 29.6583 43.9393 29.8536L42.8536 30.9393C42.6583 31.1346 42.3417 31.1346 42.1464 30.9393L41.0607 29.8536Z" fill="white" stroke="#110529"/>
|
|
14
|
+
<path d="M45.0607 14.8536C44.8654 14.6583 44.8654 14.3417 45.0607 14.1464L46.1464 13.0607C46.3417 12.8654 46.6583 12.8654 46.8536 13.0607L47.9393 14.1464C48.1346 14.3417 48.1346 14.6583 47.9393 14.8536L46.8536 15.9393C46.6583 16.1346 46.3417 16.1346 46.1464 15.9393L45.0607 14.8536Z" fill="white" stroke="#110529"/>
|
|
15
|
+
<path d="M42.0607 21.8536C41.8654 21.6583 41.8654 21.3417 42.0607 21.1464L44.1464 19.0607C44.3417 18.8654 44.6583 18.8654 44.8536 19.0607L46.9393 21.1464C47.1346 21.3417 47.1346 21.6583 46.9393 21.8536L44.8536 23.9393C44.6583 24.1346 44.3417 24.1346 44.1464 23.9393L42.0607 21.8536Z" fill="white" stroke="#110529"/>
|
|
16
|
+
<path d="M50.0607 18.8536C49.8654 18.6583 49.8654 18.3417 50.0607 18.1464L52.1464 16.0607C52.3417 15.8654 52.6583 15.8654 52.8536 16.0607L54.9393 18.1464C55.1346 18.3417 55.1346 18.6583 54.9393 18.8536L52.8536 20.9393C52.6583 21.1346 52.3417 21.1346 52.1464 20.9393L50.0607 18.8536Z" fill="white" stroke="#110529"/>
|
|
17
|
+
<circle cx="38" cy="46" r="10" transform="rotate(90 38 46)" fill="#C1ADFF"/>
|
|
18
|
+
<rect x="38" y="51" width="5" height="5" rx="0.5" transform="rotate(-90 38 51)" fill="#C1ADFF" stroke="#110529"/>
|
|
19
|
+
<rect x="32" y="44" width="3" height="3" rx="0.5" fill="#C1ADFF" stroke="#110529"/>
|
|
20
|
+
<rect x="38" y="40" width="3" height="3" rx="0.5" fill="#C1ADFF" stroke="#110529"/>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64" fill="none">
|
|
2
|
+
<path d="M29 53L29 19.5C29 19.2239 29.2239 19 29.5 19L43 19C43.2761 19 43.5 19.2239 43.5 19.5L43.5 28" stroke="#110529"/>
|
|
3
|
+
<path d="M36.5 41L36.5 28.5C36.5 28.2239 36.7239 28 37 28L49.75 28C50.0261 28 50.25 28.2239 50.25 28.5L50.25 37" stroke="#845CFF"/>
|
|
4
|
+
<path d="M50.25 37L50.25 28.5C50.25 28.2239 50.0261 28 49.75 28L43.5 28" stroke="#110529"/>
|
|
5
|
+
<path d="M46.5 47L46.5 37.5C46.5 37.2239 46.7239 37 47 37L53.5 37C53.7761 37 54 37.2239 54 37.5L54 53" stroke="#110529"/>
|
|
6
|
+
<path d="M20 37L20 28.5C20 28.2239 19.7761 28 19.5 28L9.5 28C9.22386 28 9 28.2239 9 28.5L9 53" stroke="#845CFF"/>
|
|
7
|
+
<path d="M39 53L39 41.5C39 41.2239 38.7761 41 38.5 41L34.5 41C34.2239 41 34 41.2239 34 41.5L34 53" stroke="#845CFF"/>
|
|
8
|
+
<path d="M49 53L49 47.5C49 47.2239 48.7761 47 48.5 47L44.5 47C44.2239 47 44 47.2239 44 47.5L44 53" stroke="#110529"/>
|
|
9
|
+
<path d="M16.5 47L16.5 37.5C16.5 37.2239 16.7239 37 17 37L23.5 37C23.7761 37 24 37.2239 24 37.5L24 53" stroke="#845CFF"/>
|
|
10
|
+
<path d="M14 53L14 47.5C14 47.2239 14.2239 47 14.5 47L18.5 47C18.7761 47 19 47.2239 19 47.5L19 53" stroke="#845CFF"/>
|
|
11
|
+
<path d="M36.5 19L36.5 10.5C36.5 10.2239 36.2761 10 36 10L25.5 10" stroke="#110529"/>
|
|
12
|
+
<path d="M14.5 28L14.5 10.5C14.5 10.2239 14.7239 10 15 10L25 10" stroke="#845CFF"/>
|
|
13
|
+
<path d="M24 53L24 37.5C24 37.2239 23.7761 37 23.5 37L20 37" stroke="#110529"/>
|
|
14
|
+
<circle cx="50.25" cy="37" r="1" fill="#110529"/>
|
|
15
|
+
<circle cx="46.5" cy="47" r="1" fill="#110529"/>
|
|
16
|
+
<circle cx="44" cy="53" r="1" fill="#110529"/>
|
|
17
|
+
<circle cx="54" cy="53" r="1" fill="#110529"/>
|
|
18
|
+
<circle cx="49" cy="53" r="1" fill="#110529"/>
|
|
19
|
+
<circle cx="29" cy="53" r="1" fill="#110529"/>
|
|
20
|
+
<circle cx="9" cy="53" r="1" fill="#845CFF"/>
|
|
21
|
+
<circle cx="14" cy="53" r="1" fill="#845CFF"/>
|
|
22
|
+
<circle cx="19" cy="53" r="1" fill="#845CFF"/>
|
|
23
|
+
<circle cx="24" cy="53" r="1" fill="#110529"/>
|
|
24
|
+
<circle cx="34" cy="53" r="1" fill="#845CFF"/>
|
|
25
|
+
<circle cx="39" cy="53" r="1" fill="#845CFF"/>
|
|
26
|
+
<circle cx="36.5" cy="19" r="1" fill="#110529"/>
|
|
27
|
+
<circle cx="25.5" cy="10" r="1" fill="#845CFF"/>
|
|
28
|
+
<circle cx="14.5" cy="28" r="1" fill="#845CFF"/>
|
|
29
|
+
<circle cx="16.5" cy="47" r="1" fill="#845CFF"/>
|
|
30
|
+
<circle cx="36.5" cy="41" r="1" fill="#845CFF"/>
|
|
31
|
+
<circle cx="20" cy="37" r="1" fill="#845CFF"/>
|
|
32
|
+
<circle cx="43.5" cy="28" r="1" fill="#845CFF"/>
|
|
33
|
+
</svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64" fill="none">
|
|
2
|
+
<path d="M12.0607 30.8536C11.8654 30.6583 11.8654 30.3417 12.0607 30.1464L14.1464 28.0607C14.3417 27.8654 14.6583 27.8654 14.8536 28.0607L16.9393 30.1464C17.1346 30.3417 17.1346 30.6583 16.9393 30.8536L14.8536 32.9393C14.6583 33.1346 14.3417 33.1346 14.1464 32.9393L12.0607 30.8536Z" fill="white" stroke="#110529"/>
|
|
3
|
+
<path d="M17.0607 34.8536C16.8654 34.6583 16.8654 34.3417 17.0607 34.1464L19.1464 32.0607C19.3417 31.8654 19.6583 31.8654 19.8536 32.0607L21.9393 34.1464C22.1346 34.3417 22.1346 34.6583 21.9393 34.8536L19.8536 36.9393C19.6583 37.1346 19.3417 37.1346 19.1464 36.9393L17.0607 34.8536Z" fill="white" stroke="#110529"/>
|
|
4
|
+
<path d="M17.0607 53.8536C16.8654 53.6583 16.8654 53.3417 17.0607 53.1464L19.1464 51.0607C19.3417 50.8654 19.6583 50.8654 19.8536 51.0607L21.9393 53.1464C22.1346 53.3417 22.1346 53.6583 21.9393 53.8536L19.8536 55.9393C19.6583 56.1346 19.3417 56.1346 19.1464 55.9393L17.0607 53.8536Z" fill="white" stroke="#110529"/>
|
|
5
|
+
<path d="M20.0607 40.8536C19.8654 40.6583 19.8654 40.3417 20.0607 40.1464L22.1464 38.0607C22.3417 37.8654 22.6583 37.8654 22.8536 38.0607L24.9393 40.1464C25.1346 40.3417 25.1346 40.6583 24.9393 40.8536L22.8536 42.9393C22.6583 43.1346 22.3417 43.1346 22.1464 42.9393L20.0607 40.8536Z" fill="white" stroke="#110529"/>
|
|
6
|
+
<path d="M14.0607 45.8536C13.8654 45.6583 13.8654 45.3417 14.0607 45.1464L16.1464 43.0607C16.3417 42.8654 16.6583 42.8654 16.8536 43.0607L18.9393 45.1464C19.1346 45.3417 19.1346 45.6583 18.9393 45.8536L16.8536 47.9393C16.6583 48.1346 16.3417 48.1346 16.1464 47.9393L14.0607 45.8536Z" fill="white" stroke="#110529"/>
|
|
7
|
+
<path d="M15.0607 24.8536C14.8654 24.6583 14.8654 24.3417 15.0607 24.1464L17.1464 22.0607C17.3417 21.8654 17.6583 21.8654 17.8536 22.0607L19.9393 24.1464C20.1346 24.3417 20.1346 24.6583 19.9393 24.8536L17.8536 26.9393C17.6583 27.1346 17.3417 27.1346 17.1464 26.9393L15.0607 24.8536Z" fill="white" stroke="#110529"/>
|
|
8
|
+
<path d="M10.0607 20.8536C9.8654 20.6583 9.8654 20.3417 10.0607 20.1464L12.1464 18.0607C12.3417 17.8654 12.6583 17.8654 12.8536 18.0607L14.9393 20.1464C15.1346 20.3417 15.1346 20.6583 14.9393 20.8536L12.8536 22.9393C12.6583 23.1346 12.3417 23.1346 12.1464 22.9393L10.0607 20.8536Z" fill="white" stroke="#110529"/>
|
|
9
|
+
<path d="M25.0607 24.8536C24.8654 24.6583 24.8654 24.3417 25.0607 24.1464L27.1464 22.0607C27.3417 21.8654 27.6583 21.8654 27.8536 22.0607L29.9393 24.1464C30.1346 24.3417 30.1346 24.6583 29.9393 24.8536L27.8536 26.9393C27.6583 27.1346 27.3417 27.1346 27.1464 26.9393L25.0607 24.8536Z" fill="white" stroke="#110529"/>
|
|
10
|
+
<path d="M20.0607 20.8536C19.8654 20.6583 19.8654 20.3417 20.0607 20.1464L22.1464 18.0607C22.3417 17.8654 22.6583 17.8654 22.8536 18.0607L24.9393 20.1464C25.1346 20.3417 25.1346 20.6583 24.9393 20.8536L22.8536 22.9393C22.6583 23.1346 22.3417 23.1346 22.1464 22.9393L20.0607 20.8536Z" fill="white" stroke="#110529"/>
|
|
11
|
+
<path d="M15.0607 16.8536C14.8654 16.6583 14.8654 16.3417 15.0607 16.1464L17.1464 14.0607C17.3417 13.8654 17.6583 13.8654 17.8536 14.0607L19.9393 16.1464C20.1346 16.3417 20.1346 16.6583 19.9393 16.8536L17.8536 18.9393C17.6583 19.1346 17.3417 19.1346 17.1464 18.9393L15.0607 16.8536Z" fill="white" stroke="#110529"/>
|
|
12
|
+
<path d="M18.0607 10.8536C17.8654 10.6583 17.8654 10.3417 18.0607 10.1464L20.1464 8.06066C20.3417 7.8654 20.6583 7.8654 20.8536 8.06066L22.9393 10.1464C23.1346 10.3417 23.1346 10.6583 22.9393 10.8536L20.8536 12.9393C20.6583 13.1346 20.3417 13.1346 20.1464 12.9393L18.0607 10.8536Z" fill="white" stroke="#110529"/>
|
|
13
|
+
<path d="M20.0607 28.8536C19.8654 28.6583 19.8654 28.3417 20.0607 28.1464L22.1464 26.0607C22.3417 25.8654 22.6583 25.8654 22.8536 26.0607L24.9393 28.1464C25.1346 28.3417 25.1346 28.6583 24.9393 28.8536L22.8536 30.9393C22.6583 31.1346 22.3417 31.1346 22.1464 30.9393L20.0607 28.8536Z" fill="white" stroke="#110529"/>
|
|
14
|
+
<path d="M36.0607 33.1464C35.8654 33.3417 35.8654 33.6583 36.0607 33.8536L38.1464 35.9393C38.3417 36.1346 38.6583 36.1346 38.8536 35.9393L40.9393 33.8536C41.1346 33.6583 41.1346 33.3417 40.9393 33.1464L38.8536 31.0607C38.6583 30.8654 38.3417 30.8654 38.1464 31.0607L36.0607 33.1464Z" fill="#DEDBFF" stroke="#110529"/>
|
|
15
|
+
<path d="M41.0607 29.1464C40.8654 29.3417 40.8654 29.6583 41.0607 29.8536L43.1464 31.9393C43.3417 32.1346 43.6583 32.1346 43.8536 31.9393L45.9393 29.8536C46.1346 29.6583 46.1346 29.3417 45.9393 29.1464L43.8536 27.0607C43.6583 26.8654 43.3417 26.8654 43.1464 27.0607L41.0607 29.1464Z" fill="#DEDBFF" stroke="#110529"/>
|
|
16
|
+
<path d="M41.0607 10.1464C40.8654 10.3417 40.8654 10.6583 41.0607 10.8536L43.1464 12.9393C43.3417 13.1346 43.6583 13.1346 43.8536 12.9393L45.9393 10.8536C46.1346 10.6583 46.1346 10.3417 45.9393 10.1464L43.8536 8.06066C43.6583 7.8654 43.3417 7.8654 43.1464 8.06066L41.0607 10.1464Z" fill="#DEDBFF" stroke="#110529"/>
|
|
17
|
+
<path d="M44.0607 23.1464C43.8654 23.3417 43.8654 23.6583 44.0607 23.8536L46.1464 25.9393C46.3417 26.1346 46.6583 26.1346 46.8536 25.9393L48.9393 23.8536C49.1346 23.6583 49.1346 23.3417 48.9393 23.1464L46.8536 21.0607C46.6583 20.8654 46.3417 20.8654 46.1464 21.0607L44.0607 23.1464Z" fill="#DEDBFF" stroke="#110529"/>
|
|
18
|
+
<path d="M38.0607 18.1464C37.8654 18.3417 37.8654 18.6583 38.0607 18.8536L40.1464 20.9393C40.3417 21.1346 40.6583 21.1346 40.8536 20.9393L42.9393 18.8536C43.1346 18.6583 43.1346 18.3417 42.9393 18.1464L40.8536 16.0607C40.6583 15.8654 40.3417 15.8654 40.1464 16.0607L38.0607 18.1464Z" fill="#DEDBFF" stroke="#110529"/>
|
|
19
|
+
<path d="M39.0607 39.1464C38.8654 39.3417 38.8654 39.6583 39.0607 39.8536L41.1464 41.9393C41.3417 42.1346 41.6583 42.1346 41.8536 41.9393L43.9393 39.8536C44.1346 39.6583 44.1346 39.3417 43.9393 39.1464L41.8536 37.0607C41.6583 36.8654 41.3417 36.8654 41.1464 37.0607L39.0607 39.1464Z" fill="#DEDBFF" stroke="#110529"/>
|
|
20
|
+
<path d="M34.0607 43.1464C33.8654 43.3417 33.8654 43.6583 34.0607 43.8536L36.1464 45.9393C36.3417 46.1346 36.6583 46.1346 36.8536 45.9393L38.9393 43.8536C39.1346 43.6583 39.1346 43.3417 38.9393 43.1464L36.8536 41.0607C36.6583 40.8654 36.3417 40.8654 36.1464 41.0607L34.0607 43.1464Z" fill="#DEDBFF" stroke="#110529"/>
|
|
21
|
+
<path d="M49.0607 39.1464C48.8654 39.3417 48.8654 39.6583 49.0607 39.8536L51.1464 41.9393C51.3417 42.1346 51.6583 42.1346 51.8536 41.9393L53.9393 39.8536C54.1346 39.6583 54.1346 39.3417 53.9393 39.1464L51.8536 37.0607C51.6583 36.8654 51.3417 36.8654 51.1464 37.0607L49.0607 39.1464Z" fill="#DEDBFF" stroke="#110529"/>
|
|
22
|
+
<path d="M44.0607 43.1464C43.8654 43.3417 43.8654 43.6583 44.0607 43.8536L46.1464 45.9393C46.3417 46.1346 46.6583 46.1346 46.8536 45.9393L48.9393 43.8536C49.1346 43.6583 49.1346 43.3417 48.9393 43.1464L46.8536 41.0607C46.6583 40.8654 46.3417 40.8654 46.1464 41.0607L44.0607 43.1464Z" fill="#DEDBFF" stroke="#110529"/>
|
|
23
|
+
<path d="M39.0607 47.1464C38.8654 47.3417 38.8654 47.6583 39.0607 47.8536L41.1464 49.9393C41.3417 50.1346 41.6583 50.1346 41.8536 49.9393L43.9393 47.8536C44.1346 47.6583 44.1346 47.3417 43.9393 47.1464L41.8536 45.0607C41.6583 44.8654 41.3417 44.8654 41.1464 45.0607L39.0607 47.1464Z" fill="#DEDBFF" stroke="#110529"/>
|
|
24
|
+
<path d="M42.0607 53.1464C41.8654 53.3417 41.8654 53.6583 42.0607 53.8536L44.1464 55.9393C44.3417 56.1346 44.6583 56.1346 44.8536 55.9393L46.9393 53.8536C47.1346 53.6583 47.1346 53.3417 46.9393 53.1464L44.8536 51.0607C44.6583 50.8654 44.3417 50.8654 44.1464 51.0607L42.0607 53.1464Z" fill="#DEDBFF" stroke="#110529"/>
|
|
25
|
+
<path d="M44.0607 35.1464C43.8654 35.3417 43.8654 35.6583 44.0607 35.8536L46.1464 37.9393C46.3417 38.1346 46.6583 38.1346 46.8536 37.9393L48.9393 35.8536C49.1346 35.6583 49.1346 35.3417 48.9393 35.1464L46.8536 33.0607C46.6583 32.8654 46.3417 32.8654 46.1464 33.0607L44.0607 35.1464Z" fill="#DEDBFF" stroke="#110529"/>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64" fill="none">
|
|
2
|
+
<path d="M12 44H20V52H12.5C12.2239 52 12 51.7761 12 51.5V44Z" fill="#DEDBFF" stroke="#110529"/>
|
|
3
|
+
<path d="M12 12.5C12 12.2239 12.2239 12 12.5 12H20V20H12V12.5Z" fill="#C1ADFF" stroke="#110529"/>
|
|
4
|
+
<rect x="12" y="20" width="8" height="8" fill="#C1ADFF" stroke="#110529"/>
|
|
5
|
+
<rect x="36" y="36" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
6
|
+
<rect x="28" y="28" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
7
|
+
<rect x="20" y="28" width="8" height="8" fill="white" stroke="#110529"/>
|
|
8
|
+
<rect x="20" y="20" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
9
|
+
<rect x="28" y="20" width="8" height="8" fill="white" stroke="#110529"/>
|
|
10
|
+
<rect x="36" y="20" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
11
|
+
<rect x="36" y="12" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
12
|
+
<rect x="12" y="28" width="8" height="8" fill="#C1ADFF" stroke="#110529"/>
|
|
13
|
+
<rect x="12" y="36" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
14
|
+
<rect x="44" y="20" width="8" height="8" fill="white" stroke="#110529"/>
|
|
15
|
+
<rect x="20" y="12" width="8" height="8" fill="#C1ADFF" stroke="#110529"/>
|
|
16
|
+
<rect x="28" y="12" width="8" height="8" fill="#C1ADFF" stroke="#110529"/>
|
|
17
|
+
<path d="M44 12H51.5C51.7761 12 52 12.2239 52 12.5V20H44V12Z" fill="#DEDBFF" stroke="#110529"/>
|
|
18
|
+
<rect x="44" y="28" width="8" height="8" fill="white" stroke="#110529"/>
|
|
19
|
+
<rect x="44" y="36" width="8" height="8" fill="white" stroke="#110529"/>
|
|
20
|
+
<rect x="36" y="28" width="8" height="8" fill="white" stroke="#110529"/>
|
|
21
|
+
<rect x="28" y="36" width="8" height="8" fill="white" stroke="#110529"/>
|
|
22
|
+
<rect x="20" y="36" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
23
|
+
<path d="M44 44H52V51.5C52 51.7761 51.7761 52 51.5 52H44V44Z" fill="white" stroke="#110529"/>
|
|
24
|
+
<rect x="36" y="44" width="8" height="8" fill="white" stroke="#110529"/>
|
|
25
|
+
<rect x="28" y="44" width="8" height="8" fill="white" stroke="#110529"/>
|
|
26
|
+
<rect x="20" y="44" width="8" height="8" fill="white" stroke="#110529"/>
|
|
27
|
+
</svg>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64" fill="none">
|
|
2
|
+
<path d="M14 46H22V54H14.5C14.2239 54 14 53.7761 14 53.5V46Z" fill="#DEDBFF" stroke="#110529"/>
|
|
3
|
+
<path d="M14 14.5C14 14.2239 14.2239 14 14.5 14H22V22H14V14.5Z" fill="#C1ADFF" stroke="#110529"/>
|
|
4
|
+
<rect x="14" y="22" width="8" height="8" fill="#C1ADFF" stroke="#110529"/>
|
|
5
|
+
<rect x="38" y="38" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
6
|
+
<rect x="30" y="30" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
7
|
+
<rect x="22" y="30" width="8" height="8" fill="white" stroke="#110529"/>
|
|
8
|
+
<rect x="22" y="22" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
9
|
+
<rect x="30" y="22" width="8" height="8" fill="white" stroke="#110529"/>
|
|
10
|
+
<rect x="38" y="22" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
11
|
+
<rect x="38" y="14" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
12
|
+
<rect x="14" y="30" width="8" height="8" fill="#C1ADFF" stroke="#110529"/>
|
|
13
|
+
<rect x="14" y="38" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
14
|
+
<rect x="46" y="22" width="8" height="8" fill="white" stroke="#110529"/>
|
|
15
|
+
<rect x="22" y="14" width="8" height="8" fill="#C1ADFF" stroke="#110529"/>
|
|
16
|
+
<rect x="30" y="14" width="8" height="8" fill="#C1ADFF" stroke="#110529"/>
|
|
17
|
+
<path d="M46 14H53.5C53.7761 14 54 14.2239 54 14.5V22H46V14Z" fill="#DEDBFF" stroke="#110529"/>
|
|
18
|
+
<rect x="46" y="30" width="8" height="8" fill="white" stroke="#110529"/>
|
|
19
|
+
<rect x="46" y="38" width="8" height="8" fill="white" stroke="#110529"/>
|
|
20
|
+
<rect x="38" y="30" width="8" height="8" fill="white" stroke="#110529"/>
|
|
21
|
+
<rect x="30" y="38" width="8" height="8" fill="white" stroke="#110529"/>
|
|
22
|
+
<rect x="22" y="38" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
23
|
+
<path d="M46 46H54V53.5C54 53.7761 53.7761 54 53.5 54H46V46Z" fill="white" stroke="#110529"/>
|
|
24
|
+
<rect x="38" y="46" width="8" height="8" fill="white" stroke="#110529"/>
|
|
25
|
+
<rect x="30" y="46" width="8" height="8" fill="white" stroke="#110529"/>
|
|
26
|
+
<rect x="22" y="46" width="8" height="8" fill="white" stroke="#110529"/>
|
|
27
|
+
<path d="M18 13L18 10.5C18 10.2239 18.2239 10 18.5 10L25.5 10C25.7761 10 26 10.2239 26 10.5L26 13" stroke="#110529"/>
|
|
28
|
+
<path d="M42 13L42 10.5C42 10.2239 42.2239 10 42.5 10L49.5 10C49.7761 10 50 10.2239 50 10.5L50 13" stroke="#110529"/>
|
|
29
|
+
<path d="M46 10L46 7.5C46 7.22386 45.7761 7 45.5 7L34.5 7C34.2239 7 34 7.22386 34 7.5L34 13" stroke="#110529"/>
|
|
30
|
+
<path d="M40 7L40 4.5C40 4.22386 39.7761 4 39.5 4L22.5 4C22.2239 4 22 4.22386 22 4.5L22 10" stroke="#110529"/>
|
|
31
|
+
<path d="M13 18H10.5C10.2239 18 10 18.2239 10 18.5V25.5C10 25.7761 10.2239 26 10.5 26H13" stroke="#110529"/>
|
|
32
|
+
<path d="M13 42H10.5C10.2239 42 10 42.2239 10 42.5V49.5C10 49.7761 10.2239 50 10.5 50H13" stroke="#110529"/>
|
|
33
|
+
<path d="M10 46L7.5 46C7.22386 46 7 45.7761 7 45.5L7 34.5C7 34.2239 7.22386 34 7.5 34L13 34" stroke="#110529"/>
|
|
34
|
+
<path d="M7 40H4.5C4.22386 40 4 39.7761 4 39.5L4 22.5C4 22.2239 4.22386 22 4.5 22H10" stroke="#110529"/>
|
|
35
|
+
</svg>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64" fill="none">
|
|
2
|
+
<path d="M10 46H18V54H10.5C10.2239 54 10 53.7761 10 53.5V46Z" fill="#DEDBFF" stroke="#110529"/>
|
|
3
|
+
<path d="M10 14.5C10 14.2239 10.2239 14 10.5 14H18V22H10V14.5Z" fill="#C1ADFF" stroke="#110529"/>
|
|
4
|
+
<rect x="10" y="22" width="8" height="8" fill="#C1ADFF" stroke="#110529"/>
|
|
5
|
+
<rect x="34" y="38" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
6
|
+
<rect x="26" y="30" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
7
|
+
<rect x="18" y="30" width="8" height="8" fill="white" stroke="#110529"/>
|
|
8
|
+
<rect x="18" y="22" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
9
|
+
<rect x="26" y="22" width="8" height="8" fill="white" stroke="#110529"/>
|
|
10
|
+
<rect x="34" y="22" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
11
|
+
<rect x="34" y="14" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
12
|
+
<rect x="10" y="30" width="8" height="8" fill="#C1ADFF" stroke="#110529"/>
|
|
13
|
+
<rect x="10" y="38" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
14
|
+
<rect x="42" y="22" width="8" height="8" fill="white" stroke="#110529"/>
|
|
15
|
+
<rect x="18" y="14" width="8" height="8" fill="#C1ADFF" stroke="#110529"/>
|
|
16
|
+
<rect x="26" y="14" width="8" height="8" fill="#C1ADFF" stroke="#110529"/>
|
|
17
|
+
<path d="M42 14H49.5C49.7761 14 50 14.2239 50 14.5V22H42V14Z" fill="#DEDBFF" stroke="#110529"/>
|
|
18
|
+
<rect x="42" y="30" width="8" height="8" fill="white" stroke="#110529"/>
|
|
19
|
+
<rect x="42" y="38" width="8" height="8" fill="white" stroke="#110529"/>
|
|
20
|
+
<rect x="34" y="30" width="8" height="8" fill="white" stroke="#110529"/>
|
|
21
|
+
<rect x="26" y="38" width="8" height="8" fill="white" stroke="#110529"/>
|
|
22
|
+
<rect x="18" y="38" width="8" height="8" fill="#DEDBFF" stroke="#110529"/>
|
|
23
|
+
<path d="M42 46H50V53.5C50 53.7761 49.7761 54 49.5 54H42V46Z" fill="white" stroke="#110529"/>
|
|
24
|
+
<rect x="34" y="46" width="8" height="8" fill="white" stroke="#110529"/>
|
|
25
|
+
<rect x="26" y="46" width="8" height="8" fill="white" stroke="#110529"/>
|
|
26
|
+
<rect x="18" y="46" width="8" height="8" fill="white" stroke="#110529"/>
|
|
27
|
+
<path d="M18 7.5C18 7.22386 18.2239 7 18.5 7H25.5C25.7761 7 26 7.22386 26 7.5V11H18V7.5Z" fill="#C1ADFF" stroke="#110529"/>
|
|
28
|
+
<path d="M34 9.5C34 9.22386 34.2239 9 34.5 9H41.5C41.7761 9 42 9.22386 42 9.5V11H34V9.5Z" fill="#C1ADFF" stroke="#110529"/>
|
|
29
|
+
<path d="M10 9.5C10 9.22386 10.2239 9 10.5 9H17.5C17.7761 9 18 9.22386 18 9.5V11H10V9.5Z" fill="#C1ADFF" stroke="#110529"/>
|
|
30
|
+
<path d="M26 5.5C26 5.22386 26.2239 5 26.5 5H33.5C33.7761 5 34 5.22386 34 5.5V11H26V5.5Z" fill="#C1ADFF" stroke="#110529"/>
|
|
31
|
+
<path d="M50 11H10" stroke="#110529" stroke-linecap="square"/>
|
|
32
|
+
<path d="M56.5 46C56.7761 46 57 45.7761 57 45.5L57 38.5C57 38.2239 56.7761 38 56.5 38L53 38L53 46L56.5 46Z" fill="#C1ADFF" stroke="#110529"/>
|
|
33
|
+
<path d="M54.5 30C54.7761 30 55 29.7761 55 29.5L55 22.5C55 22.2239 54.7761 22 54.5 22L53 22L53 30L54.5 30Z" fill="#C1ADFF" stroke="#110529"/>
|
|
34
|
+
<path d="M54.5 54C54.7761 54 55 53.7761 55 53.5L55 46.5C55 46.2239 54.7761 46 54.5 46L53 46L53 54L54.5 54Z" fill="#C1ADFF" stroke="#110529"/>
|
|
35
|
+
<path d="M58.5 38C58.7761 38 59 37.7761 59 37.5L59 30.5C59 30.2239 58.7761 30 58.5 30L53 30L53 38L58.5 38Z" fill="#C1ADFF" stroke="#110529"/>
|
|
36
|
+
<path d="M53 14L53 54" stroke="#110529" stroke-linecap="square"/>
|
|
37
|
+
</svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="5" y="9" width="1" height="1" fill="#110529"/>
|
|
3
|
+
<rect x="5" y="12" width="1" height="1" fill="#110529"/>
|
|
4
|
+
<rect x="5" y="15" width="1" height="1" fill="#110529"/>
|
|
5
|
+
<rect x="5" y="18" width="1" height="1" fill="#110529"/>
|
|
6
|
+
<rect x="5" y="21" width="1" height="1" fill="#110529"/>
|
|
7
|
+
<rect x="5" y="24" width="1" height="1" fill="#110529"/>
|
|
8
|
+
<rect x="5" y="27" width="1" height="1" fill="#110529"/>
|
|
9
|
+
<rect x="5" y="30" width="1" height="1" fill="#110529"/>
|
|
10
|
+
<rect x="5" y="33" width="1" height="1" fill="#110529"/>
|
|
11
|
+
<rect x="5" y="36" width="1" height="1" fill="#110529"/>
|
|
12
|
+
<rect x="5" y="39" width="1" height="1" fill="#110529"/>
|
|
13
|
+
<rect x="5" y="42" width="1" height="1" fill="#110529"/>
|
|
14
|
+
<rect x="5" y="45" width="1" height="1" fill="#110529"/>
|
|
15
|
+
<rect x="5" y="48" width="1" height="1" fill="#110529"/>
|
|
16
|
+
<rect x="5" y="51" width="1" height="1" fill="#110529"/>
|
|
17
|
+
<rect x="5" y="54" width="1" height="1" fill="#110529"/>
|
|
18
|
+
<rect x="5" y="57" width="54" height="1" fill="#110529"/>
|
|
19
|
+
<path d="M9.5 57.5H16.5L16.5 37C16.5 36.7239 16.2761 36.5 16 36.5H10C9.72386 36.5 9.5 36.7239 9.5 37L9.5 57.5Z" fill="#DEDBFF" stroke="#110529"/>
|
|
20
|
+
<path d="M16.5 57.5H23.5V43C23.5 42.7239 23.2761 42.5 23 42.5H17C16.7239 42.5 16.5 42.7239 16.5 43L16.5 57.5Z" fill="#DEDBFF" stroke="#110529"/>
|
|
21
|
+
<path d="M23.5 57.5H30.5L30.5 27C30.5 26.7239 30.2761 26.5 30 26.5H24C23.7239 26.5 23.5 26.7239 23.5 27L23.5 57.5Z" fill="#DEDBFF" stroke="#110529"/>
|
|
22
|
+
<rect x="0.5" y="-0.5" width="7" height="44" rx="0.5" transform="matrix(1 0 0 -1 30 57)" fill="#DEDBFF" stroke="#110529"/>
|
|
23
|
+
<rect x="0.5" y="-0.5" width="7" height="37" rx="0.5" transform="matrix(1 0 0 -1 37 57)" fill="#DEDBFF" stroke="#110529"/>
|
|
24
|
+
<path d="M44.5 57.5H51.5V33C51.5 32.7239 51.2761 32.5 51 32.5H45C44.7239 32.5 44.5 32.7239 44.5 33V57.5Z" fill="#DEDBFF" stroke="#110529"/>
|
|
25
|
+
<path d="M51.5 57.5H58.5V27C58.5 26.7239 58.2761 26.5 58 26.5H52C51.7239 26.5 51.5 26.7239 51.5 27L51.5 57.5Z" fill="#DEDBFF" stroke="#110529"/>
|
|
26
|
+
<path d="M9.5 33C23 33 21.5 9.5 34 9.5C44 9.5 46 22.9999 58.5 22.9999" stroke="#110529" stroke-linecap="square"/>
|
|
27
|
+
</svg>
|