-
Notifications
You must be signed in to change notification settings - Fork 600
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
feat: provides access to the CSS variable created by CSSCustomProprtyBehaviors #3256
Merged
nicholasrice
merged 17 commits into
master
from
users/nirice/add-css-variable-access-to-css-behavior
Jun 10, 2020
Merged
feat: provides access to the CSS variable created by CSSCustomProprtyBehaviors #3256
nicholasrice
merged 17 commits into
master
from
users/nirice/add-css-variable-access-to-css-behavior
Jun 10, 2020
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
nicholasrice
requested review from
awentzel,
chrisdholt,
EisenbergEffect,
Falkicon and
janechu
as code owners
June 9, 2020 17:25
…https://github.com/microsoft/fast-dna into users/nirice/add-css-variable-access-to-css-behavior
EisenbergEffect
approved these changes
Jun 9, 2020
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.
Out fo curiosity, did you run the build for the components before and after and notice a reduction in the minified size?
Also, I like var
over css
. That seems more descriptive.
packages/web-components/fast-foundation/src/custom-properties/behavior.ts
Outdated
Show resolved
Hide resolved
@EisenbergEffect looks like a 3.244kb reduction in the fast-components.min.js file |
@nicholasrice Nice! |
chrisdholt
approved these changes
Jun 9, 2020
12 tasks
janechu
approved these changes
Jun 10, 2020
nicholasrice
deleted the
users/nirice/add-css-variable-access-to-css-behavior
branch
June 10, 2020 01:46
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
Adds a
var
field to CSSCustomPropertyBehaviors to provide the CSS Custom Property formatted as a CSS variable. This allows the string to be interpolated into stylesheets.Also integrates the interpolation into stylesheets.
Question:
I waffled between
CSSCustomPropertyBehavior.var
andCSSCustomPropertyBehavior.css
. I want to keep the property concise to benefit from minification processes but wasn't sure which felt more intuitive. If anyone prefers one or the other (or something else) please let me know, I'm not married toCSSCustomPropertyBehavior.var
.Motivation & context
Primary changes are in packages/web-components/fast-foundation/src/custom-properties/behavior.ts
Issue type checklist
Is this a breaking change?
Adding or modifying component(s) in
@microsoft/fast-components
checklistProcess & policy checklist