Skip to content
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

Bug Fixes #334

Merged
merged 3 commits into from Jul 26, 2018
Merged

Bug Fixes #334

merged 3 commits into from Jul 26, 2018

Conversation

bhough
Copy link
Contributor

@bhough bhough commented Jul 26, 2018

  • Addresses un-camelCased properties in normalize.
  • Fixes defaults for min/max size in fluidRange.
  • Updates flow types for fluidRange.
  • Updates linting standards.
  • Updates dependencies.

@codecov
Copy link

codecov bot commented Jul 26, 2018

Codecov Report

Merging #334 into version-2 will not change coverage.
The diff coverage is 100%.

Impacted file tree graph

@@           Coverage Diff            @@
##           version-2   #334   +/-   ##
========================================
  Coverage        100%   100%           
========================================
  Files             74     74           
  Lines            428    428           
  Branches         113    113           
========================================
  Hits             428    428
Impacted Files Coverage Δ
src/mixins/normalize.js 100% <ø> (ø) ⬆️
src/mixins/between.js 100% <ø> (ø) ⬆️
src/mixins/fluidRange.js 100% <ø> (ø) ⬆️
src/internalHelpers/_pxto.js 100% <100%> (ø) ⬆️
src/color/parseToRgb.js 100% <100%> (ø) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update b83e74f...f773b40. Read the comment docs.

