Gathering detailed insights and metrics for ember-gridstack
Gathering detailed insights and metrics for ember-gridstack
Gathering detailed insights and metrics for ember-gridstack
Gathering detailed insights and metrics for ember-gridstack
gridstack
TypeScript/JS lib for dashboard layout and creation, responsive, mobile support, no external dependencies, with many wrappers (React, Angular, Vue, Ember, knockout...)
fily-publish-gridstack
TypeScript/JS lib for dashboard layout and creation, responsive, mobile support, no external dependencies, with many wrappers (React, Angular, Vue, Ember, knockout...)
@homarr/gridstack
TypeScript/JS lib for dashboard layout and creation, responsive, mobile support, no external dependencies, with many wrappers (React, Angular, Vue, Ember, knockout...)
danimai-gridstack
TypeScript/JS lib for dashboard layout and creation, responsive, mobile support, no external dependencies, with many wrappers (React, Angular, Vue, Ember, knockout...)
Ember components to build drag-and-drop multi-column grids powered by gridstack.js
npm install ember-gridstack
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (84.32%)
Handlebars (8.8%)
HTML (4.9%)
SCSS (1.14%)
Shell (0.84%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
41 Stars
101 Commits
30 Forks
19 Watchers
6 Branches
26 Contributors
Updated on Jun 02, 2025
Latest Version
5.0.0
Package Id
ember-gridstack@5.0.0
Unpacked Size
22.26 kB
Size
7.99 kB
File Count
19
NPM Version
7.24.2
Node Version
18.20.8
Published on
Jun 02, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
6
1
50
Ember components to build drag-and-drop multi-column grids powered by gridstack.js
ember install ember-gridstack
View the full v5.0.0 release notes for updates and breaking changes.
1<GridStack @options={{hash animate=true}} @onChange={{this.change}}> 2 <GridStackItem @options={{hash x=0 y=0 w=6 h=2}}> 3 Widget #1 4 </GridStackItem> 5 <GridStackItem @options={{hash x=6 y=0 w=6 h=2}}> 6 Widget #2 7 </GridStackItem> 8</GridStack>
<GridStack>
Used to construct a grid-stack layout
<GridStack>
can take an options
object attribute to configure the grid. All gridstack grid options are valid and take the form gs-{option}
. However, when using <GridStack>
the gs-{option}
is omitted.
Example:
1<GridStack @options={{hash animate=true column=12 maxRow=10}}> 2 ... 3</GridStack>
The full list of options can be found here: https://github.com/gridstack/gridstack.js/tree/v4.2.7/doc#grid-options
All gridstack events can be handled as Ember actions. They take the form on{Eventname}
.
Example:
1<GridStack 2 @onAdded={{this.added}} 3 @onChange={{this.change}} 4 @onDisable={{this.disabled}} 5 @onDragstart={{this.dragStart}} 6 @onDrag={{this.drag}} 7 @onDragstop={{this.dragStop}} 8 @onDropped={{this.dropped}} 9 @onEnable={{this.enabled}} 10 @onRemoved={{this.removed}} 11 @onResizestart={{this.resizeStart}} 12 @onResize={{this.resize}} 13 @onResizestop={{this.resizeStop}} 14>
The full list of events can found here: https://github.com/gridstack/gridstack.js/tree/v4.2.7/doc#events
The <GridStack>
component uses the block form to yield <GridStackItem>
components. In addition, <GridStack>
yields a reference to itself in the case inner components need the reference or would like to listen to events triggered on the grid element.
Example:
1<GridStack as |grid|> 2 <GridStackItem @options={{hash x=0 y=0 w=6 h=2}}> 3 Widget #1 4 </GridStackItem> 5</GridStack>
<GridStackItem>
Used to construct a grid item inside a <GridStack>
component
<GridStackItem>
can take an options
object attribute to configure the grid item. All gridstack item options are valid and take the form gs-{option}
. However, when using <GridStackItem>
the gs
is omitted.
Example:
1<GridStackItem @options={{hash w=4 h=4 x=0 y=0 noMove=true}}> 2 ... 3</GridStackItem>
The full list of options can be found here: https://github.com/gridstack/gridstack.js/tree/v4.2.7/doc#item-options
The <GridStackItem>
component uses the block form to yield the content of the item. In addition, <GridStackItem>
yields a reference to itself in the case inner components need the reference or would like to listen to events triggered on the grid.
Example:
1<GridStackItem @options={{hash x=0 y=0 w=6 h=2}} as |item|> 2 <CustomComponent @parentContainer={{item}} /> 3</GridStackItem>
1//custom-component.js 2export default class CustomComponent extends Component { 3 didInsertElement() { 4 super.didInsertElement(...arguments); 5 this.parentContainer.element.addEventListener("resizestop", () => { 6 //handle resize 7 }); 8 } 9}
For touch support do the following
By default, the bower dependencies for Gridstack will be installed automatically.
No vulnerabilities found.
Reason
all changesets reviewed
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
1 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
40 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More