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
bcae94f8
Unverified
Commit
bcae94f8
authored
Jan 31, 2019
by
Torkel Ödegaard
Committed by
GitHub
Jan 31, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #15135 from grafana/tooling/stortybook-from-root
Add storybook script to run it from root dir
parents
36a2b9c0
d784accd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
package.json
+2
-1
packages/grafana-ui/src/components/ColorPicker/SpectrumPalette.story.tsx
+2
-2
No files found.
package.json
View file @
bcae94f8
...
@@ -118,7 +118,8 @@
...
@@ -118,7 +118,8 @@
"typecheck"
:
"tsc --noEmit"
,
"typecheck"
:
"tsc --noEmit"
,
"jest"
:
"jest --notify --watch"
,
"jest"
:
"jest --notify --watch"
,
"api-tests"
:
"jest --notify --watch --config=tests/api/jest.js"
,
"api-tests"
:
"jest --notify --watch --config=tests/api/jest.js"
,
"precommit"
:
"grunt precommit"
"precommit"
:
"grunt precommit"
,
"storybook"
:
"cd packages/grafana-ui && yarn storybook"
},
},
"husky"
:
{
"husky"
:
{
"hooks"
:
{
"hooks"
:
{
...
...
packages/grafana-ui/src/components/ColorPicker/SpectrumPalette.story.tsx
View file @
bcae94f8
import
React
from
'react'
;
import
React
from
'react'
;
import
{
storiesOf
}
from
'@storybook/react'
;
import
{
storiesOf
}
from
'@storybook/react'
;
import
{
withKnobs
}
from
'@storybook/addon-knobs'
;
import
{
withKnobs
}
from
'@storybook/addon-knobs'
;
import
SpectrumPalette
from
'./SpectrumPalette'
;
import
SpectrumPalette
from
'./SpectrumPalette'
;
import
{
withCenteredStory
}
from
'../../utils/storybook/withCenteredStory'
;
import
{
withCenteredStory
}
from
'../../utils/storybook/withCenteredStory'
;
import
{
UseState
}
from
'../../utils/storybook/UseState'
;
import
{
UseState
}
from
'../../utils/storybook/UseState'
;
...
@@ -11,8 +10,9 @@ const SpectrumPaletteStories = storiesOf('UI/ColorPicker/Palettes/SpectrumPalett
...
@@ -11,8 +10,9 @@ const SpectrumPaletteStories = storiesOf('UI/ColorPicker/Palettes/SpectrumPalett
SpectrumPaletteStories
.
addDecorator
(
withCenteredStory
).
addDecorator
(
withKnobs
);
SpectrumPaletteStories
.
addDecorator
(
withCenteredStory
).
addDecorator
(
withKnobs
);
SpectrumPaletteStories
.
add
(
'
Named colors swatch - support for named colors
'
,
()
=>
{
SpectrumPaletteStories
.
add
(
'
default
'
,
()
=>
{
const
selectedTheme
=
getThemeKnob
();
const
selectedTheme
=
getThemeKnob
();
return
(
return
(
<
UseState
initialState=
"red"
>
<
UseState
initialState=
"red"
>
{
(
selectedColor
,
updateSelectedColor
)
=>
{
{
(
selectedColor
,
updateSelectedColor
)
=>
{
...
...
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