Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
ember-resize-text
Advanced tools
ember addon that makes use of ember-text-measurer to efficiently resize the font of a single line of text to make it fit within its bounds
ember addon that makes use of ember-text-measurer to efficiently resize the font of a single line of text to make it fit within its bounds.
ember install ember-resize-text
checkout out the demo page
Using ember-resize-text is easy. Just wrap your text within resize-text
block-style.
{{#resize-text minSize=12 maxSize=20}}
Please resize me!
{{/resize-text}}
This addon automatically registers event listeners on the windows resize event to make sure text still fits after the window is resized. If you want the text to increase its font size whenever the window is resized, make sure to add the appropriate styling to the add-ons resize-text
css class. For instance consider this markup:
<nav>
<span>first</span>
{{#resize-text}}
second
{{/resize-text}}
</nav>
and the following css:
nav {
width: 100%;
display: flex
}
.resize-text {
flex-grow: 1; /* allow the resize-text elements to increase its size */
}
The size of the font will not be increased if the element with resize-text
class will not be able to increase its width in dependency to the parent's width. This is not built into the addon as this depends on the context in which the addon is used.
Please open issues to discuss further improvement of this add on. Corresponding PRs are very welcome!
FAQs
ember addon that makes use of ember-text-measurer to efficiently resize the font of a single line of text to make it fit
We found that ember-resize-text demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.