-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
move progress bar examples #929
Conversation
import { create, tsx } from '@dojo/framework/core/vdom'; | ||
import { icache } from '@dojo/framework/core/middleware/icache'; | ||
import Progress from '@dojo/widgets/progress'; | ||
import Button from '@dojo/widgets/Button'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is failing because this should be '@dojo/widgets/button';
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for catching that, @JamesLMilner . I've fixed the import and rebased onto latest master. Care to take another look?
3037138
to
9068c34
Compare
This pull request has been deployed to:
|
src/examples/src/config.tsx
Outdated
@@ -103,6 +103,10 @@ import CloseableDialog from './widgets/dialog/CloseableDialog'; | |||
|
|||
`!has('docs')`; | |||
import testsContext from './tests'; | |||
import ProgressWithChangingValues from './widgets/progress/ProgressWithChangingValues'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mike can you move these up above the !has('docs')
line please and alphabetise them like the others? This helps with conflicts later
d3c96cb
to
178d27d
Compare
This pull request has been deployed to:
|
This pull request has been deployed to:
|
1 similar comment
This pull request has been deployed to:
|
178d27d
to
df9253e
Compare
src/examples/src/widgets/progress/ProgressWithChangingValues.tsx
Outdated
Show resolved
Hide resolved
src/examples/src/widgets/progress/ProgressWithChangingValues.tsx
Outdated
Show resolved
Hide resolved
This pull request has been deployed to:
|
Co-Authored-By: Matthew Gadd <mgadd@sitepen.com>
Co-Authored-By: Matthew Gadd <mgadd@sitepen.com>
This pull request has been deployed to:
|
* move progress bar examples * Update src/examples/src/widgets/progress/ProgressWithChangingValues.tsx Co-Authored-By: Matthew Gadd <mgadd@sitepen.com> * Update src/examples/src/widgets/progress/ProgressWithChangingValues.tsx Co-Authored-By: Matthew Gadd <mgadd@sitepen.com>
Type: bug / feature
The following has been addressed in the PR:
theme.compose
like thisDescription: Moved progress bar examples to new format and structure
Resolves #825