Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
ember-tableish
Advanced tools
A table implementation based on CSS grid instead of semantic HTML table elements. Being grid based allows more flexibility, e.g. the ability to have rows be links.
ember install ember-tableish
To render simple content:
<EmberTableish as |table|>
<table.Headers as |headers|>
<headers.Header @width='10rem'>
First Name
</headers.Header>
<headers.Header @width='10%'>
Middle Name
</headers.Header>
<headers.Header>
Last Name
</headers.Header>
</table.Headers>
<table.Body>
{{#each this.people as |person|}}
<table.Row>
<div>{{person.firstName}}</div>
<div>{{person.middleName}}</div>
<div>{{person.lastName}}</div>
</table.Row>
{{/each}}
</table.Body>
</EmberTableish>
To render longer content with vertical-collection:
<EmberTableish as |table|>
<table.Headers as |headers|>
<headers.Header @width='10rem'>
First Name
</headers.Header>
<headers.Header @width='10%'>
Middle Name
</headers.Header>
<headers.Header>
Last Name
</headers.Header>
</table.Headers>
<VerticalCollection
class={{table.bodyCls}}
@tagName='div'
@estimateHeight='1.5rem'
@items={{this.people}}
as |person|>
<LinkTo class={{table.rowCls}} @route='person' @model={{person.id}}>
<div>{{person.firstName}}</div>
<div>{{person.middleName}}</div>
<div>{{person.lastName}}</div>
</LinkTo>
</VerticalCollection>
</EmberTableish>
Default column width is 1fr
.
See the Contributing guide for details.
This project is licensed under the MIT License.
FAQs
A grid-based table-like thing
We found that ember-tableish demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.