From 31b97855e8e58cddff00159d0971c4f11ccc6a58 Mon Sep 17 00:00:00 2001 From: goodmice Date: Tue, 27 Dec 2022 19:04:23 +0500 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=BC=D0=B5=D1=89?= =?UTF-8?q?=D1=91=D0=BD=20=D1=81=D0=B5=D0=BB=D0=B5=D0=BA=D1=82=D0=BE=D1=80?= =?UTF-8?q?=20=D1=86=D0=B2=D0=B5=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/d3/monitoring/D3MonitoringChartEditor.tsx | 2 +- src/components/{ => input}/ColorPicker.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/components/{ => input}/ColorPicker.tsx (98%) diff --git a/src/components/d3/monitoring/D3MonitoringChartEditor.tsx b/src/components/d3/monitoring/D3MonitoringChartEditor.tsx index fef519a..2c0e8b7 100644 --- a/src/components/d3/monitoring/D3MonitoringChartEditor.tsx +++ b/src/components/d3/monitoring/D3MonitoringChartEditor.tsx @@ -2,7 +2,7 @@ import { Button, Checkbox, Form, FormItemProps, Input, InputNumber, Select, Tool import { memo, useCallback, useEffect, useMemo } from 'react' import { BaseDataType, MinMax } from '@components/d3/types' -import { ColorPicker, Color } from '@components/ColorPicker' +import { ColorPicker, Color } from '@components/input/ColorPicker' import { ExtendedChartDataset } from './D3MonitoringCharts' diff --git a/src/components/ColorPicker.tsx b/src/components/input/ColorPicker.tsx similarity index 98% rename from src/components/ColorPicker.tsx rename to src/components/input/ColorPicker.tsx index bd8fe1a..4e5aff0 100644 --- a/src/components/ColorPicker.tsx +++ b/src/components/input/ColorPicker.tsx @@ -2,7 +2,7 @@ import { memo, useCallback, useEffect, useMemo, useState } from 'react' import { Input, Popover, Slider } from 'antd' import { CopyOutlined } from '@ant-design/icons' -import { copyToClipboard } from './factory' +import { copyToClipboard } from '@components/factory' import '@styles/components/color_picker.less'