Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
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
The npm package ember-tableish receives a total of 0 weekly downloads. As such, ember-tableish popularity was classified as not popular.
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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.