Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail-vl committed Jun 2, 2023
1 parent 1efa63f commit 5b031c7
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Changelog

## 2.3.0 (IN PROGRESS)
## 3.0.0 (IN PROGRESS)

### Features / Enhancements

- Refactor Types and Fields Editor (#37)
- Update tests with testing-library/react (#40)

## 2.2.0 (2023-03-27)

Expand Down
2 changes: 1 addition & 1 deletion src/components/FieldsEditor/FieldsEditor.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { screen, render } from '@testing-library/react';
import { render, screen } from '@testing-library/react';
import { TestIds } from '../../constants';
import { FieldsEditor } from './FieldsEditor';

Expand Down
2 changes: 1 addition & 1 deletion src/components/QueryEditor/QueryEditor.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { screen, render } from '@testing-library/react';
import { render, screen } from '@testing-library/react';
import { TestIds } from '../../constants';
import { QueryEditor } from './QueryEditor';

Expand Down
2 changes: 1 addition & 1 deletion src/components/ValueInput/ValueInput.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { FieldType } from '@grafana/data';
import { screen, render } from '@testing-library/react';
import { render, screen } from '@testing-library/react';
import { TestIds } from '../../constants';
import { ValueInput } from './ValueInput';

Expand Down
2 changes: 1 addition & 1 deletion src/components/ValueInput/ValueInput.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from 'react';
import { DateTime, dateTime, FieldType } from '@grafana/data';
import { DateTimePicker, Icon, InlineField, Input, TextArea, useStyles2 } from '@grafana/ui';
import { TextAreaLength, TestIds } from '../../constants';
import { TestIds, TextAreaLength } from '../../constants';
import { Styles } from '../../styles';
import { NullableString } from '../../types';
import { verifyFieldValue } from '../../utils';
Expand Down
2 changes: 1 addition & 1 deletion src/components/ValuesEditor/ValuesEditor.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { screen, render } from '@testing-library/react';
import { render, screen } from '@testing-library/react';
import { TestIds } from '../../constants';
import { ValuesEditor } from './ValuesEditor';

Expand Down

0 comments on commit 5b031c7

Please sign in to comment.