Skip to content

Commit

Permalink
Merge pull request #57 from grafana/feat/add-new-config-editor-compon…
Browse files Browse the repository at this point in the history
…ents

feat: add ConfigSection, ConfigSubSection and DataSourceDescription components
  • Loading branch information
cletter7 authored May 2, 2023
2 parents 05ea996 + b50842e commit cc4997b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions llm-frontend-libs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## v1.2.0

- Add new ConfigSection, ConfigSubSection and DataSourceDescription components

## v1.1.0

- EditorList now accepts a ref to the Button for adding items
Expand Down
1 change: 1 addition & 0 deletions llm-frontend-libs/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ const config = standard.jestConfig();
module.exports = {
...config,
watchPathIgnorePatterns: ['<rootDir>/node_modules/'],
setupFilesAfterEnv: ['@testing-library/jest-dom/extend-expect'],
};
3 changes: 2 additions & 1 deletion llm-frontend-libs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grafana/experimental",
"version": "1.1.0",
"version": "1.2.0",
"description": "Experimental Grafana components and APIs",
"main": "index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -41,6 +41,7 @@
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.1.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "10.14.1",
"@types/react": "16.8.16",
"@types/react-test-renderer": "^17.0.1",
Expand Down
1 change: 1 addition & 0 deletions llm-frontend-libs/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './sql-editor';
export * from './QueryEditor';
export * from './ConfigEditor';
5 changes: 5 additions & 0 deletions llm-frontend-libs/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2530,6 +2530,11 @@
"@babel/runtime" "^7.12.5"
"@testing-library/dom" "^7.28.1"

"@testing-library/user-event@^14.4.3":
version "14.4.3"
resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-14.4.3.tgz#af975e367743fa91989cd666666aec31a8f50591"
integrity sha512-kCUc5MEwaEMakkO5x7aoD+DLi02ehmEM2QCGWvNqAS1dV/fAvORWEjnjsEIvml59M7Y5kCkWN6fCCyPOe8OL6Q==

"@tootallnate/once@1":
version "1.1.2"
resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
Expand Down

0 comments on commit cc4997b

Please sign in to comment.