4.0.0 (2023-03-08)
-
update to ember 4.8.0
-
BREAKING: update to ember-auto-import v2
3.2.0 (2023-02-06)
- update to gridstack v7
3.1.1 (2022-05-25)
3.1.0 (2021-12-22)
- grid-stack: allow custom class attribute (f00309e)
- update ember-modifier render-modifiers deps (7a1c6b4)
3.0.2 (2021-10-21)
3.0.1 (2021-10-19)
- bump path-parse from 1.0.6 to 1.0.7 (#83) (47503ed)
- bump tmpl from 1.0.4 to 1.0.5 (#84) (382c7f9)
- bump ws from 7.4.5 to 7.4.6 (#80) (4b36d95)
3.0.0 (2021-10-19)
✨ Huge shoutout to @adumesny for his work on gridstack ✨
-
BREAKING: Update to glimmer components and latest gridstack (#82)
Some changes include
- width -> w, height -> h
- Manually specifying attributes via
data-gs-
-> updated togs-
For more detailed changes head over to gridstack and read their migration guides for v2, v3, and v4
If you want to keep roughly the same display as before use these options
If your
GridStackItem
s are no longer handling resizes, you may need to manually pass the event like this<GridStack @onResizestop={{this.doItemResize}}>
export default class MyComponent extends Component<Args> { @action doItemResize(event: Event, gridStackItem: HTMLElement) { gridStackItem.dispatchEvent(new Event(event.type)); } }
-
FEATURE: Some new options for GridStack events and GridStackItem options
Some changes include
- animation
- native html5 implementation
- better drag in/out and collision handling
-
DOCS: Updated readme examples to use updated hbs syntax