-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into dependabot/npm_and_yarn/rollup/plugin-rep…
…lace-6.0.1
- Loading branch information
Showing
9,901 changed files
with
4,179 additions
and
2,896 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
{ | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode", | ||
"stylelint.vscode-stylelint" | ||
] | ||
} | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{% comment %} | ||
This partial accepts the following arguments: | ||
- text (required): The text to display. | ||
- range: Whether to display a range line. Default: false. | ||
- position: Where to place the text. Options: "top", "bottom". Default: "bottom". | ||
- connectorHeight: provide a custom height for the line from the example to the text. | ||
- style: Additional styles to add to the wrapper. Generally used to set position and size of the element. | ||
{% endcomment %} | ||
|
||
{% assign computedClasses = "" %} | ||
{% assign positionClasses = "mt8 fd-column" %} | ||
{% assign height = 12 %} | ||
|
||
{% if position == "top" %} | ||
{% assign positionClasses = "mb8 fd-column-reverse" %} | ||
{% endif %} | ||
{% if range != true and position != "top" %} | ||
{% assign height = "24" %} | ||
{% endif %} | ||
|
||
<div class="d-flex ai-center fc-light fs-caption fs-italic overflow-visible {{computedClasses}} {{positionClasses}} {{classes}}" style="{{style}}" role="presentation"> | ||
{% if range %} | ||
<div class="ba btw0 bc-black-250 h{{connectorHeight | default: height}} w100"></div> | ||
{% endif %} | ||
<div class="bl bc-black-250 h{{connectorHeight | default: height}} mb2"></div> | ||
<div class="ta-center w100">{{text}}</div> | ||
</div> |
This file was deleted.
Oops, something went wrong.
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
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
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
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
Oops, something went wrong.