-
Notifications
You must be signed in to change notification settings - Fork 13
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
Flame v2 #99
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Deploy preview for lightspeed-flame ready! Built with commit c08146e |
Deploy preview for lightspeed-flame ready! Built with commit 38a510d |
Flushing the old notifications by closing this PR |
* Add AlertInCard component. Auto color for Alert icons. * Update Alert/readme.md * Update CHANGELOG.md * Remove useless generic in getTheme * tiny fixes to match design specs * Update typing ignores * design feedback. remove useless typing * hush now codecov * Force add DSD specific icons if prop not filled * PR feedback Co-authored-by: maartenafink <[email protected]>
Bumps [websocket-extensions](https://github.com/faye/websocket-extensions-node) from 0.1.3 to 0.1.4. **This update includes a security fix.** - [Release notes](https://github.com/faye/websocket-extensions-node/releases) - [Changelog](https://github.com/faye/websocket-extensions-node/blob/master/CHANGELOG.md) - [Commits](faye/websocket-extensions-node@0.1.3...0.1.4) Signed-off-by: dependabot-preview[bot] <[email protected]> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
* Forward ref on remaining base components * adjust changelog Co-authored-by: Guillaume Lambert <[email protected]>
* Add toaster component WIP * Update jest and testing-library. Tests for toaster * Update toaster readme * remove dangling TODO from toaster * Add better responsiveness for Toaster * Restrict Toaster types. Bypass click events for ToasterContainer * Update changelog. Add notice that we are using an external lib * Remove unused typing file * Spread rest on Toaster component to auto-pause timer * Update toaster behaviour to match specs * Supress warnings for logs. Fix toaster example setup * less jarring height transition * fixing text alignment * Set minHeight for container at 60px * Test out Percy with animations Co-authored-by: maartenafink <[email protected]> Co-authored-by: Guillaume Lambert <[email protected]>
* port over previous tokens stories. Adapt for flame * Move dependencies to relevant package * disable css modules as its not really relevant anymore * update popover and tooltip story styling. sort top level sections * skip theme percy snapshots as per old implementation * Remove dead deps. Bubble ExampleBox from popover and tooltip * Move stories/ into flame/.storybook. Cleanup useless test * Fix percy command * Fix weird regression due to injecting components in style tags * Display themeGet and css for colours instead of classnames * Fix spaced group * Colours -> Colors * remove superflous react devDep * leverage top level packages Co-authored-by: Guillaume Lambert <[email protected]>
Bumps [acorn](https://github.com/acornjs/acorn) from 6.4.0 to 6.4.1. **This update includes security fixes.** - [Release notes](https://github.com/acornjs/acorn/releases) - [Commits](acornjs/acorn@6.4.0...6.4.1) Signed-off-by: dependabot-preview[bot] <[email protected]> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Xavier Drdak <[email protected]>
- @lightspeed/[email protected]
- @lightspeed/[email protected]
* Adjust lineheight in Alert to be normal. * Update changelog
- @lightspeed/[email protected]
- @lightspeed/[email protected]
* Fix Alert and AlertInCard typing. Allow empty title * Update changelog
- @lightspeed/[email protected]
* Leverage react-popper usePopper hook * remove old popper dependency * update changelog * fix lint
- @lightspeed/[email protected]
* add forceUpdate to Dropdown and Popover * Replace forceUpdate with update. Fix clickOutside hook * Update CHANGELOG.md
* set higher zIndex for ToasterContainer * Update CHANGELOG.md
- @lightspeed/[email protected]
* add next/Badge component * fix colors for oldskool theme * Update CHANGELOG.md * Let percy snapshot next * Use variant prop instead of type for badge * Update CHANGELOG.md * Adjust padding based on design feedback * Fix storybook publishing Co-authored-by: Guillaume Lambert <[email protected]>
- @lightspeed/[email protected]
* Smoothed out border-radius for next/Badge * Update CHANGELOG.md
* export typing for next/Badge * Update CHANGELOG.md
* Port sass as is into flame * Apply suggestions from code review Co-authored-by: Guillaume Lambert <[email protected]> * Update css README docs. Remove media queries css as this is out of scope * Remove private flag from flame-css Co-authored-by: Guillaume Lambert <[email protected]>
- @lightspeed/[email protected] - @lightspeed/[email protected]
* move everything back to root * strip magic from storybook-components. Adjust root package scripts * Mute typings for withReadme * Fix netlify build path * Fix storybook decorator injection condition
…ing (#115) * Target tags for action. Snapshot on label * Pushes on master will trigger a snapshot
- @lightspeed/[email protected] - @lightspeed/[email protected]
- @lightspeed/[email protected]
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Prepare for merging next into master to kick off v2.
Breaking
<Button>
and<Switch>
components (#75)is now requiredhighly recommended (#82)Deprecation Warning
next/Badge
for an early migration.Added
Fixed
type="text"
applied by default (#117)Migration
usePopper
usePopper
hook with the one provided byreact-popper
. While the the underlying components API have not changed, if you are using the hook directly, you'll need to swap out a couple of things to fit thereact-popper
's hook. Namely, the target and popper refs need to come from theReact.useState
hook. Additionally, the styles need to be manually applied.(#104Additionally, should you leverage the
useOnClickOutside
hook in conjunction withusePopper
, you'll need to also forward a separate ref.How to test?
yarn dev
Checklist