@bhough bhough merged commit 18a642f into version-2 Jul 26, 2018
@bhough bhough deleted the normalize-camel-case branch July 26, 2018 22:19
bhough added a commit that referenced this pull request Aug 22, 2018
* build(typescript): Removes typescript and tsgen (#295)

Removes typescript tests and tsgen auto typing

BREAKING CHANGE: Anyone using typescript will lose typings with this release.

fix #276 #250

* build(docs): Remove doc autogeneration (#296)

Remove doc site and doc autogeneration from build to move to separate repo.

Fix #229

* feat(transitions): Same transition to multiple properties (#238)

* feat(transitions): Transitions can now apply the same values to multiple properties.

* fix(tests): Update snapshot and linting

* feat(border): Border shorthand (#297)

Border shorthand for splitting out individual border properties. Especially useful for atmoic css
libraries like Fela and Styletron.

Addresses #264

* fix(ellipsis): Harden ellipsis mixin. (#298)

Add `display: inline-flex` for browsers that support it better handle white-space issues with
`display: inline-block`

Addresses #256

* feat(fontFace): Add missing font-face properties to mixin (#299)

* feat(fontFace): Add missing font-face properties to mixin

Add font-display, font-feature-settings & font-variation-settings to fontDisplay mixin

closes #286

* chore(fontFace): Update fontFace snapshot

* fix(color): Color modules now support string amounts (#300)

All color modules now support string inputs for their amounts(percentage, amount, etc..) and
automatically convert them to ints/floats

Fix #243

* build(typescript): Removes typescript and tsgen (#295)

Removes typescript tests and tsgen auto typing

BREAKING CHANGE: Anyone using typescript will lose typings with this release.

fix #276 #250

* build(docs): Remove doc autogeneration (#296)

Remove doc site and doc autogeneration from build to move to separate repo.

Fix #229

* feat(border): Border shorthand (#297)

Border shorthand for splitting out individual border properties. Especially useful for atmoic css
libraries like Fela and Styletron.

Addresses #264

* feat(cover): Adds mixin for cover. (#304)

* build(typescript): Removes typescript and tsgen (#295)

Removes typescript tests and tsgen auto typing

BREAKING CHANGE: Anyone using typescript will lose typings with this release.

fix #276 #250

* feat(cover): Adds mixin for cover.

Adds mixin that provides css for fully covering an area, including an optional offset that acts as a
padding.

* feat(triangle): Add ability to use any units instead of only px to triangle mixin (#314)

* Fix link url to contributors' page (#307)

Just noted that link goes wrong, while have meeting with lib, fixed with a cap of tea :)

* docs(babel): add plugin (#308)

* Revert "docs(babel): add plugin (#308)" (#309)

This reverts commit 6083967.

* docs(Roadmap): Update ROADMAP.md to reflect current plan

* docs(Roadmap.md): Fixes for Roadmap.md

* feat(triangle): Add ability to use any units instead of only px to triangle mixin

closes #313

* refactor(triangle): Remove important from css declaration

BREAKING CHANGE: No longer adds important declaration

closes #313

* chore(normalize): Upgrade to normalize 8.0 (#316)

Upgrade to normalize.css 8.0 and fix bug with abbr[title] fallback.

re #315

*  feat(color): Add support for 8 CSS hexcolor values (#RRGGBBAA) (#318)

* feat(color): Add support for 8 CSS hexcolor values (#RRGGBBAA)

* chore(color): Color 8-Digit Hex Tests

Update tests for color modules to test more 8-Digit Hex cases.

* chore(Color): Properly round 8-Digit Hex

Properly round alpha values returned when processing 8-Digit Hex colors.

* chore(colors): Update 8-Digit tests

Updated 8-Digit Hex tests to ensure they match associated rgba values.

* [WIP]: feat(fluidRange): Add css-lock inspired fluidRange (#169)

* feat(fluidRange): Add css-lock inspired fluidRange

Adds fluidRange mixin that allows the user to leverage css-locks.

* feat(fluidRange): Improved fluidRange

* feat(fluidRange): fluidRange

* chore(fluidRange): more fluidRange work

* chore(fluidRange): Separate between from fluidRange

* chore(fluidRange): Update tests for fluidRange

* Update Dependencies (#319)

* chore(deps): Upgrade safe deps

* chore(deps): Upgrade warning deps

* chore(deps): Upgrade unsafe deps

Upgrade unsafe deps except for eslint 5

* chore(eslint): Upgrade eslint

Upgrade eslint and fix rollup config

* chore(types): Fix flow types (#320)

Fix issues with flow types from module changes and flow upgrade.

* chore(TypeScript): Re-enable tsgen (#321)

* chore(TypeScript): Re-enable tsgen

Re-enabled tsgen to generate TypeScript bindings.

fix #276

* build(build): Use yarn instead of npm

* test(transitions): Add error test to transitions

* Upgrade documentation.js (#322)

* docs(documentation.js): Upgrade documentation.js

Upgraded to latest release of documentation.js including fixing/updating the build.

* docs(Docs): Minor doc build fixes

Minor doc template fixes, move build away from `new Buffer`, and update toc.

* docs(docs): Cleanup docs config file

* fix(mix): Fix first param issues with mix. (#327)

Introducing a breaking change with mix that now requires the weight in order to function. The
previous version that tried to make the first param optional with a fallback broke with Babel
compilation and currying, and also did not provide the original intended API.

BREAKING CHANGE: Mix no longer has a default weight, it must always be provided.

* fix(index): Added missing modules to index.js (#328)

* feat(Flow): Define, use & document Styles type for mixins result values

* fix(Flow): Fix typo in Styles definition

* fix(Flow): Make mergeRules param type more specific to avoid type error

* fix(Typescript): Update tsgen to ^1.3 for index signature support

* chore(normalize): Update prefixed properties to camel case.

Fix #332

* chore(Flow): Fix flow errors with fluid range

* Bug Fixes (#334)

* chore(normalize): Update prefixed properties to camel case.

Fix #332

* chore(Flow): Fix flow errors with fluid range

* chore(Package): Update dependencies

* chore(docs): Docs review (#336)

* test(typeScript): Add additional TS tests (#337)

* feat(library): Deprecation warning support (#338)

* Alpha release 0 (#339)

* feat(library): Deprecation warning support

* build(package.json): Add alpha versionining to package.json

* Alpha release 1 (#340)

* feat(library): Deprecation warning support

* docs(docs): Updated Roadmap and Contributing, Travis config.

* fix(Travis): Move to single node version build

* Beta release 0 (#340) (#341)

* Alpha release 1 (#340)

* feat(library): Deprecation warning support

* docs(docs): Updated Roadmap and Contributing, Travis config.

* fix(Travis): Move to single node version build

* fix(Typescript): Fix typescript test for normalize

* fix(Multiple): Fix rounding, update dependencies, fix retinaImage

Adds rounding to several color mixins, fixes a bug with retinaImage that was causing backgroundSize
to be set as undefined, and updates deps.

* chore(package): Update deps, bump version for release
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant