This is a presentational component for horizontal banks of icons (and
sometimes other stuff).
Convert <FileCard /> and <FileTile /> to use <IconSet />
Factor out "downloaded/published" icon into its own component
Add Featured Content icon to file tiles
Add alignment style for Featured Content icon
Update CHANGELOG.md
Handle featured content icon adjustment in _icons.scss
Remove IconSet component
Converted back to a presentational span and move positioning styles
into card SCSS
Fix spacing between price and icons in file tiles and cards
Before, it would be missing the space if there was a "local file" icon
but no featured content icon.
Rewrite Icon component to use semantic icons
Now you can pass in a constant that indicates the meaning of the icon
within the interface, e.g. icons.FEATURED instead of "icon-rocket".
Also adds the appropriate title.
All icons should eventually be updated to use this.
Remove IconFeatured and IconLocal in favor of new Icon component
Add space between Featured and Local icons
In the conversion to a generic Icon component, we lost the styles that
added padding on the left for FeaturedIcon and LocalIcon.
Fix how rocket icon position is adjusted
Before, it was using a negative margin, which altered the shape of the
bounding box. Changed to use relative positioning.
Add support for styling LBRY icons
Move style for Featured icon into icons.js
Uses new class name format for LBRY icon styles
Still needs logic to notify the form when there's invalid input
Add address validation to Send page
Trim address input on Send page
Adds trim prop to FormField
Improve LBRY address regexp
On Send page, don't prevent form submit, and only show error on blur
This isn't a full fix (it only handles blur, it's still the form's
job to do validation on submit). A proper solution to this (that can
generalize to other forms) will probably involve looking at all of the
inputs and asking each one whether it has an error, which will
require some tricky state management.
On Send page, use error message from daemon
Update CHANGELOG.md
Further improve invalid address regexp
- Remove incorrect check for second character
- Add "O" to chars excluded from b58 section
- Allow for 33-character addresses
Don't internationalize daemon error message on Send page
remove console, add i18n