Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
f004655b
Unverified
Commit
f004655b
authored
Jan 18, 2021
by
Dominik Prokop
Committed by
GitHub
Jan 18, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Chore: Remove not used PanelOptionsGrid component (#30358)
parent
d35f9f7e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
22 deletions
+0
-22
packages/grafana-ui/src/components/PanelOptionsGrid/PanelOptionsGrid.tsx
+0
-10
packages/grafana-ui/src/components/PanelOptionsGrid/_PanelOptionsGrid.scss
+0
-10
packages/grafana-ui/src/components/index.scss
+0
-1
packages/grafana-ui/src/components/index.ts
+0
-1
No files found.
packages/grafana-ui/src/components/PanelOptionsGrid/PanelOptionsGrid.tsx
deleted
100644 → 0
View file @
d35f9f7e
import
React
,
{
SFC
}
from
'react'
;
interface
Props
{
cols
?:
number
;
children
:
JSX
.
Element
[]
|
JSX
.
Element
;
}
export
const
PanelOptionsGrid
:
SFC
<
Props
>
=
({
children
})
=>
{
return
<
div
className=
"panel-options-grid"
>
{
children
}
</
div
>;
};
packages/grafana-ui/src/components/PanelOptionsGrid/_PanelOptionsGrid.scss
deleted
100644 → 0
View file @
d35f9f7e
.panel-options-grid
{
display
:
grid
;
grid-template-columns
:
repeat
(
1
,
1fr
);
grid-row-gap
:
10px
;
grid-column-gap
:
10px
;
@include
media-breakpoint-up
(
lg
)
{
grid-template-columns
:
repeat
(
3
,
1fr
);
}
}
packages/grafana-ui/src/components/index.scss
View file @
f004655b
...
...
@@ -3,7 +3,6 @@
@import
'CustomScrollbar/CustomScrollbar'
;
@import
'Drawer/Drawer'
;
@import
'FormField/FormField'
;
@import
'PanelOptionsGrid/PanelOptionsGrid'
;
@import
'RefreshPicker/RefreshPicker'
;
@import
'Forms/Legacy/Select/Select'
;
@import
'TableInputCSV/TableInputCSV'
;
...
...
packages/grafana-ui/src/components/index.ts
View file @
f004655b
...
...
@@ -16,7 +16,6 @@ export { ButtonCascader } from './ButtonCascader/ButtonCascader';
export
{
LoadingPlaceholder
,
LoadingPlaceholderProps
}
from
'./LoadingPlaceholder/LoadingPlaceholder'
;
export
{
ColorPicker
,
SeriesColorPicker
}
from
'./ColorPicker/ColorPicker'
;
export
{
SeriesColorPickerPopover
,
SeriesColorPickerPopoverWithTheme
}
from
'./ColorPicker/SeriesColorPickerPopover'
;
export
{
PanelOptionsGrid
}
from
'./PanelOptionsGrid/PanelOptionsGrid'
;
export
{
EmptySearchResult
}
from
'./EmptySearchResult/EmptySearchResult'
;
export
{
PieChart
,
PieChartType
}
from
'./PieChart/PieChart'
;
export
{
UnitPicker
}
from
'./UnitPicker/UnitPicker'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment