-
Notifications
You must be signed in to change notification settings - Fork 6
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
Fix/style fixes #916
Fix/style fixes #916
Conversation
🦋 Changeset detectedLatest commit: 4963f21 The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
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.
Also add more tests now progress indicator has more functionality
size = 'medium', | ||
embedIcon: EmbedIcon, |
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.
Rename this to just be icon: Icon
to be consistent with how we take icons in other components
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.
is icon: EmbedIcon ok, it is just conflicting with the other 'Icon' import
className, | ||
children, | ||
color = 'hero', | ||
inverted = false, |
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.
As discussed revert back to color prop to be aligned with icon props
packages/ui/src/components/progress-indicator/progress-indicator.component.tsx
Outdated
Show resolved
Hide resolved
packages/ui/src/components/progress-indicator/progress-indicator.component.tsx
Outdated
Show resolved
Hide resolved
packages/ui/src/components/progress-indicator/progress-indicator.component.tsx
Outdated
Show resolved
Hide resolved
packages/ui/src/components/progress-indicator/progress-indicator.styles.ts
Outdated
Show resolved
Hide resolved
packages/ui/src/components/progress-indicator/progress-indicator.types.ts
Outdated
Show resolved
Hide resolved
import { IconProps } from '../icon/icon.types.js'; | ||
|
||
export type ProgressIndicatorProps = IconProps; | ||
export type ProgressIndicatorProps = IconProps & { |
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.
Minor: Update to Omit<IconProps, 'copyrightYear' | 'look'>
Work in progress PR.
Includes following changes: